diff --git a/F1:F103/CAR_CANbus/WindShield/buttons.c b/F1:F103/CAR_CANbus/WindShield/buttons.c new file mode 100644 index 0000000..68b0667 --- /dev/null +++ b/F1:F103/CAR_CANbus/WindShield/buttons.c @@ -0,0 +1,121 @@ +/* + * This file is part of the windshield project. + * Copyright 2024 Edward V. Emelianov . + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include + +#include "buttons.h" +#include "hardware.h" + +extern volatile uint32_t Tms; +//uint32_t lastUnsleep = 0; + +// threshold in ms for press/hold +#define PRESSTHRESHOLD (29) +// HOLDTHRESHOLD = PRESSTHRESHOLD + hold time +#define HOLDTHRESHOLD (329) + +typedef struct{ + keyevent event; // current key event + int16_t counter; // press/release milliseconds counter + GPIO_TypeDef *port; // key port + uint16_t pin; // key pin + uint8_t changed; // the event have been changed +} keybase; + +keybase allkeys[KEY_AMOUNT] = { + [HALL_D] = {.port = HALL_PORT, .pin = HALL_D_PIN}, + [HALL_U] = {.port = HALL_PORT, .pin = HALL_U_PIN}, + [KEY_D] = {.port = BUTTON_PORT, .pin = BUTTON_D_PIN}, + [KEY_U] = {.port = BUTTON_PORT, .pin = BUTTON_U_PIN}, + [DIR_D] = {.port = DIR_PORT, .pin = DIR_U_PIN}, + [DIR_U] = {.port = DIR_PORT, .pin = DIR_U_PIN} +}; + +// return 1 if something was changed +int process_keys(){ + static uint32_t lastT = 0; + int changed = FALSE; + if(Tms == lastT) return FALSE; + uint16_t d = (uint16_t)(Tms - lastT); + lastT = Tms; + for(int i = 0; i < KEY_AMOUNT; ++i){ + keybase *k = &allkeys[i]; + keyevent e = k->event; + if(PRESSED(k->port, k->pin)){ // key is in pressed state + //lastUnsleep = Tms; // update activity time (any key is in pressed state) + switch(e){ + case EVT_NONE: // just pressed + case EVT_RELEASE: + k->counter = PRESSTHRESHOLD; // anti-bounce for released state + k->event = EVT_PRESS; + break; + case EVT_PRESS: // hold + if((k->counter += d)> HOLDTHRESHOLD) + k->event = EVT_HOLD; + break; + default: + break; + } + }else{ // released + switch(e){ + case EVT_PRESS: // count -> none + if(k->counter > PRESSTHRESHOLD) k->counter = PRESSTHRESHOLD; + else if((k->counter -= d) < 0) k->event = EVT_NONE; // button released + break; + case EVT_HOLD: // count -> release + if(k->counter > PRESSTHRESHOLD) k->counter = PRESSTHRESHOLD; + else if((k->counter -= d) < 0) k->event = EVT_RELEASE; // button released + break; + default: + break; + } + } + if(e != k->event){ + k->changed = 1; + changed = TRUE; + } + } + return changed; +} + +/** + * @brief keystate curent key state + * @param k - key code + * @param evt - its event + * @return 1 if event was changed since last call + */ +uint8_t keystate(keycode k, keyevent *evt){ + if(k >= KEY_AMOUNT) return EVT_NONE; + *evt = allkeys[k].event; + // change state `release` to `none` after 1st check (or will be `changed` @ release -> none) + if(*evt == EVT_RELEASE) allkeys[k].event = EVT_NONE; + uint8_t r = allkeys[k].changed; + allkeys[k].changed = 0; + return r; +} + +keyevent keyevt(keycode k){ + if(k >= KEY_AMOUNT) return EVT_NONE; + return allkeys[k].event; +} + +// clear all `changed` states +void clear_events(){ + for(int i = 0; i < KEY_AMOUNT; ++i) + allkeys[i].changed = 0; +} diff --git a/F1:F103/CAR_CANbus/WindShield/buttons.h b/F1:F103/CAR_CANbus/WindShield/buttons.h new file mode 100644 index 0000000..e31f256 --- /dev/null +++ b/F1:F103/CAR_CANbus/WindShield/buttons.h @@ -0,0 +1,50 @@ +/* + * This file is part of the windshield project. + * Copyright 2024 Edward V. Emelianov . + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#pragma once + +#include + +// long press detector (>99ms) +#define KEY_HOLDTIME (99) + +// keycode for press/release +typedef enum{ + HALL_D, // hall sensor DOWN + HALL_U, // -//- UP + KEY_D, // user key DOWN + KEY_U, // -//- UP + DIR_D, // ext signal (direct motor cables) DOWN + DIR_U, // -//- UP + KEY_AMOUNT // amount of keys connected +} keycode; + +// events +typedef enum{ + EVT_NONE, // no events with given key + EVT_PRESS, // pressed + EVT_HOLD, // hold more than KEY_HOLDTIME ms + EVT_RELEASE // released +} keyevent; + +//extern uint32_t lastUnsleep; // last keys activity time + +int process_keys(); +void clear_events(); +uint8_t keystate(keycode k, keyevent *evt); +keyevent keyevt(keycode k); diff --git a/F1:F103/CAR_CANbus/WindShield/hardware.c b/F1:F103/CAR_CANbus/WindShield/hardware.c index 33a8688..c1029be 100644 --- a/F1:F103/CAR_CANbus/WindShield/hardware.c +++ b/F1:F103/CAR_CANbus/WindShield/hardware.c @@ -16,6 +16,7 @@ * along with this program. If not, see . */ +#include "buttons.h" #include "hardware.h" /* pinout: @@ -42,23 +43,24 @@ */ // last incr/decr time and minimal time between incr/decr CCRx -static uint32_t PWM_lasttime = 0, PWM_deltat = 1; -static int direction = 0, accel = 0; // rotation direction and acceleration/deceleration +static uint32_t PWM_lasttime = 0, PWM_deltat = 1; // PWM_deltat should be more than timer period +static int accel = 0; // rotation direction and acceleration/deceleration +static motdir_t direction = MOTDIR_NONE; // current moving direction void gpio_setup(void){ - // PB8 & PB9 (CAN) setup in can.c; PA9 & PA10 (USART) in usart.c; PA6 & PA7 will be configured later + // PB8 & PB9 (CAN) setup in can.c; PA9 & PA10 (USART) in usart.c; PA6 & PA7 - TIM3 PWM ch1/2 RCC->APB2ENR |= RCC_APB2ENR_IOPAEN | RCC_APB2ENR_IOPBEN | RCC_APB2ENR_IOPCEN | RCC_APB2ENR_AFIOEN; // pullups & initial values - GPIOA->ODR = (1<<11) | (1<<11) | (1<<12); + GPIOA->ODR = (1<<11) | (1<<12); GPIOB->ODR = (1<<14) | (1<<15); GPIOA->CRL = CRL(0, CNF_ANALOG) | CRL(1, CNF_PPOUTPUT|MODE_SLOW) | CRL(2, CNF_PPOUTPUT|MODE_SLOW) | - CRL(3, CNF_PPOUTPUT|MODE_SLOW); + CRL(3, CNF_PPOUTPUT|MODE_SLOW) | CRL(6, CNF_AFPP|MODE_FAST) | CRL(7, CNF_AFPP|MODE_FAST); GPIOA->CRH = CRH(11, CNF_PUDINPUT) | CRH(12, CNF_PUDINPUT); GPIOB->CRH = CRH(12, CNF_PUDINPUT) | CRH(13, CNF_PUDINPUT) | CRH(14, CNF_PUDINPUT) | CRH(15, CNF_PUDINPUT); // setup timer: 100 ticks per full PWM range, 2kHz -> 200kHz timer frequency RCC->APB1ENR |= RCC_APB1ENR_TIM3EN; // enable TIM3 clocking TIM3->CR1 = 0; - TIM3->PSC = (TIM3FREQ/PWMFREQ) - 1; // 359 ticks for 200kHz + TIM3->PSC = (TIM3FREQ/(PWMFREQ*PWMMAX)) - 1; // 359 ticks for 200kHz TIM3->ARR = PWMMAX - 1; TIM3->CCR1 = 0; // inactive TIM3->CCR2 = 0; @@ -72,29 +74,32 @@ void gpio_setup(void){ // set minimal pause between successive CCRx increments or decrements; return TRUE if OK int set_dT(uint32_t d){ if(d > 1000) return FALSE; - PWM_deltat = d; + PWM_deltat = d + 1; return TRUE; } // stop or start rotation in given direction (only if motor stops); return TRUE if OK -// dir == 0 to stop; > 0 to rotate CW (L_UP, R_DOWN), < 0 to rotate CCW (L_DOWN, R_UP) int motor_ctl(int32_t dir){ + if(dir < MOTDIR_STOP || dir > MOTDIR_DOWN) return FALSE; + if(dir == MOTDIR_NONE) return TRUE; + if(direction == dir) return TRUE; // already do this if(TIM3->CR1 & TIM_CR1_CEN){ - if(direction && dir) return FALSE; // motor is moving while trying to move it - if(direction == 0 && dir == 0) return TRUE; // already stopped + if(direction > MOTDIR_NONE && dir > MOTDIR_NONE) return FALSE; // motor is moving while trying to move it into another dir + if(direction == MOTDIR_BREAK && dir < MOTDIR_NONE) return TRUE; // already stopped } - if(dir == 0){ // stop motor -> deceleration - accel = -1; - PWM_lasttime = Tms; + if(dir == MOTDIR_STOP){ // stop motor -> deceleration + if(direction == MOTDIR_UP || direction == MOTDIR_DOWN) accel = -1; + return TRUE; + }else if(dir == MOTDIR_BREAK){ // emergency stop + if(TIM3->CR1 & TIM_CR1_CEN) motor_break(); // break only if is moving return TRUE; } accel = 1; - if(dir > 0){ // start in positive direction - direction = 1; + direction = dir; + if(dir == MOTDIR_UP){ // start in positive direction (move UP) set_up(UP_LEFT); set_pwm(PWM_RIGHT, 1); - }else{ // negative - direction = -1; + }else{ // negative (move DOWN) set_up(UP_RIGHT); set_pwm(PWM_LEFT, 1); } @@ -106,33 +111,83 @@ int motor_ctl(int32_t dir){ // extremal stop void motor_break(){ up_off(); - direction = 0; accel = 0; + direction = MOTDIR_BREAK; + accel = 0; stop_pwm(); + PWM_lasttime = Tms; } // simplest state machine of motor control void motor_process(){ - if(!direction) return; // motor isn't moving - if(Tms - PWM_lasttime < PWM_deltat) return; + if(process_keys()){ // check buttons + keyevent evt; + motdir_t newdir = MOTDIR_NONE; // new moving direction (-2 - do nothing, 2 - emerg. stop) + // first, check HALL sensors if motor is moving + if(direction){ + if(keystate(HALL_D, &evt)){ // HALL DOWN + if(direction < 0 && (evt == EVT_PRESS || evt == EVT_HOLD)){ + newdir = MOTDIR_BREAK; + } + }else if(keystate(HALL_U, &evt)){ + if(direction > 0 && (evt == EVT_PRESS || evt == EVT_HOLD)){ + newdir = MOTDIR_BREAK; + } + } + } + keyevent uh = keyevt(HALL_U), dh = keyevt(HALL_D); // current hall states - if we cannot move upper or lower + // short key pressed - full open/close; long - move with stop after release + if(MOTDIR_BREAK != newdir){ // process keys if don't need to break + evt = EVT_NONE; + if(keystate(KEY_U, &evt)){ + if(evt == EVT_PRESS){ // move up (don't mind EVT_HOLD - it's already moving) + if(uh != EVT_HOLD && uh != EVT_PRESS) newdir = MOTDIR_UP; + } + }else if(keystate(KEY_D, &evt)){ + if(evt == EVT_PRESS){ + if(dh != EVT_HOLD && dh != EVT_PRESS) newdir = MOTDIR_DOWN; + } + } + if(evt == EVT_RELEASE) newdir = MOTDIR_STOP; + evt = EVT_NONE; + int extsig = FALSE; + // now chech external signals, they have an advantage over local keys + if(keystate(DIR_U, &evt)){ // react on PRESS and both NONE/RELEASE + extsig = TRUE; + if(evt == EVT_PRESS && uh != EVT_PRESS && uh != EVT_HOLD) newdir = MOTDIR_UP; + }else if(keystate(DIR_D, &evt)){ + extsig = TRUE; + if(evt == EVT_PRESS && dh != EVT_PRESS && dh != EVT_HOLD) newdir = MOTDIR_DOWN; + } + if(evt == EVT_RELEASE || (extsig && evt == EVT_NONE)){ // EVT_NONE - released after short press - do nothing; EVT_RELEASE - after hold, stop + newdir = MOTDIR_STOP; + } + } + motor_ctl(newdir); + clear_events(); + } + if(direction == MOTDIR_NONE) return; // motor isn't moving + else if(direction == MOTDIR_BREAK && 0 == (TIM3->CR1 & TIM_CR1_CEN)){ // motor stopped + direction = MOTDIR_NONE; + accel = 0; + return; + } + if(Tms < PWM_lasttime + PWM_deltat) return; volatile uint16_t *CCRx = (direction > 0) ? &TIM3->CCR1 : &TIM3->CCR2; // current CCRx - if(accel < 0){ // decrement + PWM_lasttime = Tms; + if(accel < 0){ // deceleration if(*CCRx == 0){ // stopped - up_off(); - direction = 0; - accel = 0; - stop_pwm(); + motor_break(); // wait for another cycle return; } // TODO: here we should check currents and if failure turn off immediatelly --*CCRx; - }else{ + }else{ // constant speed or acceleration // TODO: here we should check currents and increment only if all OK; decrement and change to accel if fail if(accel){ // acceleration if(*CCRx == PWMMAX) accel = 0; else ++*CCRx; } // else do nothing - moving with constant speed } - PWM_lasttime = Tms; } void iwdg_setup(){ diff --git a/F1:F103/CAR_CANbus/WindShield/hardware.h b/F1:F103/CAR_CANbus/WindShield/hardware.h index 38e44ce..aa4a194 100644 --- a/F1:F103/CAR_CANbus/WindShield/hardware.h +++ b/F1:F103/CAR_CANbus/WindShield/hardware.h @@ -23,7 +23,7 @@ // frequency of TIM3 clocking #define TIM3FREQ (72000000) // PWM frequency -#define PWMFREQ (200000) +#define PWMFREQ (2000) // max PWM value #define PWMMAX (100) @@ -44,7 +44,7 @@ // turn off upper shoulders #define up_off() do{pin_clear(GPIOA, (1<<2)|(1<<3));}while(0) #define start_pwm() do{ TIM3->CR1 = TIM_CR1_CEN; TIM3->EGR |= TIM_EGR_UG; }while(0) -#define stop_pwm() do{ TIM3->CCR1 = 0; TIM3->CCR2 = 0; TIM3->CR1 = 0; }while(0) +#define stop_pwm() do{ TIM3->CCR1 = 0; TIM3->CCR2 = 0; TIM3->CR1 = TIM_CR1_OPM | TIM_CR1_CEN; }while(0) #define PWM_LEFT 2 #define PWM_RIGHT 1 // set PWM value (0..100), x==1 - R_DOWN, x==2 - L_DOWN @@ -53,6 +53,33 @@ #define _get_pwm(x) (TIM3->CCR ## x) #define get_pwm(x) _get_pwm(x) +// buttons, dir, hall: +#define HALL_PORT GPIOA +#define HALL_U_PIN (1<<12) +#define HALL_D_PIN (1<<11) +#define BUTTON_PORT GPIOB +#define BUTTON_U_PIN (1<<14) +#define BUTTON_D_PIN (1<<15) +#define DIR_PORT GPIOB +#define DIR_U_PIN (1<12) +#define DIR_D_PIN (1<13) + +// define BUTTONS_NEGATIVE if button pressed when ==1 +#ifdef BUTTONS_NEGATIVE +#define PRESSED(port, pin) ((port->IDR & pin) == pin) +#else +#define PRESSED(port, pin) ((port->IDR & pin) == 0) +#endif + +// moving when > NONE, stopped when < NONE +typedef enum{ + MOTDIR_STOP = -2, // stop with deceleration + MOTDIR_BREAK = -1, // emergency stop + MOTDIR_NONE = 0, // do nothing + MOTDIR_UP = 1, // move up + MOTDIR_DOWN = 2, // move down +} motdir_t; + int set_dT(uint32_t d); extern volatile uint32_t Tms; diff --git a/F1:F103/CAR_CANbus/WindShield/kicad/windshield.kicad_pcb b/F1:F103/CAR_CANbus/WindShield/kicad/windshield.kicad_pcb index 72d75de..3ba22f4 100644 --- a/F1:F103/CAR_CANbus/WindShield/kicad/windshield.kicad_pcb +++ b/F1:F103/CAR_CANbus/WindShield/kicad/windshield.kicad_pcb @@ -1,18233 +1,30291 @@ -(kicad_pcb (version 20221018) (generator pcbnew) - - (general - (thickness 1.6) - ) - - (paper "A4") - (layers - (0 "F.Cu" signal) - (31 "B.Cu" signal) - (32 "B.Adhes" user "B.Adhesive") - (33 "F.Adhes" user "F.Adhesive") - (34 "B.Paste" user) - (35 "F.Paste" user) - (36 "B.SilkS" user "B.Silkscreen") - (37 "F.SilkS" user "F.Silkscreen") - (38 "B.Mask" user) - (39 "F.Mask" user) - (40 "Dwgs.User" user "User.Drawings") - (41 "Cmts.User" user "User.Comments") - (42 "Eco1.User" user "User.Eco1") - (43 "Eco2.User" user "User.Eco2") - (44 "Edge.Cuts" user) - (45 "Margin" user) - (46 "B.CrtYd" user "B.Courtyard") - (47 "F.CrtYd" user "F.Courtyard") - (48 "B.Fab" user) - (49 "F.Fab" user) - (50 "User.1" user) - (51 "User.2" user) - (52 "User.3" user) - (53 "User.4" user) - (54 "User.5" user) - (55 "User.6" user) - (56 "User.7" user) - (57 "User.8" user) - (58 "User.9" user) - ) - - (setup - (stackup - (layer "F.SilkS" (type "Top Silk Screen")) - (layer "F.Paste" (type "Top Solder Paste")) - (layer "F.Mask" (type "Top Solder Mask") (thickness 0.01)) - (layer "F.Cu" (type "copper") (thickness 0.035)) - (layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02)) - (layer "B.Cu" (type "copper") (thickness 0.035)) - (layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01)) - (layer "B.Paste" (type "Bottom Solder Paste")) - (layer "B.SilkS" (type "Bottom Silk Screen")) - (copper_finish "None") - (dielectric_constraints no) - ) - (pad_to_mask_clearance 0) - (pcbplotparams - (layerselection 0x00010fc_ffffffff) - (plot_on_all_layers_selection 0x0000000_00000000) - (disableapertmacros false) - (usegerberextensions false) - (usegerberattributes true) - (usegerberadvancedattributes true) - (creategerberjobfile true) - (dashed_line_dash_ratio 12.000000) - (dashed_line_gap_ratio 3.000000) - (svgprecision 4) - (plotframeref false) - (viasonmask false) - (mode 1) - (useauxorigin false) - (hpglpennumber 1) - (hpglpenspeed 20) - (hpglpendiameter 15.000000) - (dxfpolygonmode true) - (dxfimperialunits true) - (dxfusepcbnewfont true) - (psnegative false) - (psa4output false) - (plotreference true) - (plotvalue true) - (plotinvisibletext false) - (sketchpadsonfab false) - (subtractmaskfromsilk false) - (outputformat 1) - (mirror false) - (drillshape 1) - (scaleselection 1) - (outputdirectory "") - ) - ) - - (net 0 "") - (net 1 "+5V") - (net 2 "GND") - (net 3 "+12V") - (net 4 "Net-(U2-SW)") - (net 5 "Net-(U2-BS)") - (net 6 "+3V3") - (net 7 "Net-(U2-FB)") - (net 8 "/OSC_IN") - (net 9 "/OSC_OUT") - (net 10 "/VEN") - (net 11 "Net-(D1-A)") - (net 12 "/Power_EN") - (net 13 "Net-(D4-K)") - (net 14 "Net-(D4-A)") - (net 15 "Net-(D5-K)") - (net 16 "Net-(D5-A)") - (net 17 "/UP_DIR") - (net 18 "/DOWN_DIR") - (net 19 "/Vsen") - (net 20 "Net-(D10-A)") - (net 21 "Net-(D11-A)") - (net 22 "/CANL") - (net 23 "/CANH") - (net 24 "/HOT@On") - (net 25 "Net-(J2-Pin_1)") - (net 26 "Net-(J2-Pin_2)") - (net 27 "Net-(J2-Pin_3)") - (net 28 "Net-(J3-Pin_2)") - (net 29 "/Rx") - (net 30 "/Tx") - (net 31 "/SWCLK") - (net 32 "/SWDIO") - (net 33 "Net-(J5-Pin_4)") - (net 34 "/BOOT0") - (net 35 "/NRST") - (net 36 "Net-(JP1-B)") - (net 37 "Net-(Q1-G)") - (net 38 "Net-(Q1-D)") - (net 39 "Net-(Q2-S)") - (net 40 "Net-(Q3-G)") - (net 41 "Net-(Q4-G)") - (net 42 "Net-(Q5-G)") - (net 43 "Net-(Q6-G)") - (net 44 "/UP_SW") - (net 45 "/DOWN_SW") - (net 46 "/UP_BTN") - (net 47 "/DOWN_BTN") - (net 48 "Net-(U4-sense)") - (net 49 "/L_UP") - (net 50 "/L_DOWN") - (net 51 "/R_DOWN") - (net 52 "/R_UP") - (net 53 "unconnected-(U3-PC13-Pad2)") - (net 54 "unconnected-(U3-PC14-Pad3)") - (net 55 "unconnected-(U3-PC15-Pad4)") - (net 56 "unconnected-(U3-PA5-Pad15)") - (net 57 "unconnected-(U3-PB10-Pad21)") - (net 58 "unconnected-(U3-PB11-Pad22)") - (net 59 "unconnected-(U3-PA8-Pad29)") - (net 60 "unconnected-(U3-PA15-Pad38)") - (net 61 "unconnected-(U3-PB6-Pad42)") - (net 62 "unconnected-(U3-PB7-Pad43)") - (net 63 "/CAN_Rx") - (net 64 "/CAN_Tx") - (net 65 "unconnected-(U5-Vref-Pad5)") - (net 66 "unconnected-(U3-PA4-Pad14)") - (net 67 "unconnected-(U3-PB3-Pad39)") - (net 68 "unconnected-(U3-PB2-Pad20)") - (net 69 "unconnected-(U3-PB1-Pad19)") - (net 70 "unconnected-(U3-PB0-Pad18)") - (net 71 "unconnected-(U3-PB5-Pad41)") - (net 72 "unconnected-(U3-PB4-Pad40)") - (net 73 "Net-(J3-Pin_1)") - - (footprint "Crystal:Crystal_SMD_5032-2Pin_5.0x3.2mm" (layer "F.Cu") - (tstamp 04b5e39d-812d-45f4-a1f9-a80112ac70b0) - (at 99.314 86.36 -90) - (descr "SMD Crystal SERIES SMD2520/2 http://www.icbase.com/File/PDF/HKC/HKC00061008.pdf, 5.0x3.2mm^2 package") - (tags "SMD SMT crystal") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Two pin crystal") - (property "ki_keywords" "quartz ceramic resonator oscillator") - (path "/3a4c0890-c42a-49b7-8297-824d30461a0a") - (attr smd) - (fp_text reference "Y1" (at -3.882 0 -180) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 56c6c8a3-d51c-4a18-9334-ba777991e007) - ) - (fp_text value "NX5032GA-8MHz" (at 0 2.8 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 251d0882-eeb8-4cc6-ad27-974009755fda) - ) - (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 28946b08-2135-4275-945a-51d965bb0a07) - ) - (fp_circle (center 0 0) (end 0.093333 0) - (stroke (width 0.186667) (type solid)) (fill none) (layer "F.Adhes") (tstamp 6ed664d1-2d5d-472c-a9f3-9afd7de538d9)) - (fp_circle (center 0 0) (end 0.213333 0) - (stroke (width 0.133333) (type solid)) (fill none) (layer "F.Adhes") (tstamp 564046ea-f82f-4d8f-9afa-3b386dabf7a2)) - (fp_circle (center 0 0) (end 0.333333 0) - (stroke (width 0.133333) (type solid)) (fill none) (layer "F.Adhes") (tstamp 44228209-66b9-47b0-8243-9a1fbc2178af)) - (fp_circle (center 0 0) (end 0.4 0) - (stroke (width 0.1) (type solid)) (fill none) (layer "F.Adhes") (tstamp acda491f-42fa-4ec4-aa58-5b0b1ffa5f50)) - (fp_line (start -3.05 -1.8) (end -3.05 1.8) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ac34a30f-1add-4894-8e91-42313b80bc59)) - (fp_line (start -3.05 1.8) (end 2.7 1.8) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b43cff8b-aaab-40cc-b4c2-8f838dcab0c0)) - (fp_line (start 2.7 -1.8) (end -3.05 -1.8) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4dec838d-6da7-45ca-80a4-0698a0ea057e)) - (fp_line (start -3.1 -1.9) (end -3.1 1.9) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8a0516fa-08fc-4440-9520-e7217151e87a)) - (fp_line (start -3.1 1.9) (end 3.1 1.9) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c61b3871-c32a-45e2-a374-2b0517a5f4dd)) - (fp_line (start 3.1 -1.9) (end -3.1 -1.9) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 98e95b05-034b-4222-80c4-4c37d69aa861)) - (fp_line (start 3.1 1.9) (end 3.1 -1.9) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 10ed7860-f768-4462-bb81-2a413f3e9960)) - (fp_line (start -2.5 -1.4) (end -2.3 -1.6) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f96e6aaf-a01e-4f34-b767-48140bc84da5)) - (fp_line (start -2.5 0.6) (end -1.5 1.6) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7936de0f-e29c-427a-b4c6-f4376e16b4de)) - (fp_line (start -2.5 1.4) (end -2.5 -1.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 006a3243-d7b6-4991-a8a2-3e7f32559e78)) - (fp_line (start -2.3 -1.6) (end 2.3 -1.6) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 725897f1-b562-47c1-b300-6df7d2be9b2d)) - (fp_line (start -2.3 1.6) (end -2.5 1.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fce786aa-47c0-495a-a463-8b0f51b24a42)) - (fp_line (start 2.3 -1.6) (end 2.5 -1.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6a4621a1-bc48-497a-b627-574acf841e35)) - (fp_line (start 2.3 1.6) (end -2.3 1.6) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 87214355-408c-4f49-92e9-5df440ca26b2)) - (fp_line (start 2.5 -1.4) (end 2.5 1.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 25883a77-c587-4eb3-b05f-3aa853031af1)) - (fp_line (start 2.5 1.4) (end 2.3 1.6) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fea01a46-bdab-40c8-8611-fd64af504268)) - (pad "1" smd rect (at -1.85 0 270) (size 2 2.4) (layers "F.Cu" "F.Paste" "F.Mask") - (net 8 "/OSC_IN") (pinfunction "1") (pintype "passive") (tstamp d372e770-de3d-4782-8fdc-9c598230e74e)) - (pad "2" smd rect (at 1.85 0 270) (size 2 2.4) (layers "F.Cu" "F.Paste" "F.Mask") - (net 9 "/OSC_OUT") (pinfunction "2") (pintype "passive") (tstamp 644570c2-f8b7-4c41-b7fd-87a62cad5927)) - (model "${KICAD6_3DMODEL_DIR}/Crystal.3dshapes/Crystal_SMD_5032-2Pin_5.0x3.2mm.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") - (tstamp 0aee1c7a-6563-4864-96ee-65f701188394) - (at 82.804 110.6405 90) - (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags "resistor handsolder") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Resistor") - (property "ki_keywords" "R res resistor") - (path "/17364d81-b838-484a-add9-55202307e226") - (attr smd) - (fp_text reference "R2" (at -0.0273 1.7018 180) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp a165eb9f-c829-4722-8349-e8a244b78e21) - ) - (fp_text value "100k" (at 0 1.43 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 26ec2e85-6a77-48fb-a9c0-27bddb30b07a) - ) - (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.06))) - (tstamp 9c860a8a-e853-4712-824c-91468710078a) - ) - (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0db64310-bddc-4375-9a30-25a123f4f042)) - (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d92ae47d-04f1-4688-b2e2-07ac049bf01d)) - (fp_line (start -1.65 -0.73) (end 1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0a958467-d797-4f95-ba05-d46b8dab6161)) - (fp_line (start -1.65 0.73) (end -1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d95ceb79-6713-4560-affe-3903cc6acc65)) - (fp_line (start 1.65 -0.73) (end 1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 70b91b1c-80a0-4dde-9737-ca1cb8b9b7b4)) - (fp_line (start 1.65 0.73) (end -1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 50f0746d-5789-4711-9bdf-c24c5f82cfc3)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5cb78889-1f3b-4375-b048-8a6e1e7662b7)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3e53c238-56fc-4615-bf6b-abf573496f56)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d33e0b9a-04d1-4c7c-937c-9de67fb632ae)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6216febb-41ef-4a87-8529-6bc95bc0f090)) - (pad "1" smd roundrect (at -0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pintype "passive") (tstamp 1b9f43d1-c0f6-4173-b3a9-3df8b30daa30)) - (pad "2" smd roundrect (at 0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 11 "Net-(D1-A)") (pintype "passive") (tstamp 39de549c-f42c-4824-8159-e200ad1edb5d)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "TestPoint:TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded" (layer "F.Cu") - (tstamp 0f65948e-af9d-478e-8613-db0ad6dca846) - (at 111.0234 95.8342) - (descr "wire loop with bead as test point, loop diameter 1.8mm, hole diameter 1.0mm") - (tags "test point wire loop bead") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "test point") - (property "ki_keywords" "test point tp") - (path "/8e336b7f-02d2-422b-8109-c894c167d3c8") - (attr through_hole) - (fp_text reference "TP8" (at 0.7 2.5) (layer "F.SilkS") hide - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 2aaf3816-acef-4dd1-8108-55611fecbba2) - ) - (fp_text value "L+" (at 2.2606 -1.8542) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 94655b17-7dbf-4bb8-a874-37e8d13b915a) - ) - (fp_text user "${REFERENCE}" (at 0.7 2.5) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp c4637f87-de16-4ea0-b065-29178873fd4d) - ) - (fp_circle (center 0 0) (end 1.5 0) - (stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 839c51ce-a777-4352-b0e9-49f788baf700)) - (fp_circle (center 0 0) (end 1.8 0) - (stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp b4c3ed49-86e8-4176-a760-4c20d88b031a)) - (fp_line (start -0.9 -0.2) (end 0.9 -0.2) - (stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp 69fa0c0d-5b56-422e-a06f-723785836a75)) - (fp_line (start -0.9 0.2) (end -0.9 -0.2) - (stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp 3158c8d1-e32f-4a1b-9473-16f4780607e2)) - (fp_line (start 0.9 -0.2) (end 0.9 0.2) - (stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp e7eccece-daef-4ee3-a4ee-f58d8e8b94fa)) - (fp_line (start 0.9 0.2) (end -0.9 0.2) - (stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp 98029601-f583-49d6-9327-e992b67a98b2)) - (fp_circle (center 0 0) (end 1.3 0) - (stroke (width 0.12) (type solid)) (fill none) (layer "F.Fab") (tstamp 39345d95-eb49-4641-a4f9-354291b88d8f)) - (pad "1" thru_hole circle (at 0 0) (size 2 2) (drill 1) (layers "*.Cu" "*.Mask") - (net 49 "/L_UP") (pinfunction "1") (pintype "passive") (tstamp b162640b-faf2-4cb2-83a5-feee80c12076)) - (model "${KICAD6_3DMODEL_DIR}/TestPoint.3dshapes/TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "TestPoint:TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded" (layer "F.Cu") - (tstamp 12dba42b-11ef-4b7e-b460-94a0f51adf1a) - (at 117.856 107.696) - (descr "wire loop with bead as test point, loop diameter 1.8mm, hole diameter 1.0mm") - (tags "test point wire loop bead") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "test point") - (property "ki_keywords" "test point tp") - (path "/bc71f010-ae52-40e9-b47d-749510fd8c7c") - (attr through_hole) - (fp_text reference "TP11" (at 0.7 2.5) (layer "F.SilkS") hide - (effects (font (size 1 1) (thickness 0.15))) - (tstamp cb3c864e-621e-46d1-afb0-846da8b6c819) - ) - (fp_text value "R-" (at 2.5908 -1.6764) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp cd68bad2-468e-4d19-98ea-6336c6fd2e4c) - ) - (fp_text user "${REFERENCE}" (at 0.7 2.5) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 53b25740-de88-4793-bd67-c16d105f8d4f) - ) - (fp_circle (center 0 0) (end 1.5 0) - (stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp a9dea6a6-29f3-452f-acd8-7f3404060c62)) - (fp_circle (center 0 0) (end 1.8 0) - (stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 140340a8-8a9c-4ebe-9a5d-8b36f8d5d143)) - (fp_line (start -0.9 -0.2) (end 0.9 -0.2) - (stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp cae3c906-32bc-41a1-88b4-68186060a572)) - (fp_line (start -0.9 0.2) (end -0.9 -0.2) - (stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp dc55063c-7b98-40cc-b639-182613d9031d)) - (fp_line (start 0.9 -0.2) (end 0.9 0.2) - (stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp 37939803-cd4d-4061-82f3-951f868d3968)) - (fp_line (start 0.9 0.2) (end -0.9 0.2) - (stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp cfce9f2e-0792-4cd6-86b5-07c682b842b9)) - (fp_circle (center 0 0) (end 1.3 0) - (stroke (width 0.12) (type solid)) (fill none) (layer "F.Fab") (tstamp b332f7d8-95d4-49f2-bcba-75ac1987f628)) - (pad "1" thru_hole circle (at 0 0) (size 2 2) (drill 1) (layers "*.Cu" "*.Mask") - (net 51 "/R_DOWN") (pinfunction "1") (pintype "passive") (tstamp ec5348bb-ecd8-41b1-81ad-001ce9461acf)) - (model "${KICAD6_3DMODEL_DIR}/TestPoint.3dshapes/TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" (layer "F.Cu") - (tstamp 14b409f2-9076-4a3f-b9cd-432b52dd1975) - (at 85.5341 93.2942) - (descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags "capacitor handsolder") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Unpolarized capacitor") - (property "ki_keywords" "cap capacitor") - (path "/97b547a0-bc92-4bcd-b116-37befccf241d") - (attr smd) - (fp_text reference "C5" (at 0 -1.85) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 8854726c-5813-49fe-bcb4-c37f29dfd9f9) - ) - (fp_text value "47u" (at 0 1.85) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 8c7d1d33-aa31-4d16-b7dc-2538be0338ff) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") - (effects (font (size 0.8 0.8) (thickness 0.12))) - (tstamp 4a994d6f-3d34-4d51-b1b8-bfe69e5874e8) - ) - (fp_line (start -0.711252 -0.91) (end 0.711252 -0.91) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 745496aa-9bd8-4da7-ab01-6ddbd90a92eb)) - (fp_line (start -0.711252 0.91) (end 0.711252 0.91) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b50cba5c-ff26-4df8-bb34-3c2750491863)) - (fp_line (start -2.48 -1.15) (end 2.48 -1.15) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 01067f88-73f8-4c3d-a772-959926d72897)) - (fp_line (start -2.48 1.15) (end -2.48 -1.15) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ccffeb0e-1936-4394-9d1a-2b8f5280247c)) - (fp_line (start 2.48 -1.15) (end 2.48 1.15) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c917fcb3-748e-4cbc-bd9f-dee6b123cecf)) - (fp_line (start 2.48 1.15) (end -2.48 1.15) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c2cb713f-89dc-4adb-bf8d-6bf8f3e3326b)) - (fp_line (start -1.6 -0.8) (end 1.6 -0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp eede876b-b920-4835-8fc7-9ba51d577c86)) - (fp_line (start -1.6 0.8) (end -1.6 -0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e6c4c007-b0d6-4811-ad65-0b109372d453)) - (fp_line (start 1.6 -0.8) (end 1.6 0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e57170cd-84b2-4220-bd73-15bb10931d0c)) - (fp_line (start 1.6 0.8) (end -1.6 0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f6125c1d-46d8-4afb-a1a1-cba9f563a894)) - (pad "1" smd roundrect (at -1.5625 0) (size 1.325 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.188679) - (net 1 "+5V") (pintype "passive") (tstamp abe2a401-cc03-4c95-8b59-d18cae7f4b79)) - (pad "2" smd roundrect (at 1.5625 0) (size 1.325 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.188679) - (net 2 "GND") (pintype "passive") (tstamp 4235f4ac-b380-44e3-a7b4-84a795d48142)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" (layer "F.Cu") - (tstamp 14c6a612-0807-423c-82c4-a17de50f19f9) - (at 74.7268 87.8971 90) - (descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags "capacitor handsolder") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Unpolarized capacitor") - (property "ki_keywords" "cap capacitor") - (path "/2135eb5e-a491-44ed-9e01-efbcf9715412") - (attr smd) - (fp_text reference "C3" (at 3.1881 -0.1016 180) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 372e5550-75c3-46d4-9e25-13c52e20f414) - ) - (fp_text value "1u" (at 0 1.85 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 2b0d02f7-5a60-41e6-afab-8f047689cdfb) - ) - (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") - (effects (font (size 0.8 0.8) (thickness 0.12))) - (tstamp 25724c87-2a3f-4615-8d9d-016f24bf8bd2) - ) - (fp_line (start -0.711252 -0.91) (end 0.711252 -0.91) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 59efc93a-426b-40d0-8e13-5ed47e4ecd74)) - (fp_line (start -0.711252 0.91) (end 0.711252 0.91) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 210f11a9-1cad-45b1-bdea-aee113efd329)) - (fp_line (start -2.48 -1.15) (end 2.48 -1.15) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f3fac6b5-8fa9-44c1-b5fb-27a8e4838877)) - (fp_line (start -2.48 1.15) (end -2.48 -1.15) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dca372f8-02c1-4a97-97bf-b13890d9e322)) - (fp_line (start 2.48 -1.15) (end 2.48 1.15) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 28e0a77b-3f1c-4106-9c46-ded49944c818)) - (fp_line (start 2.48 1.15) (end -2.48 1.15) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e4c2d12a-4810-4e94-a74c-abd0df36f40a)) - (fp_line (start -1.6 -0.8) (end 1.6 -0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f174294b-f2e1-4067-88bb-50f0f7539a05)) - (fp_line (start -1.6 0.8) (end -1.6 -0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6643e7bc-87f8-444b-a061-7be5ce8afccf)) - (fp_line (start 1.6 -0.8) (end 1.6 0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 008a98e0-8b26-4fc4-93de-cbf672ea1236)) - (fp_line (start 1.6 0.8) (end -1.6 0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fded4fe7-b04c-4f24-92d0-7f066594b54c)) - (pad "1" smd roundrect (at -1.5625 0 90) (size 1.325 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.188679) - (net 4 "Net-(U2-SW)") (pintype "passive") (tstamp 6900cc3e-c94d-414b-8d75-ed45cd4d04a6)) - (pad "2" smd roundrect (at 1.5625 0 90) (size 1.325 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.188679) - (net 5 "Net-(U2-BS)") (pintype "passive") (tstamp c3740558-7873-4886-9be0-631ac4d405bb)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Connector_JST:JST_PH_B4B-PH-K_1x04_P2.00mm_Vertical" (layer "F.Cu") - (tstamp 1710c7c1-df3f-49ff-b30b-e39b49a703ed) - (at 130.81 73.756 -90) - (descr "JST PH series connector, B4B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator") - (tags "connector JST PH side entry") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Generic connector, single row, 01x04, script generated") - (property "ki_keywords" "connector") - (path "/22803ca7-6f57-46e0-b742-ee15eb046870") - (attr through_hole) - (fp_text reference "J2" (at 6.604 4.318) (layer "F.SilkS") hide - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 1ae6bfa9-56ea-43e8-85cf-26620d3f667f) - ) - (fp_text value "Hall" (at 3 4 90) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp bfb76f12-7812-43ba-94c2-e779d8ae464b) - ) - (fp_text user "${REFERENCE}" (at 3 1.5 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 5038faeb-93f7-43b7-8bad-5c22b0c3c49b) - ) - (fp_line (start -2.36 -2.11) (end -2.36 -0.86) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fb56a003-4caa-4d22-a15c-97a7eebfb7ac)) - (fp_line (start -2.06 -1.81) (end -2.06 2.91) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6cfd1ad2-4c17-4f90-aec9-1456843663a3)) - (fp_line (start -2.06 -0.5) (end -1.45 -0.5) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8b90d9a6-0969-4eb6-9121-28467be4cfcd)) - (fp_line (start -2.06 0.8) (end -1.45 0.8) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cdf4941e-89fa-4ae4-aa80-4f0dc71ee715)) - (fp_line (start -2.06 2.91) (end 8.06 2.91) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3bf63ee9-a4b7-4d07-8b36-78c1b816af23)) - (fp_line (start -1.45 -1.2) (end -1.45 2.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7f1d915f-3a20-4a54-b07a-2a18af2e7d77)) - (fp_line (start -1.45 2.3) (end 7.45 2.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 14611468-2164-40ac-a784-2bb070c4470b)) - (fp_line (start -1.11 -2.11) (end -2.36 -2.11) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4427c753-00ef-41d3-ab1a-77cf0ed96322)) - (fp_line (start -0.6 -2.01) (end -0.6 -1.81) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0f868268-d21e-41c5-b296-f40ad0b1c2ed)) - (fp_line (start -0.3 -2.01) (end -0.6 -2.01) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 05912948-1ad3-4a61-ad06-d2bbff6437fc)) - (fp_line (start -0.3 -1.91) (end -0.6 -1.91) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0dabc1c7-4b1e-4b96-a985-da9fe6bacebf)) - (fp_line (start -0.3 -1.81) (end -0.3 -2.01) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp eb65af00-4a54-4ae0-b2c5-27a6c79a8fe1)) - (fp_line (start 0.5 -1.81) (end 0.5 -1.2) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c98e88f9-c868-448e-acaa-8e570f9ab3b4)) - (fp_line (start 0.5 -1.2) (end -1.45 -1.2) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bae08a2b-31f8-4320-98b0-3c2ccbb34e7d)) - (fp_line (start 0.9 1.8) (end 1.1 1.8) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 435ce3bc-60a4-4b4e-83f4-589359a5e1d5)) - (fp_line (start 0.9 2.3) (end 0.9 1.8) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6e7754dd-f2e8-45c0-85da-a2d88c9b896f)) - (fp_line (start 1 2.3) (end 1 1.8) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 86397ea9-554c-4e88-b348-557a273eece9)) - (fp_line (start 1.1 1.8) (end 1.1 2.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ee85e8a2-1182-42a7-8de2-b87b43d49906)) - (fp_line (start 2.9 1.8) (end 3.1 1.8) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 315bb343-ee40-4eec-a2ff-f33b9a59306b)) - (fp_line (start 2.9 2.3) (end 2.9 1.8) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f732bc77-8292-40f5-9996-6d956c3b85e1)) - (fp_line (start 3 2.3) (end 3 1.8) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3fae853f-1353-4b71-bb46-b7b1fd243415)) - (fp_line (start 3.1 1.8) (end 3.1 2.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 45c4430b-41b1-4be9-b542-8eae3ddcee00)) - (fp_line (start 4.9 1.8) (end 5.1 1.8) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d5483c4e-407e-4ec2-aaba-c5360547132a)) - (fp_line (start 4.9 2.3) (end 4.9 1.8) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b0c44c92-d5fc-4659-a4be-cbdc3f5a4c68)) - (fp_line (start 5 2.3) (end 5 1.8) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 49a39d90-d0fe-4f8f-b575-a298fbfc25ef)) - (fp_line (start 5.1 1.8) (end 5.1 2.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a666d50b-c176-4981-a2d0-eb1f02c98df9)) - (fp_line (start 5.5 -1.2) (end 5.5 -1.81) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5c9fcc88-3823-4fdc-bb89-e9958a7a2e5e)) - (fp_line (start 7.45 -1.2) (end 5.5 -1.2) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fbb03422-e912-4993-bcea-333af58d6d82)) - (fp_line (start 7.45 2.3) (end 7.45 -1.2) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 77f09df5-4d2c-484a-95ef-4c219e629452)) - (fp_line (start 8.06 -1.81) (end -2.06 -1.81) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fe985bf4-3def-428f-84f5-cbaf9af962d1)) - (fp_line (start 8.06 -0.5) (end 7.45 -0.5) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 334eabff-e220-4c37-af95-a7e3f9f82cc9)) - (fp_line (start 8.06 0.8) (end 7.45 0.8) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bf9ada7a-619f-49e5-9e4a-63f9a890c493)) - (fp_line (start 8.06 2.91) (end 8.06 -1.81) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 24972f56-b12a-4113-8d22-fb0ab00be1da)) - (fp_line (start -2.45 -2.2) (end -2.45 3.3) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3508a3de-97ab-43fd-842b-853cce30e7db)) - (fp_line (start -2.45 3.3) (end 8.45 3.3) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 465f2b86-e4fa-4f91-8778-a41fd820b0c6)) - (fp_line (start 8.45 -2.2) (end -2.45 -2.2) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 40a5d880-bd82-4584-bdd1-86ef42e71c00)) - (fp_line (start 8.45 3.3) (end 8.45 -2.2) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ef28a0c9-ea4b-4586-9eb0-babf27923883)) - (fp_line (start -2.36 -2.11) (end -2.36 -0.86) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cdad83ce-fa9d-49f6-95ad-97cd6c26d9cd)) - (fp_line (start -1.95 -1.7) (end -1.95 2.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 71188858-b8ba-4d32-83c2-908ff7592803)) - (fp_line (start -1.95 2.8) (end 7.95 2.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2b716c8d-7f70-4f0a-bb48-75e64c6e4671)) - (fp_line (start -1.11 -2.11) (end -2.36 -2.11) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8a11f8d1-3073-4760-bd86-8f1ee8476b50)) - (fp_line (start 7.95 -1.7) (end -1.95 -1.7) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cec61d57-ae96-4144-a117-91be470c30aa)) - (fp_line (start 7.95 2.8) (end 7.95 -1.7) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d601ccf3-8dec-417f-80c7-e09600851bf2)) - (pad "1" thru_hole roundrect (at 0 0 270) (size 1.2 1.75) (drill 0.75) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.208333) - (net 25 "Net-(J2-Pin_1)") (pinfunction "Pin_1") (pintype "passive") (tstamp 4f2c5acd-b5ea-4a14-ae07-6751d95a0e8d)) - (pad "2" thru_hole oval (at 2 0 270) (size 1.2 1.75) (drill 0.75) (layers "*.Cu" "*.Mask") - (net 26 "Net-(J2-Pin_2)") (pinfunction "Pin_2") (pintype "passive") (tstamp d59cacac-8351-4a2e-9815-8223e3b3932d)) - (pad "3" thru_hole oval (at 4 0 270) (size 1.2 1.75) (drill 0.75) (layers "*.Cu" "*.Mask") - (net 27 "Net-(J2-Pin_3)") (pinfunction "Pin_3") (pintype "passive") (tstamp 836941c7-2bb4-4661-9cc9-e1a04c1c9cb4)) - (pad "4" thru_hole oval (at 6 0 270) (size 1.2 1.75) (drill 0.75) (layers "*.Cu" "*.Mask") - (net 2 "GND") (pinfunction "Pin_4") (pintype "passive") (tstamp 51fa6d78-3119-4873-93e9-212f23a3ccc0)) - (model "${KICAD6_3DMODEL_DIR}/Connector_JST.3dshapes/JST_PH_B4B-PH-K_1x04_P2.00mm_Vertical.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "TestPoint:TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded" (layer "F.Cu") - (tstamp 1e01e460-b56c-4c5c-aa7b-74a3e5b7094d) - (at 86.868 114.554) - (descr "wire loop with bead as test point, loop diameter 1.8mm, hole diameter 1.0mm") - (tags "test point wire loop bead") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "test point") - (property "ki_keywords" "test point tp") - (path "/6f756413-1eca-4428-bb57-f890fa54c873") - (attr through_hole) - (fp_text reference "TP3" (at 0.7 2.5) (layer "F.SilkS") hide - (effects (font (size 1 1) (thickness 0.15))) - (tstamp aafe99a6-e1e8-4e73-b04b-fa1449f4e3c5) - ) - (fp_text value "12V" (at 0 -2.8) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 85d16adc-5189-46bf-93d2-85ef0eee2c2a) - ) - (fp_text user "${REFERENCE}" (at 0.7 2.5) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 12d28b53-a17f-4edd-a1de-b22af60aaee1) - ) - (fp_circle (center 0 0) (end 1.5 0) - (stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp a82cb39b-808c-4455-b04b-9dca4d4c2f31)) - (fp_circle (center 0 0) (end 1.8 0) - (stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 509c7d0e-fabd-42b5-b5e4-72598894ca3e)) - (fp_line (start -0.9 -0.2) (end 0.9 -0.2) - (stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp 21a03486-27ad-4458-a064-be36c28eade0)) - (fp_line (start -0.9 0.2) (end -0.9 -0.2) - (stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp 9c0ef858-523f-4002-ae28-d80274228d30)) - (fp_line (start 0.9 -0.2) (end 0.9 0.2) - (stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp 3f88eef2-110e-43f0-8e32-a3b90becc53a)) - (fp_line (start 0.9 0.2) (end -0.9 0.2) - (stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp 3f2329e4-0570-4cef-b17a-1fe79714f952)) - (fp_circle (center 0 0) (end 1.3 0) - (stroke (width 0.12) (type solid)) (fill none) (layer "F.Fab") (tstamp cf699456-2439-4ec9-b80e-f02062d200ab)) - (pad "1" thru_hole circle (at 0 0) (size 2 2) (drill 1) (layers "*.Cu" "*.Mask") - (net 3 "+12V") (pinfunction "1") (pintype "passive") (tstamp 7c3fa723-a2b5-4bc2-9caf-b7357b6af3ab)) - (model "${KICAD6_3DMODEL_DIR}/TestPoint.3dshapes/TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") - (tstamp 25bcb982-59e8-4ece-a4b3-d8b24d910060) - (at 80.3675 84.328 180) - (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags "resistor handsolder") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Resistor") - (property "ki_keywords" "R res resistor") - (path "/f41f8cea-c2e3-45a8-8558-a5ad445aa7cf") - (attr smd) - (fp_text reference "R7" (at -2.6905 -0.0508) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp a8f73390-2cec-4257-982d-6c348347f71d) - ) - (fp_text value "100k" (at 0 1.43) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp d92447cf-08ce-4e4c-bea6-eecf7aa21b4f) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.06))) - (tstamp a1ee81ec-c809-49bb-8b7c-612ac3c72cab) - ) - (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b04ed4a6-83a2-4a09-a2e4-274502354713)) - (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0d9281d9-40e8-4bc2-b674-6acfae29b5dd)) - (fp_line (start -1.65 -0.73) (end 1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2e556be1-0334-45cb-89af-92ac0e20a8de)) - (fp_line (start -1.65 0.73) (end -1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0cf940bf-3e13-4e2a-808e-e04514941bdb)) - (fp_line (start 1.65 -0.73) (end 1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ac8e8204-57e9-43e3-9b3d-f08200137645)) - (fp_line (start 1.65 0.73) (end -1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b9b6aa62-794e-4ac1-9056-274fb771f236)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 299d3d03-5d69-4356-a48d-f90cb582cfd7)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a8b14dfb-7071-48cb-8617-b671be16f816)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f37142f5-3e5a-468c-909f-0ed3b1bf4abf)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f67c0fba-593e-4aea-806d-b835f7ffa91d)) - (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 1 "+5V") (pintype "passive") (tstamp 81b6a82a-af20-43a8-9013-bc9cd72c413a)) - (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 7 "Net-(U2-FB)") (pintype "passive") (tstamp f738a980-6332-47c0-a61a-31c9b06ddb20)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Connector_PinSocket_1.27mm:PinSocket_1x06_P1.27mm_Vertical" (layer "F.Cu") - (tstamp 28ca907c-0dc8-44db-8f27-0fe94986fb1b) - (at 114.173 72.2884 -90) - (descr "Through hole straight socket strip, 1x06, 1.27mm pitch, single row (from Kicad 4.0.7), script generated") - (tags "Through hole socket strip THT 1x06 1.27mm single row") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Generic connector, single row, 01x06, script generated") - (property "ki_keywords" "connector") - (path "/687e93fa-7aa1-4bcb-bf2d-98cd66173c09") - (attr through_hole) - (fp_text reference "J5" (at 0 -2.135 -270) (layer "F.SilkS") hide - (effects (font (size 1 1) (thickness 0.15))) - (tstamp efbaa933-549d-458c-b882-a9a82b8240a4) - ) - (fp_text value "Prog" (at 0.2116 -2.159 -270) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp f4ad3e7e-a507-441e-900d-c1dc83cc8361) - ) - (fp_text user "${REFERENCE}" (at 0 3.175) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 21c375d3-a9ba-4e22-82f9-9c544c12ead1) - ) - (fp_line (start -1.33 0.635) (end -1.33 7.045) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d5a39159-8da3-4c00-8371-2144f0a1e5a6)) - (fp_line (start -1.33 0.635) (end -0.76 0.635) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1a33da61-8251-4426-90cb-9ea44a9c77f6)) - (fp_line (start -1.33 7.045) (end -0.30753 7.045) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 269083c6-08e6-4bf8-bbde-157a3cd02eb2)) - (fp_line (start 0 -0.76) (end 1.33 -0.76) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 506f8248-ebf1-47ca-b69c-fa0de3f4fa74)) - (fp_line (start 0.30753 7.045) (end 1.33 7.045) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b6c15f47-8f6b-4ae5-8ea3-45a7ecdad27b)) - (fp_line (start 0.76 0.635) (end 1.33 0.635) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3149725e-d4ab-40e7-975b-2442cd826696)) - (fp_line (start 1.33 -0.76) (end 1.33 0) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 930b2358-ece7-4c91-a481-9cc301d59fb3)) - (fp_line (start 1.33 0.635) (end 1.33 7.045) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e5beb3fa-62f3-451d-b47a-33cd3458fb21)) - (fp_line (start -1.8 -1.15) (end 1.75 -1.15) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0281d407-f52a-496f-a401-e27524e46f9a)) - (fp_line (start -1.8 7.5) (end -1.8 -1.15) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d8328c9d-b410-407d-91af-80a681244ca1)) - (fp_line (start 1.75 -1.15) (end 1.75 7.5) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e02f1b77-a742-464e-b361-9d266075ffe4)) - (fp_line (start 1.75 7.5) (end -1.8 7.5) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 13d6ef15-22d8-483a-bb1b-ee1b661ddc6c)) - (fp_line (start -1.27 -0.635) (end 0.635 -0.635) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 713dbc23-52ec-472d-8b8d-f3e65f630747)) - (fp_line (start -1.27 6.985) (end -1.27 -0.635) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e1f0dd1a-39e6-4c38-8084-02136abcd379)) - (fp_line (start 0.635 -0.635) (end 1.27 0) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 05eba58d-09a7-4dea-a771-7f25a9e0586a)) - (fp_line (start 1.27 0) (end 1.27 6.985) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1d244d4b-8f29-490a-880c-5ed075c932af)) - (fp_line (start 1.27 6.985) (end -1.27 6.985) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d8714fbd-9d92-4ec5-ad58-e804ba2c3f87)) - (pad "1" thru_hole rect (at 0 0 270) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask") - (net 31 "/SWCLK") (pinfunction "Pin_1") (pintype "passive") (tstamp 8038b1bc-a5d2-4472-867e-3bee9e5f4a8d)) - (pad "2" thru_hole oval (at 0 1.27 270) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask") - (net 32 "/SWDIO") (pinfunction "Pin_2") (pintype "passive") (tstamp f072b5b1-04a6-4cde-8d03-e6a0aa6cf480)) - (pad "3" thru_hole oval (at 0 2.54 270) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask") - (net 2 "GND") (pinfunction "Pin_3") (pintype "passive") (tstamp e7c5d606-901c-42e7-b688-da5ba3f6c877)) - (pad "4" thru_hole oval (at 0 3.81 270) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask") - (net 33 "Net-(J5-Pin_4)") (pinfunction "Pin_4") (pintype "passive") (tstamp 36bbc556-d5a0-4575-a7c1-413fed9c83de)) - (pad "5" thru_hole oval (at 0 5.08 270) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask") - (net 34 "/BOOT0") (pinfunction "Pin_5") (pintype "passive") (tstamp c4d5b2ae-7d6c-43e9-b007-b984a2f762e4)) - (pad "6" thru_hole oval (at 0 6.35 270) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask") - (net 35 "/NRST") (pinfunction "Pin_6") (pintype "passive") (tstamp 3e30995d-e4c2-4f27-9dea-052bfba20c84)) - (model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_1.27mm.3dshapes/PinSocket_1x06_P1.27mm_Vertical.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") - (tstamp 2d247542-3eab-4f75-a969-59d1737bd706) - (at 116.586 91.7945 -90) - (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags "capacitor handsolder") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Unpolarized capacitor") - (property "ki_keywords" "cap capacitor") - (path "/a584b76a-1727-482d-b8e6-e2edaf6882d5") - (attr smd) - (fp_text reference "C12" (at 0.8901 -2.159 -180) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp a0146e2f-d13e-4a8b-94de-41b3666853b9) - ) - (fp_text value "0.1" (at 0 1.43 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp bf24bd29-d9e6-4ea3-98dd-ed3dc7037079) - ) - (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.06))) - (tstamp 4772c4cd-9297-4ae0-8983-79c1950bcb7f) - ) - (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 14b909ab-5f2f-4256-be11-387be3c4ac6e)) - (fp_line (start -0.146267 0.51) (end 0.146267 0.51) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 106a9a30-f3c6-4143-b90d-c9be96be7d2a)) - (fp_line (start -1.65 -0.73) (end 1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d51f9984-5ebd-4085-be68-3f5ef09b8113)) - (fp_line (start -1.65 0.73) (end -1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6babfc4d-70d3-4945-8925-264799f4cdfd)) - (fp_line (start 1.65 -0.73) (end 1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 68b98d3a-f0da-452f-a136-6c23a46caab3)) - (fp_line (start 1.65 0.73) (end -1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9ff126fb-0988-43a3-a4b1-035bfe2e10fe)) - (fp_line (start -0.8 -0.4) (end 0.8 -0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 96df01b2-4b1b-41d2-a587-6db96f914ef6)) - (fp_line (start -0.8 0.4) (end -0.8 -0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d0587880-3636-49de-9c60-4f72da08b871)) - (fp_line (start 0.8 -0.4) (end 0.8 0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8c8f2877-555c-4f29-b4fb-f5f263819d8a)) - (fp_line (start 0.8 0.4) (end -0.8 0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2d9a62b6-883d-4534-a3df-f7e3b2feab0d)) - (pad "1" smd roundrect (at -0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 6 "+3V3") (pintype "passive") (tstamp d33f97bb-e25f-4748-8738-123456be370a)) - (pad "2" smd roundrect (at 0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pintype "passive") (tstamp 4a5ca88b-ab0c-47dc-9118-ba1b1a549b84)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "TestPoint:TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded" (layer "F.Cu") - (tstamp 2e74c545-c1df-4013-aeec-7c1520a97b6d) - (at 95.5548 84.0486) - (descr "wire loop with bead as test point, loop diameter 1.8mm, hole diameter 1.0mm") - (tags "test point wire loop bead") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "test point") - (property "ki_keywords" "test point tp") - (path "/21e8e784-612e-4640-aee1-3042d238a077") - (attr through_hole) - (fp_text reference "TP5" (at 0.7 2.5) (layer "F.SilkS") hide - (effects (font (size 1 1) (thickness 0.15))) - (tstamp b06dad7d-40dc-403d-a816-4a5f0b071067) - ) - (fp_text value "3V3" (at 0 -2.8) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp dc7b1422-bf8c-40cc-9835-76f2907e4d73) - ) - (fp_text user "${REFERENCE}" (at 0.7 2.5) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp dd33681d-eff8-4c1e-b0c2-9d31f265b72a) - ) - (fp_circle (center 0 0) (end 1.5 0) - (stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 29039873-9606-407b-98e7-add633d2514c)) - (fp_circle (center 0 0) (end 1.8 0) - (stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp ed769d34-d751-4dac-8ec1-ac0c8fb3649c)) - (fp_line (start -0.9 -0.2) (end 0.9 -0.2) - (stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp bd9b9790-8ee6-40a0-b580-84dc48696385)) - (fp_line (start -0.9 0.2) (end -0.9 -0.2) - (stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp 8163d7f7-2cde-4fcd-8d25-b118a33446ef)) - (fp_line (start 0.9 -0.2) (end 0.9 0.2) - (stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp 731692ea-8731-4a58-9489-a33de09706aa)) - (fp_line (start 0.9 0.2) (end -0.9 0.2) - (stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp 889c4fb9-4ef5-4e63-aeb4-efa52824d9b6)) - (fp_circle (center 0 0) (end 1.3 0) - (stroke (width 0.12) (type solid)) (fill none) (layer "F.Fab") (tstamp dc77c6f4-0c54-4533-8fb0-80630bac722e)) - (pad "1" thru_hole circle (at 0 0) (size 2 2) (drill 1) (layers "*.Cu" "*.Mask") - (net 6 "+3V3") (pinfunction "1") (pintype "passive") (tstamp 1960342b-4740-4432-8ed5-1519d21c190b)) - (model "${KICAD6_3DMODEL_DIR}/TestPoint.3dshapes/TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_THT:R_Box_L14.0mm_W5.0mm_P9.00mm" (layer "F.Cu") - (tstamp 30c0c9a3-783b-4cbc-84e1-bb0cea3985c6) - (at 97.354 98.806) - (descr "Resistor, Box series, Radial, pin pitch=9.00mm, 5W, length*width=14.0*5.0mm^2, http://www.produktinfo.conrad.com/datenblaetter/425000-449999/443860-da-01-de-METALLBAND_WIDERSTAND_0_1_OHM_5W_5Pr.pdf") - (tags "Resistor Box series Radial pin pitch 9.00mm 5W length 14.0mm width 5.0mm") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Resistor") - (property "ki_keywords" "R res resistor") - (path "/0c7fee8d-333c-4847-9a86-c6aaf2cd04e4") - (attr through_hole) - (fp_text reference "R20" (at 4.5 -3.75) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 5183a978-7f63-4501-a28f-365299379f15) - ) - (fp_text value "0.05" (at 4.5 3.75) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 626eab42-625b-4226-816b-4a54aa1744da) - ) - (fp_text user "${REFERENCE}" (at 4.5 0) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 92799b30-10c6-47fa-88b9-46296b7d3cc8) - ) - (fp_line (start -2.62 -2.62) (end -2.62 2.62) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0c888846-8615-45a1-b68f-c4af18dce70f)) - (fp_line (start -2.62 -2.62) (end 11.62 -2.62) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5a462b97-e7f7-4c0f-af5e-975d97b26f9d)) - (fp_line (start -2.62 2.62) (end 11.62 2.62) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 52dfb8e4-82af-47f7-8e48-65a26a576ce7)) - (fp_line (start 11.62 -2.62) (end 11.62 2.62) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 62480b9c-e9b8-4bca-89bb-f0c307bc9ed3)) - (fp_line (start -2.75 -2.75) (end -2.75 2.75) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 530c0dd2-5ab6-460c-bb74-799faf103d24)) - (fp_line (start -2.75 2.75) (end 11.75 2.75) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 88323b5f-3ec3-49bd-a1be-b2222648ea74)) - (fp_line (start 11.75 -2.75) (end -2.75 -2.75) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9cacde2f-dc2c-4c05-9aa4-d4aded6feb46)) - (fp_line (start 11.75 2.75) (end 11.75 -2.75) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4a03614b-9f60-42a4-adec-a472825ec3e1)) - (fp_line (start -2.5 -2.5) (end -2.5 2.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e23ce763-1c79-4076-8321-9d2cf422a10a)) - (fp_line (start -2.5 2.5) (end 11.5 2.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 39ad70be-ebc4-42fb-89bf-fc37e1740f78)) - (fp_line (start 11.5 -2.5) (end -2.5 -2.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 581d29ce-da27-4229-a52c-995f09e2a6a4)) - (fp_line (start 11.5 2.5) (end 11.5 -2.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 99cf00b3-f866-4496-80f8-f895ab350c5f)) - (pad "1" thru_hole circle (at 0 0) (size 2 2) (drill 1) (layers "*.Cu" "*.Mask") - (net 3 "+12V") (pintype "passive") (tstamp 7b553dfd-e985-489b-8ec2-7b0c157f1b25)) - (pad "2" thru_hole circle (at 9 0) (size 2 2) (drill 1) (layers "*.Cu" "*.Mask") - (net 39 "Net-(Q2-S)") (pintype "passive") (tstamp 81bc8677-0821-40fa-876c-977e5f27c938)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Box_L14.0mm_W5.0mm_P9.00mm.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "TestPoint:TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded" (layer "F.Cu") - (tstamp 34ae6c07-8be9-4675-8329-175926271736) - (at 89.916 88.646) - (descr "wire loop with bead as test point, loop diameter 1.8mm, hole diameter 1.0mm") - (tags "test point wire loop bead") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "test point") - (property "ki_keywords" "test point tp") - (path "/cbc6243a-5f74-44b4-b800-9818b40ddc47") - (attr through_hole) - (fp_text reference "TP1" (at 0.7 2.5) (layer "F.SilkS") hide - (effects (font (size 1 1) (thickness 0.15))) - (tstamp ba2a1a27-6c73-40b2-8ac2-65ba3ce07c9d) - ) - (fp_text value "Gnd" (at 0 -2.54) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 9898714e-6fa0-4da8-9d29-283befbf2f25) - ) - (fp_text user "${REFERENCE}" (at 0.7 2.5) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 24c2ff55-b32d-4356-bba5-2614781e97e1) - ) - (fp_circle (center 0 0) (end 1.5 0) - (stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp a04464ab-4c31-42d7-a912-425988eb21a6)) - (fp_circle (center 0 0) (end 1.8 0) - (stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp d47fa263-3c86-41bc-a1b2-0d0cd19731db)) - (fp_line (start -0.9 -0.2) (end 0.9 -0.2) - (stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp 9be59b6f-ad00-46b8-a779-b3dbd1a3a9e4)) - (fp_line (start -0.9 0.2) (end -0.9 -0.2) - (stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp b3426c77-9e11-485c-a280-f0ac1ae81a59)) - (fp_line (start 0.9 -0.2) (end 0.9 0.2) - (stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp a1036176-ed1b-4402-850e-e9bf223fb540)) - (fp_line (start 0.9 0.2) (end -0.9 0.2) - (stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp 05321ed1-0d46-4ce9-947a-31c4ef6c1d6b)) - (fp_circle (center 0 0) (end 1.3 0) - (stroke (width 0.12) (type solid)) (fill none) (layer "F.Fab") (tstamp 1037eebc-7884-4884-9958-563f637ab36e)) - (pad "1" thru_hole circle (at 0 0) (size 2 2) (drill 1) (layers "*.Cu" "*.Mask") - (net 2 "GND") (pinfunction "1") (pintype "passive") (tstamp 7b18a96c-742b-4b2f-be8d-11ee6d2ebd60)) - (model "${KICAD6_3DMODEL_DIR}/TestPoint.3dshapes/TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") - (tstamp 40506150-35b7-4ec5-801e-e0ec218d6036) - (at 102.616 89.5085 90) - (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags "capacitor handsolder") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Unpolarized capacitor") - (property "ki_keywords" "cap capacitor") - (path "/40e246c7-0204-46de-878c-c8b852fd8ab9") - (attr smd) - (fp_text reference "C11" (at -2.4395 0.508 180) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 7806051c-83c9-4bcd-a210-67089012fcf0) - ) - (fp_text value "0.1" (at 0 1.43 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 5055b439-59ab-436d-a36a-2cc8a79a4df4) - ) - (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.06))) - (tstamp 7ab19610-96c7-4c16-906b-7b46ff335104) - ) - (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c0f3f084-4b76-4d36-b8a8-31ef144ad852)) - (fp_line (start -0.146267 0.51) (end 0.146267 0.51) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 27a75906-5696-4610-8c13-bc172266d2f1)) - (fp_line (start -1.65 -0.73) (end 1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b89528da-9a67-477b-98ca-8b43ce991975)) - (fp_line (start -1.65 0.73) (end -1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0f43635b-273c-4bff-a469-ccf4a036b84e)) - (fp_line (start 1.65 -0.73) (end 1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp af7f05b7-178d-4ac8-ab5c-246e67384702)) - (fp_line (start 1.65 0.73) (end -1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 30dd93a5-d051-46da-8a12-58d42f04b5c1)) - (fp_line (start -0.8 -0.4) (end 0.8 -0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a9067e2d-19da-4aed-aa38-9baa4e347fd2)) - (fp_line (start -0.8 0.4) (end -0.8 -0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 96879d3f-6d16-4973-8338-44e3912266ea)) - (fp_line (start 0.8 -0.4) (end 0.8 0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6fdf51c4-7d99-4cd8-9843-af29764e7981)) - (fp_line (start 0.8 0.4) (end -0.8 0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e70cc1e7-9456-499a-8521-6a22766a98e4)) - (pad "1" smd roundrect (at -0.8625 0 90) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 6 "+3V3") (pintype "passive") (tstamp 172be9dc-e995-4796-8510-1ca8bfe96b7c)) - (pad "2" smd roundrect (at 0.8625 0 90) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pintype "passive") (tstamp b860ff5f-b11a-4d1f-9e00-63cb7f566c21)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "TestPoint:TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded" (layer "F.Cu") - (tstamp 434c314e-1427-4250-9854-f349d271d6e3) - (at 111.9124 107.696) - (descr "wire loop with bead as test point, loop diameter 1.8mm, hole diameter 1.0mm") - (tags "test point wire loop bead") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "test point") - (property "ki_keywords" "test point tp") - (path "/8aceb784-8188-4576-ab17-f3db7be86fb4") - (attr through_hole) - (fp_text reference "TP10" (at 0.7 2.5) (layer "F.SilkS") hide - (effects (font (size 1 1) (thickness 0.15))) - (tstamp d9c95b72-39de-4e2f-9403-b9a0162305d1) - ) - (fp_text value "R+" (at 2.9464 -0.635) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 85fbe137-e5e8-4f56-97ce-73634a06b13e) - ) - (fp_text user "${REFERENCE}" (at 0.7 2.5) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 52d1ad83-3722-400a-a1cf-0c09904f14d1) - ) - (fp_circle (center 0 0) (end 1.5 0) - (stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 6eb7ab77-1b9f-4dab-950f-2ad60a932736)) - (fp_circle (center 0 0) (end 1.8 0) - (stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp aa380643-d555-45b1-9772-58247bd5807d)) - (fp_line (start -0.9 -0.2) (end 0.9 -0.2) - (stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp 4d67c51b-ae11-4285-a44a-6568a6d0f36a)) - (fp_line (start -0.9 0.2) (end -0.9 -0.2) - (stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp c1485456-c8ba-4bbe-a3ce-e1c908b525c8)) - (fp_line (start 0.9 -0.2) (end 0.9 0.2) - (stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp 9f0bd503-6e53-4848-863d-e154bd126b21)) - (fp_line (start 0.9 0.2) (end -0.9 0.2) - (stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp 6e8a8a5f-9f24-480d-8736-34659adf95c4)) - (fp_circle (center 0 0) (end 1.3 0) - (stroke (width 0.12) (type solid)) (fill none) (layer "F.Fab") (tstamp 3e91e286-85f8-406c-a2ee-3dd23080fd3d)) - (pad "1" thru_hole circle (at 0 0) (size 2 2) (drill 1) (layers "*.Cu" "*.Mask") - (net 52 "/R_UP") (pinfunction "1") (pintype "passive") (tstamp cddea7f6-5b11-41e9-bca8-88c93dffb56c)) - (model "${KICAD6_3DMODEL_DIR}/TestPoint.3dshapes/TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") - (tstamp 4d5a0ac5-c4f9-4e0a-bb4b-55af8a60a840) - (at 116.84 82.7035 -90) - (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags "capacitor handsolder") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Unpolarized capacitor") - (property "ki_keywords" "cap capacitor") - (path "/7ead0da8-d40b-4429-8539-b98e08321c21") - (attr smd) - (fp_text reference "C9" (at -1.4235 1.778 -180) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 240b88ec-05b2-47dd-8178-0c9101cd10b3) - ) - (fp_text value "0.1" (at 0 1.43 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp a231ca85-44a5-4713-bba9-af47ae8939fc) - ) - (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.06))) - (tstamp 469f6e80-a453-4286-831b-2f4a4b212113) - ) - (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1c22313b-f360-476d-a8c2-3a216e2dd0ba)) - (fp_line (start -0.146267 0.51) (end 0.146267 0.51) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b5cfd9c6-60cd-4289-b8ce-a39b0d7dfd7c)) - (fp_line (start -1.65 -0.73) (end 1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp de824ec8-dc31-4bc3-82cb-785c5c694c4d)) - (fp_line (start -1.65 0.73) (end -1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 05788ac2-6ad1-4cec-9d7e-81f746ff3190)) - (fp_line (start 1.65 -0.73) (end 1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7964db02-55d7-4481-a806-7ea4aaf475e8)) - (fp_line (start 1.65 0.73) (end -1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 54a72f18-3405-4f3d-b30c-1e47e6332f3b)) - (fp_line (start -0.8 -0.4) (end 0.8 -0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d20312af-5a12-4c5c-ae1a-a16e0f22dc95)) - (fp_line (start -0.8 0.4) (end -0.8 -0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3a53eef0-42f4-495c-8972-8440002d9902)) - (fp_line (start 0.8 -0.4) (end 0.8 0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 59c806bb-c0dd-475a-b4b3-f1aac6e05243)) - (fp_line (start 0.8 0.4) (end -0.8 0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ce4e3d5a-12b4-44d5-9655-d6ae3831625f)) - (pad "1" smd roundrect (at -0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 6 "+3V3") (pintype "passive") (tstamp d89b5bc6-2d81-49e8-9892-34f819109251)) - (pad "2" smd roundrect (at 0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pintype "passive") (tstamp 56905b20-c3b0-473a-a917-5032e2968cfc)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_SMD:C_1206_3216Metric" (layer "F.Cu") - (tstamp 4f458a8b-f30b-43fc-b1dd-4dcf5f472355) - (at 92.456 83.517 -90) - (descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags "capacitor") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Unpolarized capacitor") - (property "ki_keywords" "cap capacitor") - (path "/89d9e89e-591d-4a71-9909-c085adf5350c") - (attr smd) - (fp_text reference "C4" (at -3.097 0 -180) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 146731dd-fcff-4ead-bcf6-ed74e57cb454) - ) - (fp_text value "47u" (at 0 1.85 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 818448db-c873-47f4-8b94-096113868f2e) - ) - (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") - (effects (font (size 0.8 0.8) (thickness 0.12))) - (tstamp 1e51182b-1eb3-4196-ae13-eacb8ac30826) - ) - (fp_line (start -0.711252 -0.91) (end 0.711252 -0.91) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 66c2f254-dc5e-4bba-9074-36426f93ac2f)) - (fp_line (start -0.711252 0.91) (end 0.711252 0.91) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d7e670e1-53ef-4a66-90d9-bcd88fa51a54)) - (fp_line (start -2.3 -1.15) (end 2.3 -1.15) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 892ab00b-a3d8-4fa0-9529-980d7a2e1340)) - (fp_line (start -2.3 1.15) (end -2.3 -1.15) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp deb8c192-ad44-4fd9-a51c-7e2dbdc93841)) - (fp_line (start 2.3 -1.15) (end 2.3 1.15) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1a425f84-b2f2-45aa-87e2-71b6cee5409f)) - (fp_line (start 2.3 1.15) (end -2.3 1.15) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 323e0c38-97a9-4538-8352-b9fc2825ce7f)) - (fp_line (start -1.6 -0.8) (end 1.6 -0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e23e56e6-bdba-4b47-b76a-2ce3b88fd049)) - (fp_line (start -1.6 0.8) (end -1.6 -0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1421ea0c-50c7-4dea-bb92-063050ecd396)) - (fp_line (start 1.6 -0.8) (end 1.6 0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5892061d-949f-4299-ae21-44907ee684e0)) - (fp_line (start 1.6 0.8) (end -1.6 0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5deb62c2-729d-4d20-8e79-cd29fb909246)) - (pad "1" smd roundrect (at -1.475 0 270) (size 1.15 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) - (net 6 "+3V3") (pintype "passive") (tstamp 826d3baa-2c2d-450d-84ee-e4609ea36b62)) - (pad "2" smd roundrect (at 1.475 0 270) (size 1.15 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) - (net 2 "GND") (pintype "passive") (tstamp 21b8b0f6-e3fd-475d-a752-659def455a2c)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Package_TO_SOT_SMD:SOT-23_Handsoldering" (layer "F.Cu") - (tstamp 5279b9c4-2b69-4f93-b077-529519d8ccc7) - (at 103.656 108.646 180) - (descr "SOT-23, Handsoldering") - (tags "SOT-23") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "N-MOSFET transistor, gate/source/drain") - (property "ki_keywords" "transistor NMOS N-MOS N-MOSFET") - (path "/6e9b6f62-1be3-4436-a767-96d5cae2139e") - (attr smd) - (fp_text reference "Q6" (at 0 -2.5) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 0fa300de-5703-4957-8400-fce0ca44824d) - ) - (fp_text value "2N7002" (at 0 2.5) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp c834e84e-9ba6-4d41-8105-56fca573cec4) - ) - (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") - (effects (font (size 0.5 0.5) (thickness 0.075))) - (tstamp 4615c9bd-99a4-4b6e-9d6f-960a8af820da) - ) - (fp_line (start 0.76 -1.58) (end -2.4 -1.58) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6cacea1d-dcb6-423e-ad37-cd5a725817ab)) - (fp_line (start 0.76 -1.58) (end 0.76 -0.65) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ebbde502-9676-4c77-ad53-b91fc6f69a44)) - (fp_line (start 0.76 1.58) (end -0.7 1.58) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d0d0bbd3-f6b0-435d-acef-e3a379873f8d)) - (fp_line (start 0.76 1.58) (end 0.76 0.65) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 188b761c-0703-44d7-b1cb-95410e91c07b)) - (fp_line (start -2.7 -1.75) (end 2.7 -1.75) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3a63d4f3-8a5b-4f5e-9816-590859568072)) - (fp_line (start -2.7 1.75) (end -2.7 -1.75) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6d57ce39-4d7a-417d-b52c-183aee474f62)) - (fp_line (start 2.7 -1.75) (end 2.7 1.75) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b8be1a24-258c-400c-931a-fcf428162c9b)) - (fp_line (start 2.7 1.75) (end -2.7 1.75) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 41d7cb21-6b61-4144-bf97-5bd2c809934a)) - (fp_line (start -0.7 -0.95) (end -0.7 1.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 81b47860-9ab2-4abe-bb1f-108a728733b3)) - (fp_line (start -0.7 -0.95) (end -0.15 -1.52) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6a51734d-6030-4a68-a3d7-e2c63b068f7e)) - (fp_line (start -0.7 1.52) (end 0.7 1.52) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b87cfc50-4ad4-4819-b319-e42454e1cf32)) - (fp_line (start -0.15 -1.52) (end 0.7 -1.52) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c01d05e6-101b-4f61-a6f3-3451563236d7)) - (fp_line (start 0.7 -1.52) (end 0.7 1.52) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cc6d478e-f9c2-44ef-b395-0ce197b69ed0)) - (pad "1" smd rect (at -1.5 -0.95 180) (size 1.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask") - (net 43 "Net-(Q6-G)") (pinfunction "G") (pintype "input") (tstamp 4a27c090-258e-4391-9296-62fa8ac49bc2)) - (pad "2" smd rect (at -1.5 0.95 180) (size 1.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask") - (net 2 "GND") (pinfunction "S") (pintype "passive") (tstamp 2d4f9578-593e-4e5b-8058-f8854d2a9b45)) - (pad "3" smd rect (at 1.5 0 180) (size 1.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask") - (net 41 "Net-(Q4-G)") (pinfunction "D") (pintype "passive") (tstamp 6566ece5-a63e-47ae-9be2-81aff7dd7b71)) - (model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "kicad:cd43" (layer "F.Cu") - (tstamp 546ff89c-ebb4-4775-89a1-b6cd9ea6aa74) - (at 80.0614 93.2688) - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Inductor") - (property "ki_keywords" "inductor choke coil reactor magnetic") - (path "/adf6c8f5-8c10-4ff1-84a2-c09d6ffb3952") - (attr smd) - (fp_text reference "L1" (at 3.022 2.8956) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 4d45bdae-af67-4d56-b325-30a1f55bfac2) - ) - (fp_text value "10u" (at 0.0762 -5.3975) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp e19b2cee-454a-4a65-830c-33199ab44d62) - ) - (fp_circle (center 0 0) (end 2.25 0) - (stroke (width 0.15) (type solid)) (fill none) (layer "F.Fab") (tstamp a28716a5-639e-43fb-afb2-fd3d455362b5)) - (pad "1" smd oval (at -1.625 0) (size 1.75 4.5) (layers "F.Cu" "F.Paste" "F.Mask") - (net 4 "Net-(U2-SW)") (pinfunction "1") (pintype "passive") (tstamp ee660c1b-c14b-4dd9-831f-849cc9464aeb)) - (pad "2" smd oval (at 1.625 0) (size 1.75 4.5) (layers "F.Cu" "F.Paste" "F.Mask") - (net 1 "+5V") (pinfunction "2") (pintype "passive") (tstamp d8b1ddc5-6a02-4164-84ce-d841a2ccdd73)) - ) - - (footprint "Connector_PinSocket_2.54mm:PinSocket_1x03_P2.54mm_Vertical" (layer "F.Cu") - (tstamp 5bf8ba99-d5ae-49a4-b8de-f4af94f93448) - (at 124.7498 88.0868 -90) - (descr "Through hole straight socket strip, 1x03, 2.54mm pitch, single row (from Kicad 4.0.7), script generated") - (tags "Through hole socket strip THT 1x03 2.54mm single row") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Generic connector, single row, 01x03, script generated") - (property "ki_keywords" "connector") - (path "/1bcf9c92-e28f-4301-aa01-20096e3417da") - (attr through_hole) - (fp_text reference "J4" (at 2.515 5.446) (layer "F.SilkS") hide - (effects (font (size 1 1) (thickness 0.15))) - (tstamp bbabe1b4-b104-4966-80da-b8af206bebf6) - ) - (fp_text value "UART" (at 0 7.85 90) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp f5a1182f-30a7-4120-a574-1c9cbda5b312) - ) - (fp_text user "${REFERENCE}" (at 0 2.54) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp c1e944c7-0c0e-4dc0-ade8-3e7f7d607c00) - ) - (fp_line (start -1.33 1.27) (end -1.33 6.41) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cf6545a7-e537-45f7-be4c-6a04378585dc)) - (fp_line (start -1.33 1.27) (end 1.33 1.27) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d734c502-dcd8-4904-8dc8-ea69d578f898)) - (fp_line (start -1.33 6.41) (end 1.33 6.41) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d12a7b43-1c7e-4e61-88d1-5e41b0414b7f)) - (fp_line (start 0 -1.33) (end 1.33 -1.33) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6b9ea9f2-8453-43ab-944c-059e4f122b88)) - (fp_line (start 1.33 -1.33) (end 1.33 0) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cb3ac041-97b3-489b-9d44-a4311aee4415)) - (fp_line (start 1.33 1.27) (end 1.33 6.41) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7dc5728d-1b6e-4fcd-b388-3fe13fcc0313)) - (fp_line (start -1.8 -1.8) (end 1.75 -1.8) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b388d83d-55a5-4e8e-a967-b5606099e6a5)) - (fp_line (start -1.8 6.85) (end -1.8 -1.8) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2f9e4649-85bf-44b2-a899-48b662ecd963)) - (fp_line (start 1.75 -1.8) (end 1.75 6.85) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d794cb54-ef21-4b28-91dc-7eeec848dab1)) - (fp_line (start 1.75 6.85) (end -1.8 6.85) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dbaeb466-bdeb-4a96-80ec-e4909ad1d736)) - (fp_line (start -1.27 -1.27) (end 0.635 -1.27) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 49f16de7-da51-43fc-b9ad-88c58887eee5)) - (fp_line (start -1.27 6.35) (end -1.27 -1.27) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4648436b-01e7-4fac-80b5-4c9a6934bc90)) - (fp_line (start 0.635 -1.27) (end 1.27 -0.635) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f2dc3f24-1f05-47aa-92f6-7b5c6826db78)) - (fp_line (start 1.27 -0.635) (end 1.27 6.35) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3b462df8-eb65-478c-a413-63fd73b8f7a4)) - (fp_line (start 1.27 6.35) (end -1.27 6.35) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e5428637-0d8d-4dd9-8114-ce041b26dcee)) - (pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") - (net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 728456cb-291d-49c8-b037-803b379afdce)) - (pad "2" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") - (net 29 "/Rx") (pinfunction "Pin_2") (pintype "passive") (tstamp 58add82e-4897-41b1-b46c-256d30b16d3c)) - (pad "3" thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") - (net 30 "/Tx") (pinfunction "Pin_3") (pintype "passive") (tstamp 10efc13d-14cf-41fb-bd20-0bc15c840376)) - (model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x03_P2.54mm_Vertical.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (layer "F.Cu") - (tstamp 5de1af47-129f-46ce-afe8-77ce841c65ab) - (at 80.4965 82.296 180) - (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") - (tags "capacitor handsolder") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Unpolarized capacitor") - (property "ki_keywords" "cap capacitor") - (path "/069c60ee-3b02-4b2d-ac7e-e05693a8179c") - (attr smd) - (fp_text reference "C6" (at -0.0215 1.778) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 75666b31-83c8-4653-8b3a-0906dc1dda36) - ) - (fp_text value "22" (at 0 1.68) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp e67c5476-9f1f-4a5b-b546-070705421405) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") - (effects (font (size 0.5 0.5) (thickness 0.08))) - (tstamp 4e54eb1d-fe22-4d3d-91f2-0589bbeeaeb1) - ) - (fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 870efad0-d64a-4b62-a109-d169f9b3a21c)) - (fp_line (start -0.261252 0.735) (end 0.261252 0.735) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 976392e6-5f14-4764-983e-8f02857d0571)) - (fp_line (start -1.88 -0.98) (end 1.88 -0.98) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 19c50b11-c94e-4459-bd34-bf799705a2f2)) - (fp_line (start -1.88 0.98) (end -1.88 -0.98) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b3032801-e3a2-4831-8407-532e8a3730f5)) - (fp_line (start 1.88 -0.98) (end 1.88 0.98) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 42ecc71a-7cd2-488e-9ae3-fbb62a43457f)) - (fp_line (start 1.88 0.98) (end -1.88 0.98) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 99e221ce-a276-493c-bbf3-025ce5d1cc2b)) - (fp_line (start -1 -0.625) (end 1 -0.625) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 80f19304-fc9c-4b59-a8ed-69c87ed02aac)) - (fp_line (start -1 0.625) (end -1 -0.625) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4f71697b-622f-4c19-9f47-cc8409c73c11)) - (fp_line (start 1 -0.625) (end 1 0.625) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 21031c56-7a1c-4341-8139-59d2270553ac)) - (fp_line (start 1 0.625) (end -1 0.625) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3f744a55-f0f8-4b43-a4bd-fe8dc50f5ee2)) - (pad "1" smd roundrect (at -1.0375 0 180) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.212766) - (net 1 "+5V") (pintype "passive") (tstamp 1fe3f11e-fb02-4940-9570-454cacc101df)) - (pad "2" smd roundrect (at 1.0375 0 180) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.212766) - (net 7 "Net-(U2-FB)") (pintype "passive") (tstamp 33c2e0ca-53e2-41d6-8d32-cafb6645b041)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-2_1x02_P5.00mm_Horizontal" (layer "F.Cu") - (tstamp 6a1333a5-26ef-4f08-931c-7cb67cbabbd4) - (at 119.674 117.653) - (descr "Terminal Block Phoenix MKDS-1,5-2, 2 pins, pitch 5mm, size 10x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix") - (tags "THT Terminal Block Phoenix MKDS-1,5-2 pitch 5mm size 10x9.8mm^2 drill 1.3mm pad 2.6mm") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Generic screw terminal, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)") - (property "ki_keywords" "screw terminal") - (path "/ad51aec2-9b95-449d-aad5-50795c12de48") - (attr through_hole) - (fp_text reference "J7" (at 2.54 -6.604) (layer "F.SilkS") hide - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 0891292d-7d4d-4a9a-aa9c-f8654a3e9531) - ) - (fp_text value "Motor" (at 2.5 5.66) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 3cd20bde-a0b4-4d0d-b580-fe6644451c7e) - ) - (fp_text user "${REFERENCE}" (at 2.5 3.2) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 6be5b47e-c724-49f0-a980-8b132de1f14e) - ) - (fp_line (start -2.8 4.16) (end -2.8 4.9) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e5d3a9fb-737d-4da0-96d7-98b1ea196e13)) - (fp_line (start -2.8 4.9) (end -2.3 4.9) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9672c248-04c8-4be5-80af-ece63d5445d6)) - (fp_line (start -2.56 -5.261) (end -2.56 4.66) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0a45503e-31e2-4001-8b07-d0a40d4f2782)) - (fp_line (start -2.56 -5.261) (end 7.56 -5.261) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 23ccbb54-112d-4aa8-82f7-cb74682b3cd5)) - (fp_line (start -2.56 -2.301) (end 7.56 -2.301) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 664a8215-ee15-4701-b69b-5d64e2c9bee1)) - (fp_line (start -2.56 2.6) (end 7.56 2.6) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 399a0ab0-1fef-4734-90de-53f772877b5f)) - (fp_line (start -2.56 4.1) (end 7.56 4.1) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 98e2f6ed-060a-4c4b-aca8-c91022903ea2)) - (fp_line (start -2.56 4.66) (end 7.56 4.66) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8a60a9c9-89a0-4263-882f-5801b6d4b784)) - (fp_line (start 3.773 1.023) (end 3.726 1.069) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cb2eae27-9825-42b7-af44-151bdd124618)) - (fp_line (start 3.966 1.239) (end 3.931 1.274) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 42c444cf-b76f-4a9f-ba82-24cfc62ed005)) - (fp_line (start 6.07 -1.275) (end 6.035 -1.239) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 292e1195-680b-4138-8b0e-b854b825d084)) - (fp_line (start 6.275 -1.069) (end 6.228 -1.023) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9e936054-bbac-4658-96c8-57f49e7ebc8e)) - (fp_line (start 7.56 -5.261) (end 7.56 4.66) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8068e9f4-acb4-407a-817a-a00486fb442b)) - (fp_arc (start -1.535427 0.683042) (mid -1.680501 -0.000524) (end -1.535 -0.684) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 89b18693-3059-407d-96f5-76ebbccaff6a)) - (fp_arc (start -0.683042 -1.535427) (mid 0.000524 -1.680501) (end 0.684 -1.535) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 18561f7b-cceb-447f-ae3a-2fa05a8651d9)) - (fp_arc (start 0.028805 1.680253) (mid -0.335551 1.646659) (end -0.684 1.535) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2feb2629-ce5d-49e2-9195-ffc27e3954ae)) - (fp_arc (start 0.683318 1.534756) (mid 0.349292 1.643288) (end 0 1.68) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 45f3b042-48b0-433f-b358-b1577347b145)) - (fp_arc (start 1.535427 -0.683042) (mid 1.680501 0.000524) (end 1.535 0.684) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp df4d1591-8953-414d-90fb-4a3efe8ef568)) - (fp_circle (center 5 0) (end 6.68 0) - (stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp e107980d-a2be-499e-b2ba-eed301ab8c6c)) - (fp_line (start -3 -5.71) (end -3 5.1) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b3c51afd-ea60-4989-96b1-46be7e98dac9)) - (fp_line (start -3 5.1) (end 8 5.1) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 00fc03d7-9bc5-4dc9-a0f2-b66003be40db)) - (fp_line (start 8 -5.71) (end -3 -5.71) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8a54329f-a28c-48fe-b774-e746c1151aef)) - (fp_line (start 8 5.1) (end 8 -5.71) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b835e2a6-64ac-4c54-b10b-8c4e680ff34e)) - (fp_line (start -2.5 -5.2) (end 7.5 -5.2) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 203cb439-5ded-4aa5-addb-bf384ff47646)) - (fp_line (start -2.5 -2.3) (end 7.5 -2.3) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b95abb45-4d5c-44d5-ad39-bc929bfb3823)) - (fp_line (start -2.5 2.6) (end 7.5 2.6) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 42ed3a7b-1f13-4af6-aafc-6471fe6140e4)) - (fp_line (start -2.5 4.1) (end -2.5 -5.2) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9937158c-447e-4018-95d2-7eccf4079125)) - (fp_line (start -2.5 4.1) (end 7.5 4.1) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 387dd4a7-b65d-4fc8-9486-4d102532aa87)) - (fp_line (start -2 4.6) (end -2.5 4.1) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cb5ac85e-183a-4697-ae56-9bde81e8e398)) - (fp_line (start 0.955 -1.138) (end -1.138 0.955) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp efcf5716-53e4-498c-8a68-49a513c11c06)) - (fp_line (start 1.138 -0.955) (end -0.955 1.138) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8189684f-dae4-47fe-a3cf-c31d6404ca7a)) - (fp_line (start 5.955 -1.138) (end 3.863 0.955) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 703ea1fc-0647-4adb-89e5-026e7e67b286)) - (fp_line (start 6.138 -0.955) (end 4.046 1.138) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 11045d34-493e-41ff-8631-962c7bacde81)) - (fp_line (start 7.5 -5.2) (end 7.5 4.6) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8b4d325c-bb85-4593-bb7d-c78174b00756)) - (fp_line (start 7.5 4.6) (end -2 4.6) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5dbf97bd-48bb-41f7-bdbc-08b5266843b5)) - (fp_circle (center 0 0) (end 1.5 0) - (stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp ffb8d0d8-5545-4d58-ba47-572464888780)) - (fp_circle (center 5 0) (end 6.5 0) - (stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 6208da4f-8182-4e29-9b34-129b7d5fc552)) - (pad "1" thru_hole rect (at 0 0) (size 2.6 2.6) (drill 1.3) (layers "*.Cu" "*.Mask") - (net 21 "Net-(D11-A)") (pinfunction "Pin_1") (pintype "passive") (tstamp 1c3c0dd0-9b0e-4cd7-934c-bcfb378d7992)) - (pad "2" thru_hole circle (at 5 0) (size 2.6 2.6) (drill 1.3) (layers "*.Cu" "*.Mask") - (net 20 "Net-(D10-A)") (pinfunction "Pin_2") (pintype "passive") (tstamp 759e1a50-3eec-41b3-b6f3-9a519d35efad)) - (model "${KICAD6_3DMODEL_DIR}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MKDS-1,5-2_1x02_P5.00mm_Horizontal.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (layer "F.Cu") - (tstamp 6dc2f419-1e9b-4ea5-a050-4788b4141db3) - (at 100.141 76.327 180) - (descr "SOIC, 8 Pin (JEDEC MS-012AA, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_narrow-r/r_8.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py") - (tags "SOIC SO") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "High-Speed CAN Transceiver, 1Mbps, 5V supply, SOIC-8") - (property "ki_keywords" "High-Speed CAN Transceiver") - (path "/65bb247f-f2e9-463a-8d46-fb52dff8a471") - (attr smd) - (fp_text reference "U5" (at 0 -3.4) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 81a97d4e-a828-425c-8225-eb9e9004d857) - ) - (fp_text value "TJA1050" (at 0 3.4) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 4d055845-ffd0-4dd2-a24e-3b0489b78642) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") - (effects (font (size 0.98 0.98) (thickness 0.15))) - (tstamp 66704375-51f3-49ef-b1fe-ff6f613792b4) - ) - (fp_line (start 0 -2.56) (end -3.45 -2.56) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 79da61ff-9d49-40b4-b3b8-4530c61d1a49)) - (fp_line (start 0 -2.56) (end 1.95 -2.56) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp af4ed8cd-8993-4931-bfb1-c3150aa17e31)) - (fp_line (start 0 2.56) (end -1.95 2.56) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 25614a38-63ef-435e-b08d-48a6aaf1c966)) - (fp_line (start 0 2.56) (end 1.95 2.56) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f41621eb-76b9-4ff7-9b84-cd4d1e9ef262)) - (fp_line (start -3.7 -2.7) (end -3.7 2.7) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c947f3ee-a4a1-47b6-a454-dd6734875ae2)) - (fp_line (start -3.7 2.7) (end 3.7 2.7) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 394d32dc-92f6-4375-90b2-bbb7e92b6ec2)) - (fp_line (start 3.7 -2.7) (end -3.7 -2.7) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 48f691bd-e2f9-48df-8a56-8a33de514d7e)) - (fp_line (start 3.7 2.7) (end 3.7 -2.7) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 68e61bee-0439-4b87-894d-9ea9929c72fb)) - (fp_line (start -1.95 -1.475) (end -0.975 -2.45) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6b236070-d7c7-4924-90ea-e3d176c77496)) - (fp_line (start -1.95 2.45) (end -1.95 -1.475) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1e08c180-732f-45b6-89a0-125cfdf30b7b)) - (fp_line (start -0.975 -2.45) (end 1.95 -2.45) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c86a09d5-5aba-4097-8603-a00939c5780c)) - (fp_line (start 1.95 -2.45) (end 1.95 2.45) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 01f12eb0-e559-44e8-8f75-b2d298dcd533)) - (fp_line (start 1.95 2.45) (end -1.95 2.45) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2f4c2d6a-501f-4907-914d-ede18620daad)) - (pad "1" smd roundrect (at -2.475 -1.905 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 64 "/CAN_Tx") (pinfunction "TXD") (pintype "input") (tstamp 5edd3df1-9123-4299-94ab-37296cc9cdbb)) - (pad "2" smd roundrect (at -2.475 -0.635 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp c880aa12-b0d7-437a-9d06-ac488a47ff0c)) - (pad "3" smd roundrect (at -2.475 0.635 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 1 "+5V") (pinfunction "VDD") (pintype "power_in") (tstamp 226f83d1-8fb6-4355-a5f6-2c848f032742)) - (pad "4" smd roundrect (at -2.475 1.905 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 63 "/CAN_Rx") (pinfunction "RXD") (pintype "output") (tstamp edbe5c40-6257-4d5e-b647-3e15bd10ba4b)) - (pad "5" smd roundrect (at 2.475 1.905 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 65 "unconnected-(U5-Vref-Pad5)") (pinfunction "Vref") (pintype "power_out+no_connect") (tstamp 3d01547c-163f-48c3-b9b3-da93ce281c75)) - (pad "6" smd roundrect (at 2.475 0.635 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 22 "/CANL") (pinfunction "CANL") (pintype "bidirectional") (tstamp a78f07ba-4511-43bb-919f-3062f43d04e7)) - (pad "7" smd roundrect (at 2.475 -0.635 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 23 "/CANH") (pinfunction "CANH") (pintype "bidirectional") (tstamp 1361b70b-919e-4e1e-8b98-93c82d22033e)) - (pad "8" smd roundrect (at 2.475 -1.905 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pinfunction "Rs") (pintype "input") (tstamp 7a1c1928-6a33-4130-b460-f75a31070dc3)) - (model "${KICAD6_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-8_3.9x4.9mm_P1.27mm.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") - (tstamp 71eeba01-0c0b-400c-8465-04ea17e8119f) - (at 113.4637 98.3488) - (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags "resistor handsolder") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Resistor") - (property "ki_keywords" "R res resistor") - (path "/3abf9af0-d75b-46f1-8c44-608300f7651a") - (attr smd) - (fp_text reference "R16" (at 3.0969 0.0508 180) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 88f02daf-f026-4440-97d8-b7d806a9d616) - ) - (fp_text value "100" (at 0 1.43) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 6555e0f8-5d41-4038-b5fe-d0a0e0a4db1c) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.06))) - (tstamp e2948dc0-857c-48ae-8e64-2aa5b40757ae) - ) - (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2073cabb-6278-4c39-a4ee-d58bc35eac93)) - (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp badb9e04-2fa5-4811-bd1a-be82e2e9161e)) - (fp_line (start -1.65 -0.73) (end 1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 541b2f9a-397c-42c6-a964-d8b82636ecee)) - (fp_line (start -1.65 0.73) (end -1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 23ddc1ae-91a6-49e2-b891-97d792d1ec91)) - (fp_line (start 1.65 -0.73) (end 1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 230d737d-c0eb-4401-9ba1-a1aabbbae705)) - (fp_line (start 1.65 0.73) (end -1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp efbd28be-fe73-43da-b232-954a93143585)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 433485a9-a676-436b-8b25-c62558c4eea1)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 939fdc93-cff3-4c53-93e3-633f909aa020)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 84f2862f-bb30-4ec2-84b5-5e9b1f21cacf)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e74eb8b3-424a-41be-9ced-5e6113dd13cb)) - (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 49 "/L_UP") (pintype "passive") (tstamp 1dc8405c-2241-4c30-9fd6-f16716d898c5)) - (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 37 "Net-(Q1-G)") (pintype "passive") (tstamp 5acab504-ba74-4133-a9a3-60d1ec42c743)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") - (tstamp 78074eaa-e366-4d78-ac5c-276ed1d0e877) - (at 108.204 107.696 180) - (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags "resistor handsolder") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Resistor") - (property "ki_keywords" "R res resistor") - (path "/7be5c31f-b6ec-464b-b19a-700b37fc22f5") - (attr smd) - (fp_text reference "R27" (at 0.4045 1.524 180) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp aefa6274-f46b-457c-b2a2-b7de2c4420a9) - ) - (fp_text value "10k" (at 0 1.43) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 923b281e-a503-456f-9cf8-9fd3c505759d) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.06))) - (tstamp 5c5f8aab-8104-45fc-b35f-188509e7d2e1) - ) - (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6d9b50ef-ac2c-4392-afb0-75497a7d3d03)) - (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b623ff2e-4a55-4bfd-8523-1e4f4a981814)) - (fp_line (start -1.65 -0.73) (end 1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 446bca3a-70e2-41c5-a49e-fc20b1f80d2a)) - (fp_line (start -1.65 0.73) (end -1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8a4da17d-cb28-452c-973f-0c5de03259a1)) - (fp_line (start 1.65 -0.73) (end 1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8731bc57-acea-48e5-8b48-f4792a79f75d)) - (fp_line (start 1.65 0.73) (end -1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0ab02ab8-37c3-47d8-ab9c-7b3da9c65c76)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bb1b81c7-1c0f-479c-b0f3-af00d5fac37e)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7087902f-b181-48bf-b3e5-0d6606ec335c)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7dacc080-c09f-4814-b600-e1ded4a1ba30)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e93801b5-ca6b-456c-9086-703501e260c9)) - (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 52 "/R_UP") (pintype "passive") (tstamp 5c2c707d-704d-430c-8edc-8f0380e60fbb)) - (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pintype "passive") (tstamp 9c3fc8db-765c-4abf-8551-a7f8e34592fe)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") - (tstamp 78eba8e3-69f9-4b63-b889-b5bda62f64cc) - (at 85.09 106.66 -90) - (descr "SOD-323") - (tags "SOD-323") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "Sim.Device" "D") - (property "Sim.Pins" "1=K 2=A") - (property "ki_description" "Diode") - (property "ki_keywords" "diode") - (path "/114a9849-5e07-4cae-81ad-420c30c66ef7") - (attr smd) - (fp_text reference "D1" (at -2.8248 -0.1524 -180) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 93d0f9c1-e5a7-4ca0-8149-4b76f4688e10) - ) - (fp_text value "1N5819" (at 0.1 1.9 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 47c158e8-220e-462d-89c9-c442146224a2) - ) - (fp_text user "${REFERENCE}" (at 0 -1.85 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 6858e991-8fb2-4e9b-9a7c-d1932ef70750) - ) - (fp_line (start -2.01 -0.85) (end -2.01 0.85) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 934673ee-fd53-47f2-86c0-14790d9e82a6)) - (fp_line (start -2.01 -0.85) (end 1.25 -0.85) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f5cb6cd7-5b11-4e79-bf2e-07eb428da7be)) - (fp_line (start -2.01 0.85) (end 1.25 0.85) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aa51559e-c185-4d65-aa94-2512443daeda)) - (fp_line (start -2 -0.95) (end -2 0.95) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 21875ed2-2339-4141-880d-d675d9acde42)) - (fp_line (start -2 -0.95) (end 2 -0.95) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3c6d1f5d-3b14-4167-881b-ff1298bfcacf)) - (fp_line (start -2 0.95) (end 2 0.95) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e2262c4a-69a1-4710-b618-5e62b49cafcf)) - (fp_line (start 2 -0.95) (end 2 0.95) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e6e36ce4-6592-42e2-aa8d-646a608f239a)) - (fp_line (start -0.9 -0.7) (end 0.9 -0.7) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1f31edbb-6ce7-4015-b5cf-5f4753f9c04d)) - (fp_line (start -0.9 0.7) (end -0.9 -0.7) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a1b2cf8d-9ae8-4101-8bb9-95293cb545cb)) - (fp_line (start -0.3 -0.35) (end -0.3 0.35) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b2c7762c-6bbf-4d0d-b1b0-03aad2d4869c)) - (fp_line (start -0.3 0) (end -0.5 0) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a47cb18f-c259-4638-b263-021a2aab5551)) - (fp_line (start -0.3 0) (end 0.2 -0.35) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8822ace1-8272-4d89-9760-7f0aacf6154e)) - (fp_line (start 0.2 -0.35) (end 0.2 0.35) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f495ae6b-051e-401a-881e-130374265dd3)) - (fp_line (start 0.2 0) (end 0.45 0) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 63f397bb-cd72-410e-a7c2-c0543ac838c4)) - (fp_line (start 0.2 0.35) (end -0.3 0) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e9c66e49-b4d1-4887-9de4-f56e79e9695b)) - (fp_line (start 0.9 -0.7) (end 0.9 0.7) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 24d0facd-a864-49c8-aff1-5373c7eb29a5)) - (fp_line (start 0.9 0.7) (end -0.9 0.7) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3627a103-dc1c-464c-bc38-f015964d5a26)) - (pad "1" smd roundrect (at -1.25 0 270) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 10 "/VEN") (pinfunction "K") (pintype "passive") (tstamp 12e1ee3f-8f6f-4607-b877-ccbd8d7448b0)) - (pad "2" smd roundrect (at 1.25 0 270) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 11 "Net-(D1-A)") (pinfunction "A") (pintype "passive") (tstamp c781f526-3cf4-4018-a79a-d59b991c2910)) - (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") - (tstamp 7a160b7e-02af-42a3-9bc8-78b520a55b77) - (at 104.902 76.5545 90) - (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags "capacitor handsolder") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Unpolarized capacitor") - (property "ki_keywords" "cap capacitor") - (path "/741595fc-b20d-46fd-8301-578e7f10baa6") - (attr smd) - (fp_text reference "C13" (at 2.3865 0.4064 180) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 1ee49aa1-2a87-40be-9585-1ed50b925f74) - ) - (fp_text value "0.1" (at 0 1.43 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 8c0c67de-0727-490f-8444-7f284ae952ac) - ) - (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.06))) - (tstamp 17fd7149-0b08-46e0-811d-0053e8d5b8a7) - ) - (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 68eb4535-16c2-4c4d-a037-63654b8d8f7e)) - (fp_line (start -0.146267 0.51) (end 0.146267 0.51) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f7e27ebe-8faf-4ffd-90b2-d7831fc13ebe)) - (fp_line (start -1.65 -0.73) (end 1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a7902be6-ebe5-4b3b-a6f0-33041b5f7a6a)) - (fp_line (start -1.65 0.73) (end -1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4671f3ed-7b09-43bf-ab27-0d2f576b2d43)) - (fp_line (start 1.65 -0.73) (end 1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a5fffc18-32ae-4fe5-a1b9-d03407d215c3)) - (fp_line (start 1.65 0.73) (end -1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9abec4e5-11b6-4a61-9d02-4483ab698f23)) - (fp_line (start -0.8 -0.4) (end 0.8 -0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3057521c-a0ed-4328-80af-a8618efabbbf)) - (fp_line (start -0.8 0.4) (end -0.8 -0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7be3fb57-188f-4f03-88c8-4fb9c76eee71)) - (fp_line (start 0.8 -0.4) (end 0.8 0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 72f9b494-0cd1-4a2c-8728-a5f1cb0c9acd)) - (fp_line (start 0.8 0.4) (end -0.8 0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ed3ca446-29a6-47c5-8f64-fa7f4680fa7e)) - (pad "1" smd roundrect (at -0.8625 0 90) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pintype "passive") (tstamp 8f353f1c-b1fc-48fc-908d-822d2ae57a63)) - (pad "2" smd roundrect (at 0.8625 0 90) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 1 "+5V") (pintype "passive") (tstamp 0a93c355-efc3-4cd0-8c98-7cfe9b287806)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") - (tstamp 7ba8a34a-929c-4ff6-a9d6-03841a043485) - (at 82.804 107.0375 90) - (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags "resistor handsolder") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Resistor") - (property "ki_keywords" "R res resistor") - (path "/32429e25-097b-48cf-b4db-d64650cf837d") - (attr smd) - (fp_text reference "R1" (at 3.1261 0 180) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp ac59fff2-9a77-4078-b5a2-80510f13a96c) - ) - (fp_text value "300k" (at 0 1.43 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp d9b9fc55-8405-4a98-b669-6aed865fce82) - ) - (fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab") - (effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror)) - (tstamp ed7e1921-39dd-4f58-8e6f-927ed093a4c8) - ) - (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 626e47ce-623f-4fb5-8f6f-af042bd7255f)) - (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9731ede8-c209-499c-938a-30aeb855d57b)) - (fp_line (start -1.65 -0.73) (end 1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1825d73f-6568-46d7-96fc-6dc49754a18f)) - (fp_line (start -1.65 0.73) (end -1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e4944d6e-1ea4-4487-967a-db1e7f9c4aaf)) - (fp_line (start 1.65 -0.73) (end 1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8ea06b48-3f90-4dfc-b6bf-a8dd864b087d)) - (fp_line (start 1.65 0.73) (end -1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fe2bc664-258b-40ed-864c-5f86e97e7808)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 14c86d53-2157-439c-a614-944ee9475b70)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7c988d23-d49d-4a6b-96d8-4e21abf0928a)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 405b7ae5-6e7e-476a-b694-77c4f742560e)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dc06dd73-3ca1-4120-9e0b-6f24d4861c79)) - (pad "1" smd roundrect (at -0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 11 "Net-(D1-A)") (pintype "passive") (tstamp 48423d44-62f3-4f69-a99c-7450c6399388)) - (pad "2" smd roundrect (at 0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 24 "/HOT@On") (pintype "passive") (tstamp cb980f45-43d4-4b44-99ec-1566ecf2246b)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Package_TO_SOT_SMD:SOT-23-3" (layer "F.Cu") - (tstamp 8ea72bdc-be7d-4634-85b7-568d527aa063) - (at 88.7785 82.87 180) - (descr "SOT, 3 Pin (https://www.jedec.org/sites/default/files/docs/Mo-178D.PDF inferred 3-pin variant), generated with kicad-footprint-generator ipc_gullwing_generator.py") - (tags "SOT TO_SOT_SMD") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Positive 60-250mA Low Dropout Regulator, Fixed Output, SOT-23") - (property "ki_keywords" "Torex LDO Voltage Regulator Fixed Positive") - (path "/5c1e3040-f731-4664-a8c4-ba636e6df46a") - (attr smd) - (fp_text reference "U1" (at 0.1215 2.54) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp f56f9620-cff8-49e3-8ae6-a208c371eaef) - ) - (fp_text value "XC6206PxxxMR" (at 0 2.4) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 91c2696b-5f5f-4c37-b346-49b795ca6dba) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.06))) - (tstamp cc30ec7f-c7f1-4e54-b0f9-cb1a748f9d7e) - ) - (fp_line (start 0 -1.56) (end -1.8 -1.56) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f008ab29-b77c-4f1a-89bf-91c9a657f1c5)) - (fp_line (start 0 -1.56) (end 0.8 -1.56) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6046bb78-101b-45e9-a34a-1d6241528fb6)) - (fp_line (start 0 1.56) (end -0.8 1.56) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ee20c692-3789-431b-8066-63383ec8f422)) - (fp_line (start 0 1.56) (end 0.8 1.56) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 61a1beea-8e66-4bac-87d4-ae0690a8bd9e)) - (fp_line (start -2.05 -1.7) (end -2.05 1.7) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a331e8d1-4035-438d-ab62-be0fb6ad6594)) - (fp_line (start -2.05 1.7) (end 2.05 1.7) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 875595cf-6b38-4f27-93fd-499980911129)) - (fp_line (start 2.05 -1.7) (end -2.05 -1.7) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1a76833b-d2d1-459f-ab84-564e8f50d791)) - (fp_line (start 2.05 1.7) (end 2.05 -1.7) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bfa6e1a2-5b0e-40ca-9499-c8f2e1bf0cf4)) - (fp_line (start -0.8 -1.05) (end -0.4 -1.45) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 67214746-c5c4-42b0-a086-0ea0bd439e9f)) - (fp_line (start -0.8 1.45) (end -0.8 -1.05) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0b8b01c6-61ab-407d-939b-d6943f07bf6e)) - (fp_line (start -0.4 -1.45) (end 0.8 -1.45) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 05837086-acc3-4aea-9d06-208b7a430a61)) - (fp_line (start 0.8 -1.45) (end 0.8 1.45) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c9c98d70-0784-40ee-9239-1370281553e7)) - (fp_line (start 0.8 1.45) (end -0.8 1.45) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6c2683e2-5848-4405-9509-47fdf1261da9)) - (pad "1" smd roundrect (at -1.1375 -0.95 180) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 9a99227a-9663-4285-aed5-e3f8e8134a8e)) - (pad "2" smd roundrect (at -1.1375 0.95 180) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 6 "+3V3") (pinfunction "VO") (pintype "power_out") (tstamp a61dce58-d684-4630-bdc9-3e400927cea3)) - (pad "3" smd roundrect (at 1.1375 0 180) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 1 "+5V") (pinfunction "VI") (pintype "power_in") (tstamp e01ebf73-3451-415d-925b-2bdd68808a86)) - (model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23-3.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Connector_JST:JST_PH_B2B-PH-K_1x02_P2.00mm_Vertical" (layer "F.Cu") - (tstamp 8ed921ae-237b-4a9e-86f7-98f1b10b1710) - (at 73.11 76.946 90) - (descr "JST PH series connector, B2B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator") - (tags "connector JST PH side entry") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Generic connector, single row, 01x02, script generated") - (property "ki_keywords" "connector") - (path "/2aabb44e-9449-40ff-ab5f-46c9a6e225b6") - (attr through_hole) - (fp_text reference "J8" (at 1 -2.9 90) (layer "F.SilkS") hide - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 319347be-b28c-4961-a1a2-5905ac09c15e) - ) - (fp_text value "CAN" (at 5.302 0.254 180) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 49aeee9b-e907-4310-8edc-be7d7f75b827) - ) - (fp_text user "${REFERENCE}" (at 1 1.5 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 51009c45-2370-4b02-967d-90d4172851aa) - ) - (fp_line (start -2.36 -2.11) (end -2.36 -0.86) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 41d69e08-c0de-4fdd-b883-19de35a15e16)) - (fp_line (start -2.06 -1.81) (end -2.06 2.91) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6a847172-4f59-4243-a8c3-365892ec69a8)) - (fp_line (start -2.06 -0.5) (end -1.45 -0.5) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9d24c55c-696d-4aa1-819a-8eb271a869f2)) - (fp_line (start -2.06 0.8) (end -1.45 0.8) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5a0c218c-5172-42ce-a89d-d5773399aa53)) - (fp_line (start -2.06 2.91) (end 4.06 2.91) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a2d5ca35-e978-48e4-ac9e-3ce89df07584)) - (fp_line (start -1.45 -1.2) (end -1.45 2.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8fbfc967-1e92-420e-b104-64b586677f18)) - (fp_line (start -1.45 2.3) (end 3.45 2.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5e62833a-c078-4e14-87ef-69340c1f9105)) - (fp_line (start -1.11 -2.11) (end -2.36 -2.11) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4c530486-ce98-464d-a0ad-730d8b5ab243)) - (fp_line (start -0.6 -2.01) (end -0.6 -1.81) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e7be2a8c-b45f-4728-8403-087b7a6879e8)) - (fp_line (start -0.3 -2.01) (end -0.6 -2.01) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 82d80113-8491-4cee-abd0-2e2cc1539e4b)) - (fp_line (start -0.3 -1.91) (end -0.6 -1.91) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 63f9d6ca-f267-4922-b75f-1c8e9240501e)) - (fp_line (start -0.3 -1.81) (end -0.3 -2.01) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 03336e1b-126e-4ca4-8e4f-5a7f69d9775a)) - (fp_line (start 0.5 -1.81) (end 0.5 -1.2) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3a49a71c-0006-494d-8923-1bd38943c8fa)) - (fp_line (start 0.5 -1.2) (end -1.45 -1.2) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cd8a7806-0e20-40e4-b4cb-eeae3f5431ea)) - (fp_line (start 0.9 1.8) (end 1.1 1.8) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8dcbc44d-cd00-46af-96be-64dea1daebef)) - (fp_line (start 0.9 2.3) (end 0.9 1.8) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e3b7a1fd-9d1f-45d6-8d6f-99557a030559)) - (fp_line (start 1 2.3) (end 1 1.8) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 68517105-d0f6-49de-b2aa-8432a12e4651)) - (fp_line (start 1.1 1.8) (end 1.1 2.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 19d5d7d0-d3ab-43b4-bec3-645f2f7598be)) - (fp_line (start 1.5 -1.2) (end 1.5 -1.81) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 36dee143-dc9b-4017-8a00-c89bfb7f2c0d)) - (fp_line (start 3.45 -1.2) (end 1.5 -1.2) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 65ab4f52-33c3-4dee-922c-40045173c6d0)) - (fp_line (start 3.45 2.3) (end 3.45 -1.2) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5f4abae4-e6b3-4168-a5e6-983a3fb6e08e)) - (fp_line (start 4.06 -1.81) (end -2.06 -1.81) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8dca406e-4c3e-4bba-820b-ef2a5dc683ea)) - (fp_line (start 4.06 -0.5) (end 3.45 -0.5) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5f82f409-cc82-4871-98e9-1bbc527d4224)) - (fp_line (start 4.06 0.8) (end 3.45 0.8) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 23fd8705-8bbc-40cb-afa9-9efb62215592)) - (fp_line (start 4.06 2.91) (end 4.06 -1.81) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 78a8090d-e676-4e0d-ad8a-49a9008c5b63)) - (fp_line (start -2.45 -2.2) (end -2.45 3.3) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 74042015-5de7-4588-87ce-581bf844e1ee)) - (fp_line (start -2.45 3.3) (end 4.45 3.3) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ae34ab27-04ef-4555-b793-22fbcfe1c745)) - (fp_line (start 4.45 -2.2) (end -2.45 -2.2) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fc6403aa-a937-45ca-9157-c0f57a50eaae)) - (fp_line (start 4.45 3.3) (end 4.45 -2.2) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4d4a3e43-5696-4fe9-90ff-9fce5189ffde)) - (fp_line (start -2.36 -2.11) (end -2.36 -0.86) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp db49c349-2a9c-4e2f-9dcd-65721406d505)) - (fp_line (start -1.95 -1.7) (end -1.95 2.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 26343747-06db-4710-b5c9-4fcff3dac341)) - (fp_line (start -1.95 2.8) (end 3.95 2.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9d6244ab-15f8-4abb-898c-817eeaeb32ed)) - (fp_line (start -1.11 -2.11) (end -2.36 -2.11) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e4f4a2bc-f50c-442e-b299-0185204177ea)) - (fp_line (start 3.95 -1.7) (end -1.95 -1.7) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ea80a690-4bb8-40c5-8d17-2807ef21da72)) - (fp_line (start 3.95 2.8) (end 3.95 -1.7) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 20c58d2f-1755-49b9-a851-574f9039d794)) - (pad "1" thru_hole roundrect (at 0 0 90) (size 1.2 1.75) (drill 0.75) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.208333) - (net 23 "/CANH") (pinfunction "Pin_1") (pintype "passive") (tstamp 136ad24f-cbe9-4d6f-ad56-8073ed9be3e3)) - (pad "2" thru_hole oval (at 2 0 90) (size 1.2 1.75) (drill 0.75) (layers "*.Cu" "*.Mask") - (net 22 "/CANL") (pinfunction "Pin_2") (pintype "passive") (tstamp b8bc3b47-4ea1-4cdf-8782-7abd9a44f5d6)) - (model "${KICAD6_3DMODEL_DIR}/Connector_JST.3dshapes/JST_PH_B2B-PH-K_1x02_P2.00mm_Vertical.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "TestPoint:TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded" (layer "F.Cu") - (tstamp 8f396e57-c2bb-4f90-b0e2-ec39391ab445) - (at 82.804 114.554) - (descr "wire loop with bead as test point, loop diameter 1.8mm, hole diameter 1.0mm") - (tags "test point wire loop bead") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "test point") - (property "ki_keywords" "test point tp") - (path "/55c584fd-c0da-4649-9b6a-7b5a08c2d9d8") - (attr through_hole) - (fp_text reference "TP6" (at 0.7 2.5) (layer "F.SilkS") hide - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 5fdad961-8511-4b4e-8821-95a11b2457bf) - ) - (fp_text value "Gnd" (at 0.0762 2.6162) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 778853eb-6601-466c-93bc-61b7f73e9faf) - ) - (fp_text user "${REFERENCE}" (at 0.7 2.5) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 7f8bf00f-1e36-4ca5-af26-c45d3cd9b948) - ) - (fp_circle (center 0 0) (end 1.5 0) - (stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 2392d1d6-824b-4204-926a-0f449de2eb71)) - (fp_circle (center 0 0) (end 1.8 0) - (stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 8986ddef-b428-42fe-99af-bb9918dfceef)) - (fp_line (start -0.9 -0.2) (end 0.9 -0.2) - (stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp b791f284-3bbe-40b9-be62-ec9ae3fe61df)) - (fp_line (start -0.9 0.2) (end -0.9 -0.2) - (stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp 2d3c1584-3989-49dd-a4f5-46e5060dc912)) - (fp_line (start 0.9 -0.2) (end 0.9 0.2) - (stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp a6d79c06-b69e-4b09-b2d4-c9424413c2d8)) - (fp_line (start 0.9 0.2) (end -0.9 0.2) - (stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp 320bb3d8-d3a3-473a-84c2-a345bdfae43e)) - (fp_circle (center 0 0) (end 1.3 0) - (stroke (width 0.12) (type solid)) (fill none) (layer "F.Fab") (tstamp 9310b54b-c31a-45c2-ae65-f157db178699)) - (pad "1" thru_hole circle (at 0 0) (size 2 2) (drill 1) (layers "*.Cu" "*.Mask") - (net 2 "GND") (pinfunction "1") (pintype "passive") (tstamp 849321f2-65b4-4e66-92c8-db6ffadf766e)) - (model "${KICAD6_3DMODEL_DIR}/TestPoint.3dshapes/TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") - (tstamp 9188a775-2a8b-446a-bca9-3974a4e411f1) - (at 127.762 98.806) - (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags "resistor handsolder") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Resistor") - (property "ki_keywords" "R res resistor") - (path "/6fbe9c38-6c7f-4ddc-9fa9-a035e87037b4") - (attr smd) - (fp_text reference "R13" (at 0 -1.43) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp d69277b5-dc73-4c41-9b12-582cf01b7d78) - ) - (fp_text value "1k" (at 0 1.43) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 5525f440-2bf5-49b7-9b4a-369980fe5959) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.06))) - (tstamp 8734b229-95a5-4b9d-90a9-28ebef4a47e2) - ) - (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8b40a1d5-569d-427a-a7ee-e891351e6458)) - (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ee62538f-3464-480b-8b2b-b2e2f0888ab4)) - (fp_line (start -1.65 -0.73) (end 1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 11feb76b-cb57-48db-a3aa-68d2f31df49e)) - (fp_line (start -1.65 0.73) (end -1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 10b8fbb1-6acf-4e6c-b1b2-ebbb5818c39f)) - (fp_line (start 1.65 -0.73) (end 1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp db75c92c-b7df-47d6-9a6b-0b5f0b966cdc)) - (fp_line (start 1.65 0.73) (end -1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 86275a86-422d-4aeb-a2da-3d409360db2e)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dcbfbba0-a29d-4c93-9b70-0351133b5308)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3e848bf9-f94d-4650-be95-4eded999b3f8)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 43f4bb12-9878-4cdb-a083-e9a5e69342bc)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2ed272b0-ca8c-45df-a8c9-ac898f44a6fe)) - (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 18 "/DOWN_DIR") (pintype "passive") (tstamp e5ab2d47-48a9-4550-9c26-0554a9922e8b)) - (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 15 "Net-(D5-K)") (pintype "passive") (tstamp 6b93b887-d040-44f5-af44-e0d9a7dd69ae)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu") - (tstamp 95fbf285-b78e-403b-9c97-0482822776e9) - (at 94.254 92.456) - (descr "SOD-323") - (tags "SOD-323") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "Sim.Device" "D") - (property "Sim.Pins" "1=K 2=A") - (property "ki_description" "Diode") - (property "ki_keywords" "diode") - (path "/b529d259-dc19-4c86-a144-ed8e7919a707") - (attr smd) - (fp_text reference "D2" (at 0 -1.85) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp df54f8c6-ecd6-4070-81a3-c2741edc85a5) - ) - (fp_text value "1N5819" (at 0.1 1.9) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp fbd17aa8-a005-4e48-88cc-2d6236405858) - ) - (fp_text user "${REFERENCE}" (at 0 -1.85) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 44542b86-7d7f-4242-bd6c-ebc95163e3d5) - ) - (fp_line (start -2.01 -0.85) (end -2.01 0.85) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f574b346-5eab-4688-b71f-3896b4e0e534)) - (fp_line (start -2.01 -0.85) (end 1.25 -0.85) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e9b3b130-4148-466f-9249-0a1e97acdb19)) - (fp_line (start -2.01 0.85) (end 1.25 0.85) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 575d6871-819a-4935-acee-98f2505de88b)) - (fp_line (start -2 -0.95) (end -2 0.95) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f4eec830-94af-4c93-b591-7f7857869af3)) - (fp_line (start -2 -0.95) (end 2 -0.95) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 207d41e1-8302-4946-acbf-49cab3549076)) - (fp_line (start -2 0.95) (end 2 0.95) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9e7e829a-0326-4ae8-a12c-a8bb852da9d2)) - (fp_line (start 2 -0.95) (end 2 0.95) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b33f9a2c-9f2c-4de0-afe2-78da310f1cd8)) - (fp_line (start -0.9 -0.7) (end 0.9 -0.7) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3eeb93cb-0fe1-4ab0-8dcb-487dbfca008f)) - (fp_line (start -0.9 0.7) (end -0.9 -0.7) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6940a584-cdf5-4d4d-9893-3ba1d5d33b97)) - (fp_line (start -0.3 -0.35) (end -0.3 0.35) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3ba67bb0-38f0-459c-b975-2f8f6f89449d)) - (fp_line (start -0.3 0) (end -0.5 0) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 17bec947-ad0d-4342-8aa1-7760371f8d38)) - (fp_line (start -0.3 0) (end 0.2 -0.35) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 997dbc24-3e72-4647-a191-c5427b46663b)) - (fp_line (start 0.2 -0.35) (end 0.2 0.35) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2a116e8b-e337-4fa9-a20a-5da35dd8746a)) - (fp_line (start 0.2 0) (end 0.45 0) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp db72fa29-c4d6-42e4-a023-70162b5af8fb)) - (fp_line (start 0.2 0.35) (end -0.3 0) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6ee4b7b2-dd06-444d-a469-95f161b6bf4c)) - (fp_line (start 0.9 -0.7) (end 0.9 0.7) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c92f72a6-4172-486a-b94d-639ec67b6529)) - (fp_line (start 0.9 0.7) (end -0.9 0.7) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp db0b2d03-0ef6-4f76-840c-645694c4a02c)) - (pad "1" smd roundrect (at -1.25 0) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 10 "/VEN") (pinfunction "K") (pintype "passive") (tstamp 63701019-1188-4dc8-9290-ef10e94cfdc6)) - (pad "2" smd roundrect (at 1.25 0) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 12 "/Power_EN") (pinfunction "A") (pintype "passive") (tstamp 5dd54369-5acd-4596-966a-fba43c5a79f2)) - (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-3-5.08_1x03_P5.08mm_Horizontal" (layer "F.Cu") - (tstamp 99caeba5-a5c0-4619-9152-00248f523a84) - (at 75.946 99.568 -90) - (descr "Terminal Block Phoenix MKDS-1,5-3-5.08, 3 pins, pitch 5.08mm, size 15.2x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix") - (tags "THT Terminal Block Phoenix MKDS-1,5-3-5.08 pitch 5.08mm size 15.2x9.8mm^2 drill 1.3mm pad 2.6mm") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Generic screw terminal, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)") - (property "ki_keywords" "screw terminal") - (path "/ad6f1947-1aad-4abf-8366-5ff220f8dd79") - (attr through_hole) - (fp_text reference "J1" (at 5.08 -6.26 90) (layer "F.SilkS") hide - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 93a37ce2-a71b-4fee-a923-903b741cc329) - ) - (fp_text value "Power" (at 14.0208 -0.0254 -180) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 9880a8df-92e0-44ff-8fb9-52b26d0c8b48) - ) - (fp_text user "${REFERENCE}" (at 5.08 3.2 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 349e8bf3-dfe7-4954-98f9-f386e1e5abde) - ) - (fp_line (start -2.84 4.16) (end -2.84 4.9) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e693712f-1093-4025-b2bc-2fbdb744d6db)) - (fp_line (start -2.84 4.9) (end -2.34 4.9) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c4dc8ddb-9047-444d-8637-665bee80ed6d)) - (fp_line (start -2.6 -5.261) (end -2.6 4.66) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d7817a23-6344-4267-a0bc-04f0cd73f02d)) - (fp_line (start -2.6 -5.261) (end 12.76 -5.261) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 88cb5e44-9522-4c94-81b0-a2dc418170b6)) - (fp_line (start -2.6 -2.301) (end 12.76 -2.301) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5bea335b-e606-413a-af45-9ecbb4559f93)) - (fp_line (start -2.6 2.6) (end 12.76 2.6) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 658a0901-62f5-4b34-b2c1-0d47f0f46246)) - (fp_line (start -2.6 4.1) (end 12.76 4.1) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 74056b1e-0f14-4ae0-af4e-1240715d538b)) - (fp_line (start -2.6 4.66) (end 12.76 4.66) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 95909f8e-4b14-426a-ac44-37b08fa54b89)) - (fp_line (start 3.853 1.023) (end 3.806 1.069) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp def264c4-ac66-4d0d-a711-9f68147e0acd)) - (fp_line (start 4.046 1.239) (end 4.011 1.274) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e3df7db9-5477-454f-bff7-be97f64ded60)) - (fp_line (start 6.15 -1.275) (end 6.115 -1.239) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 28c68552-617c-4db9-8519-4b63ec9222db)) - (fp_line (start 6.355 -1.069) (end 6.308 -1.023) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c15cbdcf-901f-4aa7-8afa-b13740288ef8)) - (fp_line (start 8.933 1.023) (end 8.886 1.069) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 87921d97-f77d-42d2-8462-fd3c6b9fda43)) - (fp_line (start 9.126 1.239) (end 9.091 1.274) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6de8060f-e036-4af9-b2ab-70ce8f57a873)) - (fp_line (start 11.23 -1.275) (end 11.195 -1.239) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7782a6e5-fa80-47c5-9fcc-ec63b7be0a6d)) - (fp_line (start 11.435 -1.069) (end 11.388 -1.023) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b5d06482-f129-4e52-ba9c-c04e06eeb877)) - (fp_line (start 12.76 -5.261) (end 12.76 4.66) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 74170ea0-6d9c-45a8-86ac-1666b8392019)) - (fp_arc (start -1.535427 0.683042) (mid -1.680501 -0.000524) (end -1.535 -0.684) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7dbeead2-fb1a-4e9f-9075-e0e656e15819)) - (fp_arc (start -0.683042 -1.535427) (mid 0.000524 -1.680501) (end 0.684 -1.535) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9575f279-e6b4-4d21-aa3e-6f324f5a5fb9)) - (fp_arc (start 0.028805 1.680253) (mid -0.335551 1.646659) (end -0.684 1.535) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 68cf0242-6cae-4e99-8e27-73f239c63cec)) - (fp_arc (start 0.683318 1.534756) (mid 0.349292 1.643288) (end 0 1.68) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5ebdf52a-ef7a-4cb4-94d9-de0856864e97)) - (fp_arc (start 1.535427 -0.683042) (mid 1.680501 0.000524) (end 1.535 0.684) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0b836a36-39b8-4c46-b257-51db888c8d5c)) - (fp_circle (center 5.08 0) (end 6.76 0) - (stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 83420e40-45a2-4151-b3b2-a2d53326f6ae)) - (fp_circle (center 10.16 0) (end 11.84 0) - (stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 7f4862fe-14db-43c1-8b07-0266f00490ce)) - (fp_line (start -3.04 -5.71) (end -3.04 5.1) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e8b21302-c129-42b6-811c-d464fed7ada4)) - (fp_line (start -3.04 5.1) (end 13.21 5.1) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 31c48c58-b1fc-4feb-9c7a-913a26042979)) - (fp_line (start 13.21 -5.71) (end -3.04 -5.71) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp edf2a840-48fd-4f1e-82ee-8a3a83415871)) - (fp_line (start 13.21 5.1) (end 13.21 -5.71) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1e379182-5649-4f00-ad89-fdf820c8b998)) - (fp_line (start -2.54 -5.2) (end 12.7 -5.2) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 30581476-46b3-4072-92e9-0e12b92a1d2b)) - (fp_line (start -2.54 -2.3) (end 12.7 -2.3) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 00ba44f0-b724-4e60-8256-67912295e933)) - (fp_line (start -2.54 2.6) (end 12.7 2.6) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 71812700-dac4-4a6b-a959-a4ba0eedf07e)) - (fp_line (start -2.54 4.1) (end -2.54 -5.2) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2263f36e-6c56-4e50-a950-2b6995a00746)) - (fp_line (start -2.54 4.1) (end 12.7 4.1) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5b50113c-0ec4-4891-8eac-a3187cb78622)) - (fp_line (start -2.04 4.6) (end -2.54 4.1) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c50efce7-bcd3-4d37-bdd9-dceeeb008389)) - (fp_line (start 0.955 -1.138) (end -1.138 0.955) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 12b8a3b8-8cc7-48bc-be0f-8d9af9225e70)) - (fp_line (start 1.138 -0.955) (end -0.955 1.138) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ec7678f5-c45e-4430-a216-f1cd973287c2)) - (fp_line (start 6.035 -1.138) (end 3.943 0.955) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 83c1f123-1008-44e0-8239-3322bac7e41e)) - (fp_line (start 6.218 -0.955) (end 4.126 1.138) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f8467d06-3c89-4f89-bcd2-d19707045ae4)) - (fp_line (start 11.115 -1.138) (end 9.023 0.955) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cfb5487d-f864-4b96-96cb-cd041577ef80)) - (fp_line (start 11.298 -0.955) (end 9.206 1.138) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 883d82a4-4985-4e55-895f-3bf836c55273)) - (fp_line (start 12.7 -5.2) (end 12.7 4.6) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f5a3fdef-ca3c-4475-8c5e-132f4e66236d)) - (fp_line (start 12.7 4.6) (end -2.04 4.6) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b6496578-1760-452b-bb45-ca7ad97da4b5)) - (fp_circle (center 0 0) (end 1.5 0) - (stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp c5bcc578-7716-49f3-997a-340f0f08f948)) - (fp_circle (center 5.08 0) (end 6.58 0) - (stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 73962eef-0492-439e-bcbe-2860812051dd)) - (fp_circle (center 10.16 0) (end 11.66 0) - (stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp acc8d42d-e90e-4b41-b851-54feb1f5b7a8)) - (pad "1" thru_hole rect (at 0 0 270) (size 2.6 2.6) (drill 1.3) (layers "*.Cu" "*.Mask") - (net 3 "+12V") (pinfunction "Pin_1") (pintype "passive") (tstamp 99824e1e-12ea-4b7c-a032-9f53eca3c8b4)) - (pad "2" thru_hole circle (at 5.08 0 270) (size 2.6 2.6) (drill 1.3) (layers "*.Cu" "*.Mask") - (net 24 "/HOT@On") (pinfunction "Pin_2") (pintype "passive") (tstamp 5c105953-d443-41e1-9340-2c6078c5f8ad)) - (pad "3" thru_hole circle (at 10.16 0 270) (size 2.6 2.6) (drill 1.3) (layers "*.Cu" "*.Mask") - (net 2 "GND") (pinfunction "Pin_3") (pintype "passive") (tstamp cf182535-5147-423d-a28f-95902f8185f5)) - (model "${KICAD6_3DMODEL_DIR}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MKDS-1,5-3-5.08_1x03_P5.08mm_Horizontal.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") - (tstamp 9ff41e67-1d64-4c59-962c-2c7db18e04dc) - (at 102.108 83.6665 90) - (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags "capacitor handsolder") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Unpolarized capacitor") - (property "ki_keywords" "cap capacitor") - (path "/cff709d7-8ac5-4466-8926-25c648a7e9b1") - (attr smd) - (fp_text reference "C8" (at 2.3865 0 180) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 18aa069e-9d8f-4d33-a81f-cb53457b4c93) - ) - (fp_text value "6" (at 0 1.43 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 5b60f9ce-f03a-42dc-8a3b-5ef87d7ceb84) - ) - (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.06))) - (tstamp e8c7ab4c-99ef-4a38-af7c-c678a1838276) - ) - (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 07e565b4-d52a-4ed0-927c-ff74efa66b7d)) - (fp_line (start -0.146267 0.51) (end 0.146267 0.51) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ab2fcf33-a338-4aba-96fe-0f6c2f971cd4)) - (fp_line (start -1.65 -0.73) (end 1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1bf365a9-2092-411a-b324-aefbf2ee6f21)) - (fp_line (start -1.65 0.73) (end -1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2976f99c-c64c-432b-8dc8-e1115c41b303)) - (fp_line (start 1.65 -0.73) (end 1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0a700653-0f9a-488f-8a38-463a30c63fb0)) - (fp_line (start 1.65 0.73) (end -1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 714e47eb-be0e-46ca-a60c-44b83ab08180)) - (fp_line (start -0.8 -0.4) (end 0.8 -0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1a1052a2-8acf-4999-aa77-6ce785d51bc2)) - (fp_line (start -0.8 0.4) (end -0.8 -0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 274df78a-fa75-4ab1-91bd-4c675c0f2114)) - (fp_line (start 0.8 -0.4) (end 0.8 0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7f466ab8-e78d-49db-86a1-2eec80839731)) - (fp_line (start 0.8 0.4) (end -0.8 0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0100740a-a5de-491e-bee7-7dd160f2dda3)) - (pad "1" smd roundrect (at -0.8625 0 90) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 8 "/OSC_IN") (pintype "passive") (tstamp 0041f743-caf9-45d8-b29d-cf867aa94f30)) - (pad "2" smd roundrect (at 0.8625 0 90) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pintype "passive") (tstamp 1057379c-e466-45cd-a046-ef0ce8c349eb)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") - (tstamp a4819827-ebd6-4dce-a420-c31bdc91154f) - (at 123.825 77.3176 180) - (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags "resistor handsolder") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Resistor") - (property "ki_keywords" "R res resistor") - (path "/710041e4-f33e-4a35-bae8-baff7f273045") - (attr smd) - (fp_text reference "R4" (at 2.6416 0.0508) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 4bb1c9ef-6d9e-469f-9cb9-f2bf63865c7d) - ) - (fp_text value "100" (at 0 1.43) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp f83939fa-d15a-429a-96af-928d0c78f7c2) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.06))) - (tstamp 9728883b-9859-46b6-8742-555f238bee9f) - ) - (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 71426a43-f35b-4fc8-922a-f983a7cba453)) - (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6b2d9f21-24cb-4b6f-8dfc-b5f529fe3198)) - (fp_line (start -1.65 -0.73) (end 1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 911931d6-5169-4a11-8d74-6c32d935f4cf)) - (fp_line (start -1.65 0.73) (end -1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 431b9e36-433e-4734-8848-db4b2d3529e3)) - (fp_line (start 1.65 -0.73) (end 1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 65c5bc3e-c154-48e7-9735-11787313e31c)) - (fp_line (start 1.65 0.73) (end -1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 657ed289-f22e-4470-affe-46532997cc17)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c32e6cd0-fa0b-4cb2-a02d-a3cead78308e)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cf79f9f8-a2ba-43a0-a221-7130969f83a4)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8f8341cd-2603-45bc-a649-02e8d7c02489)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 75885fd4-b526-429a-8156-42dea0abfa9e)) - (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 26 "Net-(J2-Pin_2)") (pintype "passive") (tstamp de64c6ce-8a0f-4725-b2b2-6cdec94b3a59)) - (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 44 "/UP_SW") (pintype "passive") (tstamp 2a443364-ba14-405a-a583-70717a139a4f)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Package_TO_SOT_SMD:SOT-23-6_Handsoldering" (layer "F.Cu") - (tstamp ab7d9969-0e65-477a-87c0-a04678711988) - (at 78.4352 87.8294 90) - (descr "6-pin SOT-23 package, Handsoldering") - (tags "SOT-23-6 Handsoldering") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (path "/d1943f25-7cb0-479a-a8e1-b95f42c712bd") - (attr smd) - (fp_text reference "U2" (at 0.9614 2.8448 180) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp eec2b8bd-e8c5-43bc-bf0c-e13bdffc52db) - ) - (fp_text value "MT1470" (at 0 2.9 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 3bb2b48a-3358-4704-9260-47544ff52695) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") - (effects (font (size 0.5 0.5) (thickness 0.075))) - (tstamp 9719c599-c585-472b-bb24-c32659c45fe5) - ) - (fp_line (start -0.9 1.61) (end 0.9 1.61) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 90c98f26-ac02-4349-8523-4130c2447317)) - (fp_line (start 0.9 -1.61) (end -2.05 -1.61) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5e5d1437-f604-48ad-9f35-ec61061bd4f6)) - (fp_line (start -2.4 -1.8) (end 2.4 -1.8) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0584850f-eec0-4524-b388-06c45153d926)) - (fp_line (start -2.4 1.8) (end -2.4 -1.8) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 45ef3748-845d-4a2e-8614-f9ec5d49e7f7)) - (fp_line (start 2.4 -1.8) (end 2.4 1.8) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 299a1173-db14-4a45-8588-ec3cd64ee025)) - (fp_line (start 2.4 1.8) (end -2.4 1.8) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dda85225-e626-48fc-b551-cf499c699cd5)) - (fp_line (start -0.9 -0.9) (end -0.9 1.55) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3b40bbcc-2e00-4e78-a2fa-88da865df335)) - (fp_line (start -0.9 -0.9) (end -0.25 -1.55) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4f6d17f9-e57b-4397-a245-48514c564a93)) - (fp_line (start 0.9 -1.55) (end -0.25 -1.55) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5307c675-bde2-410f-8821-b70be9e5648d)) - (fp_line (start 0.9 -1.55) (end 0.9 1.55) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0e3ec248-15cd-4868-b66c-21216e96a832)) - (fp_line (start 0.9 1.55) (end -0.9 1.55) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e76d5c48-2438-4395-a44f-059ff47cccc0)) - (pad "1" smd rect (at -1.35 -0.95 90) (size 1.56 0.65) (layers "F.Cu" "F.Paste" "F.Mask") - (net 2 "GND") (pinfunction "GND") (pintype "input") (tstamp 9870f02f-d8e1-47ff-9f3b-7012c705d3ab)) - (pad "2" smd rect (at -1.35 0 90) (size 1.56 0.65) (layers "F.Cu" "F.Paste" "F.Mask") - (net 4 "Net-(U2-SW)") (pinfunction "SW") (pintype "input") (tstamp 214a67e1-ecff-4c28-bf34-83ee28aa752a)) - (pad "3" smd rect (at -1.35 0.95 90) (size 1.56 0.65) (layers "F.Cu" "F.Paste" "F.Mask") - (net 3 "+12V") (pinfunction "VIN") (pintype "input") (tstamp f1a3300b-8362-4a8c-9884-55187066c33d)) - (pad "4" smd rect (at 1.35 0.95 90) (size 1.56 0.65) (layers "F.Cu" "F.Paste" "F.Mask") - (net 7 "Net-(U2-FB)") (pinfunction "FB") (pintype "input") (tstamp 398f2bd9-1e61-4699-ab77-ce7225afa0e9)) - (pad "5" smd rect (at 1.35 0 90) (size 1.56 0.65) (layers "F.Cu" "F.Paste" "F.Mask") - (net 10 "/VEN") (pinfunction "EN") (pintype "input") (tstamp 6704a997-5688-4753-8208-e04e3611232f)) - (pad "6" smd rect (at 1.35 -0.95 90) (size 1.56 0.65) (layers "F.Cu" "F.Paste" "F.Mask") - (net 5 "Net-(U2-BS)") (pinfunction "BS") (pintype "input") (tstamp 40a142a7-1f01-400f-b22c-d5ef16441694)) - (model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23-6.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "TestPoint:TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded" (layer "F.Cu") - (tstamp b12b04a9-aab8-4a81-b196-0b2b9deb52a7) - (at 95.4786 87.8078) - (descr "wire loop with bead as test point, loop diameter 1.8mm, hole diameter 1.0mm") - (tags "test point wire loop bead") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "test point") - (property "ki_keywords" "test point tp") - (path "/10676098-9c4c-4af0-a728-3b6a6a5f1707") - (attr through_hole) - (fp_text reference "TP7" (at 0.7 2.5) (layer "F.SilkS") hide - (effects (font (size 1 1) (thickness 0.15))) - (tstamp ec9aa6df-32f9-423f-be11-cd834c8764b3) - ) - (fp_text value "Gnd" (at -2.413 0 90) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp de19a8cb-2e99-4a48-87cd-99f894788726) - ) - (fp_text user "${REFERENCE}" (at 0.7 2.5) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp f670c4a8-3c60-4be5-98a4-1b618d58b138) - ) - (fp_circle (center 0 0) (end 1.5 0) - (stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 70ce82e7-59bf-4869-8c4c-d85580589cb6)) - (fp_circle (center 0 0) (end 1.8 0) - (stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 29425e98-a46e-4e21-9886-fa896bd9f35f)) - (fp_line (start -0.9 -0.2) (end 0.9 -0.2) - (stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp a6e06233-ac19-4cf0-8a6a-6ef4162bc38a)) - (fp_line (start -0.9 0.2) (end -0.9 -0.2) - (stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp 4832ced0-8d46-4f88-be4c-2ac3c4204f91)) - (fp_line (start 0.9 -0.2) (end 0.9 0.2) - (stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp c480ba46-d4a4-49f2-8158-5bd22312e017)) - (fp_line (start 0.9 0.2) (end -0.9 0.2) - (stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp 850d22f1-3311-423b-aa04-b334a22c1620)) - (fp_circle (center 0 0) (end 1.3 0) - (stroke (width 0.12) (type solid)) (fill none) (layer "F.Fab") (tstamp f33f0a9e-9945-45ab-91b8-438b031d4658)) - (pad "1" thru_hole circle (at 0 0) (size 2 2) (drill 1) (layers "*.Cu" "*.Mask") - (net 2 "GND") (pinfunction "1") (pintype "passive") (tstamp 044e6fe0-3fc7-4dc1-8124-3453768c8e77)) - (model "${KICAD6_3DMODEL_DIR}/TestPoint.3dshapes/TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "TestPoint:TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded" (layer "F.Cu") - (tstamp b6c844b2-8f8a-40e3-b3a4-e9a7eabcb80c) - (at 88.8238 105.3846) - (descr "wire loop with bead as test point, loop diameter 1.8mm, hole diameter 1.0mm") - (tags "test point wire loop bead") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "test point") - (property "ki_keywords" "test point tp") - (path "/98e6eead-e85d-44b4-8a5c-5b5e280c5432") - (attr through_hole) - (fp_text reference "TP2" (at 0.7 2.5) (layer "F.SilkS") hide - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 005b0c4c-c5e1-4fbd-9390-9a14bc3067a0) - ) - (fp_text value "Ven" (at 0 -2.8) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp fa67a1fe-3586-40c3-84c4-1aa13ab1f763) - ) - (fp_text user "${REFERENCE}" (at 0.7 2.5) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 7f771617-c99f-4765-a00d-44de6c64a2f0) - ) - (fp_circle (center 0 0) (end 1.5 0) - (stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp fab50bb5-336d-47a2-aa6f-9f243620af74)) - (fp_circle (center 0 0) (end 1.8 0) - (stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp b6d84b98-ed9b-4d16-b132-f799bf9d454b)) - (fp_line (start -0.9 -0.2) (end 0.9 -0.2) - (stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp e7df1955-68c1-4f3c-b762-2f65363f2744)) - (fp_line (start -0.9 0.2) (end -0.9 -0.2) - (stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp 7f1d6af9-a845-4214-bfb6-897ffd5222cf)) - (fp_line (start 0.9 -0.2) (end 0.9 0.2) - (stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp 7fed2c33-f363-4ff8-974f-1051da5e7163)) - (fp_line (start 0.9 0.2) (end -0.9 0.2) - (stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp df3e6c14-fec2-4140-814d-2e85207ad1ab)) - (fp_circle (center 0 0) (end 1.3 0) - (stroke (width 0.12) (type solid)) (fill none) (layer "F.Fab") (tstamp 41933991-c06a-4be5-8058-19c4ff1e7ebc)) - (pad "1" thru_hole circle (at 0 0) (size 2 2) (drill 1) (layers "*.Cu" "*.Mask") - (net 10 "/VEN") (pinfunction "1") (pintype "passive") (tstamp de6e9637-b60d-476f-9bb1-10d2467241eb)) - (model "${KICAD6_3DMODEL_DIR}/TestPoint.3dshapes/TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") - (tstamp c22416ec-47eb-42ab-b6f1-dacc3ee44111) - (at 111.6565 79.502 180) - (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags "resistor handsolder") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Resistor") - (property "ki_keywords" "R res resistor") - (path "/774d9764-be17-4dc4-bfa9-01848617bb4f") - (attr smd) - (fp_text reference "R11" (at -3.1515 0) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 5fddd726-9cda-4590-a1d1-1dc9ec781640) - ) - (fp_text value "10k" (at 0 1.43) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 97db119e-b509-4982-a43a-1f2d7993fcd5) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.06))) - (tstamp b1459fb0-bef8-46d8-bb31-ab74bd5b505b) - ) - (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 37c2c0e6-cb2c-46da-b727-435887588d46)) - (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2dc669e6-8cdc-497a-89df-8a217d741d6e)) - (fp_line (start -1.65 -0.73) (end 1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3b9ab70b-0c2e-45c4-aa6a-8067098ac0f9)) - (fp_line (start -1.65 0.73) (end -1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ce461dd5-010d-4c6d-b713-f312a124aac2)) - (fp_line (start 1.65 -0.73) (end 1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4c2cc35a-6fad-4087-bae9-f91ecef4c83c)) - (fp_line (start 1.65 0.73) (end -1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4905905a-cf08-4a23-bd21-c3ce25fc59e1)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b9c56d87-e1d2-4e5c-b77e-d6e866f78a1c)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f47d3746-9496-4e8c-a1f4-cffd4fee0323)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6a31cdd2-b554-4ea1-83e0-f98d3939457d)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c29bf29f-5d00-4004-8667-c0b45c441b99)) - (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pintype "passive") (tstamp d740c2df-b868-4e3a-85b7-04ab60479faa)) - (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 34 "/BOOT0") (pintype "passive") (tstamp 3b48bac2-2ff3-4c29-bd2e-b5d9634e9551)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Connector_JST:JST_PH_B2B-PH-K_1x02_P2.00mm_Vertical" (layer "F.Cu") - (tstamp c41ed231-9e54-4f79-a2e2-616548128236) - (at 133.138 107.966 -90) - (descr "JST PH series connector, B2B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator") - (tags "connector JST PH side entry") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Generic connector, single row, 01x02, script generated") - (property "ki_keywords" "connector") - (path "/5aa918df-9e97-47d2-901a-eb91887a76d9") - (attr through_hole) - (fp_text reference "J6" (at -1.556 -3.302) (layer "F.SilkS") hide - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 5846800d-76a7-4faa-966a-2b1821d55145) - ) - (fp_text value "EXT_MOT" (at 5.3688 0.8548) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 8d21155e-8454-4e8e-8afa-c3876878fa90) - ) - (fp_text user "${REFERENCE}" (at 1 1.5 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 6140d1d3-ece5-4951-8223-0aae8b2f7400) - ) - (fp_line (start -2.36 -2.11) (end -2.36 -0.86) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8a9e829e-50c6-48fa-a54c-32cd5f69af10)) - (fp_line (start -2.06 -1.81) (end -2.06 2.91) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1f6540de-cdcb-4188-a372-16283d34fa8d)) - (fp_line (start -2.06 -0.5) (end -1.45 -0.5) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 958c7e65-70b4-4936-9208-dbdb363c08c3)) - (fp_line (start -2.06 0.8) (end -1.45 0.8) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a204626c-ad5a-4e08-8656-5fee0b77c3e5)) - (fp_line (start -2.06 2.91) (end 4.06 2.91) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 042c6d03-13eb-4756-ae06-19e3f717af6f)) - (fp_line (start -1.45 -1.2) (end -1.45 2.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b1186e33-937e-4ac0-87a1-125963d08684)) - (fp_line (start -1.45 2.3) (end 3.45 2.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp af3482b4-93de-4c28-a580-1f8ab507d809)) - (fp_line (start -1.11 -2.11) (end -2.36 -2.11) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2b9f08b4-7a20-47c9-9231-6ff1afa81f0c)) - (fp_line (start -0.6 -2.01) (end -0.6 -1.81) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 22fb30f8-312a-4038-a1c5-db6a3fef78f3)) - (fp_line (start -0.3 -2.01) (end -0.6 -2.01) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0bae32d4-ffe8-44b4-a9f6-5d8f02fdace8)) - (fp_line (start -0.3 -1.91) (end -0.6 -1.91) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 163105ef-426b-49bd-ba83-442dab01b435)) - (fp_line (start -0.3 -1.81) (end -0.3 -2.01) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e3dcf968-5a0d-486e-908b-7a7f91b6fe41)) - (fp_line (start 0.5 -1.81) (end 0.5 -1.2) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 93a380dd-2072-4242-a5c0-b87cd8d2afd0)) - (fp_line (start 0.5 -1.2) (end -1.45 -1.2) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 36fb2279-8d91-4c73-aeea-afd24ca484e6)) - (fp_line (start 0.9 1.8) (end 1.1 1.8) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 506420e8-fa68-4ae8-bfa1-d7eaab8ec65b)) - (fp_line (start 0.9 2.3) (end 0.9 1.8) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b14ef833-7a2a-462d-bca3-2af0c72b051d)) - (fp_line (start 1 2.3) (end 1 1.8) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ba91ab03-e047-4833-a943-ea0bfdd30bd5)) - (fp_line (start 1.1 1.8) (end 1.1 2.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e4e316be-8b1e-4175-afdc-97d023da0a77)) - (fp_line (start 1.5 -1.2) (end 1.5 -1.81) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e871d40b-672d-4c0f-9ae3-6789437d88d9)) - (fp_line (start 3.45 -1.2) (end 1.5 -1.2) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 34c0123b-2f3c-4919-91d6-105e63694c4e)) - (fp_line (start 3.45 2.3) (end 3.45 -1.2) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fc0d96ee-d96b-4c6c-b413-8110fb3e6b78)) - (fp_line (start 4.06 -1.81) (end -2.06 -1.81) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6e9b1f95-2a06-4a50-bf7d-c762b2cb8de2)) - (fp_line (start 4.06 -0.5) (end 3.45 -0.5) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d80a51ea-26a8-45ed-9b11-551e4c3848c1)) - (fp_line (start 4.06 0.8) (end 3.45 0.8) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1d5932ca-b4be-4265-b384-c5104f199679)) - (fp_line (start 4.06 2.91) (end 4.06 -1.81) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a76d457f-9b2d-452c-8a46-21fb04177d3f)) - (fp_line (start -2.45 -2.2) (end -2.45 3.3) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 62242122-b070-42c2-abf2-73c501ab1dc5)) - (fp_line (start -2.45 3.3) (end 4.45 3.3) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bd44f20c-ee0e-41b5-a508-e42dc165db2d)) - (fp_line (start 4.45 -2.2) (end -2.45 -2.2) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fbb6f0cb-0234-4b0f-aeec-9415172439c8)) - (fp_line (start 4.45 3.3) (end 4.45 -2.2) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 93c933ef-fcc9-41e7-a427-f9b624757a7c)) - (fp_line (start -2.36 -2.11) (end -2.36 -0.86) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8f922d07-798f-4c0c-a9a7-43692abd728e)) - (fp_line (start -1.95 -1.7) (end -1.95 2.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d6a9e286-939e-4d44-be65-7c291e2a7b05)) - (fp_line (start -1.95 2.8) (end 3.95 2.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 381056b0-7744-4881-974e-e126673f0b40)) - (fp_line (start -1.11 -2.11) (end -2.36 -2.11) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 97d5d671-bade-46cc-bb41-5387adafa182)) - (fp_line (start 3.95 -1.7) (end -1.95 -1.7) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7050ba70-3650-4762-8436-7cd9dde40657)) - (fp_line (start 3.95 2.8) (end 3.95 -1.7) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f879cd4d-b713-47e2-be4d-c8ac02d1f1c4)) - (pad "1" thru_hole roundrect (at 0 0 270) (size 1.2 1.75) (drill 0.75) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.208333) - (net 16 "Net-(D5-A)") (pinfunction "Pin_1") (pintype "passive") (tstamp 042fffa3-2876-42e9-aa37-8e7491a415ad)) - (pad "2" thru_hole oval (at 2 0 270) (size 1.2 1.75) (drill 0.75) (layers "*.Cu" "*.Mask") - (net 14 "Net-(D4-A)") (pinfunction "Pin_2") (pintype "passive") (tstamp 825cfc6d-76d4-4698-8575-8cca48c36a8d)) - (model "${KICAD6_3DMODEL_DIR}/Connector_JST.3dshapes/JST_PH_B2B-PH-K_1x02_P2.00mm_Vertical.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") - (tstamp c5ede3f6-f5c9-48e0-a62c-a31eacf89d0a) - (at 108.3075 109.474 180) - (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags "resistor handsolder") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Resistor") - (property "ki_keywords" "R res resistor") - (path "/5ca3761a-e46f-449e-88a1-dcaf240a0196") - (attr smd) - (fp_text reference "R25" (at 0.0527 -1.524) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp d406e117-fd20-465d-9292-86caf2ab2d01) - ) - (fp_text value "100" (at 0 1.43) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp bc917203-3a84-48d5-8043-a99174d1e2b5) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.06))) - (tstamp f6750fd3-2284-47d6-ae2a-1aede5ed6ae3) - ) - (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1cade091-7847-4814-9615-c6da0ccd3fda)) - (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b14b0d79-23ed-459a-9e27-c1344d3cf7ff)) - (fp_line (start -1.65 -0.73) (end 1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 264a71d7-1f4e-462d-9c9f-ad9892c0df56)) - (fp_line (start -1.65 0.73) (end -1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2b743d11-7dec-4771-82c0-97c3de08fc32)) - (fp_line (start 1.65 -0.73) (end 1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp baabb79d-63f1-4efc-9994-a97057ff5e7d)) - (fp_line (start 1.65 0.73) (end -1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 857bafea-47eb-4c6f-a3f1-537c8f33c48c)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e0ff2d13-a09a-4460-8049-5e237cb05e29)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5ff17028-5d81-4b28-b795-613a0e69c449)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f4cb2b7b-a4d9-4909-9db3-bb3accef8a51)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ad150d1f-7db5-493c-b797-f55d04541db9)) - (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 52 "/R_UP") (pintype "passive") (tstamp edebd2fd-4219-4e75-af47-1b60304d9d41)) - (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 43 "Net-(Q6-G)") (pintype "passive") (tstamp da853230-4d03-4515-a19c-df443fab4cf4)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Connector_JST:JST_PH_B3B-PH-K_1x03_P2.00mm_Vertical" (layer "F.Cu") - (tstamp c7a1d975-ecbb-4e98-b2cc-12d660e0fc0e) - (at 130.81 84.9 -90) - (descr "JST PH series connector, B3B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator") - (tags "connector JST PH side entry") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Generic connector, single row, 01x03, script generated") - (property "ki_keywords" "connector") - (path "/45b86bb5-ff85-46a7-bf12-14bf7cd69b36") - (attr through_hole) - (fp_text reference "J3" (at 5.0668 -3.2004) (layer "F.SilkS") hide - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 9aad168a-7f8d-4a72-8c69-49d8678e6f99) - ) - (fp_text value "Buttons" (at -1.4 4.31 90) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp bc3a052c-76b7-4eb2-88d3-a4a5275d5d0f) - ) - (fp_text user "${REFERENCE}" (at 2 1.5 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 79b40719-fa2e-49f0-a97f-623925a4b24f) - ) - (fp_line (start -2.36 -2.11) (end -2.36 -0.86) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp affce363-396e-42e0-a1a9-9d37ef927431)) - (fp_line (start -2.06 -1.81) (end -2.06 2.91) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6e25fd95-cf0a-4608-94a9-050655267c95)) - (fp_line (start -2.06 -0.5) (end -1.45 -0.5) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 193d7f3f-e7f0-4f45-81f3-5f60673f55ca)) - (fp_line (start -2.06 0.8) (end -1.45 0.8) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c6e1689a-a677-4592-99ee-a9fe2df6a2af)) - (fp_line (start -2.06 2.91) (end 6.06 2.91) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 66a845c0-f2c6-4c03-a056-05d870fd79f8)) - (fp_line (start -1.45 -1.2) (end -1.45 2.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4176fc34-bed4-45f8-9cca-2d9c88ef0ba5)) - (fp_line (start -1.45 2.3) (end 5.45 2.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 68324a0a-7c70-4e5e-958e-83ce4a71fc6a)) - (fp_line (start -1.11 -2.11) (end -2.36 -2.11) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f4ad6528-b018-4cb7-b9e8-5468be07881a)) - (fp_line (start -0.6 -2.01) (end -0.6 -1.81) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1e7edf21-93c3-4b65-8aab-64fc8453a42e)) - (fp_line (start -0.3 -2.01) (end -0.6 -2.01) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 375688a4-f013-4e11-81aa-01f87eb9380c)) - (fp_line (start -0.3 -1.91) (end -0.6 -1.91) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6f317f94-30c0-4642-a0b7-6a2eee596b36)) - (fp_line (start -0.3 -1.81) (end -0.3 -2.01) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b4964d69-6dbd-478a-8eda-b0eca10c76e8)) - (fp_line (start 0.5 -1.81) (end 0.5 -1.2) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7abe11c4-3f96-4086-bb2e-3a7976a96368)) - (fp_line (start 0.5 -1.2) (end -1.45 -1.2) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b54a8087-d441-44e6-ac17-6c5f6b9836df)) - (fp_line (start 0.9 1.8) (end 1.1 1.8) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 51e1f242-9a2e-4d3a-b728-56f937c71b82)) - (fp_line (start 0.9 2.3) (end 0.9 1.8) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1424f8e5-e488-4ed3-a672-b5e190e0db11)) - (fp_line (start 1 2.3) (end 1 1.8) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c85efc67-1a87-4ff4-9a3e-b6c65e50440b)) - (fp_line (start 1.1 1.8) (end 1.1 2.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 605ce739-25af-4258-af73-00971c2f5491)) - (fp_line (start 2.9 1.8) (end 3.1 1.8) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp de33a9e1-54e2-445c-87a6-d4955e669d8a)) - (fp_line (start 2.9 2.3) (end 2.9 1.8) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7eee6368-1987-4d7e-a193-56197ace1797)) - (fp_line (start 3 2.3) (end 3 1.8) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 50028743-5797-4031-ba4d-00579d473724)) - (fp_line (start 3.1 1.8) (end 3.1 2.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1683faf3-8e78-4f74-925c-14508330555d)) - (fp_line (start 3.5 -1.2) (end 3.5 -1.81) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3fd4c603-ddb9-4241-bc01-f06b68d33d45)) - (fp_line (start 5.45 -1.2) (end 3.5 -1.2) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 77c51c54-bc9d-45b1-9c6c-463996df6e45)) - (fp_line (start 5.45 2.3) (end 5.45 -1.2) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 44a292ed-c17c-40a4-85ce-2a200737198c)) - (fp_line (start 6.06 -1.81) (end -2.06 -1.81) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5c45e6d5-21bd-4144-aa52-e3e23de644d2)) - (fp_line (start 6.06 -0.5) (end 5.45 -0.5) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a57784b5-21b9-401f-9b98-5ba04eec1f19)) - (fp_line (start 6.06 0.8) (end 5.45 0.8) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 46924d25-fcbc-4c50-92bb-3fbbb7d1c2f1)) - (fp_line (start 6.06 2.91) (end 6.06 -1.81) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 428d26fe-b23c-405a-adf7-356e40aeccfa)) - (fp_line (start -2.45 -2.2) (end -2.45 3.3) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7fc17271-276b-4c9d-af77-808226bf2713)) - (fp_line (start -2.45 3.3) (end 6.45 3.3) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9b07529a-8a39-4e26-9a8a-b624d24e0848)) - (fp_line (start 6.45 -2.2) (end -2.45 -2.2) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3547fc3d-d1c6-4a86-88cb-d6d3e322c5b9)) - (fp_line (start 6.45 3.3) (end 6.45 -2.2) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7251e02c-06ea-40b5-a975-621bc8d9a22c)) - (fp_line (start -2.36 -2.11) (end -2.36 -0.86) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d7b160c0-cef5-459a-b163-152c77fff0ca)) - (fp_line (start -1.95 -1.7) (end -1.95 2.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 505e7f84-fa03-4d27-bdc2-4d6e16385f09)) - (fp_line (start -1.95 2.8) (end 5.95 2.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cd70569e-a3de-4e2f-a57d-b7b7a402f4cb)) - (fp_line (start -1.11 -2.11) (end -2.36 -2.11) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 71a16378-0e5f-492b-9662-1684cb2577c6)) - (fp_line (start 5.95 -1.7) (end -1.95 -1.7) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp edf076f7-1e97-44ed-b459-433d1224999a)) - (fp_line (start 5.95 2.8) (end 5.95 -1.7) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a13646e8-142e-4c8d-a81e-9c2fbe6fc979)) - (pad "1" thru_hole roundrect (at 0 0 270) (size 1.2 1.75) (drill 0.75) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.208333) - (net 73 "Net-(J3-Pin_1)") (pinfunction "Pin_1") (pintype "passive") (tstamp 61e78869-f35e-4497-96db-37c189a63f65)) - (pad "2" thru_hole oval (at 2 0 270) (size 1.2 1.75) (drill 0.75) (layers "*.Cu" "*.Mask") - (net 28 "Net-(J3-Pin_2)") (pinfunction "Pin_2") (pintype "passive") (tstamp e9eb03ff-0342-4b8f-846c-6ecc7b10b504)) - (pad "3" thru_hole oval (at 4 0 270) (size 1.2 1.75) (drill 0.75) (layers "*.Cu" "*.Mask") - (net 2 "GND") (pinfunction "Pin_3") (pintype "passive") (tstamp 6db797b8-c3ed-473d-a78f-4f05b71ce2a0)) - (model "${KICAD6_3DMODEL_DIR}/Connector_JST.3dshapes/JST_PH_B3B-PH-K_1x03_P2.00mm_Vertical.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") - (tstamp cbc1c2f7-aa3c-48ea-a6b8-5a2248595ec6) - (at 106.3255 80.518) - (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags "capacitor handsolder") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Unpolarized capacitor") - (property "ki_keywords" "cap capacitor") - (path "/d6c47741-d7ff-410d-ae78-4e99255d7d96") - (attr smd) - (fp_text reference "C7" (at 0 -1.43) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp f126060e-0273-4817-a57d-7fc3c6a33802) - ) - (fp_text value "0.1" (at 0 1.43) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp ebd76177-f925-4d87-8866-1209a5fcbc96) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.06))) - (tstamp 9be847b4-9cf3-4f31-b1b2-f5d482d74422) - ) - (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 13c01a3b-da83-460f-81d8-fbfa524fc24c)) - (fp_line (start -0.146267 0.51) (end 0.146267 0.51) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ffc2b389-d699-4a57-bbad-4e13e379c084)) - (fp_line (start -1.65 -0.73) (end 1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8d26f8c0-4bd6-485e-ae42-82ab45398cd3)) - (fp_line (start -1.65 0.73) (end -1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 054892b4-00fa-4e2f-8f2a-8d214c055c0c)) - (fp_line (start 1.65 -0.73) (end 1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1189e3fe-67da-4e58-9f64-c0612daa8f17)) - (fp_line (start 1.65 0.73) (end -1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0feab56a-f396-4169-b2be-26924b41cedb)) - (fp_line (start -0.8 -0.4) (end 0.8 -0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cfd1fe2c-fe96-474d-9d0f-9b5dd918a2d1)) - (fp_line (start -0.8 0.4) (end -0.8 -0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4f99882c-a824-464d-8ce1-5aa22febde96)) - (fp_line (start 0.8 -0.4) (end 0.8 0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b96412da-5510-410a-893a-99e0cbc498e9)) - (fp_line (start 0.8 0.4) (end -0.8 0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8f6dc265-79b8-4536-b686-7fd4d7da0728)) - (pad "1" smd roundrect (at -0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 6 "+3V3") (pintype "passive") (tstamp f156873e-8dfa-4c28-889e-e72f0b65d592)) - (pad "2" smd roundrect (at 0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pintype "passive") (tstamp 336b954a-9656-48d9-bc6b-a78973a37c1c)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Package_QFP:LQFP-48_7x7mm_P0.5mm" (layer "F.Cu") - (tstamp cc5ff019-ac65-4b72-bf6f-3be23e9da242) - (at 110.3915 86.8141) - (descr "LQFP, 48 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ltc2358-16.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py") - (tags "LQFP QFP") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "ARM Cortex-M3 MCU, 32KB flash, 10KB RAM, 72MHz, 2-3.6V, 37 GPIO, LQFP-48") - (property "ki_keywords" "ARM Cortex-M3 STM32F1 STM32F103") - (path "/e4f2ba4e-4d73-483b-92c6-d8ba5e2d8e24") - (attr smd) - (fp_text reference "U3" (at 0 -5.85) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 0a1cb2e4-d385-4743-947c-d45da36769f7) - ) - (fp_text value "STM32F103C6Tx" (at 0 5.85) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 53958a5f-4d34-4b01-bbda-7ea78ec5b3ca) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp d08d7c8d-03d1-40f1-bc86-fb7af538930b) - ) - (fp_line (start -3.61 -3.61) (end -3.61 -3.16) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0fe605ba-456c-43a9-a45b-57d307721ea1)) - (fp_line (start -3.61 -3.16) (end -4.9 -3.16) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6d209951-fc5b-43e3-8d14-1a11876b6ecc)) - (fp_line (start -3.61 3.61) (end -3.61 3.16) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d20cb165-6a13-4a13-b334-534319e81952)) - (fp_line (start -3.16 -3.61) (end -3.61 -3.61) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b3e369cf-a809-46c0-84ab-fcf33d0b077e)) - (fp_line (start -3.16 3.61) (end -3.61 3.61) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 90ddcad7-48e0-4c4b-9038-3454b25a4609)) - (fp_line (start 3.16 -3.61) (end 3.61 -3.61) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 72681d7a-be78-461c-8b28-8886890976f7)) - (fp_line (start 3.16 3.61) (end 3.61 3.61) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 12297965-177a-48a7-86e1-826d9b6c0e81)) - (fp_line (start 3.61 -3.61) (end 3.61 -3.16) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5b1d1b1a-d0c9-4229-8639-05d738a4ce10)) - (fp_line (start 3.61 3.61) (end 3.61 3.16) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ae5dc1bb-5712-4fa3-809f-469c628044c9)) - (fp_line (start -5.15 -3.15) (end -5.15 0) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 520a2fe4-8580-44ab-9e3d-627e463f0ac9)) - (fp_line (start -5.15 3.15) (end -5.15 0) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8fba5951-01c9-4360-9fee-f4e5b180aaab)) - (fp_line (start -3.75 -3.75) (end -3.75 -3.15) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e36278de-b3bb-4277-9931-7722b6032ed1)) - (fp_line (start -3.75 -3.15) (end -5.15 -3.15) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 79c6e15d-530b-48e1-ac86-a0e57f1070ba)) - (fp_line (start -3.75 3.15) (end -5.15 3.15) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a7281a52-b9e0-4d3d-9b5d-2f9d49919fb2)) - (fp_line (start -3.75 3.75) (end -3.75 3.15) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 90996176-2625-49cd-8adc-f93e5a08b035)) - (fp_line (start -3.15 -5.15) (end -3.15 -3.75) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 58ff955d-3d1a-4248-8ae0-65ce291153e2)) - (fp_line (start -3.15 -3.75) (end -3.75 -3.75) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 14a6f6bf-2306-4143-b9f4-746aa022c8ec)) - (fp_line (start -3.15 3.75) (end -3.75 3.75) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a73f3089-43c8-4488-b41c-61de2f06090e)) - (fp_line (start -3.15 5.15) (end -3.15 3.75) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 89669a05-e7f1-4414-a960-0605113ee93a)) - (fp_line (start 0 -5.15) (end -3.15 -5.15) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bb1d75d1-4287-42e4-9c98-b8c82f2978c0)) - (fp_line (start 0 -5.15) (end 3.15 -5.15) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a9b5b484-e1ad-489a-96ee-7224fc60689c)) - (fp_line (start 0 5.15) (end -3.15 5.15) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e5278e35-eb33-4433-b764-237f53f4efe3)) - (fp_line (start 0 5.15) (end 3.15 5.15) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2550eaf8-67c1-4eeb-a8e2-f6e5cfccf915)) - (fp_line (start 3.15 -5.15) (end 3.15 -3.75) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c1308aee-ed0d-476e-aa34-fd4a8f0bc668)) - (fp_line (start 3.15 -3.75) (end 3.75 -3.75) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1982f51f-69c9-4422-b98d-3aa45b7e064f)) - (fp_line (start 3.15 3.75) (end 3.75 3.75) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3f8f432a-3c6f-4b56-96aa-b92690095598)) - (fp_line (start 3.15 5.15) (end 3.15 3.75) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e2f37836-fbc8-4c1d-a8eb-bc5137d2e16f)) - (fp_line (start 3.75 -3.75) (end 3.75 -3.15) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8c340fc0-c21e-4fe1-8004-35a6c7c37a43)) - (fp_line (start 3.75 -3.15) (end 5.15 -3.15) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2a55490c-83af-41e9-aa30-0c09d723b2de)) - (fp_line (start 3.75 3.15) (end 5.15 3.15) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0f8058fa-6eb5-45b0-a08a-57aaa0cc0e92)) - (fp_line (start 3.75 3.75) (end 3.75 3.15) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9dfecf84-1345-4818-981c-43c2318b0bd4)) - (fp_line (start 5.15 -3.15) (end 5.15 0) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1acad55a-09a1-4ed4-8a82-78bbe54465c5)) - (fp_line (start 5.15 3.15) (end 5.15 0) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 45213a8d-8033-4b4b-8aa8-3f84e92ba783)) - (fp_line (start -3.5 -2.5) (end -2.5 -3.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 86e053bd-2d8c-4631-bfb0-a5a76b93c49f)) - (fp_line (start -3.5 3.5) (end -3.5 -2.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d0e98228-858c-4e8d-8e0c-4a33d591662a)) - (fp_line (start -2.5 -3.5) (end 3.5 -3.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 338f9023-7be2-4bab-ba92-c09529f8bf97)) - (fp_line (start 3.5 -3.5) (end 3.5 3.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f1f47f5f-4859-4746-bc4e-b75ba70ee9a6)) - (fp_line (start 3.5 3.5) (end -3.5 3.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c4879471-6596-456b-9678-abb22306e184)) - (pad "1" smd roundrect (at -4.1625 -2.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 6 "+3V3") (pinfunction "VBAT") (pintype "power_in") (tstamp 499e164f-4c65-46d6-84a1-b6f409b286f1)) - (pad "2" smd roundrect (at -4.1625 -2.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 53 "unconnected-(U3-PC13-Pad2)") (pinfunction "PC13") (pintype "bidirectional+no_connect") (tstamp 35a9d5d4-0a6c-471e-a6d3-46e2f6f92f0f)) - (pad "3" smd roundrect (at -4.1625 -1.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 54 "unconnected-(U3-PC14-Pad3)") (pinfunction "PC14") (pintype "bidirectional+no_connect") (tstamp 23034741-abd4-4d43-8106-d0cbe3790e13)) - (pad "4" smd roundrect (at -4.1625 -1.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 55 "unconnected-(U3-PC15-Pad4)") (pinfunction "PC15") (pintype "bidirectional+no_connect") (tstamp 5d06adcd-2225-4c84-8c37-9887ee5bfa6e)) - (pad "5" smd roundrect (at -4.1625 -0.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 8 "/OSC_IN") (pinfunction "PD0") (pintype "input") (tstamp 4a5759ed-e073-40bb-85c6-906f30fb68b0)) - (pad "6" smd roundrect (at -4.1625 -0.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 9 "/OSC_OUT") (pinfunction "PD1") (pintype "input") (tstamp 02208645-4883-4d8e-aa30-f774bd72df0d)) - (pad "7" smd roundrect (at -4.1625 0.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 35 "/NRST") (pinfunction "NRST") (pintype "input") (tstamp cffe4702-cb4c-4b96-bc83-54250f41012f)) - (pad "8" smd roundrect (at -4.1625 0.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pinfunction "VSSA") (pintype "power_in") (tstamp 5d9df0f1-f507-4adc-846f-0865746f055c)) - (pad "9" smd roundrect (at -4.1625 1.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 6 "+3V3") (pinfunction "VDDA") (pintype "power_in") (tstamp 166ec681-80fe-4e5f-8e46-056902676dcf)) - (pad "10" smd roundrect (at -4.1625 1.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 19 "/Vsen") (pinfunction "PA0") (pintype "bidirectional") (tstamp b7951343-c946-4821-8427-d951eb5470df)) - (pad "11" smd roundrect (at -4.1625 2.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 12 "/Power_EN") (pinfunction "PA1") (pintype "bidirectional") (tstamp a9dd3bc3-b723-4068-b31f-1f0ba028a2b6)) - (pad "12" smd roundrect (at -4.1625 2.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 49 "/L_UP") (pinfunction "PA2") (pintype "bidirectional") (tstamp c9401dc8-b982-43cf-a6ce-7fff3923418a)) - (pad "13" smd roundrect (at -2.75 4.1625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 52 "/R_UP") (pinfunction "PA3") (pintype "bidirectional") (tstamp 1621adc3-5c25-4439-8205-8d43eba29ec7)) - (pad "14" smd roundrect (at -2.25 4.1625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 66 "unconnected-(U3-PA4-Pad14)") (pinfunction "PA4") (pintype "bidirectional+no_connect") (tstamp 789ef831-b33b-493c-a57e-96d4d09c297b)) - (pad "15" smd roundrect (at -1.75 4.1625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 56 "unconnected-(U3-PA5-Pad15)") (pinfunction "PA5") (pintype "bidirectional+no_connect") (tstamp 6df34974-0a70-417d-a8bf-7385d0b35e10)) - (pad "16" smd roundrect (at -1.25 4.1625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 51 "/R_DOWN") (pinfunction "PA6") (pintype "bidirectional") (tstamp de370586-1016-419d-8eb4-451bf09bfa31)) - (pad "17" smd roundrect (at -0.75 4.1625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 50 "/L_DOWN") (pinfunction "PA7") (pintype "bidirectional") (tstamp 003a9d30-8732-4fcf-af95-b2635086821b)) - (pad "18" smd roundrect (at -0.25 4.1625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 70 "unconnected-(U3-PB0-Pad18)") (pinfunction "PB0") (pintype "bidirectional+no_connect") (tstamp 051c2c8b-fe5b-4afa-ac5c-f45bde0a58b0)) - (pad "19" smd roundrect (at 0.25 4.1625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 69 "unconnected-(U3-PB1-Pad19)") (pinfunction "PB1") (pintype "bidirectional+no_connect") (tstamp 7f7d38e9-0168-4994-ab89-38c241c1f7ee)) - (pad "20" smd roundrect (at 0.75 4.1625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 68 "unconnected-(U3-PB2-Pad20)") (pinfunction "PB2") (pintype "bidirectional+no_connect") (tstamp 70bbbee1-d15f-425c-a500-aa40b85455ad)) - (pad "21" smd roundrect (at 1.25 4.1625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 57 "unconnected-(U3-PB10-Pad21)") (pinfunction "PB10") (pintype "bidirectional+no_connect") (tstamp ec00149b-6c6d-450b-92f8-7550934dd628)) - (pad "22" smd roundrect (at 1.75 4.1625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 58 "unconnected-(U3-PB11-Pad22)") (pinfunction "PB11") (pintype "bidirectional+no_connect") (tstamp bccee832-aae4-4db0-887e-c5db94a28a21)) - (pad "23" smd roundrect (at 2.25 4.1625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 42d35e49-0091-45c1-a969-a13f3b8ac868)) - (pad "24" smd roundrect (at 2.75 4.1625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 6 "+3V3") (pinfunction "VDD") (pintype "power_in") (tstamp 2ff5c6a5-c1c0-4ffc-b86f-e90a58549212)) - (pad "25" smd roundrect (at 4.1625 2.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 17 "/UP_DIR") (pinfunction "PB12") (pintype "bidirectional") (tstamp 234acce1-89fe-4c16-8144-0a43e46cacde)) - (pad "26" smd roundrect (at 4.1625 2.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 18 "/DOWN_DIR") (pinfunction "PB13") (pintype "bidirectional") (tstamp a59e0e0a-fb63-40b6-8fc9-6d23f82b4eb3)) - (pad "27" smd roundrect (at 4.1625 1.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 46 "/UP_BTN") (pinfunction "PB14") (pintype "bidirectional") (tstamp 85da6c32-b454-420a-a30e-9681ce9f7482)) - (pad "28" smd roundrect (at 4.1625 1.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 47 "/DOWN_BTN") (pinfunction "PB15") (pintype "bidirectional") (tstamp cddc7500-ad4e-4d94-8398-6f70519c5e98)) - (pad "29" smd roundrect (at 4.1625 0.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 59 "unconnected-(U3-PA8-Pad29)") (pinfunction "PA8") (pintype "bidirectional+no_connect") (tstamp 720f4ac0-2829-4eeb-b0bf-6787e5d71b8e)) - (pad "30" smd roundrect (at 4.1625 0.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 30 "/Tx") (pinfunction "PA9") (pintype "bidirectional") (tstamp ddf88d1c-2ead-43b6-b2c0-5f4d2e430be4)) - (pad "31" smd roundrect (at 4.1625 -0.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 29 "/Rx") (pinfunction "PA10") (pintype "bidirectional") (tstamp 786459cc-05e0-4ff9-bb73-7912ed4c7cbf)) - (pad "32" smd roundrect (at 4.1625 -0.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 45 "/DOWN_SW") (pinfunction "PA11") (pintype "bidirectional") (tstamp b8ba5b21-533f-4c10-af2c-7f3765030510)) - (pad "33" smd roundrect (at 4.1625 -1.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 44 "/UP_SW") (pinfunction "PA12") (pintype "bidirectional") (tstamp af46d047-1234-48bb-b7c9-cb91a3725b33)) - (pad "34" smd roundrect (at 4.1625 -1.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 32 "/SWDIO") (pinfunction "PA13") (pintype "bidirectional") (tstamp 5dc4068e-724f-4d73-a658-31d7f13efe20)) - (pad "35" smd roundrect (at 4.1625 -2.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 1bfa6417-7f4a-4e7f-babe-c02b20f41983)) - (pad "36" smd roundrect (at 4.1625 -2.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 6 "+3V3") (pinfunction "VDD") (pintype "power_in") (tstamp e5cc64ac-ec03-4ba2-ad97-d366e56a9a72)) - (pad "37" smd roundrect (at 2.75 -4.1625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 31 "/SWCLK") (pinfunction "PA14") (pintype "bidirectional") (tstamp da5392c9-9243-43de-aa59-f29b934ac76f)) - (pad "38" smd roundrect (at 2.25 -4.1625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 60 "unconnected-(U3-PA15-Pad38)") (pinfunction "PA15") (pintype "bidirectional+no_connect") (tstamp ff72364d-cbe6-46cc-ae74-8cd6927147ba)) - (pad "39" smd roundrect (at 1.75 -4.1625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 67 "unconnected-(U3-PB3-Pad39)") (pinfunction "PB3") (pintype "bidirectional+no_connect") (tstamp 6dd20f36-bf88-4d34-a328-e24e36d8ee84)) - (pad "40" smd roundrect (at 1.25 -4.1625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 72 "unconnected-(U3-PB4-Pad40)") (pinfunction "PB4") (pintype "bidirectional+no_connect") (tstamp 28b3a5db-ae50-48df-b984-3748aa0d5fe3)) - (pad "41" smd roundrect (at 0.75 -4.1625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 71 "unconnected-(U3-PB5-Pad41)") (pinfunction "PB5") (pintype "bidirectional+no_connect") (tstamp 1ecd1c7f-d4e2-49cf-be02-0b9ee9d512c5)) - (pad "42" smd roundrect (at 0.25 -4.1625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 61 "unconnected-(U3-PB6-Pad42)") (pinfunction "PB6") (pintype "bidirectional+no_connect") (tstamp db860756-c9e7-4489-ab8a-892b401b4ec5)) - (pad "43" smd roundrect (at -0.25 -4.1625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 62 "unconnected-(U3-PB7-Pad43)") (pinfunction "PB7") (pintype "bidirectional+no_connect") (tstamp ddb900fb-49e7-4284-984a-156b31aae93a)) - (pad "44" smd roundrect (at -0.75 -4.1625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 34 "/BOOT0") (pinfunction "BOOT0") (pintype "input") (tstamp 18df3b18-1253-4291-837f-d973da977a8f)) - (pad "45" smd roundrect (at -1.25 -4.1625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 63 "/CAN_Rx") (pinfunction "PB8") (pintype "bidirectional") (tstamp 0f373959-ed52-4da9-bd1e-59fc11d7dbf0)) - (pad "46" smd roundrect (at -1.75 -4.1625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 64 "/CAN_Tx") (pinfunction "PB9") (pintype "bidirectional") (tstamp b23d1010-afa5-4ec1-b0bc-1831fb0c15aa)) - (pad "47" smd roundrect (at -2.25 -4.1625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 0ee67874-e69d-45cf-aa03-009b685410b0)) - (pad "48" smd roundrect (at -2.75 -4.1625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 6 "+3V3") (pinfunction "VDD") (pintype "power_in") (tstamp 966c1fec-b283-4d5f-9466-87a4204bdecd)) - (model "${KICAD6_3DMODEL_DIR}/Package_QFP.3dshapes/LQFP-48_7x7mm_P0.5mm.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") - (tstamp d13ca44b-8d91-417d-b459-168395b68169) - (at 76.5575 82.296 180) - (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags "resistor handsolder") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Resistor") - (property "ki_keywords" "R res resistor") - (path "/d5ee53e9-7bd5-4534-9901-c669dd66fb12") - (attr smd) - (fp_text reference "R6" (at -0.0235 1.4224) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp a5fb6675-885d-402e-9ff9-bf51fd46401e) - ) - (fp_text value "19k" (at 0 1.43) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 971443b4-d0ca-4c4d-a15b-a4dc5390081a) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.06))) - (tstamp a96758f5-4e8f-40c1-9a39-29af4a342b26) - ) - (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6e8a8b5c-76d2-4faa-ae42-a7037f568d25)) - (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4145180e-e68c-4707-a042-940998d11d95)) - (fp_line (start -1.65 -0.73) (end 1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 72d186d0-25db-43c7-8e2e-4ad909173edd)) - (fp_line (start -1.65 0.73) (end -1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0c21bae9-367c-4669-9be8-ac919d820fca)) - (fp_line (start 1.65 -0.73) (end 1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 34451722-9571-46d7-852e-24bf9e8b9917)) - (fp_line (start 1.65 0.73) (end -1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 915120bd-2df0-4aee-b572-4b1e76257df1)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d9bbe02f-95c5-4fe3-831e-f6c3ddbe9cc3)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cfc92dee-aa61-46b2-ada7-7ebac1543599)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f976e933-de58-4a83-8586-53e812addba8)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f2a7c5a0-b37d-4f28-b1ab-050320884ab0)) - (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 7 "Net-(U2-FB)") (pintype "passive") (tstamp 61eb80bc-f88f-4a29-a614-cc3a3f52af99)) - (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pintype "passive") (tstamp 0ee64ad1-8e56-4592-b4df-2034668ffb72)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "TestPoint:TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded" (layer "F.Cu") - (tstamp d49250b6-1f02-4172-914f-a57cd73c6c1c) - (at 86.106 88.646) - (descr "wire loop with bead as test point, loop diameter 1.8mm, hole diameter 1.0mm") - (tags "test point wire loop bead") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "test point") - (property "ki_keywords" "test point tp") - (path "/876a0053-1bfc-4c2f-9e0b-38f2bf2e35cf") - (attr through_hole) - (fp_text reference "TP4" (at 0.7 2.5) (layer "F.SilkS") hide - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 4282735f-9680-47a2-b655-5b1b17444917) - ) - (fp_text value "5V" (at 1.016 -2.286) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 86c5e3b0-bda7-4519-a1e3-645a4600931f) - ) - (fp_text user "${REFERENCE}" (at 0.7 2.5) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp e86bd0f3-7b12-49f4-b858-b6e93e60a76f) - ) - (fp_circle (center 0 0) (end 1.5 0) - (stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp cd2cda82-44e9-443c-aa43-91bdc14393cc)) - (fp_circle (center 0 0) (end 1.8 0) - (stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 02a8a0ac-6ff8-41e6-b19a-da9480677b1c)) - (fp_line (start -0.9 -0.2) (end 0.9 -0.2) - (stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp 03597865-084c-4030-9fb9-319d44d83c98)) - (fp_line (start -0.9 0.2) (end -0.9 -0.2) - (stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp 0c719475-e7de-493c-96db-bb6ae4720afc)) - (fp_line (start 0.9 -0.2) (end 0.9 0.2) - (stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp 1294d4dd-c1f5-4212-ad79-535909923da0)) - (fp_line (start 0.9 0.2) (end -0.9 0.2) - (stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp 7d566e0b-82b2-4a47-a597-a7cf29212465)) - (fp_circle (center 0 0) (end 1.3 0) - (stroke (width 0.12) (type solid)) (fill none) (layer "F.Fab") (tstamp e698dc00-2d08-4403-8735-0b2ba5b98365)) - (pad "1" thru_hole circle (at 0 0) (size 2 2) (drill 1) (layers "*.Cu" "*.Mask") - (net 1 "+5V") (pinfunction "1") (pintype "passive") (tstamp 9f11d2bf-6aa6-4e26-b71c-7f92347a6682)) - (model "${KICAD6_3DMODEL_DIR}/TestPoint.3dshapes/TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "TestPoint:TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded" (layer "F.Cu") - (tstamp d4df7d47-163e-4918-8f05-49045903fa74) - (at 117.856 96.012) - (descr "wire loop with bead as test point, loop diameter 1.8mm, hole diameter 1.0mm") - (tags "test point wire loop bead") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "test point") - (property "ki_keywords" "test point tp") - (path "/ae370df5-d57f-43d8-bbe8-80e609ef316c") - (attr through_hole) - (fp_text reference "TP9" (at 0.7 2.5) (layer "F.SilkS") hide - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 84919d8d-c2ff-4ce8-9d9f-1646795689b7) - ) - (fp_text value "L-" (at -1.778 -1.778) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 308dda11-b5bd-4670-81d9-a4479c2ad1fb) - ) - (fp_text user "${REFERENCE}" (at 0.7 2.5) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp f22e89f4-3dfd-4062-a52c-551c02eb986a) - ) - (fp_circle (center 0 0) (end 1.5 0) - (stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 8b40f40b-5bbc-4d8b-8bf9-417a975a0b97)) - (fp_circle (center 0 0) (end 1.8 0) - (stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 5592cc1b-adeb-461f-bc75-888c4e370bcf)) - (fp_line (start -0.9 -0.2) (end 0.9 -0.2) - (stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp 538be627-812c-41bc-85de-05c0a63237b8)) - (fp_line (start -0.9 0.2) (end -0.9 -0.2) - (stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp e7d55370-19fb-48c0-a3ed-e1c5f7b19e7a)) - (fp_line (start 0.9 -0.2) (end 0.9 0.2) - (stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp 2197a413-18b1-4635-b9af-2cc7cf5f6b96)) - (fp_line (start 0.9 0.2) (end -0.9 0.2) - (stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp 8cd76c2f-d35b-4d8d-a361-1f8d290971a2)) - (fp_circle (center 0 0) (end 1.3 0) - (stroke (width 0.12) (type solid)) (fill none) (layer "F.Fab") (tstamp cb920cc8-e1ac-4d7e-ab0c-a7a63e04d8a3)) - (pad "1" thru_hole circle (at 0 0) (size 2 2) (drill 1) (layers "*.Cu" "*.Mask") - (net 50 "/L_DOWN") (pinfunction "1") (pintype "passive") (tstamp f7d32e02-1f31-48ee-90a3-415262cf06ea)) - (model "${KICAD6_3DMODEL_DIR}/TestPoint.3dshapes/TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") - (tstamp daac47d7-a0b9-42fb-a197-2d8a51751647) - (at 124.0555 72.39 180) - (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags "resistor handsolder") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Resistor") - (property "ki_keywords" "R res resistor") - (path "/4fa462cf-38f4-4f24-a861-47c311b9ed07") - (attr smd) - (fp_text reference "R3" (at -0.0997 -1.6002) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp d33341de-1ff0-4110-828a-08679772fff4) - ) - (fp_text value "47" (at 0 1.43) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 56290d11-4da6-42f6-ba15-1b66b45164c0) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.06))) - (tstamp 8e713725-1d91-405b-b4be-1aef34de6e0f) - ) - (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bf701cd6-c4f4-4dba-be31-c1739cb769ca)) - (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d9c873e5-4b96-4c7b-b82c-8d7b237e4b11)) - (fp_line (start -1.65 -0.73) (end 1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4402a9e9-a94f-4f27-80f7-a0575b84f2d0)) - (fp_line (start -1.65 0.73) (end -1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d24a2500-2250-4d2b-ae9b-b151cb08c31f)) - (fp_line (start 1.65 -0.73) (end 1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1eeb4f17-5681-46ca-9c12-7b0dfe1d5ef1)) - (fp_line (start 1.65 0.73) (end -1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bd8f1421-c0bd-4794-8081-efd325aff765)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 72bcb9c7-e0b8-43a2-9458-f3483aa270ef)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a7d9394c-88de-4f0f-94ee-f3185d429c5b)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9a9cd756-fb56-48e2-9d19-da5df1003462)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1deae9d8-699b-4f47-9727-38c6268d3696)) - (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 25 "Net-(J2-Pin_1)") (pintype "passive") (tstamp e42d8007-58f9-4236-8cfd-b0b48001cdba)) - (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 6 "+3V3") (pintype "passive") (tstamp 32922bb3-347d-4bb8-b814-1ddd3d69b70f)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Diode_SMD:D_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu") - (tstamp de251241-b4ee-4462-90fa-bdbeb5c60d71) - (at 125.739 103.124) - (descr "Diode SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") - (tags "diode handsolder") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Schottky diode") - (property "ki_keywords" "diode Schottky") - (path "/d81bbb2d-88a8-4b83-96e1-471fd82bedf8") - (attr smd) - (fp_text reference "D6" (at -0.009 1.778) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 41495e7a-a488-4014-80b6-216daa5d6c6e) - ) - (fp_text value "MM3Z3V3" (at 0 1.65) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp f1d668de-2d52-40ad-b6ea-13f4fc8a5136) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") - (effects (font (size 0.5 0.5) (thickness 0.08))) - (tstamp 3673597f-8085-4d4d-a882-8e00304eea17) - ) - (fp_line (start -1.86 -0.96) (end -1.86 0.96) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c28b3836-9da5-4a42-a951-3e39c6203622)) - (fp_line (start -1.86 0.96) (end 1 0.96) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 905ac2a2-baf4-4970-a0dd-dc42fdf91c33)) - (fp_line (start 1 -0.96) (end -1.86 -0.96) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f20a5692-0d8f-472c-923f-71fd70e9262d)) - (fp_line (start -1.85 -0.95) (end 1.85 -0.95) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9717b983-ce0d-4127-b8ef-eaf6ba42a991)) - (fp_line (start -1.85 0.95) (end -1.85 -0.95) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3105dcda-2d22-44c1-9af8-56e771b22bab)) - (fp_line (start 1.85 -0.95) (end 1.85 0.95) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 29add182-72ed-43a9-8947-af606f5c969e)) - (fp_line (start 1.85 0.95) (end -1.85 0.95) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a517cb7d-6132-40d6-ba0d-74147b927ac9)) - (fp_line (start -1 -0.3) (end -1 0.6) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6b1968e7-a449-4f57-a5c1-4a3469a13532)) - (fp_line (start -1 0.6) (end 1 0.6) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 642ebba1-c5e5-4d47-9f88-2ffaf29f1e62)) - (fp_line (start -0.7 -0.6) (end -1 -0.3) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp de0cac86-fe29-4090-9619-81185afac1bc)) - (fp_line (start 1 -0.6) (end -0.7 -0.6) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c1d92153-29ba-460a-8a87-e68bbb9fbe3c)) - (fp_line (start 1 0.6) (end 1 -0.6) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0c5e09df-cdca-4802-b35b-541b6a7d254d)) - (pad "1" smd roundrect (at -1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) - (net 17 "/UP_DIR") (pinfunction "K") (pintype "passive") (tstamp dca60498-ee07-4305-989a-fa65bcc609f5)) - (pad "2" smd roundrect (at 1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) - (net 2 "GND") (pinfunction "A") (pintype "passive") (tstamp c045728d-82c6-4931-b890-626ca8803498)) - (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_0805_2012Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") - (tstamp e08134a7-3f9b-4294-b8ee-398195b9e9ce) - (at 124.5635 90.678 180) - (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags "resistor handsolder") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Resistor") - (property "ki_keywords" "R res resistor") - (path "/0b8eac93-733e-4d0c-acf8-31efe8dab991") - (attr smd) - (fp_text reference "R8" (at 2.6689 -0.254) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 4037d4a5-8ad4-4aba-b24b-e50a3813fa2e) - ) - (fp_text value "100" (at 0 1.43) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 7168c0b4-e303-44de-af45-75f652b7aa4c) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.06))) - (tstamp 602a1521-1b20-4355-b2c7-d1923eaeab76) - ) - (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5e879427-d4af-4aed-a819-afb10aafc8d8)) - (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 343d6b7b-11a5-4809-9f1d-d0a3d518cf0c)) - (fp_line (start -1.65 -0.73) (end 1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 67224a06-20dd-4f88-8615-1ab50d6b8131)) - (fp_line (start -1.65 0.73) (end -1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a135156a-d93b-4146-80a5-b2dafb05085f)) - (fp_line (start 1.65 -0.73) (end 1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3c65c1ef-a706-4e70-929a-09b2e81c0352)) - (fp_line (start 1.65 0.73) (end -1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e1093ab0-a353-4f60-a979-7b9995963e56)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c3351cbf-39e1-4ddf-a39d-962d1604730d)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 34d348e9-efb0-4dc5-bddc-279e8bd4865e)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8ad59e9e-79de-47e3-9d7e-cd29036e6934)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bdb5aa54-fd2e-46f4-a250-2112893d5b53)) - (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 73 "Net-(J3-Pin_1)") (pintype "passive") (tstamp 6be538c9-0d27-40f2-88d1-031e239af56a)) - (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 47 "/DOWN_BTN") (pintype "passive") (tstamp 818df6e1-d7f1-4493-ad71-2cc85b07631e)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Diode_SMD:D_SMA_Handsoldering" (layer "F.Cu") - (tstamp e6c16a2d-b18b-4f91-ac70-8c7329ae0d98) - (at 133.096 100.624 -90) - (descr "Diode SMA (DO-214AC) Handsoldering") - (tags "Diode SMA (DO-214AC) Handsoldering") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "Sim.Device" "D") - (property "Sim.Pins" "1=K 2=A") - (property "ki_description" "Diode") - (property "ki_keywords" "diode") - (path "/9ef64c98-01b3-44f8-96f0-9e00ac39996f") - (attr smd) - (fp_text reference "D5" (at -5.548 0 -180) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp f3638fb7-3b29-4cea-9b07-991724f71ee1) - ) - (fp_text value "1N4007" (at 0 2.6 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 2fb3d9c6-3128-451d-ab47-1847d22d5fcd) - ) - (fp_text user "${REFERENCE}" (at 0 -2.5 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 7a2beb36-6ed4-4eac-8eb9-94cd88eae63d) - ) - (fp_line (start -4.51 -1.65) (end -4.51 1.65) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5320f751-e2a8-4ebc-a49a-de852b14ec26)) - (fp_line (start -4.51 -1.65) (end 2.5 -1.65) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3410e8b1-82f3-4254-9384-9c1622bec35f)) - (fp_line (start -4.51 1.65) (end 2.5 1.65) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 732ba2e4-f016-4350-bfe8-acd4d74c7dae)) - (fp_line (start -4.5 -1.75) (end 4.5 -1.75) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f6ba8041-c194-42e9-9b66-fc7574f89ea2)) - (fp_line (start -4.5 1.75) (end -4.5 -1.75) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 38282c7f-ef96-44f7-946e-d66b0d2d732d)) - (fp_line (start 4.5 -1.75) (end 4.5 1.75) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f5764ac3-7ff3-4c03-a09f-b5be01be042c)) - (fp_line (start 4.5 1.75) (end -4.5 1.75) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 83676e60-a4ee-4a8a-bea8-08f9b56c6018)) - (fp_line (start -2.3 1.5) (end -2.3 -1.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3a6e106d-8e9e-4769-a52b-420bdc417d4b)) - (fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9d20f13c-06b9-4e70-a954-a24533919a03)) - (fp_line (start -0.64944 0.00102) (end -1.55114 0.00102) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bbb09523-aec1-495a-97d9-1abc835072f0)) - (fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 97a613be-ba72-4872-b4c4-70dc89bdc632)) - (fp_line (start -0.64944 0.00102) (end 0.50118 0.75032) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 40568b92-6558-4a12-a138-ddf8bfc64e24)) - (fp_line (start 0.50118 0.00102) (end 1.4994 0.00102) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6a2efba4-381f-43ea-8b4d-805336f4b176)) - (fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bc7a9378-37a0-4c65-a972-d8538fff4662)) - (fp_line (start 2.3 -1.5) (end -2.3 -1.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ad8b1226-ad60-43bd-925a-e66024a194ba)) - (fp_line (start 2.3 -1.5) (end 2.3 1.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 216dc3b3-040c-4308-8afe-28637978b4e0)) - (fp_line (start 2.3 1.5) (end -2.3 1.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0d7316a6-6ab1-4cc4-b477-c95189fe4b1b)) - (pad "1" smd roundrect (at -2.5 0 270) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1388888889) - (net 15 "Net-(D5-K)") (pinfunction "K") (pintype "passive") (tstamp dcdd7073-62bf-467b-b67f-281b3619cbb4)) - (pad "2" smd roundrect (at 2.5 0 270) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1388888889) - (net 16 "Net-(D5-A)") (pinfunction "A") (pintype "passive") (tstamp 7afd188b-9d39-40d3-b977-bab9b6187a06)) - (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Package_TO_SOT_SMD:SOT-23_Handsoldering" (layer "F.Cu") - (tstamp ea999c4b-9ecd-4644-93c6-22be5605c70c) - (at 110.974 103.378 180) - (descr "SOT-23, Handsoldering") - (tags "SOT-23") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "N-MOSFET transistor, gate/source/drain") - (property "ki_keywords" "transistor NMOS N-MOS N-MOSFET") - (path "/d37fe787-47f0-4d9d-9f4b-15cf491f1582") - (attr smd) - (fp_text reference "Q1" (at 3.659 0.0254) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp fdbbe49d-2305-4ba3-9c6f-bdaa68ede704) - ) - (fp_text value "2N7002" (at 0 2.5) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 9c4470ca-c880-43c3-9969-af12bf97eec7) - ) - (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") - (effects (font (size 0.5 0.5) (thickness 0.075))) - (tstamp c60e070e-ba5b-455e-b8cb-c57a09122434) - ) - (fp_line (start 0.76 -1.58) (end -2.4 -1.58) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c7c9ca72-876c-426e-accf-581ae2aeff9a)) - (fp_line (start 0.76 -1.58) (end 0.76 -0.65) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 446acf94-af0d-4574-852a-d17925cbf2c1)) - (fp_line (start 0.76 1.58) (end -0.7 1.58) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c57b6bf0-d321-4a7d-bcde-75831e35180c)) - (fp_line (start 0.76 1.58) (end 0.76 0.65) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d3eb5694-de5d-44d2-b834-7d202d39dc02)) - (fp_line (start -2.7 -1.75) (end 2.7 -1.75) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f01685f4-a540-45ab-bd6e-802283ca3c72)) - (fp_line (start -2.7 1.75) (end -2.7 -1.75) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3affdf6a-c377-4e0f-8b27-ea89a3af9357)) - (fp_line (start 2.7 -1.75) (end 2.7 1.75) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0ed238f2-7371-4dc6-8668-f99ef64e7038)) - (fp_line (start 2.7 1.75) (end -2.7 1.75) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9d653576-0f90-4eae-9c07-b919d9bac5e5)) - (fp_line (start -0.7 -0.95) (end -0.7 1.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c80c79fa-4a3d-47fd-9656-006dc664c3a1)) - (fp_line (start -0.7 -0.95) (end -0.15 -1.52) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8c05c47b-ec8c-474d-8894-c6ae224d30af)) - (fp_line (start -0.7 1.52) (end 0.7 1.52) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8d05ebbf-b0a8-4454-9b0e-2ff3ed833733)) - (fp_line (start -0.15 -1.52) (end 0.7 -1.52) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b31e3b62-9db5-4f97-9aaf-5e98c152cf3c)) - (fp_line (start 0.7 -1.52) (end 0.7 1.52) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 176b1f8a-8a33-4009-965d-17d5712a44d4)) - (pad "1" smd rect (at -1.5 -0.95 180) (size 1.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask") - (net 37 "Net-(Q1-G)") (pinfunction "G") (pintype "input") (tstamp 7fa5d6af-56b2-4479-9b6c-57d0e5261fbc)) - (pad "2" smd rect (at -1.5 0.95 180) (size 1.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask") - (net 2 "GND") (pinfunction "S") (pintype "passive") (tstamp 702c2a01-1c22-4e21-890d-7610854b6499)) - (pad "3" smd rect (at 1.5 0 180) (size 1.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask") - (net 38 "Net-(Q1-D)") (pinfunction "D") (pintype "passive") (tstamp 196ee089-a6ab-40b1-84a6-7c25f23afdf1)) - (model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") - (tstamp ece4b3cc-9759-4d72-9692-00073e874d8a) - (at 118.9755 72.39 180) - (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags "resistor handsolder") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Resistor") - (property "ki_keywords" "R res resistor") - (path "/541eb5c2-fd4d-4d27-971f-cd8ffab89be3") - (attr smd) - (fp_text reference "R10" (at 0 -1.43) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 59d920aa-e857-4cbd-b338-f73ca7eb60ab) - ) - (fp_text value "6.8" (at 0 1.43) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp a13a1b43-bf00-4c83-935d-4cafb9df2aae) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.06))) - (tstamp b8f57f8f-8d81-4945-9d83-771705acfff4) - ) - (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5576a271-5300-4ef0-a483-1ada9bf060b1)) - (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bf90f6c8-50e4-42e5-bc17-2ce67556572d)) - (fp_line (start -1.65 -0.73) (end 1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b3cab9a9-e529-4e75-bfd7-39b160568c61)) - (fp_line (start -1.65 0.73) (end -1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 79d4d722-7d61-49cd-a252-a52d5e7a3f84)) - (fp_line (start 1.65 -0.73) (end 1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8c004f3e-ff67-4d61-8c42-9474328d1d6d)) - (fp_line (start 1.65 0.73) (end -1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 44610adb-425d-43fa-8bc9-00ee8a059dac)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1cac050a-91db-478e-a33d-d61519694fca)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3ef15666-4870-436e-be06-f517ac2aeeea)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp aaff6c57-088d-4566-9541-8fc503b7812e)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 48dc48b4-3d00-43d9-895e-e918e735a641)) - (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 6 "+3V3") (pintype "passive") (tstamp ca37d4e2-f9ef-423e-b1a8-d506e042cd41)) - (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 33 "Net-(J5-Pin_4)") (pintype "passive") (tstamp 25c59f3a-efab-40bb-adc4-4c95b8d66995)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Diode_SMD:D_SMA_Handsoldering" (layer "F.Cu") - (tstamp f2a1355c-c2e1-487c-9bb5-fed04b32bb9c) - (at 125.008 108.458) - (descr "Diode SMA (DO-214AC) Handsoldering") - (tags "Diode SMA (DO-214AC) Handsoldering") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "Sim.Device" "D") - (property "Sim.Pins" "1=K 2=A") - (property "ki_description" "Diode") - (property "ki_keywords" "diode") - (path "/d6f3faa5-25f0-413e-8caf-dac69327944f") - (attr smd) - (fp_text reference "D4" (at -0.04 2.794) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 2174082a-64d8-42e8-9ca9-ec2e4d96c22b) - ) - (fp_text value "1N4007" (at 0 2.6) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp b2c44177-71fb-48e8-9f44-26cca98976b0) - ) - (fp_text user "${REFERENCE}" (at 0 -2.5) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 5e4be96d-1454-445d-9664-3246f9721819) - ) - (fp_line (start -4.51 -1.65) (end -4.51 1.65) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6a7a530b-3ef8-4aad-aed1-3fb36872cdda)) - (fp_line (start -4.51 -1.65) (end 2.5 -1.65) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 632cec5e-514d-4058-9296-799f56960184)) - (fp_line (start -4.51 1.65) (end 2.5 1.65) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 91ec3504-75fa-432a-93bc-1250bc287941)) - (fp_line (start -4.5 -1.75) (end 4.5 -1.75) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9f37e740-846c-4aa9-92a7-895a161bbb42)) - (fp_line (start -4.5 1.75) (end -4.5 -1.75) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 10b1751f-2b94-4fad-aae9-0d3d63245d24)) - (fp_line (start 4.5 -1.75) (end 4.5 1.75) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0697bcd8-38a1-4adb-ba12-1db70f563686)) - (fp_line (start 4.5 1.75) (end -4.5 1.75) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dd7b8de6-84e0-41b1-8064-bc947f85a631)) - (fp_line (start -2.3 1.5) (end -2.3 -1.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c713c707-7e4b-48de-86e8-ad9dc5be8c96)) - (fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5fcbf856-0ca3-4d2d-8a8b-fff8cda7e844)) - (fp_line (start -0.64944 0.00102) (end -1.55114 0.00102) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 199743d3-13db-43a1-98bc-73a0815e92fa)) - (fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8d5beea4-3f62-4eec-ae66-5d25d233ad81)) - (fp_line (start -0.64944 0.00102) (end 0.50118 0.75032) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5426f0ba-a92f-402e-897f-936e2365ddd6)) - (fp_line (start 0.50118 0.00102) (end 1.4994 0.00102) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 42720cc1-af8f-4eda-a248-df4e382f44a6)) - (fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 30067730-c455-46c2-bd14-93866a42d5a0)) - (fp_line (start 2.3 -1.5) (end -2.3 -1.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 888bae56-f5ce-49ca-9c72-9e903e5c0543)) - (fp_line (start 2.3 -1.5) (end 2.3 1.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f394c77f-84f3-446b-beb8-5cfad6596a51)) - (fp_line (start 2.3 1.5) (end -2.3 1.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 197887bf-c68a-418e-8049-f611899b9a62)) - (pad "1" smd roundrect (at -2.5 0) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1388888889) - (net 13 "Net-(D4-K)") (pinfunction "K") (pintype "passive") (tstamp 8d3cdb6c-e65f-42b0-b460-013d0918fbd3)) - (pad "2" smd roundrect (at 2.5 0) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1388888889) - (net 14 "Net-(D4-A)") (pinfunction "A") (pintype "passive") (tstamp 0a866737-c027-47fc-91f6-551197f6866e)) - (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") - (tstamp f41dfdbf-33d2-4393-b713-04ea6ed94a5f) - (at 124.5108 92.456 180) - (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags "resistor handsolder") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Resistor") - (property "ki_keywords" "R res resistor") - (path "/b7837f1b-646b-4b94-a6fd-cdbb14dac714") - (attr smd) - (fp_text reference "R9" (at 0.0508 -1.4732) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 0cbd33a2-681c-46ce-9860-da1aa1bed2d3) - ) - (fp_text value "100" (at 0 1.43) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp f838bdc9-e8d1-435e-bf90-885200c244aa) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.06))) - (tstamp 3c47a6a4-0d01-4726-8301-340e2bc0e4d5) - ) - (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 69c0d0e0-d3a7-4ac9-b3c9-43c53e055349)) - (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9e979221-4391-461f-a01d-7bc3fa63f292)) - (fp_line (start -1.65 -0.73) (end 1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4061cc36-0db3-4198-860e-035b289af235)) - (fp_line (start -1.65 0.73) (end -1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4a050ab5-abe3-4d40-b5bc-da4631d503d7)) - (fp_line (start 1.65 -0.73) (end 1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2d5d68d6-de74-4aa7-937f-f9721b804919)) - (fp_line (start 1.65 0.73) (end -1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c1ea1c4c-f485-4e6e-a982-05845dbb0aac)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b6854a17-9c78-4ee6-bed0-77320bd6ae40)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp de42e454-a46e-4a7d-be36-f055ca36e576)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1135b6f3-a605-48f3-94fc-624d627b17aa)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cbd6a7c1-19db-485a-b740-e1245bbc0efa)) - (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 28 "Net-(J3-Pin_2)") (pintype "passive") (tstamp 040cd97e-8466-411f-920b-a3a9f1739090)) - (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 46 "/UP_BTN") (pintype "passive") (tstamp 78d26ea3-e781-43bd-97ee-989bed1b9689)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Diode_SMD:D_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu") - (tstamp f58fbca1-5cd9-4c38-95c7-16aa2d5a258a) - (at 128.007 100.838) - (descr "Diode SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") - (tags "diode handsolder") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Schottky diode") - (property "ki_keywords" "diode Schottky") - (path "/784e693a-9161-41a5-8f5d-876789253060") - (attr smd) - (fp_text reference "D7" (at 0.771 1.778 180) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 8e0290e4-1a46-4339-bb10-848e43108ceb) - ) - (fp_text value "MM3Z3V3" (at 0 1.65) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp e0c32cf3-b3db-4735-83f7-9b7001dda57f) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") - (effects (font (size 0.5 0.5) (thickness 0.08))) - (tstamp 68cca3e8-6b1f-4b69-9fbd-88b57e529658) - ) - (fp_line (start -1.86 -0.96) (end -1.86 0.96) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5be958f8-c45a-4a59-8e73-7b4ec2f83bd6)) - (fp_line (start -1.86 0.96) (end 1 0.96) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ab64823b-c820-4077-af50-4c9b07663503)) - (fp_line (start 1 -0.96) (end -1.86 -0.96) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 31733624-6ec5-46da-9236-6e8ab8dea0b4)) - (fp_line (start -1.85 -0.95) (end 1.85 -0.95) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 29b2bbf3-e47d-481a-bf74-34b4c78e426b)) - (fp_line (start -1.85 0.95) (end -1.85 -0.95) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3abcbf61-26e5-4afc-bb80-28968ae08b94)) - (fp_line (start 1.85 -0.95) (end 1.85 0.95) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 15c13894-a4ab-4c4d-81cf-0293e833b044)) - (fp_line (start 1.85 0.95) (end -1.85 0.95) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 29c98261-c225-40c2-a196-56e9a1997960)) - (fp_line (start -1 -0.3) (end -1 0.6) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f0f1da59-0e3f-44cd-a6ff-48da7c8509a2)) - (fp_line (start -1 0.6) (end 1 0.6) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c6a55e9a-de03-4fa9-9874-ac73549d8607)) - (fp_line (start -0.7 -0.6) (end -1 -0.3) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b3c12102-1ef4-47a9-8506-9daf216dc410)) - (fp_line (start 1 -0.6) (end -0.7 -0.6) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fbbc2a04-3a96-4a70-a345-618c67678fc8)) - (fp_line (start 1 0.6) (end 1 -0.6) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3ede0240-b3a7-4605-a9e5-5f35efd7ed9c)) - (pad "1" smd roundrect (at -1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) - (net 18 "/DOWN_DIR") (pinfunction "K") (pintype "passive") (tstamp 32161c52-4af9-4f81-8d9d-958ab6f76a8d)) - (pad "2" smd roundrect (at 1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) - (net 2 "GND") (pinfunction "A") (pintype "passive") (tstamp 23490eef-9423-4703-8125-9dfe99c44d88)) - (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_0805_2012Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") - (tstamp f90578e2-2dcd-406b-bae4-376f5760f382) - (at 113.4383 100.0252 180) - (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags "resistor handsolder") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Resistor") - (property "ki_keywords" "R res resistor") - (path "/374a9243-c0ae-42b3-927b-8a62be5d5888") - (attr smd) - (fp_text reference "R26" (at -3.0969 0 180) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp da210ff0-93c8-46b8-b0e4-df6764ac4abb) - ) - (fp_text value "10k" (at 0 1.43) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp a9972a8b-63c8-4bf9-bff5-c7db0cdac3d9) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.06))) - (tstamp b3958dc8-b301-4e85-9ea8-ae10506ed1c3) - ) - (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9c463f25-8f4c-4556-aa1f-da0f2785f321)) - (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7c28166b-add7-45bb-842b-cbc0d92447ab)) - (fp_line (start -1.65 -0.73) (end 1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 38751642-2b8f-425e-a1da-463a6f7bcdbd)) - (fp_line (start -1.65 0.73) (end -1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e0e69b70-ac11-49c6-b786-170a3ea98eee)) - (fp_line (start 1.65 -0.73) (end 1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b5ca7482-044a-49bc-ac4b-c57b7e9a5419)) - (fp_line (start 1.65 0.73) (end -1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b12d5f39-059c-4714-b3a6-41131223b145)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ac39d1f1-ff05-4dd0-9634-6663b416cceb)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 11759ca7-9f91-4da2-bf5a-c2510c1f2e16)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 097e7fe5-e30a-4b26-ab0c-43e782843a1e)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a7012c51-80ce-43a7-9aaa-ecd9be4258f7)) - (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pintype "passive") (tstamp ee7eea9a-7610-49f3-9307-01dc96901a61)) - (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 49 "/L_UP") (pintype "passive") (tstamp 2ff9b65c-ac6d-482d-b1ec-ca682f7b9dc6)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") - (tstamp fbb21119-1c5f-4ca0-bd04-933d3213be68) - (at 123.825 79.0702 180) - (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags "resistor handsolder") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Resistor") - (property "ki_keywords" "R res resistor") - (path "/ccb227fc-0db8-4f37-b5a8-8442ea74cce2") - (attr smd) - (fp_text reference "R5" (at 2.667 0.0254) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 83910396-d215-489f-9cfb-ff5971fce9b4) - ) - (fp_text value "100" (at 0 1.43) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 161c7ebb-6968-4979-8de9-10ee6cfe5163) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.06))) - (tstamp ee87ef5d-85a2-4c4b-bedb-3838abf35a12) - ) - (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4ee44b6c-c053-4e4b-8eaf-5f72772bab5f)) - (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3015bc52-c0aa-4a0e-af06-ff69d4ec87da)) - (fp_line (start -1.65 -0.73) (end 1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6429d4e9-be46-43b2-bbc0-f3a0f2fd825b)) - (fp_line (start -1.65 0.73) (end -1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fa0e1dfe-47b5-4f55-b2ed-da3cc17526ae)) - (fp_line (start 1.65 -0.73) (end 1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 54f1066d-2b2d-4a16-9a07-c9c1b89b8d3c)) - (fp_line (start 1.65 0.73) (end -1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5446568e-6d51-4d92-92b8-bd6789eaf3fa)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp aa045282-84d9-4831-91a9-854bbd7563db)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1861206f-4002-429e-b35b-57ae93ff8bcc)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0643f0ca-d16f-4a5e-9552-a35850bad81a)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bef3470a-0f91-48e5-a0b5-6ec0deadff6c)) - (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 27 "Net-(J2-Pin_3)") (pintype "passive") (tstamp d1124216-eb94-412b-89f6-7b954b8f83f2)) - (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 45 "/DOWN_SW") (pintype "passive") (tstamp 7509024d-5879-4354-8855-b512ff42fe98)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") - (tstamp fc666206-f03a-48dd-9e57-0fe994f5fc29) - (at 99.9755 90.424) - (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags "capacitor handsolder") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Unpolarized capacitor") - (property "ki_keywords" "cap capacitor") - (path "/bd219d37-90db-48ca-aa0e-ba528aa27662") - (attr smd) - (fp_text reference "C10" (at 0 1.524) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 5b03eb2d-9fdb-4816-839e-1f37a7898922) - ) - (fp_text value "6" (at 0 1.43) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 0e0eb1a4-f973-4cd8-a2b9-6b75e67e3ac5) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.06))) - (tstamp 435f7fd8-74ac-4dc6-b754-434cb04774b5) - ) - (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c1f3caf5-d681-41a8-8ec0-68ab2c14fa1c)) - (fp_line (start -0.146267 0.51) (end 0.146267 0.51) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e2c685aa-e764-4f19-9761-76969de7b6b6)) - (fp_line (start -1.65 -0.73) (end 1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8409a31c-c76a-475b-bfe6-76168d11a96e)) - (fp_line (start -1.65 0.73) (end -1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 00adf82c-e2da-464f-a96d-ed0d95b7b4e3)) - (fp_line (start 1.65 -0.73) (end 1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a42454d1-e51d-4141-9313-a93fc101f040)) - (fp_line (start 1.65 0.73) (end -1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 729aaca2-8f98-4faa-9189-dbe4efcabdaf)) - (fp_line (start -0.8 -0.4) (end 0.8 -0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a45e5bea-04b6-4110-a4a6-e72d5968a421)) - (fp_line (start -0.8 0.4) (end -0.8 -0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f952dd05-0ea2-43ee-bf70-2e6a050bd33a)) - (fp_line (start 0.8 -0.4) (end 0.8 0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0a304025-4142-4dad-b4f6-0f5ca2ba4635)) - (fp_line (start 0.8 0.4) (end -0.8 0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d8d78140-1f84-411b-af43-633933efabc6)) - (pad "1" smd roundrect (at -0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 9 "/OSC_OUT") (pintype "passive") (tstamp 4da47c50-e90b-401f-b945-f609a8b5a0d9)) - (pad "2" smd roundrect (at 0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pintype "passive") (tstamp fd5f001b-7347-4867-a54b-b90e365333c3)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") - (tstamp fe2a72b7-0142-4ed1-a700-fd6b3687cabf) - (at 85.852 83.6665 -90) - (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags "capacitor handsolder") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Unpolarized capacitor") - (property "ki_keywords" "cap capacitor") - (path "/c64d8549-8fae-4510-88f8-d4e10f074e1e") - (attr smd) - (fp_text reference "C1" (at -2.4395 0) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp d8822967-68d2-4b3a-99bf-d41d526bd239) - ) - (fp_text value "0.1" (at 0 1.43 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 360de1c4-8bdb-47d0-84d7-78fddf080f80) - ) - (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.06))) - (tstamp 275eb5dc-70b9-455e-9ea0-e72a9bacc22d) - ) - (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d39689f4-d8d4-485b-a398-86f5dd711960)) - (fp_line (start -0.146267 0.51) (end 0.146267 0.51) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp faa80171-2a48-4770-923d-16827b62c0ff)) - (fp_line (start -1.65 -0.73) (end 1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 20a8a454-3ffd-462a-9740-acac90696af3)) - (fp_line (start -1.65 0.73) (end -1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 784b77c3-6fc7-4895-9db8-74b120334b09)) - (fp_line (start 1.65 -0.73) (end 1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 370d4f63-8ac9-413b-a5f9-a721b98dcfd8)) - (fp_line (start 1.65 0.73) (end -1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 99126429-e76b-4695-8046-a9fedbee37b6)) - (fp_line (start -0.8 -0.4) (end 0.8 -0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3721f4c5-6385-4159-8579-7f512a75dfca)) - (fp_line (start -0.8 0.4) (end -0.8 -0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d30cefa9-4c9a-4846-a8e2-ba44c66b17b3)) - (fp_line (start 0.8 -0.4) (end 0.8 0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 57bf04df-d037-4fe1-8c54-8ddf6c562c09)) - (fp_line (start 0.8 0.4) (end -0.8 0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 87a6cda8-3a41-48fe-a80d-1cd617a85cca)) - (pad "1" smd roundrect (at -0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 1 "+5V") (pintype "passive") (tstamp 39d55332-243c-4a39-8f49-384cc12b1772)) - (pad "2" smd roundrect (at 0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pintype "passive") (tstamp f9aba4df-5683-4d08-a48a-3e4e515151ba)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") - (tstamp ffe9868c-2fae-4fa6-be55-b9cbe593c4ec) - (at 122.682 104.0365 -90) - (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags "resistor handsolder") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Resistor") - (property "ki_keywords" "R res resistor") - (path "/c48298ba-cdec-44fb-840d-4ba4dc791caa") - (attr smd) - (fp_text reference "R12" (at -0.9125 2.286 -180) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 9522e801-55c7-41c1-b8e1-cd2005a80efe) - ) - (fp_text value "1k" (at 0 1.43 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 77ac7e49-a7ae-402b-948f-71ff95779842) - ) - (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.06))) - (tstamp 7da1489e-6bcf-4231-a6af-a53d764140a9) - ) - (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fc9aec77-e95a-4338-9983-c4be559d8288)) - (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6e5cc172-aeb4-4112-b479-c9acce711bed)) - (fp_line (start -1.65 -0.73) (end 1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2dc33d1c-7abe-4493-9f66-6ea6b7e5fa4a)) - (fp_line (start -1.65 0.73) (end -1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6070c2f4-82f7-43d3-bb97-216f2ba7b351)) - (fp_line (start 1.65 -0.73) (end 1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4654fc7f-89a7-4f3f-9613-afaf13a57bab)) - (fp_line (start 1.65 0.73) (end -1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 663e3140-fded-46e2-b088-b1568e850928)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3cbf4a8d-66e3-41ab-b7d7-c8619ccd5f38)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7890a2f6-7e03-4812-99f8-ad764e77ac3b)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 63c4cb29-1955-4019-9eab-ad0672a19d2f)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9813282e-1576-40e2-893e-85b1644d9609)) - (pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 17 "/UP_DIR") (pintype "passive") (tstamp 75c31298-62c0-4ec8-99ad-6fba316bfbdd)) - (pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 13 "Net-(D4-K)") (pintype "passive") (tstamp 2cd59025-52fa-453a-9523-039909329ec5)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Package_TO_SOT_SMD:TO-252-3_TabPin2" (layer "B.Cu") - (tstamp 03124b7b-1f65-4832-98b3-91efeefad60c) - (at 124.347 101.093 180) - (descr "TO-252/DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-3-1/") - (tags "DPAK TO-252 DPAK-3 TO-252-3 SOT-428") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "N-MOSFET transistor, gate/drain/source") - (property "ki_keywords" "transistor NMOS N-MOS N-MOSFET") - (path "/55d5a1fe-3dfc-404d-b0d7-7bd71fa205b5") - (attr smd) - (fp_text reference "Q3" (at 0 4.5) (layer "B.SilkS") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp affdc861-afde-4673-95b6-e28268cef6ff) - ) - (fp_text value "IRLR7807" (at 0 -4.5) (layer "B.Fab") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp 9c3146e5-d7ff-4ac7-9f28-4d07b5bf9d6c) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp 5a41c305-65db-4139-bee2-65971168cd1a) - ) - (fp_line (start -3.31 -3.45) (end -3.31 -3.18) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp edc3c5a0-37f6-4d47-b433-281a218298da)) - (fp_line (start -3.31 -3.18) (end -4.41 -3.18) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 34109bc3-9dda-4248-9cd1-375edc229a72)) - (fp_line (start -3.31 3.18) (end -6.14 3.18) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 64f24b4a-aaa4-4454-96b8-ba02eacc6f7d)) - (fp_line (start -3.31 3.45) (end -3.31 3.18) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp d7ff207d-21a3-4a92-a081-1def4190c742)) - (fp_line (start 3.11 -3.45) (end -3.31 -3.45) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 249ac40a-2d15-4bc7-8841-3c29487a5585)) - (fp_line (start 3.11 3.45) (end -3.31 3.45) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp d1fd9be3-4e6b-4b7b-a1dc-2843b91ebd92)) - (fp_line (start -6.39 -3.5) (end 4.71 -3.5) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp d32f97c1-7ba1-4ea1-8587-bf580bddc1a6)) - (fp_line (start -6.39 3.5) (end -6.39 -3.5) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp d8dc909d-c845-47a9-b290-100a4f01b4df)) - (fp_line (start 4.71 -3.5) (end 4.71 3.5) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp c89b30c1-dbf6-4c3c-8d66-b0518808437e)) - (fp_line (start 4.71 3.5) (end -6.39 3.5) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp f858b574-1244-42e2-ae01-7a3257b09cc7)) - (fp_line (start -5.81 -2.655) (end -3.11 -2.655) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 72757ca8-9230-4a3d-85f6-1a7917f18b02)) - (fp_line (start -5.81 -1.905) (end -5.81 -2.655) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp eb55feef-faa4-4838-9d24-74a91fc5a0f7)) - (fp_line (start -5.81 -0.375) (end -3.11 -0.375) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp e6b612e9-faf7-4359-a612-92580339a8e7)) - (fp_line (start -5.81 0.375) (end -5.81 -0.375) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp b946ec6b-4b0c-4f83-b124-ea62d05bbb59)) - (fp_line (start -5.81 1.905) (end -3.11 1.905) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 28ff204f-fa16-48b7-a694-378e1c33a505)) - (fp_line (start -5.81 2.655) (end -5.81 1.905) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp b88596a8-0bab-4933-934c-fb87155bb269)) - (fp_line (start -3.11 -3.25) (end -3.11 2.25) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp d4ba904e-be2e-44aa-8d13-f2ca6855f8ec)) - (fp_line (start -3.11 -1.905) (end -5.81 -1.905) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 6db9b305-f488-45bb-8a06-14631f06a91d)) - (fp_line (start -3.11 0.375) (end -5.81 0.375) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp bc437a74-2fbe-4009-a34c-4ab761dc081c)) - (fp_line (start -3.11 2.25) (end -2.11 3.25) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 2a2690bb-0482-4134-b482-5a8d59cd34a7)) - (fp_line (start -2.705 2.655) (end -5.81 2.655) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp f69fa7ed-ca99-441a-b4de-ac8385bf9a43)) - (fp_line (start -2.11 3.25) (end 3.11 3.25) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp e4135adf-6e45-4a01-a18c-a62627c20a9d)) - (fp_line (start 3.11 -3.25) (end -3.11 -3.25) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 2575b431-42c0-4f9e-b525-bd72a8d82e0a)) - (fp_line (start 3.11 2.7) (end 4.11 2.7) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 93c3eb30-c110-4676-818d-04194afd3411)) - (fp_line (start 3.11 3.25) (end 3.11 -3.25) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp abc75527-b2e8-406e-b02e-1451ccca974d)) - (fp_line (start 4.11 -2.7) (end 3.11 -2.7) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 9a2b0ccf-5831-4865-8538-4cbb3c14425b)) - (fp_line (start 4.11 2.7) (end 4.11 -2.7) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 56a8628f-4324-42bb-ab81-f493f0e0b7a3)) - (pad "1" smd roundrect (at -5.04 2.28 180) (size 2.2 1.2) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.208333) - (net 40 "Net-(Q3-G)") (pinfunction "G") (pintype "input") (tstamp e2c7da54-eb4f-456c-bf77-47ebf58abea7)) - (pad "2" smd roundrect (at -5.04 0 180) (size 2.2 1.2) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.208333) - (net 20 "Net-(D10-A)") (pinfunction "D") (pintype "passive") (tstamp 2dc5f8ad-1e2e-44fb-a6e7-0034a3a4094c)) - (pad "2" smd roundrect (at -0.415 -1.525 180) (size 3.05 2.75) (layers "B.Cu" "B.Paste") (roundrect_rratio 0.090909) - (net 20 "Net-(D10-A)") (pinfunction "D") (pintype "passive") (tstamp b3796216-eaf8-44fa-a01e-9787de9df7a8)) - (pad "2" smd roundrect (at -0.415 1.525 180) (size 3.05 2.75) (layers "B.Cu" "B.Paste") (roundrect_rratio 0.090909) - (net 20 "Net-(D10-A)") (pinfunction "D") (pintype "passive") (tstamp c1783541-bbd2-47b6-a887-e423315b4178)) - (pad "2" smd roundrect (at 1.26 0 180) (size 6.4 5.8) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.043103) - (net 20 "Net-(D10-A)") (pinfunction "D") (pintype "passive") (tstamp fae82871-c27f-406c-b862-abd08b64978b)) - (pad "2" smd roundrect (at 2.935 -1.525 180) (size 3.05 2.75) (layers "B.Cu" "B.Paste") (roundrect_rratio 0.090909) - (net 20 "Net-(D10-A)") (pinfunction "D") (pintype "passive") (tstamp b9f089ba-3f54-4d82-827a-7f2d7cc344d4)) - (pad "2" smd roundrect (at 2.935 1.525 180) (size 3.05 2.75) (layers "B.Cu" "B.Paste") (roundrect_rratio 0.090909) - (net 20 "Net-(D10-A)") (pinfunction "D") (pintype "passive") (tstamp 1cc939b4-7982-4368-9fe1-d9256616a6c2)) - (pad "3" smd roundrect (at -5.04 -2.28 180) (size 2.2 1.2) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.208333) - (net 2 "GND") (pinfunction "S") (pintype "passive") (tstamp 8ad185ba-5a84-48ec-ab2c-4b8dfa1cfe64)) - (model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/TO-252-3_TabPin2.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Diode_SMD:D_SMA_Handsoldering" (layer "B.Cu") - (tstamp 1d8090e7-7690-48ba-b12b-a8ba9651312b) - (at 128.524 117.388 90) - (descr "Diode SMA (DO-214AC) Handsoldering") - (tags "Diode SMA (DO-214AC) Handsoldering") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "Sim.Device" "D") - (property "Sim.Pins" "1=K 2=A") - (property "ki_description" "Diode") - (property "ki_keywords" "diode") - (path "/8fc53933-c71d-4315-80b3-e885bef37c3a") - (attr smd) - (fp_text reference "D10" (at -5.294 0.254) (layer "B.SilkS") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp 0d098d7e-a8a3-4758-ac97-ce7c4786bba9) - ) - (fp_text value "1N4007" (at 0 -2.6 90) (layer "B.Fab") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp 57e77e95-6ecc-4351-8fdb-25df0b017100) - ) - (fp_text user "${REFERENCE}" (at 0 2.5 90) (layer "B.Fab") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp 5c5ab4c6-3934-4113-8c03-beedf1374407) - ) - (fp_line (start -4.51 -1.65) (end 2.5 -1.65) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp e108047b-175b-42af-800d-4ab78e5848b2)) - (fp_line (start -4.51 1.65) (end -4.51 -1.65) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 0fd9172c-2b03-4366-896c-5371b266c382)) - (fp_line (start -4.51 1.65) (end 2.5 1.65) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 78a7004c-8b30-44a8-beab-12fd0fa0b8d2)) - (fp_line (start -4.5 -1.75) (end -4.5 1.75) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp b9569e86-e773-4490-8bd9-59ab1f9b8c0a)) - (fp_line (start -4.5 1.75) (end 4.5 1.75) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp cb0a37e3-6597-4572-9f52-0c76fafb2c48)) - (fp_line (start 4.5 -1.75) (end -4.5 -1.75) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 73f52ed5-e498-4b91-b08b-1ae0e6cb2de8)) - (fp_line (start 4.5 1.75) (end 4.5 -1.75) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 6b7c5bfc-4bf1-4f67-8d91-edb4e9f3401d)) - (fp_line (start -2.3 -1.5) (end -2.3 1.5) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp f71fab07-0e6a-4fae-bbf5-9ff290b75576)) - (fp_line (start -0.64944 -0.00102) (end -1.55114 -0.00102) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 10d4f948-8576-4607-b743-c91c8c0099ee)) - (fp_line (start -0.64944 -0.00102) (end 0.50118 -0.75032) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp be52a813-a286-4826-80e6-b04629f60a75)) - (fp_line (start -0.64944 -0.00102) (end 0.50118 0.79908) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 9403e188-a8ae-4e1e-97f1-021fa65a9bfd)) - (fp_line (start -0.64944 0.79908) (end -0.64944 -0.80112) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 19cd9e7e-18a6-446e-9b67-babfc9bb45a7)) - (fp_line (start 0.50118 -0.75032) (end 0.50118 0.79908) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp db783e2a-477f-45f7-8740-e34ea07bba01)) - (fp_line (start 0.50118 -0.00102) (end 1.4994 -0.00102) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp adc29691-b7bf-4804-9df9-e6a2ab4ee9a6)) - (fp_line (start 2.3 -1.5) (end -2.3 -1.5) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp ee933cb5-7394-488d-89b2-5f24dbd815cf)) - (fp_line (start 2.3 1.5) (end -2.3 1.5) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 89217477-e992-4c6b-aa94-913d14ade8e8)) - (fp_line (start 2.3 1.5) (end 2.3 -1.5) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 1bdde0e0-64c7-43c0-ad3f-40b03f1ecdc7)) - (pad "1" smd roundrect (at -2.5 0 90) (size 3.5 1.8) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.1388888889) - (net 3 "+12V") (pinfunction "K") (pintype "passive") (tstamp 50de6289-d5e9-4fee-b3d3-d2cd1173593e)) - (pad "2" smd roundrect (at 2.5 0 90) (size 3.5 1.8) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.1388888889) - (net 20 "Net-(D10-A)") (pinfunction "A") (pintype "passive") (tstamp cb51c34b-d457-440f-baf2-ee32aa76eb3e)) - (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "B.Cu") - (tstamp 24e6a0c4-ccc1-47f0-946d-02cc2370fdeb) - (at 128.4205 96.52) - (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags "resistor handsolder") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Resistor") - (property "ki_keywords" "R res resistor") - (path "/81a2ee18-ba8a-4f75-adab-378149aa102d") - (attr smd) - (fp_text reference "R18" (at 3.1515 0) (layer "B.SilkS") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp 0f338b9b-0815-4c08-b466-712b9d1500a1) - ) - (fp_text value "220" (at 0 -1.43) (layer "B.Fab") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp b2f44335-e05e-4338-b56f-c6921c9ace56) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab") - (effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror)) - (tstamp 76539acb-ffe3-46a8-b6e4-5b2b96831e10) - ) - (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp dadadb17-a7c0-4a0e-87f3-e413f880f9f1)) - (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp b2cba047-24fb-4960-8cbb-a3a98bea07c7)) - (fp_line (start -1.65 -0.73) (end -1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 8fc4e67e-81c5-42af-b1f1-9d79de943c93)) - (fp_line (start -1.65 0.73) (end 1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 96c84502-8628-4cb9-be46-bd000003ac40)) - (fp_line (start 1.65 -0.73) (end -1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp d52a74df-df60-4679-8397-bcde933dde2b)) - (fp_line (start 1.65 0.73) (end 1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 51cfdc0b-2403-4c45-afb9-4d791920c7c9)) - (fp_line (start -0.8 -0.4125) (end -0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp b735fc0e-4d90-4fae-969b-0ed0ba759eee)) - (fp_line (start -0.8 0.4125) (end 0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 1bbb6908-84bb-4bd9-ac91-10c511d99ecc)) - (fp_line (start 0.8 -0.4125) (end -0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 4ea826f7-3f4c-47c2-b76d-8018f85c79a9)) - (fp_line (start 0.8 0.4125) (end 0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp b92405f7-1cda-4afa-8861-83380da118f9)) - (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) - (net 50 "/L_DOWN") (pintype "passive") (tstamp 65edb45a-5450-4cf0-879d-2bc9fd501c0d)) - (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) - (net 40 "Net-(Q3-G)") (pintype "passive") (tstamp 97d22146-6773-4b0d-8989-21b544d0d751)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Diode_SMD:D_SMA_Handsoldering" (layer "B.Cu") - (tstamp 296b4248-fa14-4c52-be90-7316645a3226) - (at 132.334 117.388 -90) - (descr "Diode SMA (DO-214AC) Handsoldering") - (tags "Diode SMA (DO-214AC) Handsoldering") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "Sim.Device" "D") - (property "Sim.Pins" "1=K 2=A") - (property "ki_description" "Diode") - (property "ki_keywords" "diode") - (path "/24d6f82c-2e62-4d47-9d97-379df441a496") - (attr smd) - (fp_text reference "D9" (at 5.374 0) (layer "B.SilkS") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp daf741a4-2c42-4cb1-9317-0778fce43cdf) - ) - (fp_text value "1N4007" (at 0 -2.6 90) (layer "B.Fab") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp f93966d6-fa5c-4eb1-a55a-697fc00437f1) - ) - (fp_text user "${REFERENCE}" (at 0 2.5 90) (layer "B.Fab") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp 09394d45-14d5-4150-9954-dfb0a051aa72) - ) - (fp_line (start -4.51 -1.65) (end 2.5 -1.65) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 1c31ee06-d99c-4e17-9caf-e8532b97886b)) - (fp_line (start -4.51 1.65) (end -4.51 -1.65) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 93de5584-fc54-4db5-a52f-229a66e525ac)) - (fp_line (start -4.51 1.65) (end 2.5 1.65) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 1a6e4eb7-bb1e-44b2-8785-15608ee139c2)) - (fp_line (start -4.5 -1.75) (end -4.5 1.75) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 55f2d9ed-a2d2-4242-a98d-897a70513c22)) - (fp_line (start -4.5 1.75) (end 4.5 1.75) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 30f43ab2-f72e-4231-a5b1-c81b5f7bfd73)) - (fp_line (start 4.5 -1.75) (end -4.5 -1.75) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 05523ad8-9d23-418b-9bea-86a9a0cfa765)) - (fp_line (start 4.5 1.75) (end 4.5 -1.75) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 6f383d03-1827-42cd-b086-ceba5d3980cd)) - (fp_line (start -2.3 -1.5) (end -2.3 1.5) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp f9e52390-a7f2-42b6-955e-237aa78c9470)) - (fp_line (start -0.64944 -0.00102) (end -1.55114 -0.00102) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 508a2843-d141-405b-9832-703b1288c068)) - (fp_line (start -0.64944 -0.00102) (end 0.50118 -0.75032) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 9cbf9344-8d4d-4779-8fc7-7d92182068d4)) - (fp_line (start -0.64944 -0.00102) (end 0.50118 0.79908) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp a6ae142d-267a-4c5e-83e8-f32f9ed33543)) - (fp_line (start -0.64944 0.79908) (end -0.64944 -0.80112) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp b2b768c9-d4ef-4ff8-bc4f-57bd12982f27)) - (fp_line (start 0.50118 -0.75032) (end 0.50118 0.79908) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 5d518055-a9f0-4512-8834-d0e0d5f86684)) - (fp_line (start 0.50118 -0.00102) (end 1.4994 -0.00102) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 227aa3a4-338a-4cab-b2ab-284ec6406e01)) - (fp_line (start 2.3 -1.5) (end -2.3 -1.5) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp b510e6f0-1f36-48f5-89cc-6833d77f8af3)) - (fp_line (start 2.3 1.5) (end -2.3 1.5) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 743f43b1-94ca-4676-a3b3-1d29f927ed5b)) - (fp_line (start 2.3 1.5) (end 2.3 -1.5) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 78b4d3f1-208f-48c1-8f2c-d30a827c208e)) - (pad "1" smd roundrect (at -2.5 0 270) (size 3.5 1.8) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.1388888889) - (net 20 "Net-(D10-A)") (pinfunction "K") (pintype "passive") (tstamp ee6a37bc-e9b3-4fbd-82b6-3818e8893594)) - (pad "2" smd roundrect (at 2.5 0 270) (size 3.5 1.8) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.1388888889) - (net 2 "GND") (pinfunction "A") (pintype "passive") (tstamp 85c2f3f9-3653-4950-afbc-ef3ea8eb1db6)) - (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Diode_SMD:D_SMB_Handsoldering" (layer "B.Cu") - (tstamp 31a6ad44-a1fd-4509-bbb7-c5d62ccf9813) - (at 76.454 91.0844 90) - (descr "Diode SMB (DO-214AA) Handsoldering") - (tags "Diode SMB (DO-214AA) Handsoldering") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "Sim.Device" "D") - (property "Sim.Pins" "1=K 2=A") - (property "ki_description" "Diode") - (property "ki_keywords" "diode") - (path "/bf41fd65-da7d-431e-bc2d-c9c40b1e8eba") - (attr smd) - (fp_text reference "D3" (at 5.6896 -0.0254 180) (layer "B.SilkS") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp 2c31b866-01e0-427a-a37b-a2c4d6baa7e1) - ) - (fp_text value "SMBJ18A" (at 0 -3 90) (layer "B.Fab") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp 8cb1fa5f-6b5b-40ee-989b-0eb7a3ccfd58) - ) - (fp_text user "${REFERENCE}" (at 0 3 90) (layer "B.Fab") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp 65ab77d9-5f00-4ca4-8cbd-b52f3f8b0f90) - ) - (fp_line (start -4.71 -2.15) (end 2.7 -2.15) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp fa698182-3f3a-4d78-8d06-ec8047bfbd1b)) - (fp_line (start -4.71 2.15) (end -4.71 -2.15) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp d8030202-8773-4eed-8a63-41f9b434eb5a)) - (fp_line (start -4.71 2.15) (end 2.7 2.15) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 9fd81268-36d0-47a5-b40a-4e353e0baf8d)) - (fp_line (start -4.7 -2.25) (end -4.7 2.25) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp ee02985c-e070-4090-9f61-744848ac4297)) - (fp_line (start -4.7 2.25) (end 4.7 2.25) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 58789616-e777-404c-bbf3-56abe036f89c)) - (fp_line (start 4.7 -2.25) (end -4.7 -2.25) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp f8b2058e-d55e-4b24-9dc4-9615018d1d94)) - (fp_line (start 4.7 2.25) (end 4.7 -2.25) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 61de9c99-8c98-4f86-b3f4-c2f448cdf574)) - (fp_line (start -2.3 -2) (end -2.3 2) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 72426bc4-514a-4e0b-b89b-dcf695c83f81)) - (fp_line (start -0.64944 -0.00102) (end -1.55114 -0.00102) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 977e065c-8277-4ec9-9ee7-1ca76bfc349d)) - (fp_line (start -0.64944 -0.00102) (end 0.50118 -0.75032) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp b18997de-8a4d-400e-81b7-5e10d15fee45)) - (fp_line (start -0.64944 -0.00102) (end 0.50118 0.79908) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp a31eb5d9-6305-494d-a248-444b652dcc83)) - (fp_line (start -0.64944 0.79908) (end -0.64944 -0.80112) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp c5b05680-5209-4e18-bb60-b503a395ca77)) - (fp_line (start 0.50118 -0.75032) (end 0.50118 0.79908) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 1bae047c-1a7a-4506-a451-d5ded2201cb1)) - (fp_line (start 0.50118 -0.00102) (end 1.4994 -0.00102) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 1e1cc799-45b1-4004-984d-a7af743fd393)) - (fp_line (start 2.3 -2) (end -2.3 -2) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp db8ea9d9-e5cd-43fd-84d8-fa058e5b8942)) - (fp_line (start 2.3 2) (end -2.3 2) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 57109c2a-8cc6-418b-94b0-d4698f63dcd1)) - (fp_line (start 2.3 2) (end 2.3 -2) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 68b04405-c829-4139-a8f7-626bad82b810)) - (pad "1" smd roundrect (at -2.7 0 90) (size 3.5 2.3) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.1086956522) - (net 3 "+12V") (pinfunction "K") (pintype "passive") (tstamp 1df467e1-10f4-4281-a4bf-fa6441878963)) - (pad "2" smd roundrect (at 2.7 0 90) (size 3.5 2.3) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.1086956522) - (net 2 "GND") (pinfunction "A") (pintype "passive") (tstamp 0bc41eb4-53d3-4f78-996b-75757220ed94)) - (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMB.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "B.Cu") - (tstamp 341311d2-7559-4059-9ff2-87bc82b334c9) - (at 114.0714 113.9679 -90) - (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags "resistor handsolder") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Resistor") - (property "ki_keywords" "R res resistor") - (path "/ebbc8d8c-bb01-4d32-b42b-7af07ae969d2") - (attr smd) - (fp_text reference "R22" (at 2.4365 -0.508 -180) (layer "B.SilkS") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp ebf84d48-b858-4e30-be3a-7e17136afb42) - ) - (fp_text value "10k" (at 0 -1.43 90) (layer "B.Fab") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp 86bddcaf-774c-4087-b3a0-b0040a1f559b) - ) - (fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab") - (effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror)) - (tstamp 4bd83a01-517b-41f0-b19d-d2ae576ae305) - ) - (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 7b8c1061-cbe7-4b48-ad36-f140363e1985)) - (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 7d0482f0-9732-4920-8580-34bb62aa15cd)) - (fp_line (start -1.65 -0.73) (end -1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 9ff8f524-d056-4867-867f-61f4885f1ea9)) - (fp_line (start -1.65 0.73) (end 1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 6bb29434-aa44-4955-bdd3-222fc0fa166a)) - (fp_line (start 1.65 -0.73) (end -1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 5d6677a9-b2be-4ec4-af41-e7f047329ec3)) - (fp_line (start 1.65 0.73) (end 1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp e837b8a8-96ea-48a6-807d-89e377d5dff4)) - (fp_line (start -0.8 -0.4125) (end -0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp ec34e1bb-b25a-4350-afa7-bcafaf38c7b1)) - (fp_line (start -0.8 0.4125) (end 0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 33f1587a-bb94-40f9-8a91-c3b70735b9dc)) - (fp_line (start 0.8 -0.4125) (end -0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp f0d500bd-78c0-400f-93a3-5ffa79f48bca)) - (fp_line (start 0.8 0.4125) (end 0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp ecd504ad-c953-4952-972b-992b12485aad)) - (pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) - (net 51 "/R_DOWN") (pintype "passive") (tstamp 5013ebbc-492c-4b92-b2ba-e4b014393a06)) - (pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pintype "passive") (tstamp 54d73a67-e10d-477d-900b-18d2b752e425)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Package_TO_SOT_SMD:TO-252-3_TabPin2" (layer "B.Cu") - (tstamp 40f732a0-813f-4dbe-ac39-0ff2c608ff2d) - (at 104.789 113.793 180) - (descr "TO-252/DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-3-1/") - (tags "DPAK TO-252 DPAK-3 TO-252-3 SOT-428") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "N-MOSFET transistor, gate/drain/source") - (property "ki_keywords" "transistor NMOS N-MOS N-MOSFET") - (path "/fad7fe14-e161-4c9f-93fd-7ab778ec54e8") - (attr smd) - (fp_text reference "Q5" (at 0.395 -4.3678) (layer "B.SilkS") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp bad9cf5e-2b79-4157-b028-84bda7af51a7) - ) - (fp_text value "IRLR7807" (at 0 -4.5) (layer "B.Fab") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp 634fa13c-5dce-4bb0-a377-8d38d008c87b) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp f7699708-fa81-4a5b-a1e6-e47bbaf79145) - ) - (fp_line (start -3.31 -3.45) (end -3.31 -3.18) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 16293a83-2668-404c-b1d0-126cdfe45faa)) - (fp_line (start -3.31 -3.18) (end -4.41 -3.18) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp da5b71cd-6dea-4e6e-a98b-f89bb3ce3009)) - (fp_line (start -3.31 3.18) (end -6.14 3.18) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp e8626f15-e65c-4c2f-8dee-8a53c4f72885)) - (fp_line (start -3.31 3.45) (end -3.31 3.18) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp fb3b717b-a035-41a3-83fe-f8ee51dc4b3c)) - (fp_line (start 3.11 -3.45) (end -3.31 -3.45) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp be623913-dddd-48b3-8bc0-4f7539579099)) - (fp_line (start 3.11 3.45) (end -3.31 3.45) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp dab103e9-fde0-46ba-9c78-bd3f98e6ba04)) - (fp_line (start -6.39 -3.5) (end 4.71 -3.5) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 42261cfd-7aac-4d8e-a8cb-4df7d598ac8e)) - (fp_line (start -6.39 3.5) (end -6.39 -3.5) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp fa5f0cbf-3e5c-4545-bde3-efc4f28efe07)) - (fp_line (start 4.71 -3.5) (end 4.71 3.5) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 51d63318-9a92-4eb0-857f-d4fb643f8e13)) - (fp_line (start 4.71 3.5) (end -6.39 3.5) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 81e673db-58e7-4e29-8eca-fee0b9f53d98)) - (fp_line (start -5.81 -2.655) (end -3.11 -2.655) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 3b6a3b0f-39e8-47d0-b650-60f8813698d3)) - (fp_line (start -5.81 -1.905) (end -5.81 -2.655) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp b13ff947-a012-46d0-9099-cd88002bc210)) - (fp_line (start -5.81 -0.375) (end -3.11 -0.375) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 1ca7b804-09c3-4f7d-ae5d-80df257c454a)) - (fp_line (start -5.81 0.375) (end -5.81 -0.375) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp ccad40ae-f882-4599-8ce3-801976020955)) - (fp_line (start -5.81 1.905) (end -3.11 1.905) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 78bc231d-e32c-4884-9b99-4d1ad3ff192d)) - (fp_line (start -5.81 2.655) (end -5.81 1.905) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 1db9b767-6ae7-45ee-a628-c6dd78436006)) - (fp_line (start -3.11 -3.25) (end -3.11 2.25) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 546e73fe-a8fe-4e8e-be14-b79e603f6f29)) - (fp_line (start -3.11 -1.905) (end -5.81 -1.905) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp f2250529-9cee-46d8-b549-7ca51dfab2cb)) - (fp_line (start -3.11 0.375) (end -5.81 0.375) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 2bdbd88b-5e06-47c4-9e3d-be0753c0f0e6)) - (fp_line (start -3.11 2.25) (end -2.11 3.25) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 1d5155b4-86a6-4623-8188-750eae418437)) - (fp_line (start -2.705 2.655) (end -5.81 2.655) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 959d2374-2690-4020-9d8a-82c28122dec4)) - (fp_line (start -2.11 3.25) (end 3.11 3.25) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp a2f39e1a-5e99-4b45-ac08-543a10013088)) - (fp_line (start 3.11 -3.25) (end -3.11 -3.25) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp cef44e56-4f87-4bcf-9ccf-deaab782db1b)) - (fp_line (start 3.11 2.7) (end 4.11 2.7) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp aae6c4a8-6c84-4ffc-b662-efeadcd435c2)) - (fp_line (start 3.11 3.25) (end 3.11 -3.25) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 5006ac6d-b45d-4b69-9f37-b3555b8c64f2)) - (fp_line (start 4.11 -2.7) (end 3.11 -2.7) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 5a210aae-a1b6-4c17-9290-a05878377f06)) - (fp_line (start 4.11 2.7) (end 4.11 -2.7) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp f3b97b8c-d36d-47a4-b078-4b8f5da5e8ca)) - (pad "1" smd roundrect (at -5.04 2.28 180) (size 2.2 1.2) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.208333) - (net 42 "Net-(Q5-G)") (pinfunction "G") (pintype "input") (tstamp 13b98cca-80d9-4702-9140-7d91b91bad39)) - (pad "2" smd roundrect (at -5.04 0 180) (size 2.2 1.2) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.208333) - (net 21 "Net-(D11-A)") (pinfunction "D") (pintype "passive") (tstamp 22c7dbc3-e2f8-40a5-b0e4-1b5f309f379e)) - (pad "2" smd roundrect (at -0.415 -1.525 180) (size 3.05 2.75) (layers "B.Cu" "B.Paste") (roundrect_rratio 0.090909) - (net 21 "Net-(D11-A)") (pinfunction "D") (pintype "passive") (tstamp a0f4dc67-7116-4bda-92b6-aca0ff108a5a)) - (pad "2" smd roundrect (at -0.415 1.525 180) (size 3.05 2.75) (layers "B.Cu" "B.Paste") (roundrect_rratio 0.090909) - (net 21 "Net-(D11-A)") (pinfunction "D") (pintype "passive") (tstamp cd9da806-1d80-47d0-bb67-6771f74d55d6)) - (pad "2" smd roundrect (at 1.26 0 180) (size 6.4 5.8) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.043103) - (net 21 "Net-(D11-A)") (pinfunction "D") (pintype "passive") (tstamp 0bbc16b3-30a0-4979-94da-949b8897a507)) - (pad "2" smd roundrect (at 2.935 -1.525 180) (size 3.05 2.75) (layers "B.Cu" "B.Paste") (roundrect_rratio 0.090909) - (net 21 "Net-(D11-A)") (pinfunction "D") (pintype "passive") (tstamp c471c87c-da77-47d3-9ea0-e82535ace6bb)) - (pad "2" smd roundrect (at 2.935 1.525 180) (size 3.05 2.75) (layers "B.Cu" "B.Paste") (roundrect_rratio 0.090909) - (net 21 "Net-(D11-A)") (pinfunction "D") (pintype "passive") (tstamp 8fcc7f6d-a5ac-46d4-8b46-5432a8e951ec)) - (pad "3" smd roundrect (at -5.04 -2.28 180) (size 2.2 1.2) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.208333) - (net 2 "GND") (pinfunction "S") (pintype "passive") (tstamp 743b93bd-7bf3-416f-b3bd-4b5e75563889)) - (model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/TO-252-3_TabPin2.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "B.Cu") - (tstamp 54408422-cefb-4832-ad40-660648383218) - (at 103.2275 93.472) - (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags "resistor handsolder") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Resistor") - (property "ki_keywords" "R res resistor") - (path "/89755849-e3e9-4e1e-b86a-8ed346a9749b") - (attr smd) - (fp_text reference "R14" (at -3.1515 0) (layer "B.SilkS") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp 16758656-8cc2-4ca6-a83a-3a7c3599d955) - ) - (fp_text value "330" (at 0 -1.43) (layer "B.Fab") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp ae6867fb-d4e0-44fb-a22b-c34dc07fade8) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab") - (effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror)) - (tstamp 34c62bab-213e-4a6b-87c2-1280314c477b) - ) - (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 1f03f40d-87b8-455e-b6a2-b28ccadfce37)) - (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 9f98205c-e2ad-4977-93f0-6c1026ceba04)) - (fp_line (start -1.65 -0.73) (end -1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp d9328177-f1c9-46ca-972e-fcef25cbf23e)) - (fp_line (start -1.65 0.73) (end 1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp fe00e2ae-0335-4d4d-9d83-8e22b514edd7)) - (fp_line (start 1.65 -0.73) (end -1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 6f7d9829-63fe-47e1-be01-8aa9a0ac2530)) - (fp_line (start 1.65 0.73) (end 1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp cebd2a45-5023-4d7b-9df9-f3cdda1372be)) - (fp_line (start -0.8 -0.4125) (end -0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 6566f024-dc73-4b04-8a4a-559fb9874cad)) - (fp_line (start -0.8 0.4125) (end 0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 051f4afe-36b9-41dd-abbf-d142f43df004)) - (fp_line (start 0.8 -0.4125) (end -0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp f42f9ab1-0a1c-4032-a9a2-f176710ce7d9)) - (fp_line (start 0.8 0.4125) (end 0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 75acdaff-21be-4af2-9309-3886ddc417fe)) - (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) - (net 48 "Net-(U4-sense)") (pintype "passive") (tstamp 9b63ebc5-dc07-4db0-b2ac-3f48fea2f950)) - (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) - (net 19 "/Vsen") (pintype "passive") (tstamp aa15aadf-a4bd-4740-8667-cd8ea5cc6888)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "B.Cu") - (tstamp 69f1e235-1457-4dc4-8a9b-18d4a189378d) - (at 102.85 91.44) - (descr "SOD-323") - (tags "SOD-323") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "Sim.Device" "D") - (property "Sim.Pins" "1=K 2=A") - (property "ki_description" "Diode") - (property "ki_keywords" "diode") - (path "/c7dcb330-00fd-4b26-9116-cfce065ece6a") - (attr smd) - (fp_text reference "D8" (at 0.02 -1.778) (layer "B.SilkS") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp a192e703-3f0c-4b37-9ddc-1250853d6230) - ) - (fp_text value "1N5819" (at 0.1 -1.9) (layer "B.Fab") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp b827cd12-d6b7-4aa2-9dd9-edda94e56676) - ) - (fp_text user "${REFERENCE}" (at 0 1.85) (layer "B.Fab") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp f00f7d74-7f47-4e25-bd95-02390cd715ee) - ) - (fp_line (start -2.01 -0.85) (end 1.25 -0.85) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp a1009574-d80e-422e-8ffe-a2acc7d1474e)) - (fp_line (start -2.01 0.85) (end -2.01 -0.85) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp a53226c6-e3bf-4290-8d28-11b7127cf773)) - (fp_line (start -2.01 0.85) (end 1.25 0.85) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 4fceb3bb-05d0-4e17-bedd-7d3b45de57dd)) - (fp_line (start -2 -0.95) (end 2 -0.95) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 434474e9-58ab-4f5a-ba17-75fa1f55edbf)) - (fp_line (start -2 0.95) (end -2 -0.95) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp b70c3dc5-6013-446a-9845-5344486f8f0b)) - (fp_line (start -2 0.95) (end 2 0.95) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 3913fc6b-389a-4678-bb25-bcc3efd2ff2a)) - (fp_line (start 2 0.95) (end 2 -0.95) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp dbdcb7e7-8d77-4e9d-be14-3b21cff6ba80)) - (fp_line (start -0.9 -0.7) (end -0.9 0.7) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 18f83e03-b569-4812-8a9b-35e29bc16c45)) - (fp_line (start -0.9 0.7) (end 0.9 0.7) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 7ca9a262-762a-4599-bf01-ec735d2928bb)) - (fp_line (start -0.3 0) (end -0.5 0) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp fbac3008-debc-4114-a19f-e13a369392ee)) - (fp_line (start -0.3 0) (end 0.2 0.35) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 91464acb-0e9d-4fa6-ba42-035f9a2c3113)) - (fp_line (start -0.3 0.35) (end -0.3 -0.35) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp cc2f84bf-0851-4048-9e80-207c970e285e)) - (fp_line (start 0.2 -0.35) (end -0.3 0) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 9c5a4215-23c3-4c57-9aeb-643d39d6b540)) - (fp_line (start 0.2 0) (end 0.45 0) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 1884bc99-243f-4c36-98bb-9e2b79cb49b3)) - (fp_line (start 0.2 0.35) (end 0.2 -0.35) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp abe7e5b3-f408-44ce-916c-399ca34f3147)) - (fp_line (start 0.9 -0.7) (end -0.9 -0.7) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 48ec4d74-4a21-4dbd-a59a-99ac51d5cd5d)) - (fp_line (start 0.9 0.7) (end 0.9 -0.7) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 933d327a-5f21-46b9-bfe2-373ac65067ad)) - (pad "1" smd roundrect (at -1.25 0) (size 1 1) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) - (net 6 "+3V3") (pinfunction "K") (pintype "passive") (tstamp b826b448-8202-4efb-8475-30112a5c39d7)) - (pad "2" smd roundrect (at 1.25 0) (size 1 1) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) - (net 19 "/Vsen") (pinfunction "A") (pintype "passive") (tstamp b5fd153b-6c2e-44de-b825-f822a7163123)) - (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "B.Cu") - (tstamp 790ff481-68a4-4419-a7e0-1a42aa9f8665) - (at 113.1805 111.506 180) - (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags "resistor handsolder") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Resistor") - (property "ki_keywords" "R res resistor") - (path "/40ff16c9-50c1-4217-b945-227fce8d08eb") - (attr smd) - (fp_text reference "R24" (at 0 1.43) (layer "B.SilkS") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp 2258b98f-6b87-4934-a406-01f414455114) - ) - (fp_text value "220" (at 0 -1.43) (layer "B.Fab") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp 7195054b-f133-4563-b736-d3e89a72a8b3) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab") - (effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror)) - (tstamp a1c2a301-c7c0-4b0e-8317-7cd9f3220594) - ) - (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp a934ef16-b7f5-4aef-88d6-fc1874bbefd6)) - (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 795fc8ca-76a3-44d8-944e-027ff894d1b9)) - (fp_line (start -1.65 -0.73) (end -1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 9f9f0754-f55f-4f67-9b06-13982b852339)) - (fp_line (start -1.65 0.73) (end 1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 786a6e56-b42d-4564-a2bb-23ffd130782c)) - (fp_line (start 1.65 -0.73) (end -1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 5400c6e9-505f-448f-bea5-4a5dd0806ace)) - (fp_line (start 1.65 0.73) (end 1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 7d5a2102-8fa5-4f59-8746-bfe7f760c0af)) - (fp_line (start -0.8 -0.4125) (end -0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 70152b53-45d5-43ab-b846-286881db31cb)) - (fp_line (start -0.8 0.4125) (end 0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 88110e7b-c550-44c9-b269-fec4624f6c95)) - (fp_line (start 0.8 -0.4125) (end -0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 5be8c315-4f56-40b5-8e72-8eb1bc6b9368)) - (fp_line (start 0.8 0.4125) (end 0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp acdd4c28-3047-4018-bc33-e5e52ce1db2c)) - (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) - (net 51 "/R_DOWN") (pintype "passive") (tstamp f098143a-8d3d-4388-9aad-8b2d4708b8b2)) - (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) - (net 42 "Net-(Q5-G)") (pintype "passive") (tstamp 1446232b-7549-4b02-ab42-b834370cf59c)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Package_TO_SOT_SMD:TO-252-3_TabPin2" (layer "B.Cu") - (tstamp 80b25565-9ad2-42d0-8d7b-991be3323827) - (at 102.322 106.178) - (descr "TO-252/DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-3-1/") - (tags "DPAK TO-252 DPAK-3 TO-252-3 SOT-428") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "P-MOSFET transistor, gate/drain/source") - (property "ki_keywords" "transistor PMOS P-MOS P-MOSFET") - (path "/2f757bfd-4ac7-433b-ab5b-f2b0a45a23eb") - (attr smd) - (fp_text reference "Q4" (at 5.9582 -0.1076 180) (layer "B.SilkS") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp e3f07cc6-5785-444b-a0c6-a7d17888ac15) - ) - (fp_text value "AOD4185" (at 0 -4.5) (layer "B.Fab") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp 32f36a9b-169e-46c2-8e44-aa72f35a85b5) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp 3f01b942-c565-483a-a78c-40d403f15f13) - ) - (fp_line (start -3.31 -3.45) (end -3.31 -3.18) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 11270586-97f3-4505-9c4e-e867fa45632a)) - (fp_line (start -3.31 -3.18) (end -4.41 -3.18) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp ba2c2005-3c88-4e30-b79d-2e1b635636be)) - (fp_line (start -3.31 3.18) (end -6.14 3.18) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 740a9f56-7824-4d76-ad19-fdfa5ca428df)) - (fp_line (start -3.31 3.45) (end -3.31 3.18) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp aea723a9-9451-4f4d-83bf-17dc1bebd41c)) - (fp_line (start 3.11 -3.45) (end -3.31 -3.45) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp dde275fb-d6a6-49fa-b7fc-b99c84717fd8)) - (fp_line (start 3.11 3.45) (end -3.31 3.45) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp c66a3d6e-4bb9-4731-9598-89d753dbd54d)) - (fp_line (start -6.39 -3.5) (end 4.71 -3.5) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp bcd166a0-9fc9-458e-99cc-838b6674eccb)) - (fp_line (start -6.39 3.5) (end -6.39 -3.5) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp a51f4fc9-b425-464e-afeb-ffddc3582393)) - (fp_line (start 4.71 -3.5) (end 4.71 3.5) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 1defe40e-6591-42bf-9ca6-3ac66af71f63)) - (fp_line (start 4.71 3.5) (end -6.39 3.5) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 2921052d-c50f-490d-9453-073c39cab8f8)) - (fp_line (start -5.81 -2.655) (end -3.11 -2.655) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 9a5a79ef-b2c0-46ec-95b3-ebd3902f42a2)) - (fp_line (start -5.81 -1.905) (end -5.81 -2.655) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp f821a131-07e7-4236-bd32-0a8dc3f9423a)) - (fp_line (start -5.81 -0.375) (end -3.11 -0.375) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp ad57ed7b-1868-4f20-8743-73388bb31038)) - (fp_line (start -5.81 0.375) (end -5.81 -0.375) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 9374f0ad-5953-4206-8c67-0eb7beceeebd)) - (fp_line (start -5.81 1.905) (end -3.11 1.905) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 7ed30fad-5871-4e52-a6d4-812de452821d)) - (fp_line (start -5.81 2.655) (end -5.81 1.905) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 1620a596-54b3-4cc9-8b2f-4ba248203c93)) - (fp_line (start -3.11 -3.25) (end -3.11 2.25) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp b033974e-d77b-4b4f-8a2c-272b3c0baf93)) - (fp_line (start -3.11 -1.905) (end -5.81 -1.905) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 5a293204-e9b2-4b19-968e-563162a2aaf0)) - (fp_line (start -3.11 0.375) (end -5.81 0.375) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 3330b14e-8c8d-44b5-a31f-362519fe8022)) - (fp_line (start -3.11 2.25) (end -2.11 3.25) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp e77c9f53-3903-4911-8c67-6e6b585092a6)) - (fp_line (start -2.705 2.655) (end -5.81 2.655) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 2f6edc19-4dd5-4e7a-a2dc-fe568d4e7224)) - (fp_line (start -2.11 3.25) (end 3.11 3.25) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 662d0c90-7cb7-4758-b8c9-bac5affecd36)) - (fp_line (start 3.11 -3.25) (end -3.11 -3.25) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 79ca459d-ea4e-4781-a540-22920e8c8ff2)) - (fp_line (start 3.11 2.7) (end 4.11 2.7) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 2c0116b9-c882-4702-851c-2bee88452299)) - (fp_line (start 3.11 3.25) (end 3.11 -3.25) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp be411e4f-eb92-41d5-a3d0-516face4a476)) - (fp_line (start 4.11 -2.7) (end 3.11 -2.7) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp fd8f2e54-1676-4937-b9a5-a4f3591755d1)) - (fp_line (start 4.11 2.7) (end 4.11 -2.7) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 4ff06d0e-ab1d-46ea-8493-6c062cbd7ff7)) - (pad "1" smd roundrect (at -5.04 2.28) (size 2.2 1.2) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.208333) - (net 41 "Net-(Q4-G)") (pinfunction "G") (pintype "input") (tstamp 1606a247-eb00-4d4b-b3d4-d4b315fa5f8c)) - (pad "2" smd roundrect (at -5.04 0) (size 2.2 1.2) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.208333) - (net 21 "Net-(D11-A)") (pinfunction "D") (pintype "passive") (tstamp 475e4443-1bc9-43fd-a013-915803e8d574)) - (pad "2" smd roundrect (at -0.415 -1.525) (size 3.05 2.75) (layers "B.Cu" "B.Paste") (roundrect_rratio 0.090909) - (net 21 "Net-(D11-A)") (pinfunction "D") (pintype "passive") (tstamp 7781b014-cccc-41c6-a465-7eaa68550ae8)) - (pad "2" smd roundrect (at -0.415 1.525) (size 3.05 2.75) (layers "B.Cu" "B.Paste") (roundrect_rratio 0.090909) - (net 21 "Net-(D11-A)") (pinfunction "D") (pintype "passive") (tstamp 614c4869-2b07-4f51-9c63-1fd486c7df52)) - (pad "2" smd roundrect (at 1.26 0) (size 6.4 5.8) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.043103) - (net 21 "Net-(D11-A)") (pinfunction "D") (pintype "passive") (tstamp b44e33a1-89b0-4cab-9510-fedba35b7961)) - (pad "2" smd roundrect (at 2.935 -1.525) (size 3.05 2.75) (layers "B.Cu" "B.Paste") (roundrect_rratio 0.090909) - (net 21 "Net-(D11-A)") (pinfunction "D") (pintype "passive") (tstamp 8de103bd-f00e-4a7e-82b7-e61e203e2b52)) - (pad "2" smd roundrect (at 2.935 1.525) (size 3.05 2.75) (layers "B.Cu" "B.Paste") (roundrect_rratio 0.090909) - (net 21 "Net-(D11-A)") (pinfunction "D") (pintype "passive") (tstamp 7bfad46c-0ce5-4e57-8da1-e589579cc023)) - (pad "3" smd roundrect (at -5.04 -2.28) (size 2.2 1.2) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.208333) - (net 3 "+12V") (pinfunction "S") (pintype "passive") (tstamp b67392d1-8aac-467d-b725-3aad662d2440)) - (model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/TO-252-3_TabPin2.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Package_TO_SOT_SMD:SOT-23_Handsoldering" (layer "B.Cu") - (tstamp 8f5e3ac7-307a-4d85-8dd6-bde33e41f963) - (at 102.362 97.258 90) - (descr "SOT-23, Handsoldering") - (tags "SOT-23") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "High side current sensor 1mA/100mV") - (path "/3671fd88-84f3-4f3a-909e-cde8c8f599fa") - (attr smd) - (fp_text reference "U4" (at -0.024 -2.794 180) (layer "B.SilkS") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp 7b573e55-433c-4c5b-a674-25ec44f4546d) - ) - (fp_text value "ZXCT1009" (at 0 -2.5 90) (layer "B.Fab") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp 0bc8ba7b-5553-4328-8022-9e73187e4886) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab") - (effects (font (size 0.5 0.5) (thickness 0.075)) (justify mirror)) - (tstamp f0a6b4b3-b0d1-4a84-baf5-c924355f4542) - ) - (fp_line (start 0.76 -1.58) (end -0.7 -1.58) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp d43f8577-8530-4902-8a20-455f7aa7c26c)) - (fp_line (start 0.76 -1.58) (end 0.76 -0.65) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 433b5aed-921d-4459-b98e-2127b12018b8)) - (fp_line (start 0.76 1.58) (end -2.4 1.58) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp f53f0d7f-3e1f-4be9-9468-e86e84e0f1e7)) - (fp_line (start 0.76 1.58) (end 0.76 0.65) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 10bce20e-06b2-46a3-9364-26952582297b)) - (fp_line (start -2.7 -1.75) (end -2.7 1.75) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 982060b7-751c-4a6c-a611-7adb2ec95f23)) - (fp_line (start -2.7 1.75) (end 2.7 1.75) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp e7aef5a3-167f-4273-90c1-8f3d67b2d3e2)) - (fp_line (start 2.7 -1.75) (end -2.7 -1.75) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp e797a45b-9f74-4ed3-8585-b44e6b6b75a4)) - (fp_line (start 2.7 1.75) (end 2.7 -1.75) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp bf3cc7e0-85cb-4c1e-8569-412ca92554ec)) - (fp_line (start -0.7 -1.52) (end 0.7 -1.52) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 8dd3af56-aeca-45b0-ba38-74b169c8fe01)) - (fp_line (start -0.7 0.95) (end -0.7 -1.5) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp f8564b58-561d-4ea7-877d-96b4928f882b)) - (fp_line (start -0.7 0.95) (end -0.15 1.52) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp a40720b8-5acc-4900-a7ee-9490c3fc3caa)) - (fp_line (start -0.15 1.52) (end 0.7 1.52) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 82b6904b-f66f-445d-9150-a6db6a3241c6)) - (fp_line (start 0.7 1.52) (end 0.7 -1.52) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 8fd90f72-feaf-472f-8d8d-9da89f8d582e)) - (pad "1" smd rect (at -1.5 0.95 90) (size 1.9 0.8) (layers "B.Cu" "B.Paste" "B.Mask") - (net 39 "Net-(Q2-S)") (pinfunction "-") (pintype "passive") (tstamp bf7fa157-d458-4c82-bcc8-3b299532d152)) - (pad "2" smd rect (at -1.5 -0.95 90) (size 1.9 0.8) (layers "B.Cu" "B.Paste" "B.Mask") - (net 3 "+12V") (pinfunction "+") (pintype "passive") (tstamp c6dbb8c1-3747-40f0-a419-477543d8b0e0)) - (pad "3" smd rect (at 1.5 0 90) (size 1.9 0.8) (layers "B.Cu" "B.Paste" "B.Mask") - (net 48 "Net-(U4-sense)") (pinfunction "sense") (pintype "passive") (tstamp 7a7c6fe3-8597-47cb-93a7-37d9967d4541)) - (model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_1210_3225Metric_Pad1.30x2.65mm_HandSolder" (layer "B.Cu") - (tstamp 977ee666-73c0-435f-b8d3-615247847d18) - (at 83.058 76.734 90) - (descr "Resistor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags "resistor handsolder") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Resistor") - (property "ki_keywords" "R res resistor") - (path "/0fa0b0c7-7679-4ad5-959a-2982a59300e4") - (attr smd) - (fp_text reference "R21" (at -3.276 -0.254 180) (layer "B.SilkS") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp 1f6ccd60-7b1a-494c-bd93-51a800135347) - ) - (fp_text value "120" (at 0 -2.28 90) (layer "B.Fab") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp ffd284b5-8d3b-476e-9beb-49ea63b9b19a) - ) - (fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab") - (effects (font (size 0.8 0.8) (thickness 0.12)) (justify mirror)) - (tstamp b6e7fe05-68ce-4976-9821-95ffb9259607) - ) - (fp_line (start -0.723737 -1.355) (end 0.723737 -1.355) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 32856184-be2a-43bd-b0fb-d0ff48fd27f1)) - (fp_line (start -0.723737 1.355) (end 0.723737 1.355) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 67b04a2b-a165-48b2-b79e-058b5f16e226)) - (fp_line (start -2.45 -1.58) (end -2.45 1.58) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp a124553d-5f5a-402b-9478-bdb098a25373)) - (fp_line (start -2.45 1.58) (end 2.45 1.58) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 762d0eab-b891-42ae-a5da-89d79e68a5c2)) - (fp_line (start 2.45 -1.58) (end -2.45 -1.58) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 7937db99-6c0d-4737-af4a-9550df533b59)) - (fp_line (start 2.45 1.58) (end 2.45 -1.58) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 87bbb67d-7495-4f6e-9c39-be89d0a1a5ca)) - (fp_line (start -1.6 -1.245) (end -1.6 1.245) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 73a9c446-94a2-4522-9310-394280f4aa8e)) - (fp_line (start -1.6 1.245) (end 1.6 1.245) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp fd715e13-47c3-4bb9-8f82-ab979dad365c)) - (fp_line (start 1.6 -1.245) (end -1.6 -1.245) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp dd4ca008-a5fc-4876-90a8-dc6d07a355e3)) - (fp_line (start 1.6 1.245) (end 1.6 -1.245) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 345f6841-c59f-452d-bb77-ffaf551f7e5f)) - (pad "1" smd roundrect (at -1.55 0 90) (size 1.3 2.65) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.192308) - (net 23 "/CANH") (pintype "passive") (tstamp ed6fe388-2a43-41af-930a-1e1d8d3677ed)) - (pad "2" smd roundrect (at 1.55 0 90) (size 1.3 2.65) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.192308) - (net 36 "Net-(JP1-B)") (pintype "passive") (tstamp 5c39b39f-d6d9-44cd-94e3-90b80d09ed8c)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1210_3225Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Package_TO_SOT_SMD:SOT-23" (layer "B.Cu") - (tstamp 9b5a1503-ded0-4173-b972-3d56377a4698) - (at 78.8185 75.88 180) - (descr "SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py") - (tags "SOT TO_SOT_SMD") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "CAN bus ESD protection") - (property "ki_keywords" "diode") - (path "/7d6e4e39-c56e-426f-8fc3-a264de8848d2") - (attr smd) - (fp_text reference "D13" (at 0.0785 -2.606) (layer "B.SilkS") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp f0990dd6-a211-4e3d-a89f-fd99339318e0) - ) - (fp_text value "PESD1CAN" (at 0 -2.4) (layer "B.Fab") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp a0eb00a6-ede2-4f6e-a646-df82db1bc968) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab") - (effects (font (size 0.32 0.32) (thickness 0.05)) (justify mirror)) - (tstamp a647d169-cbf9-414b-b92c-34e9848326fc) - ) - (fp_line (start 0 -1.56) (end -0.65 -1.56) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 4f16aafb-c28f-4dd6-8fe2-bcb7a8a63cec)) - (fp_line (start 0 -1.56) (end 0.65 -1.56) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp c4679cc3-27f4-4875-b648-b818a96952de)) - (fp_line (start 0 1.56) (end -1.675 1.56) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 8a7e434d-2c00-44d5-a4b7-c611c3debfd7)) - (fp_line (start 0 1.56) (end 0.65 1.56) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp e3123814-f2b5-49a4-bb58-8d163e19acf4)) - (fp_line (start -1.92 -1.7) (end 1.92 -1.7) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp a792f453-082a-46c8-8f2d-a4a139c9d8dc)) - (fp_line (start -1.92 1.7) (end -1.92 -1.7) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 40e82111-594d-4e1a-a3f4-cb6e7b708b83)) - (fp_line (start 1.92 -1.7) (end 1.92 1.7) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 63a72bd2-87e5-4f43-ad1c-e67fc11ca31e)) - (fp_line (start 1.92 1.7) (end -1.92 1.7) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 5105dbd6-f035-480f-abb7-5b79a29cfa7b)) - (fp_line (start -0.65 -1.45) (end -0.65 1.125) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 5926e315-7c12-40dd-b12c-0ada244694ff)) - (fp_line (start -0.65 1.125) (end -0.325 1.45) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 7c40d624-9ea4-46fe-85d3-d93358860e1f)) - (fp_line (start -0.325 1.45) (end 0.65 1.45) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 61d0946f-a0c1-473b-910d-290d60790073)) - (fp_line (start 0.65 -1.45) (end -0.65 -1.45) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 5695894d-b5f1-432d-8eae-098b19c72996)) - (fp_line (start 0.65 1.45) (end 0.65 -1.45) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp aa2ce019-53b0-4ba2-a848-ea4fb51ab4f7)) - (pad "1" smd roundrect (at -0.9375 0.95 180) (size 1.475 0.6) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) - (net 22 "/CANL") (pinfunction "K") (pintype "passive") (tstamp 8d63fbe0-289e-46c7-8c38-cb4924c60260)) - (pad "2" smd roundrect (at -0.9375 -0.95 180) (size 1.475 0.6) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) - (net 23 "/CANH") (pinfunction "K") (pintype "passive") (tstamp 2033e729-cdc9-4c18-8c41-dd19cb2d97d2)) - (pad "3" smd roundrect (at 0.9375 0 180) (size 1.475 0.6) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pinfunction "O") (pintype "passive") (tstamp fddec1e5-1066-4be9-b27d-2f1875357e97)) - (model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Package_TO_SOT_SMD:TO-252-3_TabPin2" (layer "B.Cu") - (tstamp 9d632501-8ef3-4eda-98f9-aa9d1f5048ec) - (at 114.514 101.086) - (descr "TO-252/DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-3-1/") - (tags "DPAK TO-252 DPAK-3 TO-252-3 SOT-428") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "P-MOSFET transistor, gate/drain/source") - (property "ki_keywords" "transistor PMOS P-MOS P-MOSFET") - (path "/6d2ea4e2-3322-4cbc-9204-8f00ac7f21c5") - (attr smd) - (fp_text reference "Q2" (at -0.087 -4.3374) (layer "B.SilkS") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp 06fe757a-658f-46c2-8b71-b1241b0f4561) - ) - (fp_text value "AOD4185" (at 0 -4.5) (layer "B.Fab") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp 583c2087-ed41-4757-add7-f66289e6a3e7) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp 2cf802ec-94ba-4ac2-b344-e378c12f837b) - ) - (fp_line (start -3.31 -3.45) (end -3.31 -3.18) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 62ec47a3-e17a-4736-934c-0a0db68f82cb)) - (fp_line (start -3.31 -3.18) (end -4.41 -3.18) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp de41e6bd-efc5-4dab-b487-a9e6fb449034)) - (fp_line (start -3.31 3.18) (end -6.14 3.18) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 2ec7012c-d60b-4f94-a39e-fbed44080f83)) - (fp_line (start -3.31 3.45) (end -3.31 3.18) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 140c365b-1347-4fa7-a34f-1d759e1641a0)) - (fp_line (start 3.11 -3.45) (end -3.31 -3.45) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp a63acced-f936-4266-ab25-a3bc6e08aa1a)) - (fp_line (start 3.11 3.45) (end -3.31 3.45) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp d2e4082a-efa3-4b51-9dd8-1a6959ac9e2d)) - (fp_line (start -6.39 -3.5) (end 4.71 -3.5) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 3e29f86f-e2b4-4aa7-bf51-32e054ef4255)) - (fp_line (start -6.39 3.5) (end -6.39 -3.5) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 50c50c1f-5bd8-4d7a-a97e-4998b17e5d92)) - (fp_line (start 4.71 -3.5) (end 4.71 3.5) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp d3ac3ce0-3cae-4ec6-b0b1-b57f81aad0b7)) - (fp_line (start 4.71 3.5) (end -6.39 3.5) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp f3e1416f-39a9-47bf-a025-397a907d8883)) - (fp_line (start -5.81 -2.655) (end -3.11 -2.655) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 8224b10f-f055-451c-8d28-e0d103a8f628)) - (fp_line (start -5.81 -1.905) (end -5.81 -2.655) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 2f33f79a-a965-47ca-9d7e-221164dc069e)) - (fp_line (start -5.81 -0.375) (end -3.11 -0.375) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 94e8a1fa-6a57-4a57-b396-6bae78b61a2f)) - (fp_line (start -5.81 0.375) (end -5.81 -0.375) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 82f4543c-b083-484c-94ea-1511bf632ed3)) - (fp_line (start -5.81 1.905) (end -3.11 1.905) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp de1c9995-71bf-4a63-a98f-da9cd6a1a525)) - (fp_line (start -5.81 2.655) (end -5.81 1.905) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 7b2cb063-2e0f-4596-9c7a-6374d26ece56)) - (fp_line (start -3.11 -3.25) (end -3.11 2.25) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 908be0db-a3ec-4399-8091-bc8f20267994)) - (fp_line (start -3.11 -1.905) (end -5.81 -1.905) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp b8259d33-2b87-4f41-acc3-7d212f0559f0)) - (fp_line (start -3.11 0.375) (end -5.81 0.375) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 1fd4719d-337e-429b-af4a-3db2baf34dc4)) - (fp_line (start -3.11 2.25) (end -2.11 3.25) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp dc469ad9-da29-4b97-bc02-c45b19f69e73)) - (fp_line (start -2.705 2.655) (end -5.81 2.655) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp d6add565-ef3c-4240-99fc-4bba70176202)) - (fp_line (start -2.11 3.25) (end 3.11 3.25) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp f682d31e-c1cc-49ac-837d-869cb6b56dff)) - (fp_line (start 3.11 -3.25) (end -3.11 -3.25) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 8a966feb-0c62-46f9-92b9-4a9ad3b5869f)) - (fp_line (start 3.11 2.7) (end 4.11 2.7) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp abc4f215-6edb-497b-989b-c6dfff2d9040)) - (fp_line (start 3.11 3.25) (end 3.11 -3.25) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 5f330beb-caec-4a77-905c-087a65419aa9)) - (fp_line (start 4.11 -2.7) (end 3.11 -2.7) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 00af6729-bc87-4f89-9861-ae2e4acbc648)) - (fp_line (start 4.11 2.7) (end 4.11 -2.7) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp caa79f15-6115-4e3c-af5f-fa50b659b20a)) - (pad "1" smd roundrect (at -5.04 2.28) (size 2.2 1.2) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.208333) - (net 38 "Net-(Q1-D)") (pinfunction "G") (pintype "input") (tstamp a15ef6ae-2401-4d84-9d5f-89b6d4e9be1d)) - (pad "2" smd roundrect (at -5.04 0) (size 2.2 1.2) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.208333) - (net 20 "Net-(D10-A)") (pinfunction "D") (pintype "passive") (tstamp dc61924c-49dc-4bf7-ab1a-5cc641dfa9e3)) - (pad "2" smd roundrect (at -0.415 -1.525) (size 3.05 2.75) (layers "B.Cu" "B.Paste") (roundrect_rratio 0.090909) - (net 20 "Net-(D10-A)") (pinfunction "D") (pintype "passive") (tstamp 77883f08-0096-4f82-808c-64c318e88d89)) - (pad "2" smd roundrect (at -0.415 1.525) (size 3.05 2.75) (layers "B.Cu" "B.Paste") (roundrect_rratio 0.090909) - (net 20 "Net-(D10-A)") (pinfunction "D") (pintype "passive") (tstamp 464db352-0462-4d41-802d-5758b4ae4721)) - (pad "2" smd roundrect (at 1.26 0) (size 6.4 5.8) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.043103) - (net 20 "Net-(D10-A)") (pinfunction "D") (pintype "passive") (tstamp ac058344-8142-4b84-89ca-d0e526e3d87a)) - (pad "2" smd roundrect (at 2.935 -1.525) (size 3.05 2.75) (layers "B.Cu" "B.Paste") (roundrect_rratio 0.090909) - (net 20 "Net-(D10-A)") (pinfunction "D") (pintype "passive") (tstamp 0288d2f5-d278-4319-87aa-747802c55413)) - (pad "2" smd roundrect (at 2.935 1.525) (size 3.05 2.75) (layers "B.Cu" "B.Paste") (roundrect_rratio 0.090909) - (net 20 "Net-(D10-A)") (pinfunction "D") (pintype "passive") (tstamp 2293294c-bee5-4271-bc1a-46b3f4a14e87)) - (pad "3" smd roundrect (at -5.04 -2.28) (size 2.2 1.2) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.208333) - (net 39 "Net-(Q2-S)") (pinfunction "S") (pintype "passive") (tstamp 507ef19b-3f87-4ecc-b29b-e14926f0eae0)) - (model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/TO-252-3_TabPin2.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "B.Cu") - (tstamp 9e4a24c3-ce3e-4f94-8634-3c6f1a5f8528) - (at 105.9434 101.6 180) - (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags "resistor handsolder") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Resistor") - (property "ki_keywords" "R res resistor") - (path "/b132ecea-804a-4016-9b77-f44b4264042d") - (attr smd) - (fp_text reference "R17" (at 3.1242 0.508) (layer "B.SilkS") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp 2f226e82-c6a4-4f86-ab47-d787e2aeebd6) - ) - (fp_text value "10k" (at 0 -1.43) (layer "B.Fab") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp af93e03c-387e-4244-8750-a3d5d69890c5) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab") - (effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror)) - (tstamp 289529e3-7613-47bc-908d-b78c81213662) - ) - (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp a9fdcef4-7307-4ef4-a383-db97210b965d)) - (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp a981a40e-6c90-452d-93f2-f4a2fcf24867)) - (fp_line (start -1.65 -0.73) (end -1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 4d70f048-b730-4b5a-8e8c-807a9e6642d1)) - (fp_line (start -1.65 0.73) (end 1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 0a56e36b-163f-4152-824a-c5a531943248)) - (fp_line (start 1.65 -0.73) (end -1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 7651e26d-426b-4133-8bcf-b9e20402d733)) - (fp_line (start 1.65 0.73) (end 1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 5aeeaa85-9b3f-4f46-a022-02d5ec52bb10)) - (fp_line (start -0.8 -0.4125) (end -0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 9ca82e2c-cc3d-40fa-b856-23adb1f5f312)) - (fp_line (start -0.8 0.4125) (end 0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp d065369b-c386-44a9-9e4f-16d91719c3d9)) - (fp_line (start 0.8 -0.4125) (end -0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 55393cb4-c14b-476d-b851-d83afe25c62f)) - (fp_line (start 0.8 0.4125) (end 0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 034afde8-0ebd-4d0a-92aa-fcdbf13ce296)) - (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) - (net 38 "Net-(Q1-D)") (pintype "passive") (tstamp a2284dce-c365-486f-8be2-f2bc004b3887)) - (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) - (net 3 "+12V") (pintype "passive") (tstamp 667b098f-09ce-460f-91b9-cf2057649146)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "B.Cu") - (tstamp b08b6bd1-5ac5-4b61-88d8-e0da354951cf) - (at 94.3356 104.7985 90) - (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags "resistor handsolder") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Resistor") - (property "ki_keywords" "R res resistor") - (path "/ab89a8c7-b04a-4797-a8da-da67b1836164") - (attr smd) - (fp_text reference "R23" (at 2.3603 0 180) (layer "B.SilkS") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp a5f852d9-65ba-47c0-9330-c2b0180cd97d) - ) - (fp_text value "10k" (at -0.1035 -0.254 90) (layer "B.Fab") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp adf9445d-c5d2-4bb6-a88d-d028e7bdbcd8) - ) - (fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab") - (effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror)) - (tstamp 04b36152-43a0-4338-9be9-2d4b831bc960) - ) - (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 103a6ff6-b6d4-427c-9d30-6bf5c116d174)) - (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 205610e3-3716-4441-b20b-518cb4e3ebea)) - (fp_line (start -1.65 -0.73) (end -1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 976b91f6-f6d6-4c5e-9558-aee62e36c5d0)) - (fp_line (start -1.65 0.73) (end 1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 5d0063ff-90ff-4c6f-9f85-1c711df22a27)) - (fp_line (start 1.65 -0.73) (end -1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 79fb19bc-9325-43e0-84da-b468d3dac018)) - (fp_line (start 1.65 0.73) (end 1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp ce212016-152d-4507-8a3f-bb925b1caa3d)) - (fp_line (start -0.8 -0.4125) (end -0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp da59ce84-2aa0-4acd-af80-8069b84954d3)) - (fp_line (start -0.8 0.4125) (end 0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp b3bc0d1d-8b0a-40e5-b96a-da80e043c3af)) - (fp_line (start 0.8 -0.4125) (end -0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 7662e922-3341-45a3-a40e-ef05ee43b8f4)) - (fp_line (start 0.8 0.4125) (end 0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 4dff6ff7-e4d2-4d28-a161-b6928723d6ef)) - (pad "1" smd roundrect (at -0.9125 0 90) (size 0.975 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) - (net 41 "Net-(Q4-G)") (pintype "passive") (tstamp 561947f8-c220-4985-9bad-4dad352a6c32)) - (pad "2" smd roundrect (at 0.9125 0 90) (size 0.975 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) - (net 3 "+12V") (pintype "passive") (tstamp d15557ca-365d-4f5c-97ce-439030606939)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Diode_SMD:D_SMA_Handsoldering" (layer "B.Cu") - (tstamp bd3da3fb-099e-41a4-af47-8a1d9b993ec8) - (at 96.012 115.022 -90) - (descr "Diode SMA (DO-214AC) Handsoldering") - (tags "Diode SMA (DO-214AC) Handsoldering") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "Sim.Device" "D") - (property "Sim.Pins" "1=K 2=A") - (property "ki_description" "Diode") - (property "ki_keywords" "diode") - (path "/5d0ed76a-29be-4a04-94ee-7e2065dbfdf7") - (attr smd) - (fp_text reference "D12" (at 5.374 -0.254 -180) (layer "B.SilkS") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp e8b33097-3617-4a9d-bce1-83832e348bc3) - ) - (fp_text value "1N4007" (at 0 -2.6 90) (layer "B.Fab") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp 6e5ad49f-74c4-431d-b5c8-d8eb9e76c679) - ) - (fp_text user "${REFERENCE}" (at 0 2.5 90) (layer "B.Fab") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp a7fe8db7-b87c-4cc1-b910-1ea39d53eeb3) - ) - (fp_line (start -4.51 -1.65) (end 2.5 -1.65) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp cc7234c0-aac9-4ea5-ba67-5e7f6115df0f)) - (fp_line (start -4.51 1.65) (end -4.51 -1.65) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 7a80db34-d847-473c-a9cd-f6ff36f7cb47)) - (fp_line (start -4.51 1.65) (end 2.5 1.65) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 3c1a32ea-fa42-4e40-8486-cd18355d975a)) - (fp_line (start -4.5 -1.75) (end -4.5 1.75) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 7551958c-3c1e-4f7e-8708-d89e1d2752b4)) - (fp_line (start -4.5 1.75) (end 4.5 1.75) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 2d9bff60-2899-47cb-8329-91e1b0a000a8)) - (fp_line (start 4.5 -1.75) (end -4.5 -1.75) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp fec4706a-2342-451f-b902-1f96b6fbf05b)) - (fp_line (start 4.5 1.75) (end 4.5 -1.75) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 06ab00b0-1aa7-4bee-b23f-c7cf31c1e7cb)) - (fp_line (start -2.3 -1.5) (end -2.3 1.5) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp c16b6e29-b853-4d1b-addc-48e4f01ce9d0)) - (fp_line (start -0.64944 -0.00102) (end -1.55114 -0.00102) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 644dd39e-1975-4327-8a1c-9a0c5357e32d)) - (fp_line (start -0.64944 -0.00102) (end 0.50118 -0.75032) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp f3dec44e-ba3c-461f-a8b9-c37ab22649fb)) - (fp_line (start -0.64944 -0.00102) (end 0.50118 0.79908) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp cf786869-f08e-44c0-9221-65a9c4e37f1b)) - (fp_line (start -0.64944 0.79908) (end -0.64944 -0.80112) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp b9c64960-b818-486d-b6c7-fe353649371f)) - (fp_line (start 0.50118 -0.75032) (end 0.50118 0.79908) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp e58b3e69-2552-428d-84b3-3cc8f6adb554)) - (fp_line (start 0.50118 -0.00102) (end 1.4994 -0.00102) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 19c51945-4b68-4efc-a9aa-c1c3e83512b5)) - (fp_line (start 2.3 -1.5) (end -2.3 -1.5) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 943bee36-22fe-4bd4-be8f-28b6014028bd)) - (fp_line (start 2.3 1.5) (end -2.3 1.5) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 79b3e27c-ddfb-4f50-972b-9bbf419d65d0)) - (fp_line (start 2.3 1.5) (end 2.3 -1.5) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 14cbc266-bf0c-426a-88f9-ce326a086254)) - (pad "1" smd roundrect (at -2.5 0 270) (size 3.5 1.8) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.1388888889) - (net 21 "Net-(D11-A)") (pinfunction "K") (pintype "passive") (tstamp 15c146a7-e4e7-402a-acdf-537105287d47)) - (pad "2" smd roundrect (at 2.5 0 270) (size 3.5 1.8) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.1388888889) - (net 2 "GND") (pinfunction "A") (pintype "passive") (tstamp e12c592c-54f2-4a00-ac30-fc01aa42eea6)) - (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "B.Cu") - (tstamp c0ff5c41-2474-45b0-af6a-4a1502e5198a) - (at 106.2755 95.758) - (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags "resistor handsolder") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Resistor") - (property "ki_keywords" "R res resistor") - (path "/af43825a-4cd6-463e-ba5c-53cfcfa975cb") - (attr smd) - (fp_text reference "R15" (at 1.8523 -1.4732) (layer "B.SilkS") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp 4aec99f9-5d68-436d-9901-01e693af8d31) - ) - (fp_text value "100" (at 0 -1.43) (layer "B.Fab") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp b8be6fa0-c1fa-408b-a306-5154d772d3cd) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab") - (effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror)) - (tstamp c5235afb-74ed-4162-b764-0622f8d299e2) - ) - (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 3409932f-18d7-45a8-a1c9-229c00345791)) - (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp d8737d63-222d-4217-8da6-203d75be56a2)) - (fp_line (start -1.65 -0.73) (end -1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp ab5807e9-9119-4788-9665-5f845d7d85ec)) - (fp_line (start -1.65 0.73) (end 1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 6f2a598f-e3d6-4504-afdc-2e6612afe027)) - (fp_line (start 1.65 -0.73) (end -1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp b380af91-9fec-49ae-8c19-4176a7185f83)) - (fp_line (start 1.65 0.73) (end 1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp cffc17ba-00d6-44cb-b75c-588e11de19db)) - (fp_line (start -0.8 -0.4125) (end -0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp e74f1e39-622b-4ec2-babc-023db272a7f9)) - (fp_line (start -0.8 0.4125) (end 0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 9868df3a-8db8-4cb3-b635-e5fbf734b3f6)) - (fp_line (start 0.8 -0.4125) (end -0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 2a36c764-c908-4900-979b-b317ccdfbfcc)) - (fp_line (start 0.8 0.4125) (end 0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 2b06b079-4de3-40bd-9c54-f805f98a19e0)) - (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) - (net 48 "Net-(U4-sense)") (pintype "passive") (tstamp 622b5e5a-9e22-49b3-a120-a55961c06ec1)) - (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pintype "passive") (tstamp 075bbc62-b771-498d-89f3-31e0a2cf0813)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" (layer "B.Cu") - (tstamp dc37e0ca-9e3f-4b2b-8845-3526a73c9c9e) - (at 88.3797 96.139 180) - (descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags "capacitor handsolder") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Unpolarized capacitor") - (property "ki_keywords" "cap capacitor") - (path "/d3f87295-91a4-48f0-b1d7-f08b2ab4b533") - (attr smd) - (fp_text reference "C2" (at 0 1.85) (layer "B.SilkS") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp e5629f75-3d78-4efe-8230-49b35e0e07b1) - ) - (fp_text value "10u" (at 0 -1.85) (layer "B.Fab") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp c4dd1082-d8cf-4422-9c48-27f49aa98d1c) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab") - (effects (font (size 0.8 0.8) (thickness 0.12)) (justify mirror)) - (tstamp acfc5b25-6718-4bef-87cb-1128a5749ee3) - ) - (fp_line (start -0.711252 -0.91) (end 0.711252 -0.91) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp e5d9c47d-c9a3-4591-8917-20bc0d45f3cc)) - (fp_line (start -0.711252 0.91) (end 0.711252 0.91) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 4ab51e9c-1c11-4de1-9926-8b8b95c93574)) - (fp_line (start -2.48 -1.15) (end -2.48 1.15) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 1d788159-f6de-494c-a192-5b9b19141446)) - (fp_line (start -2.48 1.15) (end 2.48 1.15) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 4da1b58b-ab0d-40cc-974e-92dad9234dc6)) - (fp_line (start 2.48 -1.15) (end -2.48 -1.15) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 23bbf712-04cf-477e-af8f-50a214d90fb5)) - (fp_line (start 2.48 1.15) (end 2.48 -1.15) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 7724d03a-d9cb-40a8-aba7-332e8c091f45)) - (fp_line (start -1.6 -0.8) (end -1.6 0.8) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp cd8d550f-49bd-474e-9931-dadecd502118)) - (fp_line (start -1.6 0.8) (end 1.6 0.8) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp d2322ea9-380c-4c7d-a54a-af20a748cc7c)) - (fp_line (start 1.6 -0.8) (end -1.6 -0.8) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 015021f3-0b59-4dd2-8554-f3b28dab487b)) - (fp_line (start 1.6 0.8) (end 1.6 -0.8) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp b63f259a-0d4d-4e04-a02f-20e1f9c6fff0)) - (pad "1" smd roundrect (at -1.5625 0 180) (size 1.325 1.8) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.188679) - (net 2 "GND") (pintype "passive") (tstamp 670eff70-db90-4f41-8208-27c3eb43e3e0)) - (pad "2" smd roundrect (at 1.5625 0 180) (size 1.325 1.8) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.188679) - (net 3 "+12V") (pintype "passive") (tstamp 66ceda6c-1f9e-4022-905f-fdf5430412f8)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Jumper:SolderJumper-2_P1.3mm_Open_TrianglePad1.0x1.5mm" (layer "B.Cu") - (tstamp e4c71ed4-9333-4c5f-9bd5-3ce8a1022bba) - (at 82.333 72.644) - (descr "SMD Solder Jumper, 1x1.5mm Triangular Pads, 0.3mm gap, open") - (tags "solder jumper open") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Solder Jumper, 2-pole, open") - (property "ki_keywords" "solder jumper SPST") - (path "/19703c99-93cd-42bd-a514-95881437d720") - (attr exclude_from_pos_files) - (fp_text reference "JP1" (at 0 1.8) (layer "B.SilkS") hide - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp f87d6be7-a885-4dbe-97e9-d0c633246132) - ) - (fp_text value "Term" (at 3.519 -0.254 180) (layer "B.SilkS") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp 111aa337-aa2b-4d5b-9abc-e5b96758556b) - ) - (fp_line (start -1.4 -1) (end -1.4 1) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp d97a0133-7a30-4754-be86-330365832d7c)) - (fp_line (start -1.4 1) (end 1.4 1) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 6dd4b1b2-51d6-4c89-9576-c0e6f29b05aa)) - (fp_line (start 1.4 -1) (end -1.4 -1) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 2a9c7554-662d-4fc8-bf27-e4406b4f6c67)) - (fp_line (start 1.4 1) (end 1.4 -1) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 6063e0c1-f0ba-4a85-bbe9-04ed48c17a26)) - (fp_line (start -1.65 1.25) (end -1.65 -1.25) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 5fc88b26-21cb-481f-a5e0-c0fdabe5487e)) - (fp_line (start -1.65 1.25) (end 1.65 1.25) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 0322f20f-b062-4c00-b073-64209ce275bd)) - (fp_line (start 1.65 -1.25) (end -1.65 -1.25) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 2f8fcaa9-c4fb-4516-a235-c80c432e1d78)) - (fp_line (start 1.65 -1.25) (end 1.65 1.25) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 8172d464-8955-4d22-a2e4-2216c13ef03a)) - (pad "1" smd custom (at -0.725 0) (size 0.3 0.3) (layers "B.Cu" "B.Mask") - (net 22 "/CANL") (pinfunction "A") (pintype "passive") (zone_connect 2) (thermal_bridge_angle 45) - (options (clearance outline) (anchor rect)) - (primitives - (gr_poly - (pts - (xy 1 0) - (xy 0.5 -0.75) - (xy -0.5 -0.75) - (xy -0.5 0.75) - (xy 0.5 0.75) - ) - (width 0) (fill yes)) - ) (tstamp 21c0f77d-1515-4e08-bbc9-6ca29be19c0a)) - (pad "2" smd custom (at 0.725 0) (size 0.3 0.3) (layers "B.Cu" "B.Mask") - (net 36 "Net-(JP1-B)") (pinfunction "B") (pintype "passive") (zone_connect 2) (thermal_bridge_angle 45) - (options (clearance outline) (anchor rect)) - (primitives - (gr_poly - (pts - (xy 0.5 -0.75) - (xy -0.65 -0.75) - (xy -0.15 0) - (xy -0.65 0.75) - (xy 0.5 0.75) - ) - (width 0) (fill yes)) - ) (tstamp fdead4d1-654b-4dcc-b100-40c92f631be7)) - ) - - (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "B.Cu") - (tstamp f56849ee-6fc1-4623-b112-51691512faf6) - (at 128.4205 94.742 180) - (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags "resistor handsolder") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Resistor") - (property "ki_keywords" "R res resistor") - (path "/2f12e7c2-219f-416a-bbee-2bbdd41dfc34") - (attr smd) - (fp_text reference "R19" (at -3.1515 0 180) (layer "B.SilkS") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp 859b0de0-6dc6-430f-b6fb-3c9fb5526195) - ) - (fp_text value "10k" (at 0 -1.43) (layer "B.Fab") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp 9b2c7917-800d-4ebc-9f26-1bc920b1cab8) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab") - (effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror)) - (tstamp f5b969e4-8c70-4d1c-a980-105e37d68fea) - ) - (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 05bd24c6-ddd6-451e-ba17-ff68a25caa60)) - (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 3df66015-1107-4c69-9683-d917e29313f6)) - (fp_line (start -1.65 -0.73) (end -1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 6fa44ad6-a668-4ed5-982c-db75af0a3829)) - (fp_line (start -1.65 0.73) (end 1.65 0.73) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 669fc6e6-8a70-4d0a-b51f-84858bc37fa0)) - (fp_line (start 1.65 -0.73) (end -1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp edd6a72f-3a37-4680-b0f6-3bae4b1ad1a3)) - (fp_line (start 1.65 0.73) (end 1.65 -0.73) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp eb04c87d-c973-4f6d-95d8-d0d5f6ef9586)) - (fp_line (start -0.8 -0.4125) (end -0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 53206d51-3f7c-4e79-b4e2-eb40bef37d4a)) - (fp_line (start -0.8 0.4125) (end 0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 66706280-f878-413e-b150-8304718bf246)) - (fp_line (start 0.8 -0.4125) (end -0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 467b903a-80e8-435d-9a4b-5430996393b8)) - (fp_line (start 0.8 0.4125) (end 0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 21ebb8bb-5ff7-4e58-8154-bf349acdf054)) - (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pintype "passive") (tstamp bdbaea73-d50a-4759-9927-19dfb931e2f8)) - (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) - (net 50 "/L_DOWN") (pintype "passive") (tstamp a19c6984-82f8-446c-a35f-875ee623e354)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Diode_SMD:D_SMA_Handsoldering" (layer "B.Cu") - (tstamp f6900607-1b76-4236-bbac-f29889c2f660) - (at 91.948 115.022 90) - (descr "Diode SMA (DO-214AC) Handsoldering") - (tags "Diode SMA (DO-214AC) Handsoldering") - (property "Sheetfile" "windshield.kicad_sch") - (property "Sheetname" "") - (property "Sim.Device" "D") - (property "Sim.Pins" "1=K 2=A") - (property "ki_description" "Diode") - (property "ki_keywords" "diode") - (path "/c899a0e9-ef4c-40c2-93f7-5ac59aaf87c6") - (attr smd) - (fp_text reference "D11" (at -5.3994 0.0254 180) (layer "B.SilkS") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp 54693335-d54b-4d9e-882c-aef0dcf94907) - ) - (fp_text value "1N4007" (at 0 -2.6 90) (layer "B.Fab") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp 0c3d057f-8fec-441b-8fbc-a7b1d986090f) - ) - (fp_text user "${REFERENCE}" (at 0 2.5 90) (layer "B.Fab") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp 331d3af9-d1f6-4587-8334-c40befd84cbd) - ) - (fp_line (start -4.51 -1.65) (end 2.5 -1.65) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp e3d3c8c7-4d49-4aa8-b9db-c9039dae6beb)) - (fp_line (start -4.51 1.65) (end -4.51 -1.65) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp c82d08e9-cbcc-4c7f-9196-7a3fe9ca52ed)) - (fp_line (start -4.51 1.65) (end 2.5 1.65) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp f8b4943d-68ca-4227-b042-39b47f6cf521)) - (fp_line (start -4.5 -1.75) (end -4.5 1.75) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp c0d485dc-a2bd-43a4-9eb7-75a17258741d)) - (fp_line (start -4.5 1.75) (end 4.5 1.75) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 7f89555d-ff80-4c3a-9cd7-6513474194cb)) - (fp_line (start 4.5 -1.75) (end -4.5 -1.75) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 6552807e-5982-41ff-bf5d-c1cea19beb18)) - (fp_line (start 4.5 1.75) (end 4.5 -1.75) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 0d7902c3-0bfd-443c-b0ea-ff20552c0f31)) - (fp_line (start -2.3 -1.5) (end -2.3 1.5) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 2b9cf69d-e35b-4003-9400-f28974597282)) - (fp_line (start -0.64944 -0.00102) (end -1.55114 -0.00102) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 0721108a-e056-47eb-9e27-59e148df1584)) - (fp_line (start -0.64944 -0.00102) (end 0.50118 -0.75032) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 897eb76b-7c5a-4918-bfd7-04384eb5e9fa)) - (fp_line (start -0.64944 -0.00102) (end 0.50118 0.79908) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp a923bf76-30d0-4269-ad80-6a4562cbb2b0)) - (fp_line (start -0.64944 0.79908) (end -0.64944 -0.80112) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 1e31f5fb-2bb7-4a56-a860-4d82cd0611e8)) - (fp_line (start 0.50118 -0.75032) (end 0.50118 0.79908) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp e83d43a1-d0c5-45df-94d9-8e51274affb4)) - (fp_line (start 0.50118 -0.00102) (end 1.4994 -0.00102) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 6cb28784-d113-45c8-9e77-b0ad6a53ed3a)) - (fp_line (start 2.3 -1.5) (end -2.3 -1.5) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp eaf2db51-253b-4b89-958d-965c465bc58e)) - (fp_line (start 2.3 1.5) (end -2.3 1.5) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 83c6ae2d-1d6a-4fe6-9e8d-adae4d24e79d)) - (fp_line (start 2.3 1.5) (end 2.3 -1.5) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp eded2051-e434-4207-a19d-077f972e5257)) - (pad "1" smd roundrect (at -2.5 0 90) (size 3.5 1.8) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.1388888889) - (net 3 "+12V") (pinfunction "K") (pintype "passive") (tstamp fcb99350-f272-4917-81d3-02c2f17ace11)) - (pad "2" smd roundrect (at 2.5 0 90) (size 3.5 1.8) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.1388888889) - (net 21 "Net-(D11-A)") (pinfunction "A") (pintype "passive") (tstamp 25fe4fb7-50a7-4b67-839b-cc8bc19393c9)) - (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (gr_rect (start 70.5 70.5) (end 136.5 124.5) - (stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp d0e5046d-1956-4cb9-a297-f4bb848db438)) - (gr_text "-\n+" (at 133.604 116.4082) (layer "F.SilkS") (tstamp 04bf7282-9a75-4a3e-b148-6e9cf53e1079) - (effects (font (size 1 1) (thickness 0.15)) (justify left bottom)) - ) - (gr_text "Tx Rx Gnd" (at 117.9322 86.0298) (layer "F.SilkS") (tstamp 1633eac5-1a17-42d5-8efa-5338c753061e) - (effects (font (size 1 1) (thickness 0.2) bold) (justify left bottom)) - ) - (gr_text "-\nUP" (at 113.538 119.3546) (layer "F.SilkS") (tstamp 7e8da2b7-9138-40aa-a2e6-caccdbbe1d31) - (effects (font (size 1.5 1.5) (thickness 0.15)) (justify left bottom)) - ) - (gr_text "+12V\nHot@On\nGnd" (at 73.2282 119.0498) (layer "F.SilkS") (tstamp a3aeeeb9-6a0c-44c4-82bb-5ad7c646b3db) - (effects (font (size 1 1) (thickness 0.15)) (justify left bottom)) - ) - (gr_text "NRST\nBoot0\n3v3\nGnd\nSWDIO\nSWCLK" (at 114.7064 74.0918 90) (layer "F.SilkS") (tstamp a660a47c-5921-4b98-a1a9-7da1dd42d39b) - (effects (font (size 0.8 0.8) (thickness 0.15)) (justify right bottom)) - ) - (gr_text "3.3\nUp\nDwn\nGnd" (at 133.1214 80.01) (layer "F.SilkS") (tstamp a7b593d3-0976-47c6-b847-b617669f5b52) - (effects (font (size 1 1) (thickness 0.15)) (justify left bottom)) - ) - (gr_text "UP" (at 131.3688 115.5954) (layer "F.SilkS") (tstamp b5a1cfb9-6a08-477b-9649-d8cdac5dddfa) - (effects (font (size 1 1) (thickness 0.15)) (justify left bottom)) - ) - (gr_text "Dwn\nUp\nGnd" (at 132.8928 89.0016) (layer "F.SilkS") (tstamp b60408b1-0df3-48c0-9afc-620d8dbc294a) - (effects (font (size 1 1) (thickness 0.15)) (justify left bottom)) - ) - (gr_text "CANL\nCANH" (at 76.454 77.47) (layer "F.SilkS") (tstamp b6e59aa7-b4a0-401a-acf0-145d25220115) - (effects (font (size 1 1) (thickness 0.15)) (justify left bottom)) - ) - (gr_text "+\nUP" (at 129.2098 119.7102) (layer "F.SilkS") (tstamp e320626d-489b-46c6-b78c-7fabe8fd904e) - (effects (font (size 1.5 1.5) (thickness 0.15)) (justify bottom)) - ) - (dimension (type aligned) (layer "Dwgs.User") (tstamp 0f320e78-2e32-41f6-9a9e-e510dc8acf63) - (pts (xy 70.5 70.5) (xy 136.5 70.5)) - (height -2.5) - (gr_text "66.0000 mm" (at 103.5 66.85) (layer "Dwgs.User") (tstamp 0f320e78-2e32-41f6-9a9e-e510dc8acf63) - (effects (font (size 1 1) (thickness 0.15))) - ) - (format (prefix "") (suffix "") (units 3) (units_format 1) (precision 4)) - (style (thickness 0.15) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0.5) keep_text_aligned) - ) - (dimension (type aligned) (layer "Dwgs.User") (tstamp 5e2956a3-0593-4e7f-82b7-59a7ffe40e9c) - (pts (xy 136.5 70.5) (xy 136.5 124.5)) - (height -3.5) - (gr_text "54.0000 mm" (at 138.85 97.5 90) (layer "Dwgs.User") (tstamp 5e2956a3-0593-4e7f-82b7-59a7ffe40e9c) - (effects (font (size 1 1) (thickness 0.15))) - ) - (format (prefix "") (suffix "") (units 3) (units_format 1) (precision 4)) - (style (thickness 0.15) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0.5) keep_text_aligned) - ) - - (segment (start 83.9716 84.9876) (end 83.9716 83.4144) (width 0.5) (layer "F.Cu") (net 1) (tstamp 03a8ff27-6bd6-4918-96a6-fe6dcc2c9982)) - (segment (start 83.9716 93.2942) (end 81.7118 93.2942) (width 0.5) (layer "F.Cu") (net 1) (tstamp 0bdc4c2e-f969-4e88-9515-94bffc97a2af)) - (segment (start 85.852 81.026) (end 85.852 82.804) (width 0.5) (layer "F.Cu") (net 1) (tstamp 0e664727-e8a4-4db3-ae88-625ee4c0391f)) - (segment (start 100.5332 78.9178) (end 99.187 80.264) (width 0.5) (layer "F.Cu") (net 1) (tstamp 13a5a6f4-e0fd-4fc4-a728-81153fcedd1b)) - (segment (start 85.852 82.804) (end 87.575 82.804) (width 0.5) (layer "F.Cu") (net 1) (tstamp 16898c56-1c01-48f9-9a80-3709b12bcccd)) - (segment (start 81.9396 84.9876) (end 81.28 84.328) (width 0.5) (layer "F.Cu") (net 1) (tstamp 1795e859-dcc6-4639-a896-621ef9a0fa75)) - (segment (start 104.902 75.692) (end 102.616 75.692) (width 0.3) (layer "F.Cu") (net 1) (tstamp 35d95c82-b018-4580-b293-2e5ae4d31814)) - (segment (start 102.616 75.692) (end 101.1428 75.692) (width 0.5) (layer "F.Cu") (net 1) (tstamp 3783da61-52b2-4d4f-b574-fff4b85abe48)) - (segment (start 84.582 82.804) (end 85.852 82.804) (width 0.5) (layer "F.Cu") (net 1) (tstamp 39e1a286-00d6-43da-98e7-8a3a6f496b70)) - (segment (start 81.534 82.296) (end 81.534 84.074) (width 0.3) (layer "F.Cu") (net 1) (tstamp 5098c435-50f3-461f-b430-43faf6f3f74a)) - (segment (start 86.106 88.646) (end 83.9716 88.646) (width 0.3) (layer "F.Cu") (net 1) (tstamp 60189272-8b47-476d-89bb-55e95089a077)) - (segment (start 101.1428 75.692) (end 100.5332 76.3016) (width 0.5) (layer "F.Cu") (net 1) (tstamp 61d3cc38-b699-41fe-bcce-31d2e18b84e6)) - (segment (start 86.614 80.264) (end 85.852 81.026) (width 0.5) (layer "F.Cu") (net 1) (tstamp 6ad21d51-3c50-4c21-9ece-2782f6295e0d)) - (segment (start 83.9716 88.646) (end 83.9716 84.9876) (width 0.5) (layer "F.Cu") (net 1) (tstamp a15fe476-e289-4f6b-96f4-5dd59d7fa1bc)) - (segment (start 83.9716 93.2942) (end 83.9716 88.646) (width 0.5) (layer "F.Cu") (net 1) (tstamp c8bad23b-95a9-4d54-a302-6cc4bf3d3d8e)) - (segment (start 99.187 80.264) (end 86.614 80.264) (width 0.5) (layer "F.Cu") (net 1) (tstamp e7370830-030e-4b37-96ec-a6938683d463)) - (segment (start 83.9716 84.9876) (end 81.9396 84.9876) (width 0.5) (layer "F.Cu") (net 1) (tstamp e749e14e-3aad-4187-bef7-70d038a6ce87)) - (segment (start 81.534 84.074) (end 81.28 84.328) (width 0.3) (layer "F.Cu") (net 1) (tstamp eccee6cf-c656-4d76-9eac-eec296c89607)) - (segment (start 87.575 82.804) (end 87.641 82.87) (width 0.5) (layer "F.Cu") (net 1) (tstamp ed65390c-91c3-466d-adba-19c66f41fe0e)) - (segment (start 100.5332 76.3016) (end 100.5332 78.9178) (width 0.5) (layer "F.Cu") (net 1) (tstamp f5275e9f-0108-49cf-9ef0-a4631a112e2a)) - (segment (start 83.9716 83.4144) (end 84.582 82.804) (width 0.5) (layer "F.Cu") (net 1) (tstamp f865ca5f-4e27-4c8b-83f5-ff490f9665f1)) - (segment (start 81.7118 93.2942) (end 81.6864 93.2688) (width 0.5) (layer "F.Cu") (net 1) (tstamp fc444e55-7bc6-4b1e-98f3-ad824a10108a)) - (segment (start 77.4852 88.585) (end 76.8858 87.9856) (width 0.3) (layer "F.Cu") (net 2) (tstamp 03009570-aacc-4df8-b6b7-5873eae29333)) - (segment (start 112.6415 90.9766) (end 112.6415 92.0675) (width 0.3) (layer "F.Cu") (net 2) (tstamp 03cf2768-99cb-43bc-828d-d64b1791027a)) - (segment (start 105.156 107.696) (end 105.156 103.378) (width 0.3) (layer "F.Cu") (net 2) (tstamp 04df25b7-5514-467f-9bcc-350439431080)) - (segment (start 107.188 80.082902) (end 107.670302 79.6006) (width 0.3) (layer "F.Cu") (net 2) (tstamp 0a04daaf-3181-41bc-b023-7f2751cc7653)) - (segment (start 99.187 93.8022) (end 97.6376 95.3516) (width 0.5) (layer "F.Cu") (net 2) (tstamp 0d4755dd-7345-41b2-a244-f565be4c8852)) - (segment (start 121.2342 104.3686) (end 120.015 105.5878) (width 0.3) (layer "F.Cu") (net 2) (tstamp 0dff0034-c371-432d-b5ba-513a6f0033c4)) - (segment (start 108.1415 82.6516) (end 108.1415 81.4715) (width 0.3) (layer "F.Cu") (net 2) (tstamp 0fe43bb9-0e70-423b-ac66-c88c802f40dc)) - (segment (start 72.8218 88.011) (end 72.8218 84.1502) (width 0.3) (layer "F.Cu") (net 2) (tstamp 121520b4-1187-470f-b70a-41a1697cd7f2)) - (segment (start 102.108 82.804) (end 101.0158 82.804) (width 0.3) (layer "F.Cu") (net 2) (tstamp 14085b54-675c-4b3d-9907-8e9fff4f5f75)) - (segment (start 94.2848 95.3516) (end 93.4974 96.139) (width 0.5) (layer "F.Cu") (net 2) (tstamp 141112c6-830b-4778-bb4e-066245446bd5)) - (segment (start 86.106 84.836) (end 89.916 88.646) (width 0.3) (layer "F.Cu") (net 2) (tstamp 19a61a0c-e591-4286-b55e-a6d1239856fa)) - (segment (start 94.2848 95.3516) (end 94.2848 91.1098) (width 0.3) (layer "F.Cu") (net 2) (tstamp 1bc1d92f-1c8d-4ea3-871a-05211b5532f5)) - (segment (start 75.946 109.728) (end 75.946 115.4684) (width 3) (layer "F.Cu") (net 2) (tstamp 1bde63e5-5219-47a9-8f96-d05cf0551675)) - (segment (start 116.84 83.566) (end 118.5418 81.8642) (width 0.3) (layer "F.Cu") (net 2) (tstamp 1ee0132c-02b5-4cc6-bda0-bf5bfaaf8222)) - (segment (start 120.015 105.5878) (end 120.015 108.6612) (width 0.3) (layer "F.Cu") (net 2) (tstamp 2117dc00-77b7-49c6-9bcf-0d562c512e34)) - (segment (start 80.8736 120.396) (end 99.568 120.396) (width 3) (layer "F.Cu") (net 2) (tstamp 244425ee-3345-4d4c-a2ec-e004f2863ad3)) - (segment (start 75.946 115.4684) (end 80.8736 120.396) (width 3) (layer "F.Cu") (net 2) (tstamp 25782083-406c-4af3-85d0-7a4326bad523)) - (segment (start 112.474 102.428) (end 113.6994 101.2026) (width 0.3) (layer "F.Cu") (net 2) (tstamp 293204e9-63cd-4158-a44f-d0e904ac89e4)) - (segment (start 90.7542 87.8078) (end 89.916 88.646) (width 0.3) (layer "F.Cu") (net 2) (tstamp 2df71cba-7b98-447e-84b4-f4ea46e3b34d)) - (segment (start 99.568 120.396) (end 108.2802 120.396) (width 1) (layer "F.Cu") (net 2) (tstamp 2e69d2bf-365f-4d40-aec1-ea756b35078a)) - (segment (start 100.838 89.789) (end 101.3714 89.2556) (width 0.3) (layer "F.Cu") (net 2) (tstamp 2f7866b0-21bd-46eb-8b1d-5f22353ecbbe)) - (segment (start 100.838 91.059) (end 100.838 90.424) (width 0.3) (layer "F.Cu") (net 2) (tstamp 347aca0d-424d-4abb-b119-4a646f766710)) - (segment (start 108.6358 101.5746) (end 113.3274 101.5746) (width 0.3) (layer "F.Cu") (net 2) (tstamp 37d929fd-4107-47e7-95bb-a09db668ba26)) - (segment (start 129.032 105.2576) (end 129.1082 105.3338) (width 0.3) (layer "F.Cu") (net 2) (tstamp 3ac14978-862f-4885-856c-6aa1bbd41541)) - (segment (start 76.8858 87.9856) (end 73.9648 87.9856) (width 0.3) (layer "F.Cu") (net 2) (tstamp 3ac4ba51-daed-49e4-ad79-cdc7c7225249)) - (segment (start 102.616 88.646) (end 101.981 88.646) (width 0.3) (layer "F.Cu") (net 2) (tstamp 42896229-0ad4-42bc-b6b1-fe1aa8fa4aba)) - (segment (start 108.6358 96.393) (end 106.045 93.8022) (width 0.3) (layer "F.Cu") (net 2) (tstamp 46556796-11e5-48c3-b879-c9e871137726)) - (segment (start 106.045 93.8022) (end 99.187 93.8022) (width 0.5) (layer "F.Cu") (net 2) (tstamp 497453e7-7c92-46b6-9d42-163c11842c1b)) - (segment (start 106.9594 101.5746) (end 108.6358 101.5746) (width 0.3) (layer "F.Cu") (net 2) (tstamp 4e287df7-4f18-40d0-8b8e-d1b915371f31)) - (segment (start 128.1938 103.124) (end 129.032 102.2858) (width 0.3) (layer "F.Cu") (net 2) (tstamp 52e69f8c-e57f-4f9d-b90c-f87a8733c250)) - (segment (start 113.231 92.657) (end 116.586 92.657) (width 0.3) (layer "F.Cu") (net 2) (tstamp 54c346f8-d8e1-4ea2-a9d2-f0487158e488)) - (segment (start 129.032 102.2858) (end 129.032 105.2576) (width 0.3) (layer "F.Cu") (net 2) (tstamp 54f72482-0cd1-4220-8ff5-17f5dec95945)) - (segment (start 113.3274 101.5746) (end 113.6994 101.2026) (width 0.3) (layer "F.Cu") (net 2) (tstamp 60b3829f-c27c-45aa-b3b4-713af4231729)) - (segment (start 111.633 78.566) (end 112.569 79.502) (width 0.3) (layer "F.Cu") (net 2) (tstamp 610d9851-96a6-498f-b2df-555d2def1f46)) - (segment (start 126.764 103.124) (end 128.1938 103.124) (width 0.3) (layer "F.Cu") (net 2) (tstamp 6d830233-87ea-4d01-a0f0-5dfd6df483ca)) - (segment (start 73.9648 87.9856) (end 72.8472 87.9856) (width 0.3) (layer "F.Cu") (net 2) (tstamp 74820b8d-a84c-4c83-8952-f06f48358075)) - (segment (start 118.5418 81.8642) (end 118.5418 81.28) (width 0.3) (layer "F.Cu") (net 2) (tstamp 76928c42-aa01-4a78-a2de-46734d48387f)) - (segment (start 89.281 91.1098) (end 87.0966 93.2942) (width 0.3) (layer "F.Cu") (net 2) (tstamp 7bb245b5-97cf-4fb1-98a3-0ab7e6095ab6)) - (segment (start 101.0158 82.804) (end 100.6348 82.423) (width 0.3) (layer "F.Cu") (net 2) (tstamp 7cdac99d-db67-467f-85eb-09ba568efe65)) - (segment (start 89.916 91.1098) (end 89.281 91.1098) (width 0.3) (layer "F.Cu") (net 2) (tstamp 7ceb5bfa-14d9-480b-98e7-51faa62502f7)) - (segment (start 77.4852 89.1794) (end 77.4852 88.585) (width 0.3) (layer "F.Cu") (net 2) (tstamp 7e57c77b-dd85-45a0-9e5f-45e7ddc03964)) - (segment (start 102.616 76.962) (end 104.447 76.962) (width 0.3) (layer "F.Cu") (net 2) (tstamp 7e704021-40a5-4eea-859a-9e9af9c3484e)) - (segment (start 129.032 100.838) (end 129.032 102.2858) (width 0.3) (layer "F.Cu") (net 2) (tstamp 8222d17c-f8c8-48c3-b8b6-0b649a43ea5b)) - (segment (start 72.7202 106.5022) (end 75.946 109.728) (width 0.3) (layer "F.Cu") (net 2) (tstamp 83241ef6-d693-494e-96df-9eea2016aa14)) - (segment (start 108.2802 120.396) (end 112.268 116.4082) (width 1) (layer "F.Cu") (net 2) (tstamp 87e795eb-0dd0-4a33-b122-5aa17aef7290)) - (segment (start 83.7692 80.2132) (end 77.7278 80.2132) (width 0.5) (layer "F.Cu") (net 2) (tstamp 8906f31a-8afe-4eda-ac0a-e18563b546f6)) - (segment (start 120.015 108.6612) (end 112.268 116.4082) (width 0.3) (layer "F.Cu") (net 2) (tstamp 8ac20e73-3143-4763-abfe-c7f44bb7e0a8)) - (segment (start 108.1415 81.4715) (end 107.188 80.518) (width 0.3) (layer "F.Cu") (net 2) (tstamp 8ccf14f3-0ea4-4eab-8faa-2bcd83cdbea4)) - (segment (start 104.447 76.962) (end 104.902 77.417) (width 0.3) (layer "F.Cu") (net 2) (tstamp 8d4982ac-f819-4e5d-b04a-e91e2de728d2)) - (segment (start 116.586 92.657) (end 118.2856 92.657) (width 0.3) (layer "F.Cu") (net 2) (tstamp 8f7dfa9e-5f61-4479-865c-7c3c37f99b2c)) - (segment (start 95.4786 87.8078) (end 90.7542 87.8078) (width 0.3) (layer "F.Cu") (net 2) (tstamp 90dc91ef-2463-481b-85a9-3a28235d17ae)) - (segment (start 92.456 84.992) (end 91.088 84.992) (width 0.5) (layer "F.Cu") (net 2) (tstamp 91400f1f-e7af-41b8-9481-3857bd8a7fe5)) - (segment (start 108.6358 101.5746) (end 108.6358 96.393) (width 0.3) (layer "F.Cu") (net 2) (tstamp 91ac5326-dc1c-4498-a9ac-db39a4da56dd)) - (segment (start 85.852 84.836) (end 86.106 84.836) (width 0.3) (layer "F.Cu") (net 2) (tstamp 91c8b69a-2ed9-4053-b985-ddbb19ea3e10)) - (segment (start 112.6415 92.0675) (end 113.231 92.657) (width 0.3) (layer "F.Cu") (net 2) (tstamp 9516dfd5-f826-48e7-84ea-ba0744e4ced2)) - (segment (start 104.250561 87.5641) (end 103.168661 88.646) (width 0.3) (layer "F.Cu") (net 2) (tstamp a23fd1e4-449a-4efb-b388-6808e9f25793)) - (segment (start 100.1522 91.7448) (end 100.838 91.059) (width 0.3) (layer "F.Cu") (net 2) (tstamp a3811348-3d25-476b-aa51-08d7680508aa)) - (segment (start 111.633 72.2884) (end 111.633 78.566) (width 0.3) (layer "F.Cu") (net 2) (tstamp aa328721-00be-40ca-8f4d-594fac596c1c)) - (segment (start 91.088 84.992) (end 89.916 83.82) (width 0.5) (layer "F.Cu") (net 2) (tstamp aa37a07c-0198-43cd-b659-337a7678931a)) - (segment (start 118.2856 92.657) (end 121.2342 95.6056) (width 0.3) (layer "F.Cu") (net 2) (tstamp ac6fca6f-3477-4c99-8e53-5a564b70c856)) - (segment (start 72.8218 88.011) (end 72.7202 88.1126) (width 0.3) (layer "F.Cu") (net 2) (tstamp af143870-9e86-47cb-ba01-f0ca8aff1c61)) - (segment (start 97.6376 95.3516) (end 94.2848 95.3516) (width 0.5) (layer "F.Cu") (net 2) (tstamp b15d1fd1-4f27-4186-acc8-d15da3443aea)) - (segment (start 74.676 82.296) (end 75.645 82.296) (width 0.3) (layer "F.Cu") (net 2) (tstamp b4515d32-dbfb-45c1-a87e-07fa1999ca20)) - (segment (start 85.852 84.529) (end 85.852 84.836) (width 0.3) (layer "F.Cu") (net 2) (tstamp b4f73b95-a881-490e-b249-1787a336b397)) - (segment (start 92.456 84.992) (end 92.456 86.106) (width 0.3) (layer "F.Cu") (net 2) (tstamp b5188d96-15e2-41b6-853c-08d80b0f2313)) - (segment (start 85.7504 78.232) (end 83.7692 80.2132) (width 0.5) (layer "F.Cu") (net 2) (tstamp b753b1a5-b40e-4e19-96a3-3a6b82e4fd63)) - (segment (start 82.804 111.553) (end 82.804 114.554) (width 0.3) (layer "F.Cu") (net 2) (tstamp bce541e5-51a7-44f4-8daa-b943b9187d4b)) - (segment (start 77.7278 80.2132) (end 75.645 82.296) (width 0.5) (layer "F.Cu") (net 2) (tstamp c104fa8c-fecb-4673-999f-507c83506243)) - (segment (start 94.2848 91.1098) (end 97.155 91.1098) (width 0.3) (layer "F.Cu") (net 2) (tstamp c18163ab-94dd-4309-bdd1-f1d9a2419d9e)) - (segment (start 103.168661 88.646) (end 102.616 88.646) (width 0.3) (layer "F.Cu") (net 2) (tstamp c560ada8-2220-458a-8bc0-9620d965b8b6)) - (segment (start 89.916 88.646) (end 89.916 91.1098) (width 0.3) (layer "F.Cu") (net 2) (tstamp c7b5f024-ec2a-44e0-8b67-e345126526c7)) - (segment (start 104.902 77.417) (end 105.9202 77.417) (width 0.5) (layer "F.Cu") (net 2) (tstamp c9e9a9b9-fa8d-4197-a88a-120027ba8107)) - (segment (start 107.188 80.518) (end 107.188 80.082902) (width 0.3) (layer "F.Cu") (net 2) (tstamp cab878f3-a775-42d6-94e0-77d0a4579c86)) - (segment (start 114.3508 100.5512) (end 114.3508 100.0252) (width 0.3) (layer "F.Cu") (net 2) (tstamp caefa974-e798-4e3f-80bb-9f99f684fc03)) - (segment (start 105.156 103.378) (end 106.9594 101.5746) (width 0.3) (layer "F.Cu") (net 2) (tstamp ce1aa21c-e47b-49bd-b0b2-c257ed9dbc99)) - (segment (start 115.8419 84.5641) (end 116.84 83.566) (width 0.3) (layer "F.Cu") (net 2) (tstamp d4e90e67-6f10-439c-a1a2-32e55138bb69)) - (segment (start 100.838 90.424) (end 100.838 89.789) (width 0.3) (layer "F.Cu") (net 2) (tstamp d70982e5-86de-44fd-a183-e863272a50f7)) - (segment (start 72.8218 84.1502) (end 74.676 82.296) (width 0.3) (layer "F.Cu") (net 2) (tstamp d81a4820-7709-4109-9ebf-3677927a1d0e)) - (segment (start 114.554 84.5641) (end 115.8419 84.5641) (width 0.3) (layer "F.Cu") (net 2) (tstamp e1d61b5b-c05c-46af-930f-d26207fd88f1)) - (segment (start 105.9202 77.417) (end 106.68 76.6572) (width 0.5) (layer "F.Cu") (net 2) (tstamp e1fd82ae-354a-457e-b8e1-b04b3ce29ea8)) - (segment (start 97.666 78.232) (end 85.7504 78.232) (width 0.5) (layer "F.Cu") (net 2) (tstamp e21d5e82-bed6-48e3-b9a4-fa2edd296a95)) - (segment (start 105.156 107.696) (end 107.2915 107.696) (width 0.3) (layer "F.Cu") (net 2) (tstamp e62f07f4-b937-4015-9857-2a388aab60b6)) - (segment (start 94.2848 91.1098) (end 89.916 91.1098) (width 0.3) (layer "F.Cu") (net 2) (tstamp e6c4705f-71fd-4d13-b55f-8350038019d3)) - (segment (start 72.8472 87.9856) (end 72.8218 88.011) (width 0.3) (layer "F.Cu") (net 2) (tstamp eab3a406-5283-458b-8ea8-ab4bdb1f563c)) - (segment (start 72.7202 88.1126) (end 72.7202 106.5022) (width 0.3) (layer "F.Cu") (net 2) (tstamp ed81b5d2-c227-4d56-ae89-ca6a01e069b6)) - (segment (start 113.6994 101.2026) (end 114.3508 100.5512) (width 0.3) (layer "F.Cu") (net 2) (tstamp f1651caa-3498-4c67-b961-54eb1f35e139)) - (segment (start 121.2342 95.6056) (end 121.2342 104.3686) (width 0.3) (layer "F.Cu") (net 2) (tstamp f1f96da5-45f8-49d0-9bdb-a43038e66a68)) - (segment (start 106.229 87.5641) (end 104.250561 87.5641) (width 0.3) (layer "F.Cu") (net 2) (tstamp f362aba8-797c-40f4-938a-a56300785428)) - (segment (start 92.456 86.106) (end 89.916 88.646) (width 0.3) (layer "F.Cu") (net 2) (tstamp f4d5e736-ac76-4541-9104-36ae601754f8)) - (segment (start 97.155 91.1098) (end 97.79 91.7448) (width 0.3) (layer "F.Cu") (net 2) (tstamp f8781a94-3b19-44ff-a6ad-ef0858300d5d)) - (segment (start 101.981 88.646) (end 101.3714 89.2556) (width 0.3) (layer "F.Cu") (net 2) (tstamp fd0929d4-c35f-4b9a-91d5-f19389bfda2d)) - (segment (start 97.79 91.7448) (end 100.1522 91.7448) (width 0.3) (layer "F.Cu") (net 2) (tstamp ff8ee136-ca03-4235-b3cf-13e9d9d5c8c4)) - (via (at 93.4974 96.139) (size 1.2) (drill 0.8) (layers "F.Cu" "B.Cu") (net 2) (tstamp 1526a810-6a96-46e1-8651-c6287c710ee2)) - (via (at 100.6348 82.423) (size 1.2) (drill 0.8) (layers "F.Cu" "B.Cu") (net 2) (tstamp 29427caa-3a58-4e14-9a9e-61f62f550566)) - (via (at 112.268 116.4082) (size 1.2) (drill 0.8) (layers "F.Cu" "B.Cu") (net 2) (tstamp 438bb981-59bc-4a4e-8e99-2fd38209eb79)) - (via (at 106.045 93.8022) (size 1.2) (drill 0.8) (layers "F.Cu" "B.Cu") (net 2) (tstamp 6ae2a8ef-bd39-4471-ab2a-da229e739e87)) - (via (at 99.568 120.396) (size 1.2) (drill 0.8) (layers "F.Cu" "B.Cu") (net 2) (tstamp 6c85fba2-7139-4fa0-9cd5-e866b2baf310)) - (via (at 72.8218 88.011) (size 1.2) (drill 0.8) (layers "F.Cu" "B.Cu") (net 2) (tstamp 6cdda348-2ff0-403f-b628-e0aeeb8aefb7)) - (via (at 107.670302 79.6006) (size 1.2) (drill 0.8) (layers "F.Cu" "B.Cu") (net 2) (tstamp 9cf8c78d-39b7-4440-b70d-6522df7110dc)) - (via (at 129.1082 105.3338) (size 0.8) (drill 0.6) (layers "F.Cu" "B.Cu") (net 2) (tstamp d4f350e4-f674-4006-bc78-51b428ead450)) - (via (at 118.5418 81.28) (size 1.2) (drill 0.8) (layers "F.Cu" "B.Cu") (net 2) (tstamp dbc38f9f-5cb1-41c0-83d6-ca0f6c18468a)) - (via (at 106.68 76.6572) (size 1.2) (drill 0.8) (layers "F.Cu" "B.Cu") (net 2) (tstamp dfea5e08-5952-4c19-ab55-d18a3ce1f844)) - (segment (start 107.7468 93.8022) (end 110.4646 91.0844) (width 0.3) (layer "B.Cu") (net 2) (tstamp 01105a8d-9a55-4a87-bb80-454de07ad7ff)) - (segment (start 133.858 119.888) (end 135.382 118.364) (width 1) (layer "B.Cu") (net 2) (tstamp 0845e9f1-b2f5-46dc-a111-f1c53b9924eb)) - (segment (start 85.1916 76.708) (end 100.6856 76.708) (width 0.5) (layer "B.Cu") (net 2) (tstamp 0d0cfba8-dff4-4047-9285-62908e0d2907)) - (segment (start 135.382 118.364) (end 135.382 105.3846) (width 1) (layer "B.Cu") (net 2) (tstamp 159acc23-deab-417f-b769-bf744e2ea1a2)) - (segment (start 129.4074 103.3526) (end 133.35 103.3526) (width 1) (layer "B.Cu") (net 2) (tstamp 18625371-5fb2-40e2-8d9a-29476e6cbdd0)) - (segment (start 110.4646 91.0844) (end 123.9774 91.0844) (width 0.3) (layer "B.Cu") (net 2) (tstamp 2208fa1c-d743-4ff6-b685-34e6ba83a755)) - (segment (start 81.4832 76.708) (end 85.1916 76.708) (width 0.3) (layer "B.Cu") (net 2) (tstamp 247b8d6f-665b-4e22-9573-d1222003e28c)) - (segment (start 80.772 114.554) (end 82.804 114.554) (width 0.3) (layer "B.Cu") (net 2) (tstamp 2945394d-f2cb-4b85-9d10-f956219447de)) - (segment (start 106.6292 76.708) (end 106.68 76.6572) (width 0.5) (layer "B.Cu") (net 2) (tstamp 2b86a05d-10c7-4c25-96e5-464f95be7874)) - (segment (start 100.6348 82.423) (end 100.6348 76.7588) (width 0.3) (layer "B.Cu") (net 2) (tstamp 2ec21cd5-870f-4abb-9024-b62efe102ff3)) - (segment (start 89.916 81.2038) (end 85.4202 76.708) (width 0.3) (layer "B.Cu") (net 2) (tstamp 306dba59-77be-4de0-a94e-591c51c3c419)) - (segment (start 107.188 94.9452) (end 106.045 93.8022) (width 0.3) (layer "B.Cu") (net 2) (tstamp 31b95ef6-d744-43e1-abe1-c68949ff9c62)) - (segment (start 123.9774 91.0844) (end 124.7498 90.312) (width 0.3) (layer "B.Cu") (net 2) (tstamp 3350e23d-e3c5-4062-a977-1d606c2b4ae6)) - (segment (start 119.5 84) (end 119.5 83.084261) (width 0.3) (layer "B.Cu") (net 2) (tstamp 33b164c5-0a17-4def-a2eb-ce2a6dc4c91f)) - (segment (start 132.0546 94.742) (end 133.35 93.4466) (width 0.3) (layer "B.Cu") (net 2) (tstamp 372276d8-3fa5-43c6-9b35-b4711b3a6aca)) - (segment (start 133.35 82.2198) (end 133.35 93.4466) (width 0.3) (layer "B.Cu") (net 2) (tstamp 3abe4529-c53a-4484-be3f-00d3b4e9ae7a)) - (segment (start 130.81 88.9) (end 125.563 88.9) (width 0.3) (layer "B.Cu") (net 2) (tstamp 3bd89997-ffa3-4661-9e68-93bdec398303)) - (segment (start 106.4514 76.4286) (end 106.68 76.6572) (width 0.5) (layer "B.Cu") (net 2) (tstamp 42d0168e-d231-41ab-a1fb-2fb80a5c1610)) - (segment (start 72.8218 88.011) (end 76.0806 88.011) (width 0.3) (layer "B.Cu") (net 2) (tstamp 49d9902f-52bc-468a-9895-2a6945348dca)) - (segment (start 100.6856 76.708) (end 106.6292 76.708) (width 0.5) (layer "B.Cu") (net 2) (tstamp 5037ae20-89c1-4046-8457-2af0f3653de1)) - (segment (start 107.670302 79.6006) (end 107.670302 79.831902) (width 0.3) (layer "B.Cu") (net 2) (tstamp 52300ca9-23f1-45e3-bd92-67d8a936e94f)) - (segment (start 107.188 95.758) (end 107.188 94.9452) (width 0.3) (layer "B.Cu") (net 2) (tstamp 59b332ca-32e6-41fb-bf73-194581eaef66)) - (segment (start 111.379 71.0946) (end 106.4514 71.0946) (width 0.5) (layer "B.Cu") (net 2) (tstamp 5b961e53-b19a-404f-9e8b-82ff9854b2f8)) - (segment (start 111.379 71.0946) (end 116.0526 71.0946) (width 0.5) (layer "B.Cu") (net 2) (tstamp 5d7ede4a-32fd-4c80-af54-7084f89e80db)) - (segment (start 100.6348 76.7588) (end 100.6856 76.708) (width 0.3) (layer "B.Cu") (net 2) (tstamp 5e01be82-833f-43f8-af6c-014727a71669)) - (segment (start 85.1916 76.708) (end 85.4202 76.708) (width 0.3) (layer "B.Cu") (net 2) (tstamp 5e27c2a7-03a5-4402-a095-ba7487ddfe08)) - (segment (start 96.694 117.522) (end 99.568 120.396) (width 1) (layer "B.Cu") (net 2) (tstamp 62a3361b-0e90-4ce7-8017-60d88d0f625f)) - (segment (start 106.045 93.8022) (end 107.7468 93.8022) (width 0.3) (layer "B.Cu") (net 2) (tstamp 6507235b-0f75-43e1-bb30-4244b13aa994)) - (segment (start 75.946 109.728) (end 80.772 114.554) (width 0.3) (layer "B.Cu") (net 2) (tstamp 6590b844-ecf5-4ecf-9d53-c26d5eae4e70)) - (segment (start 118.6434 81.1784) (end 118.5418 81.28) (width 0.3) (layer "B.Cu") (net 2) (tstamp 659c6c5b-1f00-4949-91ca-5a1928235fe0)) - (segment (start 89.9422 96.139) (end 93.4974 96.139) (width 0.5) (layer "B.Cu") (net 2) (tstamp 665f4e48-4b8f-4f0d-841b-4739af82aa74)) - (segment (start 96.012 117.522) (end 96.694 117.522) (width 1) (layer "B.Cu") (net 2) (tstamp 68c2d991-b622-459c-b97d-12be77e83126)) - (segment (start 135.382 105.3846) (end 133.35 103.3526) (width 1) (layer "B.Cu") (net 2) (tstamp 6a218c5c-0e29-4a1d-82c8-bfbdcc2cdbb7)) - (segment (start 125.563 88.9) (end 124.7498 88.0868) (width 0.3) (layer "B.Cu") (net 2) (tstamp 705c67fc-306b-4016-95a7-1b888c61038e)) - (segment (start 83.6346 81.2038) (end 89.916 81.2038) (width 0.5) (layer "B.Cu") (net 2) (tstamp 745eaa3d-dfb0-435a-a764-bf92e1a2b369)) - (segment (start 119.5 83.084261) (end 119.507 83.077261) (width 0.3) (layer "B.Cu") (net 2) (tstamp 776afc88-4483-4aa9-966b-a921971fbb8b)) - (segment (start 119.507 81.1784) (end 118.6434 81.1784) (width 0.3) (layer "B.Cu") (net 2) (tstamp 810189d4-179d-4026-a527-f9445d52d2ed)) - (segment (start 133.35 103.3526) (end 133.35 93.4466) (width 3) (layer "B.Cu") (net 2) (tstamp 8178467d-ec4e-4623-8dfa-dd305cc90d2d)) - (segment (start 129.1082 103.6518) (end 129.387 103.373) (width 0.3) (layer "B.Cu") (net 2) (tstamp 852f9245-d2de-487c-ab3e-9931abf5a4c7)) - (segment (start 129.333 94.742) (end 132.0546 94.742) (width 0.3) (layer "B.Cu") (net 2) (tstamp 8e661ce7-6f8a-4bc8-a153-39f1938edbc9)) - (segment (start 89.916 88.646) (end 89.916 81.2038) (width 0.3) (layer "B.Cu") (net 2) (tstamp 905560eb-33b5-4d8d-b146-5dc0afd81287)) - (segment (start 112.5831 84.7447) (end 118.7553 84.7447) (width 0.3) (layer "B.Cu") (net 2) (tstamp 92e9f4db-8687-4a0a-aaaf-913c9ea7a694)) - (segment (start 76.0806 88.011) (end 76.454 88.3844) (width 0.3) (layer "B.Cu") (net 2) (tstamp 94ed5f63-4cff-4dd6-a6f2-f2a4e80991eb)) - (segment (start 76.454 88.3844) (end 83.6346 81.2038) (width 0.5) (layer "B.Cu") (net 2) (tstamp 954ffbb0-3ead-4661-b918-dca956f02290)) - (segment (start 77.881 75.88) (end 80.6552 75.88) (width 0.3) (layer "B.Cu") (net 2) (tstamp 998b49f4-6241-474c-b8de-69b568f511f0)) - (segment (start 114.0714 114.8804) (end 113.7958 114.8804) (width 0.3) (layer "B.Cu") (net 2) (tstamp 9cc2433b-cfa7-4a03-84c5-952e4c89ed6b)) - (segment (start 124.7498 90.312) (end 124.7498 88.0868) (width 0.3) (layer "B.Cu") (net 2) (tstamp a50a4509-4b4c-4eed-ad7c-3f84f22c346c)) - (segment (start 130.81 79.756) (end 130.8862 79.756) (width 0.3) (layer "B.Cu") (net 2) (tstamp a9692690-6fce-4e35-a14f-e0655a1311f6)) - (segment (start 130.8862 79.756) (end 133.35 82.2198) (width 0.3) (layer "B.Cu") (net 2) (tstamp b341b789-870e-4138-b924-46703b59d6c3)) - (segment (start 111.633 72.2884) (end 111.633 71.3486) (width 0.5) (layer "B.Cu") (net 2) (tstamp b610a6a4-dfea-445a-982c-67b2ef55e781)) - (segment (start 106.4514 71.0946) (end 106.4514 76.4286) (width 0.5) (layer "B.Cu") (net 2) (tstamp b78f4341-dfdb-4d51-afb3-d23b5ccb1bdf)) - (segment (start 109.829 116.073) (end 111.9328 116.073) (width 1) (layer "B.Cu") (net 2) (tstamp b9731e64-648a-4aa7-a36c-aa4cd0d9f91d)) - (segment (start 118.7553 84.7447) (end 119.5 84) (width 0.3) (layer "B.Cu") (net 2) (tstamp bc9821ee-2fe3-4f9d-8598-f1a2c4eaa2ee)) - (segment (start 107.670302 79.831902) (end 112.5831 84.7447) (width 0.3) (layer "B.Cu") (net 2) (tstamp d35796de-1ed4-4de1-8c69-e52dc318f68b)) - (segment (start 116.0526 71.0946) (end 118.5418 73.5838) (width 0.5) (layer "B.Cu") (net 2) (tstamp da82c07a-162f-41f7-8c1a-eddd893b4909)) - (segment (start 130.81 90.9066) (end 133.35 93.4466) (width 0.5) (layer "B.Cu") (net 2) (tstamp e009372a-9de6-402a-8e36-17bac2cf18fd)) - (segment (start 129.1082 105.3338) (end 129.1082 103.6518) (width 0.3) (layer "B.Cu") (net 2) (tstamp e6858bea-b8a7-48bf-b84f-58ae7bd384f7)) - (segment (start 118.5418 73.5838) (end 118.5418 81.28) (width 0.5) (layer "B.Cu") (net 2) (tstamp e92e3428-8a92-4687-b394-3d26a99539f0)) - (segment (start 111.9328 116.073) (end 112.268 116.4082) (width 1) (layer "B.Cu") (net 2) (tstamp ec2f2037-6f19-45a9-b761-a678ded70970)) - (segment (start 111.633 71.3486) (end 111.379 71.0946) (width 0.5) (layer "B.Cu") (net 2) (tstamp ee7f72f6-06ba-426c-8610-617c471979a2)) - (segment (start 80.6552 75.88) (end 81.4832 76.708) (width 0.3) (layer "B.Cu") (net 2) (tstamp ef781248-d077-486e-b7f8-be3c95273bcd)) - (segment (start 119.507 83.077261) (end 119.507 81.1784) (width 0.3) (layer "B.Cu") (net 2) (tstamp f1b23884-9b4d-46fb-9553-21fa74189fb2)) - (segment (start 113.7958 114.8804) (end 112.268 116.4082) (width 0.3) (layer "B.Cu") (net 2) (tstamp f2bb6132-13ee-4cae-a247-4c100b9334e9)) - (segment (start 129.387 103.373) (end 129.4074 103.3526) (width 1) (layer "B.Cu") (net 2) (tstamp f3f39ea3-3949-4e00-a1d4-2d3b59d14246)) - (segment (start 130.81 88.9) (end 130.81 90.9066) (width 0.5) (layer "B.Cu") (net 2) (tstamp f5255207-81f0-4f8f-8a97-302b11cdc369)) - (segment (start 132.334 119.888) (end 133.858 119.888) (width 1) (layer "B.Cu") (net 2) (tstamp fceb8329-b2ec-4c46-851b-04ded3776ade)) - (segment (start 96.592 99.568) (end 97.354 98.806) (width 3) (layer "F.Cu") (net 3) (tstamp 4e5bc743-da1a-4d1d-9db9-2611d0dd1720)) - (segment (start 75.946 99.568) (end 86.7918 99.568) (width 3) (layer "F.Cu") (net 3) (tstamp 4f27831f-e3c0-4dec-999e-d49bb8fbcee1)) - (segment (start 86.7918 99.568) (end 96.592 99.568) (width 3) (layer "F.Cu") (net 3) (tstamp 6c37166c-3357-469e-a40b-4090a5b234b2)) - (segment (start 82.1436 89.1794) (end 79.3852 89.1794) (width 0.5) (layer "F.Cu") (net 3) (tstamp 733fd56b-2f52-4314-aa0e-04973594c7dd)) - (via (at 82.1436 89.1794) (size 1.2) (drill 0.8) (layers "F.Cu" "B.Cu") (net 3) (tstamp 76bf957d-5305-4a55-bd0f-7831ad4adcb1)) - (segment (start 92.2528 100.2792) (end 92.2528 107.6706) (width 1) (layer "B.Cu") (net 3) (tstamp 02df94af-c666-45e4-88b7-f2f4537b4be7)) - (segment (start 86.868 114.554) (end 89.281 114.554) (width 0.3) (layer "B.Cu") (net 3) (tstamp 1055fbce-2fe2-47a0-b2c7-33d22f4789f2)) - (segment (start 82.1436 93.8276) (end 82.1436 89.1794) (width 0.5) (layer "B.Cu") (net 3) (tstamp 15008c47-eb5f-4565-bb36-fbacc1321843)) - (segment (start 97.282 98.878) (end 97.354 98.806) (width 2) (layer "B.Cu") (net 3) (tstamp 377df477-54df-4706-b126-4df916b8d641)) - (segment (start 91.948 121.158) (end 91.948 117.522) (width 1) (layer "B.Cu") (net 3) (tstamp 3dadd23c-7e1c-4ba5-8b0e-32c6da9ba5bd)) - (segment (start 105.0309 101.6) (end 100.148 101.6) (width 0.3) (layer "B.Cu") (net 3) (tstamp 3e46ef07-fc96-4be3-827f-a7df5eaaf436)) - (segment (start 125.476 123.4694) (end 94.2594 123.4694) (width 1) (layer "B.Cu") (net 3) (tstamp 4cf2d446-b381-4f05-a658-7c3ebbb48567)) - (segment (start 94.2594 123.4694) (end 91.948 121.158) (width 1) (layer "B.Cu") (net 3) (tstamp 4e06a601-5d33-4817-a8d6-f830176c4afd)) - (segment (start 128.524 120.4214) (end 125.476 123.4694) (width 1) (layer "B.Cu") (net 3) (tstamp 4ee6c815-47be-4330-afa5-59207da43dab)) - (segment (start 89.3318 110.5916) (end 89.3318 114.5032) (width 1) (layer "B.Cu") (net 3) (tstamp 5d1a5bd8-a9b4-437f-8da0-df55d3b7cf73)) - (segment (start 93.726 98.806) (end 92.2528 100.2792) (width 1) (layer "B.Cu") (net 3) (tstamp 62367597-5f2b-439f-bce2-d6d402a95d56)) - (segment (start 101.364 98.806) (end 101.412 98.758) (width 0.3) (layer "B.Cu") (net 3) (tstamp 712e241f-a457-4699-aca4-80844ca9342b)) - (segment (start 90.09 117.522) (end 91.948 117.522) (width 1) (layer "B.Cu") (net 3) (tstamp 751cf9ee-25bc-4ae4-8df2-ed64d7bc3bc5)) - (segment (start 97.27 103.886) (end 97.282 103.898) (width 0.3) (layer "B.Cu") (net 3) (tstamp 75b43e7e-ddcf-431d-9565-4931321296b1)) - (segment (start 89.3318 115.1636) (end 89.3318 116.7638) (width 1) (layer "B.Cu") (net 3) (tstamp 91ef9b61-25ff-4324-8b4f-23f5393a3ca2)) - (segment (start 97.354 98.806) (end 101.364 98.806) (width 0.3) (layer "B.Cu") (net 3) (tstamp 9faa65df-1bdd-497b-9b11-e9ba7bac877c)) - (segment (start 128.524 119.888) (end 128.524 120.4214) (width 1) (layer "B.Cu") (net 3) (tstamp a2a84ef8-a844-48cc-a38d-09c2dd7eb382)) - (segment (start 94.3356 103.886) (end 97.27 103.886) (width 0.3) (layer "B.Cu") (net 3) (tstamp b2cf3d0d-d987-4581-b966-977a3a7e74f0)) - (segment (start 86.8172 96.139) (end 84.455 96.139) (width 0.5) (layer "B.Cu") (net 3) (tstamp b3115eea-6cff-4248-b5e4-8325f22f0c02)) - (segment (start 97.354 98.806) (end 93.726 98.806) (width 1) (layer "B.Cu") (net 3) (tstamp b9d40bbf-679f-482b-9ce8-63853052a34e)) - (segment (start 86.8934 99.568) (end 96.592 99.568) (width 3) (layer "B.Cu") (net 3) (tstamp c64423c9-7b7e-4863-862d-33c7f165dc18)) - (segment (start 84.455 96.139) (end 82.1436 93.8276) (width 0.5) (layer "B.Cu") (net 3) (tstamp cb096931-f350-4c31-b801-1e9b097ff276)) - (segment (start 86.8172 96.139) (end 86.8172 99.4918) (width 0.5) (layer "B.Cu") (net 3) (tstamp ccb21a08-8c11-40f0-92fa-27cbe53b42c0)) - (segment (start 92.2528 107.6706) (end 89.3318 110.5916) (width 1) (layer "B.Cu") (net 3) (tstamp cf0bbe9f-dbec-4020-894b-4c80f56e4523)) - (segment (start 97.282 103.898) (end 97.282 98.878) (width 2) (layer "B.Cu") (net 3) (tstamp d563f919-6423-452b-9124-1213fe7b1792)) - (segment (start 75.946 99.568) (end 86.8934 99.568) (width 3) (layer "B.Cu") (net 3) (tstamp e4c13a62-9083-437f-8ed5-1d55e1658bee)) - (segment (start 89.3318 114.5032) (end 89.3318 115.1636) (width 1) (layer "B.Cu") (net 3) (tstamp e6ab9ecb-607f-4c2f-a3dc-bb8410194fbf)) - (segment (start 100.148 101.6) (end 97.354 98.806) (width 0.3) (layer "B.Cu") (net 3) (tstamp e8762260-6734-4f26-902a-83e474dab0c4)) - (segment (start 89.3318 116.7638) (end 90.09 117.522) (width 1) (layer "B.Cu") (net 3) (tstamp e93221a4-d000-4f72-9108-c289a1e40d2a)) - (segment (start 76.454 99.5172) (end 76.454 93.7844) (width 1) (layer "B.Cu") (net 3) (tstamp eb74d6ec-2617-4d93-91bc-9048dd622267)) - (segment (start 89.281 114.554) (end 89.3318 114.5032) (width 0.3) (layer "B.Cu") (net 3) (tstamp f3b37b00-f568-4fdd-9cbd-79d8f2b81b1c)) - (segment (start 86.8172 99.4918) (end 86.8934 99.568) (width 0.5) (layer "B.Cu") (net 3) (tstamp fd13802d-df94-4d9a-80b0-e5a9799bea0f)) - (segment (start 96.592 99.568) (end 97.354 98.806) (width 3) (layer "B.Cu") (net 3) (tstamp ffdd380e-b505-4f00-8fec-377e39e64b90)) - (segment (start 75.1586 92.5068) (end 75.9206 93.2688) (width 0.5) (layer "F.Cu") (net 4) (tstamp 08eb950a-7f4f-4a56-a769-dcd52ef07499)) - (segment (start 78.4352 93.2676) (end 78.4364 93.2688) (width 0.5) (layer "F.Cu") (net 4) (tstamp 826e36c0-3954-4b58-910b-e8d9bc190a64)) - (segment (start 75.9206 93.2688) (end 78.4364 93.2688) (width 0.5) (layer "F.Cu") (net 4) (tstamp 9495cedf-5887-4930-87b4-35e26f0f9ac4)) - (segment (start 74.7268 89.4596) (end 75.1586 89.8914) (width 0.5) (layer "F.Cu") (net 4) (tstamp a5dfb17f-2aa4-4fa1-9b43-7ee5eb57c9d3)) - (segment (start 78.4352 89.1794) (end 78.4352 93.2676) (width 0.5) (layer "F.Cu") (net 4) (tstamp e14bbd14-020c-4da8-8877-92bbc501a792)) - (segment (start 75.1586 89.8914) (end 75.1586 92.5068) (width 0.5) (layer "F.Cu") (net 4) (tstamp fb9cdda9-a8a6-4569-a885-8d329acb3355)) - (segment (start 74.7268 86.3346) (end 77.3404 86.3346) (width 0.5) (layer "F.Cu") (net 5) (tstamp 4dc26e13-b792-4aee-851e-0e5845b05bfc)) - (segment (start 77.3404 86.3346) (end 77.4852 86.4794) (width 0.5) (layer "F.Cu") (net 5) (tstamp b672f0d4-b513-4992-a9ce-c7cff66d07d1)) - (segment (start 106.229 84.0641) (end 109.707541 84.0641) (width 0.3) (layer "F.Cu") (net 6) (tstamp 1583ceec-c256-4066-a36e-d7f1c8e7537f)) - (segment (start 106.229 88.0641) (end 111.7115 88.0641) (width 0.3) (layer "F.Cu") (net 6) (tstamp 1d46a92e-5257-4cd6-b053-eaaa7748e90f)) - (segment (start 116.7771 81.841) (end 114.554 84.0641) (width 0.3) (layer "F.Cu") (net 6) (tstamp 22dadbde-f6c6-4577-99c0-c4dfa88102fa)) - (segment (start 106.172 82.6516) (end 106.172 84.0071) (width 0.3) (layer "F.Cu") (net 6) (tstamp 2454ea0e-29b8-4e84-be72-127967dd0137)) - (segment (start 113.1415 90.9766) (end 116.5414 90.9766) (width 0.3) (layer "F.Cu") (net 6) (tstamp 2996024e-b53b-4bc6-bd7e-2817e96abb68)) - (segment (start 113.1415 89.4941) (end 113.1415 90.9766) (width 0.3) (layer "F.Cu") (net 6) (tstamp 2dcf5a78-8409-4ab3-a728-9f4a2a4900e3)) - (segment (start 106.172 84.0071) (end 106.229 84.0641) (width 0.3) (layer "F.Cu") (net 6) (tstamp 348e7a45-dfaa-4cc6-b842-6c10f77f117a)) - (segment (start 111.7115 88.0641) (end 113.1415 89.4941) (width 0.3) (layer "F.Cu") (net 6) (tstamp 5ca7fa3c-39b6-467a-a09f-6c7697163cbb)) - (segment (start 106.172 82.6516) (end 107.6415 82.6516) (width 0.3) (layer "F.Cu") (net 6) (tstamp 5ffc6de7-e6ba-4680-8d35-f6ef79177396)) - (segment (start 103.378 81.28) (end 104.14 82.042) (width 0.5) (layer "F.Cu") (net 6) (tstamp 66c772e9-cc16-4885-8264-0b1352b615d7)) - (segment (start 89.916 81.92) (end 92.334 81.92) (width 0.5) (layer "F.Cu") (net 6) (tstamp 724938e2-5c58-4d1f-874d-2a0fc35a2991)) - (segment (start 95.5548 82.0928) (end 95.504 82.042) (width 0.3) (layer "F.Cu") (net 6) (tstamp 76c37253-bea5-4d13-98f3-82d0e3802600)) - (segment (start 113.715459 84.0641) (end 111.7115 86.068059) (width 0.3) (layer "F.Cu") (net 6) (tstamp 7ececa49-b465-414f-8a4e-cf07fc83d0ac)) - (segment (start 119.888 72.39) (end 121.412 72.39) (width 0.3) (layer "F.Cu") (net 6) (tstamp 9fe8401c-d41e-4218-8d68-a6f77e3bb375)) - (segment (start 95.504 82.042) (end 96.266 81.28) (width 0.5) (layer "F.Cu") (net 6) (tstamp 9ff31299-a93e-4bc2-a8a7-b84f2cf210bc)) - (segment (start 92.456 82.042) (end 95.504 82.042) (width 0.5) (layer "F.Cu") (net 6) (tstamp a220b22f-9e80-4fdd-9a05-929630316522)) - (segment (start 114.554 84.0641) (end 113.715459 84.0641) (width 0.3) (layer "F.Cu") (net 6) (tstamp a517f426-50e7-4a7a-aeb9-82ec659c5bb1)) - (segment (start 95.5548 84.0486) (end 95.5548 82.0928) (width 0.3) (layer "F.Cu") (net 6) (tstamp aba04f36-4f44-4875-ad56-6fcd32b7ca58)) - (segment (start 92.334 81.92) (end 92.456 82.042) (width 0.5) (layer "F.Cu") (net 6) (tstamp abfc47ff-20ca-41d1-9f94-be9d8caa0b62)) - (segment (start 105.5624 82.042) (end 104.14 82.042) (width 0.5) (layer "F.Cu") (net 6) (tstamp ac5aac56-ef2c-4517-a8e4-4c59cad46b7c)) - (segment (start 116.5414 90.9766) (end 116.586 90.932) (width 0.3) (layer "F.Cu") (net 6) (tstamp b8147371-bf68-41ec-b982-303b910aeb1b)) - (segment (start 104.9229 88.0641) (end 102.616 90.371) (width 0.3) (layer "F.Cu") (net 6) (tstamp b86f0e1c-a655-4237-b94a-0e8b9bf2fddd)) - (segment (start 105.463 80.518) (end 105.463 81.9426) (width 0.3) (layer "F.Cu") (net 6) (tstamp bf4e758e-197f-41b0-b5cd-da7df712fa2f)) - (segment (start 96.266 81.28) (end 103.378 81.28) (width 0.5) (layer "F.Cu") (net 6) (tstamp bfc56cb5-eb49-4555-b038-fb27c03b40e1)) - (segment (start 116.84 81.841) (end 116.7771 81.841) (width 0.3) (layer "F.Cu") (net 6) (tstamp c41a49be-cd09-4ace-8837-8d1b72203c4e)) - (segment (start 121.412 72.39) (end 123.143 72.39) (width 0.3) (layer "F.Cu") (net 6) (tstamp d64976ee-83ce-4406-8cf4-fcc7e79f9faa)) - (segment (start 106.229 88.0641) (end 104.9229 88.0641) (width 0.3) (layer "F.Cu") (net 6) (tstamp d919ac63-7ca2-4b59-82e7-d5ad5791b08c)) - (segment (start 111.7115 86.068059) (end 111.7115 88.0641) (width 0.3) (layer "F.Cu") (net 6) (tstamp ddcd7c57-effa-4ffc-a472-306b8ba2c575)) - (segment (start 109.707541 84.0641) (end 111.7115 86.068059) (width 0.3) (layer "F.Cu") (net 6) (tstamp e9eea998-73a4-42f3-b2b3-d50d5a6b86ed)) - (segment (start 106.172 82.6516) (end 105.5624 82.042) (width 0.5) (layer "F.Cu") (net 6) (tstamp f2bfc5e3-6fb4-4cc0-9c31-235160d4df18)) - (segment (start 105.463 81.9426) (end 106.172 82.6516) (width 0.3) (layer "F.Cu") (net 6) (tstamp f656fe7c-c26a-4662-912c-d460bb637acc)) - (via (at 121.412 72.39) (size 1.2) (drill 0.8) (layers "F.Cu" "B.Cu") (net 6) (tstamp 09aa3f00-81d4-4c72-bf84-43d60d49aacd)) - (via (at 106.172 82.6516) (size 1.2) (drill 0.8) (layers "F.Cu" "B.Cu") (net 6) (tstamp 4b630f16-7368-464c-8d7b-2b453f20bbf3)) - (segment (start 106.172 82.6516) (end 109.2073 85.6869) (width 0.3) (layer "B.Cu") (net 6) (tstamp 24a5c7a2-f9a9-4b1e-b96e-9f5092090f2e)) - (segment (start 101.6 91.44) (end 101.6 90.17) (width 0.3) (layer "B.Cu") (net 6) (tstamp 5549a8af-e20a-4020-9c51-3efc2c7841a3)) - (segment (start 106.172 82.6516) (end 106.172 87.63) (width 0.3) (layer "B.Cu") (net 6) (tstamp 85b56f30-e914-4ba2-8440-cc018862c652)) - (segment (start 109.2073 85.6869) (end 119.8131 85.6869) (width 0.3) (layer "B.Cu") (net 6) (tstamp 9fde6b04-02b0-4750-b9e6-ced367cd9fe1)) - (segment (start 102.87 88.9) (end 104.902 88.9) (width 0.3) (layer "B.Cu") (net 6) (tstamp a572d73d-a398-499a-b2d1-3dbe1bf9b07e)) - (segment (start 119.8131 85.6869) (end 121.412 84.088) (width 0.3) (layer "B.Cu") (net 6) (tstamp aa8736c2-dc76-403f-b21b-9a3a62527657)) - (segment (start 121.412 84.088) (end 121.412 72.39) (width 0.3) (layer "B.Cu") (net 6) (tstamp bc975306-e70d-4a86-9511-310f883abd1e)) - (segment (start 106.172 87.63) (end 104.902 88.9) (width 0.3) (layer "B.Cu") (net 6) (tstamp bdc21d74-e903-4151-9ad2-cb2b6d76b619)) - (segment (start 101.6 90.17) (end 102.87 88.9) (width 0.3) (layer "B.Cu") (net 6) (tstamp ee63d175-d863-4c1d-bddc-89cdd1e6066d)) - (segment (start 79.455 86.4096) (end 79.3852 86.4794) (width 0.3) (layer "F.Cu") (net 7) (tstamp 1308b7e5-a49f-493f-97f8-cdb072a80df6)) - (segment (start 79.455 84.328) (end 79.455 86.4096) (width 0.3) (layer "F.Cu") (net 7) (tstamp 200b0bbb-80c9-4c70-b061-ef6d5a247116)) - (segment (start 79.459 84.324) (end 79.455 84.328) (width 0.3) (layer "F.Cu") (net 7) (tstamp 53825d6a-beb5-4515-9a38-899b4247a70a)) - (segment (start 77.47 82.296) (end 79.459 82.296) (width 0.3) (layer "F.Cu") (net 7) (tstamp 89e63504-5648-48a5-bcc5-59363f390a56)) - (segment (start 79.459 82.296) (end 79.459 84.324) (width 0.3) (layer "F.Cu") (net 7) (tstamp bbb4ab98-d2ff-47aa-828c-698bb9d55014)) - (segment (start 100.8681 86.0641) (end 99.314 84.51) (width 0.3) (layer "F.Cu") (net 8) (tstamp 186eea38-5765-4579-b8db-6b9bbd2b6033)) - (segment (start 99.333 84.529) (end 99.314 84.51) (width 0.3) (layer "F.Cu") (net 8) (tstamp 65ee5947-133b-45c9-8b80-5af8cfc58ff0)) - (segment (start 102.108 84.529) (end 99.333 84.529) (width 0.3) (layer "F.Cu") (net 8) (tstamp e977f9cb-a900-4201-beb2-2016426d4093)) - (segment (start 106.229 86.0641) (end 100.8681 86.0641) (width 0.3) (layer "F.Cu") (net 8) (tstamp feda5962-b3a0-4b1e-b94b-2fad215cee46)) - (segment (start 99.113 88.411) (end 99.314 88.21) (width 0.3) (layer "F.Cu") (net 9) (tstamp 143d5973-bf13-4351-9c39-be1c280b59a8)) - (segment (start 99.113 90.424) (end 99.113 88.411) (width 0.3) (layer "F.Cu") (net 9) (tstamp 1881a403-4f4b-4498-a331-e243a52a7ec4)) - (segment (start 106.229 86.5641) (end 100.9599 86.5641) (width 0.3) (layer "F.Cu") (net 9) (tstamp a1dbc19f-fbcb-47eb-a80c-6c16ff5baa6d)) - (segment (start 100.9599 86.5641) (end 99.314 88.21) (width 0.3) (layer "F.Cu") (net 9) (tstamp c901834c-8f43-4784-a59e-3e3202db43c9)) - (segment (start 92.456 97.3328) (end 95.4278 97.3328) (width 0.3) (layer "F.Cu") (net 10) (tstamp 01d43611-2eb3-49c4-8663-e30888def596)) - (segment (start 98.0948 96.4438) (end 99.568 97.917) (width 0.3) (layer "F.Cu") (net 10) (tstamp 07122b41-9a4f-41e4-bc17-c50ba882b348)) - (segment (start 78.74 87.8586) (end 78.4352 87.5538) (width 0.3) (layer "F.Cu") (net 10) (tstamp 1fa728b9-af0b-4f53-82bb-c1485d88aafa)) - (segment (start 91.4908 96.3676) (end 92.456 97.3328) (width 0.3) (layer "F.Cu") (net 10) (tstamp 2499b744-e06f-407a-9344-aca1e53e9ad4)) - (segment (start 78.4352 87.5538) (end 78.4352 86.4794) (width 0.3) (layer "F.Cu") (net 10) (tstamp 402d74a5-fa05-4b82-aed7-a1302e864cfc)) - (segment (start 80.7466 87.8586) (end 78.74 87.8586) (width 0.3) (layer "F.Cu") (net 10) (tstamp 54d5d8b8-e148-45af-9ce9-7811a3ee4ce7)) - (segment (start 85.1154 105.3846) (end 88.8238 105.3846) (width 0.3) (layer "F.Cu") (net 10) (tstamp 69752e24-9e86-4d7f-85a3-8b83c6285795)) - (segment (start 93.004 92.456) (end 91.4654 92.456) (width 0.3) (layer "F.Cu") (net 10) (tstamp 6ec34f96-ce1f-4eb4-9ece-d3b9b0c792f2)) - (segment (start 99.568 97.917) (end 99.568 99.8982) (width 0.3) (layer "F.Cu") (net 10) (tstamp 8d3664eb-c69b-46db-84a7-c9d03743225c)) - (segment (start 94.0816 105.3846) (end 88.8238 105.3846) (width 0.3) (layer "F.Cu") (net 10) (tstamp 975dda67-0afb-41ab-b30f-13ead77accda)) - (segment (start 96.3168 96.4438) (end 98.0948 96.4438) (width 0.3) (layer "F.Cu") (net 10) (tstamp 98a66655-542f-4939-bf62-e88a30889b4a)) - (segment (start 99.568 99.8982) (end 94.0816 105.3846) (width 0.3) (layer "F.Cu") (net 10) (tstamp aa87f12a-9b04-4342-93d5-bdf019c2d9b8)) - (segment (start 91.4654 92.456) (end 91.4908 92.4814) (width 0.3) (layer "F.Cu") (net 10) (tstamp d3c0076e-ebd0-45ef-a970-d85f3e684b73)) - (segment (start 85.09 105.41) (end 85.1154 105.3846) (width 0.3) (layer "F.Cu") (net 10) (tstamp ee62f16f-e332-4c49-b893-81f1cb225c56)) - (segment (start 91.4908 92.4814) (end 91.4908 96.3676) (width 0.3) (layer "F.Cu") (net 10) (tstamp fa0b6124-84ed-4344-87c8-dc14692eb69d)) - (segment (start 95.4278 97.3328) (end 96.3168 96.4438) (width 0.3) (layer "F.Cu") (net 10) (tstamp fbe428f9-f388-45e7-add9-3d2d07caa398)) - (via (at 91.4908 92.4814) (size 0.8) (drill 0.6) (layers "F.Cu" "B.Cu") (net 10) (tstamp 49409edb-de28-4a0a-bab3-d9331dfaccf0)) - (via (at 80.7466 87.8586) (size 0.8) (drill 0.6) (layers "F.Cu" "B.Cu") (net 10) (tstamp d06e7b74-8e62-4d91-85ff-b8decd01b9b1)) - (segment (start 82.5754 87.8586) (end 80.7466 87.8586) (width 0.3) (layer "B.Cu") (net 10) (tstamp 001daa1a-8de5-41c6-bfab-f2e913439df3)) - (segment (start 84.6074 92.4814) (end 91.4908 92.4814) (width 0.3) (layer "B.Cu") (net 10) (tstamp 07f5519d-4b4f-4a5e-8a5a-a4c835381d7b)) - (segment (start 83.312 91.186) (end 84.6074 92.4814) (width 0.3) (layer "B.Cu") (net 10) (tstamp 19373d10-dd8e-46e9-bdee-e79a9a795384)) - (segment (start 82.5754 87.8586) (end 83.312 88.5952) (width 0.3) (layer "B.Cu") (net 10) (tstamp 316e296b-21a9-4ddd-adec-cdc335ce1271)) - (segment (start 83.312 88.5952) (end 83.312 91.186) (width 0.3) (layer "B.Cu") (net 10) (tstamp e3234d85-7e64-4969-bc14-0faa1f4376d6)) - (segment (start 82.804 107.95) (end 85.05 107.95) (width 0.3) (layer "F.Cu") (net 11) (tstamp 81416345-ef60-42e3-bd07-7e40e0e6a5b1)) - (segment (start 85.05 107.95) (end 85.09 107.91) (width 0.3) (layer "F.Cu") (net 11) (tstamp 8adb53d2-9e16-4b5f-b4c5-f4d974c021c7)) - (segment (start 82.804 109.728) (end 82.804 107.95) (width 0.3) (layer "F.Cu") (net 11) (tstamp a9701615-1694-4626-b9c9-8095a5985e1e)) - (segment (start 106.229 89.0641) (end 105.390459 89.0641) (width 0.3) (layer "F.Cu") (net 12) (tstamp 27dea85b-6f7c-4a52-bf19-5bf2f4979b85)) - (segment (start 104.902 89.552559) (end 104.902 91.44) (width 0.3) (layer "F.Cu") (net 12) (tstamp 29d567ed-bf5e-4e87-aabf-4e3b4e98dd50)) - (segment (start 105.390459 89.0641) (end 104.902 89.552559) (width 0.3) (layer "F.Cu") (net 12) (tstamp 4e3bd9c6-ccf1-4d88-a785-fa730dcdd19b)) - (segment (start 104.902 91.44) (end 103.886 92.456) (width 0.3) (layer "F.Cu") (net 12) (tstamp 8bbf1221-cb70-4b7e-a2ab-cc451454954d)) - (segment (start 103.886 92.456) (end 95.504 92.456) (width 0.3) (layer "F.Cu") (net 12) (tstamp fcde8b42-3d68-423a-90a7-336273b9a124)) - (segment (start 122.682 108.284) (end 122.508 108.458) (width 0.3) (layer "F.Cu") (net 13) (tstamp 820269dd-4611-4397-9ea3-23213eda8be9)) - (segment (start 122.682 104.949) (end 122.682 108.284) (width 0.3) (layer "F.Cu") (net 13) (tstamp 9eea3ef3-931a-48fb-9f64-55e37c0e4593)) - (segment (start 129 109.95) (end 127.508 108.458) (width 0.3) (layer "F.Cu") (net 14) (tstamp 1bf644b3-89ac-40ca-97d5-88b62a30317f)) - (segment (start 133.096 109.95) (end 129 109.95) (width 0.3) (layer "F.Cu") (net 14) (tstamp 85be4673-2626-4ae8-8e01-705c471ab2e3)) - (segment (start 132.414 98.806) (end 133.096 98.124) (width 0.3) (layer "F.Cu") (net 15) (tstamp 68ac412f-c576-4afb-b03f-f69b73d5a08d)) - (segment (start 128.6745 98.806) (end 132.414 98.806) (width 0.3) (layer "F.Cu") (net 15) (tstamp f4466910-b798-40d9-bd8e-f49591531c7a)) - (segment (start 133.096 107.95) (end 133.096 103.124) (width 0.3) (layer "F.Cu") (net 16) (tstamp e877467f-d198-472a-9621-c7691deb133e)) - (segment (start 124.714 103.124) (end 124.714 97.69165) (width 0.3) (layer "F.Cu") (net 17) (tstamp 6fbc8f93-1a20-41a4-8a7a-ecad10789447)) - (segment (start 124.714 97.69165) (end 122.682 95.65965) (width 0.3) (layer "F.Cu") (net 17) (tstamp 78fd95c7-da37-40d3-90d9-f99579747cb9)) - (segment (start 114.554 89.5641) (end 116.58645 89.5641) (width 0.3) (layer "F.Cu") (net 17) (tstamp ba401b8e-837e-4d51-a753-782cc0de0858)) - (segment (start 116.58645 89.5641) (end 122.682 95.65965) (width 0.3) (layer "F.Cu") (net 17) (tstamp d4eace96-825f-40b7-9454-659878cdd3a4)) - (segment (start 122.682 103.124) (end 124.714 103.124) (width 0.3) (layer "F.Cu") (net 17) (tstamp ed21c70b-3c47-47a3-af49-0404405a5f28)) - (segment (start 126.619 98.806) (end 126.8495 98.806) (width 0.3) (layer "F.Cu") (net 18) (tstamp 1b204f04-2b58-4611-9c75-04c602b538e1)) - (segment (start 126.8495 100.7055) (end 126.982 100.838) (width 0.3) (layer "F.Cu") (net 18) (tstamp 20da2d34-94d7-41ed-8f7c-5d96d6969fe0)) - (segment (start 116.8771 89.0641) (end 126.619 98.806) (width 0.3) (layer "F.Cu") (net 18) (tstamp 6c798c8c-d389-4e80-bc75-c5ea2b17c7b6)) - (segment (start 126.8495 98.806) (end 126.8495 100.7055) (width 0.3) (layer "F.Cu") (net 18) (tstamp ddcb275c-8b2d-4c6c-adf1-7a66c556c108)) - (segment (start 114.554 89.0641) (end 116.8771 89.0641) (width 0.3) (layer "F.Cu") (net 18) (tstamp e69a12d0-ab71-469c-a070-73d816efd66d)) - (segment (start 104.394 89.353453) (end 104.14 89.607453) (width 0.3) (layer "F.Cu") (net 19) (tstamp 171e20e3-57c2-4f9c-b091-6f1f5178bdd7)) - (segment (start 104.14 89.607453) (end 104.14 90.17) (width 0.3) (layer "F.Cu") (net 19) (tstamp 37919f12-cd0a-42eb-96fd-e769bc915a18)) - (segment (start 105.183353 88.5641) (end 104.394 89.353453) (width 0.3) (layer "F.Cu") (net 19) (tstamp 992f099c-5de6-4fd7-b2ac-f1399c00a42d)) - (segment (start 106.229 88.5641) (end 105.183353 88.5641) (width 0.3) (layer "F.Cu") (net 19) (tstamp eabe2a55-323d-4313-9f49-4062eed6f679)) - (via (at 104.14 90.17) (size 0.8) (drill 0.6) (layers "F.Cu" "B.Cu") (net 19) (tstamp 89f189a2-9958-4449-ac00-1428a631aa10)) - (segment (start 104.14 91.4) (end 104.1 91.44) (width 0.3) (layer "B.Cu") (net 19) (tstamp 13412a5e-0da4-4b89-b404-a12b25dc33ad)) - (segment (start 104.14 93.472) (end 104.14 91.48) (width 0.3) (layer "B.Cu") (net 19) (tstamp 9bb6eb62-fd04-4b4d-9aff-9540dabde2d2)) - (segment (start 104.14 90.17) (end 104.14 91.4) (width 0.3) (layer "B.Cu") (net 19) (tstamp e7faceef-c486-453e-b1c5-9b6f32b7d146)) - (segment (start 104.14 91.48) (end 104.1 91.44) (width 0.3) (layer "B.Cu") (net 19) (tstamp f43f684b-525a-4fdc-b9d0-9455f7a6fbc7)) - (segment (start 124.674 117.653) (end 124.674 115.0112) (width 3) (layer "B.Cu") (net 20) (tstamp 0aba87f8-7835-40db-8712-ebef9c2d2ba9)) - (segment (start 124.7972 114.888) (end 124.674 115.0112) (width 1) (layer "B.Cu") (net 20) (tstamp 25a96a03-8854-44b1-93dd-6b968ba30c1d)) - (segment (start 123.08 101.086) (end 123.087 101.093) (width 1) (layer "B.Cu") (net 20) (tstamp 39b0591f-17fb-4a78-a3a9-3fc024abdeb4)) - (segment (start 124.674 115.0112) (end 124.674 102.68) (width 3) (layer "B.Cu") (net 20) (tstamp 504889f4-abe4-4766-8ae3-07997a4d8b4d)) - (segment (start 109.474 101.086) (end 115.774 101.086) (width 0.3) (layer "B.Cu") (net 20) (tstamp 5cca7aa0-6af1-4860-b777-822b67c6efa1)) - (segment (start 129.387 101.093) (end 123.087 101.093) (width 0.3) (layer "B.Cu") (net 20) (tstamp 5dd22961-231b-4cf6-ae9f-15e56c69d5b6)) - (segment (start 132.334 114.888) (end 124.7972 114.888) (width 1) (layer "B.Cu") (net 20) (tstamp 6a8f2e24-08b2-46ca-98e7-c16e1c619c14)) - (segment (start 115.774 101.086) (end 123.08 101.086) (width 1) (layer "B.Cu") (net 20) (tstamp 6ac58f91-1918-4c0e-8efd-6c7cd23018a2)) - (segment (start 124.674 102.68) (end 123.087 101.093) (width 3) (layer "B.Cu") (net 20) (tstamp 9bc15dbf-6b33-4931-b04b-fa2fda8d4a03)) - (segment (start 117.449 99.561) (end 121.405 99.561) (width 1) (layer "B.Cu") (net 20) (tstamp b7f22a12-9056-4c41-88a6-ea359caa7ff2)) - (segment (start 121.405 99.561) (end 121.412 99.568) (width 1) (layer "B.Cu") (net 20) (tstamp c0c27d80-a233-46ed-b675-915ff3e0d444)) - (segment (start 114.099 102.611) (end 121.405 102.611) (width 1) (layer "B.Cu") (net 20) (tstamp f26592c2-1ab3-434d-8f87-d0a289ec379c)) - (segment (start 121.405 102.611) (end 121.412 102.618) (width 1) (layer "B.Cu") (net 20) (tstamp fa95b56d-b823-4dd5-ba3a-de358ce53034)) - (segment (start 97.282 106.178) (end 103.582 106.178) (width 0.3) (layer "B.Cu") (net 21) (tstamp 1361b68c-03f8-4eba-b3c8-a00f50a0cc51)) - (segment (start 103.582 106.178) (end 103.582 113.74) (width 1) (layer "B.Cu") (net 21) (tstamp 14ad95a0-659b-47dd-b926-4b41eea54267)) - (segment (start 103.529 117.9054) (end 105.9688 120.3452) (width 3) (layer "B.Cu") (net 21) (tstamp 1cfca93d-1559-4507-a4a9-e73deaa61edb)) - (segment (start 96.012 112.522) (end 101.6 112.522) (width 1) (layer "B.Cu") (net 21) (tstamp 20a1b836-8d56-45c9-b47e-baa81e1003ff)) - (segment (start 91.948 112.522) (end 96.012 112.522) (width 1) (layer "B.Cu") (net 21) (tstamp 29982cae-0124-4b28-8aa1-f858ccad0c84)) - (segment (start 101.907 107.703) (end 101.907 112.215) (width 1) (layer "B.Cu") (net 21) (tstamp 375380fc-d309-4ba2-a634-9c98a554a2f3)) - (segment (start 116.9818 120.3452) (end 119.674 117.653) (width 3) (layer "B.Cu") (net 21) (tstamp 3e265275-6ef6-424a-bd78-cf7de0bfba40)) - (segment (start 105.257 112.215) (end 105.204 112.268) (width 1) (layer "B.Cu") (net 21) (tstamp 4b7b8c67-caaa-44a3-b626-a7c47c67141b)) - (segment (start 105.257 107.703) (end 105.257 112.215) (width 1) (layer "B.Cu") (net 21) (tstamp 806053fc-8e08-4373-b7bb-8735a7c380bf)) - (segment (start 101.6 112.522) (end 101.854 112.268) (width 1) (layer "B.Cu") (net 21) (tstamp 8740f50f-7a00-45e5-a759-f56b086e951c)) - (segment (start 103.582 113.74) (end 103.529 113.793) (width 1) (layer "B.Cu") (net 21) (tstamp 9b0981ac-643a-43c6-b3a4-e96578188603)) - (segment (start 103.529 113.793) (end 103.529 117.9054) (width 3) (layer "B.Cu") (net 21) (tstamp bb6e3915-c72f-46e0-b56d-6c79d9e15051)) - (segment (start 109.829 113.793) (end 103.529 113.793) (width 0.3) (layer "B.Cu") (net 21) (tstamp bc834099-7af1-4aab-8228-5108525b220c)) - (segment (start 105.9688 120.3452) (end 116.9818 120.3452) (width 3) (layer "B.Cu") (net 21) (tstamp d938e0a3-c385-46f8-95d9-bede1cc0780f)) - (segment (start 101.907 112.215) (end 101.854 112.268) (width 1) (layer "B.Cu") (net 21) (tstamp ed1a6f0e-05c1-4550-a5d7-cddcda7b85e3)) - (segment (start 97.666 75.692) (end 76.2508 75.692) (width 0.5) (layer "F.Cu") (net 22) (tstamp 309e530e-f587-4ffd-8ba2-00d02d9d3efb)) - (segment (start 75.5048 74.946) (end 73.11 74.946) (width 0.5) (layer "F.Cu") (net 22) (tstamp 634cb7f7-e83e-48bf-b2d2-1dcb3aa75d02)) - (segment (start 76.2508 75.692) (end 75.5048 74.946) (width 0.5) (layer "F.Cu") (net 22) (tstamp e8cf091d-2acb-4060-8fe5-506138f8c377)) - (segment (start 74.676 72.644) (end 81.608 72.644) (width 0.5) (layer "B.Cu") (net 22) (tstamp 59941ec9-0e28-422c-80d6-e0e8eba20c8a)) - (segment (start 73.11 74.21) (end 74.676 72.644) (width 0.5) (layer "B.Cu") (net 22) (tstamp 59efc9ba-551f-4b0c-9c68-d9aeee90b036)) - (segment (start 79.756 74.93) (end 79.756 74.496) (width 0.5) (layer "B.Cu") (net 22) (tstamp 7bf0b1c4-80a2-4d22-8cb0-b8a4f44be8b7)) - (segment (start 79.756 74.496) (end 81.608 72.644) (width 0.5) (layer "B.Cu") (net 22) (tstamp 941bf34f-e7c8-46f2-a318-ad8be8d8d1c4)) - (segment (start 73.11 74.946) (end 73.11 74.21) (width 0.5) (layer "B.Cu") (net 22) (tstamp d9b72338-cd11-47f1-9063-c55119be3668)) - (segment (start 97.666 76.962) (end 73.126 76.962) (width 0.5) (layer "F.Cu") (net 23) (tstamp b432222f-ce16-4c65-ae58-326f97355166)) - (segment (start 73.126 76.962) (end 73.11 76.946) (width 0.5) (layer "F.Cu") (net 23) (tstamp e64ee0e8-4b53-405d-b5f4-ba5ac4fecaee)) - (segment (start 79.756 76.83) (end 79.756 78.284) (width 0.5) (layer "B.Cu") (net 23) (tstamp 23da8548-8d6d-4275-abfa-5f7440587432)) - (segment (start 73.11 77.682) (end 73.712 78.284) (width 0.5) (layer "B.Cu") (net 23) (tstamp 6cb72a44-afcc-4353-ad46-b3597f8c39bb)) - (segment (start 73.11 76.946) (end 73.11 77.682) (width 0.5) (layer "B.Cu") (net 23) (tstamp 6ed71cfa-c03f-435d-82bd-e74da53251ee)) - (segment (start 73.712 78.284) (end 79.756 78.284) (width 0.5) (layer "B.Cu") (net 23) (tstamp a236c037-70b1-4e88-a015-19c0aa05e479)) - (segment (start 79.756 78.284) (end 83.058 78.284) (width 0.5) (layer "B.Cu") (net 23) (tstamp ab61a9a7-fd0b-455f-a1b0-59007ddc52e0)) - (segment (start 82.804 104.648) (end 82.8548 104.5972) (width 0.3) (layer "F.Cu") (net 24) (tstamp a538d0f9-d58b-4544-9d6f-7bd39714587b)) - (segment (start 82.804 106.125) (end 82.804 104.648) (width 0.3) (layer "F.Cu") (net 24) (tstamp c1fdda6a-366b-4d83-a4fc-7706d4e85f68)) - (via (at 82.8548 104.5972) (size 0.8) (drill 0.6) (layers "F.Cu" "B.Cu") (net 24) (tstamp 822590ec-f67b-420e-a19d-1a0092443c06)) - (segment (start 82.804 104.648) (end 75.946 104.648) (width 0.3) (layer "B.Cu") (net 24) (tstamp 6f96ce1c-dade-4622-ac77-84fb79d31b32)) - (segment (start 82.8548 104.5972) (end 82.804 104.648) (width 0.3) (layer "B.Cu") (net 24) (tstamp 9a887fd9-31c2-409f-b680-f5f057198138)) - (segment (start 124.968 72.39) (end 129.444 72.39) (width 0.3) (layer "F.Cu") (net 25) (tstamp 5ffff44e-9629-4daf-ab5b-07786cce52aa)) - (segment (start 129.444 72.39) (end 130.81 73.756) (width 0.3) (layer "F.Cu") (net 25) (tstamp b51160a8-5718-4021-bb49-a1912d286fcb)) - (segment (start 130.5936 75.756) (end 129.032 77.3176) (width 0.3) (layer "F.Cu") (net 26) (tstamp 0908d77d-9ae4-4653-8a4b-9b33c7dcf7aa)) - (segment (start 130.81 75.756) (end 130.5936 75.756) (width 0.3) (layer "F.Cu") (net 26) (tstamp 49a87267-eb32-44b6-984d-8f58bd08cb25)) - (segment (start 129.032 77.3176) (end 124.7375 77.3176) (width 0.3) (layer "F.Cu") (net 26) (tstamp 9b65d13c-7394-4ab6-ad0c-bdf5c9ccb37f)) - (segment (start 129.4958 79.0702) (end 130.81 77.756) (width 0.3) (layer "F.Cu") (net 27) (tstamp 392dd497-2d6e-4d72-8d4f-e6a09bfe84b4)) - (segment (start 124.7375 79.0702) (end 129.4958 79.0702) (width 0.3) (layer "F.Cu") (net 27) (tstamp c62753ed-52de-4122-ba61-94562f7fe95b)) - (segment (start 126.9238 89.7382) (end 129.7752 86.8868) (width 0.3) (layer "F.Cu") (net 28) (tstamp 178946f3-6e42-4163-85aa-5f94c3ef50b8)) - (segment (start 126.619 92.456) (end 126.9238 92.1512) (width 0.3) (layer "F.Cu") (net 28) (tstamp 33d9f2cc-ed15-4556-a5bd-3fb719d890f2)) - (segment (start 126.9238 92.1512) (end 126.9238 89.7382) (width 0.3) (layer "F.Cu") (net 28) (tstamp 636fe351-7cd1-4bfe-ad10-410c6241cc3e)) - (segment (start 129.7752 86.8868) (end 130.7084 86.8868) (width 0.3) (layer "F.Cu") (net 28) (tstamp c2ec5182-9ef6-4aaf-b4a9-bb039b043626)) - (segment (start 125.4233 92.456) (end 126.619 92.456) (width 0.3) (layer "F.Cu") (net 28) (tstamp fce404fb-b735-4033-b8c4-e59279588b66)) - (segment (start 120.6871 86.5641) (end 122.2098 88.0868) (width 0.3) (layer "F.Cu") (net 29) (tstamp 1e22ba79-ece8-496b-b480-3dd343e4c1ef)) - (segment (start 114.554 86.5641) (end 120.6871 86.5641) (width 0.3) (layer "F.Cu") (net 29) (tstamp 73a66562-3ea5-42e5-9c06-9907e4b3984d)) - (segment (start 118.6471 87.0641) (end 119.6698 88.0868) (width 0.3) (layer "F.Cu") (net 30) (tstamp 3e6ad59a-beaa-4522-9765-18ae847b38a4)) - (segment (start 114.554 87.0641) (end 118.6471 87.0641) (width 0.3) (layer "F.Cu") (net 30) (tstamp c28af23c-eb8f-407e-b023-7cc5456e75b6)) - (segment (start 114.173 81.6201) (end 113.1415 82.6516) (width 0.3) (layer "F.Cu") (net 31) (tstamp 33024f9c-c8e5-4c1d-aa3f-258f42cd23ba)) - (segment (start 114.173 72.2884) (end 114.173 81.6201) (width 0.3) (layer "F.Cu") (net 31) (tstamp 7063acb7-928b-4378-b429-dcbf0a5741cc)) - (segment (start 118.2116 84.1756) (end 118.2116 83.312) (width 0.3) (layer "F.Cu") (net 32) (tstamp 09ad8161-9745-4be5-ad31-847b1103670b)) - (segment (start 114.554 85.0641) (end 117.3231 85.0641) (width 0.3) (layer "F.Cu") (net 32) (tstamp ca6489ba-69b0-41eb-a6ca-40f25b3fbf3c)) - (segment (start 117.3231 85.0641) (end 118.2116 84.1756) (width 0.3) (layer "F.Cu") (net 32) (tstamp e97f244e-2ef4-4611-87e5-2781280f9c3f)) - (via (at 118.2116 83.312) (size 0.8) (drill 0.6) (layers "F.Cu" "B.Cu") (net 32) (tstamp f7a07269-1a42-4d91-aa72-8f764b8d94f0)) - (segment (start 112.903 80.6704) (end 115.5446 83.312) (width 0.3) (layer "B.Cu") (net 32) (tstamp 8a18e37e-e0dc-495f-b26b-3f2e6d9586e8)) - (segment (start 112.903 72.2884) (end 112.903 80.6704) (width 0.3) (layer "B.Cu") (net 32) (tstamp f367c885-6bc4-45b1-86b1-c0a83d283b9b)) - (segment (start 115.5446 83.312) (end 118.2116 83.312) (width 0.3) (layer "B.Cu") (net 32) (tstamp f3b8ad3e-4b27-4a4f-b621-e1dd5d3f0d0d)) - (segment (start 110.363 71.755) (end 110.998 71.12) (width 0.3) (layer "F.Cu") (net 33) (tstamp 24bebb4b-c652-4fd1-a643-376af324ce0c)) - (segment (start 110.998 71.12) (end 116.793 71.12) (width 0.3) (layer "F.Cu") (net 33) (tstamp 3da0154d-ef97-46bc-aab6-33f2862e8557)) - (segment (start 116.793 71.12) (end 118.063 72.39) (width 0.3) (layer "F.Cu") (net 33) (tstamp a3b26183-d968-4079-9a0b-c47d9123fef7)) - (segment (start 110.363 72.2884) (end 110.363 71.755) (width 0.3) (layer "F.Cu") (net 33) (tstamp a7c65463-0eb7-4531-a5c6-9ebbfda945fa)) - (segment (start 109.093 73.9394) (end 109.093 72.2884) (width 0.3) (layer "F.Cu") (net 34) (tstamp 263a5693-33fc-4d7b-9e96-b09bcf7b7007)) - (segment (start 109.6415 79.502) (end 109.6415 82.6516) (width 0.3) (layer "F.Cu") (net 34) (tstamp 752fbac7-fe53-48cb-b131-8161c325c06b)) - (segment (start 109.6415 79.502) (end 109.6415 74.4879) (width 0.3) (layer "F.Cu") (net 34) (tstamp 85359493-bd0b-4eb9-a8af-fc71eb450936)) - (segment (start 110.744 79.502) (end 109.6415 79.502) (width 0.3) (layer "F.Cu") (net 34) (tstamp 8c904424-85b0-42e2-ae68-7443c889ac1b)) - (segment (start 109.6415 74.4879) (end 109.093 73.9394) (width 0.3) (layer "F.Cu") (net 34) (tstamp 9b17dbe0-aa2f-4d95-a0f8-23ca7f3c1a35)) - (segment (start 106.229 87.0641) (end 103.6899 87.0641) (width 0.3) (layer "F.Cu") (net 35) (tstamp 87aae000-35ff-4654-b557-0836ae6ab3ac)) - (segment (start 103.6899 87.0641) (end 103.378 87.376) (width 0.3) (layer "F.Cu") (net 35) (tstamp e7566a3b-8dfc-422e-911d-29c816475a9d)) - (via (at 103.378 87.376) (size 0.8) (drill 0.6) (layers "F.Cu" "B.Cu") (net 35) (tstamp 0021e00f-9848-4cc7-b2b3-5b783831ffdd)) - (segment (start 103.378 82.042) (end 103.378 87.376) (width 0.3) (layer "B.Cu") (net 35) (tstamp 0caaa924-39a3-4d3e-8c86-463116c29a32)) - (segment (start 107.823 77.597) (end 103.378 82.042) (width 0.3) (layer "B.Cu") (net 35) (tstamp 4e394a84-e1e2-4922-b82f-4e7e6233f49a)) - (segment (start 107.823 72.2884) (end 107.823 77.597) (width 0.3) (layer "B.Cu") (net 35) (tstamp a0561350-70f0-4a9f-8eac-ccdb6ac52c09)) - (segment (start 83.058 72.644) (end 83.058 75.184) (width 0.5) (layer "B.Cu") (net 36) (tstamp 540cdb93-4d16-4672-a47e-3ceb0a99ff0b)) - (segment (start 115.5446 102.108) (end 113.3246 104.328) (width 0.3) (layer "F.Cu") (net 37) (tstamp 9d4754c8-2357-4790-898b-37d012a26ce5)) - (segment (start 115.5446 99.5172) (end 115.5446 102.108) (width 0.3) (layer "F.Cu") (net 37) (tstamp 9d825433-1c7e-42cb-8260-a511e34ada07)) - (segment (start 114.3762 98.3488) (end 115.5446 99.5172) (width 0.3) (layer "F.Cu") (net 37) (tstamp f10ea05c-b7ed-4686-9a6d-fa1196d19351)) - (segment (start 113.3246 104.328) (end 112.474 104.328) (width 0.3) (layer "F.Cu") (net 37) (tstamp fc1fac61-af67-4568-bce7-ac6686d50581)) - (segment (start 109.474 103.378) (end 109.474 105.3338) (width 0.3) (layer "F.Cu") (net 38) (tstamp 5a6d2538-7bc1-4749-a1e7-3a2355b1da03)) - (segment (start 109.474 105.3338) (end 109.855 105.7148) (width 0.3) (layer "F.Cu") (net 38) (tstamp a2fc48f9-b0c0-4502-a622-2882e372564d)) - (via (at 109.855 105.7148) (size 0.8) (drill 0.6) (layers "F.Cu" "B.Cu") (net 38) (tstamp 1174b2ac-84be-4582-8ab7-86e15be674b2)) - (segment (start 109.474 103.366) (end 108.6219 103.366) (width 0.3) (layer "B.Cu") (net 38) (tstamp 0d3856d9-c457-40b1-b9aa-25d983061516)) - (segment (start 109.855 103.747) (end 109.474 103.366) (width 0.3) (layer "B.Cu") (net 38) (tstamp c552c3a2-9abc-4118-a8cc-7456cfb51a03)) - (segment (start 109.855 105.7148) (end 109.855 103.747) (width 0.3) (layer "B.Cu") (net 38) (tstamp dc445b06-218f-42c5-b8da-847087a55f03)) - (segment (start 108.6219 103.366) (end 106.8559 101.6) (width 0.3) (layer "B.Cu") (net 38) (tstamp f30b43d9-7a4e-4b49-8cbd-a93431deea72)) - (segment (start 109.474 98.806) (end 106.354 98.806) (width 1.5) (layer "B.Cu") (net 39) (tstamp 78afda12-0045-4c0f-9dc7-039f6e2ec8f7)) - (segment (start 103.36 98.806) (end 103.312 98.758) (width 0.3) (layer "B.Cu") (net 39) (tstamp 9f4277c4-84cd-4403-b619-4068ff0c1341)) - (segment (start 106.354 98.806) (end 103.36 98.806) (width 0.3) (layer "B.Cu") (net 39) (tstamp fb75311c-c4c2-4c74-9c73-ce35839cf74a)) - (segment (start 129.333 96.52) (end 129.333 98.759) (width 0.3) (layer "B.Cu") (net 40) (tstamp 700fe733-2798-456a-9251-e4ea619467c1)) - (segment (start 129.333 98.759) (end 129.387 98.813) (width 0.3) (layer "B.Cu") (net 40) (tstamp e2fa8069-74d0-4d5d-9c3c-3b990516a5db)) - (segment (start 102.156 108.646) (end 95.7428 108.646) (width 0.3) (layer "F.Cu") (net 41) (tstamp 633250ef-3bfc-4fa1-85ca-3ebdd568151e)) - (segment (start 95.7428 108.646) (end 95.0214 107.9246) (width 0.3) (layer "F.Cu") (net 41) (tstamp 914fda78-5800-4432-a4bf-ff246fe8fc0f)) - (via (at 95.0214 107.9246) (size 0.8) (drill 0.6) (layers "F.Cu" "B.Cu") (net 41) (tstamp 5f0680c8-43ec-459a-b6c1-0bc72a6747e8)) - (segment (start 94.3356 105.711) (end 94.3356 107.2388) (width 0.3) (layer "B.Cu") (net 41) (tstamp 09e3937b-b757-4a18-9fc9-0ed5f80e47e6)) - (segment (start 97.282 108.458) (end 95.5548 108.458) (width 0.3) (layer "B.Cu") (net 41) (tstamp 75a97593-7ccc-4c8f-98ab-09570e6576c6)) - (segment (start 95.0214 107.9246) (end 94.3356 107.2388) (width 0.3) (layer "B.Cu") (net 41) (tstamp 9c0519e4-d630-4d28-ba7e-c5558ff023c0)) - (segment (start 95.5548 108.458) (end 95.0214 107.9246) (width 0.3) (layer "B.Cu") (net 41) (tstamp d2b72027-0e3a-4723-8fa9-bacc7517f5cf)) - (segment (start 109.829 111.513) (end 112.261 111.513) (width 0.3) (layer "B.Cu") (net 42) (tstamp f45df894-2f5c-4240-a942-6d1a779540b8)) - (segment (start 112.261 111.513) (end 112.268 111.506) (width 0.3) (layer "B.Cu") (net 42) (tstamp fe9e4fc2-1ec1-4c6f-b379-bd66e775e704)) - (segment (start 107.273 109.596) (end 107.395 109.474) (width 0.3) (layer "F.Cu") (net 43) (tstamp c437a4f1-4eca-4eed-976f-08ea0e2d8672)) - (segment (start 105.156 109.596) (end 107.273 109.596) (width 0.3) (layer "F.Cu") (net 43) (tstamp ee34e628-e894-48b7-b50b-54dcbea788b2)) - (segment (start 121.8946 77.3176) (end 122.9125 77.3176) (width 0.3) (layer "F.Cu") (net 44) (tstamp 1194df6a-bd0e-441a-a529-a048ae424187)) - (segment (start 121.5771 81.7499) (end 121.5771 77.6351) (width 0.3) (layer "F.Cu") (net 44) (tstamp 12915149-1c54-4965-9af2-8876a47af834)) - (segment (start 117.7629 85.5641) (end 121.5771 81.7499) (width 0.3) (layer "F.Cu") (net 44) (tstamp 40235aff-97a3-4771-b1dd-c3dfce836d89)) - (segment (start 121.5771 77.6351) (end 121.8946 77.3176) (width 0.3) (layer "F.Cu") (net 44) (tstamp 78808dce-72e7-4675-9e9a-bbe8b24f6c6c)) - (segment (start 114.554 85.5641) (end 117.7629 85.5641) (width 0.3) (layer "F.Cu") (net 44) (tstamp c26e54bd-9df4-4fec-b636-8ad26a0eb922)) - (segment (start 122.9125 79.0702) (end 122.9125 81.4051) (width 0.3) (layer "F.Cu") (net 45) (tstamp 61e2e6ec-3c18-453f-b0c4-80e0b98441b5)) - (segment (start 122.9125 81.4051) (end 118.2535 86.0641) (width 0.3) (layer "F.Cu") (net 45) (tstamp a1cc2d5f-c040-48cf-b665-330639e73a80)) - (segment (start 118.2535 86.0641) (end 114.554 86.0641) (width 0.3) (layer "F.Cu") (net 45) (tstamp d0882fb3-1236-4ef6-befc-e282f4ea115c)) - (segment (start 121.031 92.456) (end 117.1391 88.5641) (width 0.3) (layer "F.Cu") (net 46) (tstamp 2737d795-015e-4f26-ae55-46eebc1b089e)) - (segment (start 117.1391 88.5641) (end 114.554 88.5641) (width 0.3) (layer "F.Cu") (net 46) (tstamp 9280df40-f92a-4295-87ee-56ea343697bc)) - (segment (start 123.5983 92.456) (end 121.031 92.456) (width 0.3) (layer "F.Cu") (net 46) (tstamp 955f8689-e450-431a-91e4-ed4ef45cd7f5)) - (segment (start 120.015 90.678) (end 117.4011 88.0641) (width 0.3) (layer "F.Cu") (net 47) (tstamp 8cb0c696-a629-4044-9ca3-c7c6ef2a8cec)) - (segment (start 123.651 90.678) (end 120.015 90.678) (width 0.3) (layer "F.Cu") (net 47) (tstamp a2dffa72-7a0e-4688-84cf-798615fc95fc)) - (segment (start 117.4011 88.0641) (end 114.554 88.0641) (width 0.3) (layer "F.Cu") (net 47) (tstamp b7c8ae3f-0954-4e0a-9b08-703ffd066e64)) - (segment (start 102.315 95.711) (end 102.362 95.758) (width 0.3) (layer "B.Cu") (net 48) (tstamp 713a922f-7974-4163-bd4e-9dedfabfd9c8)) - (segment (start 102.315 93.472) (end 102.315 95.711) (width 0.3) (layer "B.Cu") (net 48) (tstamp 88a0a5de-107d-4914-9165-ed65a4fa4974)) - (segment (start 102.362 95.758) (end 105.363 95.758) (width 0.3) (layer "B.Cu") (net 48) (tstamp e0f27e62-43e5-4131-b8bd-b4d49a04a587)) - (segment (start 112.5258 100.0252) (end 112.5258 98.3742) (width 0.3) (layer "F.Cu") (net 49) (tstamp 20410b15-dbc5-4d04-89f1-c907f62b8845)) - (segment (start 112.5512 98.3488) (end 112.5512 97.362) (width 0.3) (layer "F.Cu") (net 49) (tstamp 4bb41e75-dee7-453c-9c48-a44f34cfcb83)) - (segment (start 111.0234 95.8342) (end 109.7342 95.8342) (width 0.3) (layer "F.Cu") (net 49) (tstamp 57a87a2d-2256-43bd-8b97-656d1b6a9c97)) - (segment (start 106.229 89.5641) (end 106.229 92.329) (width 0.3) (layer "F.Cu") (net 49) (tstamp 74f2ed2b-6961-4a26-a715-830b1eb873e5)) - (segment (start 112.5258 98.3742) (end 112.5512 98.3488) (width 0.3) (layer "F.Cu") (net 49) (tstamp 96eb3942-1c10-4d8d-82f9-c6e3219bb030)) - (segment (start 109.7342 95.8342) (end 106.229 92.329) (width 0.3) (layer "F.Cu") (net 49) (tstamp a687da87-a2bd-4dc4-a413-a0ae83f0d0bf)) - (segment (start 112.5512 97.362) (end 111.0234 95.8342) (width 0.3) (layer "F.Cu") (net 49) (tstamp cd436159-572f-4d70-aba3-22007636ada3)) - (segment (start 109.6415 92.4457) (end 110.1344 92.9386) (width 0.3) (layer "F.Cu") (net 50) (tstamp 163ed787-8b13-42c8-93fb-2c49f793afa1)) - (segment (start 119.4054 96.012) (end 119.9388 96.5454) (width 0.3) (layer "F.Cu") (net 50) (tstamp 26c1f16f-493c-4e33-86c9-4f9092744a8d)) - (segment (start 115.7478 96.012) (end 117.856 96.012) (width 0.3) (layer "F.Cu") (net 50) (tstamp 53ffc247-8fec-47a3-9bc7-d10652f758aa)) - (segment (start 117.856 96.012) (end 119.4054 96.012) (width 0.3) (layer "F.Cu") (net 50) (tstamp 6c94b364-97d7-4675-853a-028451eac6d8)) - (segment (start 110.1344 92.9386) (end 112.6744 92.9386) (width 0.3) (layer "F.Cu") (net 50) (tstamp 73808e54-bf2b-49e3-839d-f0153ff586c9)) - (segment (start 109.6415 90.9766) (end 109.6415 92.4457) (width 0.3) (layer "F.Cu") (net 50) (tstamp e78c460b-0365-4db4-af7e-0419030cda70)) - (segment (start 112.6744 92.9386) (end 115.7478 96.012) (width 0.3) (layer "F.Cu") (net 50) (tstamp f1b4a534-0633-4666-8097-5a7704cfb162)) - (via (at 119.9388 96.5454) (size 0.8) (drill 0.6) (layers "F.Cu" "B.Cu") (net 50) (tstamp 46536cb4-77fd-46a5-9a79-7fbe1adc554d)) - (segment (start 127.508 94.742) (end 127.508 96.52) (width 0.3) (layer "B.Cu") (net 50) (tstamp 3764e22c-48e6-4787-b1d6-e0d9318ef35a)) - (segment (start 127.508 96.52) (end 119.9642 96.52) (width 0.3) (layer "B.Cu") (net 50) (tstamp 3dd6812f-e9f3-4bc9-9725-15a47f364eed)) - (segment (start 119.9642 96.52) (end 119.9388 96.5454) (width 0.3) (layer "B.Cu") (net 50) (tstamp be2a1ac8-25ca-45bd-a0fb-7ecf429a392d)) - (segment (start 112.4458 93.4974) (end 116.8019 97.8535) (width 0.3) (layer "F.Cu") (net 51) (tstamp 30553154-c83d-4077-910a-2b4a7537769e)) - (segment (start 109.1415 90.9766) (end 109.1415 92.7839) (width 0.3) (layer "F.Cu") (net 51) (tstamp 4dbc0521-fa0b-4fa4-869e-a83effd60e5d)) - (segment (start 114.0206 106.7054) (end 116.8019 103.9241) (width 0.3) (layer "F.Cu") (net 51) (tstamp 577875b6-4586-4d7e-b9e8-e18912096f8e)) - (segment (start 114.046 107.696) (end 114.0206 107.6706) (width 0.3) (layer "F.Cu") (net 51) (tstamp 5dde64b9-648e-4c4e-ba12-58082cf1668e)) - (segment (start 116.8019 103.9241) (end 116.8019 97.8535) (width 0.3) (layer "F.Cu") (net 51) (tstamp bf788736-1d69-4649-83ef-9d79c721a4c6)) - (segment (start 114.0206 108.966) (end 114.0206 107.6706) (width 0.3) (layer "F.Cu") (net 51) (tstamp d322e8ff-b3b0-410b-b0a9-2e0e9bebc49b)) - (segment (start 114.0206 107.6706) (end 114.0206 106.7054) (width 0.3) (layer "F.Cu") (net 51) (tstamp db4d6bfc-f7e0-47e7-aaa7-a66977b293d0)) - (segment (start 109.1415 92.7839) (end 109.855 93.4974) (width 0.3) (layer "F.Cu") (net 51) (tstamp e5d99e5e-2f3b-4958-8632-4a07a21ad079)) - (segment (start 109.855 93.4974) (end 112.4458 93.4974) (width 0.3) (layer "F.Cu") (net 51) (tstamp f5977056-88a7-4f2e-8a8a-a5693a07fd08)) - (segment (start 117.856 107.696) (end 114.046 107.696) (width 0.3) (layer "F.Cu") (net 51) (tstamp ffd29bb6-9a8f-4064-9dc7-1b3535a49bed)) - (via (at 114.0206 108.966) (size 0.8) (drill 0.6) (layers "F.Cu" "B.Cu") (net 51) (tstamp a2009a85-ee5b-4950-9497-359cbb247849)) - (segment (start 114.0714 111.5276) (end 114.093 111.506) (width 0.3) (layer "B.Cu") (net 51) (tstamp 134893cb-8ece-4803-92c7-32f691762818)) - (segment (start 114.0206 108.966) (end 114.0206 111.4336) (width 0.3) (layer "B.Cu") (net 51) (tstamp 53eb09bf-eda7-4331-908e-0b01fad18614)) - (segment (start 114.0206 111.4336) (end 114.093 111.506) (width 0.3) (layer "B.Cu") (net 51) (tstamp ddd49db1-1645-44e5-aaf0-fc685d56dcf7)) - (segment (start 114.0714 113.0554) (end 114.0714 111.5276) (width 0.3) (layer "B.Cu") (net 51) (tstamp ed8b6495-1707-470b-9802-92dd8839cc54)) - (segment (start 116.1796 103.4288) (end 111.9124 107.696) (width 0.3) (layer "F.Cu") (net 52) (tstamp 320089bb-9e1c-4416-8eb1-ea37bfb8d45d)) - (segment (start 109.601 94.0054) (end 112.0648 94.0054) (width 0.3) (layer "F.Cu") (net 52) (tstamp 7892bf90-6d24-4839-b5f8-0e78947be19e)) - (segment (start 116.1796 98.1202) (end 116.1796 103.4288) (width 0.3) (layer "F.Cu") (net 52) (tstamp 95ef2de4-991d-4267-8421-83b32b0f5190)) - (segment (start 109.1165 107.696) (end 111.9124 107.696) (width 0.3) (layer "F.Cu") (net 52) (tstamp 9e84c00a-5955-4a0d-9f70-a3cb4a53a7f5)) - (segment (start 107.6415 92.0459) (end 109.601 94.0054) (width 0.3) (layer "F.Cu") (net 52) (tstamp aabc7eda-4871-4e1a-a610-6d0ab29a5d15)) - (segment (start 109.1165 107.696) (end 109.1165 109.3705) (width 0.3) (layer "F.Cu") (net 52) (tstamp b7ef7263-60ee-45b3-a27f-db486b13215a)) - (segment (start 109.1165 109.3705) (end 109.22 109.474) (width 0.3) (layer "F.Cu") (net 52) (tstamp bcdc568e-2f73-4d00-8c23-7084cc1721df)) - (segment (start 107.6415 90.9766) (end 107.6415 92.0459) (width 0.3) (layer "F.Cu") (net 52) (tstamp d26450be-4c56-48b1-b3fd-77ccafa86354)) - (segment (start 112.0648 94.0054) (end 116.1796 98.1202) (width 0.3) (layer "F.Cu") (net 52) (tstamp f845105c-9a04-4611-bdd0-c4a87af86c60)) - (segment (start 109.1415 77.5185) (end 106.045 74.422) (width 0.3) (layer "F.Cu") (net 63) (tstamp 8a351182-9917-4875-b8ef-62c3f1cebf15)) - (segment (start 106.045 74.422) (end 102.616 74.422) (width 0.3) (layer "F.Cu") (net 63) (tstamp 9efce8c4-1f4c-45a9-b1dc-9693469f010b)) - (segment (start 109.1415 82.6516) (end 109.1415 77.5185) (width 0.3) (layer "F.Cu") (net 63) (tstamp ca7a03bc-689a-4183-aa83-7d955dfeccfd)) - (segment (start 108.6415 82.6516) (end 108.6415 78.9997) (width 0.3) (layer "F.Cu") (net 64) (tstamp 29a937e9-207f-4eba-a813-31105e524a0e)) - (segment (start 103.3018 78.232) (end 102.616 78.232) (width 0.3) (layer "F.Cu") (net 64) (tstamp 3a61e7b1-5365-4124-add6-4be12b3365d2)) - (segment (start 103.7209 78.6511) (end 103.3018 78.232) (width 0.3) (layer "F.Cu") (net 64) (tstamp 6d160411-43ed-4633-9950-a2759feacfcd)) - (segment (start 108.2929 78.6511) (end 103.7209 78.6511) (width 0.3) (layer "F.Cu") (net 64) (tstamp e77f1f49-6987-4c0e-aee8-759b3fb748c9)) - (segment (start 108.6415 78.9997) (end 108.2929 78.6511) (width 0.3) (layer "F.Cu") (net 64) (tstamp f7d958b6-3a9a-402e-9082-e23ec4bfa593)) - (segment (start 125.476 90.1192) (end 125.476 90.678) (width 0.3) (layer "F.Cu") (net 73) (tstamp 9714b376-0c45-457b-8df8-6c9408f2f214)) - (segment (start 130.7084 84.8868) (end 125.476 90.1192) (width 0.3) (layer "F.Cu") (net 73) (tstamp e2563e98-8ec2-4621-adc2-00ea44495b73)) - - (zone (net 2) (net_name "GND") (layers "F&B.Cu") (tstamp 94dda6be-53d4-4124-adde-3ea3b25f01b8) (hatch edge 0.5) - (connect_pads (clearance 0.5)) - (min_thickness 0.25) (filled_areas_thickness no) - (fill yes (thermal_gap 0.5) (thermal_bridge_width 0.5)) - (polygon - (pts - (xy 70.5 70.5) - (xy 136.5 70.5) - (xy 136.5 124.5) - (xy 70.5 124.5) - ) - ) - (filled_polygon - (layer "F.Cu") - (pts - (xy 110.215231 70.770185) - (xy 110.260986 70.822989) - (xy 110.27093 70.892147) - (xy 110.241905 70.955703) - (xy 110.235892 70.962161) - (xy 109.96717 71.230882) - (xy 109.963484 71.234569) - (xy 109.950911 71.244644) - (xy 109.951065 71.24483) - (xy 109.945058 71.249798) - (xy 109.896468 71.301542) - (xy 109.895114 71.302938) - (xy 109.87409 71.323963) - (xy 109.874078 71.323977) - (xy 109.869587 71.329765) - (xy 109.865801 71.334197) - (xy 109.832552 71.369606) - (xy 109.822322 71.388213) - (xy 109.811644 71.404467) - (xy 109.802528 71.41622) - (xy 109.745887 71.457128) - (xy 109.67612 71.46092) - (xy 109.646094 71.44958) - (xy 109.477732 71.359588) - (xy 109.477729 71.359587) - (xy 109.477727 71.359586) - (xy 109.289132 71.302376) - (xy 109.289129 71.302375) - (xy 109.093 71.283059) - (xy 108.89687 71.302375) - (xy 108.708266 71.359588) - (xy 108.534465 71.452487) - (xy 108.529405 71.455869) - (xy 108.528314 71.454236) - (xy 108.472317 71.478) - (xy 108.403453 71.466187) - (xy 108.386844 71.455509) - (xy 108.386601 71.455874) - (xy 108.38154 71.452491) - (xy 108.381538 71.45249) - (xy 108.363698 71.442954) - (xy 108.20773 71.359587) - (xy 108.019129 71.302375) - (xy 107.823 71.283059) - (xy 107.62687 71.302375) - (xy 107.438266 71.359588) - (xy 107.264467 71.452486) - (xy 107.26446 71.45249) - (xy 107.112116 71.577516) - (xy 106.98709 71.72986) - (xy 106.987086 71.729867) - (xy 106.894188 71.903666) - (xy 106.836975 72.09227) - (xy 106.817659 72.2884) - (xy 106.836975 72.484529) - (xy 106.836976 72.484532) - (xy 106.892024 72.666001) - (xy 106.894188 72.673133) - (xy 106.987086 72.846932) - (xy 106.98709 72.846939) - (xy 107.112116 72.999283) - (xy 107.26446 73.124309) - (xy 107.264467 73.124313) - (xy 107.438266 73.217211) - (xy 107.438269 73.217211) - (xy 107.438273 73.217214) - (xy 107.626868 73.274424) - (xy 107.823 73.293741) - (xy 108.019132 73.274424) - (xy 108.207727 73.217214) - (xy 108.260046 73.189248) - (xy 108.328448 73.175006) - (xy 108.393692 73.200005) - (xy 108.435063 73.25631) - (xy 108.4425 73.298606) - (xy 108.4425 73.853894) - (xy 108.440732 73.869905) - (xy 108.440974 73.869928) - (xy 108.440239 73.877694) - (xy 108.442469 73.948635) - (xy 108.4425 73.950583) - (xy 108.4425 73.98032) - (xy 108.442501 73.98034) - (xy 108.443418 73.987606) - (xy 108.443876 73.993424) - (xy 108.445402 74.041967) - (xy 108.445403 74.04197) - (xy 108.451323 74.062348) - (xy 108.455268 74.081396) - (xy 108.457928 74.102454) - (xy 108.457931 74.102464) - (xy 108.475813 74.14763) - (xy 108.477705 74.153158) - (xy 108.491254 74.199795) - (xy 108.491255 74.199797) - (xy 108.50206 74.218066) - (xy 108.510617 74.235534) - (xy 108.516226 74.2497) - (xy 108.518432 74.255272) - (xy 108.546983 74.29457) - (xy 108.550188 74.299449) - (xy 108.574919 74.341265) - (xy 108.574923 74.341269) - (xy 108.589925 74.356271) - (xy 108.602563 74.371069) - (xy 108.615033 74.388233) - (xy 108.615036 74.388236) - (xy 108.615037 74.388237) - (xy 108.652476 74.419209) - (xy 108.656776 74.423122) - (xy 108.807055 74.573401) - (xy 108.954681 74.721027) - (xy 108.988166 74.78235) - (xy 108.991 74.808708) - (xy 108.991 76.148691) - (xy 108.971315 76.21573) - (xy 108.918511 76.261485) - (xy 108.849353 76.271429) - (xy 108.785797 76.242404) - (xy 108.779319 76.236372) - (xy 106.565434 74.022488) - (xy 106.555361 74.009914) - (xy 106.555174 74.01007) - (xy 106.550198 74.004055) - (xy 106.517382 73.97324) - (xy 106.498432 73.955445) - (xy 106.497058 73.954112) - (xy 106.476035 73.933089) - (xy 106.47024 73.928594) - (xy 106.465798 73.924799) - (xy 106.430396 73.891554) - (xy 106.430388 73.891548) - (xy 106.411792 73.881325) - (xy 106.395531 73.870644) - (xy 106.378763 73.857637) - (xy 106.350715 73.8455) - (xy 106.334178 73.838343) - (xy 106.328956 73.835786) - (xy 106.286368 73.812373) - (xy 106.286365 73.812372) - (xy 106.265801 73.807092) - (xy 106.247396 73.80079) - (xy 106.227927 73.792365) - (xy 106.227921 73.792363) - (xy 106.179951 73.784766) - (xy 106.174236 73.783582) - (xy 106.157772 73.779355) - (xy 106.12718 73.7715) - (xy 106.127177 73.7715) - (xy 106.105955 73.7715) - (xy 106.086555 73.769973) - (xy 106.065596 73.766653) - (xy 106.065595 73.766653) - (xy 106.041786 73.768903) - (xy 106.01723 73.771225) - (xy 106.011392 73.7715) - (xy 103.906516 73.7715) - (xy 103.843395 73.754232) - (xy 103.701396 73.670255) - (xy 103.701393 73.670254) - (xy 103.543573 73.624402) - (xy 103.543567 73.624401) - (xy 103.506701 73.6215) - (xy 103.506694 73.6215) - (xy 101.725306 73.6215) - (xy 101.725298 73.6215) - (xy 101.688432 73.624401) - (xy 101.688426 73.624402) - (xy 101.530606 73.670254) - (xy 101.530603 73.670255) - (xy 101.389137 73.753917) - (xy 101.389129 73.753923) - (xy 101.272923 73.870129) - (xy 101.272917 73.870137) - (xy 101.189255 74.011603) - (xy 101.189254 74.011606) - (xy 101.143402 74.169426) - (xy 101.143401 74.169432) - (xy 101.1405 74.206298) - (xy 101.1405 74.637701) - (xy 101.143401 74.674567) - (xy 101.143402 74.674573) - (xy 101.17606 74.786981) - (xy 101.175861 74.856851) - (xy 101.137919 74.915521) - (xy 101.07428 74.944364) - (xy 101.071398 74.944735) - (xy 101.067422 74.945201) - (xy 101.065619 74.945385) - (xy 100.989999 74.952001) - (xy 100.982932 74.95346) - (xy 100.98292 74.953404) - (xy 100.975563 74.955035) - (xy 100.975577 74.955092) - (xy 100.96854 74.95676) - (xy 100.897185 74.982729) - (xy 100.895485 74.98332) - (xy 100.823468 75.007185) - (xy 100.816926 75.010236) - (xy 100.816901 75.010183) - (xy 100.810108 75.013471) - (xy 100.810134 75.013523) - (xy 100.80368 75.016764) - (xy 100.740268 75.05847) - (xy 100.738748 75.059439) - (xy 100.674148 75.099285) - (xy 100.668483 75.103765) - (xy 100.668447 75.103719) - (xy 100.662598 75.108484) - (xy 100.662635 75.108528) - (xy 100.657105 75.113168) - (xy 100.604997 75.168398) - (xy 100.603741 75.16969) - (xy 100.047558 75.725872) - (xy 100.033929 75.737651) - (xy 100.014668 75.75199) - (xy 99.981098 75.791997) - (xy 99.977453 75.795976) - (xy 99.971607 75.801823) - (xy 99.951818 75.826851) - (xy 99.950681 75.828247) - (xy 99.901894 75.88639) - (xy 99.897929 75.892419) - (xy 99.897882 75.892388) - (xy 99.89383 75.898747) - (xy 99.893879 75.898777) - (xy 99.890089 75.904921) - (xy 99.858012 75.97371) - (xy 99.857227 75.975331) - (xy 99.823157 76.043172) - (xy 99.820688 76.049957) - (xy 99.820632 76.049936) - (xy 99.81816 76.05705) - (xy 99.818215 76.057069) - (xy 99.815943 76.063925) - (xy 99.800591 76.13827) - (xy 99.800201 76.140028) - (xy 99.782699 76.213879) - (xy 99.781861 76.221054) - (xy 99.781801 76.221047) - (xy 99.781035 76.228545) - (xy 99.781095 76.228551) - (xy 99.780465 76.23574) - (xy 99.782674 76.31163) - (xy 99.7827 76.313433) - (xy 99.7827 78.555569) - (xy 99.763015 78.622608) - (xy 99.746381 78.64325) - (xy 98.912451 79.477181) - (xy 98.851128 79.510666) - (xy 98.82477 79.5135) - (xy 86.677705 79.5135) - (xy 86.659735 79.512191) - (xy 86.635972 79.50871) - (xy 86.590533 79.512686) - (xy 86.583931 79.513264) - (xy 86.57853 79.5135) - (xy 86.570283 79.5135) - (xy 86.538606 79.517202) - (xy 86.536832 79.517384) - (xy 86.50639 79.520047) - (xy 86.461198 79.524001) - (xy 86.454132 79.52546) - (xy 86.45412 79.525404) - (xy 86.446763 79.527035) - (xy 86.446777 79.527092) - (xy 86.43974 79.52876) - (xy 86.368385 79.554729) - (xy 86.366685 79.55532) - (xy 86.294668 79.579185) - (xy 86.288126 79.582236) - (xy 86.288101 79.582183) - (xy 86.281308 79.585471) - (xy 86.281334 79.585523) - (xy 86.27488 79.588764) - (xy 86.211468 79.63047) - (xy 86.209948 79.631439) - (xy 86.145348 79.671285) - (xy 86.139683 79.675765) - (xy 86.139647 79.675719) - (xy 86.133798 79.680484) - (xy 86.133835 79.680528) - (xy 86.128305 79.685168) - (xy 86.076214 79.74038) - (xy 86.074958 79.741673) - (xy 85.366358 80.450272) - (xy 85.352729 80.462051) - (xy 85.333468 80.47639) - (xy 85.299898 80.516397) - (xy 85.296253 80.520376) - (xy 85.290407 80.526223) - (xy 85.270618 80.551251) - (xy 85.269481 80.552647) - (xy 85.220694 80.61079) - (xy 85.216729 80.616819) - (xy 85.216682 80.616788) - (xy 85.21263 80.623147) - (xy 85.212679 80.623177) - (xy 85.208889 80.629321) - (xy 85.176812 80.69811) - (xy 85.176027 80.699731) - (xy 85.141957 80.767572) - (xy 85.139488 80.774357) - (xy 85.139432 80.774336) - (xy 85.13696 80.78145) - (xy 85.137015 80.781469) - (xy 85.134743 80.788325) - (xy 85.119391 80.86267) - (xy 85.119001 80.864428) - (xy 85.101499 80.938279) - (xy 85.100661 80.945454) - (xy 85.100601 80.945447) - (xy 85.099835 80.952945) - (xy 85.099895 80.952951) - (xy 85.099265 80.96014) - (xy 85.101474 81.03603) - (xy 85.1015 81.037833) - (xy 85.1015 81.921948) - (xy 85.081815 81.988987) - (xy 85.065181 82.009629) - (xy 85.057629 82.017181) - (xy 84.996306 82.050666) - (xy 84.969948 82.0535) - (xy 84.645705 82.0535) - (xy 84.627735 82.052191) - (xy 84.603972 82.04871) - (xy 84.559512 82.052601) - (xy 84.551931 82.053264) - (xy 84.54653 82.0535) - (xy 84.538283 82.0535) - (xy 84.506606 82.057202) - (xy 84.504832 82.057384) - (xy 84.47439 82.060047) - (xy 84.429198 82.064001) - (xy 84.422132 82.06546) - (xy 84.42212 82.065404) - (xy 84.414763 82.067035) - (xy 84.414777 82.067092) - (xy 84.40774 82.06876) - (xy 84.336385 82.094729) - (xy 84.334685 82.09532) - (xy 84.262668 82.119185) - (xy 84.256126 82.122236) - (xy 84.256101 82.122183) - (xy 84.249308 82.125471) - (xy 84.249334 82.125523) - (xy 84.24288 82.128764) - (xy 84.179468 82.17047) - (xy 84.177948 82.171439) - (xy 84.113348 82.211285) - (xy 84.107683 82.215765) - (xy 84.107647 82.215719) - (xy 84.101798 82.220484) - (xy 84.101835 82.220528) - (xy 84.096305 82.225168) - (xy 84.044197 82.280398) - (xy 84.042941 82.28169) - (xy 83.485958 82.838672) - (xy 83.472329 82.850451) - (xy 83.453068 82.86479) - (xy 83.419498 82.904797) - (xy 83.415853 82.908776) - (xy 83.410007 82.914623) - (xy 83.390218 82.939651) - (xy 83.389081 82.941047) - (xy 83.340294 82.99919) - (xy 83.336329 83.005219) - (xy 83.336282 83.005188) - (xy 83.33223 83.011547) - (xy 83.332279 83.011577) - (xy 83.328489 83.017721) - (xy 83.296412 83.08651) - (xy 83.295627 83.088131) - (xy 83.261557 83.155972) - (xy 83.259088 83.162757) - (xy 83.259032 83.162736) - (xy 83.25656 83.16985) - (xy 83.256615 83.169869) - (xy 83.254343 83.176725) - (xy 83.238991 83.25107) - (xy 83.238601 83.252828) - (xy 83.221099 83.326679) - (xy 83.220261 83.333854) - (xy 83.220201 83.333847) - (xy 83.219435 83.341345) - (xy 83.219495 83.341351) - (xy 83.218865 83.34854) - (xy 83.221074 83.42443) - (xy 83.2211 83.426233) - (xy 83.2211 84.1131) - (xy 83.201415 84.180139) - (xy 83.148611 84.225894) - (xy 83.0971 84.2371) - (xy 82.391999 84.2371) - (xy 82.32496 84.217415) - (xy 82.279205 84.164611) - (xy 82.267999 84.1131) - (xy 82.267999 84.04133) - (xy 82.267998 84.041313) - (xy 82.257674 83.940247) - (xy 82.24937 83.915188) - (xy 82.203408 83.776484) - (xy 82.202961 83.775759) - (xy 82.202793 83.775167) - (xy 82.200354 83.769936) - (xy 82.201198 83.769542) - (xy 82.1845 83.710663) - (xy 82.1845 83.528927) - (xy 82.204185 83.461888) - (xy 82.243401 83.42339) - (xy 82.340156 83.363712) - (xy 82.464212 83.239656) - (xy 82.556314 83.090334) - (xy 82.611499 82.923797) - (xy 82.622 82.821009) - (xy 82.621999 81.770992) - (xy 82.611499 81.668203) - (xy 82.556314 81.501666) - (xy 82.464212 81.352344) - (xy 82.340156 81.228288) - (xy 82.190834 81.136186) - (xy 82.024297 81.081001) - (xy 82.024295 81.081) - (xy 81.92151 81.0705) - (xy 81.146498 81.0705) - (xy 81.14648 81.070501) - (xy 81.043703 81.081) - (xy 81.0437 81.081001) - (xy 80.877168 81.136185) - (xy 80.877163 81.136187) - (xy 80.727842 81.228289) - (xy 80.603785 81.352346) - (xy 80.602037 81.355182) - (xy 80.600329 81.356717) - (xy 80.599307 81.358011) - (xy 80.599085 81.357836) - (xy 80.550089 81.401905) - (xy 80.481126 81.413126) - (xy 80.417044 81.385282) - (xy 80.390963 81.355182) - (xy 80.389214 81.352346) - (xy 80.265157 81.228289) - (xy 80.265156 81.228288) - (xy 80.115834 81.136186) - (xy 79.949297 81.081001) - (xy 79.949295 81.081) - (xy 79.84651 81.0705) - (xy 79.071498 81.0705) - (xy 79.07148 81.070501) - (xy 78.968703 81.081) - (xy 78.9687 81.081001) - (xy 78.802168 81.136185) - (xy 78.802163 81.136187) - (xy 78.652842 81.228289) - (xy 78.528789 81.352342) - (xy 78.498219 81.401905) - (xy 78.442041 81.492985) - (xy 78.432895 81.507813) - (xy 78.430835 81.506542) - (xy 78.392268 81.550347) - (xy 78.325075 81.5695) - (xy 78.258193 81.549286) - (xy 78.238375 81.533185) - (xy 78.180851 81.475661) - (xy 78.18085 81.47566) - (xy 78.088297 81.418573) - (xy 78.034018 81.385093) - (xy 78.034013 81.385091) - (xy 77.992974 81.371492) - (xy 77.870253 81.330826) - (xy 77.870251 81.330825) - (xy 77.769178 81.3205) - (xy 77.17083 81.3205) - (xy 77.170812 81.320501) - (xy 77.069747 81.330825) - (xy 76.905984 81.385092) - (xy 76.905981 81.385093) - (xy 76.759151 81.475659) - (xy 76.644827 81.589983) - (xy 76.583504 81.623467) - (xy 76.513812 81.618483) - (xy 76.469465 81.589982) - (xy 76.355538 81.476055) - (xy 76.355534 81.476052) - (xy 76.208811 81.385551) - (xy 76.2088 81.385546) - (xy 76.045152 81.331319) - (xy 75.944154 81.321) - (xy 75.895 81.321) - (xy 75.895 83.270999) - (xy 75.94414 83.270999) - (xy 75.944154 83.270998) - (xy 76.045152 83.26068) - (xy 76.2088 83.206453) - (xy 76.208811 83.206448) - (xy 76.355533 83.115948) - (xy 76.469464 83.002017) - (xy 76.530787 82.968532) - (xy 76.600479 82.973516) - (xy 76.644827 83.002017) - (xy 76.75915 83.11634) - (xy 76.905984 83.206908) - (xy 77.069747 83.261174) - (xy 77.170823 83.2715) - (xy 77.769176 83.271499) - (xy 77.769184 83.271498) - (xy 77.769187 83.271498) - (xy 77.82453 83.265844) - (xy 77.870253 83.261174) - (xy 78.034016 83.206908) - (xy 78.18085 83.11634) - (xy 78.238378 83.058811) - (xy 78.299697 83.025329) - (xy 78.369389 83.030313) - (xy 78.425323 83.072184) - (xy 78.432612 83.084361) - (xy 78.432895 83.084187) - (xy 78.436685 83.090331) - (xy 78.436686 83.090334) - (xy 78.528788 83.239656) - (xy 78.652844 83.363712) - (xy 78.664871 83.37113) - (xy 78.711597 83.423076) - (xy 78.722821 83.492039) - (xy 78.694979 83.556121) - (xy 78.687459 83.564351) - (xy 78.622159 83.629651) - (xy 78.531593 83.776481) - (xy 78.531591 83.776486) - (xy 78.510921 83.838864) - (xy 78.477326 83.940247) - (xy 78.477326 83.940248) - (xy 78.477325 83.940248) - (xy 78.467 84.041315) - (xy 78.467 84.614669) - (xy 78.467001 84.614687) - (xy 78.477325 84.715752) - (xy 78.504508 84.797783) - (xy 78.531148 84.878177) - (xy 78.531592 84.879515) - (xy 78.531593 84.879518) - (xy 78.611954 85.009803) - (xy 78.630394 85.077196) - (xy 78.609471 85.143859) - (xy 78.555829 85.188629) - (xy 78.506415 85.1989) - (xy 78.062329 85.1989) - (xy 78.062323 85.198901) - (xy 78.00272 85.205308) - (xy 77.995174 85.207092) - (xy 77.994828 85.20563) - (xy 77.933822 85.209984) - (xy 77.9188 85.205572) - (xy 77.917682 85.205308) - (xy 77.858082 85.198901) - (xy 77.858073 85.1989) - (xy 77.858063 85.1989) - (xy 77.112329 85.1989) - (xy 77.112323 85.198901) - (xy 77.052716 85.205308) - (xy 76.917871 85.255602) - (xy 76.917864 85.255606) - (xy 76.802655 85.341852) - (xy 76.802652 85.341855) - (xy 76.716406 85.457064) - (xy 76.716402 85.457071) - (xy 76.699111 85.503433) - (xy 76.65724 85.559367) - (xy 76.591776 85.583784) - (xy 76.582929 85.5841) - (xy 76.119308 85.5841) - (xy 76.052269 85.564415) - (xy 76.013769 85.525197) - (xy 75.969512 85.453444) - (xy 75.845456 85.329388) - (xy 75.725836 85.255606) - (xy 75.696136 85.237287) - (xy 75.696131 85.237285) - (xy 75.694662 85.236798) - (xy 75.529597 85.182101) - (xy 75.529595 85.1821) - (xy 75.42681 85.1716) - (xy 74.026798 85.1716) - (xy 74.026781 85.171601) - (xy 73.924003 85.1821) - (xy 73.924 85.182101) - (xy 73.757468 85.237285) - (xy 73.757463 85.237287) - (xy 73.608142 85.329389) - (xy 73.484089 85.453442) - (xy 73.391987 85.602763) - (xy 73.391985 85.602768) - (xy 73.368781 85.672795) - (xy 73.336801 85.769303) - (xy 73.336801 85.769304) - (xy 73.3368 85.769304) - (xy 73.3263 85.872083) - (xy 73.3263 86.797101) - (xy 73.326301 86.797119) - (xy 73.3368 86.899896) - (xy 73.336801 86.899899) - (xy 73.391985 87.066431) - (xy 73.391987 87.066436) - (xy 73.407405 87.091432) - (xy 73.484088 87.215756) - (xy 73.608144 87.339812) - (xy 73.757466 87.431914) - (xy 73.924003 87.487099) - (xy 74.026791 87.4976) - (xy 75.426808 87.497599) - (xy 75.529597 87.487099) - (xy 75.696134 87.431914) - (xy 75.845456 87.339812) - (xy 75.969512 87.215756) - (xy 76.01377 87.144002) - (xy 76.065717 87.097279) - (xy 76.119308 87.0851) - (xy 76.535701 87.0851) - (xy 76.60274 87.104785) - (xy 76.648495 87.157589) - (xy 76.659701 87.2091) - (xy 76.659701 87.307276) - (xy 76.666108 87.366883) - (xy 76.716402 87.501728) - (xy 76.716406 87.501735) - (xy 76.802652 87.616944) - (xy 76.802655 87.616947) - (xy 76.917864 87.703193) - (xy 76.917869 87.703196) - (xy 76.945452 87.713483) - (xy 77.001386 87.755354) - (xy 77.025804 87.820818) - (xy 77.010953 87.889091) - (xy 76.961549 87.938497) - (xy 76.945455 87.945847) - (xy 76.918116 87.956044) - (xy 76.918106 87.956049) - (xy 76.803012 88.042209) - (xy 76.803009 88.042212) - (xy 76.716849 88.157306) - (xy 76.716845 88.157313) - (xy 76.666603 88.29202) - (xy 76.666601 88.292027) - (xy 76.6602 88.351555) - (xy 76.6602 88.9294) - (xy 77.4857 88.9294) - (xy 77.552739 88.949085) - (xy 77.598494 89.001889) - (xy 77.6097 89.0534) - (xy 77.6097 90.00727) - (xy 77.609701 90.007276) - (xy 77.616108 90.066883) - (xy 77.666403 90.20173) - (xy 77.669529 90.207454) - (xy 77.6847 90.266886) - (xy 77.6847 90.67204) - (xy 77.665015 90.739079) - (xy 77.625715 90.777629) - (xy 77.615531 90.783899) - (xy 77.615529 90.7839) - (xy 77.439762 90.938594) - (xy 77.439759 90.938597) - (xy 77.402278 90.985016) - (xy 77.292665 91.120769) - (xy 77.292664 91.120769) - (xy 77.178475 91.325177) - (xy 77.100472 91.545947) - (xy 77.10047 91.545955) - (xy 77.0609 91.776719) - (xy 77.0609 92.3943) - (xy 77.041215 92.461339) - (xy 76.988411 92.507094) - (xy 76.9369 92.5183) - (xy 76.282829 92.5183) - (xy 76.21579 92.498615) - (xy 76.195148 92.481981) - (xy 75.945419 92.232251) - (xy 75.911934 92.170928) - (xy 75.9091 92.14457) - (xy 75.9091 90.45253) - (xy 75.928785 90.385491) - (xy 75.945417 90.36485) - (xy 75.969512 90.340756) - (xy 76.061614 90.191434) - (xy 76.116799 90.024897) - (xy 76.1273 89.922109) - (xy 76.127299 89.4294) - (xy 76.6602 89.4294) - (xy 76.6602 90.007244) - (xy 76.666601 90.066772) - (xy 76.666603 90.066779) - (xy 76.716845 90.201486) - (xy 76.716849 90.201493) - (xy 76.803009 90.316587) - (xy 76.803012 90.31659) - (xy 76.918106 90.40275) - (xy 76.918113 90.402754) - (xy 77.05282 90.452996) - (xy 77.052827 90.452998) - (xy 77.112355 90.459399) - (xy 77.112372 90.4594) - (xy 77.2352 90.4594) - (xy 77.2352 89.4294) - (xy 76.6602 89.4294) - (xy 76.127299 89.4294) - (xy 76.127299 88.997092) - (xy 76.122629 88.95138) - (xy 76.116799 88.894303) - (xy 76.116798 88.8943) - (xy 76.113648 88.884794) - (xy 76.061614 88.727766) - (xy 75.969512 88.578444) - (xy 75.845456 88.454388) - (xy 75.750793 88.396) - (xy 75.696136 88.362287) - (xy 75.696131 88.362285) - (xy 75.66375 88.351555) - (xy 75.529597 88.307101) - (xy 75.529595 88.3071) - (xy 75.42681 88.2966) - (xy 74.026798 88.2966) - (xy 74.026781 88.296601) - (xy 73.924003 88.3071) - (xy 73.924 88.307101) - (xy 73.757468 88.362285) - (xy 73.757463 88.362287) - (xy 73.608142 88.454389) - (xy 73.484089 88.578442) - (xy 73.391987 88.727763) - (xy 73.391985 88.727768) - (xy 73.374628 88.78015) - (xy 73.336801 88.894303) - (xy 73.336801 88.894304) - (xy 73.3368 88.894304) - (xy 73.3263 88.997083) - (xy 73.3263 89.922101) - (xy 73.326301 89.922119) - (xy 73.3368 90.024896) - (xy 73.336801 90.024899) - (xy 73.391985 90.191431) - (xy 73.391987 90.191436) - (xy 73.400497 90.205233) - (xy 73.484088 90.340756) - (xy 73.608144 90.464812) - (xy 73.757466 90.556914) - (xy 73.924003 90.612099) - (xy 74.026791 90.6226) - (xy 74.284101 90.622599) - (xy 74.351139 90.642283) - (xy 74.396894 90.695087) - (xy 74.4081 90.746599) - (xy 74.4081 92.443094) - (xy 74.406791 92.461063) - (xy 74.40331 92.484825) - (xy 74.407864 92.536864) - (xy 74.4081 92.54227) - (xy 74.4081 92.550512) - (xy 74.411802 92.582191) - (xy 74.411983 92.583959) - (xy 74.414665 92.614611) - (xy 74.4186 92.659592) - (xy 74.420061 92.666667) - (xy 74.420003 92.666678) - (xy 74.421634 92.674037) - (xy 74.421692 92.674024) - (xy 74.423357 92.681049) - (xy 74.423358 92.681054) - (xy 74.423359 92.681055) - (xy 74.446949 92.745871) - (xy 74.449308 92.752351) - (xy 74.449899 92.754053) - (xy 74.473782 92.826126) - (xy 74.476836 92.832674) - (xy 74.476782 92.832698) - (xy 74.48007 92.839488) - (xy 74.480121 92.839463) - (xy 74.483361 92.845913) - (xy 74.483362 92.845914) - (xy 74.483363 92.845917) - (xy 74.525094 92.909367) - (xy 74.526043 92.910858) - (xy 74.565889 92.975457) - (xy 74.570366 92.981119) - (xy 74.570319 92.981156) - (xy 74.575082 92.987002) - (xy 74.575128 92.986964) - (xy 74.579773 92.992499) - (xy 74.634963 93.044568) - (xy 74.636257 93.045825) - (xy 75.34487 93.754438) - (xy 75.356651 93.76807) - (xy 75.370988 93.787328) - (xy 75.411009 93.820911) - (xy 75.414997 93.824566) - (xy 75.420817 93.830386) - (xy 75.420822 93.83039) - (xy 75.420823 93.830391) - (xy 75.445863 93.85019) - (xy 75.447244 93.851315) - (xy 75.505386 93.900102) - (xy 75.505387 93.900102) - (xy 75.505389 93.900104) - (xy 75.511418 93.90407) - (xy 75.511385 93.904119) - (xy 75.517747 93.908172) - (xy 75.517779 93.908121) - (xy 75.523919 93.911908) - (xy 75.523923 93.911911) - (xy 75.561878 93.929609) - (xy 75.592737 93.944) - (xy 75.59436 93.944786) - (xy 75.662162 93.978838) - (xy 75.668957 93.981311) - (xy 75.668936 93.981367) - (xy 75.676055 93.983842) - (xy 75.676074 93.983786) - (xy 75.682924 93.986055) - (xy 75.682927 93.986057) - (xy 75.757309 94.001414) - (xy 75.759018 94.001794) - (xy 75.782969 94.00747) - (xy 75.832873 94.019299) - (xy 75.832876 94.019299) - (xy 75.832879 94.0193) - (xy 75.832882 94.0193) - (xy 75.840052 94.020138) - (xy 75.840044 94.020197) - (xy 75.847545 94.020964) - (xy 75.847551 94.020905) - (xy 75.85474 94.021534) - (xy 75.854744 94.021533) - (xy 75.854745 94.021534) - (xy 75.88283 94.020716) - (xy 75.930633 94.019326) - (xy 75.932436 94.0193) - (xy 76.9369 94.0193) - (xy 77.003939 94.038985) - (xy 77.049694 94.091789) - (xy 77.0609 94.1433) - (xy 77.0609 94.702246) - (xy 77.075782 94.877096) - (xy 77.134782 95.103689) - (xy 77.231224 95.317044) - (xy 77.231229 95.317052) - (xy 77.362335 95.511031) - (xy 77.36234 95.511036) - (xy 77.362343 95.511041) - (xy 77.524356 95.680083) - (xy 77.712608 95.819313) - (xy 77.757716 95.842056) - (xy 77.874604 95.90099) - (xy 77.921682 95.924726) - (xy 78.145563 95.993289) - (xy 78.377811 96.023029) - (xy 78.611745 96.013092) - (xy 78.840634 95.963762) - (xy 79.057894 95.87646) - (xy 79.257275 95.753696) - (xy 79.433041 95.599003) - (xy 79.580135 95.41683) - (xy 79.694326 95.212419) - (xy 79.772329 94.991649) - (xy 79.8119 94.760872) - (xy 79.8119 91.835372) - (xy 79.811899 91.835353) - (xy 79.797017 91.660503) - (xy 79.784723 91.613289) - (xy 79.738017 91.43391) - (xy 79.726757 91.409) - (xy 79.641575 91.220555) - (xy 79.64157 91.220547) - (xy 79.510464 91.026568) - (xy 79.51046 91.026563) - (xy 79.510457 91.026559) - (xy 79.348444 90.857517) - (xy 79.348443 90.857516) - (xy 79.348442 90.857515) - (xy 79.235965 90.774327) - (xy 79.193771 90.718637) - (xy 79.1857 90.674632) - (xy 79.1857 90.583899) - (xy 79.205385 90.51686) - (xy 79.258189 90.471105) - (xy 79.3097 90.459899) - (xy 79.758071 90.459899) - (xy 79.758072 90.459899) - (xy 79.817683 90.453491) - (xy 79.952531 90.403196) - (xy 80.067746 90.316946) - (xy 80.153996 90.201731) - (xy 80.204291 90.066883) - (xy 80.207112 90.040641) - (xy 80.233849 89.976094) - (xy 80.291241 89.936246) - (xy 80.330401 89.9299) - (xy 81.285293 89.9299) - (xy 81.352332 89.949585) - (xy 81.368831 89.962263) - (xy 81.477558 90.06138) - (xy 81.47756 90.061382) - (xy 81.54814 90.105083) - (xy 81.650963 90.168748) - (xy 81.841144 90.242424) - (xy 82.041624 90.2799) - (xy 82.041626 90.2799) - (xy 82.245574 90.2799) - (xy 82.245576 90.2799) - (xy 82.446056 90.242424) - (xy 82.636237 90.168748) - (xy 82.809641 90.061381) - (xy 82.960364 89.923979) - (xy 82.998145 89.873948) - (xy 83.054254 89.832311) - (xy 83.123966 89.827619) - (xy 83.185148 89.861361) - (xy 83.218376 89.922825) - (xy 83.2211 89.948674) - (xy 83.2211 91.374185) - (xy 83.201415 91.441224) - (xy 83.148611 91.486979) - (xy 83.079453 91.496923) - (xy 83.015897 91.467898) - (xy 82.984108 91.425261) - (xy 82.891575 91.220555) - (xy 82.89157 91.220547) - (xy 82.760464 91.026568) - (xy 82.76046 91.026563) - (xy 82.760457 91.026559) - (xy 82.621551 90.881626) - (xy 82.598448 90.857521) - (xy 82.598447 90.85752) - (xy 82.598444 90.857517) - (xy 82.410192 90.718287) - (xy 82.410191 90.718286) - (xy 82.410189 90.718285) - (xy 82.201119 90.612874) - (xy 82.018383 90.556912) - (xy 81.977237 90.544311) - (xy 81.977235 90.54431) - (xy 81.977233 90.54431) - (xy 81.744983 90.51457) - (xy 81.511058 90.524507) - (xy 81.511057 90.524507) - (xy 81.282163 90.573838) - (xy 81.064909 90.661138) - (xy 80.865524 90.783903) - (xy 80.689762 90.938593) - (xy 80.68976 90.938595) - (xy 80.689759 90.938597) - (xy 80.652278 90.985016) - (xy 80.542665 91.120769) - (xy 80.542664 91.120769) - (xy 80.428475 91.325177) - (xy 80.350472 91.545947) - (xy 80.35047 91.545955) - (xy 80.3109 91.776719) - (xy 80.3109 94.702246) - (xy 80.325782 94.877096) - (xy 80.384782 95.103689) - (xy 80.481224 95.317044) - (xy 80.481229 95.317052) - (xy 80.612335 95.511031) - (xy 80.61234 95.511036) - (xy 80.612343 95.511041) - (xy 80.774356 95.680083) - (xy 80.962608 95.819313) - (xy 81.007716 95.842056) - (xy 81.124604 95.90099) - (xy 81.171682 95.924726) - (xy 81.395563 95.993289) - (xy 81.627811 96.023029) - (xy 81.861745 96.013092) - (xy 82.090634 95.963762) - (xy 82.307894 95.87646) - (xy 82.507275 95.753696) - (xy 82.683041 95.599003) - (xy 82.830135 95.41683) - (xy 82.944326 95.212419) - (xy 83.022329 94.991649) - (xy 83.0619 94.760872) - (xy 83.0619 94.740713) - (xy 83.081585 94.673675) - (xy 83.134389 94.62792) - (xy 83.203547 94.617976) - (xy 83.238308 94.628333) - (xy 83.23976 94.62901) - (xy 83.239766 94.629014) - (xy 83.406303 94.684199) - (xy 83.509091 94.6947) - (xy 84.434108 94.694699) - (xy 84.434116 94.694698) - (xy 84.434119 94.694698) - (xy 84.490402 94.688948) - (xy 84.536897 94.684199) - (xy 84.703434 94.629014) - (xy 84.852756 94.536912) - (xy 84.976812 94.412856) - (xy 85.068914 94.263534) - (xy 85.124099 94.096997) - (xy 85.1346 93.994209) - (xy 85.1346 93.5442) - (xy 85.934101 93.5442) - (xy 85.934101 93.994186) - (xy 85.944594 94.096897) - (xy 85.999741 94.263319) - (xy 85.999743 94.263324) - (xy 86.091784 94.412545) - (xy 86.215754 94.536515) - (xy 86.364975 94.628556) - (xy 86.36498 94.628558) - (xy 86.531402 94.683705) - (xy 86.531409 94.683706) - (xy 86.634119 94.694199) - (xy 86.846599 94.694199) - (xy 86.8466 94.694198) - (xy 86.8466 93.5442) - (xy 87.3466 93.5442) - (xy 87.3466 94.694199) - (xy 87.559072 94.694199) - (xy 87.559086 94.694198) - (xy 87.661797 94.683705) - (xy 87.828219 94.628558) - (xy 87.828224 94.628556) - (xy 87.977445 94.536515) - (xy 88.101415 94.412545) - (xy 88.193456 94.263324) - (xy 88.193458 94.263319) - (xy 88.248605 94.096897) - (xy 88.248606 94.09689) - (xy 88.259099 93.994186) - (xy 88.2591 93.994173) - (xy 88.2591 93.5442) - (xy 87.3466 93.5442) - (xy 86.8466 93.5442) - (xy 85.934101 93.5442) - (xy 85.1346 93.5442) - (xy 85.134599 93.0442) - (xy 85.9341 93.0442) - (xy 86.8466 93.0442) - (xy 86.8466 91.8942) - (xy 87.3466 91.8942) - (xy 87.3466 93.0442) - (xy 88.259099 93.0442) - (xy 88.259099 92.594228) - (xy 88.259098 92.594213) - (xy 88.248605 92.491502) - (xy 88.193458 92.32508) - (xy 88.193456 92.325075) - (xy 88.101415 92.175854) - (xy 87.977445 92.051884) - (xy 87.828224 91.959843) - (xy 87.828219 91.959841) - (xy 87.661797 91.904694) - (xy 87.66179 91.904693) - (xy 87.559086 91.8942) - (xy 87.3466 91.8942) - (xy 86.8466 91.8942) - (xy 86.634129 91.8942) - (xy 86.634112 91.894201) - (xy 86.531402 91.904694) - (xy 86.36498 91.959841) - (xy 86.364975 91.959843) - (xy 86.215754 92.051884) - (xy 86.091784 92.175854) - (xy 85.999743 92.325075) - (xy 85.999741 92.32508) - (xy 85.944594 92.491502) - (xy 85.944593 92.491509) - (xy 85.9341 92.594213) - (xy 85.9341 93.0442) - (xy 85.134599 93.0442) - (xy 85.134599 92.594192) - (xy 85.124099 92.491403) - (xy 85.068914 92.324866) - (xy 84.976812 92.175544) - (xy 84.852756 92.051488) - (xy 84.852755 92.051487) - (xy 84.781002 92.007229) - (xy 84.734278 91.955281) - (xy 84.7221 91.901691) - (xy 84.7221 89.675943) - (xy 84.741785 89.608904) - (xy 84.794589 89.563149) - (xy 84.863747 89.553205) - (xy 84.927303 89.58223) - (xy 84.93732 89.59195) - (xy 85.086256 89.753738) - (xy 85.282491 89.906474) - (xy 85.337505 89.936246) - (xy 85.500332 90.024364) - (xy 85.50119 90.024828) - (xy 85.623369 90.066772) - (xy 85.734964 90.105083) - (xy 85.736386 90.105571) - (xy 85.981665 90.1465) - (xy 86.230335 90.1465) - (xy 86.475614 90.105571) - (xy 86.71081 90.024828) - (xy 86.929509 89.906474) - (xy 87.125744 89.753738) - (xy 87.294164 89.570785) - (xy 87.29628 89.567547) - (xy 87.366988 89.459319) - (xy 87.430173 89.362607) - (xy 87.530063 89.134881) - (xy 87.591108 88.893821) - (xy 87.591856 88.884794) - (xy 87.611643 88.646005) - (xy 88.410858 88.646005) - (xy 88.431385 88.893729) - (xy 88.431387 88.893738) - (xy 88.492412 89.134717) - (xy 88.592266 89.362364) - (xy 88.692564 89.515882) - (xy 89.432923 88.775523) - (xy 89.456507 88.855844) - (xy 89.534239 88.976798) - (xy 89.6429 89.070952) - (xy 89.773685 89.13068) - (xy 89.783466 89.132086) - (xy 89.045942 89.869609) - (xy 89.092768 89.906055) - (xy 89.09277 89.906056) - (xy 89.311385 90.024364) - (xy 89.311396 90.024369) - (xy 89.546506 90.105083) - (xy 89.791707 90.146) - (xy 90.040293 90.146) - (xy 90.285493 90.105083) - (xy 90.520603 90.024369) - (xy 90.520614 90.024364) - (xy 90.739228 89.906057) - (xy 90.739231 89.906055) - (xy 90.786056 89.869609) - (xy 90.048533 89.132086) - (xy 90.058315 89.13068) - (xy 90.1891 89.070952) - (xy 90.297761 88.976798) - (xy 90.375493 88.855844) - (xy 90.399076 88.775524) - (xy 91.139434 89.515882) - (xy 91.239731 89.362369) - (xy 91.339587 89.134717) - (xy 91.400612 88.893738) - (xy 91.400614 88.893729) - (xy 91.421141 88.646005) - (xy 91.421141 88.645994) - (xy 91.400614 88.39827) - (xy 91.400612 88.398261) - (xy 91.339587 88.157282) - (xy 91.239731 87.92963) - (xy 91.160138 87.807805) - (xy 93.973458 87.807805) - (xy 93.993985 88.055529) - (xy 93.993987 88.055538) - (xy 94.055012 88.296517) - (xy 94.154866 88.524164) - (xy 94.255164 88.677682) - (xy 94.995523 87.937323) - (xy 95.019107 88.017644) - (xy 95.096839 88.138598) - (xy 95.2055 88.232752) - (xy 95.336285 88.29248) - (xy 95.346066 88.293886) - (xy 94.608542 89.031409) - (xy 94.655368 89.067855) - (xy 94.65537 89.067856) - (xy 94.873985 89.186164) - (xy 94.873996 89.186169) - (xy 95.109106 89.266883) - (xy 95.354307 89.3078) - (xy 95.602893 89.3078) - (xy 95.848093 89.266883) - (xy 96.083203 89.186169) - (xy 96.083214 89.186164) - (xy 96.301828 89.067857) - (xy 96.301831 89.067855) - (xy 96.348656 89.031409) - (xy 95.611133 88.293886) - (xy 95.620915 88.29248) - (xy 95.7517 88.232752) - (xy 95.860361 88.138598) - (xy 95.938093 88.017644) - (xy 95.961676 87.937324) - (xy 96.702034 88.677682) - (xy 96.802331 88.524169) - (xy 96.902187 88.296517) - (xy 96.963212 88.055538) - (xy 96.963214 88.055529) - (xy 96.983741 87.807805) - (xy 96.983741 87.807794) - (xy 96.963214 87.56007) - (xy 96.963212 87.560061) - (xy 96.902187 87.319082) - (xy 96.802331 87.09143) - (xy 96.702034 86.937916) - (xy 95.961676 87.678274) - (xy 95.938093 87.597956) - (xy 95.860361 87.477002) - (xy 95.7517 87.382848) - (xy 95.620915 87.32312) - (xy 95.611134 87.321713) - (xy 96.348657 86.58419) - (xy 96.348656 86.584189) - (xy 96.301829 86.547743) - (xy 96.083214 86.429435) - (xy 96.083203 86.42943) - (xy 95.848093 86.348716) - (xy 95.602893 86.3078) - (xy 95.354307 86.3078) - (xy 95.109106 86.348716) - (xy 94.873996 86.42943) - (xy 94.87399 86.429432) - (xy 94.655361 86.547749) - (xy 94.608542 86.584188) - (xy 94.608542 86.58419) - (xy 95.346066 87.321713) - (xy 95.336285 87.32312) - (xy 95.2055 87.382848) - (xy 95.096839 87.477002) - (xy 95.019107 87.597956) - (xy 94.995523 87.678275) - (xy 94.255164 86.937916) - (xy 94.154867 87.091432) - (xy 94.055012 87.319082) - (xy 93.993987 87.560061) - (xy 93.993985 87.56007) - (xy 93.973458 87.807794) - (xy 93.973458 87.807805) - (xy 91.160138 87.807805) - (xy 91.139434 87.776116) - (xy 90.399076 88.516475) - (xy 90.375493 88.436156) - (xy 90.297761 88.315202) - (xy 90.1891 88.221048) - (xy 90.058315 88.16132) - (xy 90.048534 88.159913) - (xy 90.786057 87.42239) - (xy 90.786056 87.422389) - (xy 90.739229 87.385943) - (xy 90.520614 87.267635) - (xy 90.520603 87.26763) - (xy 90.285493 87.186916) - (xy 90.040293 87.146) - (xy 89.791707 87.146) - (xy 89.546506 87.186916) - (xy 89.311396 87.26763) - (xy 89.31139 87.267632) - (xy 89.092761 87.385949) - (xy 89.045942 87.422388) - (xy 89.045942 87.42239) - (xy 89.783466 88.159913) - (xy 89.773685 88.16132) - (xy 89.6429 88.221048) - (xy 89.534239 88.315202) - (xy 89.456507 88.436156) - (xy 89.432923 88.516475) - (xy 88.692564 87.776116) - (xy 88.592267 87.929632) - (xy 88.492412 88.157282) - (xy 88.431387 88.398261) - (xy 88.431385 88.39827) - (xy 88.410858 88.645994) - (xy 88.410858 88.646005) - (xy 87.611643 88.646005) - (xy 87.611643 88.645994) - (xy 87.591109 88.398187) - (xy 87.591107 88.398175) - (xy 87.530063 88.157118) - (xy 87.430173 87.929393) - (xy 87.294166 87.721217) - (xy 87.253302 87.676827) - (xy 87.125744 87.538262) - (xy 86.929509 87.385526) - (xy 86.929507 87.385525) - (xy 86.929506 87.385524) - (xy 86.710811 87.267172) - (xy 86.710802 87.267169) - (xy 86.475616 87.186429) - (xy 86.230335 87.1455) - (xy 85.981665 87.1455) - (xy 85.736383 87.186429) - (xy 85.501197 87.267169) - (xy 85.501188 87.267172) - (xy 85.282493 87.385524) - (xy 85.086257 87.538261) - (xy 85.086256 87.538262) - (xy 84.958705 87.67682) - (xy 84.93733 87.700039) - (xy 84.877443 87.73603) - (xy 84.807604 87.733929) - (xy 84.749988 87.694405) - (xy 84.722887 87.630006) - (xy 84.7221 87.616056) - (xy 84.7221 85.22426) - (xy 84.741785 85.157221) - (xy 84.794589 85.111466) - (xy 84.863747 85.101522) - (xy 84.927303 85.130547) - (xy 84.951638 85.159163) - (xy 85.032052 85.289534) - (xy 85.032055 85.289538) - (xy 85.153961 85.411444) - (xy 85.153965 85.411447) - (xy 85.300688 85.501948) - (xy 85.300699 85.501953) - (xy 85.464347 85.55618) - (xy 85.565352 85.566499) - (xy 85.602 85.566499) - (xy 85.602 84.779) - (xy 86.102 84.779) - (xy 86.102 85.566499) - (xy 86.13864 85.566499) - (xy 86.138654 85.566498) - (xy 86.239652 85.55618) - (xy 86.4033 85.501953) - (xy 86.403311 85.501948) - (xy 86.550034 85.411447) - (xy 86.550038 85.411444) - (xy 86.671944 85.289538) - (xy 86.671947 85.289534) - (xy 86.701267 85.242) - (xy 91.056001 85.242) - (xy 91.056001 85.366986) - (xy 91.066494 85.469697) - (xy 91.121641 85.636119) - (xy 91.121643 85.636124) - (xy 91.213684 85.785345) - (xy 91.337654 85.909315) - (xy 91.486875 86.001356) - (xy 91.48688 86.001358) - (xy 91.653302 86.056505) - (xy 91.653309 86.056506) - (xy 91.756019 86.066999) - (xy 92.205999 86.066999) - (xy 92.206 86.066998) - (xy 92.206 85.242) - (xy 92.706 85.242) - (xy 92.706 86.066999) - (xy 93.155972 86.066999) - (xy 93.155986 86.066998) - (xy 93.258697 86.056505) - (xy 93.425119 86.001358) - (xy 93.425124 86.001356) - (xy 93.574345 85.909315) - (xy 93.698315 85.785345) - (xy 93.790356 85.636124) - (xy 93.790358 85.636119) - (xy 93.845505 85.469697) - (xy 93.845506 85.46969) - (xy 93.855999 85.366986) - (xy 93.856 85.366973) - (xy 93.856 85.242) - (xy 92.706 85.242) - (xy 92.206 85.242) - (xy 91.056001 85.242) - (xy 86.701267 85.242) - (xy 86.762448 85.142811) - (xy 86.762453 85.1428) - (xy 86.81668 84.979152) - (xy 86.826999 84.878154) - (xy 86.827 84.878141) - (xy 86.827 84.779) - (xy 86.102 84.779) - (xy 85.602 84.779) - (xy 85.602 84.403) - (xy 85.621685 84.335961) - (xy 85.674489 84.290206) - (xy 85.726 84.279) - (xy 86.826999 84.279) - (xy 86.826999 84.17986) - (xy 86.826998 84.179845) - (xy 86.81668 84.078847) - (xy 86.813749 84.070001) - (xy 88.756204 84.070001) - (xy 88.756399 84.072486) - (xy 88.802218 84.230198) - (xy 88.885814 84.371552) - (xy 88.885821 84.371561) - (xy 89.001938 84.487678) - (xy 89.001947 84.487685) - (xy 89.143303 84.571282) - (xy 89.143306 84.571283) - (xy 89.301004 84.617099) - (xy 89.30101 84.6171) - (xy 89.33785 84.619999) - (xy 89.337866 84.62) - (xy 89.666 84.62) - (xy 90.166 84.62) - (xy 90.494134 84.62) - (xy 90.494149 84.619999) - (xy 90.530989 84.6171) - (xy 90.530995 84.617099) - (xy 90.688693 84.571283) - (xy 90.688696 84.571282) - (xy 90.830052 84.487685) - (xy 90.830056 84.487682) - (xy 90.84996 84.467778) - (xy 90.911283 84.434292) - (xy 90.980974 84.439275) - (xy 91.036909 84.481146) - (xy 91.061327 84.54661) - (xy 91.061001 84.568059) - (xy 91.056 84.617008) - (xy 91.056 84.742) - (xy 92.206 84.742) - (xy 92.206 83.917) - (xy 92.706 83.917) - (xy 92.706 84.742) - (xy 93.855999 84.742) - (xy 93.855999 84.617028) - (xy 93.855998 84.617013) - (xy 93.845505 84.514302) - (xy 93.790358 84.34788) - (xy 93.790356 84.347875) - (xy 93.698315 84.198654) - (xy 93.574345 84.074684) - (xy 93.425124 83.982643) - (xy 93.425119 83.982641) - (xy 93.258697 83.927494) - (xy 93.25869 83.927493) - (xy 93.155986 83.917) - (xy 92.706 83.917) - (xy 92.206 83.917) - (xy 91.756028 83.917) - (xy 91.756012 83.917001) - (xy 91.653302 83.927494) - (xy 91.48688 83.982641) - (xy 91.486875 83.982643) - (xy 91.337654 84.074684) - (xy 91.290694 84.121644) - (xy 91.229371 84.155128) - (xy 91.159679 84.150143) - (xy 91.103746 84.108271) - (xy 91.098722 84.094802) - (xy 91.075795 84.07) - (xy 90.166 84.07) - (xy 90.166 84.62) - (xy 89.666 84.62) - (xy 89.666 84.07) - (xy 88.756205 84.07) - (xy 88.756204 84.070001) - (xy 86.813749 84.070001) - (xy 86.762453 83.915199) - (xy 86.762448 83.915188) - (xy 86.680538 83.782392) - (xy 86.662097 83.715) - (xy 86.683019 83.648336) - (xy 86.736661 83.603567) - (xy 86.805992 83.594905) - (xy 86.849196 83.610563) - (xy 86.868102 83.621744) - (xy 86.895318 83.629651) - (xy 87.025926 83.667597) - (xy 87.025929 83.667597) - (xy 87.025931 83.667598) - (xy 87.062806 83.6705) - (xy 87.062814 83.6705) - (xy 88.219186 83.6705) - (xy 88.219194 83.6705) - (xy 88.256069 83.667598) - (xy 88.256071 83.667597) - (xy 88.256073 83.667597) - (xy 88.299039 83.655114) - (xy 88.413898 83.621744) - (xy 88.555365 83.538081) - (xy 88.55537 83.538075) - (xy 88.561531 83.533298) - (xy 88.562839 83.534984) - (xy 88.614509 83.506761) - (xy 88.684201 83.511735) - (xy 88.731941 83.543752) - (xy 88.756204 83.57) - (xy 89.666 83.57) - (xy 89.666 83.02) - (xy 90.166 83.02) - (xy 90.166 83.57) - (xy 91.075795 83.57) - (xy 91.075795 83.569998) - (xy 91.0756 83.567513) - (xy 91.029781 83.409801) - (xy 90.946185 83.268447) - (xy 90.946178 83.268438) - (xy 90.830061 83.152321) - (xy 90.830052 83.152314) - (xy 90.688696 83.068717) - (xy 90.688693 83.068716) - (xy 90.530995 83.0229) - (xy 90.530989 83.022899) - (xy 90.494149 83.02) - (xy 90.166 83.02) - (xy 89.666 83.02) - (xy 89.33785 83.02) - (xy 89.30101 83.022899) - (xy 89.301004 83.0229) - (xy 89.143306 83.068716) - (xy 89.143303 83.068717) - (xy 88.995229 83.156288) - (xy 88.994211 83.154566) - (xy 88.938955 83.176257) - (xy 88.870438 83.162572) - (xy 88.820197 83.114017) - (xy 88.804 83.052742) - (xy 88.804 82.687895) - (xy 88.823685 82.620856) - (xy 88.876489 82.575101) - (xy 88.945647 82.565157) - (xy 88.993996 82.585671) - (xy 88.99492 82.58411) - (xy 89.027853 82.603586) - (xy 89.143102 82.671744) - (xy 89.184089 82.683652) - (xy 89.300926 82.717597) - (xy 89.300929 82.717597) - (xy 89.300931 82.717598) - (xy 89.337806 82.7205) - (xy 89.337814 82.7205) - (xy 90.494186 82.7205) - (xy 90.494194 82.7205) - (xy 90.531069 82.717598) - (xy 90.531071 82.717597) - (xy 90.531073 82.717597) - (xy 90.676233 82.675424) - (xy 90.710828 82.6705) - (xy 91.042213 82.6705) - (xy 91.109252 82.690185) - (xy 91.147751 82.729402) - (xy 91.166165 82.759257) - (xy 91.204253 82.821009) - (xy 91.213288 82.835656) - (xy 91.337344 82.959712) - (xy 91.486666 83.051814) - (xy 91.653203 83.106999) - (xy 91.755991 83.1175) - (xy 93.156008 83.117499) - (xy 93.258797 83.106999) - (xy 93.425334 83.051814) - (xy 93.574656 82.959712) - (xy 93.698712 82.835656) - (xy 93.698712 82.835655) - (xy 93.703819 82.830549) - (xy 93.705705 82.832435) - (xy 93.752625 82.799212) - (xy 93.792868 82.7925) - (xy 94.388942 82.7925) - (xy 94.455981 82.812185) - (xy 94.501736 82.864989) - (xy 94.51168 82.934147) - (xy 94.482655 82.997703) - (xy 94.480203 83.000447) - (xy 94.459536 83.022899) - (xy 94.366633 83.123817) - (xy 94.230626 83.331993) - (xy 94.130736 83.559718) - (xy 94.069692 83.800775) - (xy 94.06969 83.800787) - (xy 94.049157 84.048594) - (xy 94.049157 84.048605) - (xy 94.06969 84.296412) - (xy 94.069692 84.296424) - (xy 94.130736 84.537481) - (xy 94.230626 84.765206) - (xy 94.366633 84.973382) - (xy 94.366636 84.973385) - (xy 94.535056 85.156338) - (xy 94.731291 85.309074) - (xy 94.94999 85.427428) - (xy 95.185186 85.508171) - (xy 95.430465 85.5491) - (xy 95.679135 85.5491) - (xy 95.924414 85.508171) - (xy 96.15961 85.427428) - (xy 96.378309 85.309074) - (xy 96.574544 85.156338) - (xy 96.742964 84.973385) - (xy 96.878973 84.765207) - (xy 96.978863 84.537481) - (xy 97.039908 84.296421) - (xy 97.041352 84.279) - (xy 97.060443 84.048605) - (xy 97.060443 84.048594) - (xy 97.039909 83.800787) - (xy 97.039907 83.800775) - (xy 96.978863 83.559718) - (xy 96.878973 83.331993) - (xy 96.742966 83.123817) - (xy 96.689929 83.066204) - (xy 96.574544 82.940862) - (xy 96.378309 82.788126) - (xy 96.378308 82.788125) - (xy 96.378305 82.788123) - (xy 96.378298 82.788119) - (xy 96.270282 82.729663) - (xy 96.220691 82.680444) - (xy 96.2053 82.620609) - (xy 96.2053 82.45343) - (xy 96.224985 82.386391) - (xy 96.241619 82.365749) - (xy 96.540549 82.066819) - (xy 96.601872 82.033334) - (xy 96.62823 82.0305) - (xy 101.078746 82.0305) - (xy 101.145785 82.050185) - (xy 101.19154 82.102989) - (xy 101.201484 82.172147) - (xy 101.196452 82.193504) - (xy 101.143319 82.353848) - (xy 101.133 82.454845) - (xy 101.133 82.554) - (xy 103.082999 82.554) - (xy 103.082999 82.45486) - (xy 103.082998 82.454845) - (xy 103.071993 82.347114) - (xy 103.074979 82.346808) - (xy 103.079159 82.290341) - (xy 103.121169 82.234512) - (xy 103.186694 82.210257) - (xy 103.25493 82.225279) - (xy 103.282914 82.246282) - (xy 103.56427 82.527638) - (xy 103.576051 82.54127) - (xy 103.590388 82.560528) - (xy 103.630409 82.594111) - (xy 103.634397 82.597766) - (xy 103.640217 82.603586) - (xy 103.640222 82.60359) - (xy 103.640223 82.603591) - (xy 103.665263 82.62339) - (xy 103.666644 82.624515) - (xy 103.724786 82.673302) - (xy 103.724787 82.673302) - (xy 103.724789 82.673304) - (xy 103.730818 82.67727) - (xy 103.730785 82.677319) - (xy 103.737147 82.681372) - (xy 103.737179 82.681321) - (xy 103.743319 82.685108) - (xy 103.743323 82.685111) - (xy 103.781278 82.702809) - (xy 103.812137 82.7172) - (xy 103.81376 82.717986) - (xy 103.881562 82.752038) - (xy 103.888357 82.754511) - (xy 103.888336 82.754567) - (xy 103.895455 82.757042) - (xy 103.895474 82.756986) - (xy 103.902324 82.759255) - (xy 103.902327 82.759257) - (xy 103.976709 82.774614) - (xy 103.978418 82.774994) - (xy 104.002369 82.78067) - (xy 104.052273 82.792499) - (xy 104.052276 82.792499) - (xy 104.052279 82.7925) - (xy 104.052282 82.7925) - (xy 104.059452 82.793338) - (xy 104.059444 82.793397) - (xy 104.066945 82.794164) - (xy 104.066951 82.794105) - (xy 104.07414 82.794734) - (xy 104.074144 82.794733) - (xy 104.074145 82.794734) - (xy 104.10223 82.793916) - (xy 104.150033 82.792526) - (xy 104.151836 82.7925) - (xy 104.97427 82.7925) - (xy 105.041309 82.812185) - (xy 105.087064 82.864989) - (xy 105.093536 82.882565) - (xy 105.141417 83.050847) - (xy 105.141422 83.05086) - (xy 105.219028 83.206713) - (xy 105.232327 83.233421) - (xy 105.295248 83.316742) - (xy 105.31994 83.382102) - (xy 105.305375 83.450437) - (xy 105.271781 83.489843) - (xy 105.156051 83.578647) - (xy 105.15605 83.578648) - (xy 105.156049 83.578649) - (xy 105.068685 83.692504) - (xy 105.0638 83.69887) - (xy 105.005813 83.838863) - (xy 105.005813 83.838864) - (xy 104.991 83.951372) - (xy 104.991 84.176827) - (xy 105.006874 84.297392) - (xy 105.003899 84.297783) - (xy 105.003899 84.330416) - (xy 105.006874 84.330808) - (xy 104.991 84.451372) - (xy 104.991 84.676827) - (xy 105.006874 84.797392) - (xy 105.003899 84.797783) - (xy 105.003899 84.830416) - (xy 105.006874 84.830808) - (xy 104.991 84.951372) - (xy 104.991 85.176827) - (xy 104.999174 85.238906) - (xy 105.003524 85.271953) - (xy 105.003717 85.273414) - (xy 104.992952 85.34245) - (xy 104.946572 85.394706) - (xy 104.880778 85.4136) - (xy 103.074185 85.4136) - (xy 103.007146 85.393915) - (xy 102.961391 85.341111) - (xy 102.951447 85.271953) - (xy 102.968646 85.224503) - (xy 102.968796 85.22426) - (xy 103.018908 85.143016) - (xy 103.073174 84.979253) - (xy 103.0835 84.878177) - (xy 103.083499 84.179824) - (xy 103.073174 84.078747) - (xy 103.018908 83.914984) - (xy 102.92834 83.76815) - (xy 102.914017 83.753826) - (xy 102.880532 83.692504) - (xy 102.885516 83.622812) - (xy 102.914021 83.57846) - (xy 102.927947 83.564535) - (xy 103.018448 83.417811) - (xy 103.018453 83.4178) - (xy 103.07268 83.254152) - (xy 103.082999 83.153154) - (xy 103.083 83.153141) - (xy 103.083 83.054) - (xy 101.133001 83.054) - (xy 101.133001 83.129156) - (xy 101.113316 83.196195) - (xy 101.060512 83.24195) - (xy 100.991354 83.251894) - (xy 100.927798 83.222869) - (xy 100.909735 83.203467) - (xy 100.871547 83.152455) - (xy 100.871544 83.152452) - (xy 100.756335 83.066206) - (xy 100.756328 83.066202) - (xy 100.621482 83.015908) - (xy 100.621483 83.015908) - (xy 100.561883 83.009501) - (xy 100.561881 83.0095) - (xy 100.561873 83.0095) - (xy 100.561864 83.0095) - (xy 98.066129 83.0095) - (xy 98.066123 83.009501) - (xy 98.006516 83.015908) - (xy 97.871671 83.066202) - (xy 97.871664 83.066206) - (xy 97.756455 83.152452) - (xy 97.756452 83.152455) - (xy 97.670206 83.267664) - (xy 97.670202 83.267671) - (xy 97.619908 83.402517) - (xy 97.613501 83.462116) - (xy 97.6135 83.462135) - (xy 97.6135 85.55787) - (xy 97.613501 85.557876) - (xy 97.619908 85.617483) - (xy 97.670202 85.752328) - (xy 97.670206 85.752335) - (xy 97.756452 85.867544) - (xy 97.756455 85.867547) - (xy 97.871664 85.953793) - (xy 97.871671 85.953797) - (xy 98.006517 86.004091) - (xy 98.006516 86.004091) - (xy 98.013444 86.004835) - (xy 98.066127 86.0105) - (xy 99.843191 86.010499) - (xy 99.91023 86.030184) - (xy 99.930872 86.046818) - (xy 100.156372 86.272318) - (xy 100.189857 86.333641) - (xy 100.184873 86.403333) - (xy 100.156372 86.44768) - (xy 99.930872 86.673181) - (xy 99.869549 86.706666) - (xy 99.843191 86.7095) - (xy 98.066129 86.7095) - (xy 98.066123 86.709501) - (xy 98.006516 86.715908) - (xy 97.871671 86.766202) - (xy 97.871664 86.766206) - (xy 97.756455 86.852452) - (xy 97.756452 86.852455) - (xy 97.670206 86.967664) - (xy 97.670202 86.967671) - (xy 97.619908 87.102517) - (xy 97.613501 87.162116) - (xy 97.6135 87.162135) - (xy 97.6135 89.25787) - (xy 97.613501 89.257876) - (xy 97.619908 89.317483) - (xy 97.670202 89.452328) - (xy 97.670206 89.452335) - (xy 97.756452 89.567544) - (xy 97.756455 89.567547) - (xy 97.871664 89.653793) - (xy 97.871671 89.653797) - (xy 97.903695 89.665741) - (xy 98.006517 89.704091) - (xy 98.03611 89.707272) - (xy 98.100658 89.734008) - (xy 98.140507 89.7914) - (xy 98.143002 89.861225) - (xy 98.140559 89.869565) - (xy 98.085326 90.036247) - (xy 98.085325 90.036248) - (xy 98.075 90.137315) - (xy 98.075 90.710669) - (xy 98.075001 90.710687) - (xy 98.085325 90.811752) - (xy 98.100492 90.857521) - (xy 98.131636 90.951508) - (xy 98.139592 90.975515) - (xy 98.139593 90.975518) - (xy 98.152533 90.996497) - (xy 98.23016 91.12235) - (xy 98.35215 91.24434) - (xy 98.498984 91.334908) - (xy 98.662747 91.389174) - (xy 98.763823 91.3995) - (xy 99.462176 91.399499) - (xy 99.462184 91.399498) - (xy 99.462187 91.399498) - (xy 99.51753 91.393844) - (xy 99.563253 91.389174) - (xy 99.727016 91.334908) - (xy 99.87385 91.24434) - (xy 99.888171 91.230018) - (xy 99.949489 91.196533) - (xy 100.019181 91.201514) - (xy 100.063534 91.230017) - (xy 100.077461 91.243944) - (xy 100.077465 91.243947) - (xy 100.224188 91.334448) - (xy 100.224199 91.334453) - (xy 100.387847 91.38868) - (xy 100.488851 91.398999) - (xy 100.588 91.398998) - (xy 100.588 90.298) - (xy 100.607685 90.230961) - (xy 100.660489 90.185206) - (xy 100.712 90.174) - (xy 100.964 90.174) - (xy 101.031039 90.193685) - (xy 101.076794 90.246489) - (xy 101.088 90.298) - (xy 101.088 91.398999) - (xy 101.18714 91.398999) - (xy 101.187154 91.398998) - (xy 101.288152 91.38868) - (xy 101.4518 91.334453) - (xy 101.451811 91.334448) - (xy 101.598533 91.243948) - (xy 101.665464 91.177017) - (xy 101.726787 91.143532) - (xy 101.796479 91.148516) - (xy 101.840827 91.177017) - (xy 101.91765 91.25384) - (xy 102.064484 91.344408) - (xy 102.228247 91.398674) - (xy 102.329323 91.409) - (xy 102.902676 91.408999) - (xy 102.902684 91.408998) - (xy 102.902687 91.408998) - (xy 102.95803 91.403344) - (xy 103.003753 91.398674) - (xy 103.167516 91.344408) - (xy 103.31435 91.25384) - (xy 103.43634 91.13185) - (xy 103.519827 90.996496) - (xy 103.571774 90.949772) - (xy 103.640736 90.938549) - (xy 103.681073 90.952092) - (xy 103.681334 90.951508) - (xy 103.860192 91.031142) - (xy 103.860197 91.031144) - (xy 104.045354 91.0705) - (xy 104.045355 91.0705) - (xy 104.052192 91.0705) - (xy 104.119231 91.090185) - (xy 104.164986 91.142989) - (xy 104.17493 91.212147) - (xy 104.145905 91.275703) - (xy 104.139873 91.282181) - (xy 103.652873 91.769181) - (xy 103.59155 91.802666) - (xy 103.565192 91.8055) - (xy 96.457958 91.8055) - (xy 96.390919 91.785815) - (xy 96.35242 91.746598) - (xy 96.346712 91.737344) - (xy 96.222657 91.613289) - (xy 96.222656 91.613288) - (xy 96.073334 91.521186) - (xy 95.906797 91.466001) - (xy 95.906795 91.466) - (xy 95.80401 91.4555) - (xy 95.203998 91.4555) - (xy 95.20398 91.455501) - (xy 95.101203 91.466) - (xy 95.1012 91.466001) - (xy 94.934668 91.521185) - (xy 94.934663 91.521187) - (xy 94.785342 91.613289) - (xy 94.661289 91.737342) - (xy 94.569187 91.886663) - (xy 94.569185 91.886668) - (xy 94.548469 91.949185) - (xy 94.514001 92.053203) - (xy 94.514001 92.053204) - (xy 94.514 92.053204) - (xy 94.5035 92.155983) - (xy 94.5035 92.756001) - (xy 94.503501 92.756019) - (xy 94.514 92.858796) - (xy 94.514001 92.858799) - (xy 94.569185 93.025331) - (xy 94.569187 93.025336) - (xy 94.596334 93.069348) - (xy 94.661288 93.174656) - (xy 94.785344 93.298712) - (xy 94.934666 93.390814) - (xy 95.101203 93.445999) - (xy 95.203991 93.4565) - (xy 95.804008 93.456499) - (xy 95.804016 93.456498) - (xy 95.804019 93.456498) - (xy 95.860302 93.450748) - (xy 95.906797 93.445999) - (xy 96.073334 93.390814) - (xy 96.222656 93.298712) - (xy 96.346712 93.174656) - (xy 96.352419 93.165402) - (xy 96.404368 93.118678) - (xy 96.457958 93.1065) - (xy 103.800495 93.1065) - (xy 103.816505 93.108267) - (xy 103.816528 93.108026) - (xy 103.824294 93.10876) - (xy 103.824295 93.108759) - (xy 103.824296 93.10876) - (xy 103.831271 93.10854) - (xy 103.895235 93.106531) - (xy 103.897183 93.1065) - (xy 103.926925 93.1065) - (xy 103.93419 93.105581) - (xy 103.940016 93.105122) - (xy 103.988569 93.103597) - (xy 104.008956 93.097673) - (xy 104.027996 93.093731) - (xy 104.049058 93.091071) - (xy 104.094235 93.073183) - (xy 104.099735 93.0713) - (xy 104.146398 93.057744) - (xy 104.164665 93.046939) - (xy 104.182136 93.03838) - (xy 104.201871 93.030568) - (xy 104.241177 93.00201) - (xy 104.246043 92.998813) - (xy 104.287865 92.974081) - (xy 104.30287 92.959075) - (xy 104.317668 92.946436) - (xy 104.334837 92.933963) - (xy 104.365809 92.896522) - (xy 104.369723 92.892221) - (xy 105.301513 91.960431) - (xy 105.314079 91.950365) - (xy 105.313925 91.950178) - (xy 105.319933 91.945206) - (xy 105.31994 91.945202) - (xy 105.364109 91.898165) - (xy 105.424348 91.862772) - (xy 105.494161 91.865564) - (xy 105.551383 91.905657) - (xy 105.577845 91.970322) - (xy 105.5785 91.98305) - (xy 105.5785 92.243494) - (xy 105.576732 92.259505) - (xy 105.576974 92.259528) - (xy 105.576239 92.267294) - (xy 105.578469 92.338235) - (xy 105.5785 92.340183) - (xy 105.5785 92.36992) - (xy 105.578501 92.36994) - (xy 105.579418 92.377206) - (xy 105.579876 92.383024) - (xy 105.581402 92.431567) - (xy 105.581403 92.43157) - (xy 105.587323 92.451948) - (xy 105.591268 92.470996) - (xy 105.593928 92.492054) - (xy 105.593931 92.492064) - (xy 105.611813 92.53723) - (xy 105.613705 92.542758) - (xy 105.627254 92.589395) - (xy 105.627255 92.589397) - (xy 105.63806 92.607666) - (xy 105.646617 92.625134) - (xy 105.652226 92.6393) - (xy 105.654432 92.644872) - (xy 105.682983 92.68417) - (xy 105.686188 92.689049) - (xy 105.710919 92.730865) - (xy 105.710923 92.730869) - (xy 105.725925 92.745871) - (xy 105.738563 92.760669) - (xy 105.751033 92.777833) - (xy 105.751036 92.777836) - (xy 105.751037 92.777837) - (xy 105.788476 92.808809) - (xy 105.792776 92.812722) - (xy 107.516569 94.536515) - (xy 109.213764 96.23371) - (xy 109.223835 96.24628) - (xy 109.224022 96.246126) - (xy 109.228995 96.252137) - (xy 109.280742 96.300731) - (xy 109.282109 96.302055) - (xy 109.303165 96.323111) - (xy 109.303168 96.323113) - (xy 109.308957 96.327605) - (xy 109.313397 96.331397) - (xy 109.340812 96.35714) - (xy 109.348807 96.364648) - (xy 109.348809 96.364649) - (xy 109.367405 96.374872) - (xy 109.38367 96.385557) - (xy 109.400432 96.39856) - (xy 109.400435 96.398561) - (xy 109.400436 96.398562) - (xy 109.445023 96.417856) - (xy 109.450259 96.420421) - (xy 109.492832 96.443827) - (xy 109.50854 96.447859) - (xy 109.513386 96.449104) - (xy 109.531798 96.455407) - (xy 109.551273 96.463835) - (xy 109.599255 96.471434) - (xy 109.604948 96.472613) - (xy 109.614079 96.474957) - (xy 109.674113 96.510697) - (xy 109.69679 96.545251) - (xy 109.699227 96.550807) - (xy 109.835233 96.758982) - (xy 109.865051 96.791373) - (xy 110.003656 96.941938) - (xy 110.199891 97.094674) - (xy 110.199893 97.094675) - (xy 110.323594 97.161619) - (xy 110.41859 97.213028) - (xy 110.653786 97.293771) - (xy 110.899065 97.3347) - (xy 111.147735 97.3347) - (xy 111.393014 97.293771) - (xy 111.446366 97.275454) - (xy 111.516162 97.272304) - (xy 111.574307 97.305052) - (xy 111.731352 97.462097) - (xy 111.764836 97.523419) - (xy 111.759852 97.59311) - (xy 111.731354 97.637456) - (xy 111.71836 97.65045) - (xy 111.627793 97.797281) - (xy 111.627791 97.797286) - (xy 111.612874 97.842302) - (xy 111.573526 97.961047) - (xy 111.573526 97.961048) - (xy 111.573525 97.961048) - (xy 111.5632 98.062115) - (xy 111.5632 98.635469) - (xy 111.563201 98.635487) - (xy 111.573525 98.736552) - (xy 111.627792 98.900315) - (xy 111.627793 98.900318) - (xy 111.718361 99.047151) - (xy 111.757828 99.086618) - (xy 111.791313 99.147941) - (xy 111.786329 99.217633) - (xy 111.757829 99.261979) - (xy 111.692961 99.326848) - (xy 111.602393 99.473681) - (xy 111.602391 99.473686) - (xy 111.599016 99.483871) - (xy 111.548126 99.637447) - (xy 111.548126 99.637448) - (xy 111.548125 99.637448) - (xy 111.5378 99.738515) - (xy 111.5378 99.738528) - (xy 111.537801 100.311864) - (xy 111.537801 100.311887) - (xy 111.548125 100.412952) - (xy 111.56919 100.476519) - (xy 111.602392 100.576716) - (xy 111.69296 100.72355) - (xy 111.81495 100.84554) - (xy 111.961784 100.936108) - (xy 112.125547 100.990374) - (xy 112.226623 101.0007) - (xy 112.824976 101.000699) - (xy 112.824984 101.000698) - (xy 112.824987 101.000698) - (xy 112.88033 100.995044) - (xy 112.926053 100.990374) - (xy 113.089816 100.936108) - (xy 113.23665 100.84554) - (xy 113.350975 100.731214) - (xy 113.412294 100.697732) - (xy 113.481986 100.702716) - (xy 113.526334 100.731217) - (xy 113.640261 100.845144) - (xy 113.640265 100.845147) - (xy 113.786988 100.935648) - (xy 113.786999 100.935653) - (xy 113.950647 100.98988) - (xy 114.051651 101.000199) - (xy 114.100799 101.000198) - (xy 114.1008 101.000198) - (xy 114.1008 99.8992) - (xy 114.120485 99.832161) - (xy 114.173289 99.786406) - (xy 114.2248 99.7752) - (xy 114.4768 99.7752) - (xy 114.543839 99.794885) - (xy 114.589594 99.847689) - (xy 114.6008 99.8992) - (xy 114.600799 101.000198) - (xy 114.6008 101.000199) - (xy 114.64994 101.000199) - (xy 114.649954 101.000198) - (xy 114.757498 100.989212) - (xy 114.826191 101.001982) - (xy 114.877075 101.049862) - (xy 114.8941 101.11257) - (xy 114.8941 101.787191) - (xy 114.874415 101.85423) - (xy 114.857781 101.874872) - (xy 114.077007 102.655645) - (xy 114.015684 102.68913) - (xy 113.945992 102.684146) - (xy 113.936429 102.678) - (xy 111.023999 102.678) - (xy 111.011168 102.690831) - (xy 110.949845 102.724315) - (xy 110.880153 102.71933) - (xy 110.824222 102.677461) - (xy 110.78421 102.624013) - (xy 110.781546 102.620454) - (xy 110.781544 102.620453) - (xy 110.781544 102.620452) - (xy 110.666335 102.534206) - (xy 110.666328 102.534202) - (xy 110.531482 102.483908) - (xy 110.531483 102.483908) - (xy 110.471883 102.477501) - (xy 110.471881 102.4775) - (xy 110.471873 102.4775) - (xy 110.471864 102.4775) - (xy 108.476129 102.4775) - (xy 108.476123 102.477501) - (xy 108.416516 102.483908) - (xy 108.281671 102.534202) - (xy 108.281664 102.534206) - (xy 108.166455 102.620452) - (xy 108.166452 102.620455) - (xy 108.080206 102.735664) - (xy 108.080202 102.735671) - (xy 108.029908 102.870517) - (xy 108.023501 102.930116) - (xy 108.0235 102.930135) - (xy 108.0235 103.82587) - (xy 108.023501 103.825876) - (xy 108.029908 103.885483) - (xy 108.080202 104.020328) - (xy 108.080206 104.020335) - (xy 108.166452 104.135544) - (xy 108.166455 104.135547) - (xy 108.281664 104.221793) - (xy 108.281671 104.221797) - (xy 108.325511 104.238148) - (xy 108.416517 104.272091) - (xy 108.476127 104.2785) - (xy 108.6995 104.278499) - (xy 108.766539 104.298183) - (xy 108.812294 104.350987) - (xy 108.8235 104.402499) - (xy 108.8235 105.248293) - (xy 108.821732 105.264304) - (xy 108.821974 105.264327) - (xy 108.821239 105.272094) - (xy 108.823468 105.343036) - (xy 108.823499 105.344981) - (xy 108.823499 105.374728) - (xy 108.824418 105.382004) - (xy 108.824876 105.387823) - (xy 108.826402 105.436367) - (xy 108.826403 105.43637) - (xy 108.832323 105.456748) - (xy 108.836268 105.475796) - (xy 108.838928 105.496854) - (xy 108.838931 105.496864) - (xy 108.856813 105.54203) - (xy 108.858705 105.547558) - (xy 108.872254 105.594195) - (xy 108.872255 105.594197) - (xy 108.88306 105.612466) - (xy 108.891617 105.629934) - (xy 108.899432 105.649671) - (xy 108.927988 105.688976) - (xy 108.931183 105.69384) - (xy 108.934408 105.699292) - (xy 108.937066 105.703788) - (xy 108.953654 105.753945) - (xy 108.969326 105.903056) - (xy 108.969327 105.903059) - (xy 109.027818 106.083077) - (xy 109.027821 106.083084) - (xy 109.122467 106.247016) - (xy 109.196049 106.328737) - (xy 109.249129 106.387688) - (xy 109.398458 106.496182) - (xy 109.441124 106.551512) - (xy 109.447103 106.621125) - (xy 109.414497 106.68292) - (xy 109.353659 106.717277) - (xy 109.325573 106.7205) - (xy 108.81733 106.7205) - (xy 108.817312 106.720501) - (xy 108.716247 106.730825) - (xy 108.552484 106.785092) - (xy 108.552481 106.785093) - (xy 108.405651 106.875659) - (xy 108.291327 106.989983) - (xy 108.230004 107.023467) - (xy 108.160312 107.018483) - (xy 108.115965 106.989982) - (xy 108.002038 106.876055) - (xy 108.002034 106.876052) - (xy 107.855311 106.785551) - (xy 107.8553 106.785546) - (xy 107.691652 106.731319) - (xy 107.590654 106.721) - (xy 107.541499 106.721) - (xy 107.5415 107.822) - (xy 107.521815 107.889039) - (xy 107.469012 107.934794) - (xy 107.4175 107.946) - (xy 103.705999 107.946) - (xy 103.693168 107.958831) - (xy 103.631845 107.992315) - (xy 103.562153 107.98733) - (xy 103.506222 107.945461) - (xy 103.484229 107.916083) - (xy 103.463546 107.888454) - (xy 103.463544 107.888453) - (xy 103.463544 107.888452) - (xy 103.348335 107.802206) - (xy 103.348328 107.802202) - (xy 103.213482 107.751908) - (xy 103.213483 107.751908) - (xy 103.153883 107.745501) - (xy 103.153881 107.7455) - (xy 103.153873 107.7455) - (xy 103.153864 107.7455) - (xy 101.158129 107.7455) - (xy 101.158123 107.745501) - (xy 101.098516 107.751908) - (xy 100.963671 107.802202) - (xy 100.963664 107.802206) - (xy 100.848457 107.888451) - (xy 100.848451 107.888457) - (xy 100.805515 107.945812) - (xy 100.749581 107.987682) - (xy 100.706249 107.9955) - (xy 96.063608 107.9955) - (xy 95.996569 107.975815) - (xy 95.975927 107.959181) - (xy 95.956208 107.939462) - (xy 95.922723 107.878139) - (xy 95.920568 107.864741) - (xy 95.913995 107.802202) - (xy 95.907074 107.736344) - (xy 95.848579 107.556316) - (xy 95.784888 107.446) - (xy 103.706 107.446) - (xy 104.906 107.446) - (xy 105.406 107.446) - (xy 107.0415 107.446) - (xy 107.0415 106.721) - (xy 107.041499 106.720999) - (xy 106.992361 106.721) - (xy 106.992343 106.721001) - (xy 106.891347 106.731319) - (xy 106.727699 106.785546) - (xy 106.727688 106.785551) - (xy 106.580965 106.876052) - (xy 106.58096 106.876056) - (xy 106.570626 106.88639) - (xy 106.509302 106.919873) - (xy 106.439611 106.914886) - (xy 106.408637 106.897973) - (xy 106.348089 106.852647) - (xy 106.348086 106.852645) - (xy 106.213379 106.802403) - (xy 106.213372 106.802401) - (xy 106.153844 106.796) - (xy 105.406 106.796) - (xy 105.406 107.446) - (xy 104.906 107.446) - (xy 104.906 106.796) - (xy 104.158155 106.796) - (xy 104.098627 106.802401) - (xy 104.09862 106.802403) - (xy 103.963913 106.852645) - (xy 103.963906 106.852649) - (xy 103.848812 106.938809) - (xy 103.848809 106.938812) - (xy 103.762649 107.053906) - (xy 103.762645 107.053913) - (xy 103.712403 107.18862) - (xy 103.712401 107.188627) - (xy 103.706 107.248155) - (xy 103.706 107.446) - (xy 95.784888 107.446) - (xy 95.753933 107.392384) - (xy 95.627271 107.251712) - (xy 95.62727 107.251711) - (xy 95.474134 107.140451) - (xy 95.474129 107.140448) - (xy 95.301207 107.063457) - (xy 95.301202 107.063455) - (xy 95.14433 107.030112) - (xy 95.116046 107.0241) - (xy 94.926754 107.0241) - (xy 94.89847 107.030112) - (xy 94.741597 107.063455) - (xy 94.741592 107.063457) - (xy 94.56867 107.140448) - (xy 94.568665 107.140451) - (xy 94.415529 107.251711) - (xy 94.288866 107.392385) - (xy 94.194221 107.556315) - (xy 94.194218 107.556322) - (xy 94.148833 107.696005) - (xy 94.135726 107.736344) - (xy 94.11594 107.9246) - (xy 94.135726 108.112856) - (xy 94.135727 108.112859) - (xy 94.194218 108.292877) - (xy 94.194221 108.292884) - (xy 94.288867 108.456816) - (xy 94.369949 108.546866) - (xy 94.415529 108.597488) - (xy 94.568665 108.708748) - (xy 94.56867 108.708751) - (xy 94.741592 108.785742) - (xy 94.741597 108.785744) - (xy 94.926754 108.8251) - (xy 94.950592 108.8251) - (xy 95.017631 108.844785) - (xy 95.038273 108.861419) - (xy 95.222364 109.04551) - (xy 95.232435 109.05808) - (xy 95.232622 109.057926) - (xy 95.237595 109.063937) - (xy 95.237597 109.063939) - (xy 95.237598 109.06394) - (xy 95.249193 109.074828) - (xy 95.289342 109.112531) - (xy 95.290709 109.113855) - (xy 95.30966 109.132806) - (xy 95.311767 109.134913) - (xy 95.317558 109.139405) - (xy 95.321998 109.143198) - (xy 95.333778 109.154259) - (xy 95.357407 109.176448) - (xy 95.375998 109.186668) - (xy 95.392263 109.197352) - (xy 95.409034 109.210361) - (xy 95.409037 109.210363) - (xy 95.453627 109.229658) - (xy 95.458856 109.23222) - (xy 95.501432 109.255627) - (xy 95.521993 109.260905) - (xy 95.540397 109.267207) - (xy 95.559874 109.275636) - (xy 95.597727 109.28163) - (xy 95.607854 109.283235) - (xy 95.613564 109.284417) - (xy 95.660623 109.2965) - (xy 95.681845 109.2965) - (xy 95.701242 109.298026) - (xy 95.722205 109.301347) - (xy 95.770572 109.296774) - (xy 95.776409 109.2965) - (xy 100.706249 109.2965) - (xy 100.773288 109.316185) - (xy 100.805515 109.346188) - (xy 100.848451 109.403542) - (xy 100.848454 109.403546) - (xy 100.848457 109.403548) - (xy 100.963664 109.489793) - (xy 100.963671 109.489797) - (xy 101.098517 109.540091) - (xy 101.098516 109.540091) - (xy 101.105444 109.540835) - (xy 101.158127 109.5465) - (xy 103.153872 109.546499) - (xy 103.213483 109.540091) - (xy 103.348331 109.489796) - (xy 103.463546 109.403546) - (xy 103.482233 109.378582) - (xy 103.538166 109.336711) - (xy 103.607858 109.331727) - (xy 103.669181 109.365212) - (xy 103.702666 109.426535) - (xy 103.7055 109.452893) - (xy 103.7055 110.04387) - (xy 103.705501 110.043876) - (xy 103.711908 110.103483) - (xy 103.762202 110.238328) - (xy 103.762206 110.238335) - (xy 103.848452 110.353544) - (xy 103.848455 110.353547) - (xy 103.963664 110.439793) - (xy 103.963671 110.439797) - (xy 104.098517 110.490091) - (xy 104.098516 110.490091) - (xy 104.103865 110.490666) - (xy 104.158127 110.4965) - (xy 106.153872 110.496499) - (xy 106.213483 110.490091) - (xy 106.348331 110.439796) - (xy 106.463546 110.353546) - (xy 106.497579 110.308083) - (xy 106.553509 110.266215) - (xy 106.623201 110.26123) - (xy 106.677628 110.290948) - (xy 106.678487 110.289862) - (xy 106.684147 110.294338) - (xy 106.684149 110.294339) - (xy 106.68415 110.29434) - (xy 106.830984 110.384908) - (xy 106.994747 110.439174) - (xy 107.095823 110.4495) - (xy 107.694176 110.449499) - (xy 107.694184 110.449498) - (xy 107.694187 110.449498) - (xy 107.753833 110.443405) - (xy 107.795253 110.439174) - (xy 107.959016 110.384908) - (xy 108.10585 110.29434) - (xy 108.219818 110.180371) - (xy 108.281142 110.146886) - (xy 108.350834 110.15187) - (xy 108.395181 110.180371) - (xy 108.50915 110.29434) - (xy 108.655984 110.384908) - (xy 108.819747 110.439174) - (xy 108.920823 110.4495) - (xy 109.519176 110.449499) - (xy 109.519184 110.449498) - (xy 109.519187 110.449498) - (xy 109.578833 110.443405) - (xy 109.620253 110.439174) - (xy 109.784016 110.384908) - (xy 109.93085 110.29434) - (xy 110.05284 110.17235) - (xy 110.143408 110.025516) - (xy 110.197674 109.861753) - (xy 110.208 109.760677) - (xy 110.207999 109.187324) - (xy 110.205811 109.165909) - (xy 110.197674 109.086247) - (xy 110.178714 109.02903) - (xy 110.143408 108.922484) - (xy 110.05284 108.77565) - (xy 109.93085 108.65366) - (xy 109.930846 108.653657) - (xy 109.915375 108.644114) - (xy 109.868651 108.592165) - (xy 109.857431 108.523202) - (xy 109.885276 108.459121) - (xy 109.892771 108.450918) - (xy 109.94934 108.39435) - (xy 109.949343 108.394344) - (xy 109.949348 108.39434) - (xy 109.949945 108.393586) - (xy 109.950485 108.393202) - (xy 109.954447 108.389242) - (xy 109.955124 108.389919) - (xy 110.006968 108.353211) - (xy 110.047208 108.3465) - (xy 110.478563 108.3465) - (xy 110.545602 108.366185) - (xy 110.584961 108.408615) - (xy 110.585422 108.408314) - (xy 110.587185 108.411012) - (xy 110.587614 108.411475) - (xy 110.588226 108.412606) - (xy 110.724233 108.620782) - (xy 110.737629 108.635334) - (xy 110.892656 108.803738) - (xy 111.088891 108.956474) - (xy 111.30759 109.074828) - (xy 111.495696 109.139405) - (xy 111.538955 109.154256) - (xy 111.542786 109.155571) - (xy 111.788065 109.1965) - (xy 112.036735 109.1965) - (xy 112.282014 109.155571) - (xy 112.51721 109.074828) - (xy 112.735909 108.956474) - (xy 112.920078 108.813129) - (xy 112.985071 108.787487) - (xy 113.05361 108.801053) - (xy 113.103935 108.849522) - (xy 113.120067 108.917504) - (xy 113.11956 108.923943) - (xy 113.117366 108.944818) - (xy 113.11514 108.966) - (xy 113.134926 109.154256) - (xy 113.134927 109.154259) - (xy 113.193418 109.334277) - (xy 113.193421 109.334284) - (xy 113.288067 109.498216) - (xy 113.384427 109.605234) - (xy 113.414729 109.638888) - (xy 113.567865 109.750148) - (xy 113.56787 109.750151) - (xy 113.740792 109.827142) - (xy 113.740797 109.827144) - (xy 113.925954 109.8665) - (xy 113.925955 109.8665) - (xy 114.115244 109.8665) - (xy 114.115246 109.8665) - (xy 114.300403 109.827144) - (xy 114.47333 109.750151) - (xy 114.626471 109.638888) - (xy 114.753133 109.498216) - (xy 114.847779 109.334284) - (xy 114.906274 109.154256) - (xy 114.92606 108.966) - (xy 114.906274 108.777744) - (xy 114.847779 108.597716) - (xy 114.810125 108.532498) - (xy 114.793655 108.464599) - (xy 114.816507 108.398572) - (xy 114.871429 108.355382) - (xy 114.917514 108.3465) - (xy 116.422163 108.3465) - (xy 116.489202 108.366185) - (xy 116.528561 108.408615) - (xy 116.529022 108.408314) - (xy 116.530785 108.411012) - (xy 116.531214 108.411475) - (xy 116.531826 108.412606) - (xy 116.667833 108.620782) - (xy 116.681229 108.635334) - (xy 116.836256 108.803738) - (xy 117.032491 108.956474) - (xy 117.25119 109.074828) - (xy 117.439296 109.139405) - (xy 117.482555 109.154256) - (xy 117.486386 109.155571) - (xy 117.731665 109.1965) - (xy 117.980335 109.1965) - (xy 118.225614 109.155571) - (xy 118.46081 109.074828) - (xy 118.679509 108.956474) - (xy 118.875744 108.803738) - (xy 119.044164 108.620785) - (xy 119.180173 108.412607) - (xy 119.280063 108.184881) - (xy 119.341108 107.943821) - (xy 119.344042 107.908412) - (xy 119.361643 107.696005) - (xy 119.361643 107.695994) - (xy 119.341109 107.448187) - (xy 119.341107 107.448175) - (xy 119.280063 107.207118) - (xy 119.180173 106.979393) - (xy 119.044166 106.771217) - (xy 118.997937 106.720999) - (xy 118.875744 106.588262) - (xy 118.679509 106.435526) - (xy 118.679507 106.435525) - (xy 118.679506 106.435524) - (xy 118.460811 106.317172) - (xy 118.460802 106.317169) - (xy 118.225616 106.236429) - (xy 117.980335 106.1955) - (xy 117.731665 106.1955) - (xy 117.486383 106.236429) - (xy 117.251197 106.317169) - (xy 117.251188 106.317172) - (xy 117.032493 106.435524) - (xy 116.836257 106.588261) - (xy 116.667833 106.771217) - (xy 116.531826 106.979393) - (xy 116.531214 106.980525) - (xy 116.530842 106.980898) - (xy 116.529022 106.983686) - (xy 116.528448 106.983311) - (xy 116.481991 107.030112) - (xy 116.422163 107.0455) - (xy 114.899807 107.0455) - (xy 114.832768 107.025815) - (xy 114.787013 106.973011) - (xy 114.777069 106.903853) - (xy 114.806094 106.840297) - (xy 114.812126 106.833819) - (xy 115.996274 105.649671) - (xy 117.201413 104.444531) - (xy 117.213979 104.434465) - (xy 117.213825 104.434278) - (xy 117.219833 104.429305) - (xy 117.21984 104.429302) - (xy 117.267172 104.378898) - (xy 117.268432 104.377556) - (xy 117.269756 104.376188) - (xy 117.290811 104.355135) - (xy 117.295301 104.349345) - (xy 117.299083 104.344915) - (xy 117.332348 104.309493) - (xy 117.342574 104.29089) - (xy 117.353253 104.274633) - (xy 117.366262 104.257864) - (xy 117.385556 104.213275) - (xy 117.388112 104.208056) - (xy 117.411527 104.165468) - (xy 117.416805 104.144906) - (xy 117.423107 104.126499) - (xy 117.431535 104.107027) - (xy 117.439133 104.059053) - (xy 117.440314 104.053347) - (xy 117.4524 104.006277) - (xy 117.4524 103.985048) - (xy 117.453927 103.965649) - (xy 117.455322 103.95684) - (xy 117.457246 103.944695) - (xy 117.452672 103.896316) - (xy 117.452399 103.890522) - (xy 117.452399 97.939009) - (xy 117.454167 97.922994) - (xy 117.453925 97.922972) - (xy 117.454657 97.915213) - (xy 117.45466 97.915204) - (xy 117.453019 97.862979) - (xy 117.452431 97.844249) - (xy 117.4524 97.842302) - (xy 117.4524 97.812578) - (xy 117.4524 97.812575) - (xy 117.451479 97.805292) - (xy 117.451023 97.799487) - (xy 117.450954 97.797281) - (xy 117.449498 97.750931) - (xy 117.443576 97.73055) - (xy 117.439631 97.711495) - (xy 117.436972 97.690449) - (xy 117.436971 97.690443) - (xy 117.436971 97.690442) - (xy 117.421489 97.651341) - (xy 117.415113 97.581766) - (xy 117.447365 97.519785) - (xy 117.508006 97.48508) - (xy 117.557191 97.483386) - (xy 117.731665 97.5125) - (xy 117.980335 97.5125) - (xy 118.225614 97.471571) - (xy 118.46081 97.390828) - (xy 118.679509 97.272474) - (xy 118.875744 97.119738) - (xy 118.979556 97.006967) - (xy 119.039441 96.970979) - (xy 119.109279 96.973079) - (xy 119.166895 97.012603) - (xy 119.178168 97.028948) - (xy 119.188088 97.046129) - (xy 119.206267 97.077616) - (xy 119.332929 97.218288) - (xy 119.486065 97.329548) - (xy 119.48607 97.329551) - (xy 119.658992 97.406542) - (xy 119.658997 97.406544) - (xy 119.844154 97.4459) - (xy 119.844155 97.4459) - (xy 120.033444 97.4459) - (xy 120.033446 97.4459) - (xy 120.218603 97.406544) - (xy 120.39153 97.329551) - (xy 120.544671 97.218288) - (xy 120.671333 97.077616) - (xy 120.765979 96.913684) - (xy 120.824474 96.733656) - (xy 120.84426 96.5454) - (xy 120.824474 96.357144) - (xy 120.765979 96.177116) - (xy 120.671333 96.013184) - (xy 120.544671 95.872512) - (xy 120.54467 95.872511) - (xy 120.391534 95.761251) - (xy 120.391529 95.761248) - (xy 120.218607 95.684257) - (xy 120.218602 95.684255) - (xy 120.072801 95.653265) - (xy 120.033446 95.6449) - (xy 120.033445 95.6449) - (xy 120.011011 95.6449) - (xy 119.943972 95.625215) - (xy 119.915468 95.599941) - (xy 119.910601 95.594057) - (xy 119.866361 95.552515) - (xy 119.858832 95.545445) - (xy 119.857458 95.544112) - (xy 119.836435 95.523089) - (xy 119.83064 95.518594) - (xy 119.826198 95.514799) - (xy 119.790796 95.481554) - (xy 119.790788 95.481548) - (xy 119.772192 95.471325) - (xy 119.755931 95.460644) - (xy 119.739163 95.447637) - (xy 119.715695 95.437482) - (xy 119.694578 95.428343) - (xy 119.689356 95.425786) - (xy 119.646768 95.402373) - (xy 119.646765 95.402372) - (xy 119.626201 95.397092) - (xy 119.607796 95.39079) - (xy 119.588327 95.382365) - (xy 119.588321 95.382363) - (xy 119.540351 95.374766) - (xy 119.534636 95.373582) - (xy 119.518172 95.369355) - (xy 119.48758 95.3615) - (xy 119.487577 95.3615) - (xy 119.466355 95.3615) - (xy 119.446955 95.359973) - (xy 119.425996 95.356653) - (xy 119.425995 95.356653) - (xy 119.402186 95.358903) - (xy 119.37763 95.361225) - (xy 119.371792 95.3615) - (xy 119.289837 95.3615) - (xy 119.222798 95.341815) - (xy 119.183438 95.299384) - (xy 119.182978 95.299686) - (xy 119.181214 95.296987) - (xy 119.180786 95.296525) - (xy 119.180173 95.295393) - (xy 119.044166 95.087217) - (xy 118.956189 94.991649) - (xy 118.875744 94.904262) - (xy 118.679509 94.751526) - (xy 118.679507 94.751525) - (xy 118.679506 94.751524) - (xy 118.460811 94.633172) - (xy 118.460802 94.633169) - (xy 118.225616 94.552429) - (xy 117.980335 94.5115) - (xy 117.731665 94.5115) - (xy 117.486383 94.552429) - (xy 117.251197 94.633169) - (xy 117.251188 94.633172) - (xy 117.032493 94.751524) - (xy 116.836257 94.904261) - (xy 116.667833 95.087217) - (xy 116.531826 95.295393) - (xy 116.531214 95.296525) - (xy 116.530842 95.296898) - (xy 116.529022 95.299686) - (xy 116.528448 95.299311) - (xy 116.481991 95.346112) - (xy 116.422163 95.3615) - (xy 116.068608 95.3615) - (xy 116.001569 95.341815) - (xy 115.980927 95.325181) - (xy 113.562746 92.907) - (xy 115.611001 92.907) - (xy 115.611001 93.006154) - (xy 115.621319 93.107152) - (xy 115.675546 93.2708) - (xy 115.675551 93.270811) - (xy 115.766052 93.417534) - (xy 115.766055 93.417538) - (xy 115.887961 93.539444) - (xy 115.887965 93.539447) - (xy 116.034688 93.629948) - (xy 116.034699 93.629953) - (xy 116.198347 93.68418) - (xy 116.299352 93.694499) - (xy 116.335999 93.694499) - (xy 116.336 92.907) - (xy 116.836 92.907) - (xy 116.836 93.694499) - (xy 116.87264 93.694499) - (xy 116.872654 93.694498) - (xy 116.973652 93.68418) - (xy 117.1373 93.629953) - (xy 117.137311 93.629948) - (xy 117.284034 93.539447) - (xy 117.284038 93.539444) - (xy 117.405944 93.417538) - (xy 117.405947 93.417534) - (xy 117.496448 93.270811) - (xy 117.496453 93.2708) - (xy 117.55068 93.107152) - (xy 117.560999 93.006154) - (xy 117.561 93.006141) - (xy 117.561 92.907) - (xy 116.836 92.907) - (xy 116.336 92.907) - (xy 115.611001 92.907) - (xy 113.562746 92.907) - (xy 113.194834 92.539088) - (xy 113.184761 92.526514) - (xy 113.184574 92.52667) - (xy 113.179598 92.520655) - (xy 113.141592 92.484966) - (xy 113.127832 92.472045) - (xy 113.126458 92.470712) - (xy 113.105434 92.449688) - (xy 113.09964 92.445193) - (xy 113.095206 92.441407) - (xy 113.081985 92.428991) - (xy 113.046591 92.368749) - (xy 113.049385 92.298935) - (xy 113.08948 92.241715) - (xy 113.154145 92.215255) - (xy 113.16687 92.2146) - (xy 113.254213 92.2146) - (xy 113.25422 92.2146) - (xy 113.366736 92.199787) - (xy 113.506733 92.141798) - (xy 113.626951 92.049551) - (xy 113.719198 91.929333) - (xy 113.777187 91.789336) - (xy 113.784351 91.734914) - (xy 113.812619 91.671017) - (xy 113.870944 91.632547) - (xy 113.907291 91.6271) - (xy 115.655898 91.6271) - (xy 115.722937 91.646785) - (xy 115.761436 91.686002) - (xy 115.765659 91.692849) - (xy 115.779982 91.707172) - (xy 115.813467 91.768495) - (xy 115.808483 91.838187) - (xy 115.779985 91.882532) - (xy 115.766052 91.896465) - (xy 115.675551 92.043188) - (xy 115.675546 92.043199) - (xy 115.621319 92.206847) - (xy 115.611 92.307845) - (xy 115.611 92.407) - (xy 117.560998 92.407) - (xy 117.560999 92.30786) - (xy 117.560998 92.307845) - (xy 117.55068 92.206847) - (xy 117.496453 92.043199) - (xy 117.496448 92.043188) - (xy 117.405947 91.896465) - (xy 117.405944 91.896461) - (xy 117.392017 91.882534) - (xy 117.358532 91.821211) - (xy 117.363516 91.751519) - (xy 117.392017 91.707172) - (xy 117.40634 91.69285) - (xy 117.472381 91.585779) - (xy 117.524328 91.539056) - (xy 117.59329 91.527833) - (xy 117.657372 91.555676) - (xy 117.6656 91.563195) - (xy 122.163919 96.061515) - (xy 124.027182 97.924778) - (xy 124.060666 97.986099) - (xy 124.0635 98.012457) - (xy 124.0635 101.923781) - (xy 124.043815 101.99082) - (xy 124.004597 102.029319) - (xy 123.920347 102.081285) - (xy 123.920343 102.081288) - (xy 123.796289 102.205342) - (xy 123.704187 102.354663) - (xy 123.704184 102.35467) - (xy 123.702623 102.359382) - (xy 123.662845 102.416823) - (xy 123.598327 102.443641) - (xy 123.529553 102.43132) - (xy 123.497239 102.408049) - (xy 123.380351 102.291161) - (xy 123.38035 102.29116) - (xy 123.249239 102.21029) - (xy 123.233518 102.200593) - (xy 123.233513 102.200591) - (xy 123.232069 102.200112) - (xy 123.069753 102.146326) - (xy 123.069751 102.146325) - (xy 122.968678 102.136) - (xy 122.39533 102.136) - (xy 122.395312 102.136001) - (xy 122.294247 102.146325) - (xy 122.130484 102.200592) - (xy 122.130481 102.200593) - (xy 121.983648 102.291161) - (xy 121.861661 102.413148) - (xy 121.771093 102.559981) - (xy 121.771091 102.559984) - (xy 121.771092 102.559984) - (xy 121.716826 102.723747) - (xy 121.716826 102.723748) - (xy 121.716825 102.723748) - (xy 121.7065 102.824815) - (xy 121.7065 103.423169) - (xy 121.706501 103.423187) - (xy 121.716825 103.524252) - (xy 121.744837 103.608784) - (xy 121.771092 103.688016) - (xy 121.856122 103.825872) - (xy 121.861661 103.834851) - (xy 121.975629 103.948819) - (xy 122.009114 104.010142) - (xy 122.00413 104.079834) - (xy 121.975629 104.124181) - (xy 121.861661 104.238148) - (xy 121.771093 104.384981) - (xy 121.771091 104.384986) - (xy 121.754567 104.434853) - (xy 121.716826 104.548747) - (xy 121.716826 104.548748) - (xy 121.716825 104.548748) - (xy 121.7065 104.649815) - (xy 121.7065 105.248169) - (xy 121.706502 105.248184) - (xy 121.716825 105.349252) - (xy 121.745694 105.43637) - (xy 121.765736 105.496854) - (xy 121.771092 105.513015) - (xy 121.771093 105.513018) - (xy 121.779436 105.526544) - (xy 121.86166 105.65985) - (xy 121.98365 105.78184) - (xy 121.983656 105.781843) - (xy 121.984405 105.782436) - (xy 121.98479 105.78298) - (xy 121.988757 105.786947) - (xy 121.988079 105.787624) - (xy 122.024785 105.839456) - (xy 122.0315 105.879707) - (xy 122.0315 106.9335) - (xy 122.011815 107.000539) - (xy 121.959011 107.046294) - (xy 121.9075 107.0575) - (xy 120.957998 107.0575) - (xy 120.95798 107.057501) - (xy 120.855203 107.068) - (xy 120.8552 107.068001) - (xy 120.688668 107.123185) - (xy 120.688663 107.123187) - (xy 120.539342 107.215289) - (xy 120.415289 107.339342) - (xy 120.323187 107.488663) - (xy 120.323185 107.488666) - (xy 120.323186 107.488666) - (xy 120.268001 107.655203) - (xy 120.268001 107.655204) - (xy 120.268 107.655204) - (xy 120.2575 107.757983) - (xy 120.2575 109.158001) - (xy 120.257501 109.158018) - (xy 120.268 109.260796) - (xy 120.268001 109.260799) - (xy 120.323185 109.427331) - (xy 120.323187 109.427336) - (xy 120.324099 109.428815) - (xy 120.415288 109.576656) - (xy 120.539344 109.700712) - (xy 120.688666 109.792814) - (xy 120.855203 109.847999) - (xy 120.957991 109.8585) - (xy 124.058008 109.858499) - (xy 124.160797 109.847999) - (xy 124.327334 109.792814) - (xy 124.476656 109.700712) - (xy 124.600712 109.576656) - (xy 124.692814 109.427334) - (xy 124.747999 109.260797) - (xy 124.7585 109.158009) - (xy 124.7585 109.158001) - (xy 125.2575 109.158001) - (xy 125.257501 109.158018) - (xy 125.268 109.260796) - (xy 125.268001 109.260799) - (xy 125.323185 109.427331) - (xy 125.323187 109.427336) - (xy 125.324099 109.428815) - (xy 125.415288 109.576656) - (xy 125.539344 109.700712) - (xy 125.688666 109.792814) - (xy 125.855203 109.847999) - (xy 125.957991 109.8585) - (xy 127.937191 109.858499) - (xy 128.00423 109.878184) - (xy 128.024872 109.894818) - (xy 128.479564 110.34951) - (xy 128.489635 110.36208) - (xy 128.489822 110.361926) - (xy 128.494795 110.367937) - (xy 128.546542 110.416531) - (xy 128.547909 110.417855) - (xy 128.568902 110.438848) - (xy 128.568967 110.438913) - (xy 128.574758 110.443405) - (xy 128.579198 110.447198) - (xy 128.58165 110.4495) - (xy 128.614607 110.480448) - (xy 128.633198 110.490668) - (xy 128.649463 110.501352) - (xy 128.666234 110.514361) - (xy 128.666237 110.514363) - (xy 128.710827 110.533658) - (xy 128.716056 110.53622) - (xy 128.758632 110.559627) - (xy 128.779193 110.564905) - (xy 128.797597 110.571207) - (xy 128.817074 110.579636) - (xy 128.854927 110.58563) - (xy 128.865054 110.587235) - (xy 128.870764 110.588417) - (xy 128.917823 110.6005) - (xy 128.939045 110.6005) - (xy 128.958442 110.602026) - (xy 128.979405 110.605347) - (xy 129.027772 110.600774) - (xy 129.033609 110.6005) - (xy 131.899889 110.6005) - (xy 131.966928 110.620185) - (xy 132.000896 110.652572) - (xy 132.027514 110.689952) - (xy 132.027516 110.689954) - (xy 132.027517 110.689955) - (xy 132.02752 110.689959) - (xy 132.17962 110.834985) - (xy 132.274578 110.896011) - (xy 132.356428 110.948613) - (xy 132.551543 111.026725) - (xy 132.654729 111.046612) - (xy 132.757914 111.0665) - (xy 132.757915 111.0665) - (xy 133.465419 111.0665) - (xy 133.465425 111.0665) - (xy 133.622218 111.051528) - (xy 133.823875 110.992316) - (xy 134.010682 110.896011) - (xy 134.175886 110.766092) - (xy 134.313519 110.607256) - (xy 134.324815 110.587692) - (xy 134.410748 110.438851) - (xy 134.418604 110.425244) - (xy 134.487344 110.226633) - (xy 134.517254 110.018602) - (xy 134.507254 109.80867) - (xy 134.457704 109.604424) - (xy 134.431251 109.5465) - (xy 134.370401 109.413256) - (xy 134.370398 109.413251) - (xy 134.370397 109.41325) - (xy 134.370396 109.413247) - (xy 134.248486 109.242048) - (xy 134.215256 109.210363) - (xy 134.145917 109.144249) - (xy 134.110982 109.08374) - (xy 134.114307 109.01395) - (xy 134.154835 108.957036) - (xy 134.166384 108.948971) - (xy 134.231656 108.908712) - (xy 134.355712 108.784656) - (xy 134.447814 108.635334) - (xy 134.502999 108.468797) - (xy 134.5135 108.366009) - (xy 134.513499 107.565992) - (xy 134.51251 107.556315) - (xy 134.502999 107.463203) - (xy 134.502998 107.4632) - (xy 134.498023 107.448187) - (xy 134.447814 107.296666) - (xy 134.355712 107.147344) - (xy 134.231656 107.023288) - (xy 134.082334 106.931186) - (xy 133.915797 106.876001) - (xy 133.915795 106.876) - (xy 133.857896 106.870085) - (xy 133.793205 106.843688) - (xy 133.753054 106.786507) - (xy 133.7465 106.746727) - (xy 133.7465 105.491534) - (xy 133.766185 105.424495) - (xy 133.818989 105.37874) - (xy 133.857897 105.368176) - (xy 133.898797 105.363999) - (xy 134.065334 105.308814) - (xy 134.214656 105.216712) - (xy 134.338712 105.092656) - (xy 134.430814 104.943334) - (xy 134.485999 104.776797) - (xy 134.4965 104.674009) - (xy 134.496499 101.573992) - (xy 134.485999 101.471203) - (xy 134.430814 101.304666) - (xy 134.338712 101.155344) - (xy 134.214656 101.031288) - (xy 134.065334 100.939186) - (xy 133.898797 100.884001) - (xy 133.898795 100.884) - (xy 133.79601 100.8735) - (xy 132.395998 100.8735) - (xy 132.395981 100.873501) - (xy 132.293203 100.884) - (xy 132.2932 100.884001) - (xy 132.126668 100.939185) - (xy 132.126663 100.939187) - (xy 131.977342 101.031289) - (xy 131.853289 101.155342) - (xy 131.761187 101.304663) - (xy 131.761185 101.304668) - (xy 131.750137 101.338009) - (xy 131.706001 101.471203) - (xy 131.706001 101.471204) - (xy 131.706 101.471204) - (xy 131.6955 101.573983) - (xy 131.6955 104.674001) - (xy 131.695501 104.674018) - (xy 131.706 104.776796) - (xy 131.706001 104.776799) - (xy 131.752493 104.917101) - (xy 131.761186 104.943334) - (xy 131.853288 105.092656) - (xy 131.977344 105.216712) - (xy 132.126666 105.308814) - (xy 132.293203 105.363999) - (xy 132.334103 105.368177) - (xy 132.398793 105.394573) - (xy 132.438945 105.451753) - (xy 132.4455 105.491535) - (xy 132.4455 106.758195) - (xy 132.425815 106.825234) - (xy 132.373011 106.870989) - (xy 132.360504 106.875901) - (xy 132.193668 106.931185) - (xy 132.193663 106.931187) - (xy 132.044342 107.023289) - (xy 131.920289 107.147342) - (xy 131.828187 107.296663) - (xy 131.828185 107.296668) - (xy 131.814044 107.339344) - (xy 131.773001 107.463203) - (xy 131.773001 107.463204) - (xy 131.773 107.463204) - (xy 131.7625 107.565983) - (xy 131.7625 108.366001) - (xy 131.762501 108.366019) - (xy 131.773 108.468796) - (xy 131.773001 108.468799) - (xy 131.828185 108.635331) - (xy 131.828187 108.635336) - (xy 131.840429 108.655183) - (xy 131.920288 108.784656) - (xy 132.044344 108.908712) - (xy 132.102881 108.944818) - (xy 132.107739 108.947814) - (xy 132.154464 108.999762) - (xy 132.165687 109.068724) - (xy 132.137844 109.132806) - (xy 132.119296 109.150822) - (xy 132.100118 109.165903) - (xy 132.100112 109.165909) - (xy 132.021439 109.256703) - (xy 131.96266 109.294477) - (xy 131.927726 109.2995) - (xy 129.881359 109.2995) - (xy 129.81432 109.279815) - (xy 129.768565 109.227011) - (xy 129.758001 109.162901) - (xy 129.758498 109.158026) - (xy 129.7585 109.158009) - (xy 129.758499 107.757992) - (xy 129.752166 107.696) - (xy 129.747999 107.655203) - (xy 129.747998 107.6552) - (xy 129.746545 107.650815) - (xy 129.692814 107.488666) - (xy 129.600712 107.339344) - (xy 129.476656 107.215288) - (xy 129.355322 107.140449) - (xy 129.327336 107.123187) - (xy 129.327331 107.123185) - (xy 129.309149 107.11716) - (xy 129.160797 107.068001) - (xy 129.160795 107.068) - (xy 129.05801 107.0575) - (xy 125.957998 107.0575) - (xy 125.957981 107.057501) - (xy 125.855203 107.068) - (xy 125.8552 107.068001) - (xy 125.688668 107.123185) - (xy 125.688663 107.123187) - (xy 125.539342 107.215289) - (xy 125.415289 107.339342) - (xy 125.323187 107.488663) - (xy 125.323185 107.488666) - (xy 125.323186 107.488666) - (xy 125.268001 107.655203) - (xy 125.268001 107.655204) - (xy 125.268 107.655204) - (xy 125.2575 107.757983) - (xy 125.2575 109.158001) - (xy 124.7585 109.158001) - (xy 124.758499 107.757992) - (xy 124.752166 107.696) - (xy 124.747999 107.655203) - (xy 124.747998 107.6552) - (xy 124.746545 107.650815) - (xy 124.692814 107.488666) - (xy 124.600712 107.339344) - (xy 124.476656 107.215288) - (xy 124.355322 107.140449) - (xy 124.327336 107.123187) - (xy 124.327331 107.123185) - (xy 124.309149 107.11716) - (xy 124.160797 107.068001) - (xy 124.160795 107.068) - (xy 124.058016 107.0575) - (xy 124.058009 107.0575) - (xy 123.4565 107.0575) - (xy 123.389461 107.037815) - (xy 123.343706 106.985011) - (xy 123.3325 106.9335) - (xy 123.3325 105.879707) - (xy 123.352185 105.812668) - (xy 123.37538 105.787084) - (xy 123.375243 105.786947) - (xy 123.37805 105.784139) - (xy 123.379595 105.782436) - (xy 123.380339 105.781846) - (xy 123.38035 105.78184) - (xy 123.50234 105.65985) - (xy 123.592908 105.513016) - (xy 123.647174 105.349253) - (xy 123.6575 105.248177) - (xy 123.657499 104.649824) - (xy 123.657317 104.648046) - (xy 123.647174 104.548747) - (xy 123.622798 104.475186) - (xy 123.592908 104.384984) - (xy 123.50234 104.23815) - (xy 123.38837 104.124181) - (xy 123.354886 104.062858) - (xy 123.35987 103.993166) - (xy 123.388368 103.948821) - (xy 123.497242 103.839947) - (xy 123.558561 103.806465) - (xy 123.628253 103.811449) - (xy 123.684187 103.85332) - (xy 123.702623 103.888619) - (xy 123.704116 103.893124) - (xy 123.704185 103.89333) - (xy 123.704187 103.893336) - (xy 123.735866 103.944695) - (xy 123.796288 104.042656) - (xy 123.920344 104.166712) - (xy 124.069666 104.258814) - (xy 124.236203 104.313999) - (xy 124.338991 104.3245) - (xy 125.089008 104.324499) - (xy 125.089016 104.324498) - (xy 125.089019 104.324498) - (xy 125.145302 104.318748) - (xy 125.191797 104.313999) - (xy 125.358334 104.258814) - (xy 125.507656 104.166712) - (xy 125.631712 104.042656) - (xy 125.633752 104.039347) - (xy 125.635745 104.037555) - (xy 125.636193 104.036989) - (xy 125.636289 104.037065) - (xy 125.685694 103.992623) - (xy 125.754656 103.981395) - (xy 125.81874 104.009234) - (xy 125.844829 104.039339) - (xy 125.846681 104.042341) - (xy 125.846683 104.042344) - (xy 125.970654 104.166315) - (xy 126.119875 104.258356) - (xy 126.11988 104.258358) - (xy 126.286302 104.313505) - (xy 126.286309 104.313506) - (xy 126.389019 104.323999) - (xy 126.513999 104.323999) - (xy 126.514 104.323998) - (xy 126.514 103.374) - (xy 127.014 103.374) - (xy 127.014 104.323999) - (xy 127.138972 104.323999) - (xy 127.138986 104.323998) - (xy 127.241697 104.313505) - (xy 127.408119 104.258358) - (xy 127.408124 104.258356) - (xy 127.557345 104.166315) - (xy 127.681315 104.042345) - (xy 127.773356 103.893124) - (xy 127.773358 103.893119) - (xy 127.828505 103.726697) - (xy 127.828506 103.72669) - (xy 127.838999 103.623986) - (xy 127.839 103.623973) - (xy 127.839 103.374) - (xy 127.014 103.374) - (xy 126.514 103.374) - (xy 126.514 102.998) - (xy 126.533685 102.930961) - (xy 126.586489 102.885206) - (xy 126.638 102.874) - (xy 127.838999 102.874) - (xy 127.838999 102.624028) - (xy 127.838998 102.624013) - (xy 127.828505 102.521302) - (xy 127.773358 102.35488) - (xy 127.773356 102.354875) - (xy 127.681315 102.205654) - (xy 127.627218 102.151557) - (xy 127.593733 102.090234) - (xy 127.598717 102.020542) - (xy 127.640589 101.964609) - (xy 127.649782 101.95835) - (xy 127.775656 101.880712) - (xy 127.899712 101.756656) - (xy 127.901752 101.753347) - (xy 127.903745 101.751555) - (xy 127.904193 101.750989) - (xy 127.904289 101.751065) - (xy 127.953694 101.706623) - (xy 128.022656 101.695395) - (xy 128.08674 101.723234) - (xy 128.112829 101.753339) - (xy 128.114681 101.756341) - (xy 128.114683 101.756344) - (xy 128.238654 101.880315) - (xy 128.387875 101.972356) - (xy 128.38788 101.972358) - (xy 128.554302 102.027505) - (xy 128.554309 102.027506) - (xy 128.657019 102.037999) - (xy 128.781999 102.037999) - (xy 128.781999 102.037998) - (xy 128.782 101.088) - (xy 129.282 101.088) - (xy 129.282 102.037999) - (xy 129.406972 102.037999) - (xy 129.406986 102.037998) - (xy 129.509697 102.027505) - (xy 129.676119 101.972358) - (xy 129.676124 101.972356) - (xy 129.825345 101.880315) - (xy 129.949315 101.756345) - (xy 130.041356 101.607124) - (xy 130.041358 101.607119) - (xy 130.096505 101.440697) - (xy 130.096506 101.44069) - (xy 130.106999 101.337986) - (xy 130.107 101.337973) - (xy 130.107 101.088) - (xy 129.282 101.088) - (xy 128.782 101.088) - (xy 128.782 100.712) - (xy 128.801685 100.644961) - (xy 128.854489 100.599206) - (xy 128.906 100.588) - (xy 130.106999 100.588) - (xy 130.106999 100.338028) - (xy 130.106998 100.338013) - (xy 130.096505 100.235302) - (xy 130.041358 100.06888) - (xy 130.041356 100.068875) - (xy 129.949315 99.919654) - (xy 129.825345 99.795684) - (xy 129.676124 99.703643) - (xy 129.676119 99.703641) - (xy 129.659716 99.698206) - (xy 129.602271 99.658433) - (xy 129.575448 99.593917) - (xy 129.587763 99.525142) - (xy 129.635306 99.473942) - (xy 129.69872 99.4565) - (xy 131.571501 99.4565) - (xy 131.63854 99.476185) - (xy 131.684295 99.528989) - (xy 131.695501 99.5805) - (xy 131.695501 99.674018) - (xy 131.706 99.776796) - (xy 131.706001 99.776799) - (xy 131.753055 99.918797) - (xy 131.761186 99.943334) - (xy 131.853288 100.092656) - (xy 131.977344 100.216712) - (xy 132.126666 100.308814) - (xy 132.293203 100.363999) - (xy 132.395991 100.3745) - (xy 133.796008 100.374499) - (xy 133.898797 100.363999) - (xy 134.065334 100.308814) - (xy 134.214656 100.216712) - (xy 134.338712 100.092656) - (xy 134.430814 99.943334) - (xy 134.485999 99.776797) - (xy 134.4965 99.674009) - (xy 134.496499 96.573992) - (xy 134.485999 96.471203) - (xy 134.430814 96.304666) - (xy 134.338712 96.155344) - (xy 134.214656 96.031288) - (xy 134.079019 95.947627) - (xy 134.065336 95.939187) - (xy 134.065331 95.939185) - (xy 134.024693 95.925719) - (xy 133.898797 95.884001) - (xy 133.898795 95.884) - (xy 133.79601 95.8735) - (xy 132.395998 95.8735) - (xy 132.395981 95.873501) - (xy 132.293203 95.884) - (xy 132.2932 95.884001) - (xy 132.126668 95.939185) - (xy 132.126663 95.939187) - (xy 131.977342 96.031289) - (xy 131.853289 96.155342) - (xy 131.761187 96.304663) - (xy 131.761185 96.304668) - (xy 131.736951 96.377803) - (xy 131.706001 96.471203) - (xy 131.706001 96.471204) - (xy 131.706 96.471204) - (xy 131.6955 96.573983) - (xy 131.6955 96.573991) - (xy 131.6955 97.355819) - (xy 131.695501 98.0315) - (xy 131.675816 98.098539) - (xy 131.623013 98.144294) - (xy 131.571501 98.1555) - (xy 129.605208 98.1555) - (xy 129.538169 98.135815) - (xy 129.512584 98.112619) - (xy 129.512447 98.112757) - (xy 129.509647 98.109957) - (xy 129.507945 98.108414) - (xy 129.507344 98.107654) - (xy 129.385351 97.985661) - (xy 129.38535 97.98566) - (xy 129.271123 97.915204) - (xy 129.238518 97.895093) - (xy 129.238513 97.895091) - (xy 129.196638 97.881215) - (xy 129.074753 97.840826) - (xy 129.074751 97.840825) - (xy 128.973678 97.8305) - (xy 128.37533 97.8305) - (xy 128.375312 97.830501) - (xy 128.274247 97.840825) - (xy 128.110484 97.895092) - (xy 128.110481 97.895093) - (xy 127.963648 97.985661) - (xy 127.849681 98.099629) - (xy 127.788358 98.133114) - (xy 127.718666 98.12813) - (xy 127.674319 98.099629) - (xy 127.560351 97.985661) - (xy 127.56035 97.98566) - (xy 127.446123 97.915204) - (xy 127.413518 97.895093) - (xy 127.413513 97.895091) - (xy 127.371638 97.881215) - (xy 127.249753 97.840826) - (xy 127.249751 97.840825) - (xy 127.148684 97.8305) - (xy 127.148677 97.8305) - (xy 126.614808 97.8305) - (xy 126.547769 97.810815) - (xy 126.527127 97.794181) - (xy 122.051127 93.318181) - (xy 122.017642 93.256858) - (xy 122.022626 93.187166) - (xy 122.064498 93.131233) - (xy 122.129962 93.106816) - (xy 122.138808 93.1065) - (xy 122.667592 93.1065) - (xy 122.734631 93.126185) - (xy 122.760215 93.14938) - (xy 122.760353 93.149243) - (xy 122.763152 93.152042) - (xy 122.764855 93.153586) - (xy 122.765455 93.154345) - (xy 122.765459 93.154349) - (xy 122.76546 93.15435) - (xy 122.88745 93.27634) - (xy 123.034284 93.366908) - (xy 123.198047 93.421174) - (xy 123.299123 93.4315) - (xy 123.897476 93.431499) - (xy 123.897484 93.431498) - (xy 123.897487 93.431498) - (xy 123.95283 93.425844) - (xy 123.998553 93.421174) - (xy 124.162316 93.366908) - (xy 124.30915 93.27634) - (xy 124.423119 93.16237) - (xy 124.484442 93.128886) - (xy 124.554134 93.13387) - (xy 124.598481 93.162371) - (xy 124.71245 93.27634) - (xy 124.859284 93.366908) - (xy 125.023047 93.421174) - (xy 125.124123 93.4315) - (xy 125.722476 93.431499) - (xy 125.722484 93.431498) - (xy 125.722487 93.431498) - (xy 125.77783 93.425844) - (xy 125.823553 93.421174) - (xy 125.987316 93.366908) - (xy 126.13415 93.27634) - (xy 126.25614 93.15435) - (xy 126.256141 93.154347) - (xy 126.256144 93.154345) - (xy 126.256745 93.153586) - (xy 126.257289 93.1532) - (xy 126.261247 93.149243) - (xy 126.261923 93.149919) - (xy 126.313768 93.113211) - (xy 126.354008 93.1065) - (xy 126.533495 93.1065) - (xy 126.549505 93.108267) - (xy 126.549528 93.108026) - (xy 126.557294 93.10876) - (xy 126.557295 93.108759) - (xy 126.557296 93.10876) - (xy 126.564271 93.10854) - (xy 126.628235 93.106531) - (xy 126.630183 93.1065) - (xy 126.659925 93.1065) - (xy 126.66719 93.105581) - (xy 126.673016 93.105122) - (xy 126.721569 93.103597) - (xy 126.741956 93.097673) - (xy 126.760996 93.093731) - (xy 126.782058 93.091071) - (xy 126.827235 93.073183) - (xy 126.832735 93.0713) - (xy 126.879398 93.057744) - (xy 126.897665 93.046939) - (xy 126.915136 93.03838) - (xy 126.934871 93.030568) - (xy 126.974177 93.00201) - (xy 126.979043 92.998813) - (xy 127.020865 92.974081) - (xy 127.03587 92.959075) - (xy 127.050668 92.946436) - (xy 127.067837 92.933963) - (xy 127.098809 92.896522) - (xy 127.102723 92.892221) - (xy 127.323313 92.671631) - (xy 127.335879 92.661565) - (xy 127.335725 92.661378) - (xy 127.341733 92.656405) - (xy 127.34174 92.656402) - (xy 127.390332 92.604656) - (xy 127.391656 92.603288) - (xy 127.412711 92.582235) - (xy 127.417201 92.576445) - (xy 127.420983 92.572015) - (xy 127.454248 92.536593) - (xy 127.464474 92.51799) - (xy 127.475153 92.501733) - (xy 127.488162 92.484964) - (xy 127.507456 92.440375) - (xy 127.510012 92.435156) - (xy 127.533427 92.392568) - (xy 127.538705 92.372006) - (xy 127.545007 92.353599) - (xy 127.553435 92.334127) - (xy 127.561033 92.286153) - (xy 127.562214 92.280447) - (xy 127.5743 92.233377) - (xy 127.5743 92.212149) - (xy 127.575827 92.192749) - (xy 127.577334 92.183233) - (xy 127.579146 92.171795) - (xy 127.574572 92.123416) - (xy 127.5743 92.117622) - (xy 127.5743 90.059007) - (xy 127.593985 89.991967) - (xy 127.610614 89.971331) - (xy 129.39506 88.186884) - (xy 129.456381 88.153401) - (xy 129.526073 88.158385) - (xy 129.582006 88.200257) - (xy 129.606423 88.265721) - (xy 129.591571 88.333994) - (xy 129.590127 88.336566) - (xy 129.529853 88.440963) - (xy 129.529852 88.440967) - (xy 129.461144 88.639482) - (xy 129.461144 88.639484) - (xy 129.459632 88.65) - (xy 130.53044 88.65) - (xy 130.491722 88.692059) - (xy 130.441449 88.80667) - (xy 130.431114 88.931395) - (xy 130.461837 89.052719) - (xy 130.525394 89.15) - (xy 129.463742 89.15) - (xy 129.49077 89.261409) - (xy 129.57804 89.452507) - (xy 129.699889 89.623619) - (xy 129.699895 89.623625) - (xy 129.851932 89.768592) - (xy 130.028657 89.882166) - (xy 130.223685 89.960244) - (xy 130.429962 90) - (xy 130.56 90) - (xy 130.56 89.180617) - (xy 130.629052 89.234363) - (xy 130.747424 89.275) - (xy 130.841073 89.275) - (xy 130.933446 89.259586) - (xy 131.043514 89.200019) - (xy 131.06 89.18211) - (xy 131.06 90) - (xy 131.137398 90) - (xy 131.294122 89.985034) - (xy 131.294126 89.985033) - (xy 131.495686 89.92585) - (xy 131.682414 89.829586) - (xy 131.847537 89.699731) - (xy 131.84754 89.699728) - (xy 131.985105 89.540969) - (xy 131.985114 89.540958) - (xy 132.090144 89.359039) - (xy 132.090147 89.359032) - (xy 132.158855 89.160517) - (xy 132.158855 89.160515) - (xy 132.160368 89.15) - (xy 131.08956 89.15) - (xy 131.128278 89.107941) - (xy 131.178551 88.99333) - (xy 131.188886 88.868605) - (xy 131.158163 88.747281) - (xy 131.094606 88.65) - (xy 132.156257 88.65) - (xy 132.129229 88.53859) - (xy 132.041959 88.347492) - (xy 131.92011 88.17638) - (xy 131.920104 88.176374) - (xy 131.768067 88.031408) - (xy 131.726641 88.004784) - (xy 131.680887 87.951979) - (xy 131.670944 87.882821) - (xy 131.69997 87.819265) - (xy 131.71703 87.802999) - (xy 131.72416 87.797392) - (xy 131.847886 87.700092) - (xy 131.985519 87.541256) - (xy 132.010725 87.497599) - (xy 132.090601 87.359249) - (xy 132.0906 87.359249) - (xy 132.090604 87.359244) - (xy 132.159344 87.160633) - (xy 132.189254 86.952602) - (xy 132.179254 86.74267) - (xy 132.129704 86.538424) - (xy 132.089955 86.451386) - (xy 132.042401 86.347256) - (xy 132.042398 86.347251) - (xy 132.042397 86.34725) - (xy 132.042396 86.347247) - (xy 131.920486 86.176048) - (xy 131.817917 86.078249) - (xy 131.782982 86.01774) - (xy 131.786307 85.94795) - (xy 131.826835 85.891036) - (xy 131.838384 85.882971) - (xy 131.903656 85.842712) - (xy 132.027712 85.718656) - (xy 132.119814 85.569334) - (xy 132.174999 85.402797) - (xy 132.1855 85.300009) - (xy 132.185499 84.499992) - (xy 132.180532 84.451372) - (xy 132.174999 84.397203) - (xy 132.174998 84.3972) - (xy 132.142054 84.297783) - (xy 132.119814 84.230666) - (xy 132.027712 84.081344) - (xy 131.903656 83.957288) - (xy 131.793914 83.889599) - (xy 131.754336 83.865187) - (xy 131.754331 83.865185) - (xy 131.752351 83.864529) - (xy 131.587797 83.810001) - (xy 131.587795 83.81) - (xy 131.48501 83.7995) - (xy 130.134998 83.7995) - (xy 130.134981 83.799501) - (xy 130.032203 83.81) - (xy 130.0322 83.810001) - (xy 129.865668 83.865185) - (xy 129.865663 83.865187) - (xy 129.716342 83.957289) - (xy 129.592289 84.081342) - (xy 129.500187 84.230663) - (xy 129.500185 84.230666) - (xy 129.500186 84.230666) - (xy 129.445001 84.397203) - (xy 129.445001 84.397204) - (xy 129.445 84.397204) - (xy 129.4345 84.499983) - (xy 129.4345 85.18939) - (xy 129.414815 85.256429) - (xy 129.398181 85.277071) - (xy 126.306807 88.368445) - (xy 126.245484 88.40193) - (xy 126.175792 88.396946) - (xy 126.131445 88.368445) - (xy 126.0998 88.3368) - (xy 125.183486 88.3368) - (xy 125.209293 88.296644) - (xy 125.2498 88.158689) - (xy 125.2498 88.014911) - (xy 125.209293 87.876956) - (xy 125.183486 87.8368) - (xy 126.0998 87.8368) - (xy 126.0998 87.188972) - (xy 126.099799 87.188955) - (xy 126.093398 87.129427) - (xy 126.093396 87.12942) - (xy 126.043154 86.994713) - (xy 126.04315 86.994706) - (xy 125.95699 86.879612) - (xy 125.956987 86.879609) - (xy 125.841893 86.793449) - (xy 125.841886 86.793445) - (xy 125.707179 86.743203) - (xy 125.707172 86.743201) - (xy 125.647644 86.7368) - (xy 124.9998 86.7368) - (xy 124.9998 87.651298) - (xy 124.892115 87.60212) - (xy 124.785563 87.5868) - (xy 124.714037 87.5868) - (xy 124.607485 87.60212) - (xy 124.499799 87.651298) - (xy 124.4998 86.7368) - (xy 123.851955 86.7368) - (xy 123.792427 86.743201) - (xy 123.79242 86.743203) - (xy 123.657713 86.793445) - (xy 123.657706 86.793449) - (xy 123.542612 86.879609) - (xy 123.542609 86.879612) - (xy 123.456449 86.994706) - (xy 123.456445 86.994713) - (xy 123.407378 87.12627) - (xy 123.365507 87.182204) - (xy 123.300042 87.206621) - (xy 123.231769 87.191769) - (xy 123.203515 87.170619) - (xy 123.159166 87.12627) - (xy 123.081201 87.048305) - (xy 123.081197 87.048302) - (xy 123.081196 87.048301) - (xy 122.887634 86.912767) - (xy 122.88763 86.912765) - (xy 122.860039 86.899899) - (xy 122.673463 86.812897) - (xy 122.673459 86.812896) - (xy 122.673455 86.812894) - (xy 122.445213 86.751738) - (xy 122.445203 86.751736) - (xy 122.209801 86.731141) - (xy 122.209799 86.731141) - (xy 121.97439 86.751737) - (xy 121.974389 86.751737) - (xy 121.901808 86.771184) - (xy 121.831958 86.76952) - (xy 121.782036 86.73909) - (xy 121.207534 86.164588) - (xy 121.197461 86.152014) - (xy 121.197274 86.15217) - (xy 121.192298 86.146155) - (xy 121.159482 86.11534) - (xy 121.140532 86.097545) - (xy 121.139158 86.096212) - (xy 121.118135 86.075189) - (xy 121.11234 86.070694) - (xy 121.107898 86.066899) - (xy 121.072496 86.033654) - (xy 121.072488 86.033648) - (xy 121.053892 86.023425) - (xy 121.037631 86.012744) - (xy 121.020863 85.999737) - (xy 120.997395 85.989582) - (xy 120.976278 85.980443) - (xy 120.971056 85.977886) - (xy 120.928468 85.954473) - (xy 120.928465 85.954472) - (xy 120.907901 85.949192) - (xy 120.889496 85.94289) - (xy 120.870027 85.934465) - (xy 120.870021 85.934463) - (xy 120.822051 85.926866) - (xy 120.816336 85.925682) - (xy 120.799872 85.921455) - (xy 120.76928 85.9136) - (xy 120.769277 85.9136) - (xy 120.748055 85.9136) - (xy 120.728655 85.912073) - (xy 120.707696 85.908753) - (xy 120.707695 85.908753) - (xy 120.683886 85.911003) - (xy 120.65933 85.913325) - (xy 120.653492 85.9136) - (xy 119.623308 85.9136) - (xy 119.556269 85.893915) - (xy 119.510514 85.841111) - (xy 119.50057 85.771953) - (xy 119.529595 85.708397) - (xy 119.535627 85.701919) - (xy 120.47234 84.765206) - (xy 123.312013 81.925531) - (xy 123.324579 81.915465) - (xy 123.324425 81.915278) - (xy 123.330433 81.910305) - (xy 123.33044 81.910302) - (xy 123.379032 81.858556) - (xy 123.380356 81.857188) - (xy 123.401411 81.836135) - (xy 123.405901 81.830345) - (xy 123.409683 81.825915) - (xy 123.442948 81.790493) - (xy 123.453174 81.77189) - (xy 123.463853 81.755633) - (xy 123.476862 81.738864) - (xy 123.496163 81.694259) - (xy 123.498707 81.689065) - (xy 123.522127 81.646468) - (xy 123.527407 81.625902) - (xy 123.533709 81.607495) - (xy 123.542135 81.588026) - (xy 123.549733 81.540048) - (xy 123.550911 81.534353) - (xy 123.563 81.487277) - (xy 123.563 81.466054) - (xy 123.564527 81.446655) - (xy 123.567847 81.425695) - (xy 123.563275 81.37733) - (xy 123.563 81.371492) - (xy 123.563 79.996971) - (xy 123.582685 79.929932) - (xy 123.617929 79.895332) - (xy 123.617683 79.895021) - (xy 123.620582 79.892728) - (xy 123.621901 79.891433) - (xy 123.62335 79.89054) - (xy 123.737319 79.77657) - (xy 123.798642 79.743086) - (xy 123.868334 79.74807) - (xy 123.912681 79.776571) - (xy 124.02665 79.89054) - (xy 124.173484 79.981108) - (xy 124.337247 80.035374) - (xy 124.438323 80.0457) - (xy 125.036676 80.045699) - (xy 125.036684 80.045698) - (xy 125.036687 80.045698) - (xy 125.09203 80.040044) - (xy 125.137753 80.035374) - (xy 125.301516 79.981108) - (xy 125.44835 79.89054) - (xy 125.57034 79.76855) - (xy 125.570341 79.768547) - (xy 125.570344 79.768545) - (xy 125.570945 79.767786) - (xy 125.571489 79.7674) - (xy 125.575447 79.763443) - (xy 125.576123 79.764119) - (xy 125.627968 79.727411) - (xy 125.668208 79.7207) - (xy 129.410295 79.7207) - (xy 129.426305 79.722467) - (xy 129.426328 79.722226) - (xy 129.434094 79.72296) - (xy 129.434095 79.722959) - (xy 129.434096 79.72296) - (xy 129.441071 79.72274) - (xy 129.505035 79.720731) - (xy 129.506983 79.7207) - (xy 129.536725 79.7207) - (xy 129.54399 79.719781) - (xy 129.549816 79.719322) - (xy 129.598369 79.717797) - (xy 129.618756 79.711873) - (xy 129.637796 79.707931) - (xy 129.658858 79.705271) - (xy 129.704035 79.687383) - (xy 129.709535 79.6855) - (xy 129.756198 79.671944) - (xy 129.774465 79.661139) - (xy 129.791936 79.65258) - (xy 129.811671 79.644768) - (xy 129.850977 79.61621) - (xy 129.855843 79.613013) - (xy 129.897665 79.588281) - (xy 129.91267 79.573275) - (xy 129.927468 79.560636) - (xy 129.944637 79.548163) - (xy 129.944644 79.548154) - (xy 129.950323 79.542823) - (xy 129.951893 79.544495) - (xy 130.000226 79.511851) - (xy 130.037867 79.506) - (xy 130.53044 79.506) - (xy 130.491722 79.548059) - (xy 130.441449 79.66267) - (xy 130.431114 79.787395) - (xy 130.461837 79.908719) - (xy 130.525394 80.006) - (xy 129.463742 80.006) - (xy 129.49077 80.117409) - (xy 129.57804 80.308507) - (xy 129.699889 80.479619) - (xy 129.699895 80.479625) - (xy 129.851932 80.624592) - (xy 130.028657 80.738166) - (xy 130.223685 80.816244) - (xy 130.429962 80.856) - (xy 130.56 80.856) - (xy 130.56 80.036617) - (xy 130.629052 80.090363) - (xy 130.747424 80.131) - (xy 130.841073 80.131) - (xy 130.933446 80.115586) - (xy 131.043514 80.056019) - (xy 131.06 80.03811) - (xy 131.06 80.856) - (xy 131.137398 80.856) - (xy 131.294122 80.841034) - (xy 131.294126 80.841033) - (xy 131.495686 80.78185) - (xy 131.682414 80.685586) - (xy 131.847537 80.555731) - (xy 131.84754 80.555728) - (xy 131.985105 80.396969) - (xy 131.985114 80.396958) - (xy 132.090144 80.215039) - (xy 132.090147 80.215032) - (xy 132.158855 80.016517) - (xy 132.158855 80.016515) - (xy 132.160368 80.006) - (xy 131.08956 80.006) - (xy 131.128278 79.963941) - (xy 131.178551 79.84933) - (xy 131.188886 79.724605) - (xy 131.158163 79.603281) - (xy 131.094606 79.506) - (xy 132.156257 79.506) - (xy 132.129229 79.39459) - (xy 132.041959 79.203492) - (xy 131.92011 79.03238) - (xy 131.920104 79.032374) - (xy 131.768067 78.887408) - (xy 131.726641 78.860784) - (xy 131.680887 78.807979) - (xy 131.670944 78.738821) - (xy 131.69997 78.675265) - (xy 131.71703 78.658999) - (xy 131.847886 78.556092) - (xy 131.985519 78.397256) - (xy 131.997319 78.376819) - (xy 132.090601 78.215249) - (xy 132.0906 78.215249) - (xy 132.090604 78.215244) - (xy 132.159344 78.016633) - (xy 132.189254 77.808602) - (xy 132.179254 77.59867) - (xy 132.129704 77.394424) - (xy 132.087192 77.301336) - (xy 132.042401 77.203256) - (xy 132.042398 77.203251) - (xy 132.042397 77.20325) - (xy 132.042396 77.203247) - (xy 131.920486 77.032048) - (xy 131.920484 77.032046) - (xy 131.920479 77.03204) - (xy 131.768379 76.887014) - (xy 131.727057 76.860458) - (xy 131.681302 76.807654) - (xy 131.671359 76.738496) - (xy 131.700384 76.67494) - (xy 131.717445 76.658673) - (xy 131.847883 76.556094) - (xy 131.847886 76.556092) - (xy 131.985519 76.397256) - (xy 132.017133 76.3425) - (xy 132.085015 76.224924) - (xy 132.090604 76.215244) - (xy 132.159344 76.016633) - (xy 132.189254 75.808602) - (xy 132.179254 75.59867) - (xy 132.129704 75.394424) - (xy 132.129701 75.394417) - (xy 132.042401 75.203256) - (xy 132.042398 75.203251) - (xy 132.042397 75.20325) - (xy 132.042396 75.203247) - (xy 131.920486 75.032048) - (xy 131.904457 75.016764) - (xy 131.817917 74.934249) - (xy 131.782982 74.87374) - (xy 131.786307 74.80395) - (xy 131.826835 74.747036) - (xy 131.838384 74.738971) - (xy 131.903656 74.698712) - (xy 132.027712 74.574656) - (xy 132.119814 74.425334) - (xy 132.174999 74.258797) - (xy 132.1855 74.156009) - (xy 132.185499 73.355992) - (xy 132.185415 73.355174) - (xy 132.174999 73.253203) - (xy 132.174998 73.2532) - (xy 132.168037 73.232194) - (xy 132.119814 73.086666) - (xy 132.027712 72.937344) - (xy 131.903656 72.813288) - (xy 131.754334 72.721186) - (xy 131.587797 72.666001) - (xy 131.587795 72.666) - (xy 131.485016 72.6555) - (xy 131.485009 72.6555) - (xy 130.680808 72.6555) - (xy 130.613769 72.635815) - (xy 130.593127 72.619181) - (xy 129.964434 71.990488) - (xy 129.954361 71.977914) - (xy 129.954174 71.97807) - (xy 129.949198 71.972055) - (xy 129.913358 71.9384) - (xy 129.897432 71.923445) - (xy 129.896058 71.922112) - (xy 129.875035 71.901089) - (xy 129.86924 71.896594) - (xy 129.864798 71.892799) - (xy 129.829396 71.859554) - (xy 129.829388 71.859548) - (xy 129.810792 71.849325) - (xy 129.794531 71.838644) - (xy 129.777763 71.825637) - (xy 129.754295 71.815482) - (xy 129.733178 71.806343) - (xy 129.727956 71.803786) - (xy 129.685368 71.780373) - (xy 129.685365 71.780372) - (xy 129.664801 71.775092) - (xy 129.646396 71.76879) - (xy 129.626927 71.760365) - (xy 129.626921 71.760363) - (xy 129.578951 71.752766) - (xy 129.573236 71.751582) - (xy 129.556772 71.747355) - (xy 129.52618 71.7395) - (xy 129.526177 71.7395) - (xy 129.504955 71.7395) - (xy 129.485555 71.737973) - (xy 129.464596 71.734653) - (xy 129.464595 71.734653) - (xy 129.440786 71.736903) - (xy 129.41623 71.739225) - (xy 129.410392 71.7395) - (xy 125.898708 71.7395) - (xy 125.831669 71.719815) - (xy 125.806084 71.696619) - (xy 125.805947 71.696757) - (xy 125.803147 71.693957) - (xy 125.801445 71.692414) - (xy 125.800844 71.691654) - (xy 125.678851 71.569661) - (xy 125.67885 71.56966) - (xy 125.532016 71.479092) - (xy 125.368253 71.424826) - (xy 125.368251 71.424825) - (xy 125.267178 71.4145) - (xy 124.66883 71.4145) - (xy 124.668812 71.414501) - (xy 124.567747 71.424825) - (xy 124.403984 71.479092) - (xy 124.403981 71.479093) - (xy 124.257148 71.569661) - (xy 124.143181 71.683629) - (xy 124.081858 71.717114) - (xy 124.012166 71.71213) - (xy 123.967819 71.683629) - (xy 123.853851 71.569661) - (xy 123.85385 71.56966) - (xy 123.707016 71.479092) - (xy 123.543253 71.424826) - (xy 123.543251 71.424825) - (xy 123.442178 71.4145) - (xy 122.84383 71.4145) - (xy 122.843812 71.414501) - (xy 122.742747 71.424825) - (xy 122.578984 71.479092) - (xy 122.578981 71.479093) - (xy 122.43215 71.569659) - (xy 122.379246 71.622563) - (xy 122.317922 71.656047) - (xy 122.24823 71.651061) - (xy 122.208028 71.626517) - (xy 122.078041 71.508019) - (xy 122.078039 71.508017) - (xy 121.904642 71.400655) - (xy 121.904635 71.400651) - (xy 121.798633 71.359586) - (xy 121.714456 71.326976) - (xy 121.513976 71.2895) - (xy 121.310024 71.2895) - (xy 121.109544 71.326976) - (xy 121.109541 71.326976) - (xy 121.109541 71.326977) - (xy 120.919364 71.400651) - (xy 120.919357 71.400655) - (xy 120.745962 71.508016) - (xy 120.71534 71.535932) - (xy 120.652535 71.566548) - (xy 120.583148 71.55835) - (xy 120.566705 71.549833) - (xy 120.452018 71.479093) - (xy 120.452013 71.479091) - (xy 120.448721 71.478) - (xy 120.288253 71.424826) - (xy 120.288251 71.424825) - (xy 120.187178 71.4145) - (xy 119.58883 71.4145) - (xy 119.588812 71.414501) - (xy 119.487747 71.424825) - (xy 119.323984 71.479092) - (xy 119.323981 71.479093) - (xy 119.177148 71.569661) - (xy 119.063181 71.683629) - (xy 119.001858 71.717114) - (xy 118.932166 71.71213) - (xy 118.887819 71.683629) - (xy 118.773851 71.569661) - (xy 118.77385 71.56966) - (xy 118.627016 71.479092) - (xy 118.463253 71.424826) - (xy 118.463251 71.424825) - (xy 118.362184 71.4145) - (xy 118.362177 71.4145) - (xy 118.058808 71.4145) - (xy 117.991769 71.394815) - (xy 117.971127 71.378181) - (xy 117.555127 70.962181) - (xy 117.521642 70.900858) - (xy 117.526626 70.831166) - (xy 117.568498 70.775233) - (xy 117.633962 70.750816) - (xy 117.642808 70.7505) - (xy 136.1255 70.7505) - (xy 136.192539 70.770185) - (xy 136.238294 70.822989) - (xy 136.2495 70.8745) - (xy 136.2495 124.1255) - (xy 136.229815 124.192539) - (xy 136.177011 124.238294) - (xy 136.1255 124.2495) - (xy 70.8745 124.2495) - (xy 70.807461 124.229815) - (xy 70.761706 124.177011) - (xy 70.7505 124.1255) - (xy 70.7505 119.00087) - (xy 117.8735 119.00087) - (xy 117.873501 119.000876) - (xy 117.879908 119.060483) - (xy 117.930202 119.195328) - (xy 117.930206 119.195335) - (xy 118.016452 119.310544) - (xy 118.016455 119.310547) - (xy 118.131664 119.396793) - (xy 118.131671 119.396797) - (xy 118.266517 119.447091) - (xy 118.266516 119.447091) - (xy 118.273444 119.447835) - (xy 118.326127 119.4535) - (xy 121.021872 119.453499) - (xy 121.081483 119.447091) - (xy 121.216331 119.396796) - (xy 121.331546 119.310546) - (xy 121.417796 119.195331) - (xy 121.468091 119.060483) - (xy 121.4745 119.000873) - (xy 121.4745 117.653004) - (xy 122.868451 117.653004) - (xy 122.888616 117.922101) - (xy 122.948664 118.185188) - (xy 122.948666 118.185195) - (xy 123.047257 118.436398) - (xy 123.182185 118.670102) - (xy 123.31808 118.840509) - (xy 123.350442 118.881089) - (xy 123.537183 119.054358) - (xy 123.548259 119.064635) - (xy 123.771226 119.216651) - (xy 124.014359 119.333738) - (xy 124.272228 119.41328) - (xy 124.272229 119.41328) - (xy 124.272232 119.413281) - (xy 124.539063 119.453499) - (xy 124.539068 119.453499) - (xy 124.539071 119.4535) - (xy 124.539072 119.4535) - (xy 124.808928 119.4535) - (xy 124.808929 119.4535) - (xy 124.808936 119.453499) - (xy 125.075767 119.413281) - (xy 125.075768 119.41328) - (xy 125.075772 119.41328) - (xy 125.333641 119.333738) - (xy 125.576775 119.216651) - (xy 125.799741 119.064635) - (xy 125.997561 118.881085) - (xy 126.165815 118.670102) - (xy 126.300743 118.436398) - (xy 126.399334 118.185195) - (xy 126.459383 117.922103) - (xy 126.479549 117.653) - (xy 126.459383 117.383897) - (xy 126.399334 117.120805) - (xy 126.300743 116.869602) - (xy 126.165815 116.635898) - (xy 125.997561 116.424915) - (xy 125.99756 116.424914) - (xy 125.997557 116.42491) - (xy 125.799741 116.241365) - (xy 125.79974 116.241364) - (xy 125.576775 116.089349) - (xy 125.576769 116.089346) - (xy 125.576768 116.089345) - (xy 125.576767 116.089344) - (xy 125.333643 115.972263) - (xy 125.333645 115.972263) - (xy 125.075773 115.89272) - (xy 125.075767 115.892718) - (xy 124.808936 115.8525) - (xy 124.808929 115.8525) - (xy 124.539071 115.8525) - (xy 124.539063 115.8525) - (xy 124.272232 115.892718) - (xy 124.272226 115.89272) - (xy 124.014358 115.972262) - (xy 123.77123 116.089346) - (xy 123.548258 116.241365) - (xy 123.350442 116.42491) - (xy 123.182185 116.635898) - (xy 123.047258 116.869599) - (xy 123.047256 116.869603) - (xy 122.948666 117.120804) - (xy 122.948664 117.120811) - (xy 122.888616 117.383898) - (xy 122.868451 117.652995) - (xy 122.868451 117.653004) - (xy 121.4745 117.653004) - (xy 121.474499 116.305128) - (xy 121.468091 116.245517) - (xy 121.466542 116.241365) - (xy 121.417797 116.110671) - (xy 121.417793 116.110664) - (xy 121.331547 115.995455) - (xy 121.331544 115.995452) - (xy 121.216335 115.909206) - (xy 121.216328 115.909202) - (xy 121.081482 115.858908) - (xy 121.081483 115.858908) - (xy 121.021883 115.852501) - (xy 121.021881 115.8525) - (xy 121.021873 115.8525) - (xy 121.021864 115.8525) - (xy 118.326129 115.8525) - (xy 118.326123 115.852501) - (xy 118.266516 115.858908) - (xy 118.131671 115.909202) - (xy 118.131664 115.909206) - (xy 118.016455 115.995452) - (xy 118.016452 115.995455) - (xy 117.930206 116.110664) - (xy 117.930202 116.110671) - (xy 117.879908 116.245517) - (xy 117.873501 116.305116) - (xy 117.873501 116.305123) - (xy 117.8735 116.305135) - (xy 117.8735 119.00087) - (xy 70.7505 119.00087) - (xy 70.7505 114.554005) - (xy 81.298859 114.554005) - (xy 81.319385 114.801729) - (xy 81.319387 114.801738) - (xy 81.380412 115.042717) - (xy 81.480266 115.270364) - (xy 81.580564 115.423882) - (xy 82.320923 114.683523) - (xy 82.344507 114.763844) - (xy 82.422239 114.884798) - (xy 82.5309 114.978952) - (xy 82.661685 115.03868) - (xy 82.671466 115.040086) - (xy 81.933942 115.777609) - (xy 81.980768 115.814055) - (xy 81.98077 115.814056) - (xy 82.199385 115.932364) - (xy 82.199396 115.932369) - (xy 82.434506 116.013083) - (xy 82.679707 116.054) - (xy 82.928293 116.054) - (xy 83.173493 116.013083) - (xy 83.408603 115.932369) - (xy 83.408614 115.932364) - (xy 83.627228 115.814057) - (xy 83.627231 115.814055) - (xy 83.674056 115.777609) - (xy 82.936533 115.040086) - (xy 82.946315 115.03868) - (xy 83.0771 114.978952) - (xy 83.185761 114.884798) - (xy 83.263493 114.763844) - (xy 83.287076 114.683524) - (xy 84.027434 115.423882) - (xy 84.127731 115.270369) - (xy 84.227587 115.042717) - (xy 84.288612 114.801738) - (xy 84.288614 114.801729) - (xy 84.309141 114.554005) - (xy 85.362357 114.554005) - (xy 85.38289 114.801812) - (xy 85.382892 114.801824) - (xy 85.443936 115.042881) - (xy 85.543826 115.270606) - (xy 85.679833 115.478782) - (xy 85.679836 115.478785) - (xy 85.848256 115.661738) - (xy 86.044491 115.814474) - (xy 86.044493 115.814475) - (xy 86.262332 115.932364) - (xy 86.26319 115.932828) - (xy 86.445607 115.995452) - (xy 86.496964 116.013083) - (xy 86.498386 116.013571) - (xy 86.743665 116.0545) - (xy 86.992335 116.0545) - (xy 87.237614 116.013571) - (xy 87.47281 115.932828) - (xy 87.691509 115.814474) - (xy 87.887744 115.661738) - (xy 88.056164 115.478785) - (xy 88.192173 115.270607) - (xy 88.292063 115.042881) - (xy 88.353108 114.801821) - (xy 88.373643 114.554) - (xy 88.367686 114.482111) - (xy 88.353109 114.306187) - (xy 88.353107 114.306175) - (xy 88.292063 114.065118) - (xy 88.192173 113.837393) - (xy 88.056166 113.629217) - (xy 88.034557 113.605744) - (xy 87.887744 113.446262) - (xy 87.691509 113.293526) - (xy 87.691507 113.293525) - (xy 87.691506 113.293524) - (xy 87.472811 113.175172) - (xy 87.472802 113.175169) - (xy 87.237616 113.094429) - (xy 86.992335 113.0535) - (xy 86.743665 113.0535) - (xy 86.498383 113.094429) - (xy 86.263197 113.175169) - (xy 86.263188 113.175172) - (xy 86.044493 113.293524) - (xy 85.848257 113.446261) - (xy 85.679833 113.629217) - (xy 85.543826 113.837393) - (xy 85.443936 114.065118) - (xy 85.382892 114.306175) - (xy 85.38289 114.306187) - (xy 85.362357 114.553994) - (xy 85.362357 114.554005) - (xy 84.309141 114.554005) - (xy 84.309141 114.553994) - (xy 84.288614 114.30627) - (xy 84.288612 114.306261) - (xy 84.227587 114.065282) - (xy 84.127731 113.83763) - (xy 84.027434 113.684116) - (xy 83.287076 114.424475) - (xy 83.263493 114.344156) - (xy 83.185761 114.223202) - (xy 83.0771 114.129048) - (xy 82.946315 114.06932) - (xy 82.936534 114.067913) - (xy 83.674057 113.33039) - (xy 83.674056 113.330389) - (xy 83.627229 113.293943) - (xy 83.408614 113.175635) - (xy 83.408603 113.17563) - (xy 83.173493 113.094916) - (xy 82.928293 113.054) - (xy 82.679707 113.054) - (xy 82.434506 113.094916) - (xy 82.199396 113.17563) - (xy 82.19939 113.175632) - (xy 81.980761 113.293949) - (xy 81.933942 113.330388) - (xy 81.933942 113.33039) - (xy 82.671466 114.067913) - (xy 82.661685 114.06932) - (xy 82.5309 114.129048) - (xy 82.422239 114.223202) - (xy 82.344507 114.344156) - (xy 82.320923 114.424475) - (xy 81.580564 113.684116) - (xy 81.480267 113.837632) - (xy 81.380412 114.065282) - (xy 81.319387 114.306261) - (xy 81.319385 114.30627) - (xy 81.298859 114.553994) - (xy 81.298859 114.554005) - (xy 70.7505 114.554005) - (xy 70.7505 111.803) - (xy 81.829001 111.803) - (xy 81.829001 111.852154) - (xy 81.839319 111.953152) - (xy 81.893546 112.1168) - (xy 81.893551 112.116811) - (xy 81.984052 112.263534) - (xy 81.984055 112.263538) - (xy 82.105961 112.385444) - (xy 82.105965 112.385447) - (xy 82.252688 112.475948) - (xy 82.252699 112.475953) - (xy 82.416347 112.53018) - (xy 82.517352 112.540499) - (xy 82.554 112.540499) - (xy 82.554 111.803) - (xy 83.054 111.803) - (xy 83.054 112.540499) - (xy 83.09064 112.540499) - (xy 83.090654 112.540498) - (xy 83.191652 112.53018) - (xy 83.3553 112.475953) - (xy 83.355311 112.475948) - (xy 83.502034 112.385447) - (xy 83.502038 112.385444) - (xy 83.623944 112.263538) - (xy 83.623947 112.263534) - (xy 83.714448 112.116811) - (xy 83.714453 112.1168) - (xy 83.76868 111.953152) - (xy 83.778999 111.852154) - (xy 83.779 111.852141) - (xy 83.779 111.803) - (xy 83.054 111.803) - (xy 82.554 111.803) - (xy 81.829001 111.803) - (xy 70.7505 111.803) - (xy 70.7505 109.728004) - (xy 74.140953 109.728004) - (xy 74.161113 109.997026) - (xy 74.161113 109.997028) - (xy 74.221142 110.260033) - (xy 74.221148 110.260052) - (xy 74.319709 110.511181) - (xy 74.319708 110.511181) - (xy 74.454602 110.744822) - (xy 74.508294 110.812151) - (xy 75.343452 109.976993) - (xy 75.353188 110.006956) - (xy 75.441186 110.145619) - (xy 75.560903 110.25804) - (xy 75.69551 110.332041) - (xy 74.860848 111.166702) - (xy 75.043483 111.29122) - (xy 75.043485 111.291221) - (xy 75.286539 111.408269) - (xy 75.286537 111.408269) - (xy 75.544337 111.48779) - (xy 75.544343 111.487792) - (xy 75.811101 111.527999) - (xy 75.81111 111.528) - (xy 76.08089 111.528) - (xy 76.080898 111.527999) - (xy 76.347656 111.487792) - (xy 76.347662 111.48779) - (xy 76.605461 111.408269) - (xy 76.848521 111.291218) - (xy 77.03115 111.166702) - (xy 76.193534 110.329086) - (xy 76.261629 110.302126) - (xy 76.394492 110.205595) - (xy 76.499175 110.079055) - (xy 76.547631 109.976079) - (xy 77.383703 110.812151) - (xy 77.383704 110.81215) - (xy 77.437393 110.744828) - (xy 77.4374 110.744817) - (xy 77.57229 110.511181) - (xy 77.670851 110.260052) - (xy 77.670857 110.260033) - (xy 77.724007 110.027169) - (xy 81.8285 110.027169) - (xy 81.828501 110.027187) - (xy 81.838825 110.128252) - (xy 81.856096 110.180371) - (xy 81.893092 110.292016) - (xy 81.970729 110.417886) - (xy 81.983661 110.438851) - (xy 82.097982 110.553172) - (xy 82.131467 110.614495) - (xy 82.126483 110.684187) - (xy 82.097983 110.728534) - (xy 81.984052 110.842465) - (xy 81.893551 110.989188) - (xy 81.893546 110.989199) - (xy 81.839319 111.152847) - (xy 81.829 111.253845) - (xy 81.829 111.303) - (xy 83.778999 111.303) - (xy 83.778999 111.25386) - (xy 83.778998 111.253845) - (xy 83.76868 111.152847) - (xy 83.714453 110.989199) - (xy 83.714448 110.989188) - (xy 83.623947 110.842465) - (xy 83.623944 110.842461) - (xy 83.510017 110.728534) - (xy 83.476532 110.667211) - (xy 83.481516 110.597519) - (xy 83.510013 110.553176) - (xy 83.62434 110.43885) - (xy 83.714908 110.292016) - (xy 83.769174 110.128253) - (xy 83.7795 110.027177) - (xy 83.779499 109.428824) - (xy 83.779346 109.427331) - (xy 83.769174 109.327747) - (xy 83.760426 109.301347) - (xy 83.714908 109.163984) - (xy 83.62434 109.01715) - (xy 83.533869 108.926679) - (xy 83.500386 108.865356) - (xy 83.50537 108.795665) - (xy 83.533867 108.751322) - (xy 83.62434 108.66085) - (xy 83.625233 108.659401) - (xy 83.626104 108.658617) - (xy 83.628821 108.655183) - (xy 83.629407 108.655647) - (xy 83.67718 108.612679) - (xy 83.730771 108.6005) - (xy 84.16777 108.6005) - (xy 84.234809 108.620185) - (xy 84.255451 108.636819) - (xy 84.371344 108.752712) - (xy 84.520666 108.844814) - (xy 84.687203 108.899999) - (xy 84.789991 108.9105) - (xy 85.390008 108.910499) - (xy 85.390016 108.910498) - (xy 85.390019 108.910498) - (xy 85.446302 108.904748) - (xy 85.492797 108.899999) - (xy 85.659334 108.844814) - (xy 85.808656 108.752712) - (xy 85.932712 108.628656) - (xy 86.024814 108.479334) - (xy 86.079999 108.312797) - (xy 86.0905 108.210009) - (xy 86.090499 107.609992) - (xy 86.086003 107.565983) - (xy 86.079999 107.507203) - (xy 86.079998 107.5072) - (xy 86.059718 107.446) - (xy 86.024814 107.340666) - (xy 85.932712 107.191344) - (xy 85.808656 107.067288) - (xy 85.700438 107.000539) - (xy 85.659336 106.975187) - (xy 85.659331 106.975185) - (xy 85.606987 106.95784) - (xy 85.492797 106.920001) - (xy 85.492795 106.92) - (xy 85.39001 106.9095) - (xy 84.789998 106.9095) - (xy 84.78998 106.909501) - (xy 84.687203 106.92) - (xy 84.6872 106.920001) - (xy 84.520668 106.975185) - (xy 84.520663 106.975187) - (xy 84.371342 107.067289) - (xy 84.247289 107.191342) - (xy 84.247287 107.191344) - (xy 84.247288 107.191344) - (xy 84.217803 107.239148) - (xy 84.216909 107.240597) - (xy 84.164961 107.287321) - (xy 84.11137 107.2995) - (xy 83.730771 107.2995) - (xy 83.663732 107.279815) - (xy 83.629132 107.24457) - (xy 83.628821 107.244817) - (xy 83.626528 107.241917) - (xy 83.625233 107.240598) - (xy 83.62434 107.23915) - (xy 83.510371 107.125181) - (xy 83.476886 107.063858) - (xy 83.48187 106.994166) - (xy 83.510371 106.949819) - (xy 83.562217 106.897973) - (xy 83.62434 106.83585) - (xy 83.714908 106.689016) - (xy 83.769174 106.525253) - (xy 83.7795 106.424177) - (xy 83.779499 105.825824) - (xy 83.779428 105.825133) - (xy 83.769174 105.724747) - (xy 83.765878 105.7148) - (xy 83.714908 105.560984) - (xy 83.62434 105.41415) - (xy 83.553166 105.342976) - (xy 83.519681 105.281653) - (xy 83.524665 105.211961) - (xy 83.548693 105.172328) - (xy 83.587333 105.129416) - (xy 83.681979 104.965484) - (xy 83.740474 104.785456) - (xy 83.76026 104.5972) - (xy 83.740474 104.408944) - (xy 83.681979 104.228916) - (xy 83.587333 104.064984) - (xy 83.460671 103.924312) - (xy 83.46067 103.924311) - (xy 83.307534 103.813051) - (xy 83.307529 103.813048) - (xy 83.134607 103.736057) - (xy 83.134602 103.736055) - (xy 82.9888 103.705065) - (xy 82.949446 103.6967) - (xy 82.760154 103.6967) - (xy 82.727697 103.703598) - (xy 82.574997 103.736055) - (xy 82.574992 103.736057) - (xy 82.40207 103.813048) - (xy 82.402065 103.813051) - (xy 82.248929 103.924311) - (xy 82.122266 104.064985) - (xy 82.027621 104.228915) - (xy 82.027618 104.228922) - (xy 81.976912 104.384981) - (xy 81.969126 104.408944) - (xy 81.94934 104.5972) - (xy 81.969126 104.785456) - (xy 81.969127 104.785459) - (xy 82.027618 104.965477) - (xy 82.027621 104.965484) - (xy 82.125516 105.135044) - (xy 82.124169 105.135821) - (xy 82.144988 105.194196) - (xy 82.129153 105.262247) - (xy 82.108871 105.288938) - (xy 81.983659 105.414151) - (xy 81.893093 105.560981) - (xy 81.893091 105.560984) - (xy 81.893092 105.560984) - (xy 81.838826 105.724747) - (xy 81.838826 105.724748) - (xy 81.838825 105.724748) - (xy 81.8285 105.825815) - (xy 81.8285 106.424169) - (xy 81.828501 106.424187) - (xy 81.838825 106.525252) - (xy 81.893092 106.689015) - (xy 81.893093 106.689018) - (xy 81.91888 106.730825) - (xy 81.982407 106.833819) - (xy 81.983661 106.835851) - (xy 82.097629 106.949819) - (xy 82.131114 107.011142) - (xy 82.12613 107.080834) - (xy 82.097629 107.125181) - (xy 81.983661 107.239148) - (xy 81.893093 107.385981) - (xy 81.893091 107.385986) - (xy 81.872484 107.448175) - (xy 81.838826 107.549747) - (xy 81.838826 107.549748) - (xy 81.838825 107.549748) - (xy 81.8285 107.650815) - (xy 81.8285 108.249169) - (xy 81.828501 108.249187) - (xy 81.838825 108.350252) - (xy 81.866915 108.435019) - (xy 81.889129 108.502058) - (xy 81.893092 108.514015) - (xy 81.893093 108.514018) - (xy 81.897289 108.520821) - (xy 81.982767 108.659403) - (xy 81.983661 108.660851) - (xy 82.074128 108.751318) - (xy 82.107613 108.812641) - (xy 82.102629 108.882333) - (xy 82.074129 108.926679) - (xy 81.983661 109.017148) - (xy 81.893093 109.163981) - (xy 81.893091 109.163984) - (xy 81.893092 109.163984) - (xy 81.838826 109.327747) - (xy 81.838826 109.327748) - (xy 81.838825 109.327748) - (xy 81.8285 109.428815) - (xy 81.8285 110.027169) - (xy 77.724007 110.027169) - (xy 77.730886 109.997028) - (xy 77.730886 109.997026) - (xy 77.751047 109.728004) - (xy 77.751047 109.727995) - (xy 77.730886 109.458973) - (xy 77.730886 109.458971) - (xy 77.670857 109.195966) - (xy 77.670851 109.195947) - (xy 77.57229 108.944818) - (xy 77.572291 108.944818) - (xy 77.437397 108.711177) - (xy 77.383704 108.643847) - (xy 76.548546 109.479004) - (xy 76.538812 109.449044) - (xy 76.450814 109.310381) - (xy 76.331097 109.19796) - (xy 76.196487 109.123957) - (xy 77.03115 108.289296) - (xy 76.848517 108.164779) - (xy 76.848516 108.164778) - (xy 76.60546 108.04773) - (xy 76.605462 108.04773) - (xy 76.347662 107.968209) - (xy 76.347656 107.968207) - (xy 76.080898 107.928) - (xy 75.811101 107.928) - (xy 75.544343 107.968207) - (xy 75.544337 107.968209) - (xy 75.286538 108.04773) - (xy 75.043485 108.164778) - (xy 75.043476 108.164783) - (xy 74.860848 108.289296) - (xy 75.698465 109.126913) - (xy 75.630371 109.153874) - (xy 75.497508 109.250405) - (xy 75.392825 109.376945) - (xy 75.344368 109.479921) - (xy 74.508295 108.643848) - (xy 74.4546 108.71118) - (xy 74.319709 108.944818) - (xy 74.221148 109.195947) - (xy 74.221142 109.195966) - (xy 74.161113 109.458971) - (xy 74.161113 109.458973) - (xy 74.140953 109.727995) - (xy 74.140953 109.728004) - (xy 70.7505 109.728004) - (xy 70.7505 104.648004) - (xy 74.140451 104.648004) - (xy 74.160616 104.917101) - (xy 74.220664 105.180188) - (xy 74.220666 105.180195) - (xy 74.319256 105.431396) - (xy 74.319258 105.4314) - (xy 74.324327 105.44018) - (xy 74.454185 105.665102) - (xy 74.58235 105.825815) - (xy 74.622442 105.876089) - (xy 74.79385 106.035131) - (xy 74.820259 106.059635) - (xy 75.043226 106.211651) - (xy 75.286359 106.328738) - (xy 75.544228 106.40828) - (xy 75.544229 106.40828) - (xy 75.544232 106.408281) - (xy 75.811063 106.448499) - (xy 75.811068 106.448499) - (xy 75.811071 106.4485) - (xy 75.811072 106.4485) - (xy 76.080928 106.4485) - (xy 76.080929 106.4485) - (xy 76.080936 106.448499) - (xy 76.347767 106.408281) - (xy 76.347768 106.40828) - (xy 76.347772 106.40828) - (xy 76.605641 106.328738) - (xy 76.848775 106.211651) - (xy 77.071741 106.059635) - (xy 77.240897 105.902681) - (xy 77.269557 105.876089) - (xy 77.269557 105.876087) - (xy 77.269561 105.876085) - (xy 77.437815 105.665102) - (xy 77.572743 105.431398) - (xy 77.671334 105.180195) - (xy 77.731383 104.917103) - (xy 77.741967 104.77587) - (xy 77.751549 104.648004) - (xy 77.751549 104.647995) - (xy 77.731383 104.378898) - (xy 77.725958 104.35513) - (xy 77.671334 104.115805) - (xy 77.572743 103.864602) - (xy 77.437815 103.630898) - (xy 77.269561 103.419915) - (xy 77.26956 103.419914) - (xy 77.269557 103.41991) - (xy 77.071741 103.236365) - (xy 77.068357 103.234058) - (xy 76.848775 103.084349) - (xy 76.848769 103.084346) - (xy 76.848768 103.084345) - (xy 76.848767 103.084344) - (xy 76.605643 102.967263) - (xy 76.605645 102.967263) - (xy 76.347773 102.88772) - (xy 76.347767 102.887718) - (xy 76.080936 102.8475) - (xy 76.080929 102.8475) - (xy 75.811071 102.8475) - (xy 75.811063 102.8475) - (xy 75.544232 102.887718) - (xy 75.544226 102.88772) - (xy 75.286358 102.967262) - (xy 75.04323 103.084346) - (xy 74.820258 103.236365) - (xy 74.622442 103.41991) - (xy 74.454185 103.630898) - (xy 74.319258 103.864599) - (xy 74.319256 103.864603) - (xy 74.220666 104.115804) - (xy 74.220664 104.115811) - (xy 74.160616 104.378898) - (xy 74.140451 104.647995) - (xy 74.140451 104.648004) - (xy 70.7505 104.648004) - (xy 70.7505 99.568001) - (xy 73.94039 99.568001) - (xy 73.960804 99.853433) - (xy 74.021628 100.133037) - (xy 74.02163 100.133043) - (xy 74.021631 100.133046) - (xy 74.090989 100.319002) - (xy 74.121633 100.401161) - (xy 74.121636 100.401166) - (xy 74.130332 100.417092) - (xy 74.1455 100.476519) - (xy 74.1455 100.91587) - (xy 74.145501 100.915876) - (xy 74.151908 100.975483) - (xy 74.202202 101.110328) - (xy 74.202206 101.110335) - (xy 74.288452 101.225544) - (xy 74.288455 101.225547) - (xy 74.403664 101.311793) - (xy 74.403671 101.311797) - (xy 74.448618 101.32856) - (xy 74.538517 101.362091) - (xy 74.598127 101.3685) - (xy 75.037479 101.368499) - (xy 75.096906 101.383667) - (xy 75.112839 101.392367) - (xy 75.380954 101.492369) - (xy 75.38096 101.49237) - (xy 75.380962 101.492371) - (xy 75.660566 101.553195) - (xy 75.660568 101.553195) - (xy 75.660572 101.553196) - (xy 75.874552 101.5685) - (xy 96.678391 101.5685) - (xy 96.74543 101.588185) - (xy 96.791185 101.640989) - (xy 96.801129 101.710147) - (xy 96.772104 101.773703) - (xy 96.766072 101.780181) - (xy 93.848473 104.697781) - (xy 93.78715 104.731266) - (xy 93.760792 104.7341) - (xy 90.257637 104.7341) - (xy 90.190598 104.714415) - (xy 90.151238 104.671984) - (xy 90.150778 104.672286) - (xy 90.149014 104.669587) - (xy 90.148586 104.669125) - (xy 90.147973 104.667993) - (xy 90.011966 104.459817) - (xy 89.943074 104.384981) - (xy 89.843544 104.276862) - (xy 89.647309 104.124126) - (xy 89.647307 104.124125) - (xy 89.647306 104.124124) - (xy 89.428611 104.005772) - (xy 89.428602 104.005769) - (xy 89.193416 103.925029) - (xy 88.948135 103.8841) - (xy 88.699465 103.8841) - (xy 88.454183 103.925029) - (xy 88.218997 104.005769) - (xy 88.218988 104.005772) - (xy 88.000293 104.124124) - (xy 87.804057 104.276861) - (xy 87.635633 104.459817) - (xy 87.499626 104.667993) - (xy 87.499014 104.669125) - (xy 87.498642 104.669498) - (xy 87.496822 104.672286) - (xy 87.496248 104.671911) - (xy 87.449791 104.718712) - (xy 87.389963 104.7341) - (xy 86.026552 104.7341) - (xy 85.959513 104.714415) - (xy 85.938711 104.695558) - (xy 85.937819 104.696451) - (xy 85.808657 104.567289) - (xy 85.808656 104.567289) - (xy 85.808656 104.567288) - (xy 85.659334 104.475186) - (xy 85.492797 104.420001) - (xy 85.492795 104.42) - (xy 85.39001 104.4095) - (xy 84.789998 104.4095) - (xy 84.78998 104.409501) - (xy 84.687203 104.42) - (xy 84.6872 104.420001) - (xy 84.520668 104.475185) - (xy 84.520663 104.475187) - (xy 84.371342 104.567289) - (xy 84.247289 104.691342) - (xy 84.155187 104.840663) - (xy 84.155185 104.840668) - (xy 84.129858 104.917101) - (xy 84.100001 105.007203) - (xy 84.100001 105.007204) - (xy 84.1 105.007204) - (xy 84.0895 105.109983) - (xy 84.0895 105.710001) - (xy 84.089501 105.710019) - (xy 84.1 105.812796) - (xy 84.100001 105.812799) - (xy 84.155185 105.979331) - (xy 84.155187 105.979336) - (xy 84.187792 106.032197) - (xy 84.247288 106.128656) - (xy 84.371344 106.252712) - (xy 84.520666 106.344814) - (xy 84.687203 106.399999) - (xy 84.789991 106.4105) - (xy 85.390008 106.410499) - (xy 85.390016 106.410498) - (xy 85.390019 106.410498) - (xy 85.446302 106.404748) - (xy 85.492797 106.399999) - (xy 85.659334 106.344814) - (xy 85.808656 106.252712) - (xy 85.932712 106.128656) - (xy 85.954085 106.094003) - (xy 86.006031 106.04728) - (xy 86.059624 106.0351) - (xy 87.389963 106.0351) - (xy 87.457002 106.054785) - (xy 87.496361 106.097215) - (xy 87.496822 106.096914) - (xy 87.498585 106.099612) - (xy 87.499014 106.100075) - (xy 87.499626 106.101206) - (xy 87.635633 106.309382) - (xy 87.642804 106.317172) - (xy 87.804056 106.492338) - (xy 88.000291 106.645074) - (xy 88.21899 106.763428) - (xy 88.454186 106.844171) - (xy 88.699465 106.8851) - (xy 88.948135 106.8851) - (xy 89.193414 106.844171) - (xy 89.42861 106.763428) - (xy 89.647309 106.645074) - (xy 89.843544 106.492338) - (xy 90.011964 106.309385) - (xy 90.147973 106.101207) - (xy 90.147975 106.101201) - (xy 90.148586 106.100075) - (xy 90.148957 106.099701) - (xy 90.150778 106.096914) - (xy 90.151351 106.097288) - (xy 90.197809 106.050488) - (xy 90.257637 106.0351) - (xy 93.996095 106.0351) - (xy 94.012105 106.036867) - (xy 94.012128 106.036626) - (xy 94.019894 106.03736) - (xy 94.019895 106.037359) - (xy 94.019896 106.03736) - (xy 94.026871 106.03714) - (xy 94.090835 106.035131) - (xy 94.092783 106.0351) - (xy 94.122525 106.0351) - (xy 94.12979 106.034181) - (xy 94.135616 106.033722) - (xy 94.184169 106.032197) - (xy 94.204556 106.026273) - (xy 94.223596 106.022331) - (xy 94.244658 106.019671) - (xy 94.289835 106.001783) - (xy 94.295335 105.9999) - (xy 94.341998 105.986344) - (xy 94.360265 105.975539) - (xy 94.377736 105.96698) - (xy 94.397471 105.959168) - (xy 94.436777 105.93061) - (xy 94.441643 105.927413) - (xy 94.483465 105.902681) - (xy 94.49847 105.887675) - (xy 94.513268 105.875036) - (xy 94.530437 105.862563) - (xy 94.561409 105.825122) - (xy 94.565323 105.820821) - (xy 98.208144 102.178) - (xy 111.024 102.178) - (xy 112.224 102.178) - (xy 112.224 101.528) - (xy 112.724 101.528) - (xy 112.724 102.178) - (xy 113.924 102.178) - (xy 113.924 101.980172) - (xy 113.923999 101.980155) - (xy 113.917598 101.920627) - (xy 113.917596 101.92062) - (xy 113.867354 101.785913) - (xy 113.86735 101.785906) - (xy 113.78119 101.670812) - (xy 113.781187 101.670809) - (xy 113.666093 101.584649) - (xy 113.666086 101.584645) - (xy 113.531379 101.534403) - (xy 113.531372 101.534401) - (xy 113.471844 101.528) - (xy 112.724 101.528) - (xy 112.224 101.528) - (xy 111.476155 101.528) - (xy 111.416627 101.534401) - (xy 111.41662 101.534403) - (xy 111.281913 101.584645) - (xy 111.281906 101.584649) - (xy 111.166812 101.670809) - (xy 111.166809 101.670812) - (xy 111.080649 101.785906) - (xy 111.080645 101.785913) - (xy 111.030403 101.92062) - (xy 111.030401 101.920627) - (xy 111.024 101.980155) - (xy 111.024 102.178) - (xy 98.208144 102.178) - (xy 99.967513 100.418631) - (xy 99.980079 100.408565) - (xy 99.979925 100.408378) - (xy 99.985933 100.403405) - (xy 99.98594 100.403402) - (xy 100.034532 100.351656) - (xy 100.035856 100.350288) - (xy 100.056911 100.329235) - (xy 100.061401 100.323445) - (xy 100.065183 100.319015) - (xy 100.098448 100.283593) - (xy 100.108674 100.26499) - (xy 100.119353 100.248733) - (xy 100.132362 100.231964) - (xy 100.151656 100.187375) - (xy 100.154212 100.182156) - (xy 100.177627 100.139568) - (xy 100.182905 100.119006) - (xy 100.189207 100.100599) - (xy 100.197635 100.081127) - (xy 100.205233 100.03315) - (xy 100.206412 100.027451) - (xy 100.2185 99.980377) - (xy 100.218499 99.959151) - (xy 100.220027 99.939748) - (xy 100.223345 99.9188) - (xy 100.223346 99.918797) - (xy 100.218775 99.870437) - (xy 100.2185 99.8646) - (xy 100.2185 98.806005) - (xy 104.848357 98.806005) - (xy 104.86889 99.053812) - (xy 104.868892 99.053824) - (xy 104.929936 99.294881) - (xy 105.029826 99.522606) - (xy 105.165833 99.730782) - (xy 105.172952 99.738515) - (xy 105.334256 99.913738) - (xy 105.530491 100.066474) - (xy 105.74919 100.184828) - (xy 105.984386 100.265571) - (xy 106.229665 100.3065) - (xy 106.478335 100.3065) - (xy 106.723614 100.265571) - (xy 106.95881 100.184828) - (xy 107.177509 100.066474) - (xy 107.373744 99.913738) - (xy 107.542164 99.730785) - (xy 107.678173 99.522607) - (xy 107.778063 99.294881) - (xy 107.839108 99.053821) - (xy 107.841927 99.019806) - (xy 107.859643 98.806005) - (xy 107.859643 98.805994) - (xy 107.839109 98.558187) - (xy 107.839107 98.558175) - (xy 107.778063 98.317118) - (xy 107.678173 98.089393) - (xy 107.542166 97.881217) - (xy 107.504982 97.840825) - (xy 107.373744 97.698262) - (xy 107.177509 97.545526) - (xy 107.177507 97.545525) - (xy 107.177506 97.545524) - (xy 106.958811 97.427172) - (xy 106.958802 97.427169) - (xy 106.723616 97.346429) - (xy 106.478335 97.3055) - (xy 106.229665 97.3055) - (xy 105.984383 97.346429) - (xy 105.749197 97.427169) - (xy 105.749188 97.427172) - (xy 105.530493 97.545524) - (xy 105.334257 97.698261) - (xy 105.165833 97.881217) - (xy 105.029826 98.089393) - (xy 104.929936 98.317118) - (xy 104.868892 98.558175) - (xy 104.86889 98.558187) - (xy 104.848357 98.805994) - (xy 104.848357 98.806005) - (xy 100.2185 98.806005) - (xy 100.2185 98.002501) - (xy 100.220268 97.986488) - (xy 100.220026 97.986466) - (xy 100.22076 97.978704) - (xy 100.218531 97.907762) - (xy 100.2185 97.905814) - (xy 100.2185 97.876077) - (xy 100.2185 97.876075) - (xy 100.217579 97.868788) - (xy 100.217122 97.862979) - (xy 100.215597 97.81443) - (xy 100.209676 97.794052) - (xy 100.205731 97.775003) - (xy 100.203071 97.753942) - (xy 100.185186 97.708772) - (xy 100.183297 97.703252) - (xy 100.169743 97.656599) - (xy 100.162073 97.643631) - (xy 100.158939 97.638332) - (xy 100.150379 97.620858) - (xy 100.149351 97.618262) - (xy 100.142568 97.601129) - (xy 100.114014 97.561828) - (xy 100.11081 97.55695) - (xy 100.102422 97.542767) - (xy 100.086081 97.515135) - (xy 100.071075 97.500129) - (xy 100.058435 97.48533) - (xy 100.058253 97.48508) - (xy 100.045963 97.468163) - (xy 100.045961 97.46816) - (xy 100.008528 97.437194) - (xy 100.004206 97.43326) - (xy 98.615234 96.044288) - (xy 98.605161 96.031714) - (xy 98.604974 96.03187) - (xy 98.599998 96.025855) - (xy 98.565317 95.993289) - (xy 98.548232 95.977245) - (xy 98.546858 95.975912) - (xy 98.525835 95.954889) - (xy 98.52004 95.950394) - (xy 98.515598 95.946599) - (xy 98.480196 95.913354) - (xy 98.480188 95.913348) - (xy 98.461592 95.903125) - (xy 98.445331 95.892444) - (xy 98.428563 95.879437) - (xy 98.40498 95.869232) - (xy 98.383978 95.860143) - (xy 98.378756 95.857586) - (xy 98.336168 95.834173) - (xy 98.336165 95.834172) - (xy 98.315601 95.828892) - (xy 98.297196 95.82259) - (xy 98.277727 95.814165) - (xy 98.277721 95.814163) - (xy 98.229751 95.806566) - (xy 98.224036 95.805382) - (xy 98.207572 95.801155) - (xy 98.17698 95.7933) - (xy 98.176977 95.7933) - (xy 98.155755 95.7933) - (xy 98.136355 95.791773) - (xy 98.115396 95.788453) - (xy 98.115395 95.788453) - (xy 98.091586 95.790703) - (xy 98.06703 95.793025) - (xy 98.061192 95.7933) - (xy 96.402305 95.7933) - (xy 96.386294 95.791532) - (xy 96.386272 95.791774) - (xy 96.378505 95.791039) - (xy 96.307565 95.793269) - (xy 96.305617 95.7933) - (xy 96.275875 95.7933) - (xy 96.275871 95.7933) - (xy 96.275861 95.793301) - (xy 96.268593 95.794219) - (xy 96.262776 95.794676) - (xy 96.214236 95.796202) - (xy 96.214225 95.796204) - (xy 96.193849 95.802123) - (xy 96.174808 95.806066) - (xy 96.153753 95.808726) - (xy 96.153737 95.80873) - (xy 96.108571 95.826612) - (xy 96.103044 95.828504) - (xy 96.056399 95.842056) - (xy 96.038127 95.852862) - (xy 96.020661 95.861419) - (xy 96.000928 95.869232) - (xy 95.96163 95.897783) - (xy 95.956753 95.900986) - (xy 95.943081 95.909072) - (xy 95.914932 95.92572) - (xy 95.899926 95.940726) - (xy 95.885136 95.953358) - (xy 95.867967 95.965832) - (xy 95.867965 95.965834) - (xy 95.836994 96.00327) - (xy 95.833061 96.007591) - (xy 95.506983 96.333671) - (xy 95.194673 96.645981) - (xy 95.13335 96.679466) - (xy 95.106992 96.6823) - (xy 92.776808 96.6823) - (xy 92.709769 96.662615) - (xy 92.689127 96.645981) - (xy 92.177619 96.134473) - (xy 92.144134 96.07315) - (xy 92.1413 96.046792) - (xy 92.1413 93.432039) - (xy 92.160985 93.365) - (xy 92.213789 93.319245) - (xy 92.282947 93.309301) - (xy 92.330394 93.326498) - (xy 92.434666 93.390814) - (xy 92.601203 93.445999) - (xy 92.703991 93.4565) - (xy 93.304008 93.456499) - (xy 93.304016 93.456498) - (xy 93.304019 93.456498) - (xy 93.360302 93.450748) - (xy 93.406797 93.445999) - (xy 93.573334 93.390814) - (xy 93.722656 93.298712) - (xy 93.846712 93.174656) - (xy 93.938814 93.025334) - (xy 93.993999 92.858797) - (xy 94.0045 92.756009) - (xy 94.004499 92.155992) - (xy 94.000876 92.120529) - (xy 93.993999 92.053203) - (xy 93.993998 92.0532) - (xy 93.992789 92.049551) - (xy 93.938814 91.886666) - (xy 93.846712 91.737344) - (xy 93.722656 91.613288) - (xy 93.573334 91.521186) - (xy 93.406797 91.466001) - (xy 93.406795 91.466) - (xy 93.30401 91.4555) - (xy 92.703998 91.4555) - (xy 92.70398 91.455501) - (xy 92.601203 91.466) - (xy 92.6012 91.466001) - (xy 92.434668 91.521185) - (xy 92.434663 91.521187) - (xy 92.285345 91.613287) - (xy 92.167763 91.730869) - (xy 92.10644 91.764353) - (xy 92.036748 91.759369) - (xy 92.007197 91.743505) - (xy 91.943534 91.697251) - (xy 91.943529 91.697248) - (xy 91.770607 91.620257) - (xy 91.770602 91.620255) - (xy 91.608409 91.585781) - (xy 91.585446 91.5809) - (xy 91.396154 91.5809) - (xy 91.373191 91.585781) - (xy 91.210997 91.620255) - (xy 91.210992 91.620257) - (xy 91.03807 91.697248) - (xy 91.038065 91.697251) - (xy 90.884929 91.808511) - (xy 90.758266 91.949185) - (xy 90.663621 92.113115) - (xy 90.663618 92.113122) - (xy 90.606765 92.2881) - (xy 90.605126 92.293144) - (xy 90.58534 92.4814) - (xy 90.605126 92.669656) - (xy 90.605127 92.669659) - (xy 90.663618 92.849677) - (xy 90.663621 92.849684) - (xy 90.753958 93.006154) - (xy 90.758267 93.013616) - (xy 90.798 93.057744) - (xy 90.808449 93.069348) - (xy 90.83868 93.13234) - (xy 90.8403 93.152321) - (xy 90.8403 96.282094) - (xy 90.838532 96.298105) - (xy 90.838774 96.298128) - (xy 90.838039 96.305894) - (xy 90.840269 96.376835) - (xy 90.8403 96.378783) - (xy 90.8403 96.40852) - (xy 90.840301 96.40854) - (xy 90.841218 96.415806) - (xy 90.841676 96.421624) - (xy 90.843202 96.470167) - (xy 90.843203 96.47017) - (xy 90.849123 96.490548) - (xy 90.853068 96.509596) - (xy 90.855728 96.530654) - (xy 90.855731 96.530664) - (xy 90.873613 96.57583) - (xy 90.875505 96.581358) - (xy 90.889054 96.627995) - (xy 90.889055 96.627997) - (xy 90.89986 96.646266) - (xy 90.908417 96.663734) - (xy 90.914026 96.6779) - (xy 90.916232 96.683472) - (xy 90.944783 96.72277) - (xy 90.947988 96.727649) - (xy 90.972719 96.769465) - (xy 90.972723 96.769469) - (xy 90.987725 96.784471) - (xy 91.000363 96.799269) - (xy 91.012833 96.816433) - (xy 91.012836 96.816436) - (xy 91.012837 96.816437) - (xy 91.050276 96.847409) - (xy 91.054576 96.851322) - (xy 91.322992 97.119738) - (xy 91.559073 97.355819) - (xy 91.592558 97.417142) - (xy 91.587574 97.486834) - (xy 91.545702 97.542767) - (xy 91.480238 97.567184) - (xy 91.471392 97.5675) - (xy 75.874549 97.5675) - (xy 75.660566 97.582804) - (xy 75.380962 97.643628) - (xy 75.112839 97.743633) - (xy 75.096902 97.752335) - (xy 75.03748 97.7675) - (xy 74.598129 97.7675) - (xy 74.598123 97.767501) - (xy 74.538516 97.773908) - (xy 74.403671 97.824202) - (xy 74.403664 97.824206) - (xy 74.288455 97.910452) - (xy 74.288452 97.910455) - (xy 74.202206 98.025664) - (xy 74.202202 98.025671) - (xy 74.151908 98.160517) - (xy 74.145501 98.220116) - (xy 74.1455 98.220135) - (xy 74.1455 98.65948) - (xy 74.130333 98.718905) - (xy 74.121637 98.734831) - (xy 74.121633 98.734838) - (xy 74.021628 99.002962) - (xy 73.960804 99.282566) - (xy 73.94039 99.567998) - (xy 73.94039 99.568001) - (xy 70.7505 99.568001) - (xy 70.7505 82.546) - (xy 74.657501 82.546) - (xy 74.657501 82.582654) - (xy 74.667819 82.683652) - (xy 74.722046 82.8473) - (xy 74.722051 82.847311) - (xy 74.812552 82.994034) - (xy 74.812555 82.994038) - (xy 74.934461 83.115944) - (xy 74.934465 83.115947) - (xy 75.081188 83.206448) - (xy 75.081199 83.206453) - (xy 75.244847 83.26068) - (xy 75.345851 83.270999) - (xy 75.394999 83.270998) - (xy 75.395 83.270998) - (xy 75.395 82.546) - (xy 74.657501 82.546) - (xy 70.7505 82.546) - (xy 70.7505 82.046) - (xy 74.6575 82.046) - (xy 75.395 82.046) - (xy 75.395 81.321) - (xy 75.394999 81.320999) - (xy 75.345861 81.321) - (xy 75.345843 81.321001) - (xy 75.244847 81.331319) - (xy 75.081199 81.385546) - (xy 75.081188 81.385551) - (xy 74.934465 81.476052) - (xy 74.934461 81.476055) - (xy 74.812555 81.597961) - (xy 74.812552 81.597965) - (xy 74.722051 81.744688) - (xy 74.722046 81.744699) - (xy 74.667819 81.908347) - (xy 74.6575 82.009345) - (xy 74.6575 82.046) - (xy 70.7505 82.046) - (xy 70.7505 78.482001) - (xy 96.193704 78.482001) - (xy 96.193899 78.484486) - (xy 96.239718 78.642198) - (xy 96.323314 78.783552) - (xy 96.323321 78.783561) - (xy 96.439438 78.899678) - (xy 96.439447 78.899685) - (xy 96.580803 78.983282) - (xy 96.580806 78.983283) - (xy 96.738504 79.029099) - (xy 96.73851 79.0291) - (xy 96.77535 79.031999) - (xy 96.775366 79.032) - (xy 97.416 79.032) - (xy 97.416 78.482) - (xy 97.916 78.482) - (xy 97.916 79.032) - (xy 98.556634 79.032) - (xy 98.556649 79.031999) - (xy 98.593489 79.0291) - (xy 98.593495 79.029099) - (xy 98.751193 78.983283) - (xy 98.751196 78.983282) - (xy 98.892552 78.899685) - (xy 98.892561 78.899678) - (xy 99.008678 78.783561) - (xy 99.008685 78.783552) - (xy 99.092281 78.642198) - (xy 99.1381 78.484486) - (xy 99.138295 78.482001) - (xy 99.138295 78.482) - (xy 97.916 78.482) - (xy 97.416 78.482) - (xy 96.193705 78.482) - (xy 96.193704 78.482001) - (xy 70.7505 78.482001) - (xy 70.7505 74.893401) - (xy 71.730746 74.893401) - (xy 71.740745 75.103327) - (xy 71.790296 75.307578) - (xy 71.790298 75.307582) - (xy 71.877598 75.498743) - (xy 71.877601 75.498748) - (xy 71.877602 75.49875) - (xy 71.877604 75.498753) - (xy 71.948756 75.598672) - (xy 71.999515 75.669953) - (xy 72.102082 75.76775) - (xy 72.137017 75.828259) - (xy 72.133692 75.898049) - (xy 72.093164 75.954963) - (xy 72.08161 75.963031) - (xy 72.016344 76.003287) - (xy 71.892289 76.127342) - (xy 71.800187 76.276663) - (xy 71.800185 76.276668) - (xy 71.783507 76.327) - (xy 71.745001 76.443203) - (xy 71.745001 76.443204) - (xy 71.745 76.443204) - (xy 71.7345 76.545983) - (xy 71.7345 77.346001) - (xy 71.734501 77.346019) - (xy 71.745 77.448796) - (xy 71.745001 77.448799) - (xy 71.776217 77.543) - (xy 71.800186 77.615334) - (xy 71.892288 77.764656) - (xy 72.016344 77.888712) - (xy 72.165666 77.980814) - (xy 72.332203 78.035999) - (xy 72.434991 78.0465) - (xy 73.785008 78.046499) - (xy 73.887797 78.035999) - (xy 74.054334 77.980814) - (xy 74.203656 77.888712) - (xy 74.327712 77.764656) - (xy 74.327716 77.764649) - (xy 74.331721 77.759586) - (xy 74.388744 77.719211) - (xy 74.428985 77.7125) - (xy 96.106321 77.7125) - (xy 96.17336 77.732185) - (xy 96.219115 77.784989) - (xy 96.229059 77.854147) - (xy 96.225397 77.871095) - (xy 96.1939 77.979505) - (xy 96.193899 77.979511) - (xy 96.193704 77.981998) - (xy 96.193705 77.982) - (xy 99.138295 77.982) - (xy 99.138295 77.981998) - (xy 99.1381 77.979513) - (xy 99.092281 77.821801) - (xy 99.008685 77.680447) - (xy 99.0039 77.674278) - (xy 99.006366 77.672364) - (xy 98.979802 77.623776) - (xy 98.984749 77.554082) - (xy 99.005856 77.521232) - (xy 99.004301 77.520026) - (xy 99.009077 77.513868) - (xy 99.009081 77.513865) - (xy 99.092744 77.372398) - (xy 99.138598 77.214569) - (xy 99.1415 77.177694) - (xy 99.1415 76.746306) - (xy 99.138598 76.709431) - (xy 99.136527 76.702303) - (xy 99.092745 76.551606) - (xy 99.092744 76.551603) - (xy 99.092744 76.551602) - (xy 99.052382 76.483353) - (xy 99.009084 76.410139) - (xy 99.004301 76.403974) - (xy 99.006752 76.402072) - (xy 98.980154 76.353421) - (xy 98.985103 76.283726) - (xy 99.005942 76.251299) - (xy 99.004301 76.250026) - (xy 99.009077 76.243868) - (xy 99.009081 76.243865) - (xy 99.092744 76.102398) - (xy 99.138598 75.944569) - (xy 99.1415 75.907694) - (xy 99.1415 75.476306) - (xy 99.138598 75.439431) - (xy 99.129108 75.406768) - (xy 99.092745 75.281606) - (xy 99.092744 75.281603) - (xy 99.092744 75.281602) - (xy 99.052382 75.213353) - (xy 99.009084 75.140139) - (xy 99.004301 75.133974) - (xy 99.006752 75.132072) - (xy 98.980154 75.083421) - (xy 98.985103 75.013726) - (xy 99.005942 74.981299) - (xy 99.004301 74.980026) - (xy 99.009077 74.973868) - (xy 99.009081 74.973865) - (xy 99.092744 74.832398) - (xy 99.135461 74.685367) - (xy 99.138597 74.674573) - (xy 99.138598 74.674567) - (xy 99.141499 74.637701) - (xy 99.1415 74.637694) - (xy 99.1415 74.206306) - (xy 99.138598 74.169431) - (xy 99.136219 74.161243) - (xy 99.101567 74.04197) - (xy 99.092744 74.011602) - (xy 99.009081 73.870135) - (xy 99.009079 73.870133) - (xy 99.009076 73.870129) - (xy 98.89287 73.753923) - (xy 98.892862 73.753917) - (xy 98.751396 73.670255) - (xy 98.751393 73.670254) - (xy 98.593573 73.624402) - (xy 98.593567 73.624401) - (xy 98.556701 73.6215) - (xy 98.556694 73.6215) - (xy 96.775306 73.6215) - (xy 96.775298 73.6215) - (xy 96.738432 73.624401) - (xy 96.738426 73.624402) - (xy 96.580606 73.670254) - (xy 96.580603 73.670255) - (xy 96.439137 73.753917) - (xy 96.439129 73.753923) - (xy 96.322923 73.870129) - (xy 96.322917 73.870137) - (xy 96.239255 74.011603) - (xy 96.239254 74.011606) - (xy 96.193402 74.169426) - (xy 96.193401 74.169432) - (xy 96.1905 74.206298) - (xy 96.1905 74.637701) - (xy 96.193401 74.674567) - (xy 96.193402 74.674573) - (xy 96.224876 74.782905) - (xy 96.224677 74.852775) - (xy 96.186735 74.911445) - (xy 96.123096 74.940288) - (xy 96.1058 74.9415) - (xy 76.61303 74.9415) - (xy 76.545991 74.921815) - (xy 76.525349 74.905181) - (xy 76.080529 74.460361) - (xy 76.068749 74.44673) - (xy 76.059181 74.433879) - (xy 76.054412 74.427472) - (xy 76.05441 74.42747) - (xy 76.014387 74.393886) - (xy 76.010412 74.390244) - (xy 76.00749 74.387322) - (xy 76.004579 74.38441) - (xy 75.979536 74.364609) - (xy 75.978138 74.36347) - (xy 75.968737 74.355582) - (xy 75.920014 74.314698) - (xy 75.91398 74.310729) - (xy 75.914012 74.31068) - (xy 75.907653 74.306628) - (xy 75.907622 74.306679) - (xy 75.90148 74.302891) - (xy 75.901478 74.30289) - (xy 75.901477 74.302889) - (xy 75.832672 74.270804) - (xy 75.831052 74.270019) - (xy 75.791312 74.250061) - (xy 75.763233 74.23596) - (xy 75.763231 74.235959) - (xy 75.76323 74.235959) - (xy 75.756445 74.233489) - (xy 75.756465 74.233433) - (xy 75.749349 74.230959) - (xy 75.749331 74.231015) - (xy 75.742474 74.228743) - (xy 75.668128 74.213391) - (xy 75.666369 74.213001) - (xy 75.592518 74.195499) - (xy 75.585347 74.194661) - (xy 75.585353 74.194601) - (xy 75.577855 74.193835) - (xy 75.57785 74.193895) - (xy 75.57066 74.193265) - (xy 75.494768 74.195474) - (xy 75.492965 74.1955) - (xy 74.242285 74.1955) - (xy 74.175246 74.175815) - (xy 74.156715 74.161243) - (xy 74.145284 74.150344) - (xy 74.068378 74.077014) - (xy 74.068376 74.077012) - (xy 73.891574 73.963388) - (xy 73.696455 73.885274) - (xy 73.490086 73.8455) - (xy 73.490085 73.8455) - (xy 72.782575 73.8455) - (xy 72.625782 73.860472) - (xy 72.625778 73.860473) - (xy 72.424127 73.919683) - (xy 72.237313 74.015991) - (xy 72.072116 74.145905) - (xy 72.072112 74.145909) - (xy 71.934478 74.304746) - (xy 71.829398 74.48675) - (xy 71.760656 74.685365) - (xy 71.760656 74.685367) - (xy 71.733573 74.87374) - (xy 71.730746 74.893401) - (xy 70.7505 74.893401) - (xy 70.7505 70.8745) - (xy 70.770185 70.807461) - (xy 70.822989 70.761706) - (xy 70.8745 70.7505) - (xy 110.148192 70.7505) - ) - ) - (filled_polygon - (layer "F.Cu") - (pts - (xy 124.9998 89.4368) - (xy 125.03069 89.46769) - (xy 125.064175 89.529013) - (xy 125.059191 89.598705) - (xy 125.033401 89.640255) - (xy 125.009469 89.665741) - (xy 125.008115 89.667138) - (xy 124.987089 89.688164) - (xy 124.987078 89.688177) - (xy 124.982587 89.693965) - (xy 124.978801 89.698397) - (xy 124.945551 89.733807) - (xy 124.943375 89.736803) - (xy 124.908157 89.769451) - (xy 124.765153 89.857657) - (xy 124.765149 89.85766) - (xy 124.651181 89.971629) - (xy 124.589858 90.005114) - (xy 124.520166 90.00013) - (xy 124.475819 89.971629) - (xy 124.361851 89.857661) - (xy 124.361851 89.85766) - (xy 124.36185 89.85766) - (xy 124.215016 89.767092) - (xy 124.051253 89.712826) - (xy 124.051251 89.712825) - (xy 123.950178 89.7025) - (xy 123.35183 89.7025) - (xy 123.351812 89.702501) - (xy 123.250747 89.712825) - (xy 123.086984 89.767092) - (xy 123.086981 89.767093) - (xy 122.940148 89.857661) - (xy 122.818155 89.979654) - (xy 122.817555 89.980414) - (xy 122.81701 89.980799) - (xy 122.813053 89.984757) - (xy 122.812376 89.98408) - (xy 122.760532 90.020789) - (xy 122.720292 90.0275) - (xy 120.335808 90.0275) - (xy 120.268769 90.007815) - (xy 120.248127 89.991181) - (xy 119.878521 89.621575) - (xy 119.845036 89.560252) - (xy 119.85002 89.49056) - (xy 119.891892 89.434627) - (xy 119.934109 89.414119) - (xy 119.962417 89.406534) - (xy 120.133463 89.360703) - (xy 120.34763 89.260835) - (xy 120.541201 89.125295) - (xy 120.708295 88.958201) - (xy 120.838224 88.772642) - (xy 120.892802 88.729017) - (xy 120.9623 88.721823) - (xy 121.024655 88.753346) - (xy 121.041375 88.772642) - (xy 121.166528 88.95138) - (xy 121.171305 88.958201) - (xy 121.338399 89.125295) - (xy 121.411974 89.176813) - (xy 121.531965 89.260832) - (xy 121.531967 89.260833) - (xy 121.53197 89.260835) - (xy 121.746137 89.360703) - (xy 121.746143 89.360704) - (xy 121.746144 89.360705) - (xy 121.753239 89.362606) - (xy 121.974392 89.421863) - (xy 122.145119 89.4368) - (xy 122.209799 89.442459) - (xy 122.2098 89.442459) - (xy 122.209801 89.442459) - (xy 122.274481 89.4368) - (xy 122.445208 89.421863) - (xy 122.673463 89.360703) - (xy 122.88763 89.260835) - (xy 123.081201 89.125295) - (xy 123.203517 89.002978) - (xy 123.264836 88.969496) - (xy 123.334528 88.97448) - (xy 123.390462 89.016351) - (xy 123.407377 89.047328) - (xy 123.456446 89.178888) - (xy 123.456449 89.178893) - (xy 123.542609 89.293987) - (xy 123.542612 89.29399) - (xy 123.657706 89.38015) - (xy 123.657713 89.380154) - (xy 123.79242 89.430396) - (xy 123.792427 89.430398) - (xy 123.851955 89.436799) - (xy 123.851972 89.4368) - (xy 124.499799 89.4368) - (xy 124.499799 88.522301) - (xy 124.607485 88.57148) - (xy 124.714037 88.5868) - (xy 124.785563 88.5868) - (xy 124.892115 88.57148) - (xy 124.9998 88.522301) - ) - ) - (filled_polygon - (layer "F.Cu") - (pts - (xy 102.418827 87.234285) - (xy 102.464582 87.287089) - (xy 102.475108 87.351559) - (xy 102.474575 87.356639) - (xy 102.47254 87.376) - (xy 102.482581 87.471539) - (xy 102.470011 87.540269) - (xy 102.422279 87.591293) - (xy 102.359264 87.6085) - (xy 102.329362 87.6085) - (xy 102.329344 87.608501) - (xy 102.228347 87.618819) - (xy 102.064699 87.673046) - (xy 102.064688 87.673051) - (xy 101.917965 87.763552) - (xy 101.917961 87.763555) - (xy 101.796055 87.885461) - (xy 101.796052 87.885465) - (xy 101.705551 88.032188) - (xy 101.705546 88.032199) - (xy 101.651319 88.195847) - (xy 101.641 88.296845) - (xy 101.641 88.396) - (xy 102.742 88.396) - (xy 102.809039 88.415685) - (xy 102.854794 88.468489) - (xy 102.866 88.52) - (xy 102.866 88.772) - (xy 102.846315 88.839039) - (xy 102.793511 88.884794) - (xy 102.742 88.896) - (xy 101.641001 88.896) - (xy 101.641001 88.995154) - (xy 101.651319 89.096152) - (xy 101.705546 89.2598) - (xy 101.705551 89.259811) - (xy 101.796052 89.406534) - (xy 101.796055 89.406538) - (xy 101.809982 89.420465) - (xy 101.843467 89.481788) - (xy 101.838483 89.55148) - (xy 101.809984 89.595825) - (xy 101.790555 89.615255) - (xy 101.789009 89.613709) - (xy 101.74069 89.647913) - (xy 101.67089 89.65104) - (xy 101.612786 89.618303) - (xy 101.598534 89.604052) - (xy 101.451811 89.513551) - (xy 101.4518 89.513546) - (xy 101.288152 89.459319) - (xy 101.187154 89.449) - (xy 101.131997 89.449) - (xy 101.064958 89.429315) - (xy 101.019203 89.376511) - (xy 101.008708 89.311744) - (xy 101.011117 89.289336) - (xy 101.0145 89.257873) - (xy 101.014499 87.480807) - (xy 101.034184 87.413769) - (xy 101.050813 87.393132) - (xy 101.193028 87.250917) - (xy 101.25435 87.217434) - (xy 101.280708 87.2146) - (xy 102.351788 87.2146) - ) - ) - (filled_polygon - (layer "F.Cu") - (pts - (xy 116.539231 71.790185) - (xy 116.559873 71.806819) - (xy 117.038681 72.285627) - (xy 117.072166 72.34695) - (xy 117.075 72.373308) - (xy 117.075 72.676668) - (xy 117.075001 72.676687) - (xy 117.085325 72.777752) - (xy 117.139592 72.941515) - (xy 117.139593 72.941518) - (xy 117.173895 72.997129) - (xy 117.23016 73.08835) - (xy 117.35215 73.21034) - (xy 117.498984 73.300908) - (xy 117.662747 73.355174) - (xy 117.763823 73.3655) - (xy 118.362176 73.365499) - (xy 118.362184 73.365498) - (xy 118.362187 73.365498) - (xy 118.455186 73.355998) - (xy 118.463253 73.355174) - (xy 118.627016 73.300908) - (xy 118.77385 73.21034) - (xy 118.887819 73.09637) - (xy 118.949142 73.062886) - (xy 119.018834 73.06787) - (xy 119.063181 73.096371) - (xy 119.17715 73.21034) - (xy 119.323984 73.300908) - (xy 119.487747 73.355174) - (xy 119.588823 73.3655) - (xy 120.187176 73.365499) - (xy 120.187184 73.365498) - (xy 120.187187 73.365498) - (xy 120.280186 73.355998) - (xy 120.288253 73.355174) - (xy 120.452016 73.300908) - (xy 120.566705 73.230166) - (xy 120.634097 73.211726) - (xy 120.700761 73.232648) - (xy 120.715341 73.244069) - (xy 120.745957 73.27198) - (xy 120.74596 73.271982) - (xy 120.800246 73.305594) - (xy 120.919363 73.379348) - (xy 121.109544 73.453024) - (xy 121.310024 73.4905) - (xy 121.310026 73.4905) - (xy 121.513974 73.4905) - (xy 121.513976 73.4905) - (xy 121.714456 73.453024) - (xy 121.904637 73.379348) - (xy 122.078041 73.271981) - (xy 122.208032 73.153478) - (xy 122.270831 73.122864) - (xy 122.340218 73.131061) - (xy 122.379247 73.157437) - (xy 122.43215 73.21034) - (xy 122.578984 73.300908) - (xy 122.742747 73.355174) - (xy 122.843823 73.3655) - (xy 123.442176 73.365499) - (xy 123.442184 73.365498) - (xy 123.442187 73.365498) - (xy 123.535186 73.355998) - (xy 123.543253 73.355174) - (xy 123.707016 73.300908) - (xy 123.85385 73.21034) - (xy 123.967818 73.09637) - (xy 124.029142 73.062886) - (xy 124.098834 73.06787) - (xy 124.143181 73.096371) - (xy 124.25715 73.21034) - (xy 124.403984 73.300908) - (xy 124.567747 73.355174) - (xy 124.668823 73.3655) - (xy 125.267176 73.365499) - (xy 125.267184 73.365498) - (xy 125.267187 73.365498) - (xy 125.360186 73.355998) - (xy 125.368253 73.355174) - (xy 125.532016 73.300908) - (xy 125.67885 73.21034) - (xy 125.80084 73.08835) - (xy 125.800841 73.088347) - (xy 125.800844 73.088345) - (xy 125.801445 73.087586) - (xy 125.801989 73.0872) - (xy 125.805947 73.083243) - (xy 125.806623 73.083919) - (xy 125.858468 73.047211) - (xy 125.898708 73.0405) - (xy 129.123192 73.0405) - (xy 129.190231 73.060185) - (xy 129.210873 73.076819) - (xy 129.39823 73.264176) - (xy 129.431715 73.325499) - (xy 129.433964 73.352835) - (xy 129.4345 73.352835) - (xy 129.4345 74.156001) - (xy 129.434501 74.156019) - (xy 129.445 74.258796) - (xy 129.445001 74.258799) - (xy 129.500185 74.425331) - (xy 129.500187 74.425336) - (xy 129.513534 74.446975) - (xy 129.576835 74.549603) - (xy 129.592289 74.574657) - (xy 129.716344 74.698712) - (xy 129.779739 74.737814) - (xy 129.826464 74.789762) - (xy 129.837687 74.858724) - (xy 129.809844 74.922806) - (xy 129.791296 74.940822) - (xy 129.772118 74.955903) - (xy 129.772112 74.955909) - (xy 129.634478 75.114746) - (xy 129.529398 75.29675) - (xy 129.460656 75.495365) - (xy 129.460656 75.495367) - (xy 129.445804 75.59867) - (xy 129.430746 75.703401) - (xy 129.440746 75.913331) - (xy 129.441412 75.917962) - (xy 129.431472 75.987121) - (xy 129.406356 76.023296) - (xy 128.798873 76.630781) - (xy 128.73755 76.664266) - (xy 128.711192 76.6671) - (xy 125.668208 76.6671) - (xy 125.601169 76.647415) - (xy 125.575584 76.624219) - (xy 125.575447 76.624357) - (xy 125.572647 76.621557) - (xy 125.570945 76.620014) - (xy 125.570344 76.619254) - (xy 125.448351 76.497261) - (xy 125.44835 76.49726) - (xy 125.357129 76.440995) - (xy 125.301518 76.406693) - (xy 125.301513 76.406691) - (xy 125.273031 76.397253) - (xy 125.137753 76.352426) - (xy 125.137751 76.352425) - (xy 125.036678 76.3421) - (xy 124.43833 76.3421) - (xy 124.438312 76.342101) - (xy 124.337247 76.352425) - (xy 124.173484 76.406692) - (xy 124.173481 76.406693) - (xy 124.026648 76.497261) - (xy 123.912681 76.611229) - (xy 123.851358 76.644714) - (xy 123.781666 76.63973) - (xy 123.737319 76.611229) - (xy 123.623351 76.497261) - (xy 123.62335 76.49726) - (xy 123.532129 76.440995) - (xy 123.476518 76.406693) - (xy 123.476513 76.406691) - (xy 123.448031 76.397253) - (xy 123.312753 76.352426) - (xy 123.312751 76.352425) - (xy 123.211678 76.3421) - (xy 122.61333 76.3421) - (xy 122.613312 76.342101) - (xy 122.512247 76.352425) - (xy 122.348484 76.406692) - (xy 122.348481 76.406693) - (xy 122.201648 76.497261) - (xy 122.079655 76.619254) - (xy 122.079055 76.620014) - (xy 122.07851 76.620399) - (xy 122.074553 76.624357) - (xy 122.073876 76.62368) - (xy 122.022032 76.660389) - (xy 121.981792 76.6671) - (xy 121.980106 76.6671) - (xy 121.964095 76.665332) - (xy 121.964073 76.665574) - (xy 121.956305 76.664839) - (xy 121.88535 76.667069) - (xy 121.883403 76.6671) - (xy 121.853675 76.6671) - (xy 121.853671 76.6671) - (xy 121.85366 76.667101) - (xy 121.846404 76.668017) - (xy 121.840586 76.668475) - (xy 121.792032 76.670001) - (xy 121.792031 76.670001) - (xy 121.771641 76.675925) - (xy 121.752596 76.679869) - (xy 121.731542 76.682529) - (xy 121.686374 76.700411) - (xy 121.680848 76.702303) - (xy 121.634202 76.715855) - (xy 121.634195 76.715858) - (xy 121.615929 76.726661) - (xy 121.598461 76.735219) - (xy 121.578728 76.743032) - (xy 121.53943 76.771583) - (xy 121.534553 76.774786) - (xy 121.520881 76.782872) - (xy 121.492732 76.79952) - (xy 121.477726 76.814526) - (xy 121.462936 76.827158) - (xy 121.445767 76.839632) - (xy 121.445765 76.839634) - (xy 121.414794 76.87707) - (xy 121.410862 76.881391) - (xy 121.177583 77.114669) - (xy 121.16501 77.124743) - (xy 121.165165 77.12493) - (xy 121.159158 77.129898) - (xy 121.110568 77.181642) - (xy 121.109214 77.183038) - (xy 121.08819 77.204063) - (xy 121.088178 77.204077) - (xy 121.083687 77.209865) - (xy 121.079901 77.214297) - (xy 121.046652 77.249706) - (xy 121.036422 77.268313) - (xy 121.025746 77.284564) - (xy 121.01274 77.301332) - (xy 121.012736 77.301338) - (xy 120.993448 77.345911) - (xy 120.990877 77.351158) - (xy 120.967472 77.39373) - (xy 120.967472 77.393731) - (xy 120.962191 77.414299) - (xy 120.955891 77.432701) - (xy 120.947464 77.452173) - (xy 120.939866 77.500147) - (xy 120.938681 77.50587) - (xy 120.9266 77.552918) - (xy 120.9266 77.574144) - (xy 120.925073 77.593543) - (xy 120.921753 77.614505) - (xy 120.924855 77.647315) - (xy 120.926325 77.662867) - (xy 120.9266 77.668706) - (xy 120.9266 81.429091) - (xy 120.906915 81.49613) - (xy 120.890281 81.516772) - (xy 119.285979 83.121073) - (xy 119.224656 83.154558) - (xy 119.154964 83.149574) - (xy 119.099031 83.107702) - (xy 119.080367 83.07171) - (xy 119.038781 82.943721) - (xy 119.038778 82.943715) - (xy 119.037131 82.940862) - (xy 118.944133 82.779784) - (xy 118.817471 82.639112) - (xy 118.79738 82.624515) - (xy 118.664334 82.527851) - (xy 118.664329 82.527848) - (xy 118.491407 82.450857) - (xy 118.491402 82.450855) - (xy 118.345601 82.419865) - (xy 118.306246 82.4115) - (xy 118.116954 82.4115) - (xy 118.116952 82.4115) - (xy 117.950183 82.446947) - (xy 117.880516 82.441631) - (xy 117.824783 82.399493) - (xy 117.800678 82.333913) - (xy 117.805236 82.298186) - (xy 117.803757 82.29787) - (xy 117.805174 82.291251) - (xy 117.809768 82.246282) - (xy 117.8155 82.190177) - (xy 117.815499 81.491824) - (xy 117.815034 81.487275) - (xy 117.805174 81.390747) - (xy 117.797679 81.368129) - (xy 117.750908 81.226984) - (xy 117.66034 81.08015) - (xy 117.53835 80.95816) - (xy 117.391516 80.867592) - (xy 117.227753 80.813326) - (xy 117.227751 80.813325) - (xy 117.126678 80.803) - (xy 116.55333 80.803) - (xy 116.553312 80.803001) - (xy 116.452247 80.813325) - (xy 116.288484 80.867592) - (xy 116.288481 80.867593) - (xy 116.141648 80.958161) - (xy 116.019661 81.080148) - (xy 115.929093 81.226981) - (xy 115.929091 81.226986) - (xy 115.919748 81.255181) - (xy 115.874826 81.390747) - (xy 115.874826 81.390748) - (xy 115.874825 81.390748) - (xy 115.8645 81.491815) - (xy 115.8645 81.782291) - (xy 115.844815 81.84933) - (xy 115.828181 81.869972) - (xy 114.320873 83.377281) - (xy 114.25955 83.410766) - (xy 114.233192 83.4136) - (xy 113.916 83.4136) - (xy 113.848961 83.393915) - (xy 113.803206 83.341111) - (xy 113.792 83.2896) - (xy 113.792 82.972407) - (xy 113.811685 82.905368) - (xy 113.828319 82.884726) - (xy 114.185407 82.527638) - (xy 114.572513 82.140531) - (xy 114.585079 82.130465) - (xy 114.584925 82.130278) - (xy 114.590933 82.125305) - (xy 114.59094 82.125302) - (xy 114.639532 82.073556) - (xy 114.640856 82.072188) - (xy 114.661911 82.051135) - (xy 114.666401 82.045345) - (xy 114.670183 82.040915) - (xy 114.703448 82.005493) - (xy 114.713674 81.98689) - (xy 114.724353 81.970633) - (xy 114.737362 81.953864) - (xy 114.756656 81.909275) - (xy 114.759212 81.904056) - (xy 114.782627 81.861468) - (xy 114.787905 81.840906) - (xy 114.794207 81.822499) - (xy 114.802635 81.803027) - (xy 114.810233 81.755053) - (xy 114.811414 81.749347) - (xy 114.8235 81.702277) - (xy 114.8235 81.681048) - (xy 114.825027 81.661649) - (xy 114.828346 81.640695) - (xy 114.823772 81.592316) - (xy 114.8235 81.586522) - (xy 114.8235 73.352541) - (xy 114.843185 73.285502) - (xy 114.895989 73.239747) - (xy 114.904149 73.236366) - (xy 114.915331 73.232196) - (xy 114.916172 73.231567) - (xy 114.977292 73.185812) - (xy 115.030546 73.145946) - (xy 115.116796 73.030731) - (xy 115.167091 72.895883) - (xy 115.1735 72.836273) - (xy 115.173499 71.894499) - (xy 115.193183 71.827461) - (xy 115.245987 71.781706) - (xy 115.297499 71.7705) - (xy 116.472192 71.7705) - ) - ) - (filled_polygon - (layer "F.Cu") - (pts - (xy 111.883 73.257559) - (xy 112.017534 73.216749) - (xy 112.191259 73.123892) - (xy 112.19632 73.120511) - (xy 112.197444 73.122193) - (xy 112.253203 73.098486) - (xy 112.322075 73.110251) - (xy 112.339186 73.121243) - (xy 112.339399 73.120926) - (xy 112.344457 73.124306) - (xy 112.344462 73.12431) - (xy 112.459524 73.185812) - (xy 112.514714 73.215312) - (xy 112.518273 73.217214) - (xy 112.706868 73.274424) - (xy 112.903 73.293741) - (xy 113.099132 73.274424) - (xy 113.287727 73.217214) - (xy 113.289848 73.21608) - (xy 113.291088 73.215821) - (xy 113.293355 73.214883) - (xy 113.293532 73.215312) - (xy 113.358246 73.201834) - (xy 113.422618 73.226169) - (xy 113.430669 73.232196) - (xy 113.44183 73.236358) - (xy 113.497764 73.278226) - (xy 113.522184 73.343689) - (xy 113.5225 73.352541) - (xy 113.5225 78.625655) - (xy 113.502815 78.692694) - (xy 113.450011 78.738449) - (xy 113.380853 78.748393) - (xy 113.317297 78.719368) - (xy 113.310819 78.713336) - (xy 113.279538 78.682055) - (xy 113.279534 78.682052) - (xy 113.132811 78.591551) - (xy 113.1328 78.591546) - (xy 112.969152 78.537319) - (xy 112.868154 78.527) - (xy 112.819 78.527) - (xy 112.819 80.476999) - (xy 112.86814 80.476999) - (xy 112.868154 80.476998) - (xy 112.969152 80.46668) - (xy 113.1328 80.412453) - (xy 113.132811 80.412448) - (xy 113.279534 80.321947) - (xy 113.279538 80.321944) - (xy 113.310819 80.290664) - (xy 113.372142 80.257179) - (xy 113.441834 80.262163) - (xy 113.497767 80.304035) - (xy 113.522184 80.369499) - (xy 113.5225 80.378345) - (xy 113.5225 81.29929) - (xy 113.502815 81.366329) - (xy 113.486181 81.386971) - (xy 113.478878 81.394274) - (xy 113.417555 81.427759) - (xy 113.375146 81.426786) - (xy 113.374793 81.429474) - (xy 113.366736 81.428413) - (xy 113.346091 81.425695) - (xy 113.254227 81.4136) - (xy 113.25422 81.4136) - (xy 113.02878 81.4136) - (xy 113.028772 81.4136) - (xy 112.941893 81.425038) - (xy 112.916264 81.428413) - (xy 112.916262 81.428413) - (xy 112.908208 81.429474) - (xy 112.907816 81.426499) - (xy 112.875184 81.426499) - (xy 112.874792 81.429474) - (xy 112.866737 81.428413) - (xy 112.866736 81.428413) - (xy 112.837771 81.424599) - (xy 112.754227 81.4136) - (xy 112.75422 81.4136) - (xy 112.52878 81.4136) - (xy 112.528772 81.4136) - (xy 112.441893 81.425038) - (xy 112.416264 81.428413) - (xy 112.416262 81.428413) - (xy 112.408208 81.429474) - (xy 112.407816 81.426499) - (xy 112.375184 81.426499) - (xy 112.374792 81.429474) - (xy 112.366737 81.428413) - (xy 112.366736 81.428413) - (xy 112.337771 81.424599) - (xy 112.254227 81.4136) - (xy 112.25422 81.4136) - (xy 112.02878 81.4136) - (xy 112.028772 81.4136) - (xy 111.941893 81.425038) - (xy 111.916264 81.428413) - (xy 111.916262 81.428413) - (xy 111.908208 81.429474) - (xy 111.907815 81.426495) - (xy 111.875186 81.426486) - (xy 111.874793 81.429474) - (xy 111.866736 81.428413) - (xy 111.846091 81.425695) - (xy 111.754227 81.4136) - (xy 111.75422 81.4136) - (xy 111.52878 81.4136) - (xy 111.528772 81.4136) - (xy 111.441893 81.425038) - (xy 111.416264 81.428413) - (xy 111.416262 81.428413) - (xy 111.408208 81.429474) - (xy 111.407816 81.426499) - (xy 111.375184 81.426499) - (xy 111.374792 81.429474) - (xy 111.366737 81.428413) - (xy 111.366736 81.428413) - (xy 111.337771 81.424599) - (xy 111.254227 81.4136) - (xy 111.25422 81.4136) - (xy 111.02878 81.4136) - (xy 111.028772 81.4136) - (xy 110.941893 81.425038) - (xy 110.916264 81.428413) - (xy 110.916262 81.428413) - (xy 110.908208 81.429474) - (xy 110.907816 81.426499) - (xy 110.875184 81.426499) - (xy 110.874792 81.429474) - (xy 110.866737 81.428413) - (xy 110.866736 81.428413) - (xy 110.837771 81.424599) - (xy 110.754227 81.4136) - (xy 110.75422 81.4136) - (xy 110.52878 81.4136) - (xy 110.528772 81.4136) - (xy 110.445562 81.424555) - (xy 110.432185 81.426316) - (xy 110.36315 81.415552) - (xy 110.310894 81.369172) - (xy 110.292 81.303378) - (xy 110.292 80.599201) - (xy 110.311685 80.532162) - (xy 110.364489 80.486407) - (xy 110.428603 80.475843) - (xy 110.444823 80.4775) - (xy 111.043176 80.477499) - (xy 111.043184 80.477498) - (xy 111.043187 80.477498) - (xy 111.09853 80.471844) - (xy 111.144253 80.467174) - (xy 111.308016 80.412908) - (xy 111.45485 80.32234) - (xy 111.569175 80.208014) - (xy 111.630494 80.174532) - (xy 111.700186 80.179516) - (xy 111.744534 80.208017) - (xy 111.858461 80.321944) - (xy 111.858465 80.321947) - (xy 112.005188 80.412448) - (xy 112.005199 80.412453) - (xy 112.168847 80.46668) - (xy 112.269851 80.476999) - (xy 112.318999 80.476998) - (xy 112.319 80.476998) - (xy 112.319 78.527) - (xy 112.318999 78.526999) - (xy 112.269861 78.527) - (xy 112.269843 78.527001) - (xy 112.168847 78.537319) - (xy 112.005199 78.591546) - (xy 112.005188 78.591551) - (xy 111.858465 78.682052) - (xy 111.744534 78.795983) - (xy 111.683211 78.829467) - (xy 111.613519 78.824483) - (xy 111.569172 78.795982) - (xy 111.454851 78.681661) - (xy 111.45485 78.68166) - (xy 111.333695 78.606931) - (xy 111.308018 78.591093) - (xy 111.308013 78.591091) - (xy 111.306569 78.590612) - (xy 111.144253 78.536826) - (xy 111.144251 78.536825) - (xy 111.043178 78.5265) - (xy 110.44483 78.5265) - (xy 110.444816 78.526501) - (xy 110.428594 78.528158) - (xy 110.359901 78.515384) - (xy 110.30902 78.4675) - (xy 110.292 78.404802) - (xy 110.292 74.5734) - (xy 110.293768 74.557388) - (xy 110.293526 74.557366) - (xy 110.29426 74.549604) - (xy 110.292031 74.478663) - (xy 110.292 74.476715) - (xy 110.292 74.446977) - (xy 110.292 74.446975) - (xy 110.291079 74.439688) - (xy 110.290622 74.433879) - (xy 110.290421 74.42747) - (xy 110.289097 74.385331) - (xy 110.283176 74.364953) - (xy 110.279231 74.345904) - (xy 110.276571 74.324842) - (xy 110.258686 74.279671) - (xy 110.256798 74.274154) - (xy 110.249589 74.249344) - (xy 110.243244 74.227501) - (xy 110.232439 74.209232) - (xy 110.223879 74.191758) - (xy 110.222851 74.189162) - (xy 110.216068 74.172029) - (xy 110.187514 74.132728) - (xy 110.18431 74.12785) - (xy 110.169293 74.102458) - (xy 110.159581 74.086035) - (xy 110.144574 74.071028) - (xy 110.131935 74.05623) - (xy 110.119461 74.03906) - (xy 110.082028 74.008094) - (xy 110.077706 74.00416) - (xy 109.779819 73.706272) - (xy 109.746334 73.644949) - (xy 109.7435 73.618591) - (xy 109.7435 73.298606) - (xy 109.763185 73.231567) - (xy 109.815989 73.185812) - (xy 109.885147 73.175868) - (xy 109.925952 73.189248) - (xy 109.949499 73.201834) - (xy 109.974714 73.215312) - (xy 109.978273 73.217214) - (xy 110.166868 73.274424) - (xy 110.363 73.293741) - (xy 110.559132 73.274424) - (xy 110.747727 73.217214) - (xy 110.921538 73.12431) - (xy 110.921544 73.124304) - (xy 110.926607 73.120923) - (xy 110.927624 73.122445) - (xy 110.984021 73.098484) - (xy 111.05289 73.110266) - (xy 111.069424 73.120889) - (xy 111.069678 73.12051) - (xy 111.074738 73.123891) - (xy 111.248465 73.216749) - (xy 111.383 73.257559) - (xy 111.383 72.537338) - (xy 111.464115 72.600472) - (xy 111.574595 72.6384) - (xy 111.662005 72.6384) - (xy 111.748216 72.624014) - (xy 111.850947 72.568419) - (xy 111.883 72.5336) - ) - ) - (filled_polygon - (layer "F.Cu") - (pts - (xy 107.934039 79.321285) - (xy 107.979794 79.374089) - (xy 107.991 79.4256) - (xy 107.991 79.50207) - (xy 107.971315 79.569109) - (xy 107.918511 79.614864) - (xy 107.849353 79.624808) - (xy 107.808612 79.610041) - (xy 107.808351 79.610601) - (xy 107.802045 79.60766) - (xy 107.801905 79.60761) - (xy 107.801807 79.60755) - (xy 107.8018 79.607546) - (xy 107.638151 79.553319) - (xy 107.595466 79.548958) - (xy 107.530774 79.522562) - (xy 107.490623 79.465381) - (xy 107.48776 79.39557) - (xy 107.523094 79.335293) - (xy 107.585407 79.303688) - (xy 107.608069 79.3016) - (xy 107.867 79.3016) - ) - ) - (filled_polygon - (layer "F.Cu") - (pts - (xy 106.082702 75.380094) - (xy 106.08918 75.386126) - (xy 108.454681 77.751627) - (xy 108.488166 77.81295) - (xy 108.491 77.839308) - (xy 108.491 77.8766) - (xy 108.471315 77.943639) - (xy 108.418511 77.989394) - (xy 108.367 78.0006) - (xy 108.353855 78.0006) - (xy 108.334455 77.999073) - (xy 108.313496 77.995753) - (xy 108.313495 77.995753) - (xy 108.289686 77.998003) - (xy 108.26513 78.000325) - (xy 108.259292 78.0006) - (xy 105.990361 78.0006) - (xy 105.923322 77.980915) - (xy 105.877567 77.928111) - (xy 105.867003 77.863997) - (xy 105.876999 77.766154) - (xy 105.877 77.766141) - (xy 105.877 77.667) - (xy 104.776 77.667) - (xy 104.708961 77.647315) - (xy 104.663206 77.594511) - (xy 104.652 77.543) - (xy 104.652 77.291) - (xy 104.671685 77.223961) - (xy 104.724489 77.178206) - (xy 104.776 77.167) - (xy 105.876998 77.167) - (xy 105.876999 77.06786) - (xy 105.876998 77.067845) - (xy 105.86668 76.966847) - (xy 105.812453 76.803199) - (xy 105.812448 76.803188) - (xy 105.721947 76.656465) - (xy 105.721944 76.656461) - (xy 105.708017 76.642534) - (xy 105.674532 76.581211) - (xy 105.679516 76.511519) - (xy 105.708017 76.467172) - (xy 105.72234 76.45285) - (xy 105.812908 76.306016) - (xy 105.867174 76.142253) - (xy 105.8775 76.041177) - (xy 105.877499 75.473806) - (xy 105.897183 75.406768) - (xy 105.949987 75.361013) - (xy 106.019146 75.351069) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 136.192539 70.770185) - (xy 136.238294 70.822989) - (xy 136.2495 70.8745) - (xy 136.2495 124.1255) - (xy 136.229815 124.192539) - (xy 136.177011 124.238294) - (xy 136.1255 124.2495) - (xy 126.410182 124.2495) - (xy 126.343143 124.229815) - (xy 126.297388 124.177011) - (xy 126.287444 124.107853) - (xy 126.316469 124.044297) - (xy 126.322501 124.037819) - (xy 128.185501 122.174818) - (xy 128.246824 122.141333) - (xy 128.273182 122.138499) - (xy 129.224002 122.138499) - (xy 129.224008 122.138499) - (xy 129.326797 122.127999) - (xy 129.493334 122.072814) - (xy 129.642656 121.980712) - (xy 129.766712 121.856656) - (xy 129.858814 121.707334) - (xy 129.913999 121.540797) - (xy 129.9245 121.438009) - (xy 129.924499 120.138) - (xy 130.934001 120.138) - (xy 130.934001 121.437986) - (xy 130.944494 121.540697) - (xy 130.999641 121.707119) - (xy 130.999643 121.707124) - (xy 131.091684 121.856345) - (xy 131.215654 121.980315) - (xy 131.364875 122.072356) - (xy 131.36488 122.072358) - (xy 131.531302 122.127505) - (xy 131.531309 122.127506) - (xy 131.634019 122.137999) - (xy 132.083999 122.137999) - (xy 132.083999 122.137998) - (xy 132.084 120.138) - (xy 132.584 120.138) - (xy 132.584 122.137999) - (xy 133.033972 122.137999) - (xy 133.033986 122.137998) - (xy 133.136697 122.127505) - (xy 133.303119 122.072358) - (xy 133.303124 122.072356) - (xy 133.452345 121.980315) - (xy 133.576315 121.856345) - (xy 133.668356 121.707124) - (xy 133.668358 121.707119) - (xy 133.723505 121.540697) - (xy 133.723506 121.54069) - (xy 133.733999 121.437986) - (xy 133.734 121.437973) - (xy 133.734 120.138) - (xy 132.584 120.138) - (xy 132.084 120.138) - (xy 130.934001 120.138) - (xy 129.924499 120.138) - (xy 129.924499 119.638) - (xy 130.934 119.638) - (xy 132.084 119.638) - (xy 132.084 117.638) - (xy 132.584 117.638) - (xy 132.584 119.638) - (xy 133.733999 119.638) - (xy 133.733999 118.338028) - (xy 133.733998 118.338013) - (xy 133.723505 118.235302) - (xy 133.668358 118.06888) - (xy 133.668356 118.068875) - (xy 133.576315 117.919654) - (xy 133.452345 117.795684) - (xy 133.303124 117.703643) - (xy 133.303119 117.703641) - (xy 133.136697 117.648494) - (xy 133.13669 117.648493) - (xy 133.033986 117.638) - (xy 132.584 117.638) - (xy 132.084 117.638) - (xy 131.634028 117.638) - (xy 131.634012 117.638001) - (xy 131.531302 117.648494) - (xy 131.36488 117.703641) - (xy 131.364875 117.703643) - (xy 131.215654 117.795684) - (xy 131.091684 117.919654) - (xy 130.999643 118.068875) - (xy 130.999641 118.06888) - (xy 130.944494 118.235302) - (xy 130.944493 118.235309) - (xy 130.934 118.338013) - (xy 130.934 119.638) - (xy 129.924499 119.638) - (xy 129.924499 118.337992) - (xy 129.923859 118.331731) - (xy 129.913999 118.235203) - (xy 129.913998 118.2352) - (xy 129.899295 118.19083) - (xy 129.858814 118.068666) - (xy 129.766712 117.919344) - (xy 129.642656 117.795288) - (xy 129.527809 117.72445) - (xy 129.493336 117.703187) - (xy 129.493331 117.703185) - (xy 129.491862 117.702698) - (xy 129.326797 117.648001) - (xy 129.326795 117.648) - (xy 129.22401 117.6375) - (xy 127.823998 117.6375) - (xy 127.823981 117.637501) - (xy 127.721203 117.648) - (xy 127.7212 117.648001) - (xy 127.554668 117.703185) - (xy 127.554663 117.703187) - (xy 127.405342 117.795289) - (xy 127.281289 117.919342) - (xy 127.189187 118.068663) - (xy 127.189185 118.068668) - (xy 127.185655 118.079322) - (xy 127.134001 118.235203) - (xy 127.134001 118.235204) - (xy 127.134 118.235204) - (xy 127.1235 118.337983) - (xy 127.123499 118.337996) - (xy 127.1235 120.355616) - (xy 127.103815 120.422655) - (xy 127.08718 120.443297) - (xy 125.579706 121.950774) - (xy 125.097899 122.432581) - (xy 125.036576 122.466066) - (xy 125.010218 122.4689) - (xy 117.712288 122.4689) - (xy 117.645249 122.449215) - (xy 117.599494 122.396411) - (xy 117.58955 122.327253) - (xy 117.618575 122.263697) - (xy 117.677353 122.225923) - (xy 117.677353 122.225922) - (xy 117.682688 122.224356) - (xy 117.745857 122.195506) - (xy 117.749883 122.193839) - (xy 117.814961 122.169567) - (xy 117.875893 122.136294) - (xy 117.879836 122.134321) - (xy 117.879847 122.134316) - (xy 117.942987 122.105482) - (xy 118.001415 122.067931) - (xy 118.00518 122.065698) - (xy 118.066115 122.032426) - (xy 118.121682 121.990827) - (xy 118.125309 121.988309) - (xy 118.183717 121.950774) - (xy 118.236188 121.905306) - (xy 118.239623 121.902539) - (xy 118.260525 121.886892) - (xy 118.295195 121.860939) - (xy 118.497539 121.658595) - (xy 118.556098 121.600036) - (xy 118.556111 121.600021) - (xy 120.666315 119.489818) - (xy 120.727639 119.456333) - (xy 120.753997 119.453499) - (xy 121.021871 119.453499) - (xy 121.021872 119.453499) - (xy 121.081483 119.447091) - (xy 121.216331 119.396796) - (xy 121.331546 119.310546) - (xy 121.417796 119.195331) - (xy 121.468091 119.060483) - (xy 121.4745 119.000873) - (xy 121.474499 118.553094) - (xy 121.485705 118.501583) - (xy 121.494858 118.481541) - (xy 121.553156 118.353888) - (xy 121.633776 118.079322) - (xy 121.635278 118.06888) - (xy 121.641074 118.028559) - (xy 121.6745 117.796079) - (xy 121.6745 117.509921) - (xy 121.633776 117.226677) - (xy 121.553156 116.952111) - (xy 121.553155 116.952109) - (xy 121.553154 116.952105) - (xy 121.485705 116.804413) - (xy 121.474499 116.752902) - (xy 121.474499 116.305129) - (xy 121.474498 116.305123) - (xy 121.474497 116.305116) - (xy 121.468091 116.245517) - (xy 121.417796 116.110669) - (xy 121.417795 116.110668) - (xy 121.417793 116.110664) - (xy 121.331547 115.995455) - (xy 121.331544 115.995452) - (xy 121.216335 115.909206) - (xy 121.216328 115.909202) - (xy 121.081482 115.858908) - (xy 121.081483 115.858908) - (xy 121.021883 115.852501) - (xy 121.021881 115.8525) - (xy 121.021873 115.8525) - (xy 121.021865 115.8525) - (xy 120.574095 115.8525) - (xy 120.522585 115.841294) - (xy 120.374889 115.773844) - (xy 120.246241 115.736069) - (xy 120.100328 115.693225) - (xy 120.100318 115.693223) - (xy 119.959751 115.673013) - (xy 119.817079 115.6525) - (xy 119.530921 115.6525) - (xy 119.504961 115.656232) - (xy 119.247682 115.693222) - (xy 119.247672 115.693225) - (xy 118.973109 115.773844) - (xy 118.825411 115.841295) - (xy 118.773901 115.8525) - (xy 118.326129 115.8525) - (xy 118.326123 115.852501) - (xy 118.266516 115.858908) - (xy 118.131671 115.909202) - (xy 118.131664 115.909206) - (xy 118.016455 115.995452) - (xy 118.016452 115.995455) - (xy 117.930206 116.110664) - (xy 117.930202 116.110671) - (xy 117.879908 116.245517) - (xy 117.873501 116.305116) - (xy 117.873501 116.305123) - (xy 117.8735 116.305135) - (xy 117.8735 116.573003) - (xy 117.853815 116.640042) - (xy 117.837181 116.660684) - (xy 116.189485 118.308381) - (xy 116.128162 118.341866) - (xy 116.101804 118.3447) - (xy 106.848796 118.3447) - (xy 106.781757 118.325015) - (xy 106.761115 118.308381) - (xy 105.857915 117.405181) - (xy 105.82443 117.343858) - (xy 105.829414 117.274166) - (xy 105.871286 117.218233) - (xy 105.93675 117.193816) - (xy 105.945596 117.1935) - (xy 106.529007 117.1935) - (xy 106.529012 117.1935) - (xy 106.6318 117.182999) - (xy 106.798336 117.127815) - (xy 106.947657 117.035712) - (xy 107.071712 116.911657) - (xy 107.163815 116.762336) - (xy 107.218999 116.5958) - (xy 107.2295 116.493012) - (xy 107.2295 116.323) - (xy 108.229001 116.323) - (xy 108.229001 116.472986) - (xy 108.239494 116.575697) - (xy 108.294641 116.742119) - (xy 108.294643 116.742124) - (xy 108.386684 116.891345) - (xy 108.510654 117.015315) - (xy 108.659875 117.107356) - (xy 108.65988 117.107358) - (xy 108.826302 117.162505) - (xy 108.826309 117.162506) - (xy 108.929019 117.172999) - (xy 109.578999 117.172999) - (xy 109.579 117.172998) - (xy 109.579 116.323) - (xy 110.079 116.323) - (xy 110.079 117.172999) - (xy 110.728972 117.172999) - (xy 110.728986 117.172998) - (xy 110.831697 117.162505) - (xy 110.998119 117.107358) - (xy 110.998124 117.107356) - (xy 111.147345 117.015315) - (xy 111.271315 116.891345) - (xy 111.363356 116.742124) - (xy 111.363358 116.742119) - (xy 111.418505 116.575697) - (xy 111.418506 116.57569) - (xy 111.428999 116.472986) - (xy 111.429 116.472973) - (xy 111.429 116.323) - (xy 110.079 116.323) - (xy 109.579 116.323) - (xy 108.229001 116.323) - (xy 107.2295 116.323) - (xy 107.2295 114.5675) - (xy 107.249185 114.500461) - (xy 107.301989 114.454706) - (xy 107.3535 114.4435) - (xy 108.213362 114.4435) - (xy 108.280401 114.463185) - (xy 108.318899 114.502401) - (xy 108.386288 114.611656) - (xy 108.510344 114.735712) - (xy 108.617524 114.801821) - (xy 108.659569 114.827754) - (xy 108.706294 114.879702) - (xy 108.717517 114.948664) - (xy 108.689674 115.012747) - (xy 108.65957 115.038831) - (xy 108.510659 115.13068) - (xy 108.510655 115.130683) - (xy 108.386684 115.254654) - (xy 108.294643 115.403875) - (xy 108.294641 115.40388) - (xy 108.239494 115.570302) - (xy 108.239493 115.570309) - (xy 108.229 115.673013) - (xy 108.229 115.823) - (xy 111.428999 115.823) - (xy 111.428999 115.673028) - (xy 111.428998 115.673013) - (xy 111.418505 115.570302) - (xy 111.363358 115.40388) - (xy 111.363356 115.403875) - (xy 111.271315 115.254654) - (xy 111.147345 115.130684) - (xy 111.146885 115.1304) - (xy 113.096401 115.1304) - (xy 113.096401 115.179554) - (xy 113.106719 115.280552) - (xy 113.160946 115.4442) - (xy 113.160951 115.444211) - (xy 113.251452 115.590934) - (xy 113.251455 115.590938) - (xy 113.373361 115.712844) - (xy 113.373365 115.712847) - (xy 113.520088 115.803348) - (xy 113.520099 115.803353) - (xy 113.683747 115.85758) - (xy 113.784752 115.867899) - (xy 113.8214 115.867899) - (xy 113.8214 115.1304) - (xy 114.3214 115.1304) - (xy 114.3214 115.867899) - (xy 114.35804 115.867899) - (xy 114.358054 115.867898) - (xy 114.459052 115.85758) - (xy 114.6227 115.803353) - (xy 114.622711 115.803348) - (xy 114.769434 115.712847) - (xy 114.769438 115.712844) - (xy 114.891344 115.590938) - (xy 114.891347 115.590934) - (xy 114.981848 115.444211) - (xy 114.981853 115.4442) - (xy 115.03608 115.280552) - (xy 115.046399 115.179554) - (xy 115.0464 115.179541) - (xy 115.0464 115.1304) - (xy 114.3214 115.1304) - (xy 113.8214 115.1304) - (xy 113.096401 115.1304) - (xy 111.146885 115.1304) - (xy 110.998429 115.038832) - (xy 110.951705 114.986884) - (xy 110.940482 114.917921) - (xy 110.968326 114.853839) - (xy 110.998426 114.827756) - (xy 111.147656 114.735712) - (xy 111.271712 114.611656) - (xy 111.363814 114.462334) - (xy 111.418999 114.295797) - (xy 111.4295 114.193009) - (xy 111.429499 113.392992) - (xy 111.418999 113.290203) - (xy 111.363814 113.123666) - (xy 111.271712 112.974344) - (xy 111.147656 112.850288) - (xy 111.04882 112.789326) - (xy 110.998905 112.758538) - (xy 110.952181 112.70659) - (xy 110.940958 112.637627) - (xy 110.968802 112.573545) - (xy 110.998901 112.547464) - (xy 111.147656 112.455712) - (xy 111.271712 112.331656) - (xy 111.300306 112.285297) - (xy 111.35225 112.238575) - (xy 111.421212 112.227351) - (xy 111.485295 112.255193) - (xy 111.493524 112.262714) - (xy 111.55715 112.32634) - (xy 111.703984 112.416908) - (xy 111.867747 112.471174) - (xy 111.968823 112.4815) - (xy 112.567176 112.481499) - (xy 112.567184 112.481498) - (xy 112.567187 112.481498) - (xy 112.62253 112.475844) - (xy 112.668253 112.471174) - (xy 112.832016 112.416908) - (xy 112.97885 112.32634) - (xy 112.978862 112.326327) - (xy 112.980489 112.325042) - (xy 112.981832 112.324499) - (xy 112.984997 112.322548) - (xy 112.98533 112.323088) - (xy 113.045281 112.298894) - (xy 113.113925 112.311926) - (xy 113.164626 112.36) - (xy 113.181288 112.427854) - (xy 113.162957 112.487386) - (xy 113.160496 112.491375) - (xy 113.160491 112.491384) - (xy 113.160492 112.491384) - (xy 113.106226 112.655147) - (xy 113.106226 112.655148) - (xy 113.106225 112.655148) - (xy 113.0959 112.756215) - (xy 113.0959 113.354569) - (xy 113.095901 113.354587) - (xy 113.106225 113.455652) - (xy 113.160492 113.619415) - (xy 113.160493 113.619418) - (xy 113.194794 113.675029) - (xy 113.238956 113.746627) - (xy 113.251061 113.766251) - (xy 113.365382 113.880572) - (xy 113.398867 113.941895) - (xy 113.393883 114.011587) - (xy 113.365383 114.055934) - (xy 113.251452 114.169865) - (xy 113.160951 114.316588) - (xy 113.160946 114.316599) - (xy 113.106719 114.480247) - (xy 113.0964 114.581245) - (xy 113.0964 114.6304) - (xy 115.046399 114.6304) - (xy 115.046399 114.58126) - (xy 115.046398 114.581245) - (xy 115.03608 114.480247) - (xy 114.981853 114.316599) - (xy 114.981848 114.316588) - (xy 114.891347 114.169865) - (xy 114.891344 114.169861) - (xy 114.777417 114.055934) - (xy 114.743932 113.994611) - (xy 114.748916 113.924919) - (xy 114.777413 113.880576) - (xy 114.89174 113.76625) - (xy 114.982308 113.619416) - (xy 115.036574 113.455653) - (xy 115.0469 113.354577) - (xy 115.046899 112.756224) - (xy 115.036574 112.655147) - (xy 114.982308 112.491384) - (xy 114.982304 112.491378) - (xy 114.982303 112.491375) - (xy 114.902735 112.362376) - (xy 114.884294 112.294984) - (xy 114.905216 112.22832) - (xy 114.920596 112.209594) - (xy 114.920893 112.209296) - (xy 114.92584 112.20435) - (xy 115.016408 112.057516) - (xy 115.070674 111.893753) - (xy 115.081 111.792677) - (xy 115.080999 111.219324) - (xy 115.070674 111.118247) - (xy 115.016408 110.954484) - (xy 114.92584 110.80765) - (xy 114.80385 110.68566) - (xy 114.803849 110.685659) - (xy 114.730002 110.640109) - (xy 114.683278 110.58816) - (xy 114.6711 110.534571) - (xy 114.6711 109.636921) - (xy 114.690785 109.569882) - (xy 114.702951 109.553948) - (xy 114.753133 109.498216) - (xy 114.847779 109.334284) - (xy 114.906274 109.154256) - (xy 114.92606 108.966) - (xy 114.906274 108.777744) - (xy 114.847779 108.597716) - (xy 114.753133 108.433784) - (xy 114.626471 108.293112) - (xy 114.62647 108.293111) - (xy 114.473334 108.181851) - (xy 114.473329 108.181848) - (xy 114.300407 108.104857) - (xy 114.300402 108.104855) - (xy 114.154601 108.073865) - (xy 114.115246 108.0655) - (xy 113.925954 108.0655) - (xy 113.893497 108.072398) - (xy 113.740797 108.104855) - (xy 113.740792 108.104857) - (xy 113.56787 108.181848) - (xy 113.567864 108.181852) - (xy 113.562429 108.185801) - (xy 113.496621 108.209277) - (xy 113.428568 108.193448) - (xy 113.379876 108.14334) - (xy 113.366004 108.074861) - (xy 113.369344 108.055038) - (xy 113.397505 107.943833) - (xy 113.397507 107.943824) - (xy 113.397508 107.943821) - (xy 113.397509 107.943812) - (xy 113.418043 107.696005) - (xy 116.350357 107.696005) - (xy 116.37089 107.943812) - (xy 116.370892 107.943824) - (xy 116.431936 108.184881) - (xy 116.531826 108.412606) - (xy 116.667833 108.620782) - (xy 116.681229 108.635334) - (xy 116.836256 108.803738) - (xy 117.032491 108.956474) - (xy 117.25119 109.074828) - (xy 117.420074 109.132806) - (xy 117.482555 109.154256) - (xy 117.486386 109.155571) - (xy 117.731665 109.1965) - (xy 117.980335 109.1965) - (xy 118.225614 109.155571) - (xy 118.46081 109.074828) - (xy 118.679509 108.956474) - (xy 118.875744 108.803738) - (xy 119.044164 108.620785) - (xy 119.180173 108.412607) - (xy 119.280063 108.184881) - (xy 119.341108 107.943821) - (xy 119.341109 107.943812) - (xy 119.361643 107.696005) - (xy 119.361643 107.695994) - (xy 119.341109 107.448187) - (xy 119.341107 107.448175) - (xy 119.280063 107.207118) - (xy 119.180173 106.979393) - (xy 119.044166 106.771217) - (xy 118.960927 106.680796) - (xy 118.875744 106.588262) - (xy 118.679509 106.435526) - (xy 118.679507 106.435525) - (xy 118.679506 106.435524) - (xy 118.460811 106.317172) - (xy 118.460802 106.317169) - (xy 118.225616 106.236429) - (xy 117.980335 106.1955) - (xy 117.731665 106.1955) - (xy 117.486383 106.236429) - (xy 117.251197 106.317169) - (xy 117.251188 106.317172) - (xy 117.032493 106.435524) - (xy 116.836257 106.588261) - (xy 116.667833 106.771217) - (xy 116.531826 106.979393) - (xy 116.431936 107.207118) - (xy 116.370892 107.448175) - (xy 116.37089 107.448187) - (xy 116.350357 107.695994) - (xy 116.350357 107.696005) - (xy 113.418043 107.696005) - (xy 113.418043 107.695994) - (xy 113.397509 107.448187) - (xy 113.397507 107.448175) - (xy 113.336463 107.207118) - (xy 113.236573 106.979393) - (xy 113.100566 106.771217) - (xy 113.017327 106.680796) - (xy 112.932144 106.588262) - (xy 112.735909 106.435526) - (xy 112.735907 106.435525) - (xy 112.735906 106.435524) - (xy 112.517211 106.317172) - (xy 112.517202 106.317169) - (xy 112.282016 106.236429) - (xy 112.036735 106.1955) - (xy 111.788065 106.1955) - (xy 111.542783 106.236429) - (xy 111.307597 106.317169) - (xy 111.307588 106.317172) - (xy 111.088893 106.435524) - (xy 110.892657 106.588261) - (xy 110.724233 106.771217) - (xy 110.588226 106.979393) - (xy 110.488336 107.207118) - (xy 110.427292 107.448175) - (xy 110.42729 107.448187) - (xy 110.406757 107.695994) - (xy 110.406757 107.696005) - (xy 110.42729 107.943812) - (xy 110.427292 107.943824) - (xy 110.488336 108.184881) - (xy 110.588226 108.412606) - (xy 110.724233 108.620782) - (xy 110.737629 108.635334) - (xy 110.892656 108.803738) - (xy 111.088891 108.956474) - (xy 111.30759 109.074828) - (xy 111.476474 109.132806) - (xy 111.538955 109.154256) - (xy 111.542786 109.155571) - (xy 111.788065 109.1965) - (xy 112.036735 109.1965) - (xy 112.282014 109.155571) - (xy 112.51721 109.074828) - (xy 112.735909 108.956474) - (xy 112.920078 108.813129) - (xy 112.985071 108.787487) - (xy 113.05361 108.801053) - (xy 113.103935 108.849522) - (xy 113.120067 108.917504) - (xy 113.11956 108.923943) - (xy 113.11514 108.966) - (xy 113.134926 109.154256) - (xy 113.134927 109.154259) - (xy 113.193418 109.334277) - (xy 113.193421 109.334284) - (xy 113.288066 109.498215) - (xy 113.301208 109.51281) - (xy 113.332891 109.547998) - (xy 113.338249 109.553948) - (xy 113.36848 109.61694) - (xy 113.3701 109.636921) - (xy 113.3701 110.646348) - (xy 113.350415 110.713387) - (xy 113.333781 110.734029) - (xy 113.268181 110.799629) - (xy 113.206858 110.833114) - (xy 113.137166 110.82813) - (xy 113.092819 110.799629) - (xy 112.978851 110.685661) - (xy 112.97885 110.68566) - (xy 112.867658 110.617076) - (xy 112.832018 110.595093) - (xy 112.832013 110.595091) - (xy 112.830569 110.594612) - (xy 112.668253 110.540826) - (xy 112.668251 110.540825) - (xy 112.567178 110.5305) - (xy 111.96883 110.5305) - (xy 111.968812 110.530501) - (xy 111.867747 110.540825) - (xy 111.703984 110.595092) - (xy 111.703981 110.595093) - (xy 111.557151 110.685659) - (xy 111.488183 110.754627) - (xy 111.426859 110.788111) - (xy 111.357168 110.783126) - (xy 111.301234 110.741255) - (xy 111.294972 110.732054) - (xy 111.271712 110.694344) - (xy 111.147656 110.570288) - (xy 111.017259 110.489859) - (xy 110.998336 110.478187) - (xy 110.998331 110.478185) - (xy 110.996862 110.477698) - (xy 110.831797 110.423001) - (xy 110.831795 110.423) - (xy 110.72901 110.4125) - (xy 108.928998 110.4125) - (xy 108.928981 110.412501) - (xy 108.826203 110.423) - (xy 108.8262 110.423001) - (xy 108.659668 110.478185) - (xy 108.659663 110.478187) - (xy 108.510342 110.570289) - (xy 108.386289 110.694342) - (xy 108.294187 110.843663) - (xy 108.294185 110.843668) - (xy 108.266349 110.92767) - (xy 108.239001 111.010203) - (xy 108.239001 111.010204) - (xy 108.239 111.010204) - (xy 108.2285 111.112983) - (xy 108.2285 111.913001) - (xy 108.228501 111.913019) - (xy 108.239 112.015796) - (xy 108.239001 112.015799) - (xy 108.294185 112.182331) - (xy 108.294187 112.182336) - (xy 108.32255 112.22832) - (xy 108.386288 112.331656) - (xy 108.510344 112.455712) - (xy 108.659092 112.54746) - (xy 108.659094 112.547461) - (xy 108.705818 112.599409) - (xy 108.717041 112.668372) - (xy 108.689197 112.732454) - (xy 108.659094 112.758539) - (xy 108.510342 112.850289) - (xy 108.386289 112.974342) - (xy 108.386287 112.974344) - (xy 108.386288 112.974344) - (xy 108.327281 113.070011) - (xy 108.318901 113.083597) - (xy 108.266953 113.130321) - (xy 108.213362 113.1425) - (xy 107.3535 113.1425) - (xy 107.286461 113.122815) - (xy 107.240706 113.070011) - (xy 107.2295 113.0185) - (xy 107.2295 111.092993) - (xy 107.229499 111.09298) - (xy 107.22273 111.026725) - (xy 107.218999 110.9902) - (xy 107.163815 110.823664) - (xy 107.163811 110.823658) - (xy 107.16381 110.823655) - (xy 107.071714 110.674346) - (xy 107.071711 110.674342) - (xy 106.947657 110.550288) - (xy 106.947653 110.550285) - (xy 106.798344 110.458189) - (xy 106.798338 110.458186) - (xy 106.798336 110.458185) - (xy 106.692154 110.423) - (xy 106.631801 110.403001) - (xy 106.529019 110.3925) - (xy 106.529012 110.3925) - (xy 106.3815 110.3925) - (xy 106.314461 110.372815) - (xy 106.268706 110.320011) - (xy 106.2575 110.2685) - (xy 106.2575 109.7025) - (xy 106.277185 109.635461) - (xy 106.329989 109.589706) - (xy 106.3815 109.5785) - (xy 106.582007 109.5785) - (xy 106.582012 109.5785) - (xy 106.6848 109.567999) - (xy 106.851336 109.512815) - (xy 107.000657 109.420712) - (xy 107.124712 109.296657) - (xy 107.216815 109.147336) - (xy 107.271999 108.9808) - (xy 107.2825 108.878012) - (xy 107.2825 103.477988) - (xy 107.271999 103.3752) - (xy 107.218928 103.215043) - (xy 107.216527 103.145219) - (xy 107.252259 103.085177) - (xy 107.314779 103.053984) - (xy 107.384238 103.061544) - (xy 107.424316 103.088362) - (xy 107.837181 103.501227) - (xy 107.870666 103.56255) - (xy 107.8735 103.588907) - (xy 107.8735 103.766) - (xy 107.873501 103.766019) - (xy 107.884 103.868796) - (xy 107.884001 103.868799) - (xy 107.920126 103.977815) - (xy 107.939186 104.035334) - (xy 108.031288 104.184656) - (xy 108.155344 104.308712) - (xy 108.304666 104.400814) - (xy 108.471203 104.455999) - (xy 108.573991 104.4665) - (xy 109.0805 104.466499) - (xy 109.147539 104.486183) - (xy 109.193294 104.538987) - (xy 109.2045 104.590499) - (xy 109.2045 105.043878) - (xy 109.184815 105.110917) - (xy 109.17265 105.12685) - (xy 109.122466 105.182585) - (xy 109.027821 105.346515) - (xy 109.027818 105.346522) - (xy 108.988154 105.468597) - (xy 108.969326 105.526544) - (xy 108.94954 105.7148) - (xy 108.969326 105.903056) - (xy 108.969327 105.903059) - (xy 109.027818 106.083077) - (xy 109.027821 106.083084) - (xy 109.122467 106.247016) - (xy 109.196049 106.328737) - (xy 109.249129 106.387688) - (xy 109.402265 106.498948) - (xy 109.40227 106.498951) - (xy 109.575192 106.575942) - (xy 109.575197 106.575944) - (xy 109.760354 106.6153) - (xy 109.760355 106.6153) - (xy 109.949644 106.6153) - (xy 109.949646 106.6153) - (xy 110.134803 106.575944) - (xy 110.30773 106.498951) - (xy 110.460871 106.387688) - (xy 110.587533 106.247016) - (xy 110.682179 106.083084) - (xy 110.740674 105.903056) - (xy 110.76046 105.7148) - (xy 110.740674 105.526544) - (xy 110.682179 105.346516) - (xy 110.587533 105.182584) - (xy 110.537348 105.126848) - (xy 110.507119 105.063858) - (xy 110.505499 105.043888) - (xy 110.505499 104.536027) - (xy 110.525184 104.468989) - (xy 110.577988 104.423234) - (xy 110.590486 104.418325) - (xy 110.643334 104.400814) - (xy 110.792656 104.308712) - (xy 110.916712 104.184656) - (xy 111.008814 104.035334) - (xy 111.063999 103.868797) - (xy 111.0745 103.766009) - (xy 111.074499 102.965992) - (xy 111.063999 102.863203) - (xy 111.008814 102.696666) - (xy 110.916712 102.547344) - (xy 110.792656 102.423288) - (xy 110.643905 102.331538) - (xy 110.597181 102.27959) - (xy 110.585958 102.210627) - (xy 110.613802 102.146545) - (xy 110.643901 102.120464) - (xy 110.792656 102.028712) - (xy 110.916712 101.904656) - (xy 110.984099 101.795402) - (xy 111.036047 101.748679) - (xy 111.089638 101.7365) - (xy 111.9495 101.7365) - (xy 112.016539 101.756185) - (xy 112.062294 101.808989) - (xy 112.0735 101.8605) - (xy 112.0735 103.786019) - (xy 112.084001 103.888801) - (xy 112.139184 104.055333) - (xy 112.139189 104.055344) - (xy 112.231285 104.204653) - (xy 112.231288 104.204657) - (xy 112.355342 104.328711) - (xy 112.355346 104.328714) - (xy 112.504655 104.42081) - (xy 112.504658 104.420811) - (xy 112.504664 104.420815) - (xy 112.6712 104.475999) - (xy 112.773988 104.4865) - (xy 112.773991 104.4865) - (xy 112.773993 104.4865) - (xy 118.774007 104.4865) - (xy 118.774012 104.4865) - (xy 118.8768 104.475999) - (xy 119.043336 104.420815) - (xy 119.192657 104.328712) - (xy 119.316712 104.204657) - (xy 119.322802 104.194782) - (xy 119.374748 104.148059) - (xy 119.44371 104.136835) - (xy 119.507793 104.164677) - (xy 119.53388 104.194783) - (xy 119.544287 104.211655) - (xy 119.544288 104.211657) - (xy 119.668342 104.335711) - (xy 119.668346 104.335714) - (xy 119.817655 104.42781) - (xy 119.817658 104.427811) - (xy 119.817664 104.427815) - (xy 119.9842 104.482999) - (xy 120.086988 104.4935) - (xy 120.086991 104.4935) - (xy 122.5495 104.4935) - (xy 122.616539 104.513185) - (xy 122.662294 104.565989) - (xy 122.6735 104.6175) - (xy 122.673499 117.724448) - (xy 122.6735 117.72445) - (xy 122.688804 117.938433) - (xy 122.749628 118.218037) - (xy 122.74963 118.218043) - (xy 122.749631 118.218046) - (xy 122.84791 118.481541) - (xy 122.849635 118.486166) - (xy 122.98677 118.737309) - (xy 122.986775 118.737317) - (xy 123.158254 118.966387) - (xy 123.15827 118.966405) - (xy 123.360594 119.168729) - (xy 123.360612 119.168745) - (xy 123.589682 119.340224) - (xy 123.58969 119.340229) - (xy 123.840833 119.477364) - (xy 123.840832 119.477364) - (xy 123.840836 119.477365) - (xy 123.840839 119.477367) - (xy 124.108954 119.577369) - (xy 124.10896 119.57737) - (xy 124.108962 119.577371) - (xy 124.388566 119.638195) - (xy 124.388568 119.638195) - (xy 124.388572 119.638196) - (xy 124.64222 119.656337) - (xy 124.673999 119.65861) - (xy 124.674 119.65861) - (xy 124.674001 119.65861) - (xy 124.702595 119.656564) - (xy 124.959428 119.638196) - (xy 125.069208 119.614315) - (xy 125.239037 119.577371) - (xy 125.239037 119.57737) - (xy 125.239046 119.577369) - (xy 125.507161 119.477367) - (xy 125.758315 119.340226) - (xy 125.987395 119.168739) - (xy 126.189739 118.966395) - (xy 126.361226 118.737315) - (xy 126.498367 118.486161) - (xy 126.598369 118.218046) - (xy 126.604289 118.190833) - (xy 126.659195 117.938433) - (xy 126.659195 117.938432) - (xy 126.659196 117.938428) - (xy 126.6745 117.724448) - (xy 126.6745 116.0125) - (xy 126.694185 115.945461) - (xy 126.746989 115.899706) - (xy 126.7985 115.8885) - (xy 126.999501 115.8885) - (xy 127.06654 115.908185) - (xy 127.112295 115.960989) - (xy 127.123501 116.0125) - (xy 127.123501 116.438018) - (xy 127.134 116.540796) - (xy 127.134001 116.540799) - (xy 127.189185 116.707331) - (xy 127.189187 116.707336) - (xy 127.215691 116.750306) - (xy 127.281288 116.856656) - (xy 127.405344 116.980712) - (xy 127.554666 117.072814) - (xy 127.721203 117.127999) - (xy 127.823991 117.1385) - (xy 129.224008 117.138499) - (xy 129.326797 117.127999) - (xy 129.493334 117.072814) - (xy 129.642656 116.980712) - (xy 129.766712 116.856656) - (xy 129.858814 116.707334) - (xy 129.913999 116.540797) - (xy 129.9245 116.438009) - (xy 129.9245 116.0125) - (xy 129.944185 115.945461) - (xy 129.996989 115.899706) - (xy 130.0485 115.8885) - (xy 130.809501 115.8885) - (xy 130.87654 115.908185) - (xy 130.922295 115.960989) - (xy 130.933501 116.0125) - (xy 130.933501 116.438018) - (xy 130.944 116.540796) - (xy 130.944001 116.540799) - (xy 130.999185 116.707331) - (xy 130.999187 116.707336) - (xy 131.025691 116.750306) - (xy 131.091288 116.856656) - (xy 131.215344 116.980712) - (xy 131.364666 117.072814) - (xy 131.531203 117.127999) - (xy 131.633991 117.1385) - (xy 133.034008 117.138499) - (xy 133.136797 117.127999) - (xy 133.303334 117.072814) - (xy 133.452656 116.980712) - (xy 133.576712 116.856656) - (xy 133.668814 116.707334) - (xy 133.723999 116.540797) - (xy 133.7345 116.438009) - (xy 133.734499 113.337992) - (xy 133.733722 113.33039) - (xy 133.723999 113.235203) - (xy 133.723998 113.2352) - (xy 133.704258 113.17563) - (xy 133.668814 113.068666) - (xy 133.576712 112.919344) - (xy 133.452656 112.795288) - (xy 133.303334 112.703186) - (xy 133.136797 112.648001) - (xy 133.136795 112.648) - (xy 133.03401 112.6375) - (xy 131.633998 112.6375) - (xy 131.633981 112.637501) - (xy 131.531203 112.648) - (xy 131.5312 112.648001) - (xy 131.364668 112.703185) - (xy 131.364663 112.703187) - (xy 131.215342 112.795289) - (xy 131.091289 112.919342) - (xy 130.999187 113.068663) - (xy 130.999185 113.068668) - (xy 130.97472 113.1425) - (xy 130.944001 113.235203) - (xy 130.944001 113.235204) - (xy 130.944 113.235204) - (xy 130.9335 113.337983) - (xy 130.9335 113.7635) - (xy 130.913815 113.830539) - (xy 130.861011 113.876294) - (xy 130.8095 113.8875) - (xy 130.048499 113.8875) - (xy 129.98146 113.867815) - (xy 129.935705 113.815011) - (xy 129.924499 113.7635) - (xy 129.924499 113.337998) - (xy 129.924498 113.337981) - (xy 129.913999 113.235203) - (xy 129.913998 113.2352) - (xy 129.894258 113.17563) - (xy 129.858814 113.068666) - (xy 129.766712 112.919344) - (xy 129.642656 112.795288) - (xy 129.493334 112.703186) - (xy 129.326797 112.648001) - (xy 129.326795 112.648) - (xy 129.22401 112.6375) - (xy 127.823998 112.6375) - (xy 127.823981 112.637501) - (xy 127.721203 112.648) - (xy 127.7212 112.648001) - (xy 127.554668 112.703185) - (xy 127.554663 112.703187) - (xy 127.405342 112.795289) - (xy 127.281289 112.919342) - (xy 127.189187 113.068663) - (xy 127.189185 113.068668) - (xy 127.16472 113.1425) - (xy 127.134001 113.235203) - (xy 127.134001 113.235204) - (xy 127.134 113.235204) - (xy 127.1235 113.337983) - (xy 127.1235 113.7635) - (xy 127.103815 113.830539) - (xy 127.051011 113.876294) - (xy 126.9995 113.8875) - (xy 126.7985 113.8875) - (xy 126.731461 113.867815) - (xy 126.685706 113.815011) - (xy 126.6745 113.7635) - (xy 126.6745 109.913401) - (xy 131.758746 109.913401) - (xy 131.768745 110.123327) - (xy 131.818296 110.327578) - (xy 131.818298 110.327582) - (xy 131.905598 110.518743) - (xy 131.905601 110.518748) - (xy 131.905602 110.51875) - (xy 131.905604 110.518753) - (xy 132.027514 110.689952) - (xy 132.027515 110.689953) - (xy 132.02752 110.689959) - (xy 132.17962 110.834985) - (xy 132.274578 110.896011) - (xy 132.356428 110.948613) - (xy 132.551543 111.026725) - (xy 132.654729 111.046612) - (xy 132.757914 111.0665) - (xy 132.757915 111.0665) - (xy 133.465419 111.0665) - (xy 133.465425 111.0665) - (xy 133.622218 111.051528) - (xy 133.823875 110.992316) - (xy 134.010682 110.896011) - (xy 134.175886 110.766092) - (xy 134.313519 110.607256) - (xy 134.315527 110.603779) - (xy 134.418601 110.425249) - (xy 134.4186 110.425249) - (xy 134.418604 110.425244) - (xy 134.487344 110.226633) - (xy 134.517254 110.018602) - (xy 134.507254 109.80867) - (xy 134.457704 109.604424) - (xy 134.454855 109.598185) - (xy 134.370401 109.413256) - (xy 134.370398 109.413251) - (xy 134.370397 109.41325) - (xy 134.370396 109.413247) - (xy 134.248486 109.242048) - (xy 134.202248 109.19796) - (xy 134.145917 109.144249) - (xy 134.110982 109.08374) - (xy 134.114307 109.01395) - (xy 134.154835 108.957036) - (xy 134.166384 108.948971) - (xy 134.231656 108.908712) - (xy 134.355712 108.784656) - (xy 134.447814 108.635334) - (xy 134.502999 108.468797) - (xy 134.5135 108.366009) - (xy 134.513499 107.565992) - (xy 134.508319 107.515287) - (xy 134.502999 107.463203) - (xy 134.502998 107.4632) - (xy 134.498023 107.448187) - (xy 134.447814 107.296666) - (xy 134.355712 107.147344) - (xy 134.231656 107.023288) - (xy 134.11689 106.9525) - (xy 134.082336 106.931187) - (xy 134.082331 106.931185) - (xy 134.080862 106.930698) - (xy 133.915797 106.876001) - (xy 133.915795 106.876) - (xy 133.81301 106.8655) - (xy 132.462998 106.8655) - (xy 132.462981 106.865501) - (xy 132.360203 106.876) - (xy 132.3602 106.876001) - (xy 132.193668 106.931185) - (xy 132.193663 106.931187) - (xy 132.044342 107.023289) - (xy 131.920289 107.147342) - (xy 131.828187 107.296663) - (xy 131.828185 107.296668) - (xy 131.808027 107.357501) - (xy 131.773001 107.463203) - (xy 131.773001 107.463204) - (xy 131.773 107.463204) - (xy 131.7625 107.565983) - (xy 131.7625 108.366001) - (xy 131.762501 108.366019) - (xy 131.773 108.468796) - (xy 131.773001 108.468799) - (xy 131.823364 108.620782) - (xy 131.828186 108.635334) - (xy 131.920288 108.784656) - (xy 132.044344 108.908712) - (xy 132.106276 108.946912) - (xy 132.107739 108.947814) - (xy 132.154464 108.999762) - (xy 132.165687 109.068724) - (xy 132.137844 109.132806) - (xy 132.119296 109.150822) - (xy 132.100118 109.165903) - (xy 132.100112 109.165909) - (xy 131.962478 109.324746) - (xy 131.857398 109.50675) - (xy 131.788656 109.705365) - (xy 131.788656 109.705367) - (xy 131.773804 109.80867) - (xy 131.758746 109.913401) - (xy 126.6745 109.913401) - (xy 126.6745 104.174211) - (xy 126.692961 104.109113) - (xy 126.721815 104.062336) - (xy 126.776999 103.8958) - (xy 126.7875 103.793012) - (xy 126.7875 103.623) - (xy 127.787001 103.623) - (xy 127.787001 103.772986) - (xy 127.797494 103.875697) - (xy 127.852641 104.042119) - (xy 127.852643 104.042124) - (xy 127.944684 104.191345) - (xy 128.068654 104.315315) - (xy 128.217875 104.407356) - (xy 128.21788 104.407358) - (xy 128.384302 104.462505) - (xy 128.384309 104.462506) - (xy 128.487019 104.472999) - (xy 129.136999 104.472999) - (xy 129.137 103.623) - (xy 129.637 103.623) - (xy 129.637 104.472999) - (xy 130.286972 104.472999) - (xy 130.286986 104.472998) - (xy 130.389697 104.462505) - (xy 130.556119 104.407358) - (xy 130.556124 104.407356) - (xy 130.705345 104.315315) - (xy 130.829315 104.191345) - (xy 130.921356 104.042124) - (xy 130.921358 104.042119) - (xy 130.976505 103.875697) - (xy 130.976506 103.87569) - (xy 130.986999 103.772986) - (xy 130.987 103.772973) - (xy 130.987 103.623) - (xy 129.637 103.623) - (xy 129.137 103.623) - (xy 127.787001 103.623) - (xy 126.7875 103.623) - (xy 126.7875 101.8675) - (xy 126.807185 101.800461) - (xy 126.859989 101.754706) - (xy 126.9115 101.7435) - (xy 127.771362 101.7435) - (xy 127.838401 101.763185) - (xy 127.876899 101.802401) - (xy 127.944288 101.911656) - (xy 128.068344 102.035712) - (xy 128.164783 102.095196) - (xy 128.217569 102.127754) - (xy 128.264294 102.179702) - (xy 128.275517 102.248664) - (xy 128.247674 102.312747) - (xy 128.21757 102.338831) - (xy 128.068659 102.43068) - (xy 128.068655 102.430683) - (xy 127.944684 102.554654) - (xy 127.852643 102.703875) - (xy 127.852641 102.70388) - (xy 127.797494 102.870302) - (xy 127.797493 102.870309) - (xy 127.787 102.973013) - (xy 127.787 103.123) - (xy 130.986999 103.123) - (xy 130.986999 102.973028) - (xy 130.986998 102.973013) - (xy 130.976505 102.870302) - (xy 130.921358 102.70388) - (xy 130.921356 102.703875) - (xy 130.829315 102.554654) - (xy 130.705345 102.430684) - (xy 130.556429 102.338832) - (xy 130.509705 102.286884) - (xy 130.498482 102.217921) - (xy 130.526326 102.153839) - (xy 130.556426 102.127756) - (xy 130.705656 102.035712) - (xy 130.829712 101.911656) - (xy 130.921814 101.762334) - (xy 130.976999 101.595797) - (xy 130.9875 101.493009) - (xy 130.987499 100.692992) - (xy 130.980502 100.6245) - (xy 130.976999 100.590203) - (xy 130.976998 100.5902) - (xy 130.974679 100.583203) - (xy 130.921814 100.423666) - (xy 130.829712 100.274344) - (xy 130.705656 100.150288) - (xy 130.705655 100.150287) - (xy 130.57783 100.071445) - (xy 130.556905 100.058538) - (xy 130.510181 100.006591) - (xy 130.498958 99.937629) - (xy 130.526801 99.873546) - (xy 130.556906 99.847461) - (xy 130.567683 99.840814) - (xy 130.705656 99.755712) - (xy 130.829712 99.631656) - (xy 130.921814 99.482334) - (xy 130.976999 99.315797) - (xy 130.9875 99.213009) - (xy 130.987499 98.412992) - (xy 130.976999 98.310203) - (xy 130.921814 98.143666) - (xy 130.829712 97.994344) - (xy 130.705656 97.870288) - (xy 130.556334 97.778186) - (xy 130.389797 97.723001) - (xy 130.389795 97.723) - (xy 130.287016 97.7125) - (xy 130.287009 97.7125) - (xy 130.1075 97.7125) - (xy 130.040461 97.692815) - (xy 129.994706 97.640011) - (xy 129.9835 97.5885) - (xy 129.9835 97.446771) - (xy 130.003185 97.379732) - (xy 130.038429 97.345132) - (xy 130.038183 97.344821) - (xy 130.041082 97.342528) - (xy 130.042401 97.341233) - (xy 130.04385 97.34034) - (xy 130.16584 97.21835) - (xy 130.256408 97.071516) - (xy 130.310674 96.907753) - (xy 130.321 96.806677) - (xy 130.320999 96.233324) - (xy 130.310674 96.132247) - (xy 130.256408 95.968484) - (xy 130.16584 95.82165) - (xy 130.062517 95.718327) - (xy 130.029032 95.657004) - (xy 130.034016 95.587312) - (xy 130.062517 95.542964) - (xy 130.165448 95.440033) - (xy 130.255948 95.293311) - (xy 130.255953 95.2933) - (xy 130.31018 95.129652) - (xy 130.320499 95.028654) - (xy 130.3205 95.028641) - (xy 130.3205 94.992) - (xy 129.207 94.992) - (xy 129.139961 94.972315) - (xy 129.094206 94.919511) - (xy 129.083 94.868) - (xy 129.083 94.491999) - (xy 129.582999 94.491999) - (xy 129.583 94.492) - (xy 130.320499 94.492) - (xy 130.320499 94.45536) - (xy 130.320498 94.455345) - (xy 130.31018 94.354347) - (xy 130.255953 94.190699) - (xy 130.255948 94.190688) - (xy 130.165447 94.043965) - (xy 130.165444 94.043961) - (xy 130.043538 93.922055) - (xy 130.043534 93.922052) - (xy 129.896811 93.831551) - (xy 129.8968 93.831546) - (xy 129.733152 93.777319) - (xy 129.632154 93.767) - (xy 129.583 93.767) - (xy 129.582999 94.491999) - (xy 129.083 94.491999) - (xy 129.083 93.767) - (xy 129.082999 93.766999) - (xy 129.033861 93.767) - (xy 129.033843 93.767001) - (xy 128.932847 93.777319) - (xy 128.769199 93.831546) - (xy 128.769188 93.831551) - (xy 128.622465 93.922052) - (xy 128.508534 94.035983) - (xy 128.447211 94.069467) - (xy 128.377519 94.064483) - (xy 128.333172 94.035982) - (xy 128.218851 93.921661) - (xy 128.218851 93.92166) - (xy 128.21885 93.92166) - (xy 128.115096 93.857664) - (xy 128.072018 93.831093) - (xy 128.072013 93.831091) - (xy 128.070569 93.830612) - (xy 127.908253 93.776826) - (xy 127.908251 93.776825) - (xy 127.807178 93.7665) - (xy 127.20883 93.7665) - (xy 127.208812 93.766501) - (xy 127.107747 93.776825) - (xy 126.943984 93.831092) - (xy 126.943981 93.831093) - (xy 126.797148 93.921661) - (xy 126.675161 94.043648) - (xy 126.584593 94.190481) - (xy 126.584591 94.190486) - (xy 126.571452 94.230137) - (xy 126.530326 94.354247) - (xy 126.530326 94.354248) - (xy 126.530325 94.354248) - (xy 126.52 94.455315) - (xy 126.52 95.028669) - (xy 126.520001 95.028687) - (xy 126.530325 95.129752) - (xy 126.566609 95.239249) - (xy 126.58452 95.2933) - (xy 126.584592 95.293515) - (xy 126.584593 95.293518) - (xy 126.60981 95.334401) - (xy 126.674964 95.440033) - (xy 126.675161 95.440351) - (xy 126.778128 95.543318) - (xy 126.811613 95.604641) - (xy 126.806629 95.674333) - (xy 126.778129 95.718679) - (xy 126.675156 95.821653) - (xy 126.674555 95.822414) - (xy 126.67401 95.822799) - (xy 126.670054 95.826756) - (xy 126.669377 95.826079) - (xy 126.617532 95.862789) - (xy 126.577292 95.8695) - (xy 120.580815 95.8695) - (xy 120.513776 95.849815) - (xy 120.50793 95.845818) - (xy 120.391534 95.761251) - (xy 120.391529 95.761248) - (xy 120.218607 95.684257) - (xy 120.218602 95.684255) - (xy 120.072801 95.653265) - (xy 120.033446 95.6449) - (xy 119.844154 95.6449) - (xy 119.811697 95.651798) - (xy 119.658997 95.684255) - (xy 119.658992 95.684257) - (xy 119.489628 95.759664) - (xy 119.420378 95.768949) - (xy 119.357101 95.739321) - (xy 119.319888 95.680186) - (xy 119.319001 95.676881) - (xy 119.280063 95.523119) - (xy 119.180173 95.295393) - (xy 119.122227 95.206699) - (xy 119.044166 95.087217) - (xy 118.990275 95.028676) - (xy 118.875744 94.904262) - (xy 118.679509 94.751526) - (xy 118.679507 94.751525) - (xy 118.679506 94.751524) - (xy 118.460811 94.633172) - (xy 118.460802 94.633169) - (xy 118.225616 94.552429) - (xy 117.980335 94.5115) - (xy 117.731665 94.5115) - (xy 117.486383 94.552429) - (xy 117.251197 94.633169) - (xy 117.251188 94.633172) - (xy 117.032493 94.751524) - (xy 116.845992 94.896684) - (xy 116.836256 94.904262) - (xy 116.825452 94.915997) - (xy 116.667833 95.087217) - (xy 116.531826 95.295393) - (xy 116.431936 95.523118) - (xy 116.370892 95.764175) - (xy 116.37089 95.764187) - (xy 116.350357 96.011994) - (xy 116.350357 96.012005) - (xy 116.37089 96.259812) - (xy 116.370892 96.259824) - (xy 116.431936 96.500881) - (xy 116.531826 96.728606) - (xy 116.667833 96.936782) - (xy 116.691038 96.961989) - (xy 116.836256 97.119738) - (xy 117.032491 97.272474) - (xy 117.13796 97.329551) - (xy 117.166176 97.344821) - (xy 117.25119 97.390828) - (xy 117.296969 97.406544) - (xy 117.406711 97.444219) - (xy 117.463726 97.484604) - (xy 117.489857 97.549404) - (xy 117.476806 97.618044) - (xy 117.428717 97.668732) - (xy 117.366448 97.6855) - (xy 112.77398 97.6855) - (xy 112.671198 97.696001) - (xy 112.504666 97.751184) - (xy 112.504655 97.751189) - (xy 112.355346 97.843285) - (xy 112.355342 97.843288) - (xy 112.231288 97.967342) - (xy 112.231285 97.967346) - (xy 112.139189 98.116655) - (xy 112.139184 98.116666) - (xy 112.084001 98.283198) - (xy 112.0735 98.38598) - (xy 112.0735 100.3115) - (xy 112.053815 100.378539) - (xy 112.001011 100.424294) - (xy 111.9495 100.4355) - (xy 111.089638 100.4355) - (xy 111.022599 100.415815) - (xy 110.984099 100.376597) - (xy 110.980037 100.370011) - (xy 110.916712 100.267344) - (xy 110.792656 100.143288) - (xy 110.666617 100.065547) - (xy 110.643905 100.051538) - (xy 110.597181 99.99959) - (xy 110.585958 99.930627) - (xy 110.613802 99.866545) - (xy 110.643901 99.840464) - (xy 110.792656 99.748712) - (xy 110.916712 99.624656) - (xy 111.008814 99.475334) - (xy 111.063999 99.308797) - (xy 111.0745 99.206009) - (xy 111.074499 98.405992) - (xy 111.063999 98.303203) - (xy 111.008814 98.136666) - (xy 110.916712 97.987344) - (xy 110.792656 97.863288) - (xy 110.699888 97.806069) - (xy 110.643336 97.771187) - (xy 110.643331 97.771185) - (xy 110.609927 97.760116) - (xy 110.476797 97.716001) - (xy 110.476795 97.716) - (xy 110.374016 97.7055) - (xy 110.374009 97.7055) - (xy 110.104395 97.7055) - (xy 110.040797 97.687948) - (xy 110.018773 97.674789) - (xy 110.018766 97.674786) - (xy 110.018764 97.674785) - (xy 109.913393 97.635239) - (xy 109.808023 97.595692) - (xy 109.58655 97.5555) - (xy 109.586547 97.5555) - (xy 107.227341 97.5555) - (xy 107.168324 97.540555) - (xy 106.958816 97.427175) - (xy 106.958813 97.427174) - (xy 106.95881 97.427172) - (xy 106.958804 97.42717) - (xy 106.958802 97.427169) - (xy 106.723616 97.346429) - (xy 106.478335 97.3055) - (xy 106.229665 97.3055) - (xy 105.984383 97.346429) - (xy 105.749197 97.427169) - (xy 105.749188 97.427172) - (xy 105.530493 97.545524) - (xy 105.334257 97.698261) - (xy 105.165833 97.881217) - (xy 105.029826 98.089393) - (xy 105.029214 98.090525) - (xy 105.028842 98.090898) - (xy 105.027022 98.093686) - (xy 105.026448 98.093311) - (xy 104.979991 98.140112) - (xy 104.920163 98.1555) - (xy 104.336499 98.1555) - (xy 104.26946 98.135815) - (xy 104.223705 98.083011) - (xy 104.212499 98.0315) - (xy 104.212499 97.760129) - (xy 104.212498 97.760123) - (xy 104.212497 97.760116) - (xy 104.206091 97.700517) - (xy 104.203218 97.692815) - (xy 104.155797 97.565671) - (xy 104.155793 97.565664) - (xy 104.069547 97.450455) - (xy 104.069544 97.450452) - (xy 103.954335 97.364206) - (xy 103.954328 97.364202) - (xy 103.819482 97.313908) - (xy 103.819483 97.313908) - (xy 103.759883 97.307501) - (xy 103.759881 97.3075) - (xy 103.759873 97.3075) - (xy 103.759865 97.3075) - (xy 103.168892 97.3075) - (xy 103.101853 97.287815) - (xy 103.056098 97.235011) - (xy 103.046154 97.165853) - (xy 103.075179 97.102297) - (xy 103.094575 97.084238) - (xy 103.119546 97.065546) - (xy 103.205796 96.950331) - (xy 103.256091 96.815483) - (xy 103.2625 96.755873) - (xy 103.2625 96.5325) - (xy 103.282185 96.465461) - (xy 103.334989 96.419706) - (xy 103.3865 96.4085) - (xy 104.432292 96.4085) - (xy 104.499331 96.428185) - (xy 104.524915 96.45138) - (xy 104.525053 96.451243) - (xy 104.527852 96.454042) - (xy 104.529555 96.455586) - (xy 104.530155 96.456345) - (xy 104.53016 96.45635) - (xy 104.65215 96.57834) - (xy 104.798984 96.668908) - (xy 104.962747 96.723174) - (xy 105.063823 96.7335) - (xy 105.662176 96.733499) - (xy 105.662184 96.733498) - (xy 105.662187 96.733498) - (xy 105.71753 96.727844) - (xy 105.763253 96.723174) - (xy 105.927016 96.668908) - (xy 106.07385 96.57834) - (xy 106.188175 96.464014) - (xy 106.249494 96.430532) - (xy 106.319186 96.435516) - (xy 106.363534 96.464017) - (xy 106.477461 96.577944) - (xy 106.477465 96.577947) - (xy 106.624188 96.668448) - (xy 106.624199 96.668453) - (xy 106.787847 96.72268) - (xy 106.888851 96.732999) - (xy 106.937999 96.732998) - (xy 106.938 96.732998) - (xy 106.938 96.008) - (xy 107.438 96.008) - (xy 107.438 96.732999) - (xy 107.48714 96.732999) - (xy 107.487154 96.732998) - (xy 107.588152 96.72268) - (xy 107.7518 96.668453) - (xy 107.751811 96.668448) - (xy 107.898534 96.577947) - (xy 107.898538 96.577944) - (xy 108.020444 96.456038) - (xy 108.020447 96.456034) - (xy 108.110948 96.309311) - (xy 108.110953 96.3093) - (xy 108.16518 96.145652) - (xy 108.175499 96.044654) - (xy 108.1755 96.044641) - (xy 108.1755 96.008) - (xy 107.438 96.008) - (xy 106.938 96.008) - (xy 106.938 95.834205) - (xy 109.517757 95.834205) - (xy 109.53829 96.082012) - (xy 109.538292 96.082024) - (xy 109.599336 96.323081) - (xy 109.699226 96.550806) - (xy 109.835233 96.758982) - (xy 109.850218 96.77526) - (xy 110.003656 96.941938) - (xy 110.199891 97.094674) - (xy 110.225136 97.108336) - (xy 110.415814 97.211526) - (xy 110.41859 97.213028) - (xy 110.653786 97.293771) - (xy 110.899065 97.3347) - (xy 111.147735 97.3347) - (xy 111.393014 97.293771) - (xy 111.62821 97.213028) - (xy 111.846909 97.094674) - (xy 112.043144 96.941938) - (xy 112.211564 96.758985) - (xy 112.347573 96.550807) - (xy 112.447463 96.323081) - (xy 112.508508 96.082021) - (xy 112.510885 96.053336) - (xy 112.529043 95.834205) - (xy 112.529043 95.834194) - (xy 112.508509 95.586387) - (xy 112.508507 95.586375) - (xy 112.447463 95.345318) - (xy 112.347573 95.117593) - (xy 112.211566 94.909417) - (xy 112.154614 94.847551) - (xy 112.043144 94.726462) - (xy 111.846909 94.573726) - (xy 111.846907 94.573725) - (xy 111.846906 94.573724) - (xy 111.628211 94.455372) - (xy 111.628202 94.455369) - (xy 111.393016 94.374629) - (xy 111.147735 94.3337) - (xy 110.899065 94.3337) - (xy 110.653783 94.374629) - (xy 110.418597 94.455369) - (xy 110.418588 94.455372) - (xy 110.199893 94.573724) - (xy 110.003657 94.726461) - (xy 109.835233 94.909417) - (xy 109.699226 95.117593) - (xy 109.599336 95.345318) - (xy 109.538292 95.586375) - (xy 109.53829 95.586387) - (xy 109.517757 95.834194) - (xy 109.517757 95.834205) - (xy 106.938 95.834205) - (xy 106.938 94.783) - (xy 107.438 94.783) - (xy 107.438 95.508) - (xy 108.175499 95.508) - (xy 108.175499 95.47136) - (xy 108.175498 95.471345) - (xy 108.16518 95.370347) - (xy 108.110953 95.206699) - (xy 108.110948 95.206688) - (xy 108.020447 95.059965) - (xy 108.020444 95.059961) - (xy 107.898538 94.938055) - (xy 107.898534 94.938052) - (xy 107.751811 94.847551) - (xy 107.7518 94.847546) - (xy 107.588152 94.793319) - (xy 107.487154 94.783) - (xy 107.438 94.783) - (xy 106.938 94.783) - (xy 106.937999 94.782999) - (xy 106.888861 94.783) - (xy 106.888843 94.783001) - (xy 106.787847 94.793319) - (xy 106.624199 94.847546) - (xy 106.624188 94.847551) - (xy 106.477465 94.938052) - (xy 106.363534 95.051983) - (xy 106.302211 95.085467) - (xy 106.232519 95.080483) - (xy 106.188172 95.051982) - (xy 106.073851 94.937661) - (xy 106.07385 94.93766) - (xy 105.960913 94.868) - (xy 105.927018 94.847093) - (xy 105.927013 94.847091) - (xy 105.925569 94.846612) - (xy 105.763253 94.792826) - (xy 105.763251 94.792825) - (xy 105.662178 94.7825) - (xy 105.06383 94.7825) - (xy 105.063812 94.782501) - (xy 104.962747 94.792825) - (xy 104.798984 94.847092) - (xy 104.798981 94.847093) - (xy 104.652148 94.937661) - (xy 104.530155 95.059654) - (xy 104.529555 95.060414) - (xy 104.52901 95.060799) - (xy 104.525053 95.064757) - (xy 104.524376 95.06408) - (xy 104.472532 95.100789) - (xy 104.432292 95.1075) - (xy 103.386499 95.1075) - (xy 103.31946 95.087815) - (xy 103.273705 95.035011) - (xy 103.262499 94.9835) - (xy 103.262499 94.760129) - (xy 103.262498 94.760123) - (xy 103.262497 94.760116) - (xy 103.256091 94.700517) - (xy 103.2088 94.573724) - (xy 103.205797 94.565671) - (xy 103.205793 94.565664) - (xy 103.119547 94.450455) - (xy 103.119546 94.450454) - (xy 103.090096 94.428407) - (xy 103.048226 94.372473) - (xy 103.043243 94.302781) - (xy 103.076725 94.241464) - (xy 103.139821 94.178368) - (xy 103.201143 94.144886) - (xy 103.270834 94.149871) - (xy 103.31518 94.178371) - (xy 103.42915 94.29234) - (xy 103.575984 94.382908) - (xy 103.739747 94.437174) - (xy 103.840823 94.4475) - (xy 104.439176 94.447499) - (xy 104.439184 94.447498) - (xy 104.439187 94.447498) - (xy 104.49453 94.441844) - (xy 104.540253 94.437174) - (xy 104.704016 94.382908) - (xy 104.85085 94.29234) - (xy 104.97284 94.17035) - (xy 105.063408 94.023516) - (xy 105.117674 93.859753) - (xy 105.128 93.758677) - (xy 105.127999 93.185324) - (xy 105.119549 93.102607) - (xy 105.117674 93.084247) - (xy 105.104921 93.045762) - (xy 105.063408 92.920484) - (xy 104.97284 92.77365) - (xy 104.85085 92.65166) - (xy 104.850849 92.651659) - (xy 104.850846 92.651656) - (xy 104.850845 92.651655) - (xy 104.8494 92.650764) - (xy 104.848617 92.649893) - (xy 104.845184 92.647179) - (xy 104.845647 92.646592) - (xy 104.802677 92.598815) - (xy 104.7905 92.545228) - (xy 104.7905 92.36223) - (xy 104.810185 92.295191) - (xy 104.826819 92.274549) - (xy 104.866987 92.234381) - (xy 104.942712 92.158656) - (xy 105.034814 92.009334) - (xy 105.089999 91.842797) - (xy 105.1005 91.740009) - (xy 105.100499 91.139992) - (xy 105.089999 91.037203) - (xy 105.034814 90.870666) - (xy 105.031438 90.865192) - (xy 104.939615 90.716322) - (xy 104.921175 90.64893) - (xy 104.937768 90.589225) - (xy 104.963755 90.544214) - (xy 104.967179 90.538284) - (xy 105.025674 90.358256) - (xy 105.04546 90.17) - (xy 105.025674 89.981744) - (xy 104.967179 89.801716) - (xy 104.92598 89.730357) - (xy 104.909507 89.662456) - (xy 104.93236 89.596429) - (xy 104.987281 89.553239) - (xy 104.998769 89.549281) - (xy 105.004564 89.547597) - (xy 105.004569 89.547597) - (xy 105.024961 89.541672) - (xy 105.043996 89.537731) - (xy 105.065058 89.535071) - (xy 105.110235 89.517183) - (xy 105.115735 89.5153) - (xy 105.162398 89.501744) - (xy 105.180665 89.490939) - (xy 105.198136 89.48238) - (xy 105.217871 89.474568) - (xy 105.257177 89.44601) - (xy 105.262043 89.442813) - (xy 105.303865 89.418081) - (xy 105.31887 89.403075) - (xy 105.333668 89.390436) - (xy 105.344615 89.382483) - (xy 105.350837 89.377963) - (xy 105.381809 89.340522) - (xy 105.385723 89.336221) - (xy 106.571513 88.150431) - (xy 106.584079 88.140365) - (xy 106.583925 88.140178) - (xy 106.589933 88.135205) - (xy 106.58994 88.135202) - (xy 106.635392 88.0868) - (xy 118.314141 88.0868) - (xy 118.334736 88.322203) - (xy 118.334738 88.322213) - (xy 118.395894 88.550455) - (xy 118.395896 88.550459) - (xy 118.395897 88.550463) - (xy 118.473969 88.717889) - (xy 118.495765 88.76463) - (xy 118.495767 88.764634) - (xy 118.586228 88.893824) - (xy 118.631305 88.958201) - (xy 118.798399 89.125295) - (xy 118.875669 89.1794) - (xy 118.991965 89.260832) - (xy 118.991967 89.260833) - (xy 118.99197 89.260835) - (xy 119.206137 89.360703) - (xy 119.206143 89.360704) - (xy 119.206144 89.360705) - (xy 119.213239 89.362606) - (xy 119.434392 89.421863) - (xy 119.605119 89.4368) - (xy 119.669799 89.442459) - (xy 119.6698 89.442459) - (xy 119.669801 89.442459) - (xy 119.734481 89.4368) - (xy 119.905208 89.421863) - (xy 120.133463 89.360703) - (xy 120.34763 89.260835) - (xy 120.541201 89.125295) - (xy 120.708295 88.958201) - (xy 120.838224 88.772642) - (xy 120.892802 88.729017) - (xy 120.9623 88.721823) - (xy 121.024655 88.753346) - (xy 121.041375 88.772642) - (xy 121.1713 88.958195) - (xy 121.171305 88.958201) - (xy 121.338399 89.125295) - (xy 121.415669 89.1794) - (xy 121.531965 89.260832) - (xy 121.531967 89.260833) - (xy 121.53197 89.260835) - (xy 121.746137 89.360703) - (xy 121.746143 89.360704) - (xy 121.746144 89.360705) - (xy 121.753239 89.362606) - (xy 121.974392 89.421863) - (xy 122.145119 89.4368) - (xy 122.209799 89.442459) - (xy 122.2098 89.442459) - (xy 122.209801 89.442459) - (xy 122.274481 89.4368) - (xy 122.445208 89.421863) - (xy 122.673463 89.360703) - (xy 122.88763 89.260835) - (xy 123.081201 89.125295) - (xy 123.203517 89.002978) - (xy 123.264836 88.969496) - (xy 123.334528 88.97448) - (xy 123.390462 89.016351) - (xy 123.407377 89.047328) - (xy 123.456446 89.178888) - (xy 123.456449 89.178893) - (xy 123.542609 89.293987) - (xy 123.542612 89.29399) - (xy 123.657706 89.38015) - (xy 123.657713 89.380154) - (xy 123.79242 89.430396) - (xy 123.792427 89.430398) - (xy 123.851955 89.436799) - (xy 123.851972 89.4368) - (xy 124.499799 89.4368) - (xy 124.499799 88.522301) - (xy 124.607485 88.57148) - (xy 124.714037 88.5868) - (xy 124.785563 88.5868) - (xy 124.892115 88.57148) - (xy 124.9998 88.522301) - (xy 124.9998 89.4368) - (xy 125.647628 89.4368) - (xy 125.647644 89.436799) - (xy 125.707172 89.430398) - (xy 125.707179 89.430396) - (xy 125.841886 89.380154) - (xy 125.841893 89.38015) - (xy 125.956987 89.29399) - (xy 125.95699 89.293987) - (xy 126.04315 89.178893) - (xy 126.043154 89.178886) - (xy 126.093396 89.044179) - (xy 126.093398 89.044172) - (xy 126.099799 88.984644) - (xy 126.0998 88.984627) - (xy 126.0998 88.3368) - (xy 125.183486 88.3368) - (xy 125.209293 88.296644) - (xy 125.2498 88.158689) - (xy 125.2498 88.014911) - (xy 125.209293 87.876956) - (xy 125.183486 87.8368) - (xy 126.0998 87.8368) - (xy 126.0998 87.188972) - (xy 126.099799 87.188955) - (xy 126.093398 87.129427) - (xy 126.093396 87.12942) - (xy 126.043154 86.994713) - (xy 126.04315 86.994706) - (xy 125.95699 86.879612) - (xy 125.956987 86.879609) - (xy 125.913963 86.847401) - (xy 129.430746 86.847401) - (xy 129.440745 87.057327) - (xy 129.490296 87.261578) - (xy 129.490298 87.261582) - (xy 129.577598 87.452743) - (xy 129.577601 87.452748) - (xy 129.577602 87.45275) - (xy 129.577604 87.452753) - (xy 129.698934 87.623137) - (xy 129.699515 87.623953) - (xy 129.69952 87.623959) - (xy 129.851619 87.768984) - (xy 129.851621 87.768985) - (xy 129.851622 87.768986) - (xy 129.862716 87.776116) - (xy 129.893386 87.795826) - (xy 129.939141 87.84863) - (xy 129.949085 87.917789) - (xy 129.92006 87.981345) - (xy 129.902999 87.997612) - (xy 129.772462 88.100268) - (xy 129.772459 88.100271) - (xy 129.634894 88.25903) - (xy 129.634885 88.259041) - (xy 129.529855 88.44096) - (xy 129.529852 88.440967) - (xy 129.461144 88.639482) - (xy 129.461144 88.639484) - (xy 129.459632 88.65) - (xy 130.53044 88.65) - (xy 130.491722 88.692059) - (xy 130.441449 88.80667) - (xy 130.431114 88.931395) - (xy 130.461837 89.052719) - (xy 130.525394 89.15) - (xy 129.463742 89.15) - (xy 129.49077 89.261409) - (xy 129.57804 89.452507) - (xy 129.699889 89.623619) - (xy 129.699895 89.623625) - (xy 129.851932 89.768592) - (xy 130.028657 89.882166) - (xy 130.223685 89.960244) - (xy 130.429962 90) - (xy 130.56 90) - (xy 130.56 89.180617) - (xy 130.629052 89.234363) - (xy 130.747424 89.275) - (xy 130.841073 89.275) - (xy 130.933446 89.259586) - (xy 131.043514 89.200019) - (xy 131.06 89.18211) - (xy 131.06 90) - (xy 131.137398 90) - (xy 131.294122 89.985034) - (xy 131.294126 89.985033) - (xy 131.495686 89.92585) - (xy 131.682414 89.829586) - (xy 131.847537 89.699731) - (xy 131.84754 89.699728) - (xy 131.985105 89.540969) - (xy 131.985114 89.540958) - (xy 132.090144 89.359039) - (xy 132.090147 89.359032) - (xy 132.158855 89.160517) - (xy 132.158855 89.160515) - (xy 132.160368 89.15) - (xy 131.08956 89.15) - (xy 131.128278 89.107941) - (xy 131.178551 88.99333) - (xy 131.188886 88.868605) - (xy 131.158163 88.747281) - (xy 131.094606 88.65) - (xy 132.156257 88.65) - (xy 132.129229 88.53859) - (xy 132.041959 88.347492) - (xy 131.92011 88.17638) - (xy 131.920104 88.176374) - (xy 131.768067 88.031408) - (xy 131.726641 88.004784) - (xy 131.680887 87.951979) - (xy 131.670944 87.882821) - (xy 131.69997 87.819265) - (xy 131.71703 87.802999) - (xy 131.776791 87.756002) - (xy 131.847886 87.700092) - (xy 131.985519 87.541256) - (xy 132.040219 87.446514) - (xy 132.076976 87.382848) - (xy 132.090604 87.359244) - (xy 132.159344 87.160633) - (xy 132.189254 86.952602) - (xy 132.179254 86.74267) - (xy 132.129704 86.538424) - (xy 132.129701 86.538417) - (xy 132.042401 86.347256) - (xy 132.042398 86.347251) - (xy 132.042397 86.34725) - (xy 132.042396 86.347247) - (xy 131.920486 86.176048) - (xy 131.92024 86.175813) - (xy 131.817917 86.078249) - (xy 131.782982 86.01774) - (xy 131.786307 85.94795) - (xy 131.826835 85.891036) - (xy 131.838384 85.882971) - (xy 131.903656 85.842712) - (xy 132.027712 85.718656) - (xy 132.119814 85.569334) - (xy 132.174999 85.402797) - (xy 132.1855 85.300009) - (xy 132.185499 84.499992) - (xy 132.180838 84.454368) - (xy 132.174999 84.397203) - (xy 132.174998 84.3972) - (xy 132.166627 84.371937) - (xy 132.119814 84.230666) - (xy 132.027712 84.081344) - (xy 131.903656 83.957288) - (xy 131.754334 83.865186) - (xy 131.587797 83.810001) - (xy 131.587795 83.81) - (xy 131.48501 83.7995) - (xy 130.134998 83.7995) - (xy 130.134981 83.799501) - (xy 130.032203 83.81) - (xy 130.0322 83.810001) - (xy 129.865668 83.865185) - (xy 129.865663 83.865187) - (xy 129.716342 83.957289) - (xy 129.592289 84.081342) - (xy 129.500187 84.230663) - (xy 129.500185 84.230666) - (xy 129.500186 84.230666) - (xy 129.445001 84.397203) - (xy 129.445001 84.397204) - (xy 129.445 84.397204) - (xy 129.4345 84.499983) - (xy 129.4345 85.300001) - (xy 129.434501 85.300019) - (xy 129.445 85.402796) - (xy 129.445001 85.402799) - (xy 129.500185 85.569331) - (xy 129.500187 85.569336) - (xy 129.592289 85.718657) - (xy 129.716344 85.842712) - (xy 129.779739 85.881814) - (xy 129.826464 85.933762) - (xy 129.837687 86.002724) - (xy 129.809844 86.066806) - (xy 129.791296 86.084822) - (xy 129.772118 86.099903) - (xy 129.772112 86.099909) - (xy 129.634478 86.258746) - (xy 129.529398 86.44075) - (xy 129.460656 86.639365) - (xy 129.460656 86.639367) - (xy 129.431266 86.843785) - (xy 129.430746 86.847401) - (xy 125.913963 86.847401) - (xy 125.841893 86.793449) - (xy 125.841886 86.793445) - (xy 125.707179 86.743203) - (xy 125.707172 86.743201) - (xy 125.647644 86.7368) - (xy 124.9998 86.7368) - (xy 124.9998 87.651298) - (xy 124.892115 87.60212) - (xy 124.785563 87.5868) - (xy 124.714037 87.5868) - (xy 124.607485 87.60212) - (xy 124.499799 87.651298) - (xy 124.4998 86.7368) - (xy 123.851955 86.7368) - (xy 123.792427 86.743201) - (xy 123.79242 86.743203) - (xy 123.657713 86.793445) - (xy 123.657706 86.793449) - (xy 123.542612 86.879609) - (xy 123.542609 86.879612) - (xy 123.456449 86.994706) - (xy 123.456445 86.994713) - (xy 123.407378 87.12627) - (xy 123.365507 87.182204) - (xy 123.300042 87.206621) - (xy 123.231769 87.191769) - (xy 123.203515 87.170619) - (xy 123.159166 87.12627) - (xy 123.081201 87.048305) - (xy 123.081197 87.048302) - (xy 123.081196 87.048301) - (xy 122.887634 86.912767) - (xy 122.88763 86.912765) - (xy 122.816527 86.879609) - (xy 122.673463 86.812897) - (xy 122.673459 86.812896) - (xy 122.673455 86.812894) - (xy 122.445213 86.751738) - (xy 122.445203 86.751736) - (xy 122.209801 86.731141) - (xy 122.209799 86.731141) - (xy 121.974396 86.751736) - (xy 121.974386 86.751738) - (xy 121.746144 86.812894) - (xy 121.746135 86.812898) - (xy 121.531971 86.912764) - (xy 121.531969 86.912765) - (xy 121.338397 87.048305) - (xy 121.171305 87.215397) - (xy 121.041375 87.400958) - (xy 120.986798 87.444583) - (xy 120.9173 87.451777) - (xy 120.854945 87.420254) - (xy 120.838225 87.400958) - (xy 120.708294 87.215397) - (xy 120.541202 87.048306) - (xy 120.541195 87.048301) - (xy 120.347634 86.912767) - (xy 120.34763 86.912765) - (xy 120.276527 86.879609) - (xy 120.133463 86.812897) - (xy 120.133459 86.812896) - (xy 120.133455 86.812894) - (xy 119.905213 86.751738) - (xy 119.905203 86.751736) - (xy 119.669801 86.731141) - (xy 119.669799 86.731141) - (xy 119.434396 86.751736) - (xy 119.434386 86.751738) - (xy 119.206144 86.812894) - (xy 119.206135 86.812898) - (xy 118.991971 86.912764) - (xy 118.991969 86.912765) - (xy 118.798397 87.048305) - (xy 118.631305 87.215397) - (xy 118.495765 87.408969) - (xy 118.495764 87.408971) - (xy 118.395898 87.623135) - (xy 118.395894 87.623144) - (xy 118.334738 87.851386) - (xy 118.334736 87.851396) - (xy 118.314141 88.086799) - (xy 118.314141 88.0868) - (xy 106.635392 88.0868) - (xy 106.638532 88.083456) - (xy 106.639856 88.082088) - (xy 106.660911 88.061035) - (xy 106.665401 88.055245) - (xy 106.669183 88.050815) - (xy 106.702448 88.015393) - (xy 106.712674 87.99679) - (xy 106.723353 87.980533) - (xy 106.736362 87.963764) - (xy 106.755656 87.919175) - (xy 106.758212 87.913956) - (xy 106.781627 87.871368) - (xy 106.786905 87.850806) - (xy 106.793207 87.832399) - (xy 106.801635 87.812927) - (xy 106.809233 87.764953) - (xy 106.810414 87.759247) - (xy 106.8225 87.712177) - (xy 106.8225 87.690949) - (xy 106.824027 87.671549) - (xy 106.824218 87.670344) - (xy 106.827346 87.650595) - (xy 106.822775 87.602238) - (xy 106.8225 87.5964) - (xy 106.8225 84.521407) - (xy 106.842185 84.454368) - (xy 106.894989 84.408613) - (xy 106.964147 84.398669) - (xy 107.027703 84.427694) - (xy 107.034181 84.433726) - (xy 108.686864 86.08641) - (xy 108.696935 86.09898) - (xy 108.697122 86.098826) - (xy 108.702095 86.104837) - (xy 108.753842 86.153431) - (xy 108.755209 86.154755) - (xy 108.776265 86.175811) - (xy 108.776268 86.175813) - (xy 108.782057 86.180305) - (xy 108.786497 86.184097) - (xy 108.815798 86.211611) - (xy 108.821907 86.217348) - (xy 108.821909 86.217349) - (xy 108.840505 86.227572) - (xy 108.85677 86.238257) - (xy 108.873532 86.25126) - (xy 108.873535 86.251261) - (xy 108.873536 86.251262) - (xy 108.918123 86.270556) - (xy 108.923359 86.273121) - (xy 108.965932 86.296527) - (xy 108.98164 86.300559) - (xy 108.986486 86.301804) - (xy 109.004898 86.308107) - (xy 109.024373 86.316535) - (xy 109.072371 86.324137) - (xy 109.07804 86.325311) - (xy 109.125123 86.3374) - (xy 109.146351 86.3374) - (xy 109.165748 86.338926) - (xy 109.186703 86.342245) - (xy 109.186704 86.342246) - (xy 109.186704 86.342245) - (xy 109.186705 86.342246) - (xy 109.23506 86.337675) - (xy 109.240899 86.3374) - (xy 119.727595 86.3374) - (xy 119.743605 86.339167) - (xy 119.743628 86.338926) - (xy 119.751394 86.33966) - (xy 119.751395 86.339659) - (xy 119.751396 86.33966) - (xy 119.758371 86.33944) - (xy 119.822335 86.337431) - (xy 119.824283 86.3374) - (xy 119.854025 86.3374) - (xy 119.86129 86.336481) - (xy 119.867116 86.336022) - (xy 119.915669 86.334497) - (xy 119.936056 86.328573) - (xy 119.955096 86.324631) - (xy 119.976158 86.321971) - (xy 120.021335 86.304083) - (xy 120.026835 86.3022) - (xy 120.073498 86.288644) - (xy 120.091765 86.277839) - (xy 120.109236 86.26928) - (xy 120.128971 86.261468) - (xy 120.168277 86.23291) - (xy 120.173143 86.229713) - (xy 120.214965 86.204981) - (xy 120.22997 86.189975) - (xy 120.244768 86.177336) - (xy 120.246544 86.176046) - (xy 120.261937 86.164863) - (xy 120.292909 86.127422) - (xy 120.296823 86.123121) - (xy 121.811513 84.608431) - (xy 121.824079 84.598365) - (xy 121.823925 84.598178) - (xy 121.829933 84.593205) - (xy 121.82994 84.593202) - (xy 121.878532 84.541456) - (xy 121.879856 84.540088) - (xy 121.900911 84.519035) - (xy 121.905401 84.513245) - (xy 121.909183 84.508815) - (xy 121.942448 84.473393) - (xy 121.952674 84.45479) - (xy 121.963353 84.438533) - (xy 121.976362 84.421764) - (xy 121.995663 84.377159) - (xy 121.998207 84.371965) - (xy 122.021627 84.329368) - (xy 122.026907 84.308802) - (xy 122.033209 84.290395) - (xy 122.041635 84.270926) - (xy 122.049233 84.222948) - (xy 122.050411 84.217253) - (xy 122.0625 84.170177) - (xy 122.0625 84.148954) - (xy 122.064027 84.129555) - (xy 122.067347 84.108595) - (xy 122.062775 84.06023) - (xy 122.0625 84.054392) - (xy 122.0625 77.703401) - (xy 129.430746 77.703401) - (xy 129.440745 77.913327) - (xy 129.490296 78.117578) - (xy 129.490298 78.117582) - (xy 129.577598 78.308743) - (xy 129.577601 78.308748) - (xy 129.577602 78.30875) - (xy 129.577604 78.308753) - (xy 129.640627 78.397256) - (xy 129.699515 78.479953) - (xy 129.69952 78.479959) - (xy 129.851619 78.624984) - (xy 129.893386 78.651826) - (xy 129.939141 78.70463) - (xy 129.949085 78.773789) - (xy 129.92006 78.837345) - (xy 129.902999 78.853612) - (xy 129.772462 78.956268) - (xy 129.772459 78.956271) - (xy 129.634894 79.11503) - (xy 129.634885 79.115041) - (xy 129.529855 79.29696) - (xy 129.529852 79.296967) - (xy 129.461144 79.495482) - (xy 129.461144 79.495484) - (xy 129.459632 79.506) - (xy 130.53044 79.506) - (xy 130.491722 79.548059) - (xy 130.441449 79.66267) - (xy 130.431114 79.787395) - (xy 130.461837 79.908719) - (xy 130.525394 80.006) - (xy 129.463742 80.006) - (xy 129.49077 80.117409) - (xy 129.57804 80.308507) - (xy 129.699889 80.479619) - (xy 129.699895 80.479625) - (xy 129.851932 80.624592) - (xy 130.028657 80.738166) - (xy 130.223685 80.816244) - (xy 130.429962 80.856) - (xy 130.56 80.856) - (xy 130.56 80.036617) - (xy 130.629052 80.090363) - (xy 130.747424 80.131) - (xy 130.841073 80.131) - (xy 130.933446 80.115586) - (xy 131.043514 80.056019) - (xy 131.06 80.03811) - (xy 131.06 80.856) - (xy 131.137398 80.856) - (xy 131.294122 80.841034) - (xy 131.294126 80.841033) - (xy 131.495686 80.78185) - (xy 131.682414 80.685586) - (xy 131.847537 80.555731) - (xy 131.84754 80.555728) - (xy 131.985105 80.396969) - (xy 131.985114 80.396958) - (xy 132.090144 80.215039) - (xy 132.090147 80.215032) - (xy 132.158855 80.016517) - (xy 132.158855 80.016515) - (xy 132.160368 80.006) - (xy 131.08956 80.006) - (xy 131.128278 79.963941) - (xy 131.178551 79.84933) - (xy 131.188886 79.724605) - (xy 131.158163 79.603281) - (xy 131.094606 79.506) - (xy 132.156257 79.506) - (xy 132.129229 79.39459) - (xy 132.041959 79.203492) - (xy 131.92011 79.03238) - (xy 131.920104 79.032374) - (xy 131.768067 78.887408) - (xy 131.726641 78.860784) - (xy 131.680887 78.807979) - (xy 131.670944 78.738821) - (xy 131.69997 78.675265) - (xy 131.71703 78.658999) - (xy 131.847883 78.556094) - (xy 131.847886 78.556092) - (xy 131.985519 78.397256) - (xy 132.090604 78.215244) - (xy 132.159344 78.016633) - (xy 132.189254 77.808602) - (xy 132.179254 77.59867) - (xy 132.129704 77.394424) - (xy 132.12853 77.391853) - (xy 132.042401 77.203256) - (xy 132.042398 77.203251) - (xy 132.042397 77.20325) - (xy 132.042396 77.203247) - (xy 131.920486 77.032048) - (xy 131.920484 77.032046) - (xy 131.920479 77.03204) - (xy 131.768379 76.887014) - (xy 131.727057 76.860458) - (xy 131.681302 76.807654) - (xy 131.671359 76.738496) - (xy 131.700384 76.67494) - (xy 131.717445 76.658673) - (xy 131.773853 76.614313) - (xy 131.847886 76.556092) - (xy 131.985519 76.397256) - (xy 132.021753 76.334498) - (xy 132.090601 76.215249) - (xy 132.0906 76.215249) - (xy 132.090604 76.215244) - (xy 132.159344 76.016633) - (xy 132.189254 75.808602) - (xy 132.179254 75.59867) - (xy 132.129704 75.394424) - (xy 132.105031 75.340398) - (xy 132.042401 75.203256) - (xy 132.042398 75.203251) - (xy 132.042397 75.20325) - (xy 132.042396 75.203247) - (xy 131.920486 75.032048) - (xy 131.885409 74.998602) - (xy 131.817917 74.934249) - (xy 131.782982 74.87374) - (xy 131.786307 74.80395) - (xy 131.826835 74.747036) - (xy 131.838384 74.738971) - (xy 131.903656 74.698712) - (xy 132.027712 74.574656) - (xy 132.119814 74.425334) - (xy 132.174999 74.258797) - (xy 132.1855 74.156009) - (xy 132.185499 73.355992) - (xy 132.183957 73.3409) - (xy 132.174999 73.253203) - (xy 132.174998 73.2532) - (xy 132.168037 73.232193) - (xy 132.119814 73.086666) - (xy 132.027712 72.937344) - (xy 131.903656 72.813288) - (xy 131.754334 72.721186) - (xy 131.587797 72.666001) - (xy 131.587795 72.666) - (xy 131.48501 72.6555) - (xy 130.134998 72.6555) - (xy 130.134981 72.655501) - (xy 130.032203 72.666) - (xy 130.0322 72.666001) - (xy 129.865668 72.721185) - (xy 129.865663 72.721187) - (xy 129.716342 72.813289) - (xy 129.592289 72.937342) - (xy 129.500187 73.086663) - (xy 129.500185 73.086668) - (xy 129.480542 73.145947) - (xy 129.445001 73.253203) - (xy 129.445001 73.253204) - (xy 129.445 73.253204) - (xy 129.4345 73.355983) - (xy 129.4345 74.156001) - (xy 129.434501 74.156019) - (xy 129.445 74.258796) - (xy 129.445001 74.258799) - (xy 129.500185 74.425331) - (xy 129.500187 74.425336) - (xy 129.592289 74.574657) - (xy 129.716344 74.698712) - (xy 129.779739 74.737814) - (xy 129.826464 74.789762) - (xy 129.837687 74.858724) - (xy 129.809844 74.922806) - (xy 129.791296 74.940822) - (xy 129.772118 74.955903) - (xy 129.772112 74.955909) - (xy 129.634478 75.114746) - (xy 129.529398 75.29675) - (xy 129.460656 75.495365) - (xy 129.460656 75.495367) - (xy 129.43386 75.681745) - (xy 129.430746 75.703401) - (xy 129.440745 75.913327) - (xy 129.490296 76.117578) - (xy 129.490298 76.117582) - (xy 129.577598 76.308743) - (xy 129.577601 76.308748) - (xy 129.577602 76.30875) - (xy 129.577604 76.308753) - (xy 129.673346 76.443204) - (xy 129.699515 76.479953) - (xy 129.69952 76.479959) - (xy 129.851619 76.624984) - (xy 129.892941 76.65154) - (xy 129.938696 76.704344) - (xy 129.94864 76.773503) - (xy 129.919615 76.837059) - (xy 129.902555 76.853326) - (xy 129.772112 76.955909) - (xy 129.634478 77.114746) - (xy 129.529398 77.29675) - (xy 129.460656 77.495365) - (xy 129.460656 77.495367) - (xy 129.434229 77.679177) - (xy 129.430746 77.703401) - (xy 122.0625 77.703401) - (xy 122.0625 73.3409) - (xy 122.082185 73.273861) - (xy 122.102962 73.249263) - (xy 122.228762 73.134581) - (xy 122.228764 73.134579) - (xy 122.351673 72.971821) - (xy 122.442582 72.78925) - (xy 122.498397 72.593083) - (xy 122.517215 72.39) - (xy 122.498397 72.186917) - (xy 122.442582 71.99075) - (xy 122.423678 71.952786) - (xy 122.396002 71.897204) - (xy 122.351673 71.808179) - (xy 122.257859 71.683949) - (xy 122.228762 71.645418) - (xy 122.078041 71.508019) - (xy 122.078039 71.508017) - (xy 121.904642 71.400655) - (xy 121.904635 71.400651) - (xy 121.775522 71.350633) - (xy 121.714456 71.326976) - (xy 121.513976 71.2895) - (xy 121.310024 71.2895) - (xy 121.109544 71.326976) - (xy 121.109541 71.326976) - (xy 121.109541 71.326977) - (xy 120.919364 71.400651) - (xy 120.919357 71.400655) - (xy 120.74596 71.508017) - (xy 120.745958 71.508019) - (xy 120.595237 71.645418) - (xy 120.472327 71.808178) - (xy 120.381422 71.990739) - (xy 120.381417 71.990752) - (xy 120.325602 72.186917) - (xy 120.306785 72.389999) - (xy 120.306785 72.39) - (xy 120.325602 72.593082) - (xy 120.381417 72.789247) - (xy 120.381422 72.78926) - (xy 120.472327 72.971821) - (xy 120.595235 73.134578) - (xy 120.721038 73.249263) - (xy 120.757319 73.308975) - (xy 120.761499 73.3409) - (xy 120.761499 83.767192) - (xy 120.741814 83.834231) - (xy 120.72518 83.854873) - (xy 119.579973 85.000081) - (xy 119.51865 85.033566) - (xy 119.492292 85.0364) - (xy 109.528108 85.0364) - (xy 109.461069 85.016715) - (xy 109.440427 85.000081) - (xy 107.302663 82.862317) - (xy 107.269178 82.800994) - (xy 107.266873 82.763201) - (xy 107.277215 82.6516) - (xy 107.258397 82.448517) - (xy 107.202582 82.25235) - (xy 107.111673 82.069779) - (xy 107.028634 81.959818) - (xy 106.988762 81.907018) - (xy 106.838041 81.769619) - (xy 106.838039 81.769617) - (xy 106.664642 81.662255) - (xy 106.664635 81.662251) - (xy 106.532244 81.610963) - (xy 106.474456 81.588576) - (xy 106.273976 81.5511) - (xy 106.070024 81.5511) - (xy 105.869544 81.588576) - (xy 105.869541 81.588576) - (xy 105.869541 81.588577) - (xy 105.679364 81.662251) - (xy 105.679357 81.662255) - (xy 105.50596 81.769617) - (xy 105.505958 81.769619) - (xy 105.355237 81.907018) - (xy 105.232327 82.069778) - (xy 105.141422 82.252339) - (xy 105.141417 82.252352) - (xy 105.085602 82.448517) - (xy 105.066785 82.651599) - (xy 105.066785 82.6516) - (xy 105.085602 82.854682) - (xy 105.141417 83.050847) - (xy 105.141422 83.05086) - (xy 105.232327 83.233421) - (xy 105.355237 83.396181) - (xy 105.481038 83.510863) - (xy 105.51732 83.570574) - (xy 105.5215 83.6025) - (xy 105.5215 87.309192) - (xy 105.501815 87.376231) - (xy 105.485181 87.396873) - (xy 104.668873 88.213181) - (xy 104.60755 88.246666) - (xy 104.581192 88.2495) - (xy 104.081748 88.2495) - (xy 104.014709 88.229815) - (xy 103.968954 88.177011) - (xy 103.95901 88.107853) - (xy 103.988035 88.044297) - (xy 103.989598 88.042528) - (xy 104.014464 88.014911) - (xy 104.110533 87.908216) - (xy 104.205179 87.744284) - (xy 104.263674 87.564256) - (xy 104.28346 87.376) - (xy 104.263674 87.187744) - (xy 104.205179 87.007716) - (xy 104.110533 86.843784) - (xy 104.06035 86.78805) - (xy 104.03012 86.725058) - (xy 104.0285 86.705078) - (xy 104.0285 82.362807) - (xy 104.048185 82.295768) - (xy 104.064814 82.275131) - (xy 108.222513 78.117431) - (xy 108.235079 78.107365) - (xy 108.234925 78.107178) - (xy 108.240933 78.102205) - (xy 108.24094 78.102202) - (xy 108.289532 78.050456) - (xy 108.290856 78.049088) - (xy 108.311911 78.028035) - (xy 108.316401 78.022245) - (xy 108.320183 78.017815) - (xy 108.353448 77.982393) - (xy 108.363674 77.96379) - (xy 108.374353 77.947533) - (xy 108.387362 77.930764) - (xy 108.406656 77.886175) - (xy 108.409212 77.880956) - (xy 108.432627 77.838368) - (xy 108.437905 77.817806) - (xy 108.444207 77.799399) - (xy 108.452635 77.779927) - (xy 108.460233 77.731953) - (xy 108.461414 77.726247) - (xy 108.4735 77.679177) - (xy 108.4735 77.657949) - (xy 108.475027 77.638549) - (xy 108.478346 77.617595) - (xy 108.473775 77.569238) - (xy 108.4735 77.5634) - (xy 108.4735 73.298606) - (xy 108.493185 73.231567) - (xy 108.545989 73.185812) - (xy 108.615147 73.175868) - (xy 108.655952 73.189248) - (xy 108.708273 73.217214) - (xy 108.896868 73.274424) - (xy 109.093 73.293741) - (xy 109.289132 73.274424) - (xy 109.477727 73.217214) - (xy 109.651538 73.12431) - (xy 109.651544 73.124304) - (xy 109.656607 73.120923) - (xy 109.657703 73.122564) - (xy 109.713639 73.098805) - (xy 109.782507 73.110594) - (xy 109.799148 73.121288) - (xy 109.799393 73.120923) - (xy 109.804458 73.124307) - (xy 109.804462 73.12431) - (xy 109.978273 73.217214) - (xy 110.166868 73.274424) - (xy 110.363 73.293741) - (xy 110.559132 73.274424) - (xy 110.747727 73.217214) - (xy 110.921538 73.12431) - (xy 110.921544 73.124304) - (xy 110.926607 73.120923) - (xy 110.927624 73.122445) - (xy 110.984021 73.098484) - (xy 111.05289 73.110266) - (xy 111.069424 73.120889) - (xy 111.069678 73.12051) - (xy 111.074738 73.123891) - (xy 111.248465 73.216749) - (xy 111.383 73.257559) - (xy 111.383 72.537338) - (xy 111.464115 72.600472) - (xy 111.574595 72.6384) - (xy 111.662005 72.6384) - (xy 111.748216 72.624014) - (xy 111.850947 72.568419) - (xy 111.883 72.5336) - (xy 111.883 73.257559) - (xy 112.017538 73.216748) - (xy 112.070047 73.188682) - (xy 112.13845 73.17444) - (xy 112.203694 73.19944) - (xy 112.245064 73.255745) - (xy 112.2525 73.29804) - (xy 112.2525 80.584893) - (xy 112.250732 80.600904) - (xy 112.250974 80.600927) - (xy 112.250239 80.608694) - (xy 112.252468 80.679636) - (xy 112.252499 80.681581) - (xy 112.252499 80.711328) - (xy 112.253418 80.718604) - (xy 112.253876 80.724423) - (xy 112.255402 80.772967) - (xy 112.255403 80.77297) - (xy 112.261323 80.793348) - (xy 112.265268 80.812396) - (xy 112.267928 80.833454) - (xy 112.267931 80.833464) - (xy 112.285813 80.87863) - (xy 112.287705 80.884158) - (xy 112.301254 80.930795) - (xy 112.301255 80.930797) - (xy 112.31206 80.949066) - (xy 112.320617 80.966534) - (xy 112.326226 80.9807) - (xy 112.328432 80.986272) - (xy 112.356983 81.02557) - (xy 112.360188 81.030449) - (xy 112.384919 81.072265) - (xy 112.384923 81.072269) - (xy 112.399925 81.087271) - (xy 112.412563 81.102069) - (xy 112.425033 81.119233) - (xy 112.425036 81.119236) - (xy 112.425037 81.119237) - (xy 112.462476 81.150209) - (xy 112.466776 81.154122) - (xy 113.761171 82.448517) - (xy 115.024164 83.71151) - (xy 115.034235 83.72408) - (xy 115.034422 83.723926) - (xy 115.039395 83.729937) - (xy 115.091142 83.778531) - (xy 115.092509 83.779855) - (xy 115.112154 83.7995) - (xy 115.113567 83.800913) - (xy 115.119358 83.805405) - (xy 115.123798 83.809198) - (xy 115.133762 83.818554) - (xy 115.159207 83.842448) - (xy 115.177798 83.852668) - (xy 115.194063 83.863352) - (xy 115.210834 83.876361) - (xy 115.210837 83.876363) - (xy 115.255427 83.895658) - (xy 115.260656 83.89822) - (xy 115.303232 83.921627) - (xy 115.323793 83.926905) - (xy 115.342197 83.933207) - (xy 115.361674 83.941636) - (xy 115.399527 83.94763) - (xy 115.409654 83.949235) - (xy 115.415364 83.950417) - (xy 115.462423 83.9625) - (xy 115.483645 83.9625) - (xy 115.503042 83.964026) - (xy 115.524005 83.967347) - (xy 115.572372 83.962774) - (xy 115.578209 83.9625) - (xy 117.534625 83.9625) - (xy 117.601664 83.982185) - (xy 117.60751 83.986182) - (xy 117.758865 84.096148) - (xy 117.75887 84.096151) - (xy 117.931792 84.173142) - (xy 117.931797 84.173144) - (xy 118.116954 84.2125) - (xy 118.116955 84.2125) - (xy 118.306244 84.2125) - (xy 118.306246 84.2125) - (xy 118.491403 84.173144) - (xy 118.66433 84.096151) - (xy 118.817471 83.984888) - (xy 118.944133 83.844216) - (xy 119.038779 83.680284) - (xy 119.097274 83.500256) - (xy 119.11706 83.312) - (xy 119.097274 83.123744) - (xy 119.038779 82.943716) - (xy 118.944133 82.779784) - (xy 118.817471 82.639112) - (xy 118.798297 82.625181) - (xy 118.664334 82.527851) - (xy 118.664329 82.527848) - (xy 118.491407 82.450857) - (xy 118.491402 82.450855) - (xy 118.345601 82.419865) - (xy 118.306246 82.4115) - (xy 118.116954 82.4115) - (xy 118.084497 82.418398) - (xy 117.931797 82.450855) - (xy 117.931792 82.450857) - (xy 117.75887 82.527848) - (xy 117.758865 82.527851) - (xy 117.60751 82.637818) - (xy 117.541704 82.661298) - (xy 117.534625 82.6615) - (xy 115.865408 82.6615) - (xy 115.798369 82.641815) - (xy 115.777727 82.625181) - (xy 113.589819 80.437273) - (xy 113.556334 80.37595) - (xy 113.5535 80.349592) - (xy 113.5535 73.412899) - (xy 113.573185 73.34586) - (xy 113.625989 73.300105) - (xy 113.677495 73.288899) - (xy 114.720872 73.288899) - (xy 114.780483 73.282491) - (xy 114.915331 73.232196) - (xy 115.030546 73.145946) - (xy 115.116796 73.030731) - (xy 115.167091 72.895883) - (xy 115.1735 72.836273) - (xy 115.173499 71.740528) - (xy 115.167091 71.680917) - (xy 115.144604 71.620627) - (xy 115.116797 71.546071) - (xy 115.116793 71.546064) - (xy 115.030547 71.430855) - (xy 115.030544 71.430852) - (xy 114.915335 71.344606) - (xy 114.915328 71.344602) - (xy 114.780482 71.294308) - (xy 114.780483 71.294308) - (xy 114.720883 71.287901) - (xy 114.720881 71.2879) - (xy 114.720873 71.2879) - (xy 114.720864 71.2879) - (xy 113.625129 71.2879) - (xy 113.625123 71.287901) - (xy 113.565516 71.294308) - (xy 113.430671 71.344602) - (xy 113.430666 71.344605) - (xy 113.422614 71.350633) - (xy 113.357149 71.375048) - (xy 113.29353 71.361504) - (xy 113.293359 71.361918) - (xy 113.291123 71.360992) - (xy 113.28985 71.360721) - (xy 113.287729 71.359587) - (xy 113.287728 71.359586) - (xy 113.287727 71.359586) - (xy 113.099132 71.302376) - (xy 113.099129 71.302375) - (xy 112.903 71.283059) - (xy 112.70687 71.302375) - (xy 112.518266 71.359588) - (xy 112.344467 71.452486) - (xy 112.339399 71.455873) - (xy 112.338386 71.454358) - (xy 112.281936 71.47832) - (xy 112.213071 71.466515) - (xy 112.196574 71.455911) - (xy 112.196322 71.45629) - (xy 112.191253 71.452903) - (xy 112.017541 71.360052) - (xy 111.883 71.319239) - (xy 111.883 72.039461) - (xy 111.801885 71.976328) - (xy 111.691405 71.9384) - (xy 111.603995 71.9384) - (xy 111.517784 71.952786) - (xy 111.415053 72.008381) - (xy 111.383 72.043199) - (xy 111.383 71.319239) - (xy 111.382999 71.319239) - (xy 111.248458 71.360052) - (xy 111.074742 71.452905) - (xy 111.069673 71.456293) - (xy 111.068556 71.454621) - (xy 111.012715 71.478321) - (xy 110.943851 71.466511) - (xy 110.926811 71.455558) - (xy 110.926601 71.455873) - (xy 110.921532 71.452486) - (xy 110.747733 71.359588) - (xy 110.747727 71.359586) - (xy 110.559132 71.302376) - (xy 110.559129 71.302375) - (xy 110.363 71.283059) - (xy 110.16687 71.302375) - (xy 109.978266 71.359588) - (xy 109.804465 71.452487) - (xy 109.799405 71.455869) - (xy 109.798314 71.454236) - (xy 109.742317 71.478) - (xy 109.673453 71.466187) - (xy 109.656844 71.455509) - (xy 109.656601 71.455874) - (xy 109.65154 71.452491) - (xy 109.651538 71.45249) - (xy 109.611056 71.430852) - (xy 109.47773 71.359587) - (xy 109.428341 71.344605) - (xy 109.289132 71.302376) - (xy 109.289129 71.302375) - (xy 109.093 71.283059) - (xy 108.89687 71.302375) - (xy 108.708266 71.359588) - (xy 108.534465 71.452487) - (xy 108.529405 71.455869) - (xy 108.528314 71.454236) - (xy 108.472317 71.478) - (xy 108.403453 71.466187) - (xy 108.386844 71.455509) - (xy 108.386601 71.455874) - (xy 108.38154 71.452491) - (xy 108.381538 71.45249) - (xy 108.341056 71.430852) - (xy 108.20773 71.359587) - (xy 108.158341 71.344605) - (xy 108.019132 71.302376) - (xy 108.019129 71.302375) - (xy 107.823 71.283059) - (xy 107.62687 71.302375) - (xy 107.438266 71.359588) - (xy 107.264467 71.452486) - (xy 107.26446 71.45249) - (xy 107.112116 71.577516) - (xy 106.98709 71.72986) - (xy 106.987086 71.729867) - (xy 106.894188 71.903666) - (xy 106.836975 72.09227) - (xy 106.817659 72.2884) - (xy 106.836975 72.484529) - (xy 106.836976 72.484532) - (xy 106.892024 72.666001) - (xy 106.894188 72.673133) - (xy 106.987086 72.846932) - (xy 106.98709 72.846939) - (xy 107.112116 72.999283) - (xy 107.127161 73.011629) - (xy 107.166498 73.069373) - (xy 107.1725 73.107485) - (xy 107.1725 77.276191) - (xy 107.152815 77.34323) - (xy 107.136181 77.363872) - (xy 102.978484 81.521568) - (xy 102.96591 81.531643) - (xy 102.966065 81.53183) - (xy 102.960058 81.536798) - (xy 102.911468 81.588542) - (xy 102.910114 81.589938) - (xy 102.88909 81.610963) - (xy 102.889078 81.610977) - (xy 102.884587 81.616765) - (xy 102.880801 81.621197) - (xy 102.847552 81.656606) - (xy 102.837322 81.675213) - (xy 102.826646 81.691464) - (xy 102.81364 81.708232) - (xy 102.813636 81.708238) - (xy 102.794348 81.752811) - (xy 102.791777 81.758058) - (xy 102.768372 81.80063) - (xy 102.768372 81.800631) - (xy 102.763091 81.821199) - (xy 102.756791 81.839601) - (xy 102.748364 81.859073) - (xy 102.740766 81.907047) - (xy 102.739581 81.91277) - (xy 102.7275 81.959818) - (xy 102.7275 81.981044) - (xy 102.725973 82.000444) - (xy 102.722653 82.021403) - (xy 102.727225 82.069767) - (xy 102.7275 82.075606) - (xy 102.7275 86.705078) - (xy 102.707815 86.772117) - (xy 102.69565 86.78805) - (xy 102.645466 86.843785) - (xy 102.550821 87.007715) - (xy 102.550818 87.007722) - (xy 102.492986 87.185712) - (xy 102.492326 87.187744) - (xy 102.47254 87.376) - (xy 102.492326 87.564256) - (xy 102.492327 87.564259) - (xy 102.550818 87.744277) - (xy 102.550821 87.744284) - (xy 102.645467 87.908216) - (xy 102.741536 88.014911) - (xy 102.772127 88.048886) - (xy 102.773249 88.049896) - (xy 102.773709 88.050642) - (xy 102.776478 88.053718) - (xy 102.775915 88.054224) - (xy 102.809899 88.109381) - (xy 102.80857 88.179238) - (xy 102.769686 88.237288) - (xy 102.714107 88.261468) - (xy 102.714498 88.262989) - (xy 102.706939 88.264929) - (xy 102.661775 88.282811) - (xy 102.656247 88.284703) - (xy 102.609602 88.298255) - (xy 102.596248 88.306152) - (xy 102.592905 88.30813) - (xy 102.591332 88.30906) - (xy 102.573863 88.317618) - (xy 102.554128 88.325432) - (xy 102.554126 88.325433) - (xy 102.514839 88.353977) - (xy 102.509956 88.357184) - (xy 102.468132 88.381919) - (xy 102.453126 88.396926) - (xy 102.438336 88.409558) - (xy 102.421167 88.422032) - (xy 102.421165 88.422034) - (xy 102.390194 88.45947) - (xy 102.386262 88.463791) - (xy 101.200483 89.649569) - (xy 101.18791 89.659643) - (xy 101.188065 89.65983) - (xy 101.182058 89.664798) - (xy 101.133468 89.716542) - (xy 101.132114 89.717938) - (xy 101.11109 89.738963) - (xy 101.111078 89.738977) - (xy 101.106587 89.744765) - (xy 101.102801 89.749197) - (xy 101.069552 89.784606) - (xy 101.059322 89.803213) - (xy 101.048646 89.819464) - (xy 101.03564 89.836232) - (xy 101.035636 89.836238) - (xy 101.016348 89.880811) - (xy 101.013777 89.886058) - (xy 100.990372 89.92863) - (xy 100.990372 89.928631) - (xy 100.985091 89.949199) - (xy 100.978791 89.967601) - (xy 100.970364 89.987073) - (xy 100.962766 90.035047) - (xy 100.961581 90.04077) - (xy 100.9495 90.087818) - (xy 100.9495 90.109044) - (xy 100.947973 90.128444) - (xy 100.944653 90.149403) - (xy 100.944652 90.149405) - (xy 100.949224 90.197769) - (xy 100.949499 90.203606) - (xy 100.9495 90.486042) - (xy 100.929816 90.553081) - (xy 100.890598 90.59158) - (xy 100.881344 90.597287) - (xy 100.757289 90.721342) - (xy 100.665187 90.870663) - (xy 100.665185 90.870668) - (xy 100.64998 90.916554) - (xy 100.610001 91.037203) - (xy 100.610001 91.037204) - (xy 100.61 91.037204) - (xy 100.5995 91.139983) - (xy 100.5995 91.740001) - (xy 100.599501 91.740019) - (xy 100.61 91.842796) - (xy 100.610001 91.842799) - (xy 100.65792 91.987407) - (xy 100.665186 92.009334) - (xy 100.757288 92.158656) - (xy 100.881344 92.282712) - (xy 101.030666 92.374814) - (xy 101.197203 92.429999) - (xy 101.299991 92.4405) - (xy 101.515949 92.440499) - (xy 101.582987 92.460183) - (xy 101.628742 92.512987) - (xy 101.638686 92.582145) - (xy 101.609661 92.645701) - (xy 101.60363 92.65218) - (xy 101.482159 92.773651) - (xy 101.391593 92.920481) - (xy 101.391591 92.920486) - (xy 101.372335 92.978597) - (xy 101.337326 93.084247) - (xy 101.337326 93.084248) - (xy 101.337325 93.084248) - (xy 101.327 93.185315) - (xy 101.327 93.758669) - (xy 101.327001 93.758687) - (xy 101.337325 93.859752) - (xy 101.352248 93.904785) - (xy 101.382084 93.994824) - (xy 101.391592 94.023515) - (xy 101.391593 94.023518) - (xy 101.404205 94.043965) - (xy 101.479919 94.166717) - (xy 101.482161 94.170351) - (xy 101.596038 94.284228) - (xy 101.629523 94.345551) - (xy 101.624539 94.415243) - (xy 101.607624 94.44622) - (xy 101.604454 94.450453) - (xy 101.604454 94.450454) - (xy 101.580922 94.481887) - (xy 101.518203 94.565669) - (xy 101.518202 94.565671) - (xy 101.467908 94.700517) - (xy 101.461501 94.760116) - (xy 101.461501 94.760123) - (xy 101.4615 94.760135) - (xy 101.4615 96.75587) - (xy 101.461501 96.755876) - (xy 101.467908 96.815483) - (xy 101.518202 96.950328) - (xy 101.518206 96.950335) - (xy 101.604452 97.065544) - (xy 101.604453 97.065544) - (xy 101.604454 97.065546) - (xy 101.629415 97.084232) - (xy 101.629418 97.084234) - (xy 101.671288 97.140168) - (xy 101.676272 97.20986) - (xy 101.642786 97.271182) - (xy 101.581462 97.304667) - (xy 101.555106 97.3075) - (xy 100.964129 97.3075) - (xy 100.964123 97.307501) - (xy 100.904516 97.313908) - (xy 100.769671 97.364202) - (xy 100.769664 97.364206) - (xy 100.654455 97.450452) - (xy 100.654452 97.450455) - (xy 100.568206 97.565664) - (xy 100.568202 97.565671) - (xy 100.517908 97.700517) - (xy 100.511709 97.758184) - (xy 100.511501 97.760123) - (xy 100.5115 97.760135) - (xy 100.5115 98.0315) - (xy 100.491815 98.098539) - (xy 100.439011 98.144294) - (xy 100.3875 98.1555) - (xy 99.335858 98.1555) - (xy 99.268819 98.135815) - (xy 99.223064 98.083011) - (xy 99.114288 97.844824) - (xy 99.114275 97.844801) - (xy 98.959578 97.604088) - (xy 98.959574 97.604082) - (xy 98.772181 97.387818) - (xy 98.555917 97.200425) - (xy 98.555911 97.200421) - (xy 98.315198 97.045724) - (xy 98.315175 97.045711) - (xy 98.054894 96.926845) - (xy 97.780328 96.846225) - (xy 97.780318 96.846223) - (xy 97.640301 96.826092) - (xy 97.497079 96.8055) - (xy 97.210921 96.8055) - (xy 97.184961 96.809232) - (xy 96.927682 96.846222) - (xy 96.927672 96.846225) - (xy 96.653106 96.926845) - (xy 96.392825 97.045711) - (xy 96.392802 97.045724) - (xy 96.152089 97.200421) - (xy 96.152083 97.200425) - (xy 95.989957 97.340908) - (xy 95.989931 97.340932) - (xy 95.799684 97.531181) - (xy 95.738361 97.564666) - (xy 95.712003 97.5675) - (xy 90.936223 97.5675) - (xy 90.869184 97.547815) - (xy 90.823429 97.495011) - (xy 90.813485 97.425853) - (xy 90.84251 97.362297) - (xy 90.848542 97.355819) - (xy 90.947015 97.257345) - (xy 91.039056 97.108124) - (xy 91.039058 97.108119) - (xy 91.094205 96.941697) - (xy 91.094206 96.94169) - (xy 91.104699 96.838986) - (xy 91.1047 96.838973) - (xy 91.1047 96.389) - (xy 88.779701 96.389) - (xy 88.779701 96.838986) - (xy 88.790194 96.941697) - (xy 88.845341 97.108119) - (xy 88.845343 97.108124) - (xy 88.937384 97.257345) - (xy 89.035858 97.355819) - (xy 89.069343 97.417142) - (xy 89.064359 97.486834) - (xy 89.022487 97.542767) - (xy 88.957023 97.567184) - (xy 88.948177 97.5675) - (xy 87.81193 97.5675) - (xy 87.744891 97.547815) - (xy 87.699136 97.495011) - (xy 87.689192 97.425853) - (xy 87.718217 97.362297) - (xy 87.724249 97.355819) - (xy 87.772568 97.3075) - (xy 87.822412 97.257656) - (xy 87.914514 97.108334) - (xy 87.969699 96.941797) - (xy 87.9802 96.839009) - (xy 87.980199 95.889) - (xy 88.7797 95.889) - (xy 89.6922 95.889) - (xy 89.6922 94.739) - (xy 90.1922 94.739) - (xy 90.1922 95.889) - (xy 91.104699 95.889) - (xy 91.104699 95.439028) - (xy 91.104698 95.439013) - (xy 91.094205 95.336302) - (xy 91.039058 95.16988) - (xy 91.039056 95.169875) - (xy 90.947015 95.020654) - (xy 90.823045 94.896684) - (xy 90.673824 94.804643) - (xy 90.673819 94.804641) - (xy 90.507397 94.749494) - (xy 90.50739 94.749493) - (xy 90.404686 94.739) - (xy 90.1922 94.739) - (xy 89.6922 94.739) - (xy 89.479729 94.739) - (xy 89.479712 94.739001) - (xy 89.377002 94.749494) - (xy 89.21058 94.804641) - (xy 89.210575 94.804643) - (xy 89.061354 94.896684) - (xy 88.937384 95.020654) - (xy 88.845343 95.169875) - (xy 88.845341 95.16988) - (xy 88.790194 95.336302) - (xy 88.790193 95.336309) - (xy 88.7797 95.439013) - (xy 88.7797 95.889) - (xy 87.980199 95.889) - (xy 87.980199 95.438992) - (xy 87.980015 95.437195) - (xy 87.969699 95.336203) - (xy 87.969698 95.3362) - (xy 87.914514 95.169666) - (xy 87.822412 95.020344) - (xy 87.698356 94.896288) - (xy 87.549034 94.804186) - (xy 87.382497 94.749001) - (xy 87.382495 94.749) - (xy 87.27971 94.7385) - (xy 86.354698 94.7385) - (xy 86.35468 94.738501) - (xy 86.251903 94.749) - (xy 86.2519 94.749001) - (xy 86.085368 94.804185) - (xy 86.085363 94.804187) - (xy 85.936042 94.896289) - (xy 85.811989 95.020342) - (xy 85.719887 95.169663) - (xy 85.719885 95.169668) - (xy 85.719815 95.16988) - (xy 85.675535 95.303505) - (xy 85.635764 95.360949) - (xy 85.571249 95.387772) - (xy 85.557831 95.3885) - (xy 84.81723 95.3885) - (xy 84.750191 95.368815) - (xy 84.729549 95.352181) - (xy 82.930419 93.553051) - (xy 82.896934 93.491728) - (xy 82.8941 93.46537) - (xy 82.8941 91.987407) - (xy 82.913785 91.920368) - (xy 82.966589 91.874613) - (xy 83.035747 91.864669) - (xy 83.099303 91.893694) - (xy 83.105766 91.899712) - (xy 83.624683 92.418629) - (xy 84.086964 92.88091) - (xy 84.097035 92.89348) - (xy 84.097222 92.893326) - (xy 84.102195 92.899337) - (xy 84.102197 92.899339) - (xy 84.102198 92.89934) - (xy 84.124711 92.920481) - (xy 84.153942 92.947931) - (xy 84.155309 92.949255) - (xy 84.176365 92.970311) - (xy 84.176368 92.970313) - (xy 84.182157 92.974805) - (xy 84.186597 92.978597) - (xy 84.215898 93.006111) - (xy 84.222007 93.011848) - (xy 84.225219 93.013614) - (xy 84.240605 93.022072) - (xy 84.25687 93.032757) - (xy 84.273632 93.04576) - (xy 84.273635 93.045761) - (xy 84.273636 93.045762) - (xy 84.318223 93.065056) - (xy 84.323459 93.067621) - (xy 84.366032 93.091027) - (xy 84.38174 93.095059) - (xy 84.386586 93.096304) - (xy 84.404998 93.102607) - (xy 84.424473 93.111035) - (xy 84.472471 93.118637) - (xy 84.47814 93.119811) - (xy 84.525223 93.1319) - (xy 84.546451 93.1319) - (xy 84.565848 93.133426) - (xy 84.586803 93.136745) - (xy 84.586804 93.136746) - (xy 84.586804 93.136745) - (xy 84.586805 93.136746) - (xy 84.63516 93.132175) - (xy 84.640999 93.1319) - (xy 90.813825 93.1319) - (xy 90.880864 93.151585) - (xy 90.88671 93.155582) - (xy 91.038065 93.265548) - (xy 91.03807 93.265551) - (xy 91.210992 93.342542) - (xy 91.210997 93.342544) - (xy 91.396154 93.3819) - (xy 91.396155 93.3819) - (xy 91.585444 93.3819) - (xy 91.585446 93.3819) - (xy 91.770603 93.342544) - (xy 91.94353 93.265551) - (xy 92.096671 93.154288) - (xy 92.223333 93.013616) - (xy 92.317979 92.849684) - (xy 92.376474 92.669656) - (xy 92.39626 92.4814) - (xy 92.376474 92.293144) - (xy 92.317979 92.113116) - (xy 92.223333 91.949184) - (xy 92.096671 91.808512) - (xy 92.077497 91.794581) - (xy 91.943534 91.697251) - (xy 91.943529 91.697248) - (xy 91.770607 91.620257) - (xy 91.770602 91.620255) - (xy 91.6248 91.589265) - (xy 91.585446 91.5809) - (xy 91.396154 91.5809) - (xy 91.363697 91.587798) - (xy 91.210997 91.620255) - (xy 91.210992 91.620257) - (xy 91.03807 91.697248) - (xy 91.038065 91.697251) - (xy 90.88671 91.807218) - (xy 90.820904 91.830698) - (xy 90.813825 91.8309) - (xy 84.928208 91.8309) - (xy 84.861169 91.811215) - (xy 84.840527 91.794581) - (xy 83.998819 90.952873) - (xy 83.965334 90.89155) - (xy 83.9625 90.865192) - (xy 83.9625 88.680703) - (xy 83.964268 88.664691) - (xy 83.964026 88.664669) - (xy 83.96476 88.656905) - (xy 83.964418 88.646005) - (xy 84.600357 88.646005) - (xy 84.62089 88.893812) - (xy 84.620892 88.893824) - (xy 84.681936 89.134881) - (xy 84.781826 89.362606) - (xy 84.917833 89.570782) - (xy 84.917836 89.570785) - (xy 85.086256 89.753738) - (xy 85.282491 89.906474) - (xy 85.314839 89.92398) - (xy 85.500332 90.024364) - (xy 85.50119 90.024828) - (xy 85.684688 90.087823) - (xy 85.734964 90.105083) - (xy 85.736386 90.105571) - (xy 85.981665 90.1465) - (xy 86.230335 90.1465) - (xy 86.475614 90.105571) - (xy 86.71081 90.024828) - (xy 86.929509 89.906474) - (xy 87.125744 89.753738) - (xy 87.294164 89.570785) - (xy 87.430173 89.362607) - (xy 87.530063 89.134881) - (xy 87.591108 88.893821) - (xy 87.591116 88.893729) - (xy 87.611643 88.646005) - (xy 88.410858 88.646005) - (xy 88.431385 88.893729) - (xy 88.431387 88.893738) - (xy 88.492412 89.134717) - (xy 88.592266 89.362364) - (xy 88.692564 89.515882) - (xy 89.432923 88.775523) - (xy 89.456507 88.855844) - (xy 89.534239 88.976798) - (xy 89.6429 89.070952) - (xy 89.773685 89.13068) - (xy 89.783466 89.132086) - (xy 89.045942 89.869609) - (xy 89.092768 89.906055) - (xy 89.09277 89.906056) - (xy 89.311385 90.024364) - (xy 89.311396 90.024369) - (xy 89.546506 90.105083) - (xy 89.791707 90.146) - (xy 90.040293 90.146) - (xy 90.285493 90.105083) - (xy 90.520603 90.024369) - (xy 90.520614 90.024364) - (xy 90.739228 89.906057) - (xy 90.739231 89.906055) - (xy 90.786056 89.869609) - (xy 90.048533 89.132086) - (xy 90.058315 89.13068) - (xy 90.1891 89.070952) - (xy 90.297761 88.976798) - (xy 90.375493 88.855844) - (xy 90.399076 88.775524) - (xy 91.139434 89.515882) - (xy 91.239731 89.362369) - (xy 91.339587 89.134717) - (xy 91.400612 88.893738) - (xy 91.400614 88.893729) - (xy 91.421141 88.646005) - (xy 91.421141 88.645994) - (xy 91.400614 88.39827) - (xy 91.400612 88.398261) - (xy 91.339587 88.157282) - (xy 91.239731 87.92963) - (xy 91.160138 87.807805) - (xy 93.973458 87.807805) - (xy 93.993985 88.055529) - (xy 93.993987 88.055538) - (xy 94.055012 88.296517) - (xy 94.154866 88.524164) - (xy 94.255164 88.677682) - (xy 94.995523 87.937323) - (xy 95.019107 88.017644) - (xy 95.096839 88.138598) - (xy 95.2055 88.232752) - (xy 95.336285 88.29248) - (xy 95.346066 88.293886) - (xy 94.608542 89.031409) - (xy 94.655368 89.067855) - (xy 94.65537 89.067856) - (xy 94.873985 89.186164) - (xy 94.873996 89.186169) - (xy 95.109106 89.266883) - (xy 95.354307 89.3078) - (xy 95.602893 89.3078) - (xy 95.848093 89.266883) - (xy 96.083203 89.186169) - (xy 96.083214 89.186164) - (xy 96.301828 89.067857) - (xy 96.301831 89.067855) - (xy 96.348656 89.031409) - (xy 95.611133 88.293886) - (xy 95.620915 88.29248) - (xy 95.7517 88.232752) - (xy 95.860361 88.138598) - (xy 95.938093 88.017644) - (xy 95.961676 87.937324) - (xy 96.702034 88.677682) - (xy 96.802331 88.524169) - (xy 96.902187 88.296517) - (xy 96.963212 88.055538) - (xy 96.963214 88.055529) - (xy 96.983741 87.807805) - (xy 96.983741 87.807794) - (xy 96.963214 87.56007) - (xy 96.963212 87.560061) - (xy 96.902187 87.319082) - (xy 96.802331 87.09143) - (xy 96.702034 86.937916) - (xy 95.961676 87.678274) - (xy 95.938093 87.597956) - (xy 95.860361 87.477002) - (xy 95.7517 87.382848) - (xy 95.620915 87.32312) - (xy 95.611134 87.321713) - (xy 96.348657 86.58419) - (xy 96.348656 86.584189) - (xy 96.301829 86.547743) - (xy 96.083214 86.429435) - (xy 96.083203 86.42943) - (xy 95.848093 86.348716) - (xy 95.602893 86.3078) - (xy 95.354307 86.3078) - (xy 95.109106 86.348716) - (xy 94.873996 86.42943) - (xy 94.87399 86.429432) - (xy 94.655361 86.547749) - (xy 94.608542 86.584188) - (xy 94.608542 86.58419) - (xy 95.346066 87.321713) - (xy 95.336285 87.32312) - (xy 95.2055 87.382848) - (xy 95.096839 87.477002) - (xy 95.019107 87.597956) - (xy 94.995523 87.678275) - (xy 94.255164 86.937916) - (xy 94.154867 87.091432) - (xy 94.055012 87.319082) - (xy 93.993987 87.560061) - (xy 93.993985 87.56007) - (xy 93.973458 87.807794) - (xy 93.973458 87.807805) - (xy 91.160138 87.807805) - (xy 91.139434 87.776116) - (xy 90.399076 88.516475) - (xy 90.375493 88.436156) - (xy 90.297761 88.315202) - (xy 90.1891 88.221048) - (xy 90.058315 88.16132) - (xy 90.048534 88.159913) - (xy 90.786057 87.42239) - (xy 90.786056 87.422389) - (xy 90.739229 87.385943) - (xy 90.520614 87.267635) - (xy 90.520603 87.26763) - (xy 90.285493 87.186916) - (xy 90.040293 87.146) - (xy 89.791707 87.146) - (xy 89.546506 87.186916) - (xy 89.311396 87.26763) - (xy 89.31139 87.267632) - (xy 89.092761 87.385949) - (xy 89.045942 87.422388) - (xy 89.045942 87.42239) - (xy 89.783466 88.159913) - (xy 89.773685 88.16132) - (xy 89.6429 88.221048) - (xy 89.534239 88.315202) - (xy 89.456507 88.436156) - (xy 89.432923 88.516475) - (xy 88.692564 87.776116) - (xy 88.592267 87.929632) - (xy 88.492412 88.157282) - (xy 88.431387 88.398261) - (xy 88.431385 88.39827) - (xy 88.410858 88.645994) - (xy 88.410858 88.646005) - (xy 87.611643 88.646005) - (xy 87.611643 88.645994) - (xy 87.591109 88.398187) - (xy 87.591107 88.398175) - (xy 87.530063 88.157118) - (xy 87.430173 87.929393) - (xy 87.294166 87.721217) - (xy 87.239513 87.661848) - (xy 87.125744 87.538262) - (xy 86.929509 87.385526) - (xy 86.929507 87.385525) - (xy 86.929506 87.385524) - (xy 86.710811 87.267172) - (xy 86.710802 87.267169) - (xy 86.475616 87.186429) - (xy 86.230335 87.1455) - (xy 85.981665 87.1455) - (xy 85.736383 87.186429) - (xy 85.501197 87.267169) - (xy 85.501188 87.267172) - (xy 85.282493 87.385524) - (xy 85.086257 87.538261) - (xy 84.917833 87.721217) - (xy 84.781826 87.929393) - (xy 84.681936 88.157118) - (xy 84.620892 88.398175) - (xy 84.62089 88.398187) - (xy 84.600357 88.645994) - (xy 84.600357 88.646005) - (xy 83.964418 88.646005) - (xy 83.962531 88.585949) - (xy 83.9625 88.584002) - (xy 83.9625 88.554278) - (xy 83.9625 88.554275) - (xy 83.961579 88.546992) - (xy 83.961123 88.541187) - (xy 83.961099 88.540414) - (xy 83.959598 88.492631) - (xy 83.953676 88.47225) - (xy 83.949731 88.453195) - (xy 83.947072 88.432149) - (xy 83.947071 88.432148) - (xy 83.947071 88.432142) - (xy 83.929189 88.386979) - (xy 83.9273 88.381459) - (xy 83.919816 88.3557) - (xy 83.913745 88.334802) - (xy 83.906294 88.322203) - (xy 83.902936 88.316524) - (xy 83.894378 88.299055) - (xy 83.886568 88.279329) - (xy 83.858006 88.240018) - (xy 83.854818 88.235164) - (xy 83.830081 88.193335) - (xy 83.815075 88.178329) - (xy 83.802435 88.16353) - (xy 83.800853 88.161353) - (xy 83.789963 88.146363) - (xy 83.789961 88.14636) - (xy 83.752528 88.115394) - (xy 83.748206 88.11146) - (xy 83.095834 87.459088) - (xy 83.085761 87.446514) - (xy 83.085574 87.44667) - (xy 83.080598 87.440655) - (xy 83.046857 87.408971) - (xy 83.028832 87.392045) - (xy 83.027458 87.390712) - (xy 83.006435 87.369689) - (xy 83.00064 87.365194) - (xy 82.996198 87.361399) - (xy 82.960796 87.328154) - (xy 82.960788 87.328148) - (xy 82.942192 87.317925) - (xy 82.925931 87.307244) - (xy 82.909163 87.294237) - (xy 82.885695 87.284082) - (xy 82.864578 87.274943) - (xy 82.859356 87.272386) - (xy 82.816768 87.248973) - (xy 82.816765 87.248972) - (xy 82.796201 87.243692) - (xy 82.777796 87.23739) - (xy 82.758327 87.228965) - (xy 82.758321 87.228963) - (xy 82.710351 87.221366) - (xy 82.704636 87.220182) - (xy 82.685997 87.215397) - (xy 82.65758 87.2081) - (xy 82.657577 87.2081) - (xy 82.636355 87.2081) - (xy 82.616955 87.206573) - (xy 82.595996 87.203253) - (xy 82.595995 87.203253) - (xy 82.572186 87.205503) - (xy 82.54763 87.207825) - (xy 82.541792 87.2081) - (xy 81.423575 87.2081) - (xy 81.356536 87.188415) - (xy 81.35069 87.184418) - (xy 81.199334 87.074451) - (xy 81.199329 87.074448) - (xy 81.026407 86.997457) - (xy 81.026402 86.997455) - (xy 80.8806 86.966465) - (xy 80.841246 86.9581) - (xy 80.651954 86.9581) - (xy 80.619497 86.964998) - (xy 80.466797 86.997455) - (xy 80.466792 86.997457) - (xy 80.29387 87.074448) - (xy 80.293865 87.074451) - (xy 80.140729 87.185711) - (xy 80.014066 87.326385) - (xy 79.919421 87.490315) - (xy 79.919418 87.490322) - (xy 79.860927 87.67034) - (xy 79.860926 87.670344) - (xy 79.850559 87.768984) - (xy 79.841898 87.851392) - (xy 79.84114 87.8586) - (xy 79.860926 88.046856) - (xy 79.860927 88.046859) - (xy 79.919418 88.226877) - (xy 79.919421 88.226884) - (xy 80.014067 88.390816) - (xy 80.087393 88.472252) - (xy 80.140729 88.531488) - (xy 80.293865 88.642748) - (xy 80.29387 88.642751) - (xy 80.466792 88.719742) - (xy 80.466797 88.719744) - (xy 80.651954 88.7591) - (xy 80.651955 88.7591) - (xy 80.841244 88.7591) - (xy 80.841246 88.7591) - (xy 80.935494 88.739067) - (xy 81.005161 88.744383) - (xy 81.060895 88.78652) - (xy 81.085 88.8521) - (xy 81.080541 88.894291) - (xy 81.057203 88.976314) - (xy 81.057202 88.976317) - (xy 81.038385 89.179399) - (xy 81.038385 89.1794) - (xy 81.057202 89.382482) - (xy 81.113017 89.578647) - (xy 81.113022 89.57866) - (xy 81.191617 89.736499) - (xy 81.203927 89.761221) - (xy 81.3133 89.906055) - (xy 81.326837 89.92398) - (xy 81.352638 89.947501) - (xy 81.38892 90.007212) - (xy 81.3931 90.039138) - (xy 81.3931 93.763894) - (xy 81.391791 93.781863) - (xy 81.38831 93.805625) - (xy 81.392864 93.857664) - (xy 81.3931 93.86307) - (xy 81.3931 93.871312) - (xy 81.396802 93.902991) - (xy 81.396986 93.904785) - (xy 81.4036 93.980392) - (xy 81.405061 93.987467) - (xy 81.405003 93.987478) - (xy 81.406634 93.994837) - (xy 81.406692 93.994824) - (xy 81.408357 94.001849) - (xy 81.408358 94.001854) - (xy 81.408359 94.001855) - (xy 81.416243 94.023518) - (xy 81.434308 94.073151) - (xy 81.434899 94.074853) - (xy 81.458782 94.146926) - (xy 81.461836 94.153474) - (xy 81.461782 94.153498) - (xy 81.46507 94.160288) - (xy 81.465121 94.160263) - (xy 81.468361 94.166713) - (xy 81.468362 94.166714) - (xy 81.468363 94.166717) - (xy 81.510094 94.230167) - (xy 81.511043 94.231658) - (xy 81.548471 94.292338) - (xy 81.550889 94.296257) - (xy 81.555366 94.301919) - (xy 81.555319 94.301956) - (xy 81.560082 94.307802) - (xy 81.560128 94.307764) - (xy 81.564773 94.313299) - (xy 81.619964 94.365369) - (xy 81.621258 94.366626) - (xy 83.879267 96.624634) - (xy 83.891048 96.638266) - (xy 83.90539 96.65753) - (xy 83.94542 96.691119) - (xy 83.949392 96.694759) - (xy 83.952312 96.697679) - (xy 83.95522 96.700588) - (xy 83.980252 96.720381) - (xy 83.981649 96.721519) - (xy 83.995928 96.7335) - (xy 84.039786 96.770302) - (xy 84.039794 96.770306) - (xy 84.045824 96.774273) - (xy 84.04579 96.774323) - (xy 84.052137 96.778366) - (xy 84.052169 96.778316) - (xy 84.058321 96.78211) - (xy 84.058322 96.78211) - (xy 84.058323 96.782111) - (xy 84.127143 96.814202) - (xy 84.128692 96.814952) - (xy 84.196567 96.84904) - (xy 84.196576 96.849042) - (xy 84.203355 96.85151) - (xy 84.203334 96.851567) - (xy 84.210451 96.85404) - (xy 84.21047 96.853984) - (xy 84.217324 96.856254) - (xy 84.217327 96.856256) - (xy 84.291715 96.871615) - (xy 84.293352 96.871978) - (xy 84.367279 96.8895) - (xy 84.367285 96.8895) - (xy 84.374452 96.890338) - (xy 84.374445 96.890397) - (xy 84.381946 96.891163) - (xy 84.381952 96.891104) - (xy 84.389141 96.891733) - (xy 84.389143 96.891732) - (xy 84.389144 96.891733) - (xy 84.410764 96.891104) - (xy 84.465012 96.889526) - (xy 84.466815 96.8895) - (xy 85.55783 96.8895) - (xy 85.624869 96.909185) - (xy 85.670624 96.961989) - (xy 85.675536 96.974495) - (xy 85.719886 97.108334) - (xy 85.811796 97.257345) - (xy 85.811989 97.257657) - (xy 85.910151 97.355819) - (xy 85.943636 97.417142) - (xy 85.938652 97.486834) - (xy 85.89678 97.542767) - (xy 85.831316 97.567184) - (xy 85.82247 97.5675) - (xy 77.5785 97.5675) - (xy 77.511461 97.547815) - (xy 77.465706 97.495011) - (xy 77.4545 97.4435) - (xy 77.4545 96.131269) - (xy 77.474185 96.06423) - (xy 77.526989 96.018475) - (xy 77.539486 96.013566) - (xy 77.673334 95.969214) - (xy 77.822656 95.877112) - (xy 77.946712 95.753056) - (xy 78.038814 95.603734) - (xy 78.093999 95.437197) - (xy 78.1045 95.334409) - (xy 78.104499 92.234392) - (xy 78.096762 92.158656) - (xy 78.093999 92.131603) - (xy 78.093998 92.1316) - (xy 78.087873 92.113115) - (xy 78.038814 91.965066) - (xy 77.946712 91.815744) - (xy 77.822656 91.691688) - (xy 77.673334 91.599586) - (xy 77.506797 91.544401) - (xy 77.506795 91.5444) - (xy 77.40401 91.5339) - (xy 75.503998 91.5339) - (xy 75.503981 91.533901) - (xy 75.401203 91.5444) - (xy 75.4012 91.544401) - (xy 75.234668 91.599585) - (xy 75.234663 91.599587) - (xy 75.085342 91.691689) - (xy 74.961289 91.815742) - (xy 74.869187 91.965063) - (xy 74.869185 91.965066) - (xy 74.869186 91.965066) - (xy 74.814001 92.131603) - (xy 74.814001 92.131604) - (xy 74.814 92.131604) - (xy 74.8035 92.234383) - (xy 74.8035 95.334401) - (xy 74.803501 95.334418) - (xy 74.814 95.437196) - (xy 74.814001 95.437199) - (xy 74.869185 95.603731) - (xy 74.869187 95.603736) - (xy 74.869745 95.604641) - (xy 74.961288 95.753056) - (xy 75.085344 95.877112) - (xy 75.234666 95.969214) - (xy 75.368505 96.013564) - (xy 75.425949 96.053336) - (xy 75.452772 96.117851) - (xy 75.4535 96.131269) - (xy 75.4535 97.530478) - (xy 75.433815 97.597517) - (xy 75.381011 97.643272) - (xy 75.372843 97.646656) - (xy 75.112838 97.743633) - (xy 75.112839 97.743633) - (xy 75.096902 97.752335) - (xy 75.03748 97.7675) - (xy 74.598129 97.7675) - (xy 74.598123 97.767501) - (xy 74.538516 97.773908) - (xy 74.403671 97.824202) - (xy 74.403664 97.824206) - (xy 74.288455 97.910452) - (xy 74.288452 97.910455) - (xy 74.202206 98.025664) - (xy 74.202202 98.025671) - (xy 74.151908 98.160517) - (xy 74.145501 98.220116) - (xy 74.1455 98.220135) - (xy 74.1455 98.65948) - (xy 74.130333 98.718905) - (xy 74.121637 98.734831) - (xy 74.121633 98.734838) - (xy 74.021628 99.002962) - (xy 73.960804 99.282566) - (xy 73.94039 99.567998) - (xy 73.94039 99.568001) - (xy 73.960804 99.853433) - (xy 74.021628 100.133037) - (xy 74.02163 100.133043) - (xy 74.021631 100.133046) - (xy 74.071721 100.267341) - (xy 74.121633 100.401161) - (xy 74.121636 100.401166) - (xy 74.130332 100.417092) - (xy 74.1455 100.476519) - (xy 74.1455 100.91587) - (xy 74.145501 100.915876) - (xy 74.151908 100.975483) - (xy 74.202202 101.110328) - (xy 74.202206 101.110335) - (xy 74.288452 101.225544) - (xy 74.288455 101.225547) - (xy 74.403664 101.311793) - (xy 74.403671 101.311797) - (xy 74.448618 101.32856) - (xy 74.538517 101.362091) - (xy 74.598127 101.3685) - (xy 75.037479 101.368499) - (xy 75.096906 101.383667) - (xy 75.112839 101.392367) - (xy 75.380954 101.492369) - (xy 75.38096 101.49237) - (xy 75.380962 101.492371) - (xy 75.660566 101.553195) - (xy 75.660568 101.553195) - (xy 75.660572 101.553196) - (xy 75.874552 101.5685) - (xy 86.821952 101.5685) - (xy 91.1283 101.5685) - (xy 91.195339 101.588185) - (xy 91.241094 101.640989) - (xy 91.2523 101.6925) - (xy 91.2523 107.204817) - (xy 91.232615 107.271856) - (xy 91.215981 107.292498) - (xy 88.633891 109.874587) - (xy 88.632767 109.875683) - (xy 88.568746 109.936542) - (xy 88.533699 109.986894) - (xy 88.530862 109.990656) - (xy 88.492102 110.038192) - (xy 88.492099 110.038197) - (xy 88.476192 110.068647) - (xy 88.472124 110.075361) - (xy 88.452502 110.103554) - (xy 88.428309 110.15993) - (xy 88.426288 110.164184) - (xy 88.397891 110.218551) - (xy 88.39789 110.218552) - (xy 88.38844 110.251575) - (xy 88.385807 110.258971) - (xy 88.372259 110.290543) - (xy 88.359913 110.350619) - (xy 88.35879 110.355195) - (xy 88.341913 110.414177) - (xy 88.341913 110.414179) - (xy 88.339303 110.448441) - (xy 88.338214 110.456208) - (xy 88.33278 110.482652) - (xy 88.3313 110.489858) - (xy 88.3313 110.551197) - (xy 88.331121 110.555906) - (xy 88.326462 110.617074) - (xy 88.328507 110.633127) - (xy 88.330803 110.65116) - (xy 88.3313 110.658988) - (xy 88.331299 113.633833) - (xy 88.311614 113.700872) - (xy 88.25881 113.746627) - (xy 88.189652 113.756571) - (xy 88.126096 113.727546) - (xy 88.10349 113.701653) - (xy 88.056168 113.629219) - (xy 87.976047 113.542185) - (xy 87.887744 113.446262) - (xy 87.691509 113.293526) - (xy 87.691507 113.293525) - (xy 87.691506 113.293524) - (xy 87.472811 113.175172) - (xy 87.472802 113.175169) - (xy 87.237616 113.094429) - (xy 86.992335 113.0535) - (xy 86.743665 113.0535) - (xy 86.498383 113.094429) - (xy 86.263197 113.175169) - (xy 86.263188 113.175172) - (xy 86.044493 113.293524) - (xy 85.848257 113.446261) - (xy 85.679833 113.629217) - (xy 85.543826 113.837393) - (xy 85.443936 114.065118) - (xy 85.382892 114.306175) - (xy 85.38289 114.306187) - (xy 85.362357 114.553994) - (xy 85.362357 114.554005) - (xy 85.38289 114.801812) - (xy 85.382892 114.801824) - (xy 85.443936 115.042881) - (xy 85.543826 115.270606) - (xy 85.679833 115.478782) - (xy 85.679836 115.478785) - (xy 85.848256 115.661738) - (xy 86.044491 115.814474) - (xy 86.044493 115.814475) - (xy 86.262332 115.932364) - (xy 86.26319 115.932828) - (xy 86.377332 115.972013) - (xy 86.496964 116.013083) - (xy 86.498386 116.013571) - (xy 86.743665 116.0545) - (xy 86.992335 116.0545) - (xy 87.237614 116.013571) - (xy 87.47281 115.932828) - (xy 87.691509 115.814474) - (xy 87.887744 115.661738) - (xy 88.056164 115.478785) - (xy 88.103491 115.406344) - (xy 88.156637 115.360988) - (xy 88.225868 115.351564) - (xy 88.289204 115.381065) - (xy 88.326536 115.440125) - (xy 88.3313 115.474166) - (xy 88.3313 116.750306) - (xy 88.33128 116.75187) - (xy 88.329949 116.804413) - (xy 88.329043 116.840162) - (xy 88.329043 116.84017) - (xy 88.339864 116.900539) - (xy 88.340518 116.905204) - (xy 88.346725 116.96623) - (xy 88.346727 116.966244) - (xy 88.357008 116.999013) - (xy 88.358879 117.006637) - (xy 88.364942 117.040452) - (xy 88.364942 117.040455) - (xy 88.387694 117.097412) - (xy 88.389274 117.101851) - (xy 88.407641 117.160388) - (xy 88.407644 117.160395) - (xy 88.424309 117.190419) - (xy 88.427679 117.197514) - (xy 88.440422 117.229414) - (xy 88.440427 117.229424) - (xy 88.474177 117.280633) - (xy 88.476618 117.284663) - (xy 88.506388 117.338298) - (xy 88.506389 117.338299) - (xy 88.506391 117.338302) - (xy 88.528768 117.364367) - (xy 88.533493 117.370635) - (xy 88.546063 117.389706) - (xy 88.552398 117.399319) - (xy 88.595778 117.442699) - (xy 88.598969 117.446143) - (xy 88.638931 117.492692) - (xy 88.638934 117.492695) - (xy 88.666094 117.513718) - (xy 88.671989 117.518911) - (xy 89.373042 118.219963) - (xy 89.374101 118.22105) - (xy 89.434937 118.28505) - (xy 89.434941 118.285053) - (xy 89.485281 118.320092) - (xy 89.489043 118.322928) - (xy 89.536587 118.361694) - (xy 89.53659 118.361695) - (xy 89.536593 118.361698) - (xy 89.567045 118.377604) - (xy 89.573758 118.381672) - (xy 89.601951 118.401295) - (xy 89.658329 118.425489) - (xy 89.662578 118.427507) - (xy 89.716951 118.455909) - (xy 89.744489 118.463788) - (xy 89.749974 118.465358) - (xy 89.757368 118.46799) - (xy 89.788942 118.48154) - (xy 89.788945 118.48154) - (xy 89.788946 118.481541) - (xy 89.849022 118.493887) - (xy 89.8536 118.49501) - (xy 89.867501 118.498987) - (xy 89.912582 118.511887) - (xy 89.946839 118.514495) - (xy 89.954614 118.515586) - (xy 89.988255 118.5225) - (xy 89.988259 118.5225) - (xy 90.049599 118.5225) - (xy 90.054305 118.522678) - (xy 90.089063 118.525325) - (xy 90.115476 118.527337) - (xy 90.115476 118.527336) - (xy 90.115477 118.527337) - (xy 90.14956 118.522996) - (xy 90.15739 118.5225) - (xy 90.423501 118.5225) - (xy 90.49054 118.542185) - (xy 90.536295 118.594989) - (xy 90.547501 118.6465) - (xy 90.547501 119.072018) - (xy 90.558 119.174796) - (xy 90.558001 119.174799) - (xy 90.595143 119.286884) - (xy 90.613186 119.341334) - (xy 90.705288 119.490656) - (xy 90.829344 119.614712) - (xy 90.888596 119.651258) - (xy 90.935321 119.703204) - (xy 90.9475 119.756797) - (xy 90.9475 121.144506) - (xy 90.94748 121.146076) - (xy 90.945243 121.234362) - (xy 90.945243 121.23437) - (xy 90.956064 121.294739) - (xy 90.956718 121.299404) - (xy 90.962925 121.36043) - (xy 90.962927 121.360444) - (xy 90.973208 121.393213) - (xy 90.975079 121.400837) - (xy 90.981142 121.434652) - (xy 90.981142 121.434655) - (xy 91.003894 121.491612) - (xy 91.005474 121.496051) - (xy 91.023841 121.554588) - (xy 91.023844 121.554595) - (xy 91.040509 121.584619) - (xy 91.043879 121.591714) - (xy 91.056622 121.623614) - (xy 91.056627 121.623624) - (xy 91.090377 121.674833) - (xy 91.092818 121.678863) - (xy 91.122588 121.732498) - (xy 91.122589 121.732499) - (xy 91.122591 121.732502) - (xy 91.144968 121.758567) - (xy 91.149693 121.764835) - (xy 91.162263 121.783906) - (xy 91.168598 121.793519) - (xy 91.211978 121.836899) - (xy 91.215169 121.840343) - (xy 91.255131 121.886892) - (xy 91.25513 121.886892) - (xy 91.282299 121.907923) - (xy 91.288186 121.913107) - (xy 93.412899 124.037819) - (xy 93.446384 124.099142) - (xy 93.4414 124.168834) - (xy 93.399528 124.224767) - (xy 93.334064 124.249184) - (xy 93.325218 124.2495) - (xy 70.8745 124.2495) - (xy 70.807461 124.229815) - (xy 70.761706 124.177011) - (xy 70.7505 124.1255) - (xy 70.7505 114.554005) - (xy 81.298859 114.554005) - (xy 81.319385 114.801729) - (xy 81.319387 114.801738) - (xy 81.380412 115.042717) - (xy 81.480266 115.270364) - (xy 81.580564 115.423882) - (xy 82.320923 114.683523) - (xy 82.344507 114.763844) - (xy 82.422239 114.884798) - (xy 82.5309 114.978952) - (xy 82.661685 115.03868) - (xy 82.671466 115.040086) - (xy 81.933942 115.777609) - (xy 81.980768 115.814055) - (xy 81.98077 115.814056) - (xy 82.199385 115.932364) - (xy 82.199396 115.932369) - (xy 82.434506 116.013083) - (xy 82.679707 116.054) - (xy 82.928293 116.054) - (xy 83.173493 116.013083) - (xy 83.408603 115.932369) - (xy 83.408614 115.932364) - (xy 83.627228 115.814057) - (xy 83.627231 115.814055) - (xy 83.674056 115.777609) - (xy 82.936533 115.040086) - (xy 82.946315 115.03868) - (xy 83.0771 114.978952) - (xy 83.185761 114.884798) - (xy 83.263493 114.763844) - (xy 83.287076 114.683524) - (xy 84.027434 115.423882) - (xy 84.127731 115.270369) - (xy 84.227587 115.042717) - (xy 84.288612 114.801738) - (xy 84.288614 114.801729) - (xy 84.309141 114.554005) - (xy 84.309141 114.553994) - (xy 84.288614 114.30627) - (xy 84.288612 114.306261) - (xy 84.227587 114.065282) - (xy 84.127731 113.83763) - (xy 84.027434 113.684116) - (xy 83.287076 114.424475) - (xy 83.263493 114.344156) - (xy 83.185761 114.223202) - (xy 83.0771 114.129048) - (xy 82.946315 114.06932) - (xy 82.936534 114.067913) - (xy 83.674057 113.33039) - (xy 83.674056 113.330389) - (xy 83.627229 113.293943) - (xy 83.408614 113.175635) - (xy 83.408603 113.17563) - (xy 83.173493 113.094916) - (xy 82.928293 113.054) - (xy 82.679707 113.054) - (xy 82.434506 113.094916) - (xy 82.199396 113.17563) - (xy 82.19939 113.175632) - (xy 81.980761 113.293949) - (xy 81.933942 113.330388) - (xy 81.933942 113.33039) - (xy 82.671466 114.067913) - (xy 82.661685 114.06932) - (xy 82.5309 114.129048) - (xy 82.422239 114.223202) - (xy 82.344507 114.344156) - (xy 82.320923 114.424475) - (xy 81.580564 113.684116) - (xy 81.480267 113.837632) - (xy 81.380412 114.065282) - (xy 81.319387 114.306261) - (xy 81.319385 114.30627) - (xy 81.298859 114.553994) - (xy 81.298859 114.554005) - (xy 70.7505 114.554005) - (xy 70.7505 109.728004) - (xy 74.140953 109.728004) - (xy 74.161113 109.997026) - (xy 74.161113 109.997028) - (xy 74.221142 110.260033) - (xy 74.221148 110.260052) - (xy 74.319709 110.511181) - (xy 74.319708 110.511181) - (xy 74.454602 110.744822) - (xy 74.508294 110.812151) - (xy 75.343452 109.976993) - (xy 75.353188 110.006956) - (xy 75.441186 110.145619) - (xy 75.560903 110.25804) - (xy 75.69551 110.332041) - (xy 74.860848 111.166702) - (xy 75.043483 111.29122) - (xy 75.043485 111.291221) - (xy 75.286539 111.408269) - (xy 75.286537 111.408269) - (xy 75.544337 111.48779) - (xy 75.544343 111.487792) - (xy 75.811101 111.527999) - (xy 75.81111 111.528) - (xy 76.08089 111.528) - (xy 76.080898 111.527999) - (xy 76.347656 111.487792) - (xy 76.347662 111.48779) - (xy 76.605461 111.408269) - (xy 76.848521 111.291218) - (xy 77.03115 111.166702) - (xy 76.193534 110.329086) - (xy 76.261629 110.302126) - (xy 76.394492 110.205595) - (xy 76.499175 110.079055) - (xy 76.547631 109.976079) - (xy 77.383703 110.812151) - (xy 77.383704 110.81215) - (xy 77.437393 110.744828) - (xy 77.4374 110.744817) - (xy 77.57229 110.511181) - (xy 77.670851 110.260052) - (xy 77.670857 110.260033) - (xy 77.730886 109.997028) - (xy 77.730886 109.997026) - (xy 77.751047 109.728004) - (xy 77.751047 109.727995) - (xy 77.730886 109.458973) - (xy 77.730886 109.458971) - (xy 77.670857 109.195966) - (xy 77.670851 109.195947) - (xy 77.57229 108.944818) - (xy 77.572291 108.944818) - (xy 77.437397 108.711177) - (xy 77.383704 108.643847) - (xy 76.548546 109.479004) - (xy 76.538812 109.449044) - (xy 76.450814 109.310381) - (xy 76.331097 109.19796) - (xy 76.196487 109.123957) - (xy 77.03115 108.289296) - (xy 76.848517 108.164779) - (xy 76.848516 108.164778) - (xy 76.60546 108.04773) - (xy 76.605462 108.04773) - (xy 76.347662 107.968209) - (xy 76.347656 107.968207) - (xy 76.080898 107.928) - (xy 75.811101 107.928) - (xy 75.544343 107.968207) - (xy 75.544337 107.968209) - (xy 75.286538 108.04773) - (xy 75.043485 108.164778) - (xy 75.043476 108.164783) - (xy 74.860848 108.289296) - (xy 75.698465 109.126913) - (xy 75.630371 109.153874) - (xy 75.497508 109.250405) - (xy 75.392825 109.376945) - (xy 75.344368 109.479921) - (xy 74.508295 108.643848) - (xy 74.4546 108.71118) - (xy 74.319709 108.944818) - (xy 74.221148 109.195947) - (xy 74.221142 109.195966) - (xy 74.161113 109.458971) - (xy 74.161113 109.458973) - (xy 74.140953 109.727995) - (xy 74.140953 109.728004) - (xy 70.7505 109.728004) - (xy 70.7505 104.648004) - (xy 74.140451 104.648004) - (xy 74.160616 104.917101) - (xy 74.220664 105.180188) - (xy 74.220666 105.180195) - (xy 74.311574 105.411824) - (xy 74.319257 105.431398) - (xy 74.454185 105.665102) - (xy 74.59008 105.835509) - (xy 74.622442 105.876089) - (xy 74.766955 106.010176) - (xy 74.820259 106.059635) - (xy 75.043226 106.211651) - (xy 75.286359 106.328738) - (xy 75.544228 106.40828) - (xy 75.544229 106.40828) - (xy 75.544232 106.408281) - (xy 75.811063 106.448499) - (xy 75.811068 106.448499) - (xy 75.811071 106.4485) - (xy 75.811072 106.4485) - (xy 76.080928 106.4485) - (xy 76.080929 106.4485) - (xy 76.080936 106.448499) - (xy 76.347767 106.408281) - (xy 76.347768 106.40828) - (xy 76.347772 106.40828) - (xy 76.605641 106.328738) - (xy 76.848775 106.211651) - (xy 77.071741 106.059635) - (xy 77.269561 105.876085) - (xy 77.437815 105.665102) - (xy 77.572743 105.431398) - (xy 77.594015 105.377197) - (xy 77.636831 105.321984) - (xy 77.702701 105.298683) - (xy 77.709443 105.2985) - (xy 82.247745 105.2985) - (xy 82.314784 105.318185) - (xy 82.32063 105.322182) - (xy 82.402065 105.381348) - (xy 82.40207 105.381351) - (xy 82.574992 105.458342) - (xy 82.574997 105.458344) - (xy 82.760154 105.4977) - (xy 82.760155 105.4977) - (xy 82.949444 105.4977) - (xy 82.949446 105.4977) - (xy 83.134603 105.458344) - (xy 83.300221 105.384605) - (xy 87.318157 105.384605) - (xy 87.33869 105.632412) - (xy 87.338692 105.632424) - (xy 87.399736 105.873481) - (xy 87.499626 106.101206) - (xy 87.635633 106.309382) - (xy 87.65345 106.328736) - (xy 87.804056 106.492338) - (xy 88.000291 106.645074) - (xy 88.21899 106.763428) - (xy 88.454186 106.844171) - (xy 88.699465 106.8851) - (xy 88.948135 106.8851) - (xy 89.193414 106.844171) - (xy 89.42861 106.763428) - (xy 89.647309 106.645074) - (xy 89.843544 106.492338) - (xy 90.011964 106.309385) - (xy 90.147973 106.101207) - (xy 90.247863 105.873481) - (xy 90.308908 105.632421) - (xy 90.317602 105.5275) - (xy 90.329443 105.384605) - (xy 90.329443 105.384594) - (xy 90.308909 105.136787) - (xy 90.308907 105.136775) - (xy 90.247863 104.895718) - (xy 90.147973 104.667993) - (xy 90.011966 104.459817) - (xy 89.963672 104.407356) - (xy 89.843544 104.276862) - (xy 89.647309 104.124126) - (xy 89.647307 104.124125) - (xy 89.647306 104.124124) - (xy 89.428611 104.005772) - (xy 89.428602 104.005769) - (xy 89.193416 103.925029) - (xy 88.948135 103.8841) - (xy 88.699465 103.8841) - (xy 88.454183 103.925029) - (xy 88.218997 104.005769) - (xy 88.218988 104.005772) - (xy 88.000293 104.124124) - (xy 87.804057 104.276861) - (xy 87.635633 104.459817) - (xy 87.499626 104.667993) - (xy 87.399736 104.895718) - (xy 87.338692 105.136775) - (xy 87.33869 105.136787) - (xy 87.318157 105.384594) - (xy 87.318157 105.384605) - (xy 83.300221 105.384605) - (xy 83.30753 105.381351) - (xy 83.460671 105.270088) - (xy 83.587333 105.129416) - (xy 83.681979 104.965484) - (xy 83.740474 104.785456) - (xy 83.76026 104.5972) - (xy 83.740474 104.408944) - (xy 83.681979 104.228916) - (xy 83.587333 104.064984) - (xy 83.460671 103.924312) - (xy 83.46067 103.924311) - (xy 83.307534 103.813051) - (xy 83.307529 103.813048) - (xy 83.134607 103.736057) - (xy 83.134602 103.736055) - (xy 82.9888 103.705065) - (xy 82.949446 103.6967) - (xy 82.760154 103.6967) - (xy 82.727697 103.703598) - (xy 82.574997 103.736055) - (xy 82.574992 103.736057) - (xy 82.40207 103.813048) - (xy 82.402065 103.813051) - (xy 82.248929 103.924311) - (xy 82.219972 103.956472) - (xy 82.160485 103.993121) - (xy 82.127822 103.9975) - (xy 77.709443 103.9975) - (xy 77.642404 103.977815) - (xy 77.596649 103.925011) - (xy 77.594015 103.918802) - (xy 77.572743 103.864602) - (xy 77.437815 103.630898) - (xy 77.269561 103.419915) - (xy 77.26956 103.419914) - (xy 77.269557 103.41991) - (xy 77.071741 103.236365) - (xy 76.986926 103.178539) - (xy 76.848775 103.084349) - (xy 76.848769 103.084346) - (xy 76.848768 103.084345) - (xy 76.848767 103.084344) - (xy 76.605643 102.967263) - (xy 76.605645 102.967263) - (xy 76.347773 102.88772) - (xy 76.347767 102.887718) - (xy 76.080936 102.8475) - (xy 76.080929 102.8475) - (xy 75.811071 102.8475) - (xy 75.811063 102.8475) - (xy 75.544232 102.887718) - (xy 75.544226 102.88772) - (xy 75.286358 102.967262) - (xy 75.04323 103.084346) - (xy 74.820258 103.236365) - (xy 74.622442 103.41991) - (xy 74.454185 103.630898) - (xy 74.319258 103.864599) - (xy 74.319256 103.864603) - (xy 74.220666 104.115804) - (xy 74.220664 104.115811) - (xy 74.160616 104.378898) - (xy 74.140451 104.647995) - (xy 74.140451 104.648004) - (xy 70.7505 104.648004) - (xy 70.7505 88.6344) - (xy 74.804001 88.6344) - (xy 74.804001 89.934386) - (xy 74.814494 90.037097) - (xy 74.869641 90.203519) - (xy 74.869643 90.203524) - (xy 74.961684 90.352745) - (xy 75.085654 90.476715) - (xy 75.234875 90.568756) - (xy 75.23488 90.568758) - (xy 75.401302 90.623905) - (xy 75.401309 90.623906) - (xy 75.504019 90.634399) - (xy 76.203999 90.634399) - (xy 76.204 90.634398) - (xy 76.204 88.6344) - (xy 76.704 88.6344) - (xy 76.704 90.634399) - (xy 77.403972 90.634399) - (xy 77.403986 90.634398) - (xy 77.506697 90.623905) - (xy 77.673119 90.568758) - (xy 77.673124 90.568756) - (xy 77.822345 90.476715) - (xy 77.946315 90.352745) - (xy 78.038356 90.203524) - (xy 78.038358 90.203519) - (xy 78.093505 90.037097) - (xy 78.093506 90.03709) - (xy 78.103999 89.934386) - (xy 78.104 89.934373) - (xy 78.104 88.6344) - (xy 76.704 88.6344) - (xy 76.204 88.6344) - (xy 74.804001 88.6344) - (xy 70.7505 88.6344) - (xy 70.7505 88.1344) - (xy 74.804 88.1344) - (xy 76.204 88.1344) - (xy 76.204 86.1344) - (xy 76.704 86.1344) - (xy 76.704 88.1344) - (xy 78.103999 88.1344) - (xy 78.103999 86.834428) - (xy 78.103998 86.834413) - (xy 78.093505 86.731702) - (xy 78.038358 86.56528) - (xy 78.038356 86.565275) - (xy 77.946315 86.416054) - (xy 77.822345 86.292084) - (xy 77.673124 86.200043) - (xy 77.673119 86.200041) - (xy 77.506697 86.144894) - (xy 77.50669 86.144893) - (xy 77.403986 86.1344) - (xy 76.704 86.1344) - (xy 76.204 86.1344) - (xy 75.504028 86.1344) - (xy 75.504012 86.134401) - (xy 75.401302 86.144894) - (xy 75.23488 86.200041) - (xy 75.234875 86.200043) - (xy 75.085654 86.292084) - (xy 74.961684 86.416054) - (xy 74.869643 86.565275) - (xy 74.869641 86.56528) - (xy 74.814494 86.731702) - (xy 74.814493 86.731709) - (xy 74.804 86.834413) - (xy 74.804 88.1344) - (xy 70.7505 88.1344) - (xy 70.7505 84.048605) - (xy 94.049157 84.048605) - (xy 94.06969 84.296412) - (xy 94.069692 84.296424) - (xy 94.130736 84.537481) - (xy 94.230626 84.765206) - (xy 94.366633 84.973382) - (xy 94.366636 84.973385) - (xy 94.535056 85.156338) - (xy 94.731291 85.309074) - (xy 94.94999 85.427428) - (xy 95.185186 85.508171) - (xy 95.430465 85.5491) - (xy 95.679135 85.5491) - (xy 95.924414 85.508171) - (xy 96.15961 85.427428) - (xy 96.378309 85.309074) - (xy 96.574544 85.156338) - (xy 96.742964 84.973385) - (xy 96.878973 84.765207) - (xy 96.978863 84.537481) - (xy 97.039908 84.296421) - (xy 97.040408 84.290388) - (xy 97.060443 84.048605) - (xy 97.060443 84.048594) - (xy 97.039909 83.800787) - (xy 97.039907 83.800775) - (xy 96.978863 83.559718) - (xy 96.878973 83.331993) - (xy 96.742966 83.123817) - (xy 96.675792 83.050847) - (xy 96.574544 82.940862) - (xy 96.378309 82.788126) - (xy 96.378307 82.788125) - (xy 96.378306 82.788124) - (xy 96.159611 82.669772) - (xy 96.159602 82.669769) - (xy 95.924416 82.589029) - (xy 95.679135 82.5481) - (xy 95.430465 82.5481) - (xy 95.185183 82.589029) - (xy 94.949997 82.669769) - (xy 94.949988 82.669772) - (xy 94.731293 82.788124) - (xy 94.535057 82.940861) - (xy 94.366633 83.123817) - (xy 94.230626 83.331993) - (xy 94.130736 83.559718) - (xy 94.069692 83.800775) - (xy 94.06969 83.800787) - (xy 94.049157 84.048594) - (xy 94.049157 84.048605) - (xy 70.7505 84.048605) - (xy 70.7505 74.893401) - (xy 71.730746 74.893401) - (xy 71.740745 75.103327) - (xy 71.790296 75.307578) - (xy 71.790298 75.307582) - (xy 71.877598 75.498743) - (xy 71.877601 75.498748) - (xy 71.877602 75.49875) - (xy 71.877604 75.498753) - (xy 71.983361 75.647268) - (xy 71.999515 75.669953) - (xy 72.102082 75.76775) - (xy 72.137017 75.828259) - (xy 72.133692 75.898049) - (xy 72.093164 75.954963) - (xy 72.08161 75.963031) - (xy 72.016344 76.003287) - (xy 71.892289 76.127342) - (xy 71.800187 76.276663) - (xy 71.800185 76.276668) - (xy 71.795702 76.290198) - (xy 71.745001 76.443203) - (xy 71.745001 76.443204) - (xy 71.745 76.443204) - (xy 71.7345 76.545983) - (xy 71.7345 77.346001) - (xy 71.734501 77.346019) - (xy 71.745 77.448796) - (xy 71.745001 77.448799) - (xy 71.800185 77.615331) - (xy 71.800187 77.615336) - (xy 71.801581 77.617596) - (xy 71.892288 77.764656) - (xy 72.016344 77.888712) - (xy 72.165666 77.980814) - (xy 72.332203 78.035999) - (xy 72.393424 78.042253) - (xy 72.458115 78.068649) - (xy 72.486359 78.100513) - (xy 72.517287 78.150655) - (xy 72.521766 78.156319) - (xy 72.521719 78.156356) - (xy 72.526482 78.162202) - (xy 72.526528 78.162164) - (xy 72.531173 78.167699) - (xy 72.586365 78.21977) - (xy 72.587659 78.221027) - (xy 73.136268 78.769635) - (xy 73.148049 78.783267) - (xy 73.16239 78.80253) - (xy 73.20242 78.836119) - (xy 73.206392 78.839759) - (xy 73.208161 78.841528) - (xy 73.212221 78.845589) - (xy 73.23725 78.865379) - (xy 73.238646 78.866517) - (xy 73.296786 78.915302) - (xy 73.296787 78.915302) - (xy 73.296789 78.915304) - (xy 73.302818 78.91927) - (xy 73.302785 78.919319) - (xy 73.309143 78.923369) - (xy 73.309175 78.923319) - (xy 73.315317 78.927107) - (xy 73.315319 78.927108) - (xy 73.315323 78.927111) - (xy 73.377851 78.956268) - (xy 73.384132 78.959197) - (xy 73.385754 78.959983) - (xy 73.453567 78.99404) - (xy 73.453569 78.99404) - (xy 73.460361 78.996513) - (xy 73.46034 78.99657) - (xy 73.467455 78.999043) - (xy 73.467475 78.998986) - (xy 73.474324 79.001256) - (xy 73.474327 79.001256) - (xy 73.474328 79.001257) - (xy 73.548705 79.016613) - (xy 73.550414 79.016993) - (xy 73.574415 79.022681) - (xy 73.624273 79.034499) - (xy 73.624276 79.034499) - (xy 73.624279 79.0345) - (xy 73.624282 79.0345) - (xy 73.631452 79.035338) - (xy 73.631444 79.035397) - (xy 73.638945 79.036164) - (xy 73.638951 79.036105) - (xy 73.64614 79.036734) - (xy 73.646144 79.036733) - (xy 73.646145 79.036734) - (xy 73.67423 79.035916) - (xy 73.722033 79.034526) - (xy 73.723836 79.0345) - (xy 79.668279 79.0345) - (xy 79.732359 79.0345) - (xy 79.735959 79.034604) - (xy 79.799935 79.038331) - (xy 79.810976 79.036384) - (xy 79.832509 79.0345) - (xy 81.248202 79.0345) - (xy 81.315241 79.054185) - (xy 81.353739 79.093401) - (xy 81.390288 79.152656) - (xy 81.514344 79.276712) - (xy 81.663666 79.368814) - (xy 81.830203 79.423999) - (xy 81.932991 79.4345) - (xy 84.183008 79.434499) - (xy 84.285797 79.423999) - (xy 84.452334 79.368814) - (xy 84.601656 79.276712) - (xy 84.725712 79.152656) - (xy 84.817814 79.003334) - (xy 84.872999 78.836797) - (xy 84.8835 78.734009) - (xy 84.883499 77.833992) - (xy 84.881846 77.817814) - (xy 84.872999 77.731203) - (xy 84.872998 77.7312) - (xy 84.834604 77.615336) - (xy 84.817814 77.564666) - (xy 84.725712 77.415344) - (xy 84.601656 77.291288) - (xy 84.458933 77.203256) - (xy 84.452336 77.199187) - (xy 84.452331 77.199185) - (xy 84.450862 77.198698) - (xy 84.285797 77.144001) - (xy 84.285795 77.144) - (xy 84.18301 77.1335) - (xy 81.932998 77.1335) - (xy 81.932981 77.133501) - (xy 81.830203 77.144) - (xy 81.8302 77.144001) - (xy 81.663668 77.199185) - (xy 81.663663 77.199187) - (xy 81.514342 77.291289) - (xy 81.390289 77.415342) - (xy 81.390287 77.415344) - (xy 81.390288 77.415344) - (xy 81.362121 77.461011) - (xy 81.353741 77.474597) - (xy 81.301793 77.521321) - (xy 81.248202 77.5335) - (xy 80.989299 77.5335) - (xy 80.92226 77.513815) - (xy 80.876505 77.461011) - (xy 80.866561 77.391853) - (xy 80.882567 77.346379) - (xy 80.882786 77.346009) - (xy 80.945244 77.240398) - (xy 80.991098 77.082569) - (xy 80.994 77.045694) - (xy 80.994 76.614306) - (xy 80.991098 76.577431) - (xy 80.984898 76.556092) - (xy 80.945245 76.419606) - (xy 80.945244 76.419603) - (xy 80.945244 76.419602) - (xy 80.861581 76.278135) - (xy 80.861579 76.278133) - (xy 80.861576 76.278129) - (xy 80.74537 76.161923) - (xy 80.745362 76.161917) - (xy 80.603896 76.078255) - (xy 80.603893 76.078254) - (xy 80.446073 76.032402) - (xy 80.446067 76.032401) - (xy 80.409201 76.0295) - (xy 80.409194 76.0295) - (xy 79.102806 76.0295) - (xy 79.102798 76.0295) - (xy 79.065932 76.032401) - (xy 79.065926 76.032402) - (xy 78.908106 76.078254) - (xy 78.908103 76.078255) - (xy 78.849806 76.112732) - (xy 78.786685 76.13) - (xy 78.131 76.13) - (xy 78.131 76.68) - (xy 78.394 76.68) - (xy 78.461039 76.699685) - (xy 78.506794 76.752489) - (xy 78.518 76.804) - (xy 78.518 77.045701) - (xy 78.520901 77.082567) - (xy 78.520902 77.082573) - (xy 78.566754 77.240393) - (xy 78.566755 77.240396) - (xy 78.566756 77.240398) - (xy 78.629213 77.346008) - (xy 78.629433 77.346379) - (xy 78.646616 77.414103) - (xy 78.624456 77.480366) - (xy 78.56999 77.524129) - (xy 78.522701 77.5335) - (xy 74.603659 77.5335) - (xy 74.53662 77.513815) - (xy 74.490865 77.461011) - (xy 74.480301 77.396897) - (xy 74.480554 77.394421) - (xy 74.4855 77.346009) - (xy 74.485499 76.545992) - (xy 74.474999 76.443203) - (xy 74.419814 76.276666) - (xy 74.329351 76.130001) - (xy 76.646204 76.130001) - (xy 76.646399 76.132486) - (xy 76.692218 76.290198) - (xy 76.775814 76.431552) - (xy 76.775821 76.431561) - (xy 76.891938 76.547678) - (xy 76.891947 76.547685) - (xy 77.033303 76.631282) - (xy 77.033306 76.631283) - (xy 77.191004 76.677099) - (xy 77.19101 76.6771) - (xy 77.22785 76.679999) - (xy 77.227866 76.68) - (xy 77.631 76.68) - (xy 77.631 76.13) - (xy 76.646205 76.13) - (xy 76.646204 76.130001) - (xy 74.329351 76.130001) - (xy 74.327712 76.127344) - (xy 74.203656 76.003288) - (xy 74.140258 75.964184) - (xy 74.093535 75.912237) - (xy 74.082312 75.843274) - (xy 74.110156 75.779192) - (xy 74.128697 75.761181) - (xy 74.147886 75.746092) - (xy 74.248483 75.629998) - (xy 76.646204 75.629998) - (xy 76.646205 75.63) - (xy 77.631 75.63) - (xy 77.631 75.08) - (xy 77.22785 75.08) - (xy 77.19101 75.082899) - (xy 77.191004 75.0829) - (xy 77.033306 75.128716) - (xy 77.033303 75.128717) - (xy 76.891947 75.212314) - (xy 76.891938 75.212321) - (xy 76.775821 75.328438) - (xy 76.775814 75.328447) - (xy 76.692218 75.469801) - (xy 76.646399 75.627513) - (xy 76.646204 75.629998) - (xy 74.248483 75.629998) - (xy 74.285519 75.587256) - (xy 74.338573 75.495365) - (xy 74.390601 75.405249) - (xy 74.3906 75.405249) - (xy 74.390604 75.405244) - (xy 74.459344 75.206633) - (xy 74.489254 74.998602) - (xy 74.479254 74.78867) - (xy 74.429704 74.584424) - (xy 74.400103 74.519607) - (xy 74.342401 74.393256) - (xy 74.342398 74.393251) - (xy 74.342397 74.39325) - (xy 74.342396 74.393247) - (xy 74.255885 74.271759) - (xy 74.233034 74.205734) - (xy 74.249507 74.137834) - (xy 74.269213 74.112153) - (xy 74.590016 73.791351) - (xy 74.950547 73.430819) - (xy 75.011871 73.397334) - (xy 75.038229 73.3945) - (xy 79.49677 73.3945) - (xy 79.563809 73.414185) - (xy 79.609564 73.466989) - (xy 79.619508 73.536147) - (xy 79.590483 73.599703) - (xy 79.584469 73.606161) - (xy 79.317343 73.873288) - (xy 79.270358 73.920273) - (xy 79.256729 73.932051) - (xy 79.237468 73.94639) - (xy 79.203898 73.986397) - (xy 79.200253 73.990376) - (xy 79.194407 73.996223) - (xy 79.174618 74.021251) - (xy 79.173481 74.022647) - (xy 79.124691 74.080793) - (xy 79.121715 74.085318) - (xy 79.068423 74.130503) - (xy 79.052722 74.136238) - (xy 78.908105 74.178254) - (xy 78.908103 74.178255) - (xy 78.766637 74.261917) - (xy 78.766629 74.261923) - (xy 78.650423 74.378129) - (xy 78.650417 74.378137) - (xy 78.566755 74.519603) - (xy 78.566754 74.519606) - (xy 78.520902 74.677426) - (xy 78.520901 74.677432) - (xy 78.518 74.714298) - (xy 78.518 74.956) - (xy 78.498315 75.023039) - (xy 78.445511 75.068794) - (xy 78.394 75.08) - (xy 78.131 75.08) - (xy 78.131 75.63) - (xy 78.786685 75.63) - (xy 78.849806 75.647268) - (xy 78.908102 75.681744) - (xy 78.949724 75.693836) - (xy 79.065926 75.727597) - (xy 79.065929 75.727597) - (xy 79.065931 75.727598) - (xy 79.102806 75.7305) - (xy 79.102814 75.7305) - (xy 80.409186 75.7305) - (xy 80.409194 75.7305) - (xy 80.446069 75.727598) - (xy 80.446071 75.727597) - (xy 80.446073 75.727597) - (xy 80.487691 75.715505) - (xy 80.603898 75.681744) - (xy 80.745365 75.598081) - (xy 80.861581 75.481865) - (xy 80.945244 75.340398) - (xy 80.989425 75.188326) - (xy 81.02703 75.129445) - (xy 81.090502 75.100238) - (xy 81.159689 75.109984) - (xy 81.212623 75.155588) - (xy 81.232499 75.222571) - (xy 81.2325 75.222925) - (xy 81.2325 75.634001) - (xy 81.232501 75.634019) - (xy 81.243 75.736796) - (xy 81.243001 75.736799) - (xy 81.298185 75.903331) - (xy 81.298187 75.903336) - (xy 81.330031 75.954963) - (xy 81.390288 76.052656) - (xy 81.514344 76.176712) - (xy 81.663666 76.268814) - (xy 81.830203 76.323999) - (xy 81.932991 76.3345) - (xy 84.183008 76.334499) - (xy 84.285797 76.323999) - (xy 84.452334 76.268814) - (xy 84.601656 76.176712) - (xy 84.725712 76.052656) - (xy 84.817814 75.903334) - (xy 84.872999 75.736797) - (xy 84.8835 75.634009) - (xy 84.883499 74.733992) - (xy 84.872999 74.631203) - (xy 84.817814 74.464666) - (xy 84.725712 74.315344) - (xy 84.601656 74.191288) - (xy 84.452334 74.099186) - (xy 84.285797 74.044001) - (xy 84.285795 74.044) - (xy 84.183016 74.0335) - (xy 84.183009 74.0335) - (xy 83.9325 74.0335) - (xy 83.865461 74.013815) - (xy 83.819706 73.961011) - (xy 83.8085 73.9095) - (xy 83.8085 73.895668) - (xy 83.828185 73.828629) - (xy 83.865458 73.791354) - (xy 83.889128 73.776143) - (xy 83.983377 73.667373) - (xy 84.043165 73.536457) - (xy 84.063647 73.394) - (xy 84.063647 71.894) - (xy 84.0585 71.822039) - (xy 84.05443 71.808179) - (xy 84.017954 71.683949) - (xy 84.017953 71.683947) - (xy 83.940143 71.562872) - (xy 83.831373 71.468623) - (xy 83.826757 71.466515) - (xy 83.700456 71.408834) - (xy 83.593792 71.393499) - (xy 83.558 71.388353) - (xy 82.408 71.388353) - (xy 82.40798 71.388353) - (xy 82.327645 71.394778) - (xy 82.327629 71.394781) - (xy 82.299239 71.403638) - (xy 82.244668 71.408002) - (xy 82.108 71.388353) - (xy 81.108 71.388353) - (xy 81.107997 71.388353) - (xy 81.036039 71.393499) - (xy 81.036034 71.3935) - (xy 80.897949 71.434045) - (xy 80.776873 71.511856) - (xy 80.682623 71.620626) - (xy 80.682622 71.620628) - (xy 80.622834 71.751543) - (xy 80.617716 71.787147) - (xy 80.588691 71.850702) - (xy 80.529913 71.888477) - (xy 80.494978 71.8935) - (xy 74.739705 71.8935) - (xy 74.721735 71.892191) - (xy 74.697972 71.88871) - (xy 74.65289 71.892655) - (xy 74.645933 71.893264) - (xy 74.640532 71.8935) - (xy 74.632283 71.8935) - (xy 74.600589 71.897204) - (xy 74.598821 71.897385) - (xy 74.581405 71.898909) - (xy 74.523199 71.904001) - (xy 74.516133 71.905461) - (xy 74.516121 71.905404) - (xy 74.508754 71.907038) - (xy 74.508768 71.907094) - (xy 74.501745 71.908758) - (xy 74.430424 71.934715) - (xy 74.428724 71.935306) - (xy 74.356666 71.959185) - (xy 74.350119 71.962238) - (xy 74.350094 71.962186) - (xy 74.343314 71.965468) - (xy 74.34334 71.96552) - (xy 74.336882 71.968763) - (xy 74.273483 72.01046) - (xy 74.271965 72.011428) - (xy 74.207346 72.051287) - (xy 74.201677 72.05577) - (xy 74.201641 72.055724) - (xy 74.195798 72.060484) - (xy 74.195835 72.060528) - (xy 74.190309 72.065164) - (xy 74.138213 72.120381) - (xy 74.136957 72.121674) - (xy 72.624358 73.634272) - (xy 72.610729 73.646051) - (xy 72.591468 73.66039) - (xy 72.557898 73.700397) - (xy 72.554253 73.704376) - (xy 72.548407 73.710223) - (xy 72.528618 73.735251) - (xy 72.527481 73.736647) - (xy 72.478694 73.79479) - (xy 72.474729 73.800819) - (xy 72.474682 73.800788) - (xy 72.47063 73.807147) - (xy 72.470679 73.807177) - (xy 72.466891 73.813318) - (xy 72.466889 73.813323) - (xy 72.436186 73.879165) - (xy 72.434811 73.882113) - (xy 72.43402 73.883745) - (xy 72.431228 73.889302) - (xy 72.383542 73.940369) - (xy 72.377248 73.943848) - (xy 72.237317 74.015988) - (xy 72.072116 74.145905) - (xy 72.072112 74.145909) - (xy 71.934478 74.304746) - (xy 71.829398 74.48675) - (xy 71.760656 74.685365) - (xy 71.760656 74.685367) - (xy 71.733573 74.87374) - (xy 71.730746 74.893401) - (xy 70.7505 74.893401) - (xy 70.7505 70.8745) - (xy 70.770185 70.807461) - (xy 70.822989 70.761706) - (xy 70.8745 70.7505) - (xy 136.1255 70.7505) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 94.55454 113.542185) - (xy 94.600295 113.594989) - (xy 94.611501 113.6465) - (xy 94.611501 114.072018) - (xy 94.622 114.174796) - (xy 94.622001 114.174799) - (xy 94.677185 114.341331) - (xy 94.677187 114.341336) - (xy 94.712069 114.397888) - (xy 94.769288 114.490656) - (xy 94.893344 114.614712) - (xy 95.042666 114.706814) - (xy 95.209203 114.761999) - (xy 95.311991 114.7725) - (xy 96.712008 114.772499) - (xy 96.814797 114.761999) - (xy 96.981334 114.706814) - (xy 97.130656 114.614712) - (xy 97.254712 114.490656) - (xy 97.346814 114.341334) - (xy 97.401999 114.174797) - (xy 97.4125 114.072009) - (xy 97.4125 113.646499) - (xy 97.432185 113.579461) - (xy 97.484989 113.533706) - (xy 97.5365 113.5225) - (xy 99.7045 113.5225) - (xy 99.771539 113.542185) - (xy 99.817294 113.594989) - (xy 99.8285 113.6465) - (xy 99.8285 116.493019) - (xy 99.839001 116.595801) - (xy 99.894184 116.762333) - (xy 99.894189 116.762344) - (xy 99.986285 116.911653) - (xy 99.986288 116.911657) - (xy 100.110342 117.035711) - (xy 100.110346 117.035714) - (xy 100.259655 117.12781) - (xy 100.259658 117.127811) - (xy 100.259664 117.127815) - (xy 100.4262 117.182999) - (xy 100.528988 117.1935) - (xy 100.528991 117.1935) - (xy 101.4045 117.1935) - (xy 101.471539 117.213185) - (xy 101.517294 117.265989) - (xy 101.5285 117.3175) - (xy 101.5285 118.048482) - (xy 101.538377 118.117184) - (xy 101.53885 118.121584) - (xy 101.543804 118.19083) - (xy 101.543804 118.190833) - (xy 101.55856 118.258659) - (xy 101.559346 118.263016) - (xy 101.569224 118.331718) - (xy 101.569227 118.331731) - (xy 101.588778 118.398315) - (xy 101.589873 118.402605) - (xy 101.604631 118.470448) - (xy 101.628891 118.535492) - (xy 101.630289 118.539692) - (xy 101.649845 118.606291) - (xy 101.678678 118.669429) - (xy 101.680372 118.673517) - (xy 101.704166 118.737309) - (xy 101.704633 118.738561) - (xy 101.73791 118.799504) - (xy 101.739883 118.803446) - (xy 101.768715 118.866582) - (xy 101.76872 118.866592) - (xy 101.80625 118.924989) - (xy 101.808509 118.928796) - (xy 101.84177 118.989709) - (xy 101.841771 118.98971) - (xy 101.841774 118.989715) - (xy 101.850127 119.000873) - (xy 101.883366 119.045275) - (xy 101.885883 119.048899) - (xy 101.923426 119.107317) - (xy 101.923427 119.107318) - (xy 101.92343 119.107323) - (xy 101.968884 119.159778) - (xy 101.971661 119.163225) - (xy 101.995694 119.195328) - (xy 102.013261 119.218795) - (xy 102.013268 119.218802) - (xy 102.081348 119.286884) - (xy 102.081354 119.286888) - (xy 104.453061 121.658595) - (xy 104.655394 121.860929) - (xy 104.6554 121.860934) - (xy 104.655405 121.860939) - (xy 104.710986 121.902546) - (xy 104.714411 121.905307) - (xy 104.766882 121.950773) - (xy 104.825282 121.988304) - (xy 104.828907 121.990821) - (xy 104.884482 122.032424) - (xy 104.88449 122.032429) - (xy 104.945403 122.06569) - (xy 104.949205 122.067945) - (xy 104.949207 122.067947) - (xy 104.949211 122.067949) - (xy 105.007608 122.105479) - (xy 105.007609 122.10548) - (xy 105.007613 122.105482) - (xy 105.070776 122.134327) - (xy 105.074685 122.136283) - (xy 105.135639 122.169567) - (xy 105.2007 122.193832) - (xy 105.204745 122.195508) - (xy 105.267911 122.224356) - (xy 105.273245 122.225922) - (xy 105.332023 122.263696) - (xy 105.361049 122.327252) - (xy 105.351106 122.39641) - (xy 105.305352 122.449215) - (xy 105.238312 122.4689) - (xy 94.725183 122.4689) - (xy 94.658144 122.449215) - (xy 94.637502 122.432581) - (xy 92.984819 120.779898) - (xy 92.951334 120.718575) - (xy 92.9485 120.692217) - (xy 92.9485 119.756797) - (xy 92.968185 119.689758) - (xy 93.007403 119.651258) - (xy 93.066656 119.614712) - (xy 93.190712 119.490656) - (xy 93.282814 119.341334) - (xy 93.337999 119.174797) - (xy 93.3485 119.072009) - (xy 93.348499 117.772) - (xy 94.612001 117.772) - (xy 94.612001 119.071986) - (xy 94.622494 119.174697) - (xy 94.677641 119.341119) - (xy 94.677643 119.341124) - (xy 94.769684 119.490345) - (xy 94.893654 119.614315) - (xy 95.042875 119.706356) - (xy 95.04288 119.706358) - (xy 95.209302 119.761505) - (xy 95.209309 119.761506) - (xy 95.312019 119.771999) - (xy 95.761999 119.771999) - (xy 95.762 119.771998) - (xy 95.762 117.772) - (xy 96.262 117.772) - (xy 96.262 119.771999) - (xy 96.711972 119.771999) - (xy 96.711986 119.771998) - (xy 96.814697 119.761505) - (xy 96.981119 119.706358) - (xy 96.981124 119.706356) - (xy 97.130345 119.614315) - (xy 97.254315 119.490345) - (xy 97.346356 119.341124) - (xy 97.346358 119.341119) - (xy 97.401505 119.174697) - (xy 97.401506 119.17469) - (xy 97.411999 119.071986) - (xy 97.412 119.071973) - (xy 97.412 117.772) - (xy 96.262 117.772) - (xy 95.762 117.772) - (xy 94.612001 117.772) - (xy 93.348499 117.772) - (xy 93.348499 117.272) - (xy 94.612 117.272) - (xy 95.762 117.272) - (xy 95.762 115.272) - (xy 96.262 115.272) - (xy 96.262 117.272) - (xy 97.411999 117.272) - (xy 97.411999 115.972028) - (xy 97.411998 115.972013) - (xy 97.401505 115.869302) - (xy 97.346358 115.70288) - (xy 97.346356 115.702875) - (xy 97.254315 115.553654) - (xy 97.130345 115.429684) - (xy 96.981124 115.337643) - (xy 96.981119 115.337641) - (xy 96.814697 115.282494) - (xy 96.81469 115.282493) - (xy 96.711986 115.272) - (xy 96.262 115.272) - (xy 95.762 115.272) - (xy 95.312028 115.272) - (xy 95.312012 115.272001) - (xy 95.209302 115.282494) - (xy 95.04288 115.337641) - (xy 95.042875 115.337643) - (xy 94.893654 115.429684) - (xy 94.769684 115.553654) - (xy 94.677643 115.702875) - (xy 94.677641 115.70288) - (xy 94.622494 115.869302) - (xy 94.622493 115.869309) - (xy 94.612 115.972013) - (xy 94.612 117.272) - (xy 93.348499 117.272) - (xy 93.348499 115.971992) - (xy 93.344451 115.932369) - (xy 93.337999 115.869203) - (xy 93.337998 115.8692) - (xy 93.334588 115.858908) - (xy 93.282814 115.702666) - (xy 93.190712 115.553344) - (xy 93.066656 115.429288) - (xy 92.973888 115.372068) - (xy 92.917336 115.337187) - (xy 92.917331 115.337185) - (xy 92.915862 115.336698) - (xy 92.750797 115.282001) - (xy 92.750795 115.282) - (xy 92.64801 115.2715) - (xy 91.247998 115.2715) - (xy 91.247981 115.271501) - (xy 91.145203 115.282) - (xy 91.1452 115.282001) - (xy 90.978668 115.337185) - (xy 90.978663 115.337187) - (xy 90.829342 115.429289) - (xy 90.705289 115.553342) - (xy 90.613187 115.702663) - (xy 90.613185 115.702668) - (xy 90.613115 115.70288) - (xy 90.576137 115.814474) - (xy 90.574006 115.820904) - (xy 90.534233 115.878349) - (xy 90.469717 115.905172) - (xy 90.400942 115.892857) - (xy 90.349742 115.845314) - (xy 90.3323 115.7819) - (xy 90.3323 114.2621) - (xy 90.351985 114.195061) - (xy 90.404789 114.149306) - (xy 90.473947 114.139362) - (xy 90.537503 114.168387) - (xy 90.574005 114.223095) - (xy 90.601537 114.306179) - (xy 90.613185 114.341331) - (xy 90.613187 114.341336) - (xy 90.648069 114.397888) - (xy 90.705288 114.490656) - (xy 90.829344 114.614712) - (xy 90.978666 114.706814) - (xy 91.145203 114.761999) - (xy 91.247991 114.7725) - (xy 92.648008 114.772499) - (xy 92.750797 114.761999) - (xy 92.917334 114.706814) - (xy 93.066656 114.614712) - (xy 93.190712 114.490656) - (xy 93.282814 114.341334) - (xy 93.337999 114.174797) - (xy 93.3485 114.072009) - (xy 93.3485 113.6465) - (xy 93.368185 113.579461) - (xy 93.420989 113.533706) - (xy 93.4725 113.5225) - (xy 94.487501 113.5225) - ) - ) - ) -) +(kicad_pcb + (version 20240225) + (generator "pcbnew") + (generator_version "8.99") + (general + (thickness 1.6) + (legacy_teardrops no) + ) + (paper "A4") + (layers + (0 "F.Cu" signal) + (31 "B.Cu" signal) + (32 "B.Adhes" user "B.Adhesive") + (33 "F.Adhes" user "F.Adhesive") + (34 "B.Paste" user) + (35 "F.Paste" user) + (36 "B.SilkS" user "B.Silkscreen") + (37 "F.SilkS" user "F.Silkscreen") + (38 "B.Mask" user) + (39 "F.Mask" user) + (40 "Dwgs.User" user "User.Drawings") + (41 "Cmts.User" user "User.Comments") + (42 "Eco1.User" user "User.Eco1") + (43 "Eco2.User" user "User.Eco2") + (44 "Edge.Cuts" user) + (45 "Margin" user) + (46 "B.CrtYd" user "B.Courtyard") + (47 "F.CrtYd" user "F.Courtyard") + (48 "B.Fab" user) + (49 "F.Fab" user) + (50 "User.1" user) + (51 "User.2" user) + (52 "User.3" user) + (53 "User.4" user) + (54 "User.5" user) + (55 "User.6" user) + (56 "User.7" user) + (57 "User.8" user) + (58 "User.9" user) + ) + (setup + (stackup + (layer "F.SilkS" + (type "Top Silk Screen") + ) + (layer "F.Paste" + (type "Top Solder Paste") + ) + (layer "F.Mask" + (type "Top Solder Mask") + (thickness 0.01) + ) + (layer "F.Cu" + (type "copper") + (thickness 0.035) + ) + (layer "dielectric 1" + (type "core") + (thickness 1.51) + (material "FR4") + (epsilon_r 4.5) + (loss_tangent 0.02) + ) + (layer "B.Cu" + (type "copper") + (thickness 0.035) + ) + (layer "B.Mask" + (type "Bottom Solder Mask") + (thickness 0.01) + ) + (layer "B.Paste" + (type "Bottom Solder Paste") + ) + (layer "B.SilkS" + (type "Bottom Silk Screen") + ) + (copper_finish "None") + (dielectric_constraints no) + ) + (pad_to_mask_clearance 0) + (allow_soldermask_bridges_in_footprints no) + (pcbplotparams + (layerselection 0x00010fc_ffffffff) + (plot_on_all_layers_selection 0x0000000_00000000) + (disableapertmacros no) + (usegerberextensions no) + (usegerberattributes yes) + (usegerberadvancedattributes yes) + (creategerberjobfile yes) + (dashed_line_dash_ratio 12.000000) + (dashed_line_gap_ratio 3.000000) + (svgprecision 4) + (plotframeref no) + (viasonmask no) + (mode 1) + (useauxorigin no) + (hpglpennumber 1) + (hpglpenspeed 20) + (hpglpendiameter 15.000000) + (pdf_front_fp_property_popups yes) + (pdf_back_fp_property_popups yes) + (dxfpolygonmode yes) + (dxfimperialunits yes) + (dxfusepcbnewfont yes) + (psnegative no) + (psa4output no) + (plotreference yes) + (plotvalue yes) + (plotfptext yes) + (plotinvisibletext no) + (sketchpadsonfab no) + (subtractmaskfromsilk no) + (outputformat 1) + (mirror no) + (drillshape 1) + (scaleselection 1) + (outputdirectory "") + ) + ) + (net 0 "") + (net 1 "+5V") + (net 2 "GND") + (net 3 "+12V") + (net 4 "Net-(U2-SW)") + (net 5 "Net-(U2-BS)") + (net 6 "+3V3") + (net 7 "Net-(U2-FB)") + (net 8 "/OSC_IN") + (net 9 "/OSC_OUT") + (net 10 "/VEN") + (net 11 "Net-(D1-A)") + (net 12 "/Power_EN") + (net 13 "Net-(D4-K)") + (net 14 "Net-(D4-A)") + (net 15 "Net-(D5-K)") + (net 16 "Net-(D5-A)") + (net 17 "/UP_DIR") + (net 18 "/DOWN_DIR") + (net 19 "/Vsen") + (net 20 "Net-(D10-A)") + (net 21 "Net-(D11-A)") + (net 22 "/CANL") + (net 23 "/CANH") + (net 24 "/HOT@On") + (net 25 "Net-(J2-Pin_1)") + (net 26 "Net-(J2-Pin_2)") + (net 27 "Net-(J2-Pin_3)") + (net 28 "Net-(J3-Pin_2)") + (net 29 "/Rx") + (net 30 "/Tx") + (net 31 "/SWCLK") + (net 32 "/SWDIO") + (net 33 "Net-(J5-Pin_4)") + (net 34 "/BOOT0") + (net 35 "/NRST") + (net 36 "Net-(JP1-B)") + (net 37 "Net-(Q1-G)") + (net 38 "Net-(Q1-D)") + (net 39 "Net-(Q2-S)") + (net 40 "Net-(Q3-G)") + (net 41 "Net-(Q4-G)") + (net 42 "Net-(Q5-G)") + (net 43 "Net-(Q6-G)") + (net 44 "/UP_SW") + (net 45 "/DOWN_SW") + (net 46 "/UP_BTN") + (net 47 "/DOWN_BTN") + (net 48 "Net-(U4-sense)") + (net 49 "/L_UP") + (net 50 "/L_DOWN") + (net 51 "/R_DOWN") + (net 52 "/R_UP") + (net 53 "unconnected-(U3-PC13-Pad2)") + (net 54 "unconnected-(U3-PC14-Pad3)") + (net 55 "unconnected-(U3-PC15-Pad4)") + (net 56 "unconnected-(U3-PA5-Pad15)") + (net 57 "unconnected-(U3-PB10-Pad21)") + (net 58 "unconnected-(U3-PB11-Pad22)") + (net 59 "unconnected-(U3-PA8-Pad29)") + (net 60 "unconnected-(U3-PA15-Pad38)") + (net 61 "unconnected-(U3-PB6-Pad42)") + (net 62 "unconnected-(U3-PB7-Pad43)") + (net 63 "/CAN_Rx") + (net 64 "/CAN_Tx") + (net 65 "unconnected-(U5-Vref-Pad5)") + (net 66 "unconnected-(U3-PA4-Pad14)") + (net 67 "unconnected-(U3-PB3-Pad39)") + (net 68 "unconnected-(U3-PB2-Pad20)") + (net 69 "unconnected-(U3-PB1-Pad19)") + (net 70 "unconnected-(U3-PB0-Pad18)") + (net 71 "unconnected-(U3-PB5-Pad41)") + (net 72 "unconnected-(U3-PB4-Pad40)") + (net 73 "Net-(J3-Pin_1)") + (footprint "Crystal:Crystal_SMD_5032-2Pin_5.0x3.2mm" + (layer "F.Cu") + (uuid "04b5e39d-812d-45f4-a1f9-a80112ac70b0") + (at 99.314 86.36 -90) + (descr "SMD Crystal SERIES SMD2520/2 http://www.icbase.com/File/PDF/HKC/HKC00061008.pdf, 5.0x3.2mm^2 package") + (tags "SMD SMT crystal") + (property "Reference" "Y1" + (at -3.882 0 180) + (layer "F.SilkS") + (uuid "56c6c8a3-d51c-4a18-9334-ba777991e007") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "NX5032GA-8MHz" + (at 0 2.8 90) + (layer "F.Fab") + (uuid "251d0882-eeb8-4cc6-ad27-974009755fda") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "443c7102-576e-4a16-89f9-0e944a8ab3e4") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b56060f5-ac7e-450a-a903-af0db1b610f7") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Two pin crystal" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "74538852-3a84-4e21-a282-32411b9135b1") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/3a4c0890-c42a-49b7-8297-824d30461a0a") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_circle + (center 0 0) + (end 0.093333 0) + (stroke + (width 0.186667) + (type solid) + ) + (fill none) + (layer "F.Adhes") + (uuid "6ed664d1-2d5d-472c-a9f3-9afd7de538d9") + ) + (fp_circle + (center 0 0) + (end 0.213333 0) + (stroke + (width 0.133333) + (type solid) + ) + (fill none) + (layer "F.Adhes") + (uuid "564046ea-f82f-4d8f-9afa-3b386dabf7a2") + ) + (fp_circle + (center 0 0) + (end 0.333333 0) + (stroke + (width 0.133333) + (type solid) + ) + (fill none) + (layer "F.Adhes") + (uuid "44228209-66b9-47b0-8243-9a1fbc2178af") + ) + (fp_circle + (center 0 0) + (end 0.4 0) + (stroke + (width 0.1) + (type solid) + ) + (fill none) + (layer "F.Adhes") + (uuid "acda491f-42fa-4ec4-aa58-5b0b1ffa5f50") + ) + (fp_line + (start -3.05 1.8) + (end 2.7 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b43cff8b-aaab-40cc-b4c2-8f838dcab0c0") + ) + (fp_line + (start -3.05 -1.8) + (end -3.05 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ac34a30f-1add-4894-8e91-42313b80bc59") + ) + (fp_line + (start 2.7 -1.8) + (end -3.05 -1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4dec838d-6da7-45ca-80a4-0698a0ea057e") + ) + (fp_line + (start -3.1 1.9) + (end 3.1 1.9) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c61b3871-c32a-45e2-a374-2b0517a5f4dd") + ) + (fp_line + (start 3.1 1.9) + (end 3.1 -1.9) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "10ed7860-f768-4462-bb81-2a413f3e9960") + ) + (fp_line + (start -3.1 -1.9) + (end -3.1 1.9) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "8a0516fa-08fc-4440-9520-e7217151e87a") + ) + (fp_line + (start 3.1 -1.9) + (end -3.1 -1.9) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "98e95b05-034b-4222-80c4-4c37d69aa861") + ) + (fp_line + (start -2.3 1.6) + (end -2.5 1.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "fce786aa-47c0-495a-a463-8b0f51b24a42") + ) + (fp_line + (start 2.3 1.6) + (end -2.3 1.6) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "87214355-408c-4f49-92e9-5df440ca26b2") + ) + (fp_line + (start -2.5 1.4) + (end -2.5 -1.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "006a3243-d7b6-4991-a8a2-3e7f32559e78") + ) + (fp_line + (start 2.5 1.4) + (end 2.3 1.6) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "fea01a46-bdab-40c8-8611-fd64af504268") + ) + (fp_line + (start -2.5 0.6) + (end -1.5 1.6) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7936de0f-e29c-427a-b4c6-f4376e16b4de") + ) + (fp_line + (start -2.5 -1.4) + (end -2.3 -1.6) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f96e6aaf-a01e-4f34-b767-48140bc84da5") + ) + (fp_line + (start 2.5 -1.4) + (end 2.5 1.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "25883a77-c587-4eb3-b05f-3aa853031af1") + ) + (fp_line + (start -2.3 -1.6) + (end 2.3 -1.6) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "725897f1-b562-47c1-b300-6df7d2be9b2d") + ) + (fp_line + (start 2.3 -1.6) + (end 2.5 -1.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6a4621a1-bc48-497a-b627-574acf841e35") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "28946b08-2135-4275-945a-51d965bb0a07") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" smd rect + (at -1.85 0 270) + (size 2 2.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 8 "/OSC_IN") + (pinfunction "1") + (pintype "passive") + (uuid "d372e770-de3d-4782-8fdc-9c598230e74e") + ) + (pad "2" smd rect + (at 1.85 0 270) + (size 2 2.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 9 "/OSC_OUT") + (pinfunction "2") + (pintype "passive") + (uuid "644570c2-f8b7-4c41-b7fd-87a62cad5927") + ) + (model "${KICAD6_3DMODEL_DIR}/Crystal.3dshapes/Crystal_SMD_5032-2Pin_5.0x3.2mm.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (layer "F.Cu") + (uuid "0aee1c7a-6563-4864-96ee-65f701188394") + (at 82.804 110.6405 90) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor handsolder") + (property "Reference" "R2" + (at -0.0273 1.7018 180) + (layer "F.SilkS") + (uuid "a165eb9f-c829-4722-8349-e8a244b78e21") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "100k" + (at 0 1.43 90) + (layer "F.Fab") + (uuid "26ec2e85-6a77-48fb-a9c0-27bddb30b07a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4b346427-9809-47f3-91ec-3f6db5cd9224") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "94257a4d-c8b4-4621-a418-9f49264d0198") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "45d2cccb-e777-4437-a1f0-7817c8c4a478") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/17364d81-b838-484a-add9-55202307e226") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -0.254724 -0.5225) + (end 0.254724 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0db64310-bddc-4375-9a30-25a123f4f042") + ) + (fp_line + (start -0.254724 0.5225) + (end 0.254724 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d92ae47d-04f1-4688-b2e2-07ac049bf01d") + ) + (fp_line + (start 1.65 -0.73) + (end 1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "70b91b1c-80a0-4dde-9737-ca1cb8b9b7b4") + ) + (fp_line + (start -1.65 -0.73) + (end 1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "0a958467-d797-4f95-ba05-d46b8dab6161") + ) + (fp_line + (start 1.65 0.73) + (end -1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "50f0746d-5789-4711-9bdf-c24c5f82cfc3") + ) + (fp_line + (start -1.65 0.73) + (end -1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "d95ceb79-6713-4560-affe-3903cc6acc65") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d33e0b9a-04d1-4c7c-937c-9de67fb632ae") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "5cb78889-1f3b-4375-b048-8a6e1e7662b7") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6216febb-41ef-4a87-8529-6bc95bc0f090") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3e53c238-56fc-4615-bf6b-abf573496f56") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "9c860a8a-e853-4712-824c-91468710078a") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.9125 0 90) + (size 0.975 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "1b9f43d1-c0f6-4173-b3a9-3df8b30daa30") + ) + (pad "2" smd roundrect + (at 0.9125 0 90) + (size 0.975 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 11 "Net-(D1-A)") + (pintype "passive") + (uuid "39de549c-f42c-4824-8159-e200ad1edb5d") + ) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "TestPoint:TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded" + (layer "F.Cu") + (uuid "0f65948e-af9d-478e-8613-db0ad6dca846") + (at 111.0234 95.8342) + (descr "wire loop with bead as test point, loop diameter 1.8mm, hole diameter 1.0mm") + (tags "test point wire loop bead") + (property "Reference" "TP8" + (at 0.7 2.5 0) + (layer "F.SilkS") + (hide yes) + (uuid "2aaf3816-acef-4dd1-8108-55611fecbba2") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "L+" + (at 2.2606 -1.8542 0) + (layer "F.SilkS") + (uuid "94655b17-7dbf-4bb8-a874-37e8d13b915a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "25a2dbc6-2de8-4529-a084-1aa157d2e573") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "04b280a7-c537-4be2-8a7f-740e1d841571") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "test point" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d789a436-23e0-4422-8ffd-44ee102a488d") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/8e336b7f-02d2-422b-8109-c894c167d3c8") + (sheetfile "windshield.kicad_sch") + (attr through_hole) + (fp_circle + (center 0 0) + (end 1.5 0) + (stroke + (width 0.12) + (type solid) + ) + (fill none) + (layer "F.SilkS") + (uuid "839c51ce-a777-4352-b0e9-49f788baf700") + ) + (fp_circle + (center 0 0) + (end 1.8 0) + (stroke + (width 0.05) + (type solid) + ) + (fill none) + (layer "F.CrtYd") + (uuid "b4c3ed49-86e8-4176-a760-4c20d88b031a") + ) + (fp_line + (start -0.9 -0.2) + (end 0.9 -0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "69fa0c0d-5b56-422e-a06f-723785836a75") + ) + (fp_line + (start -0.9 0.2) + (end -0.9 -0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "3158c8d1-e32f-4a1b-9473-16f4780607e2") + ) + (fp_line + (start 0.9 -0.2) + (end 0.9 0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "e7eccece-daef-4ee3-a4ee-f58d8e8b94fa") + ) + (fp_line + (start 0.9 0.2) + (end -0.9 0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "98029601-f583-49d6-9327-e992b67a98b2") + ) + (fp_circle + (center 0 0) + (end 1.3 0) + (stroke + (width 0.12) + (type solid) + ) + (fill none) + (layer "F.Fab") + (uuid "39345d95-eb49-4641-a4f9-354291b88d8f") + ) + (fp_text user "${REFERENCE}" + (at 0.7 2.5 0) + (layer "F.Fab") + (uuid "c4637f87-de16-4ea0-b065-29178873fd4d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole circle + (at 0 0) + (size 2 2) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 49 "/L_UP") + (pinfunction "1") + (pintype "passive") + (uuid "b162640b-faf2-4cb2-83a5-feee80c12076") + ) + (model "${KICAD6_3DMODEL_DIR}/TestPoint.3dshapes/TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "TestPoint:TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded" + (layer "F.Cu") + (uuid "12dba42b-11ef-4b7e-b460-94a0f51adf1a") + (at 117.856 107.696) + (descr "wire loop with bead as test point, loop diameter 1.8mm, hole diameter 1.0mm") + (tags "test point wire loop bead") + (property "Reference" "TP11" + (at 0.7 2.5 0) + (layer "F.SilkS") + (hide yes) + (uuid "cb3c864e-621e-46d1-afb0-846da8b6c819") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "R-" + (at 2.5908 -1.6764 0) + (layer "F.SilkS") + (uuid "cd68bad2-468e-4d19-98ea-6336c6fd2e4c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a7e373d8-1732-46f8-8e73-ea6b4c044942") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "fd4e3d83-3a5f-426f-ac05-cd95110d065a") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "test point" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "1ad6b495-50d9-4528-b521-e8edb87bac19") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/bc71f010-ae52-40e9-b47d-749510fd8c7c") + (sheetfile "windshield.kicad_sch") + (attr through_hole) + (fp_circle + (center 0 0) + (end 1.5 0) + (stroke + (width 0.12) + (type solid) + ) + (fill none) + (layer "F.SilkS") + (uuid "a9dea6a6-29f3-452f-acd8-7f3404060c62") + ) + (fp_circle + (center 0 0) + (end 1.8 0) + (stroke + (width 0.05) + (type solid) + ) + (fill none) + (layer "F.CrtYd") + (uuid "140340a8-8a9c-4ebe-9a5d-8b36f8d5d143") + ) + (fp_line + (start -0.9 -0.2) + (end 0.9 -0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "cae3c906-32bc-41a1-88b4-68186060a572") + ) + (fp_line + (start -0.9 0.2) + (end -0.9 -0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "dc55063c-7b98-40cc-b639-182613d9031d") + ) + (fp_line + (start 0.9 -0.2) + (end 0.9 0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "37939803-cd4d-4061-82f3-951f868d3968") + ) + (fp_line + (start 0.9 0.2) + (end -0.9 0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "cfce9f2e-0792-4cd6-86b5-07c682b842b9") + ) + (fp_circle + (center 0 0) + (end 1.3 0) + (stroke + (width 0.12) + (type solid) + ) + (fill none) + (layer "F.Fab") + (uuid "b332f7d8-95d4-49f2-bcba-75ac1987f628") + ) + (fp_text user "${REFERENCE}" + (at 0.7 2.5 0) + (layer "F.Fab") + (uuid "53b25740-de88-4793-bd67-c16d105f8d4f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole circle + (at 0 0) + (size 2 2) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 51 "/R_DOWN") + (pinfunction "1") + (pintype "passive") + (uuid "ec5348bb-ecd8-41b1-81ad-001ce9461acf") + ) + (model "${KICAD6_3DMODEL_DIR}/TestPoint.3dshapes/TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" + (layer "F.Cu") + (uuid "14b409f2-9076-4a3f-b9cd-432b52dd1975") + (at 85.5341 93.2942) + (descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (property "Reference" "C5" + (at 0 -1.85 0) + (layer "F.SilkS") + (uuid "8854726c-5813-49fe-bcb4-c37f29dfd9f9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "47u" + (at 0 1.85 0) + (layer "F.Fab") + (uuid "8c7d1d33-aa31-4d16-b7dc-2538be0338ff") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4a8a3bd2-c80f-417a-865d-c016d5d91ecd") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7802de3b-fda4-4ebe-8fdc-bae3f7e0c0cf") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7c7575c7-adf6-4ad9-b838-4b25d3569cb6") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/97b547a0-bc92-4bcd-b116-37befccf241d") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -0.711252 -0.91) + (end 0.711252 -0.91) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "745496aa-9bd8-4da7-ab01-6ddbd90a92eb") + ) + (fp_line + (start -0.711252 0.91) + (end 0.711252 0.91) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b50cba5c-ff26-4df8-bb34-3c2750491863") + ) + (fp_line + (start -2.48 -1.15) + (end 2.48 -1.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "01067f88-73f8-4c3d-a772-959926d72897") + ) + (fp_line + (start -2.48 1.15) + (end -2.48 -1.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "ccffeb0e-1936-4394-9d1a-2b8f5280247c") + ) + (fp_line + (start 2.48 -1.15) + (end 2.48 1.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c917fcb3-748e-4cbc-bd9f-dee6b123cecf") + ) + (fp_line + (start 2.48 1.15) + (end -2.48 1.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c2cb713f-89dc-4adb-bf8d-6bf8f3e3326b") + ) + (fp_line + (start -1.6 -0.8) + (end 1.6 -0.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "eede876b-b920-4835-8fc7-9ba51d577c86") + ) + (fp_line + (start -1.6 0.8) + (end -1.6 -0.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e6c4c007-b0d6-4811-ad65-0b109372d453") + ) + (fp_line + (start 1.6 -0.8) + (end 1.6 0.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e57170cd-84b2-4220-bd73-15bb10931d0c") + ) + (fp_line + (start 1.6 0.8) + (end -1.6 0.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f6125c1d-46d8-4afb-a1a1-cba9f563a894") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "4a994d6f-3d34-4d51-b1b8-bfe69e5874e8") + (effects + (font + (size 0.8 0.8) + (thickness 0.12) + ) + ) + ) + (pad "1" smd roundrect + (at -1.5625 0) + (size 1.325 1.8) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.188679) + (net 1 "+5V") + (pintype "passive") + (uuid "abe2a401-cc03-4c95-8b59-d18cae7f4b79") + ) + (pad "2" smd roundrect + (at 1.5625 0) + (size 1.325 1.8) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.188679) + (net 2 "GND") + (pintype "passive") + (uuid "4235f4ac-b380-44e3-a7b4-84a795d48142") + ) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" + (layer "F.Cu") + (uuid "14c6a612-0807-423c-82c4-a17de50f19f9") + (at 74.7268 87.8971 90) + (descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (property "Reference" "C3" + (at 3.1881 -0.1016 180) + (layer "F.SilkS") + (uuid "372e5550-75c3-46d4-9e25-13c52e20f414") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "1u" + (at 0 1.85 90) + (layer "F.Fab") + (uuid "2b0d02f7-5a60-41e6-afab-8f047689cdfb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9222238b-4d8b-4a30-9e10-fa3b11a55a3d") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "db7c0f3d-ea3e-45ad-bfbd-f343b69ead6c") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b9c10ce9-34a7-44bf-abb1-8228f007e297") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/2135eb5e-a491-44ed-9e01-efbcf9715412") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -0.711252 -0.91) + (end 0.711252 -0.91) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "59efc93a-426b-40d0-8e13-5ed47e4ecd74") + ) + (fp_line + (start -0.711252 0.91) + (end 0.711252 0.91) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "210f11a9-1cad-45b1-bdea-aee113efd329") + ) + (fp_line + (start 2.48 -1.15) + (end 2.48 1.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "28e0a77b-3f1c-4106-9c46-ded49944c818") + ) + (fp_line + (start -2.48 -1.15) + (end 2.48 -1.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f3fac6b5-8fa9-44c1-b5fb-27a8e4838877") + ) + (fp_line + (start 2.48 1.15) + (end -2.48 1.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e4c2d12a-4810-4e94-a74c-abd0df36f40a") + ) + (fp_line + (start -2.48 1.15) + (end -2.48 -1.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "dca372f8-02c1-4a97-97bf-b13890d9e322") + ) + (fp_line + (start 1.6 -0.8) + (end 1.6 0.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "008a98e0-8b26-4fc4-93de-cbf672ea1236") + ) + (fp_line + (start -1.6 -0.8) + (end 1.6 -0.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f174294b-f2e1-4067-88bb-50f0f7539a05") + ) + (fp_line + (start 1.6 0.8) + (end -1.6 0.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "fded4fe7-b04c-4f24-92d0-7f066594b54c") + ) + (fp_line + (start -1.6 0.8) + (end -1.6 -0.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6643e7bc-87f8-444b-a061-7be5ce8afccf") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "25724c87-2a3f-4615-8d9d-016f24bf8bd2") + (effects + (font + (size 0.8 0.8) + (thickness 0.12) + ) + ) + ) + (pad "1" smd roundrect + (at -1.5625 0 90) + (size 1.325 1.8) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.188679) + (net 4 "Net-(U2-SW)") + (pintype "passive") + (uuid "6900cc3e-c94d-414b-8d75-ed45cd4d04a6") + ) + (pad "2" smd roundrect + (at 1.5625 0 90) + (size 1.325 1.8) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.188679) + (net 5 "Net-(U2-BS)") + (pintype "passive") + (uuid "c3740558-7873-4886-9be0-631ac4d405bb") + ) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Connector_JST:JST_PH_B4B-PH-K_1x04_P2.00mm_Vertical" + (layer "F.Cu") + (uuid "1710c7c1-df3f-49ff-b30b-e39b49a703ed") + (at 130.81 73.756 -90) + (descr "JST PH series connector, B4B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator") + (tags "connector JST PH side entry") + (property "Reference" "J2" + (at 6.604 4.318 0) + (layer "F.SilkS") + (hide yes) + (uuid "1ae6bfa9-56ea-43e8-85cf-26620d3f667f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "Hall" + (at 3 4 90) + (layer "F.SilkS") + (uuid "bfb76f12-7812-43ba-94c2-e779d8ae464b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c0e5840c-6e1c-4096-975f-3d516142b459") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e50a899d-7a9e-4261-b370-d9ff9b697d7a") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Generic connector, single row, 01x04, script generated" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9ad12eac-bf4b-40d3-887a-c57c1922a62c") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/22803ca7-6f57-46e0-b742-ee15eb046870") + (sheetfile "windshield.kicad_sch") + (attr through_hole) + (fp_line + (start -2.06 2.91) + (end 8.06 2.91) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3bf63ee9-a4b7-4d07-8b36-78c1b816af23") + ) + (fp_line + (start 8.06 2.91) + (end 8.06 -1.81) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "24972f56-b12a-4113-8d22-fb0ab00be1da") + ) + (fp_line + (start -1.45 2.3) + (end 7.45 2.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "14611468-2164-40ac-a784-2bb070c4470b") + ) + (fp_line + (start 0.9 2.3) + (end 0.9 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6e7754dd-f2e8-45c0-85da-a2d88c9b896f") + ) + (fp_line + (start 1 2.3) + (end 1 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "86397ea9-554c-4e88-b348-557a273eece9") + ) + (fp_line + (start 2.9 2.3) + (end 2.9 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f732bc77-8292-40f5-9996-6d956c3b85e1") + ) + (fp_line + (start 3 2.3) + (end 3 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3fae853f-1353-4b71-bb46-b7b1fd243415") + ) + (fp_line + (start 4.9 2.3) + (end 4.9 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b0c44c92-d5fc-4659-a4be-cbdc3f5a4c68") + ) + (fp_line + (start 5 2.3) + (end 5 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "49a39d90-d0fe-4f8f-b575-a298fbfc25ef") + ) + (fp_line + (start 7.45 2.3) + (end 7.45 -1.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "77f09df5-4d2c-484a-95ef-4c219e629452") + ) + (fp_line + (start 0.9 1.8) + (end 1.1 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "435ce3bc-60a4-4b4e-83f4-589359a5e1d5") + ) + (fp_line + (start 1.1 1.8) + (end 1.1 2.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ee85e8a2-1182-42a7-8de2-b87b43d49906") + ) + (fp_line + (start 2.9 1.8) + (end 3.1 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "315bb343-ee40-4eec-a2ff-f33b9a59306b") + ) + (fp_line + (start 3.1 1.8) + (end 3.1 2.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "45c4430b-41b1-4be9-b542-8eae3ddcee00") + ) + (fp_line + (start 4.9 1.8) + (end 5.1 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d5483c4e-407e-4ec2-aaba-c5360547132a") + ) + (fp_line + (start 5.1 1.8) + (end 5.1 2.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a666d50b-c176-4981-a2d0-eb1f02c98df9") + ) + (fp_line + (start -2.06 0.8) + (end -1.45 0.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "cdf4941e-89fa-4ae4-aa80-4f0dc71ee715") + ) + (fp_line + (start 8.06 0.8) + (end 7.45 0.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "bf9ada7a-619f-49e5-9e4a-63f9a890c493") + ) + (fp_line + (start -2.06 -0.5) + (end -1.45 -0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8b90d9a6-0969-4eb6-9121-28467be4cfcd") + ) + (fp_line + (start 8.06 -0.5) + (end 7.45 -0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "334eabff-e220-4c37-af95-a7e3f9f82cc9") + ) + (fp_line + (start -1.45 -1.2) + (end -1.45 2.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7f1d915f-3a20-4a54-b07a-2a18af2e7d77") + ) + (fp_line + (start 0.5 -1.2) + (end -1.45 -1.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "bae08a2b-31f8-4320-98b0-3c2ccbb34e7d") + ) + (fp_line + (start 5.5 -1.2) + (end 5.5 -1.81) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5c9fcc88-3823-4fdc-bb89-e9958a7a2e5e") + ) + (fp_line + (start 7.45 -1.2) + (end 5.5 -1.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "fbb03422-e912-4993-bcea-333af58d6d82") + ) + (fp_line + (start -2.06 -1.81) + (end -2.06 2.91) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6cfd1ad2-4c17-4f90-aec9-1456843663a3") + ) + (fp_line + (start -0.3 -1.81) + (end -0.3 -2.01) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "eb65af00-4a54-4ae0-b2c5-27a6c79a8fe1") + ) + (fp_line + (start 0.5 -1.81) + (end 0.5 -1.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c98e88f9-c868-448e-acaa-8e570f9ab3b4") + ) + (fp_line + (start 8.06 -1.81) + (end -2.06 -1.81) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "fe985bf4-3def-428f-84f5-cbaf9af962d1") + ) + (fp_line + (start -0.3 -1.91) + (end -0.6 -1.91) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0dabc1c7-4b1e-4b96-a985-da9fe6bacebf") + ) + (fp_line + (start -0.6 -2.01) + (end -0.6 -1.81) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0f868268-d21e-41c5-b296-f40ad0b1c2ed") + ) + (fp_line + (start -0.3 -2.01) + (end -0.6 -2.01) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "05912948-1ad3-4a61-ad06-d2bbff6437fc") + ) + (fp_line + (start -2.36 -2.11) + (end -2.36 -0.86) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "fb56a003-4caa-4d22-a15c-97a7eebfb7ac") + ) + (fp_line + (start -1.11 -2.11) + (end -2.36 -2.11) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4427c753-00ef-41d3-ab1a-77cf0ed96322") + ) + (fp_line + (start -2.45 3.3) + (end 8.45 3.3) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "465f2b86-e4fa-4f91-8778-a41fd820b0c6") + ) + (fp_line + (start 8.45 3.3) + (end 8.45 -2.2) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "ef28a0c9-ea4b-4586-9eb0-babf27923883") + ) + (fp_line + (start -2.45 -2.2) + (end -2.45 3.3) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3508a3de-97ab-43fd-842b-853cce30e7db") + ) + (fp_line + (start 8.45 -2.2) + (end -2.45 -2.2) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "40a5d880-bd82-4584-bdd1-86ef42e71c00") + ) + (fp_line + (start -1.95 2.8) + (end 7.95 2.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2b716c8d-7f70-4f0a-bb48-75e64c6e4671") + ) + (fp_line + (start 7.95 2.8) + (end 7.95 -1.7) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d601ccf3-8dec-417f-80c7-e09600851bf2") + ) + (fp_line + (start -1.95 -1.7) + (end -1.95 2.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "71188858-b8ba-4d32-83c2-908ff7592803") + ) + (fp_line + (start 7.95 -1.7) + (end -1.95 -1.7) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "cec61d57-ae96-4144-a117-91be470c30aa") + ) + (fp_line + (start -2.36 -2.11) + (end -2.36 -0.86) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "cdad83ce-fa9d-49f6-95ad-97cd6c26d9cd") + ) + (fp_line + (start -1.11 -2.11) + (end -2.36 -2.11) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8a11f8d1-3073-4760-bd86-8f1ee8476b50") + ) + (fp_text user "${REFERENCE}" + (at 3 1.5 90) + (layer "F.Fab") + (uuid "5038faeb-93f7-43b7-8bad-5c22b0c3c49b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole roundrect + (at 0 0 270) + (size 1.2 1.75) + (drill 0.75) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (roundrect_rratio 0.208333) + (net 25 "Net-(J2-Pin_1)") + (pinfunction "Pin_1") + (pintype "passive") + (uuid "4f2c5acd-b5ea-4a14-ae07-6751d95a0e8d") + ) + (pad "2" thru_hole oval + (at 2 0 270) + (size 1.2 1.75) + (drill 0.75) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 26 "Net-(J2-Pin_2)") + (pinfunction "Pin_2") + (pintype "passive") + (uuid "d59cacac-8351-4a2e-9815-8223e3b3932d") + ) + (pad "3" thru_hole oval + (at 4 0 270) + (size 1.2 1.75) + (drill 0.75) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 27 "Net-(J2-Pin_3)") + (pinfunction "Pin_3") + (pintype "passive") + (uuid "836941c7-2bb4-4661-9cc9-e1a04c1c9cb4") + ) + (pad "4" thru_hole oval + (at 6 0 270) + (size 1.2 1.75) + (drill 0.75) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Pin_4") + (pintype "passive") + (uuid "51fa6d78-3119-4873-93e9-212f23a3ccc0") + ) + (model "${KICAD6_3DMODEL_DIR}/Connector_JST.3dshapes/JST_PH_B4B-PH-K_1x04_P2.00mm_Vertical.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "TestPoint:TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded" + (layer "F.Cu") + (uuid "1e01e460-b56c-4c5c-aa7b-74a3e5b7094d") + (at 86.868 114.554) + (descr "wire loop with bead as test point, loop diameter 1.8mm, hole diameter 1.0mm") + (tags "test point wire loop bead") + (property "Reference" "TP3" + (at 0.7 2.5 0) + (layer "F.SilkS") + (hide yes) + (uuid "aafe99a6-e1e8-4e73-b04b-fa1449f4e3c5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "12V" + (at 0 -2.8 0) + (layer "F.SilkS") + (uuid "85d16adc-5189-46bf-93d2-85ef0eee2c2a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "16634553-f7c1-42a4-a7d3-71704a7127e0") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0719088c-805f-4470-95a8-49deebb8bfd9") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "test point" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "03b1c984-627b-49ec-9638-2d03bb29bd99") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/6f756413-1eca-4428-bb57-f890fa54c873") + (sheetfile "windshield.kicad_sch") + (attr through_hole) + (fp_circle + (center 0 0) + (end 1.5 0) + (stroke + (width 0.12) + (type solid) + ) + (fill none) + (layer "F.SilkS") + (uuid "a82cb39b-808c-4455-b04b-9dca4d4c2f31") + ) + (fp_circle + (center 0 0) + (end 1.8 0) + (stroke + (width 0.05) + (type solid) + ) + (fill none) + (layer "F.CrtYd") + (uuid "509c7d0e-fabd-42b5-b5e4-72598894ca3e") + ) + (fp_line + (start -0.9 -0.2) + (end 0.9 -0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "21a03486-27ad-4458-a064-be36c28eade0") + ) + (fp_line + (start -0.9 0.2) + (end -0.9 -0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "9c0ef858-523f-4002-ae28-d80274228d30") + ) + (fp_line + (start 0.9 -0.2) + (end 0.9 0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "3f88eef2-110e-43f0-8e32-a3b90becc53a") + ) + (fp_line + (start 0.9 0.2) + (end -0.9 0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "3f2329e4-0570-4cef-b17a-1fe79714f952") + ) + (fp_circle + (center 0 0) + (end 1.3 0) + (stroke + (width 0.12) + (type solid) + ) + (fill none) + (layer "F.Fab") + (uuid "cf699456-2439-4ec9-b80e-f02062d200ab") + ) + (fp_text user "${REFERENCE}" + (at 0.7 2.5 0) + (layer "F.Fab") + (uuid "12d28b53-a17f-4edd-a1de-b22af60aaee1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole circle + (at 0 0) + (size 2 2) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 3 "+12V") + (pinfunction "1") + (pintype "passive") + (uuid "7c3fa723-a2b5-4bc2-9caf-b7357b6af3ab") + ) + (model "${KICAD6_3DMODEL_DIR}/TestPoint.3dshapes/TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (layer "F.Cu") + (uuid "25bcb982-59e8-4ece-a4b3-d8b24d910060") + (at 80.3675 84.328 180) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor handsolder") + (property "Reference" "R7" + (at -2.6905 -0.0508 0) + (layer "F.SilkS") + (uuid "a8f73390-2cec-4257-982d-6c348347f71d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "100k" + (at 0 1.43 0) + (layer "F.Fab") + (uuid "d92447cf-08ce-4e4c-bea6-eecf7aa21b4f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c2e064fc-5c4a-4b1d-bf17-8885defaad49") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a71ae257-eef2-4363-a216-395601b73860") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2b65f825-55a6-41af-85da-b02c773d6ef2") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/f41f8cea-c2e3-45a8-8558-a5ad445aa7cf") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -0.254724 0.5225) + (end 0.254724 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0d9281d9-40e8-4bc2-b674-6acfae29b5dd") + ) + (fp_line + (start -0.254724 -0.5225) + (end 0.254724 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b04ed4a6-83a2-4a09-a2e4-274502354713") + ) + (fp_line + (start 1.65 0.73) + (end -1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b9b6aa62-794e-4ac1-9056-274fb771f236") + ) + (fp_line + (start 1.65 -0.73) + (end 1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "ac8e8204-57e9-43e3-9b3d-f08200137645") + ) + (fp_line + (start -1.65 0.73) + (end -1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "0cf940bf-3e13-4e2a-808e-e04514941bdb") + ) + (fp_line + (start -1.65 -0.73) + (end 1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2e556be1-0334-45cb-89af-92ac0e20a8de") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f67c0fba-593e-4aea-806d-b835f7ffa91d") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f37142f5-3e5a-468c-909f-0ed3b1bf4abf") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a8b14dfb-7071-48cb-8617-b671be16f816") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "299d3d03-5d69-4356-a48d-f90cb582cfd7") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "a1ee81ec-c809-49bb-8b7c-612ac3c72cab") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.9125 0 180) + (size 0.975 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 1 "+5V") + (pintype "passive") + (uuid "81b6a82a-af20-43a8-9013-bc9cd72c413a") + ) + (pad "2" smd roundrect + (at 0.9125 0 180) + (size 0.975 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 7 "Net-(U2-FB)") + (pintype "passive") + (uuid "f738a980-6332-47c0-a61a-31c9b06ddb20") + ) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Connector_PinSocket_1.27mm:PinSocket_1x06_P1.27mm_Vertical" + (layer "F.Cu") + (uuid "28ca907c-0dc8-44db-8f27-0fe94986fb1b") + (at 114.173 72.2884 -90) + (descr "Through hole straight socket strip, 1x06, 1.27mm pitch, single row (from Kicad 4.0.7), script generated") + (tags "Through hole socket strip THT 1x06 1.27mm single row") + (property "Reference" "J5" + (at 0 -2.135 90) + (layer "F.SilkS") + (hide yes) + (uuid "efbaa933-549d-458c-b882-a9a82b8240a4") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "Prog" + (at 0.2116 -2.159 90) + (layer "F.SilkS") + (uuid "f4ad3e7e-a507-441e-900d-c1dc83cc8361") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d1dc1326-46d9-46cd-b55d-e88f16edaf93") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "be02314f-528d-4bff-856f-c15216f9df50") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Generic connector, single row, 01x06, script generated" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d55282b7-bfb2-4300-a639-9e5827acb797") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/687e93fa-7aa1-4bcb-bf2d-98cd66173c09") + (sheetfile "windshield.kicad_sch") + (attr through_hole) + (fp_line + (start -1.33 7.045) + (end -0.30753 7.045) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "269083c6-08e6-4bf8-bbde-157a3cd02eb2") + ) + (fp_line + (start 0.30753 7.045) + (end 1.33 7.045) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b6c15f47-8f6b-4ae5-8ea3-45a7ecdad27b") + ) + (fp_line + (start -1.33 0.635) + (end -1.33 7.045) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d5a39159-8da3-4c00-8371-2144f0a1e5a6") + ) + (fp_line + (start -1.33 0.635) + (end -0.76 0.635) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1a33da61-8251-4426-90cb-9ea44a9c77f6") + ) + (fp_line + (start 0.76 0.635) + (end 1.33 0.635) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3149725e-d4ab-40e7-975b-2442cd826696") + ) + (fp_line + (start 1.33 0.635) + (end 1.33 7.045) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e5beb3fa-62f3-451d-b47a-33cd3458fb21") + ) + (fp_line + (start 0 -0.76) + (end 1.33 -0.76) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "506f8248-ebf1-47ca-b69c-fa0de3f4fa74") + ) + (fp_line + (start 1.33 -0.76) + (end 1.33 0) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "930b2358-ece7-4c91-a481-9cc301d59fb3") + ) + (fp_line + (start -1.8 7.5) + (end -1.8 -1.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "d8328c9d-b410-407d-91af-80a681244ca1") + ) + (fp_line + (start 1.75 7.5) + (end -1.8 7.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "13d6ef15-22d8-483a-bb1b-ee1b661ddc6c") + ) + (fp_line + (start -1.8 -1.15) + (end 1.75 -1.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "0281d407-f52a-496f-a401-e27524e46f9a") + ) + (fp_line + (start 1.75 -1.15) + (end 1.75 7.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e02f1b77-a742-464e-b361-9d266075ffe4") + ) + (fp_line + (start -1.27 6.985) + (end -1.27 -0.635) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e1f0dd1a-39e6-4c38-8084-02136abcd379") + ) + (fp_line + (start 1.27 6.985) + (end -1.27 6.985) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d8714fbd-9d92-4ec5-ad58-e804ba2c3f87") + ) + (fp_line + (start 1.27 0) + (end 1.27 6.985) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "1d244d4b-8f29-490a-880c-5ed075c932af") + ) + (fp_line + (start -1.27 -0.635) + (end 0.635 -0.635) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "713dbc23-52ec-472d-8b8d-f3e65f630747") + ) + (fp_line + (start 0.635 -0.635) + (end 1.27 0) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "05eba58d-09a7-4dea-a771-7f25a9e0586a") + ) + (fp_text user "${REFERENCE}" + (at 0 3.175 0) + (layer "F.Fab") + (uuid "21c375d3-a9ba-4e22-82f9-9c544c12ead1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole rect + (at 0 0 270) + (size 1 1) + (drill 0.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 31 "/SWCLK") + (pinfunction "Pin_1") + (pintype "passive") + (uuid "8038b1bc-a5d2-4472-867e-3bee9e5f4a8d") + ) + (pad "2" thru_hole oval + (at 0 1.27 270) + (size 1 1) + (drill 0.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 32 "/SWDIO") + (pinfunction "Pin_2") + (pintype "passive") + (uuid "f072b5b1-04a6-4cde-8d03-e6a0aa6cf480") + ) + (pad "3" thru_hole oval + (at 0 2.54 270) + (size 1 1) + (drill 0.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Pin_3") + (pintype "passive") + (uuid "e7c5d606-901c-42e7-b688-da5ba3f6c877") + ) + (pad "4" thru_hole oval + (at 0 3.81 270) + (size 1 1) + (drill 0.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 33 "Net-(J5-Pin_4)") + (pinfunction "Pin_4") + (pintype "passive") + (uuid "36bbc556-d5a0-4575-a7c1-413fed9c83de") + ) + (pad "5" thru_hole oval + (at 0 5.08 270) + (size 1 1) + (drill 0.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 34 "/BOOT0") + (pinfunction "Pin_5") + (pintype "passive") + (uuid "c4d5b2ae-7d6c-43e9-b007-b984a2f762e4") + ) + (pad "6" thru_hole oval + (at 0 6.35 270) + (size 1 1) + (drill 0.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 35 "/NRST") + (pinfunction "Pin_6") + (pintype "passive") + (uuid "3e30995d-e4c2-4f27-9dea-052bfba20c84") + ) + (model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_1.27mm.3dshapes/PinSocket_1x06_P1.27mm_Vertical.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" + (layer "F.Cu") + (uuid "2d247542-3eab-4f75-a969-59d1737bd706") + (at 116.586 91.7945 -90) + (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (property "Reference" "C12" + (at 0.8901 -2.159 180) + (layer "F.SilkS") + (uuid "a0146e2f-d13e-4a8b-94de-41b3666853b9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "0.1" + (at 0 1.43 90) + (layer "F.Fab") + (uuid "bf24bd29-d9e6-4ea3-98dd-ed3dc7037079") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a018fd35-b617-47bf-b7f1-e253d78c90d8") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d3b3e886-1370-4ed9-b096-f95830994a89") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5a0eea33-fcea-453f-b37b-7d3fa03d5c81") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/a584b76a-1727-482d-b8e6-e2edaf6882d5") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -0.146267 0.51) + (end 0.146267 0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "106a9a30-f3c6-4143-b90d-c9be96be7d2a") + ) + (fp_line + (start -0.146267 -0.51) + (end 0.146267 -0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "14b909ab-5f2f-4256-be11-387be3c4ac6e") + ) + (fp_line + (start -1.65 0.73) + (end -1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "6babfc4d-70d3-4945-8925-264799f4cdfd") + ) + (fp_line + (start 1.65 0.73) + (end -1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9ff126fb-0988-43a3-a4b1-035bfe2e10fe") + ) + (fp_line + (start -1.65 -0.73) + (end 1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "d51f9984-5ebd-4085-be68-3f5ef09b8113") + ) + (fp_line + (start 1.65 -0.73) + (end 1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "68b98d3a-f0da-452f-a136-6c23a46caab3") + ) + (fp_line + (start -0.8 0.4) + (end -0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d0587880-3636-49de-9c60-4f72da08b871") + ) + (fp_line + (start 0.8 0.4) + (end -0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2d9a62b6-883d-4534-a3df-f7e3b2feab0d") + ) + (fp_line + (start -0.8 -0.4) + (end 0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "96df01b2-4b1b-41d2-a587-6db96f914ef6") + ) + (fp_line + (start 0.8 -0.4) + (end 0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8c8f2877-555c-4f29-b4fb-f5f263819d8a") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "4772c4cd-9297-4ae0-8983-79c1950bcb7f") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.8625 0 270) + (size 1.075 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 6 "+3V3") + (pintype "passive") + (uuid "d33f97bb-e25f-4748-8738-123456be370a") + ) + (pad "2" smd roundrect + (at 0.8625 0 270) + (size 1.075 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "4a5ca88b-ab0c-47dc-9118-ba1b1a549b84") + ) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "TestPoint:TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded" + (layer "F.Cu") + (uuid "2e74c545-c1df-4013-aeec-7c1520a97b6d") + (at 95.5548 84.0486) + (descr "wire loop with bead as test point, loop diameter 1.8mm, hole diameter 1.0mm") + (tags "test point wire loop bead") + (property "Reference" "TP5" + (at 0.7 2.5 0) + (layer "F.SilkS") + (hide yes) + (uuid "b06dad7d-40dc-403d-a816-4a5f0b071067") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "3V3" + (at 0 -2.8 0) + (layer "F.SilkS") + (uuid "dc7b1422-bf8c-40cc-9835-76f2907e4d73") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f2443b9b-f5af-4ab3-991d-72980b557af4") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "78ad6f8b-87d6-48ec-9997-7d4c3dacd85f") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "test point" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9997b683-3a71-471b-805f-73415eee83d1") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/21e8e784-612e-4640-aee1-3042d238a077") + (sheetfile "windshield.kicad_sch") + (attr through_hole) + (fp_circle + (center 0 0) + (end 1.5 0) + (stroke + (width 0.12) + (type solid) + ) + (fill none) + (layer "F.SilkS") + (uuid "29039873-9606-407b-98e7-add633d2514c") + ) + (fp_circle + (center 0 0) + (end 1.8 0) + (stroke + (width 0.05) + (type solid) + ) + (fill none) + (layer "F.CrtYd") + (uuid "ed769d34-d751-4dac-8ec1-ac0c8fb3649c") + ) + (fp_line + (start -0.9 -0.2) + (end 0.9 -0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "bd9b9790-8ee6-40a0-b580-84dc48696385") + ) + (fp_line + (start -0.9 0.2) + (end -0.9 -0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "8163d7f7-2cde-4fcd-8d25-b118a33446ef") + ) + (fp_line + (start 0.9 -0.2) + (end 0.9 0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "731692ea-8731-4a58-9489-a33de09706aa") + ) + (fp_line + (start 0.9 0.2) + (end -0.9 0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "889c4fb9-4ef5-4e63-aeb4-efa52824d9b6") + ) + (fp_circle + (center 0 0) + (end 1.3 0) + (stroke + (width 0.12) + (type solid) + ) + (fill none) + (layer "F.Fab") + (uuid "dc77c6f4-0c54-4533-8fb0-80630bac722e") + ) + (fp_text user "${REFERENCE}" + (at 0.7 2.5 0) + (layer "F.Fab") + (uuid "dd33681d-eff8-4c1e-b0c2-9d31f265b72a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole circle + (at 0 0) + (size 2 2) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 6 "+3V3") + (pinfunction "1") + (pintype "passive") + (uuid "1960342b-4740-4432-8ed5-1519d21c190b") + ) + (model "${KICAD6_3DMODEL_DIR}/TestPoint.3dshapes/TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_THT:R_Box_L14.0mm_W5.0mm_P9.00mm" + (layer "F.Cu") + (uuid "30c0c9a3-783b-4cbc-84e1-bb0cea3985c6") + (at 97.354 98.806) + (descr "Resistor, Box series, Radial, pin pitch=9.00mm, 5W, length*width=14.0*5.0mm^2, http://www.produktinfo.conrad.com/datenblaetter/425000-449999/443860-da-01-de-METALLBAND_WIDERSTAND_0_1_OHM_5W_5Pr.pdf") + (tags "Resistor Box series Radial pin pitch 9.00mm 5W length 14.0mm width 5.0mm") + (property "Reference" "R20" + (at 4.5 -3.75 0) + (layer "F.SilkS") + (uuid "5183a978-7f63-4501-a28f-365299379f15") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "0.05" + (at 4.5 3.75 0) + (layer "F.Fab") + (uuid "626eab42-625b-4226-816b-4a54aa1744da") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "696bb919-f639-4427-aa78-56007648909b") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d9aa93d4-0e27-4b11-81f5-9d0e44f276ab") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f7936436-c0d3-466c-9078-f706813382b4") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/0c7fee8d-333c-4847-9a86-c6aaf2cd04e4") + (sheetfile "windshield.kicad_sch") + (attr through_hole) + (fp_line + (start -2.62 -2.62) + (end -2.62 2.62) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0c888846-8615-45a1-b68f-c4af18dce70f") + ) + (fp_line + (start -2.62 -2.62) + (end 11.62 -2.62) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5a462b97-e7f7-4c0f-af5e-975d97b26f9d") + ) + (fp_line + (start -2.62 2.62) + (end 11.62 2.62) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "52dfb8e4-82af-47f7-8e48-65a26a576ce7") + ) + (fp_line + (start 11.62 -2.62) + (end 11.62 2.62) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "62480b9c-e9b8-4bca-89bb-f0c307bc9ed3") + ) + (fp_line + (start -2.75 -2.75) + (end -2.75 2.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "530c0dd2-5ab6-460c-bb74-799faf103d24") + ) + (fp_line + (start -2.75 2.75) + (end 11.75 2.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "88323b5f-3ec3-49bd-a1be-b2222648ea74") + ) + (fp_line + (start 11.75 -2.75) + (end -2.75 -2.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9cacde2f-dc2c-4c05-9aa4-d4aded6feb46") + ) + (fp_line + (start 11.75 2.75) + (end 11.75 -2.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "4a03614b-9f60-42a4-adec-a472825ec3e1") + ) + (fp_line + (start -2.5 -2.5) + (end -2.5 2.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e23ce763-1c79-4076-8321-9d2cf422a10a") + ) + (fp_line + (start -2.5 2.5) + (end 11.5 2.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "39ad70be-ebc4-42fb-89bf-fc37e1740f78") + ) + (fp_line + (start 11.5 -2.5) + (end -2.5 -2.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "581d29ce-da27-4229-a52c-995f09e2a6a4") + ) + (fp_line + (start 11.5 2.5) + (end 11.5 -2.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "99cf00b3-f866-4496-80f8-f895ab350c5f") + ) + (fp_text user "${REFERENCE}" + (at 4.5 0 0) + (layer "F.Fab") + (uuid "92799b30-10c6-47fa-88b9-46296b7d3cc8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole circle + (at 0 0) + (size 2 2) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 3 "+12V") + (pintype "passive") + (uuid "7b553dfd-e985-489b-8ec2-7b0c157f1b25") + ) + (pad "2" thru_hole circle + (at 9 0) + (size 2 2) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 39 "Net-(Q2-S)") + (pintype "passive") + (uuid "81bc8677-0821-40fa-876c-977e5f27c938") + ) + (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Box_L14.0mm_W5.0mm_P9.00mm.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "TestPoint:TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded" + (layer "F.Cu") + (uuid "34ae6c07-8be9-4675-8329-175926271736") + (at 89.916 88.646) + (descr "wire loop with bead as test point, loop diameter 1.8mm, hole diameter 1.0mm") + (tags "test point wire loop bead") + (property "Reference" "TP1" + (at 0.7 2.5 0) + (layer "F.SilkS") + (hide yes) + (uuid "ba2a1a27-6c73-40b2-8ac2-65ba3ce07c9d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "Gnd" + (at 0 -2.54 0) + (layer "F.SilkS") + (uuid "9898714e-6fa0-4da8-9d29-283befbf2f25") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b3e87519-f6a4-4f8d-8eb2-45a5f48d6f3c") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2e665b7c-4b3c-4ff7-80aa-9bb52ff6fcc9") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "test point" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "af3dfb64-2174-4a5c-ad52-727d89e7f9a1") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/cbc6243a-5f74-44b4-b800-9818b40ddc47") + (sheetfile "windshield.kicad_sch") + (attr through_hole) + (fp_circle + (center 0 0) + (end 1.5 0) + (stroke + (width 0.12) + (type solid) + ) + (fill none) + (layer "F.SilkS") + (uuid "a04464ab-4c31-42d7-a912-425988eb21a6") + ) + (fp_circle + (center 0 0) + (end 1.8 0) + (stroke + (width 0.05) + (type solid) + ) + (fill none) + (layer "F.CrtYd") + (uuid "d47fa263-3c86-41bc-a1b2-0d0cd19731db") + ) + (fp_line + (start -0.9 -0.2) + (end 0.9 -0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "9be59b6f-ad00-46b8-a779-b3dbd1a3a9e4") + ) + (fp_line + (start -0.9 0.2) + (end -0.9 -0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "b3426c77-9e11-485c-a280-f0ac1ae81a59") + ) + (fp_line + (start 0.9 -0.2) + (end 0.9 0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "a1036176-ed1b-4402-850e-e9bf223fb540") + ) + (fp_line + (start 0.9 0.2) + (end -0.9 0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "05321ed1-0d46-4ce9-947a-31c4ef6c1d6b") + ) + (fp_circle + (center 0 0) + (end 1.3 0) + (stroke + (width 0.12) + (type solid) + ) + (fill none) + (layer "F.Fab") + (uuid "1037eebc-7884-4884-9958-563f637ab36e") + ) + (fp_text user "${REFERENCE}" + (at 0.7 2.5 0) + (layer "F.Fab") + (uuid "24c2ff55-b32d-4356-bba5-2614781e97e1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole circle + (at 0 0) + (size 2 2) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "1") + (pintype "passive") + (uuid "7b18a96c-742b-4b2f-be8d-11ee6d2ebd60") + ) + (model "${KICAD6_3DMODEL_DIR}/TestPoint.3dshapes/TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" + (layer "F.Cu") + (uuid "40506150-35b7-4ec5-801e-e0ec218d6036") + (at 102.616 89.5085 90) + (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (property "Reference" "C11" + (at -2.4395 0.508 180) + (layer "F.SilkS") + (uuid "7806051c-83c9-4bcd-a210-67089012fcf0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "0.1" + (at 0 1.43 90) + (layer "F.Fab") + (uuid "5055b439-59ab-436d-a36a-2cc8a79a4df4") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e82e2bdd-34bb-44eb-8860-c1fba3983c83") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5af5f66a-8ada-4988-a454-db3f49c6481d") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "03997cd5-24b2-405f-828d-89a219d29166") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/40e246c7-0204-46de-878c-c8b852fd8ab9") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -0.146267 -0.51) + (end 0.146267 -0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c0f3f084-4b76-4d36-b8a8-31ef144ad852") + ) + (fp_line + (start -0.146267 0.51) + (end 0.146267 0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "27a75906-5696-4610-8c13-bc172266d2f1") + ) + (fp_line + (start 1.65 -0.73) + (end 1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "af7f05b7-178d-4ac8-ab5c-246e67384702") + ) + (fp_line + (start -1.65 -0.73) + (end 1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b89528da-9a67-477b-98ca-8b43ce991975") + ) + (fp_line + (start 1.65 0.73) + (end -1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "30dd93a5-d051-46da-8a12-58d42f04b5c1") + ) + (fp_line + (start -1.65 0.73) + (end -1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "0f43635b-273c-4bff-a469-ccf4a036b84e") + ) + (fp_line + (start 0.8 -0.4) + (end 0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6fdf51c4-7d99-4cd8-9843-af29764e7981") + ) + (fp_line + (start -0.8 -0.4) + (end 0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a9067e2d-19da-4aed-aa38-9baa4e347fd2") + ) + (fp_line + (start 0.8 0.4) + (end -0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e70cc1e7-9456-499a-8521-6a22766a98e4") + ) + (fp_line + (start -0.8 0.4) + (end -0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "96879d3f-6d16-4973-8338-44e3912266ea") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "7ab19610-96c7-4c16-906b-7b46ff335104") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.8625 0 90) + (size 1.075 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 6 "+3V3") + (pintype "passive") + (uuid "172be9dc-e995-4796-8510-1ca8bfe96b7c") + ) + (pad "2" smd roundrect + (at 0.8625 0 90) + (size 1.075 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "b860ff5f-b11a-4d1f-9e00-63cb7f566c21") + ) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "TestPoint:TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded" + (layer "F.Cu") + (uuid "434c314e-1427-4250-9854-f349d271d6e3") + (at 111.9124 107.696) + (descr "wire loop with bead as test point, loop diameter 1.8mm, hole diameter 1.0mm") + (tags "test point wire loop bead") + (property "Reference" "TP10" + (at 0.7 2.5 0) + (layer "F.SilkS") + (hide yes) + (uuid "d9c95b72-39de-4e2f-9403-b9a0162305d1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "R+" + (at 2.9464 -0.635 0) + (layer "F.SilkS") + (uuid "85fbe137-e5e8-4f56-97ce-73634a06b13e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "16717af9-f4fe-4911-8812-4cd13b85304d") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b6782aa5-3bc4-4b98-94f9-9164d73cb7da") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "test point" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "bbe02f1a-579d-4eee-8f58-3604475b0262") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/8aceb784-8188-4576-ab17-f3db7be86fb4") + (sheetfile "windshield.kicad_sch") + (attr through_hole) + (fp_circle + (center 0 0) + (end 1.5 0) + (stroke + (width 0.12) + (type solid) + ) + (fill none) + (layer "F.SilkS") + (uuid "6eb7ab77-1b9f-4dab-950f-2ad60a932736") + ) + (fp_circle + (center 0 0) + (end 1.8 0) + (stroke + (width 0.05) + (type solid) + ) + (fill none) + (layer "F.CrtYd") + (uuid "aa380643-d555-45b1-9772-58247bd5807d") + ) + (fp_line + (start -0.9 -0.2) + (end 0.9 -0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "4d67c51b-ae11-4285-a44a-6568a6d0f36a") + ) + (fp_line + (start -0.9 0.2) + (end -0.9 -0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "c1485456-c8ba-4bbe-a3ce-e1c908b525c8") + ) + (fp_line + (start 0.9 -0.2) + (end 0.9 0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "9f0bd503-6e53-4848-863d-e154bd126b21") + ) + (fp_line + (start 0.9 0.2) + (end -0.9 0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "6e8a8a5f-9f24-480d-8736-34659adf95c4") + ) + (fp_circle + (center 0 0) + (end 1.3 0) + (stroke + (width 0.12) + (type solid) + ) + (fill none) + (layer "F.Fab") + (uuid "3e91e286-85f8-406c-a2ee-3dd23080fd3d") + ) + (fp_text user "${REFERENCE}" + (at 0.7 2.5 0) + (layer "F.Fab") + (uuid "52d1ad83-3722-400a-a1cf-0c09904f14d1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole circle + (at 0 0) + (size 2 2) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 52 "/R_UP") + (pinfunction "1") + (pintype "passive") + (uuid "cddea7f6-5b11-41e9-bca8-88c93dffb56c") + ) + (model "${KICAD6_3DMODEL_DIR}/TestPoint.3dshapes/TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" + (layer "F.Cu") + (uuid "4d5a0ac5-c4f9-4e0a-bb4b-55af8a60a840") + (at 116.84 82.7035 -90) + (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (property "Reference" "C9" + (at -1.4235 1.778 180) + (layer "F.SilkS") + (uuid "240b88ec-05b2-47dd-8178-0c9101cd10b3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "0.1" + (at 0 1.43 90) + (layer "F.Fab") + (uuid "a231ca85-44a5-4713-bba9-af47ae8939fc") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4d302ca1-d6c1-46e3-9b58-8f5597f1e186") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2c1fa79a-4669-4f38-aba2-11721d099fef") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "bda15192-b9cc-4620-86f8-6d74db6a16d2") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/7ead0da8-d40b-4429-8539-b98e08321c21") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -0.146267 0.51) + (end 0.146267 0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b5cfd9c6-60cd-4289-b8ce-a39b0d7dfd7c") + ) + (fp_line + (start -0.146267 -0.51) + (end 0.146267 -0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1c22313b-f360-476d-a8c2-3a216e2dd0ba") + ) + (fp_line + (start -1.65 0.73) + (end -1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "05788ac2-6ad1-4cec-9d7e-81f746ff3190") + ) + (fp_line + (start 1.65 0.73) + (end -1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "54a72f18-3405-4f3d-b30c-1e47e6332f3b") + ) + (fp_line + (start -1.65 -0.73) + (end 1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "de824ec8-dc31-4bc3-82cb-785c5c694c4d") + ) + (fp_line + (start 1.65 -0.73) + (end 1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "7964db02-55d7-4481-a806-7ea4aaf475e8") + ) + (fp_line + (start -0.8 0.4) + (end -0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3a53eef0-42f4-495c-8972-8440002d9902") + ) + (fp_line + (start 0.8 0.4) + (end -0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ce4e3d5a-12b4-44d5-9655-d6ae3831625f") + ) + (fp_line + (start -0.8 -0.4) + (end 0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d20312af-5a12-4c5c-ae1a-a16e0f22dc95") + ) + (fp_line + (start 0.8 -0.4) + (end 0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "59c806bb-c0dd-475a-b4b3-f1aac6e05243") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "469f6e80-a453-4286-831b-2f4a4b212113") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.8625 0 270) + (size 1.075 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 6 "+3V3") + (pintype "passive") + (uuid "d89b5bc6-2d81-49e8-9892-34f819109251") + ) + (pad "2" smd roundrect + (at 0.8625 0 270) + (size 1.075 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "56905b20-c3b0-473a-a917-5032e2968cfc") + ) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_1206_3216Metric" + (layer "F.Cu") + (uuid "4f458a8b-f30b-43fc-b1dd-4dcf5f472355") + (at 92.456 83.517 -90) + (descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "capacitor") + (property "Reference" "C4" + (at -3.097 0 180) + (layer "F.SilkS") + (uuid "146731dd-fcff-4ead-bcf6-ed74e57cb454") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "47u" + (at 0 1.85 90) + (layer "F.Fab") + (uuid "818448db-c873-47f4-8b94-096113868f2e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3add26a9-2518-4042-828e-656467d2a138") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "20131441-270e-4e88-9425-b79ebcd2efca") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b530ef77-ed47-4342-b7ec-5a30e6e83661") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/89d9e89e-591d-4a71-9909-c085adf5350c") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -0.711252 0.91) + (end 0.711252 0.91) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d7e670e1-53ef-4a66-90d9-bcd88fa51a54") + ) + (fp_line + (start -0.711252 -0.91) + (end 0.711252 -0.91) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "66c2f254-dc5e-4bba-9074-36426f93ac2f") + ) + (fp_line + (start -2.3 1.15) + (end -2.3 -1.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "deb8c192-ad44-4fd9-a51c-7e2dbdc93841") + ) + (fp_line + (start 2.3 1.15) + (end -2.3 1.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "323e0c38-97a9-4538-8352-b9fc2825ce7f") + ) + (fp_line + (start -2.3 -1.15) + (end 2.3 -1.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "892ab00b-a3d8-4fa0-9529-980d7a2e1340") + ) + (fp_line + (start 2.3 -1.15) + (end 2.3 1.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "1a425f84-b2f2-45aa-87e2-71b6cee5409f") + ) + (fp_line + (start -1.6 0.8) + (end -1.6 -0.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "1421ea0c-50c7-4dea-bb92-063050ecd396") + ) + (fp_line + (start 1.6 0.8) + (end -1.6 0.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "5deb62c2-729d-4d20-8e79-cd29fb909246") + ) + (fp_line + (start -1.6 -0.8) + (end 1.6 -0.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e23e56e6-bdba-4b47-b76a-2ce3b88fd049") + ) + (fp_line + (start 1.6 -0.8) + (end 1.6 0.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "5892061d-949f-4299-ae21-44907ee684e0") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "1e51182b-1eb3-4196-ae13-eacb8ac30826") + (effects + (font + (size 0.8 0.8) + (thickness 0.12) + ) + ) + ) + (pad "1" smd roundrect + (at -1.475 0 270) + (size 1.15 1.8) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.217391) + (net 6 "+3V3") + (pintype "passive") + (uuid "826d3baa-2c2d-450d-84ee-e4609ea36b62") + ) + (pad "2" smd roundrect + (at 1.475 0 270) + (size 1.15 1.8) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.217391) + (net 2 "GND") + (pintype "passive") + (uuid "21b8b0f6-e3fd-475d-a752-659def455a2c") + ) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Package_TO_SOT_SMD:SOT-23_Handsoldering" + (layer "F.Cu") + (uuid "5279b9c4-2b69-4f93-b077-529519d8ccc7") + (at 103.656 108.646 180) + (descr "SOT-23, Handsoldering") + (tags "SOT-23") + (property "Reference" "Q6" + (at 0 -2.5 0) + (layer "F.SilkS") + (uuid "0fa300de-5703-4957-8400-fce0ca44824d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "2N7002" + (at 0 2.5 0) + (layer "F.Fab") + (uuid "c834e84e-9ba6-4d41-8105-56fca573cec4") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "bdeaf2c5-8bd9-457d-b970-66f6255c669b") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "93e442ac-402e-49c9-ac95-42281af49098") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "N-MOSFET transistor, gate/source/drain" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ece2dbce-5b76-47a9-b45f-96c11c8ed74f") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/6e9b6f62-1be3-4436-a767-96d5cae2139e") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start 0.76 1.58) + (end 0.76 0.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "188b761c-0703-44d7-b1cb-95410e91c07b") + ) + (fp_line + (start 0.76 1.58) + (end -0.7 1.58) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d0d0bbd3-f6b0-435d-acef-e3a379873f8d") + ) + (fp_line + (start 0.76 -1.58) + (end 0.76 -0.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ebbde502-9676-4c77-ad53-b91fc6f69a44") + ) + (fp_line + (start 0.76 -1.58) + (end -2.4 -1.58) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6cacea1d-dcb6-423e-ad37-cd5a725817ab") + ) + (fp_line + (start 2.7 1.75) + (end -2.7 1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "41d7cb21-6b61-4144-bf97-5bd2c809934a") + ) + (fp_line + (start 2.7 -1.75) + (end 2.7 1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b8be1a24-258c-400c-931a-fcf428162c9b") + ) + (fp_line + (start -2.7 1.75) + (end -2.7 -1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "6d57ce39-4d7a-417d-b52c-183aee474f62") + ) + (fp_line + (start -2.7 -1.75) + (end 2.7 -1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3a63d4f3-8a5b-4f5e-9816-590859568072") + ) + (fp_line + (start 0.7 -1.52) + (end 0.7 1.52) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "cc6d478e-f9c2-44ef-b395-0ce197b69ed0") + ) + (fp_line + (start -0.15 -1.52) + (end 0.7 -1.52) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c01d05e6-101b-4f61-a6f3-3451563236d7") + ) + (fp_line + (start -0.7 1.52) + (end 0.7 1.52) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b87cfc50-4ad4-4819-b319-e42454e1cf32") + ) + (fp_line + (start -0.7 -0.95) + (end -0.15 -1.52) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6a51734d-6030-4a68-a3d7-e2c63b068f7e") + ) + (fp_line + (start -0.7 -0.95) + (end -0.7 1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "81b47860-9ab2-4abe-bb1f-108a728733b3") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "4615c9bd-99a4-4b6e-9d6f-960a8af820da") + (effects + (font + (size 0.5 0.5) + (thickness 0.075) + ) + ) + ) + (pad "1" smd rect + (at -1.5 -0.95 180) + (size 1.9 0.8) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 43 "Net-(Q6-G)") + (pinfunction "G") + (pintype "input") + (uuid "4a27c090-258e-4391-9296-62fa8ac49bc2") + ) + (pad "2" smd rect + (at -1.5 0.95 180) + (size 1.9 0.8) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "S") + (pintype "passive") + (uuid "2d4f9578-593e-4e5b-8058-f8854d2a9b45") + ) + (pad "3" smd rect + (at 1.5 0 180) + (size 1.9 0.8) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 41 "Net-(Q4-G)") + (pinfunction "D") + (pintype "passive") + (uuid "6566ece5-a63e-47ae-9be2-81aff7dd7b71") + ) + (model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "kicad:cd43" + (layer "F.Cu") + (uuid "546ff89c-ebb4-4775-89a1-b6cd9ea6aa74") + (at 80.0614 93.2688) + (property "Reference" "L1" + (at 3.022 2.8956 0) + (layer "F.SilkS") + (uuid "4d45bdae-af67-4d56-b325-30a1f55bfac2") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "10u" + (at 0.0762 -5.3975 0) + (layer "F.Fab") + (uuid "e19b2cee-454a-4a65-830c-33199ab44d62") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "91760467-175a-4d40-bd6a-4f5b6121f414") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "66ba71e8-d7c7-473b-8286-af83bab08a4d") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Inductor" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "cb49d79c-5b95-4ca5-9eb2-edd14e593472") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/adf6c8f5-8c10-4ff1-84a2-c09d6ffb3952") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_circle + (center 0 0) + (end 2.25 0) + (stroke + (width 0.15) + (type solid) + ) + (fill none) + (layer "F.Fab") + (uuid "a28716a5-639e-43fb-afb2-fd3d455362b5") + ) + (pad "1" smd oval + (at -1.625 0) + (size 1.75 4.5) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 4 "Net-(U2-SW)") + (pinfunction "1") + (pintype "passive") + (uuid "ee660c1b-c14b-4dd9-831f-849cc9464aeb") + ) + (pad "2" smd oval + (at 1.625 0) + (size 1.75 4.5) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 1 "+5V") + (pinfunction "2") + (pintype "passive") + (uuid "d8b1ddc5-6a02-4164-84ce-d841a2ccdd73") + ) + ) + (footprint "Connector_PinSocket_2.54mm:PinSocket_1x03_P2.54mm_Vertical" + (layer "F.Cu") + (uuid "5bf8ba99-d5ae-49a4-b8de-f4af94f93448") + (at 124.7498 88.0868 -90) + (descr "Through hole straight socket strip, 1x03, 2.54mm pitch, single row (from Kicad 4.0.7), script generated") + (tags "Through hole socket strip THT 1x03 2.54mm single row") + (property "Reference" "J4" + (at 2.515 5.446 0) + (layer "F.SilkS") + (hide yes) + (uuid "bbabe1b4-b104-4966-80da-b8af206bebf6") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "UART" + (at 0 7.85 90) + (layer "F.SilkS") + (uuid "f5a1182f-30a7-4120-a574-1c9cbda5b312") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e62ea920-9b03-4d8d-a496-500d2f5f3b61") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "dd49fcaf-171c-4dcb-b53b-0d7a9155bb91") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Generic connector, single row, 01x03, script generated" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "853bf8ef-06cd-4dbd-b6c9-e9bc251385d9") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/1bcf9c92-e28f-4301-aa01-20096e3417da") + (sheetfile "windshield.kicad_sch") + (attr through_hole) + (fp_line + (start -1.33 6.41) + (end 1.33 6.41) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d12a7b43-1c7e-4e61-88d1-5e41b0414b7f") + ) + (fp_line + (start -1.33 1.27) + (end -1.33 6.41) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "cf6545a7-e537-45f7-be4c-6a04378585dc") + ) + (fp_line + (start -1.33 1.27) + (end 1.33 1.27) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d734c502-dcd8-4904-8dc8-ea69d578f898") + ) + (fp_line + (start 1.33 1.27) + (end 1.33 6.41) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7dc5728d-1b6e-4fcd-b388-3fe13fcc0313") + ) + (fp_line + (start 0 -1.33) + (end 1.33 -1.33) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6b9ea9f2-8453-43ab-944c-059e4f122b88") + ) + (fp_line + (start 1.33 -1.33) + (end 1.33 0) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "cb3ac041-97b3-489b-9d44-a4311aee4415") + ) + (fp_line + (start -1.8 6.85) + (end -1.8 -1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2f9e4649-85bf-44b2-a899-48b662ecd963") + ) + (fp_line + (start 1.75 6.85) + (end -1.8 6.85) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "dbaeb466-bdeb-4a96-80ec-e4909ad1d736") + ) + (fp_line + (start -1.8 -1.8) + (end 1.75 -1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b388d83d-55a5-4e8e-a967-b5606099e6a5") + ) + (fp_line + (start 1.75 -1.8) + (end 1.75 6.85) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "d794cb54-ef21-4b28-91dc-7eeec848dab1") + ) + (fp_line + (start -1.27 6.35) + (end -1.27 -1.27) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4648436b-01e7-4fac-80b5-4c9a6934bc90") + ) + (fp_line + (start 1.27 6.35) + (end -1.27 6.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e5428637-0d8d-4dd9-8114-ce041b26dcee") + ) + (fp_line + (start 1.27 -0.635) + (end 1.27 6.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3b462df8-eb65-478c-a413-63fd73b8f7a4") + ) + (fp_line + (start -1.27 -1.27) + (end 0.635 -1.27) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "49f16de7-da51-43fc-b9ad-88c58887eee5") + ) + (fp_line + (start 0.635 -1.27) + (end 1.27 -0.635) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f2dc3f24-1f05-47aa-92f6-7b5c6826db78") + ) + (fp_text user "${REFERENCE}" + (at 0 2.54 0) + (layer "F.Fab") + (uuid "c1e944c7-0c0e-4dc0-ade8-3e7f7d607c00") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole rect + (at 0 0 270) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Pin_1") + (pintype "passive") + (uuid "728456cb-291d-49c8-b037-803b379afdce") + ) + (pad "2" thru_hole oval + (at 0 2.54 270) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 29 "/Rx") + (pinfunction "Pin_2") + (pintype "passive") + (uuid "58add82e-4897-41b1-b46c-256d30b16d3c") + ) + (pad "3" thru_hole oval + (at 0 5.08 270) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 30 "/Tx") + (pinfunction "Pin_3") + (pintype "passive") + (uuid "10efc13d-14cf-41fb-bd20-0bc15c840376") + ) + (model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x03_P2.54mm_Vertical.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" + (layer "F.Cu") + (uuid "5de1af47-129f-46ce-afe8-77ce841c65ab") + (at 80.4965 82.296 180) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (property "Reference" "C6" + (at -0.0215 1.778 0) + (layer "F.SilkS") + (uuid "75666b31-83c8-4653-8b3a-0906dc1dda36") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "22" + (at 0 1.68 0) + (layer "F.Fab") + (uuid "e67c5476-9f1f-4a5b-b546-070705421405") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c45db443-78f4-47f5-b60d-46e03b7756d9") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "6a03f039-fcce-4711-8f37-2da559ceaa34") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "6bd335a6-2e44-4a09-9e42-14914dac0a4d") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/069c60ee-3b02-4b2d-ac7e-e05693a8179c") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "976392e6-5f14-4764-983e-8f02857d0571") + ) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "870efad0-d64a-4b62-a109-d169f9b3a21c") + ) + (fp_line + (start 1.88 0.98) + (end -1.88 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "99e221ce-a276-493c-bbf3-025ce5d1cc2b") + ) + (fp_line + (start 1.88 -0.98) + (end 1.88 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "42ecc71a-7cd2-488e-9ae3-fbb62a43457f") + ) + (fp_line + (start -1.88 0.98) + (end -1.88 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b3032801-e3a2-4831-8407-532e8a3730f5") + ) + (fp_line + (start -1.88 -0.98) + (end 1.88 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "19c50b11-c94e-4459-bd34-bf799705a2f2") + ) + (fp_line + (start 1 0.625) + (end -1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3f744a55-f0f8-4b43-a4bd-fe8dc50f5ee2") + ) + (fp_line + (start 1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "21031c56-7a1c-4341-8139-59d2270553ac") + ) + (fp_line + (start -1 0.625) + (end -1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4f71697b-622f-4c19-9f47-cc8409c73c11") + ) + (fp_line + (start -1 -0.625) + (end 1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "80f19304-fc9c-4b59-a8ed-69c87ed02aac") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "4e54eb1d-fe22-4d3d-91f2-0589bbeeaeb1") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1.0375 0 180) + (size 1.175 1.45) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.212766) + (net 1 "+5V") + (pintype "passive") + (uuid "1fe3f11e-fb02-4940-9570-454cacc101df") + ) + (pad "2" smd roundrect + (at 1.0375 0 180) + (size 1.175 1.45) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.212766) + (net 7 "Net-(U2-FB)") + (pintype "passive") + (uuid "33c2e0ca-53e2-41d6-8d32-cafb6645b041") + ) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-2_1x02_P5.00mm_Horizontal" + (layer "F.Cu") + (uuid "6a1333a5-26ef-4f08-931c-7cb67cbabbd4") + (at 119.674 117.653) + (descr "Terminal Block Phoenix MKDS-1,5-2, 2 pins, pitch 5mm, size 10x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix") + (tags "THT Terminal Block Phoenix MKDS-1,5-2 pitch 5mm size 10x9.8mm^2 drill 1.3mm pad 2.6mm") + (property "Reference" "J7" + (at 2.54 -6.604 0) + (layer "F.SilkS") + (hide yes) + (uuid "0891292d-7d4d-4a9a-aa9c-f8654a3e9531") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "Motor" + (at 2.5 5.66 0) + (layer "F.SilkS") + (uuid "3cd20bde-a0b4-4d0d-b580-fe6644451c7e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2cb91837-9c5c-4bdc-b2a9-eb63e9507915") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8c0ac8bf-440f-47e8-826b-de06bbeb8a0d") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Generic screw terminal, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "052d6571-4e11-4c06-bd0e-41f7ae4549ff") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/ad51aec2-9b95-449d-aad5-50795c12de48") + (sheetfile "windshield.kicad_sch") + (attr through_hole) + (fp_line + (start -2.8 4.16) + (end -2.8 4.9) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e5d3a9fb-737d-4da0-96d7-98b1ea196e13") + ) + (fp_line + (start -2.8 4.9) + (end -2.3 4.9) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9672c248-04c8-4be5-80af-ece63d5445d6") + ) + (fp_line + (start -2.56 -5.261) + (end -2.56 4.66) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0a45503e-31e2-4001-8b07-d0a40d4f2782") + ) + (fp_line + (start -2.56 -5.261) + (end 7.56 -5.261) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "23ccbb54-112d-4aa8-82f7-cb74682b3cd5") + ) + (fp_line + (start -2.56 -2.301) + (end 7.56 -2.301) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "664a8215-ee15-4701-b69b-5d64e2c9bee1") + ) + (fp_line + (start -2.56 2.6) + (end 7.56 2.6) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "399a0ab0-1fef-4734-90de-53f772877b5f") + ) + (fp_line + (start -2.56 4.1) + (end 7.56 4.1) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "98e2f6ed-060a-4c4b-aca8-c91022903ea2") + ) + (fp_line + (start -2.56 4.66) + (end 7.56 4.66) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8a60a9c9-89a0-4263-882f-5801b6d4b784") + ) + (fp_line + (start 3.773 1.023) + (end 3.726 1.069) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "cb2eae27-9825-42b7-af44-151bdd124618") + ) + (fp_line + (start 3.966 1.239) + (end 3.931 1.274) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "42c444cf-b76f-4a9f-ba82-24cfc62ed005") + ) + (fp_line + (start 6.07 -1.275) + (end 6.035 -1.239) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "292e1195-680b-4138-8b0e-b854b825d084") + ) + (fp_line + (start 6.275 -1.069) + (end 6.228 -1.023) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9e936054-bbac-4658-96c8-57f49e7ebc8e") + ) + (fp_line + (start 7.56 -5.261) + (end 7.56 4.66) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8068e9f4-acb4-407a-817a-a00486fb442b") + ) + (fp_arc + (start -1.535427 0.683042) + (mid -1.680501 -0.000524) + (end -1.535 -0.684) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "89b18693-3059-407d-96f5-76ebbccaff6a") + ) + (fp_arc + (start -0.683042 -1.535427) + (mid 0.000524 -1.680501) + (end 0.684 -1.535) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "18561f7b-cceb-447f-ae3a-2fa05a8651d9") + ) + (fp_arc + (start 0.028805 1.680253) + (mid -0.335551 1.646659) + (end -0.684 1.535) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2feb2629-ce5d-49e2-9195-ffc27e3954ae") + ) + (fp_arc + (start 0.683318 1.534756) + (mid 0.349292 1.643288) + (end 0 1.68) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "45f3b042-48b0-433f-b358-b1577347b145") + ) + (fp_arc + (start 1.535427 -0.683042) + (mid 1.680501 0.000524) + (end 1.535 0.684) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "df4d1591-8953-414d-90fb-4a3efe8ef568") + ) + (fp_circle + (center 5 0) + (end 6.68 0) + (stroke + (width 0.12) + (type solid) + ) + (fill none) + (layer "F.SilkS") + (uuid "e107980d-a2be-499e-b2ba-eed301ab8c6c") + ) + (fp_line + (start -3 -5.71) + (end -3 5.1) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b3c51afd-ea60-4989-96b1-46be7e98dac9") + ) + (fp_line + (start -3 5.1) + (end 8 5.1) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "00fc03d7-9bc5-4dc9-a0f2-b66003be40db") + ) + (fp_line + (start 8 -5.71) + (end -3 -5.71) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "8a54329f-a28c-48fe-b774-e746c1151aef") + ) + (fp_line + (start 8 5.1) + (end 8 -5.71) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b835e2a6-64ac-4c54-b10b-8c4e680ff34e") + ) + (fp_line + (start -2.5 -5.2) + (end 7.5 -5.2) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "203cb439-5ded-4aa5-addb-bf384ff47646") + ) + (fp_line + (start -2.5 -2.3) + (end 7.5 -2.3) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b95abb45-4d5c-44d5-ad39-bc929bfb3823") + ) + (fp_line + (start -2.5 2.6) + (end 7.5 2.6) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "42ed3a7b-1f13-4af6-aafc-6471fe6140e4") + ) + (fp_line + (start -2.5 4.1) + (end -2.5 -5.2) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "9937158c-447e-4018-95d2-7eccf4079125") + ) + (fp_line + (start -2.5 4.1) + (end 7.5 4.1) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "387dd4a7-b65d-4fc8-9486-4d102532aa87") + ) + (fp_line + (start -2 4.6) + (end -2.5 4.1) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "cb5ac85e-183a-4697-ae56-9bde81e8e398") + ) + (fp_line + (start 0.955 -1.138) + (end -1.138 0.955) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "efcf5716-53e4-498c-8a68-49a513c11c06") + ) + (fp_line + (start 1.138 -0.955) + (end -0.955 1.138) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8189684f-dae4-47fe-a3cf-c31d6404ca7a") + ) + (fp_line + (start 5.955 -1.138) + (end 3.863 0.955) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "703ea1fc-0647-4adb-89e5-026e7e67b286") + ) + (fp_line + (start 6.138 -0.955) + (end 4.046 1.138) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "11045d34-493e-41ff-8631-962c7bacde81") + ) + (fp_line + (start 7.5 -5.2) + (end 7.5 4.6) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8b4d325c-bb85-4593-bb7d-c78174b00756") + ) + (fp_line + (start 7.5 4.6) + (end -2 4.6) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "5dbf97bd-48bb-41f7-bdbc-08b5266843b5") + ) + (fp_circle + (center 0 0) + (end 1.5 0) + (stroke + (width 0.1) + (type solid) + ) + (fill none) + (layer "F.Fab") + (uuid "ffb8d0d8-5545-4d58-ba47-572464888780") + ) + (fp_circle + (center 5 0) + (end 6.5 0) + (stroke + (width 0.1) + (type solid) + ) + (fill none) + (layer "F.Fab") + (uuid "6208da4f-8182-4e29-9b34-129b7d5fc552") + ) + (fp_text user "${REFERENCE}" + (at 2.5 3.2 0) + (layer "F.Fab") + (uuid "6be5b47e-c724-49f0-a980-8b132de1f14e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole rect + (at 0 0) + (size 2.6 2.6) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 21 "Net-(D11-A)") + (pinfunction "Pin_1") + (pintype "passive") + (uuid "1c3c0dd0-9b0e-4cd7-934c-bcfb378d7992") + ) + (pad "2" thru_hole circle + (at 5 0) + (size 2.6 2.6) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 20 "Net-(D10-A)") + (pinfunction "Pin_2") + (pintype "passive") + (uuid "759e1a50-3eec-41b3-b6f3-9a519d35efad") + ) + (model "${KICAD6_3DMODEL_DIR}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MKDS-1,5-2_1x02_P5.00mm_Horizontal.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" + (layer "F.Cu") + (uuid "6dc2f419-1e9b-4ea5-a050-4788b4141db3") + (at 100.141 76.327 180) + (descr "SOIC, 8 Pin (JEDEC MS-012AA, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_narrow-r/r_8.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py") + (tags "SOIC SO") + (property "Reference" "U5" + (at 0 -3.4 0) + (layer "F.SilkS") + (uuid "81a97d4e-a828-425c-8225-eb9e9004d857") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "TJA1050" + (at 0 3.4 0) + (layer "F.Fab") + (uuid "4d055845-ffd0-4dd2-a24e-3b0489b78642") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "39a7a7bf-9d6e-4c06-941c-0609247f6439") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0cee84c8-af41-442c-86ca-ffea34524ac6") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "High-Speed CAN Transceiver, 1Mbps, 5V supply, SOIC-8" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "72dcd9f2-184a-4326-b047-9f462b86e630") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/65bb247f-f2e9-463a-8d46-fb52dff8a471") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start 0 2.56) + (end 1.95 2.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f41621eb-76b9-4ff7-9b84-cd4d1e9ef262") + ) + (fp_line + (start 0 2.56) + (end -1.95 2.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "25614a38-63ef-435e-b08d-48a6aaf1c966") + ) + (fp_line + (start 0 -2.56) + (end 1.95 -2.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "af4ed8cd-8993-4931-bfb1-c3150aa17e31") + ) + (fp_line + (start 0 -2.56) + (end -3.45 -2.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "79da61ff-9d49-40b4-b3b8-4530c61d1a49") + ) + (fp_line + (start 3.7 2.7) + (end 3.7 -2.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "68e61bee-0439-4b87-894d-9ea9929c72fb") + ) + (fp_line + (start 3.7 -2.7) + (end -3.7 -2.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "48f691bd-e2f9-48df-8a56-8a33de514d7e") + ) + (fp_line + (start -3.7 2.7) + (end 3.7 2.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "394d32dc-92f6-4375-90b2-bbb7e92b6ec2") + ) + (fp_line + (start -3.7 -2.7) + (end -3.7 2.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c947f3ee-a4a1-47b6-a454-dd6734875ae2") + ) + (fp_line + (start 1.95 2.45) + (end -1.95 2.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2f4c2d6a-501f-4907-914d-ede18620daad") + ) + (fp_line + (start 1.95 -2.45) + (end 1.95 2.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "01f12eb0-e559-44e8-8f75-b2d298dcd533") + ) + (fp_line + (start -0.975 -2.45) + (end 1.95 -2.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c86a09d5-5aba-4097-8603-a00939c5780c") + ) + (fp_line + (start -1.95 2.45) + (end -1.95 -1.475) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "1e08c180-732f-45b6-89a0-125cfdf30b7b") + ) + (fp_line + (start -1.95 -1.475) + (end -0.975 -2.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6b236070-d7c7-4924-90ea-e3d176c77496") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "66704375-51f3-49ef-b1fe-ff6f613792b4") + (effects + (font + (size 0.98 0.98) + (thickness 0.15) + ) + ) + ) + (pad "1" smd roundrect + (at -2.475 -1.905 180) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 64 "/CAN_Tx") + (pinfunction "TXD") + (pintype "input") + (uuid "5edd3df1-9123-4299-94ab-37296cc9cdbb") + ) + (pad "2" smd roundrect + (at -2.475 -0.635 180) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pinfunction "VSS") + (pintype "power_in") + (uuid "c880aa12-b0d7-437a-9d06-ac488a47ff0c") + ) + (pad "3" smd roundrect + (at -2.475 0.635 180) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 1 "+5V") + (pinfunction "VDD") + (pintype "power_in") + (uuid "226f83d1-8fb6-4355-a5f6-2c848f032742") + ) + (pad "4" smd roundrect + (at -2.475 1.905 180) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 63 "/CAN_Rx") + (pinfunction "RXD") + (pintype "output") + (uuid "edbe5c40-6257-4d5e-b647-3e15bd10ba4b") + ) + (pad "5" smd roundrect + (at 2.475 1.905 180) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 65 "unconnected-(U5-Vref-Pad5)") + (pinfunction "Vref") + (pintype "power_out+no_connect") + (uuid "3d01547c-163f-48c3-b9b3-da93ce281c75") + ) + (pad "6" smd roundrect + (at 2.475 0.635 180) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 22 "/CANL") + (pinfunction "CANL") + (pintype "bidirectional") + (uuid "a78f07ba-4511-43bb-919f-3062f43d04e7") + ) + (pad "7" smd roundrect + (at 2.475 -0.635 180) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 23 "/CANH") + (pinfunction "CANH") + (pintype "bidirectional") + (uuid "1361b70b-919e-4e1e-8b98-93c82d22033e") + ) + (pad "8" smd roundrect + (at 2.475 -1.905 180) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pinfunction "Rs") + (pintype "input") + (uuid "7a1c1928-6a33-4130-b460-f75a31070dc3") + ) + (model "${KICAD6_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-8_3.9x4.9mm_P1.27mm.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (layer "F.Cu") + (uuid "71eeba01-0c0b-400c-8465-04ea17e8119f") + (at 113.4637 98.3488) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor handsolder") + (property "Reference" "R16" + (at 3.0969 0.0508 180) + (layer "F.SilkS") + (uuid "88f02daf-f026-4440-97d8-b7d806a9d616") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "100" + (at 0 1.43 0) + (layer "F.Fab") + (uuid "6555e0f8-5d41-4038-b5fe-d0a0e0a4db1c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2d6cf356-4a60-406e-aff4-5e708b0d92f1") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7b8e5a4e-7973-4093-9232-98b8d16e1aad") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0bd5f772-ee32-4403-9425-97380971bb7c") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/3abf9af0-d75b-46f1-8c44-608300f7651a") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -0.254724 -0.5225) + (end 0.254724 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2073cabb-6278-4c39-a4ee-d58bc35eac93") + ) + (fp_line + (start -0.254724 0.5225) + (end 0.254724 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "badb9e04-2fa5-4811-bd1a-be82e2e9161e") + ) + (fp_line + (start -1.65 -0.73) + (end 1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "541b2f9a-397c-42c6-a964-d8b82636ecee") + ) + (fp_line + (start -1.65 0.73) + (end -1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "23ddc1ae-91a6-49e2-b891-97d792d1ec91") + ) + (fp_line + (start 1.65 -0.73) + (end 1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "230d737d-c0eb-4401-9ba1-a1aabbbae705") + ) + (fp_line + (start 1.65 0.73) + (end -1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "efbd28be-fe73-43da-b232-954a93143585") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "433485a9-a676-436b-8b25-c62558c4eea1") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "939fdc93-cff3-4c53-93e3-633f909aa020") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "84f2862f-bb30-4ec2-84b5-5e9b1f21cacf") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e74eb8b3-424a-41be-9ced-5e6113dd13cb") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "e2948dc0-857c-48ae-8e64-2aa5b40757ae") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.9125 0) + (size 0.975 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 49 "/L_UP") + (pintype "passive") + (uuid "1dc8405c-2241-4c30-9fd6-f16716d898c5") + ) + (pad "2" smd roundrect + (at 0.9125 0) + (size 0.975 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 37 "Net-(Q1-G)") + (pintype "passive") + (uuid "5acab504-ba74-4133-a9a3-60d1ec42c743") + ) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (layer "F.Cu") + (uuid "78074eaa-e366-4d78-ac5c-276ed1d0e877") + (at 108.204 107.696 180) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor handsolder") + (property "Reference" "R27" + (at 0.4045 1.524 180) + (layer "F.SilkS") + (uuid "aefa6274-f46b-457c-b2a2-b7de2c4420a9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "10k" + (at 0 1.43 0) + (layer "F.Fab") + (uuid "923b281e-a503-456f-9cf8-9fd3c505759d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b7515f61-d90e-4b13-9850-b3db0c1156e4") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f98cdca0-53ba-491f-b876-1b081d2d3b3a") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a969ec35-427e-4e13-be4d-f6716c63c7f6") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/7be5c31f-b6ec-464b-b19a-700b37fc22f5") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -0.254724 0.5225) + (end 0.254724 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b623ff2e-4a55-4bfd-8523-1e4f4a981814") + ) + (fp_line + (start -0.254724 -0.5225) + (end 0.254724 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6d9b50ef-ac2c-4392-afb0-75497a7d3d03") + ) + (fp_line + (start 1.65 0.73) + (end -1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "0ab02ab8-37c3-47d8-ab9c-7b3da9c65c76") + ) + (fp_line + (start 1.65 -0.73) + (end 1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "8731bc57-acea-48e5-8b48-f4792a79f75d") + ) + (fp_line + (start -1.65 0.73) + (end -1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "8a4da17d-cb28-452c-973f-0c5de03259a1") + ) + (fp_line + (start -1.65 -0.73) + (end 1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "446bca3a-70e2-41c5-a49e-fc20b1f80d2a") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e93801b5-ca6b-456c-9086-703501e260c9") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7dacc080-c09f-4814-b600-e1ded4a1ba30") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7087902f-b181-48bf-b3e5-0d6606ec335c") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "bb1b81c7-1c0f-479c-b0f3-af00d5fac37e") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "5c5f8aab-8104-45fc-b35f-188509e7d2e1") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.9125 0 180) + (size 0.975 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 52 "/R_UP") + (pintype "passive") + (uuid "5c2c707d-704d-430c-8edc-8f0380e60fbb") + ) + (pad "2" smd roundrect + (at 0.9125 0 180) + (size 0.975 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "9c3fc8db-765c-4abf-8551-a7f8e34592fe") + ) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Diode_SMD:D_SOD-323_HandSoldering" + (layer "F.Cu") + (uuid "78eba8e3-69f9-4b63-b889-b5bda62f64cc") + (at 85.09 106.66 -90) + (descr "SOD-323") + (tags "SOD-323") + (property "Reference" "D1" + (at -2.8248 -0.1524 180) + (layer "F.SilkS") + (uuid "93d0f9c1-e5a7-4ca0-8149-4b76f4688e10") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "1N5819" + (at 0.1 1.9 90) + (layer "F.Fab") + (uuid "47c158e8-220e-462d-89c9-c442146224a2") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "59bd2691-20df-4851-af2c-80171b2d6f9b") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "07e9cc2c-6176-4efe-839a-02212b557fa1") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Diode" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a244cb57-97cb-4a09-b106-581b6e358d10") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Sim.Device" "D" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "9c222b59-b509-4762-b480-d3660bf592e1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Sim.Pins" "1=K 2=A" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "ebd0d3a3-0c81-4d34-b9b5-8633bb9152a3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (path "/114a9849-5e07-4cae-81ad-420c30c66ef7") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -2.01 0.85) + (end 1.25 0.85) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "aa51559e-c185-4d65-aa94-2512443daeda") + ) + (fp_line + (start -2.01 -0.85) + (end -2.01 0.85) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "934673ee-fd53-47f2-86c0-14790d9e82a6") + ) + (fp_line + (start -2.01 -0.85) + (end 1.25 -0.85) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f5cb6cd7-5b11-4e79-bf2e-07eb428da7be") + ) + (fp_line + (start -2 0.95) + (end 2 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e2262c4a-69a1-4710-b618-5e62b49cafcf") + ) + (fp_line + (start -2 -0.95) + (end -2 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "21875ed2-2339-4141-880d-d675d9acde42") + ) + (fp_line + (start -2 -0.95) + (end 2 -0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3c6d1f5d-3b14-4167-881b-ff1298bfcacf") + ) + (fp_line + (start 2 -0.95) + (end 2 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e6e36ce4-6592-42e2-aa8d-646a608f239a") + ) + (fp_line + (start -0.9 0.7) + (end -0.9 -0.7) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a1b2cf8d-9ae8-4101-8bb9-95293cb545cb") + ) + (fp_line + (start 0.9 0.7) + (end -0.9 0.7) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3627a103-dc1c-464c-bc38-f015964d5a26") + ) + (fp_line + (start 0.2 0.35) + (end -0.3 0) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e9c66e49-b4d1-4887-9de4-f56e79e9695b") + ) + (fp_line + (start -0.3 0) + (end -0.5 0) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a47cb18f-c259-4638-b263-021a2aab5551") + ) + (fp_line + (start -0.3 0) + (end 0.2 -0.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8822ace1-8272-4d89-9760-7f0aacf6154e") + ) + (fp_line + (start 0.2 0) + (end 0.45 0) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "63f397bb-cd72-410e-a7c2-c0543ac838c4") + ) + (fp_line + (start -0.3 -0.35) + (end -0.3 0.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b2c7762c-6bbf-4d0d-b1b0-03aad2d4869c") + ) + (fp_line + (start 0.2 -0.35) + (end 0.2 0.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f495ae6b-051e-401a-881e-130374265dd3") + ) + (fp_line + (start -0.9 -0.7) + (end 0.9 -0.7) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "1f31edbb-6ce7-4015-b5cf-5f4753f9c04d") + ) + (fp_line + (start 0.9 -0.7) + (end 0.9 0.7) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "24d0facd-a864-49c8-aff1-5373c7eb29a5") + ) + (fp_text user "${REFERENCE}" + (at 0 -1.85 90) + (layer "F.Fab") + (uuid "6858e991-8fb2-4e9b-9a7c-d1932ef70750") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" smd roundrect + (at -1.25 0 270) + (size 1 1) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 10 "/VEN") + (pinfunction "K") + (pintype "passive") + (uuid "12e1ee3f-8f6f-4607-b877-ccbd8d7448b0") + ) + (pad "2" smd roundrect + (at 1.25 0 270) + (size 1 1) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 11 "Net-(D1-A)") + (pinfunction "A") + (pintype "passive") + (uuid "c781f526-3cf4-4018-a79a-d59b991c2910") + ) + (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" + (layer "F.Cu") + (uuid "7a160b7e-02af-42a3-9bc8-78b520a55b77") + (at 104.902 76.5545 90) + (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (property "Reference" "C13" + (at 2.3865 0.4064 180) + (layer "F.SilkS") + (uuid "1ee49aa1-2a87-40be-9585-1ed50b925f74") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "0.1" + (at 0 1.43 90) + (layer "F.Fab") + (uuid "8c0c67de-0727-490f-8444-7f284ae952ac") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d206418b-9b53-4029-ac9f-4ce6405621c7") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3856f0d5-6d0c-4626-8660-f2a8a37868ef") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7c508c84-ff63-4c07-bc6e-2a6844e1e54b") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/741595fc-b20d-46fd-8301-578e7f10baa6") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -0.146267 -0.51) + (end 0.146267 -0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "68eb4535-16c2-4c4d-a037-63654b8d8f7e") + ) + (fp_line + (start -0.146267 0.51) + (end 0.146267 0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f7e27ebe-8faf-4ffd-90b2-d7831fc13ebe") + ) + (fp_line + (start 1.65 -0.73) + (end 1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a5fffc18-32ae-4fe5-a1b9-d03407d215c3") + ) + (fp_line + (start -1.65 -0.73) + (end 1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a7902be6-ebe5-4b3b-a6f0-33041b5f7a6a") + ) + (fp_line + (start 1.65 0.73) + (end -1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9abec4e5-11b6-4a61-9d02-4483ab698f23") + ) + (fp_line + (start -1.65 0.73) + (end -1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "4671f3ed-7b09-43bf-ab27-0d2f576b2d43") + ) + (fp_line + (start 0.8 -0.4) + (end 0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "72f9b494-0cd1-4a2c-8728-a5f1cb0c9acd") + ) + (fp_line + (start -0.8 -0.4) + (end 0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3057521c-a0ed-4328-80af-a8618efabbbf") + ) + (fp_line + (start 0.8 0.4) + (end -0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ed3ca446-29a6-47c5-8f64-fa7f4680fa7e") + ) + (fp_line + (start -0.8 0.4) + (end -0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7be3fb57-188f-4f03-88c8-4fb9c76eee71") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "17fd7149-0b08-46e0-811d-0053e8d5b8a7") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.8625 0 90) + (size 1.075 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "8f353f1c-b1fc-48fc-908d-822d2ae57a63") + ) + (pad "2" smd roundrect + (at 0.8625 0 90) + (size 1.075 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 1 "+5V") + (pintype "passive") + (uuid "0a93c355-efc3-4cd0-8c98-7cfe9b287806") + ) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (layer "F.Cu") + (uuid "7ba8a34a-929c-4ff6-a9d6-03841a043485") + (at 82.804 107.0375 90) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor handsolder") + (property "Reference" "R1" + (at 3.1261 0 180) + (layer "F.SilkS") + (uuid "ac59fff2-9a77-4078-b5a2-80510f13a96c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "300k" + (at 0 1.43 90) + (layer "F.Fab") + (uuid "d9b9fc55-8405-4a98-b669-6aed865fce82") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d80934e3-0c32-4264-a78e-ce764dd34b13") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "6836876c-eba5-4e78-81db-5d78a28664cd") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "514d51d9-07a9-4266-b4df-e488e0a6224a") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/32429e25-097b-48cf-b4db-d64650cf837d") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -0.254724 -0.5225) + (end 0.254724 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "626e47ce-623f-4fb5-8f6f-af042bd7255f") + ) + (fp_line + (start -0.254724 0.5225) + (end 0.254724 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9731ede8-c209-499c-938a-30aeb855d57b") + ) + (fp_line + (start 1.65 -0.73) + (end 1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "8ea06b48-3f90-4dfc-b6bf-a8dd864b087d") + ) + (fp_line + (start -1.65 -0.73) + (end 1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "1825d73f-6568-46d7-96fc-6dc49754a18f") + ) + (fp_line + (start 1.65 0.73) + (end -1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "fe2bc664-258b-40ed-864c-5f86e97e7808") + ) + (fp_line + (start -1.65 0.73) + (end -1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e4944d6e-1ea4-4487-967a-db1e7f9c4aaf") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "405b7ae5-6e7e-476a-b694-77c4f742560e") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "14c86d53-2157-439c-a614-944ee9475b70") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "dc06dd73-3ca1-4120-9e0b-6f24d4861c79") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7c988d23-d49d-4a6b-96d8-4e21abf0928a") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "B.Fab") + (uuid "ed7e1921-39dd-4f58-8e6f-927ed093a4c8") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + (justify mirror) + ) + ) + (pad "1" smd roundrect + (at -0.9125 0 90) + (size 0.975 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 11 "Net-(D1-A)") + (pintype "passive") + (uuid "48423d44-62f3-4f69-a99c-7450c6399388") + ) + (pad "2" smd roundrect + (at 0.9125 0 90) + (size 0.975 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 24 "/HOT@On") + (pintype "passive") + (uuid "cb980f45-43d4-4b44-99ec-1566ecf2246b") + ) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Package_TO_SOT_SMD:SOT-23-3" + (layer "F.Cu") + (uuid "8ea72bdc-be7d-4634-85b7-568d527aa063") + (at 88.7785 82.87 180) + (descr "SOT, 3 Pin (https://www.jedec.org/sites/default/files/docs/Mo-178D.PDF inferred 3-pin variant), generated with kicad-footprint-generator ipc_gullwing_generator.py") + (tags "SOT TO_SOT_SMD") + (property "Reference" "U1" + (at 0.1215 2.54 0) + (layer "F.SilkS") + (uuid "f56f9620-cff8-49e3-8ae6-a208c371eaef") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "XC6206PxxxMR" + (at 0 2.4 0) + (layer "F.Fab") + (uuid "91c2696b-5f5f-4c37-b346-49b795ca6dba") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7212ee53-c4bb-4bd7-8f98-d1e2a9106a5e") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5c4153e9-961f-46ce-ac0f-178b2c3b434d") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Positive 60-250mA Low Dropout Regulator, Fixed Output, SOT-23" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "485a5fad-425f-442b-906a-42925e9962bc") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/5c1e3040-f731-4664-a8c4-ba636e6df46a") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start 0 1.56) + (end 0.8 1.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "61a1beea-8e66-4bac-87d4-ae0690a8bd9e") + ) + (fp_line + (start 0 1.56) + (end -0.8 1.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ee20c692-3789-431b-8066-63383ec8f422") + ) + (fp_line + (start 0 -1.56) + (end 0.8 -1.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6046bb78-101b-45e9-a34a-1d6241528fb6") + ) + (fp_line + (start 0 -1.56) + (end -1.8 -1.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f008ab29-b77c-4f1a-89bf-91c9a657f1c5") + ) + (fp_line + (start 2.05 1.7) + (end 2.05 -1.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "bfa6e1a2-5b0e-40ca-9499-c8f2e1bf0cf4") + ) + (fp_line + (start 2.05 -1.7) + (end -2.05 -1.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "1a76833b-d2d1-459f-ab84-564e8f50d791") + ) + (fp_line + (start -2.05 1.7) + (end 2.05 1.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "875595cf-6b38-4f27-93fd-499980911129") + ) + (fp_line + (start -2.05 -1.7) + (end -2.05 1.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a331e8d1-4035-438d-ab62-be0fb6ad6594") + ) + (fp_line + (start 0.8 1.45) + (end -0.8 1.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6c2683e2-5848-4405-9509-47fdf1261da9") + ) + (fp_line + (start 0.8 -1.45) + (end 0.8 1.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c9c98d70-0784-40ee-9239-1370281553e7") + ) + (fp_line + (start -0.4 -1.45) + (end 0.8 -1.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "05837086-acc3-4aea-9d06-208b7a430a61") + ) + (fp_line + (start -0.8 1.45) + (end -0.8 -1.05) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0b8b01c6-61ab-407d-939b-d6943f07bf6e") + ) + (fp_line + (start -0.8 -1.05) + (end -0.4 -1.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "67214746-c5c4-42b0-a086-0ea0bd439e9f") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "cc30ec7f-c7f1-4e54-b0f9-cb1a748f9d7e") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -1.1375 -0.95 180) + (size 1.325 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pinfunction "GND") + (pintype "power_in") + (uuid "9a99227a-9663-4285-aed5-e3f8e8134a8e") + ) + (pad "2" smd roundrect + (at -1.1375 0.95 180) + (size 1.325 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 6 "+3V3") + (pinfunction "VO") + (pintype "power_out") + (uuid "a61dce58-d684-4630-bdc9-3e400927cea3") + ) + (pad "3" smd roundrect + (at 1.1375 0 180) + (size 1.325 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 1 "+5V") + (pinfunction "VI") + (pintype "power_in") + (uuid "e01ebf73-3451-415d-925b-2bdd68808a86") + ) + (model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23-3.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Connector_JST:JST_PH_B2B-PH-K_1x02_P2.00mm_Vertical" + (layer "F.Cu") + (uuid "8ed921ae-237b-4a9e-86f7-98f1b10b1710") + (at 73.11 76.946 90) + (descr "JST PH series connector, B2B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator") + (tags "connector JST PH side entry") + (property "Reference" "J8" + (at 1 -2.9 90) + (layer "F.SilkS") + (hide yes) + (uuid "319347be-b28c-4961-a1a2-5905ac09c15e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "CAN" + (at 5.302 0.254 180) + (layer "F.SilkS") + (uuid "49aeee9b-e907-4310-8edc-be7d7f75b827") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a8464e7b-383a-419e-bf0d-abfe0fdfef2b") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "1eb7d000-4baf-47dc-ac4c-5393bb5ef344") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Generic connector, single row, 01x02, script generated" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7ea07d6e-4205-4c30-99f3-69724219af8f") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/2aabb44e-9449-40ff-ab5f-46c9a6e225b6") + (sheetfile "windshield.kicad_sch") + (attr through_hole) + (fp_line + (start -1.11 -2.11) + (end -2.36 -2.11) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4c530486-ce98-464d-a0ad-730d8b5ab243") + ) + (fp_line + (start -2.36 -2.11) + (end -2.36 -0.86) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "41d69e08-c0de-4fdd-b883-19de35a15e16") + ) + (fp_line + (start -0.3 -2.01) + (end -0.6 -2.01) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "82d80113-8491-4cee-abd0-2e2cc1539e4b") + ) + (fp_line + (start -0.6 -2.01) + (end -0.6 -1.81) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e7be2a8c-b45f-4728-8403-087b7a6879e8") + ) + (fp_line + (start -0.3 -1.91) + (end -0.6 -1.91) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "63f9d6ca-f267-4922-b75f-1c8e9240501e") + ) + (fp_line + (start 4.06 -1.81) + (end -2.06 -1.81) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8dca406e-4c3e-4bba-820b-ef2a5dc683ea") + ) + (fp_line + (start 0.5 -1.81) + (end 0.5 -1.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3a49a71c-0006-494d-8923-1bd38943c8fa") + ) + (fp_line + (start -0.3 -1.81) + (end -0.3 -2.01) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "03336e1b-126e-4ca4-8e4f-5a7f69d9775a") + ) + (fp_line + (start -2.06 -1.81) + (end -2.06 2.91) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6a847172-4f59-4243-a8c3-365892ec69a8") + ) + (fp_line + (start 3.45 -1.2) + (end 1.5 -1.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "65ab4f52-33c3-4dee-922c-40045173c6d0") + ) + (fp_line + (start 1.5 -1.2) + (end 1.5 -1.81) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "36dee143-dc9b-4017-8a00-c89bfb7f2c0d") + ) + (fp_line + (start 0.5 -1.2) + (end -1.45 -1.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "cd8a7806-0e20-40e4-b4cb-eeae3f5431ea") + ) + (fp_line + (start -1.45 -1.2) + (end -1.45 2.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8fbfc967-1e92-420e-b104-64b586677f18") + ) + (fp_line + (start 4.06 -0.5) + (end 3.45 -0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5f82f409-cc82-4871-98e9-1bbc527d4224") + ) + (fp_line + (start -2.06 -0.5) + (end -1.45 -0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9d24c55c-696d-4aa1-819a-8eb271a869f2") + ) + (fp_line + (start 4.06 0.8) + (end 3.45 0.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "23fd8705-8bbc-40cb-afa9-9efb62215592") + ) + (fp_line + (start -2.06 0.8) + (end -1.45 0.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5a0c218c-5172-42ce-a89d-d5773399aa53") + ) + (fp_line + (start 1.1 1.8) + (end 1.1 2.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "19d5d7d0-d3ab-43b4-bec3-645f2f7598be") + ) + (fp_line + (start 0.9 1.8) + (end 1.1 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8dcbc44d-cd00-46af-96be-64dea1daebef") + ) + (fp_line + (start 3.45 2.3) + (end 3.45 -1.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5f4abae4-e6b3-4168-a5e6-983a3fb6e08e") + ) + (fp_line + (start 1 2.3) + (end 1 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "68517105-d0f6-49de-b2aa-8432a12e4651") + ) + (fp_line + (start 0.9 2.3) + (end 0.9 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e3b7a1fd-9d1f-45d6-8d6f-99557a030559") + ) + (fp_line + (start -1.45 2.3) + (end 3.45 2.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5e62833a-c078-4e14-87ef-69340c1f9105") + ) + (fp_line + (start 4.06 2.91) + (end 4.06 -1.81) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "78a8090d-e676-4e0d-ad8a-49a9008c5b63") + ) + (fp_line + (start -2.06 2.91) + (end 4.06 2.91) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a2d5ca35-e978-48e4-ac9e-3ce89df07584") + ) + (fp_line + (start 4.45 -2.2) + (end -2.45 -2.2) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "fc6403aa-a937-45ca-9157-c0f57a50eaae") + ) + (fp_line + (start -2.45 -2.2) + (end -2.45 3.3) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "74042015-5de7-4588-87ce-581bf844e1ee") + ) + (fp_line + (start 4.45 3.3) + (end 4.45 -2.2) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "4d4a3e43-5696-4fe9-90ff-9fce5189ffde") + ) + (fp_line + (start -2.45 3.3) + (end 4.45 3.3) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "ae34ab27-04ef-4555-b793-22fbcfe1c745") + ) + (fp_line + (start -1.11 -2.11) + (end -2.36 -2.11) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e4f4a2bc-f50c-442e-b299-0185204177ea") + ) + (fp_line + (start -2.36 -2.11) + (end -2.36 -0.86) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "db49c349-2a9c-4e2f-9dcd-65721406d505") + ) + (fp_line + (start 3.95 -1.7) + (end -1.95 -1.7) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ea80a690-4bb8-40c5-8d17-2807ef21da72") + ) + (fp_line + (start -1.95 -1.7) + (end -1.95 2.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "26343747-06db-4710-b5c9-4fcff3dac341") + ) + (fp_line + (start 3.95 2.8) + (end 3.95 -1.7) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "20c58d2f-1755-49b9-a851-574f9039d794") + ) + (fp_line + (start -1.95 2.8) + (end 3.95 2.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "9d6244ab-15f8-4abb-898c-817eeaeb32ed") + ) + (fp_text user "${REFERENCE}" + (at 1 1.5 90) + (layer "F.Fab") + (uuid "51009c45-2370-4b02-967d-90d4172851aa") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole roundrect + (at 0 0 90) + (size 1.2 1.75) + (drill 0.75) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (roundrect_rratio 0.208333) + (net 23 "/CANH") + (pinfunction "Pin_1") + (pintype "passive") + (uuid "136ad24f-cbe9-4d6f-ad56-8073ed9be3e3") + ) + (pad "2" thru_hole oval + (at 2 0 90) + (size 1.2 1.75) + (drill 0.75) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 22 "/CANL") + (pinfunction "Pin_2") + (pintype "passive") + (uuid "b8bc3b47-4ea1-4cdf-8782-7abd9a44f5d6") + ) + (model "${KICAD6_3DMODEL_DIR}/Connector_JST.3dshapes/JST_PH_B2B-PH-K_1x02_P2.00mm_Vertical.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "TestPoint:TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded" + (layer "F.Cu") + (uuid "8f396e57-c2bb-4f90-b0e2-ec39391ab445") + (at 82.804 114.554) + (descr "wire loop with bead as test point, loop diameter 1.8mm, hole diameter 1.0mm") + (tags "test point wire loop bead") + (property "Reference" "TP6" + (at 0.7 2.5 0) + (layer "F.SilkS") + (hide yes) + (uuid "5fdad961-8511-4b4e-8821-95a11b2457bf") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "Gnd" + (at 0.0762 2.6162 0) + (layer "F.SilkS") + (uuid "778853eb-6601-466c-93bc-61b7f73e9faf") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b4ef19e8-9bbd-41b3-9b20-494680617b5d") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3e5ffe16-b697-4581-bda2-f1679a0c167b") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "test point" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7d4c5128-7a36-4470-a20f-f919b464dad5") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/55c584fd-c0da-4649-9b6a-7b5a08c2d9d8") + (sheetfile "windshield.kicad_sch") + (attr through_hole) + (fp_circle + (center 0 0) + (end 1.5 0) + (stroke + (width 0.12) + (type solid) + ) + (fill none) + (layer "F.SilkS") + (uuid "2392d1d6-824b-4204-926a-0f449de2eb71") + ) + (fp_circle + (center 0 0) + (end 1.8 0) + (stroke + (width 0.05) + (type solid) + ) + (fill none) + (layer "F.CrtYd") + (uuid "8986ddef-b428-42fe-99af-bb9918dfceef") + ) + (fp_line + (start -0.9 -0.2) + (end 0.9 -0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "b791f284-3bbe-40b9-be62-ec9ae3fe61df") + ) + (fp_line + (start -0.9 0.2) + (end -0.9 -0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "2d3c1584-3989-49dd-a4f5-46e5060dc912") + ) + (fp_line + (start 0.9 -0.2) + (end 0.9 0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "a6d79c06-b69e-4b09-b2d4-c9424413c2d8") + ) + (fp_line + (start 0.9 0.2) + (end -0.9 0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "320bb3d8-d3a3-473a-84c2-a345bdfae43e") + ) + (fp_circle + (center 0 0) + (end 1.3 0) + (stroke + (width 0.12) + (type solid) + ) + (fill none) + (layer "F.Fab") + (uuid "9310b54b-c31a-45c2-ae65-f157db178699") + ) + (fp_text user "${REFERENCE}" + (at 0.7 2.5 0) + (layer "F.Fab") + (uuid "7f8bf00f-1e36-4ca5-af26-c45d3cd9b948") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole circle + (at 0 0) + (size 2 2) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "1") + (pintype "passive") + (uuid "849321f2-65b4-4e66-92c8-db6ffadf766e") + ) + (model "${KICAD6_3DMODEL_DIR}/TestPoint.3dshapes/TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (layer "F.Cu") + (uuid "9188a775-2a8b-446a-bca9-3974a4e411f1") + (at 127.762 98.806) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor handsolder") + (property "Reference" "R13" + (at 0 -1.43 0) + (layer "F.SilkS") + (uuid "d69277b5-dc73-4c41-9b12-582cf01b7d78") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "1k" + (at 0 1.43 0) + (layer "F.Fab") + (uuid "5525f440-2bf5-49b7-9b4a-369980fe5959") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "daa04df1-063f-40f2-8161-6db472a03457") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "53c68242-eff6-4a9d-b12d-e004eeffd214") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0d3e1b21-e8ad-4da2-8c73-df46c3c53147") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/6fbe9c38-6c7f-4ddc-9fa9-a035e87037b4") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -0.254724 -0.5225) + (end 0.254724 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8b40a1d5-569d-427a-a7ee-e891351e6458") + ) + (fp_line + (start -0.254724 0.5225) + (end 0.254724 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ee62538f-3464-480b-8b2b-b2e2f0888ab4") + ) + (fp_line + (start -1.65 -0.73) + (end 1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "11feb76b-cb57-48db-a3aa-68d2f31df49e") + ) + (fp_line + (start -1.65 0.73) + (end -1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "10b8fbb1-6acf-4e6c-b1b2-ebbb5818c39f") + ) + (fp_line + (start 1.65 -0.73) + (end 1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "db75c92c-b7df-47d6-9a6b-0b5f0b966cdc") + ) + (fp_line + (start 1.65 0.73) + (end -1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "86275a86-422d-4aeb-a2da-3d409360db2e") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "dcbfbba0-a29d-4c93-9b70-0351133b5308") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3e848bf9-f94d-4650-be95-4eded999b3f8") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "43f4bb12-9878-4cdb-a083-e9a5e69342bc") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2ed272b0-ca8c-45df-a8c9-ac898f44a6fe") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "8734b229-95a5-4b9d-90a9-28ebef4a47e2") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.9125 0) + (size 0.975 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 18 "/DOWN_DIR") + (pintype "passive") + (uuid "e5ab2d47-48a9-4550-9c26-0554a9922e8b") + ) + (pad "2" smd roundrect + (at 0.9125 0) + (size 0.975 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 15 "Net-(D5-K)") + (pintype "passive") + (uuid "6b93b887-d040-44f5-af44-e0d9a7dd69ae") + ) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Diode_SMD:D_SOD-323_HandSoldering" + (layer "F.Cu") + (uuid "95fbf285-b78e-403b-9c97-0482822776e9") + (at 94.254 92.456) + (descr "SOD-323") + (tags "SOD-323") + (property "Reference" "D2" + (at 0 -1.85 0) + (layer "F.SilkS") + (uuid "df54f8c6-ecd6-4070-81a3-c2741edc85a5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "1N5819" + (at 0.1 1.9 0) + (layer "F.Fab") + (uuid "fbd17aa8-a005-4e48-88cc-2d6236405858") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "cf0724be-e308-4c20-be00-8d38f6b65c6d") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ad4b1b8c-4c24-4e06-851d-ff11d641d059") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Diode" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ce616e35-d5b8-4278-ba0a-9d0eec2bb534") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Sim.Device" "D" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "6450271c-a5fa-45e6-837f-922df67edc22") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Sim.Pins" "1=K 2=A" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "babd944e-b6a9-4e61-b822-f850c4757626") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (path "/b529d259-dc19-4c86-a144-ed8e7919a707") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -2.01 -0.85) + (end -2.01 0.85) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f574b346-5eab-4688-b71f-3896b4e0e534") + ) + (fp_line + (start -2.01 -0.85) + (end 1.25 -0.85) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e9b3b130-4148-466f-9249-0a1e97acdb19") + ) + (fp_line + (start -2.01 0.85) + (end 1.25 0.85) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "575d6871-819a-4935-acee-98f2505de88b") + ) + (fp_line + (start -2 -0.95) + (end -2 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f4eec830-94af-4c93-b591-7f7857869af3") + ) + (fp_line + (start -2 -0.95) + (end 2 -0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "207d41e1-8302-4946-acbf-49cab3549076") + ) + (fp_line + (start -2 0.95) + (end 2 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9e7e829a-0326-4ae8-a12c-a8bb852da9d2") + ) + (fp_line + (start 2 -0.95) + (end 2 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b33f9a2c-9f2c-4de0-afe2-78da310f1cd8") + ) + (fp_line + (start -0.9 -0.7) + (end 0.9 -0.7) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3eeb93cb-0fe1-4ab0-8dcb-487dbfca008f") + ) + (fp_line + (start -0.9 0.7) + (end -0.9 -0.7) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6940a584-cdf5-4d4d-9893-3ba1d5d33b97") + ) + (fp_line + (start -0.3 -0.35) + (end -0.3 0.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3ba67bb0-38f0-459c-b975-2f8f6f89449d") + ) + (fp_line + (start -0.3 0) + (end -0.5 0) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "17bec947-ad0d-4342-8aa1-7760371f8d38") + ) + (fp_line + (start -0.3 0) + (end 0.2 -0.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "997dbc24-3e72-4647-a191-c5427b46663b") + ) + (fp_line + (start 0.2 -0.35) + (end 0.2 0.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2a116e8b-e337-4fa9-a20a-5da35dd8746a") + ) + (fp_line + (start 0.2 0) + (end 0.45 0) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "db72fa29-c4d6-42e4-a023-70162b5af8fb") + ) + (fp_line + (start 0.2 0.35) + (end -0.3 0) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6ee4b7b2-dd06-444d-a469-95f161b6bf4c") + ) + (fp_line + (start 0.9 -0.7) + (end 0.9 0.7) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c92f72a6-4172-486a-b94d-639ec67b6529") + ) + (fp_line + (start 0.9 0.7) + (end -0.9 0.7) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "db0b2d03-0ef6-4f76-840c-645694c4a02c") + ) + (fp_text user "${REFERENCE}" + (at 0 -1.85 0) + (layer "F.Fab") + (uuid "44542b86-7d7f-4242-bd6c-ebc95163e3d5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" smd roundrect + (at -1.25 0) + (size 1 1) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 10 "/VEN") + (pinfunction "K") + (pintype "passive") + (uuid "63701019-1188-4dc8-9290-ef10e94cfdc6") + ) + (pad "2" smd roundrect + (at 1.25 0) + (size 1 1) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 12 "/Power_EN") + (pinfunction "A") + (pintype "passive") + (uuid "5dd54369-5acd-4596-966a-fba43c5a79f2") + ) + (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-3-5.08_1x03_P5.08mm_Horizontal" + (layer "F.Cu") + (uuid "99caeba5-a5c0-4619-9152-00248f523a84") + (at 75.946 99.568 -90) + (descr "Terminal Block Phoenix MKDS-1,5-3-5.08, 3 pins, pitch 5.08mm, size 15.2x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix") + (tags "THT Terminal Block Phoenix MKDS-1,5-3-5.08 pitch 5.08mm size 15.2x9.8mm^2 drill 1.3mm pad 2.6mm") + (property "Reference" "J1" + (at 5.08 -6.26 90) + (layer "F.SilkS") + (hide yes) + (uuid "93a37ce2-a71b-4fee-a923-903b741cc329") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "Power" + (at 14.0208 -0.0254 180) + (layer "F.SilkS") + (uuid "9880a8df-92e0-44ff-8fb9-52b26d0c8b48") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "1970e9c0-e673-4260-ac85-28ebcc26aba5") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "6e462261-4be7-490c-ab52-9c50b0a3a802") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Generic screw terminal, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9df099d9-46cb-4cb7-aed4-80784a8fb98d") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/ad6f1947-1aad-4abf-8366-5ff220f8dd79") + (sheetfile "windshield.kicad_sch") + (attr through_hole) + (fp_line + (start -2.84 4.9) + (end -2.34 4.9) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c4dc8ddb-9047-444d-8637-665bee80ed6d") + ) + (fp_line + (start -2.6 4.66) + (end 12.76 4.66) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "95909f8e-4b14-426a-ac44-37b08fa54b89") + ) + (fp_line + (start -2.84 4.16) + (end -2.84 4.9) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e693712f-1093-4025-b2bc-2fbdb744d6db") + ) + (fp_line + (start -2.6 4.1) + (end 12.76 4.1) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "74056b1e-0f14-4ae0-af4e-1240715d538b") + ) + (fp_line + (start -2.6 2.6) + (end 12.76 2.6) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "658a0901-62f5-4b34-b2c1-0d47f0f46246") + ) + (fp_line + (start 4.046 1.239) + (end 4.011 1.274) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e3df7db9-5477-454f-bff7-be97f64ded60") + ) + (fp_line + (start 9.126 1.239) + (end 9.091 1.274) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6de8060f-e036-4af9-b2ab-70ce8f57a873") + ) + (fp_line + (start 3.853 1.023) + (end 3.806 1.069) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "def264c4-ac66-4d0d-a711-9f68147e0acd") + ) + (fp_line + (start 8.933 1.023) + (end 8.886 1.069) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "87921d97-f77d-42d2-8462-fd3c6b9fda43") + ) + (fp_line + (start 6.355 -1.069) + (end 6.308 -1.023) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c15cbdcf-901f-4aa7-8afa-b13740288ef8") + ) + (fp_line + (start 11.435 -1.069) + (end 11.388 -1.023) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b5d06482-f129-4e52-ba9c-c04e06eeb877") + ) + (fp_line + (start 6.15 -1.275) + (end 6.115 -1.239) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "28c68552-617c-4db9-8519-4b63ec9222db") + ) + (fp_line + (start 11.23 -1.275) + (end 11.195 -1.239) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7782a6e5-fa80-47c5-9fcc-ec63b7be0a6d") + ) + (fp_line + (start -2.6 -2.301) + (end 12.76 -2.301) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5bea335b-e606-413a-af45-9ecbb4559f93") + ) + (fp_line + (start -2.6 -5.261) + (end -2.6 4.66) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d7817a23-6344-4267-a0bc-04f0cd73f02d") + ) + (fp_line + (start -2.6 -5.261) + (end 12.76 -5.261) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "88cb5e44-9522-4c94-81b0-a2dc418170b6") + ) + (fp_line + (start 12.76 -5.261) + (end 12.76 4.66) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "74170ea0-6d9c-45a8-86ac-1666b8392019") + ) + (fp_arc + (start 0.028805 1.680253) + (mid -0.335551 1.646659) + (end -0.684 1.535) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "68cf0242-6cae-4e99-8e27-73f239c63cec") + ) + (fp_arc + (start 0.683318 1.534756) + (mid 0.349292 1.643288) + (end 0 1.68) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5ebdf52a-ef7a-4cb4-94d9-de0856864e97") + ) + (fp_arc + (start -1.535427 0.683042) + (mid -1.680501 -0.000524) + (end -1.535 -0.684) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7dbeead2-fb1a-4e9f-9075-e0e656e15819") + ) + (fp_arc + (start 1.535427 -0.683042) + (mid 1.680501 0.000524) + (end 1.535 0.684) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0b836a36-39b8-4c46-b257-51db888c8d5c") + ) + (fp_arc + (start -0.683042 -1.535427) + (mid 0.000524 -1.680501) + (end 0.684 -1.535) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9575f279-e6b4-4d21-aa3e-6f324f5a5fb9") + ) + (fp_circle + (center 5.08 0) + (end 6.76 0) + (stroke + (width 0.12) + (type solid) + ) + (fill none) + (layer "F.SilkS") + (uuid "83420e40-45a2-4151-b3b2-a2d53326f6ae") + ) + (fp_circle + (center 10.16 0) + (end 11.84 0) + (stroke + (width 0.12) + (type solid) + ) + (fill none) + (layer "F.SilkS") + (uuid "7f4862fe-14db-43c1-8b07-0266f00490ce") + ) + (fp_line + (start -3.04 5.1) + (end 13.21 5.1) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "31c48c58-b1fc-4feb-9c7a-913a26042979") + ) + (fp_line + (start 13.21 5.1) + (end 13.21 -5.71) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "1e379182-5649-4f00-ad89-fdf820c8b998") + ) + (fp_line + (start -3.04 -5.71) + (end -3.04 5.1) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e8b21302-c129-42b6-811c-d464fed7ada4") + ) + (fp_line + (start 13.21 -5.71) + (end -3.04 -5.71) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "edf2a840-48fd-4f1e-82ee-8a3a83415871") + ) + (fp_line + (start -2.04 4.6) + (end -2.54 4.1) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c50efce7-bcd3-4d37-bdd9-dceeeb008389") + ) + (fp_line + (start 12.7 4.6) + (end -2.04 4.6) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b6496578-1760-452b-bb45-ca7ad97da4b5") + ) + (fp_line + (start -2.54 4.1) + (end 12.7 4.1) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "5b50113c-0ec4-4891-8eac-a3187cb78622") + ) + (fp_line + (start -2.54 4.1) + (end -2.54 -5.2) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2263f36e-6c56-4e50-a950-2b6995a00746") + ) + (fp_line + (start -2.54 2.6) + (end 12.7 2.6) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "71812700-dac4-4a6b-a959-a4ba0eedf07e") + ) + (fp_line + (start 1.138 -0.955) + (end -0.955 1.138) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ec7678f5-c45e-4430-a216-f1cd973287c2") + ) + (fp_line + (start 6.218 -0.955) + (end 4.126 1.138) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f8467d06-3c89-4f89-bcd2-d19707045ae4") + ) + (fp_line + (start 11.298 -0.955) + (end 9.206 1.138) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "883d82a4-4985-4e55-895f-3bf836c55273") + ) + (fp_line + (start 0.955 -1.138) + (end -1.138 0.955) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "12b8a3b8-8cc7-48bc-be0f-8d9af9225e70") + ) + (fp_line + (start 6.035 -1.138) + (end 3.943 0.955) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "83c1f123-1008-44e0-8239-3322bac7e41e") + ) + (fp_line + (start 11.115 -1.138) + (end 9.023 0.955) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "cfb5487d-f864-4b96-96cb-cd041577ef80") + ) + (fp_line + (start -2.54 -2.3) + (end 12.7 -2.3) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "00ba44f0-b724-4e60-8256-67912295e933") + ) + (fp_line + (start -2.54 -5.2) + (end 12.7 -5.2) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "30581476-46b3-4072-92e9-0e12b92a1d2b") + ) + (fp_line + (start 12.7 -5.2) + (end 12.7 4.6) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f5a3fdef-ca3c-4475-8c5e-132f4e66236d") + ) + (fp_circle + (center 0 0) + (end 1.5 0) + (stroke + (width 0.1) + (type solid) + ) + (fill none) + (layer "F.Fab") + (uuid "c5bcc578-7716-49f3-997a-340f0f08f948") + ) + (fp_circle + (center 5.08 0) + (end 6.58 0) + (stroke + (width 0.1) + (type solid) + ) + (fill none) + (layer "F.Fab") + (uuid "73962eef-0492-439e-bcbe-2860812051dd") + ) + (fp_circle + (center 10.16 0) + (end 11.66 0) + (stroke + (width 0.1) + (type solid) + ) + (fill none) + (layer "F.Fab") + (uuid "acc8d42d-e90e-4b41-b851-54feb1f5b7a8") + ) + (fp_text user "${REFERENCE}" + (at 5.08 3.2 90) + (layer "F.Fab") + (uuid "349e8bf3-dfe7-4954-98f9-f386e1e5abde") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole rect + (at 0 0 270) + (size 2.6 2.6) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 3 "+12V") + (pinfunction "Pin_1") + (pintype "passive") + (uuid "99824e1e-12ea-4b7c-a032-9f53eca3c8b4") + ) + (pad "2" thru_hole circle + (at 5.08 0 270) + (size 2.6 2.6) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 24 "/HOT@On") + (pinfunction "Pin_2") + (pintype "passive") + (uuid "5c105953-d443-41e1-9340-2c6078c5f8ad") + ) + (pad "3" thru_hole circle + (at 10.16 0 270) + (size 2.6 2.6) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Pin_3") + (pintype "passive") + (uuid "cf182535-5147-423d-a28f-95902f8185f5") + ) + (model "${KICAD6_3DMODEL_DIR}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MKDS-1,5-3-5.08_1x03_P5.08mm_Horizontal.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" + (layer "F.Cu") + (uuid "9ff41e67-1d64-4c59-962c-2c7db18e04dc") + (at 102.108 83.6665 90) + (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (property "Reference" "C8" + (at 2.3865 0 180) + (layer "F.SilkS") + (uuid "18aa069e-9d8f-4d33-a81f-cb53457b4c93") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "6" + (at 0 1.43 90) + (layer "F.Fab") + (uuid "5b60f9ce-f03a-42dc-8a3b-5ef87d7ceb84") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "41383c7d-5dc6-49fc-9149-fb59000785d3") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "dadaacfb-a7a8-4679-92bc-f7a782a0b35b") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "cd212881-23d7-45b6-9a91-ffc95d8f3844") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/cff709d7-8ac5-4466-8926-25c648a7e9b1") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -0.146267 -0.51) + (end 0.146267 -0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "07e565b4-d52a-4ed0-927c-ff74efa66b7d") + ) + (fp_line + (start -0.146267 0.51) + (end 0.146267 0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ab2fcf33-a338-4aba-96fe-0f6c2f971cd4") + ) + (fp_line + (start 1.65 -0.73) + (end 1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "0a700653-0f9a-488f-8a38-463a30c63fb0") + ) + (fp_line + (start -1.65 -0.73) + (end 1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "1bf365a9-2092-411a-b324-aefbf2ee6f21") + ) + (fp_line + (start 1.65 0.73) + (end -1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "714e47eb-be0e-46ca-a60c-44b83ab08180") + ) + (fp_line + (start -1.65 0.73) + (end -1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2976f99c-c64c-432b-8dc8-e1115c41b303") + ) + (fp_line + (start 0.8 -0.4) + (end 0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7f466ab8-e78d-49db-86a1-2eec80839731") + ) + (fp_line + (start -0.8 -0.4) + (end 0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "1a1052a2-8acf-4999-aa77-6ce785d51bc2") + ) + (fp_line + (start 0.8 0.4) + (end -0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0100740a-a5de-491e-bee7-7dd160f2dda3") + ) + (fp_line + (start -0.8 0.4) + (end -0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "274df78a-fa75-4ab1-91bd-4c675c0f2114") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "e8c7ab4c-99ef-4a38-af7c-c678a1838276") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.8625 0 90) + (size 1.075 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 8 "/OSC_IN") + (pintype "passive") + (uuid "0041f743-caf9-45d8-b29d-cf867aa94f30") + ) + (pad "2" smd roundrect + (at 0.8625 0 90) + (size 1.075 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "1057379c-e466-45cd-a046-ef0ce8c349eb") + ) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (layer "F.Cu") + (uuid "a4819827-ebd6-4dce-a420-c31bdc91154f") + (at 123.825 77.3176 180) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor handsolder") + (property "Reference" "R4" + (at 2.6416 0.0508 0) + (layer "F.SilkS") + (uuid "4bb1c9ef-6d9e-469f-9cb9-f2bf63865c7d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "100" + (at 0 1.43 0) + (layer "F.Fab") + (uuid "f83939fa-d15a-429a-96af-928d0c78f7c2") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "333cc453-6d50-4e1a-b1ed-b2ea0a3b5298") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "34616a72-a3ba-4e44-9c34-da0377e20257") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7b8f6c21-235b-4217-bfb4-f462dcb8f73c") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/710041e4-f33e-4a35-bae8-baff7f273045") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -0.254724 0.5225) + (end 0.254724 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6b2d9f21-24cb-4b6f-8dfc-b5f529fe3198") + ) + (fp_line + (start -0.254724 -0.5225) + (end 0.254724 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "71426a43-f35b-4fc8-922a-f983a7cba453") + ) + (fp_line + (start 1.65 0.73) + (end -1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "657ed289-f22e-4470-affe-46532997cc17") + ) + (fp_line + (start 1.65 -0.73) + (end 1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "65c5bc3e-c154-48e7-9735-11787313e31c") + ) + (fp_line + (start -1.65 0.73) + (end -1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "431b9e36-433e-4734-8848-db4b2d3529e3") + ) + (fp_line + (start -1.65 -0.73) + (end 1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "911931d6-5169-4a11-8d74-6c32d935f4cf") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "75885fd4-b526-429a-8156-42dea0abfa9e") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8f8341cd-2603-45bc-a649-02e8d7c02489") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "cf79f9f8-a2ba-43a0-a221-7130969f83a4") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c32e6cd0-fa0b-4cb2-a02d-a3cead78308e") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "9728883b-9859-46b6-8742-555f238bee9f") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.9125 0 180) + (size 0.975 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 26 "Net-(J2-Pin_2)") + (pintype "passive") + (uuid "de64c6ce-8a0f-4725-b2b2-6cdec94b3a59") + ) + (pad "2" smd roundrect + (at 0.9125 0 180) + (size 0.975 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 44 "/UP_SW") + (pintype "passive") + (uuid "2a443364-ba14-405a-a583-70717a139a4f") + ) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Package_TO_SOT_SMD:SOT-23-6_Handsoldering" + (layer "F.Cu") + (uuid "ab7d9969-0e65-477a-87c0-a04678711988") + (at 78.4352 87.8294 90) + (descr "6-pin SOT-23 package, Handsoldering") + (tags "SOT-23-6 Handsoldering") + (property "Reference" "U2" + (at 0.9614 2.8448 180) + (layer "F.SilkS") + (uuid "eec2b8bd-e8c5-43bc-bf0c-e13bdffc52db") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "MT1470" + (at 0 2.9 90) + (layer "F.Fab") + (uuid "3bb2b48a-3358-4704-9260-47544ff52695") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "98507fc9-0f34-45de-93c5-79e513edc1e0") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "61191457-abcd-4c81-a4ab-ce8cbdcb5042") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "93527fdc-6b3d-4f4a-9b5c-af9f72de5a64") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/d1943f25-7cb0-479a-a8e1-b95f42c712bd") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start 0.9 -1.61) + (end -2.05 -1.61) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5e5d1437-f604-48ad-9f35-ec61061bd4f6") + ) + (fp_line + (start -0.9 1.61) + (end 0.9 1.61) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "90c98f26-ac02-4349-8523-4130c2447317") + ) + (fp_line + (start 2.4 -1.8) + (end 2.4 1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "299a1173-db14-4a45-8588-ec3cd64ee025") + ) + (fp_line + (start -2.4 -1.8) + (end 2.4 -1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "0584850f-eec0-4524-b388-06c45153d926") + ) + (fp_line + (start 2.4 1.8) + (end -2.4 1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "dda85225-e626-48fc-b551-cf499c699cd5") + ) + (fp_line + (start -2.4 1.8) + (end -2.4 -1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "45ef3748-845d-4a2e-8614-f9ec5d49e7f7") + ) + (fp_line + (start 0.9 -1.55) + (end -0.25 -1.55) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "5307c675-bde2-410f-8821-b70be9e5648d") + ) + (fp_line + (start 0.9 -1.55) + (end 0.9 1.55) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0e3ec248-15cd-4868-b66c-21216e96a832") + ) + (fp_line + (start -0.9 -0.9) + (end -0.25 -1.55) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4f6d17f9-e57b-4397-a245-48514c564a93") + ) + (fp_line + (start -0.9 -0.9) + (end -0.9 1.55) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3b40bbcc-2e00-4e78-a2fa-88da865df335") + ) + (fp_line + (start 0.9 1.55) + (end -0.9 1.55) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e76d5c48-2438-4395-a44f-059ff47cccc0") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "9719c599-c585-472b-bb24-c32659c45fe5") + (effects + (font + (size 0.5 0.5) + (thickness 0.075) + ) + ) + ) + (pad "1" smd rect + (at -1.35 -0.95 90) + (size 1.56 0.65) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "GND") + (pintype "input") + (uuid "9870f02f-d8e1-47ff-9f3b-7012c705d3ab") + ) + (pad "2" smd rect + (at -1.35 0 90) + (size 1.56 0.65) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 4 "Net-(U2-SW)") + (pinfunction "SW") + (pintype "input") + (uuid "214a67e1-ecff-4c28-bf34-83ee28aa752a") + ) + (pad "3" smd rect + (at -1.35 0.95 90) + (size 1.56 0.65) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 3 "+12V") + (pinfunction "VIN") + (pintype "input") + (uuid "f1a3300b-8362-4a8c-9884-55187066c33d") + ) + (pad "4" smd rect + (at 1.35 0.95 90) + (size 1.56 0.65) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 7 "Net-(U2-FB)") + (pinfunction "FB") + (pintype "input") + (uuid "398f2bd9-1e61-4699-ab77-ce7225afa0e9") + ) + (pad "5" smd rect + (at 1.35 0 90) + (size 1.56 0.65) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 10 "/VEN") + (pinfunction "EN") + (pintype "input") + (uuid "6704a997-5688-4753-8208-e04e3611232f") + ) + (pad "6" smd rect + (at 1.35 -0.95 90) + (size 1.56 0.65) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 5 "Net-(U2-BS)") + (pinfunction "BS") + (pintype "input") + (uuid "40a142a7-1f01-400f-b22c-d5ef16441694") + ) + (model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23-6.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "TestPoint:TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded" + (layer "F.Cu") + (uuid "b12b04a9-aab8-4a81-b196-0b2b9deb52a7") + (at 95.4786 87.8078) + (descr "wire loop with bead as test point, loop diameter 1.8mm, hole diameter 1.0mm") + (tags "test point wire loop bead") + (property "Reference" "TP7" + (at 0.7 2.5 0) + (layer "F.SilkS") + (hide yes) + (uuid "ec9aa6df-32f9-423f-be11-cd834c8764b3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "Gnd" + (at -2.413 0 90) + (layer "F.SilkS") + (uuid "de19a8cb-2e99-4a48-87cd-99f894788726") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0ff2068d-673f-4576-a294-4d7192d95069") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d379ea47-0f56-4ddb-9e60-a83de7ebe7b5") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "test point" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7015782b-8f1f-4e9b-8976-6ee9ecde98f2") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/10676098-9c4c-4af0-a728-3b6a6a5f1707") + (sheetfile "windshield.kicad_sch") + (attr through_hole) + (fp_circle + (center 0 0) + (end 1.5 0) + (stroke + (width 0.12) + (type solid) + ) + (fill none) + (layer "F.SilkS") + (uuid "70ce82e7-59bf-4869-8c4c-d85580589cb6") + ) + (fp_circle + (center 0 0) + (end 1.8 0) + (stroke + (width 0.05) + (type solid) + ) + (fill none) + (layer "F.CrtYd") + (uuid "29425e98-a46e-4e21-9886-fa896bd9f35f") + ) + (fp_line + (start -0.9 -0.2) + (end 0.9 -0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "a6e06233-ac19-4cf0-8a6a-6ef4162bc38a") + ) + (fp_line + (start -0.9 0.2) + (end -0.9 -0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "4832ced0-8d46-4f88-be4c-2ac3c4204f91") + ) + (fp_line + (start 0.9 -0.2) + (end 0.9 0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "c480ba46-d4a4-49f2-8158-5bd22312e017") + ) + (fp_line + (start 0.9 0.2) + (end -0.9 0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "850d22f1-3311-423b-aa04-b334a22c1620") + ) + (fp_circle + (center 0 0) + (end 1.3 0) + (stroke + (width 0.12) + (type solid) + ) + (fill none) + (layer "F.Fab") + (uuid "f33f0a9e-9945-45ab-91b8-438b031d4658") + ) + (fp_text user "${REFERENCE}" + (at 0.7 2.5 0) + (layer "F.Fab") + (uuid "f670c4a8-3c60-4be5-98a4-1b618d58b138") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole circle + (at 0 0) + (size 2 2) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "1") + (pintype "passive") + (uuid "044e6fe0-3fc7-4dc1-8124-3453768c8e77") + ) + (model "${KICAD6_3DMODEL_DIR}/TestPoint.3dshapes/TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "TestPoint:TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded" + (layer "F.Cu") + (uuid "b6c844b2-8f8a-40e3-b3a4-e9a7eabcb80c") + (at 88.8238 105.3846) + (descr "wire loop with bead as test point, loop diameter 1.8mm, hole diameter 1.0mm") + (tags "test point wire loop bead") + (property "Reference" "TP2" + (at 0.7 2.5 0) + (layer "F.SilkS") + (hide yes) + (uuid "005b0c4c-c5e1-4fbd-9390-9a14bc3067a0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "Ven" + (at 0 -2.8 0) + (layer "F.SilkS") + (uuid "fa67a1fe-3586-40c3-84c4-1aa13ab1f763") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b34ceb00-398f-472e-8e2e-f46159ce4f4b") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d07e5f1b-042d-4a0e-859d-8251a6d781f1") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "test point" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e34b528c-a314-4004-9282-b03af8885879") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/98e6eead-e85d-44b4-8a5c-5b5e280c5432") + (sheetfile "windshield.kicad_sch") + (attr through_hole) + (fp_circle + (center 0 0) + (end 1.5 0) + (stroke + (width 0.12) + (type solid) + ) + (fill none) + (layer "F.SilkS") + (uuid "fab50bb5-336d-47a2-aa6f-9f243620af74") + ) + (fp_circle + (center 0 0) + (end 1.8 0) + (stroke + (width 0.05) + (type solid) + ) + (fill none) + (layer "F.CrtYd") + (uuid "b6d84b98-ed9b-4d16-b132-f799bf9d454b") + ) + (fp_line + (start -0.9 -0.2) + (end 0.9 -0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "e7df1955-68c1-4f3c-b762-2f65363f2744") + ) + (fp_line + (start -0.9 0.2) + (end -0.9 -0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "7f1d6af9-a845-4214-bfb6-897ffd5222cf") + ) + (fp_line + (start 0.9 -0.2) + (end 0.9 0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "7fed2c33-f363-4ff8-974f-1051da5e7163") + ) + (fp_line + (start 0.9 0.2) + (end -0.9 0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "df3e6c14-fec2-4140-814d-2e85207ad1ab") + ) + (fp_circle + (center 0 0) + (end 1.3 0) + (stroke + (width 0.12) + (type solid) + ) + (fill none) + (layer "F.Fab") + (uuid "41933991-c06a-4be5-8058-19c4ff1e7ebc") + ) + (fp_text user "${REFERENCE}" + (at 0.7 2.5 0) + (layer "F.Fab") + (uuid "7f771617-c99f-4765-a00d-44de6c64a2f0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole circle + (at 0 0) + (size 2 2) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 10 "/VEN") + (pinfunction "1") + (pintype "passive") + (uuid "de6e9637-b60d-476f-9bb1-10d2467241eb") + ) + (model "${KICAD6_3DMODEL_DIR}/TestPoint.3dshapes/TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (layer "F.Cu") + (uuid "c22416ec-47eb-42ab-b6f1-dacc3ee44111") + (at 111.6565 79.502 180) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor handsolder") + (property "Reference" "R11" + (at -3.1515 0 0) + (layer "F.SilkS") + (uuid "5fddd726-9cda-4590-a1d1-1dc9ec781640") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "10k" + (at 0 1.43 0) + (layer "F.Fab") + (uuid "97db119e-b509-4982-a43a-1f2d7993fcd5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8d8ae10e-be80-43c8-9aa8-bafe2ec2b866") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f0480b49-fcbb-425f-bd23-a48f85c87bca") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5654546c-de26-446d-8daa-a7c9421f3232") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/774d9764-be17-4dc4-bfa9-01848617bb4f") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -0.254724 0.5225) + (end 0.254724 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2dc669e6-8cdc-497a-89df-8a217d741d6e") + ) + (fp_line + (start -0.254724 -0.5225) + (end 0.254724 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "37c2c0e6-cb2c-46da-b727-435887588d46") + ) + (fp_line + (start 1.65 0.73) + (end -1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "4905905a-cf08-4a23-bd21-c3ce25fc59e1") + ) + (fp_line + (start 1.65 -0.73) + (end 1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "4c2cc35a-6fad-4087-bae9-f91ecef4c83c") + ) + (fp_line + (start -1.65 0.73) + (end -1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "ce461dd5-010d-4c6d-b713-f312a124aac2") + ) + (fp_line + (start -1.65 -0.73) + (end 1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3b9ab70b-0c2e-45c4-aa6a-8067098ac0f9") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c29bf29f-5d00-4004-8667-c0b45c441b99") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6a31cdd2-b554-4ea1-83e0-f98d3939457d") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f47d3746-9496-4e8c-a1f4-cffd4fee0323") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b9c56d87-e1d2-4e5c-b77e-d6e866f78a1c") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "b1459fb0-bef8-46d8-bb31-ab74bd5b505b") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.9125 0 180) + (size 0.975 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "d740c2df-b868-4e3a-85b7-04ab60479faa") + ) + (pad "2" smd roundrect + (at 0.9125 0 180) + (size 0.975 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 34 "/BOOT0") + (pintype "passive") + (uuid "3b48bac2-2ff3-4c29-bd2e-b5d9634e9551") + ) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Connector_JST:JST_PH_B2B-PH-K_1x02_P2.00mm_Vertical" + (layer "F.Cu") + (uuid "c41ed231-9e54-4f79-a2e2-616548128236") + (at 133.138 107.966 -90) + (descr "JST PH series connector, B2B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator") + (tags "connector JST PH side entry") + (property "Reference" "J6" + (at -1.556 -3.302 0) + (layer "F.SilkS") + (hide yes) + (uuid "5846800d-76a7-4faa-966a-2b1821d55145") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "EXT_MOT" + (at 5.3688 0.8548 0) + (layer "F.SilkS") + (uuid "8d21155e-8454-4e8e-8afa-c3876878fa90") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8da99e43-b04d-4471-8a97-1029b35dc3c6") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7db4b669-9c57-43e4-a00b-25cb753b5d35") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Generic connector, single row, 01x02, script generated" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "93089e39-c5ed-4072-92a0-f4bf9e346e15") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/5aa918df-9e97-47d2-901a-eb91887a76d9") + (sheetfile "windshield.kicad_sch") + (attr through_hole) + (fp_line + (start -2.06 2.91) + (end 4.06 2.91) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "042c6d03-13eb-4756-ae06-19e3f717af6f") + ) + (fp_line + (start 4.06 2.91) + (end 4.06 -1.81) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a76d457f-9b2d-452c-8a46-21fb04177d3f") + ) + (fp_line + (start -1.45 2.3) + (end 3.45 2.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "af3482b4-93de-4c28-a580-1f8ab507d809") + ) + (fp_line + (start 0.9 2.3) + (end 0.9 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b14ef833-7a2a-462d-bca3-2af0c72b051d") + ) + (fp_line + (start 1 2.3) + (end 1 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ba91ab03-e047-4833-a943-ea0bfdd30bd5") + ) + (fp_line + (start 3.45 2.3) + (end 3.45 -1.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "fc0d96ee-d96b-4c6c-b413-8110fb3e6b78") + ) + (fp_line + (start 0.9 1.8) + (end 1.1 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "506420e8-fa68-4ae8-bfa1-d7eaab8ec65b") + ) + (fp_line + (start 1.1 1.8) + (end 1.1 2.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e4e316be-8b1e-4175-afdc-97d023da0a77") + ) + (fp_line + (start -2.06 0.8) + (end -1.45 0.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a204626c-ad5a-4e08-8656-5fee0b77c3e5") + ) + (fp_line + (start 4.06 0.8) + (end 3.45 0.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1d5932ca-b4be-4265-b384-c5104f199679") + ) + (fp_line + (start -2.06 -0.5) + (end -1.45 -0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "958c7e65-70b4-4936-9208-dbdb363c08c3") + ) + (fp_line + (start 4.06 -0.5) + (end 3.45 -0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d80a51ea-26a8-45ed-9b11-551e4c3848c1") + ) + (fp_line + (start -1.45 -1.2) + (end -1.45 2.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b1186e33-937e-4ac0-87a1-125963d08684") + ) + (fp_line + (start 0.5 -1.2) + (end -1.45 -1.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "36fb2279-8d91-4c73-aeea-afd24ca484e6") + ) + (fp_line + (start 1.5 -1.2) + (end 1.5 -1.81) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e871d40b-672d-4c0f-9ae3-6789437d88d9") + ) + (fp_line + (start 3.45 -1.2) + (end 1.5 -1.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "34c0123b-2f3c-4919-91d6-105e63694c4e") + ) + (fp_line + (start -2.06 -1.81) + (end -2.06 2.91) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1f6540de-cdcb-4188-a372-16283d34fa8d") + ) + (fp_line + (start -0.3 -1.81) + (end -0.3 -2.01) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e3dcf968-5a0d-486e-908b-7a7f91b6fe41") + ) + (fp_line + (start 0.5 -1.81) + (end 0.5 -1.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "93a380dd-2072-4242-a5c0-b87cd8d2afd0") + ) + (fp_line + (start 4.06 -1.81) + (end -2.06 -1.81) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6e9b1f95-2a06-4a50-bf7d-c762b2cb8de2") + ) + (fp_line + (start -0.3 -1.91) + (end -0.6 -1.91) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "163105ef-426b-49bd-ba83-442dab01b435") + ) + (fp_line + (start -0.6 -2.01) + (end -0.6 -1.81) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "22fb30f8-312a-4038-a1c5-db6a3fef78f3") + ) + (fp_line + (start -0.3 -2.01) + (end -0.6 -2.01) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0bae32d4-ffe8-44b4-a9f6-5d8f02fdace8") + ) + (fp_line + (start -2.36 -2.11) + (end -2.36 -0.86) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8a9e829e-50c6-48fa-a54c-32cd5f69af10") + ) + (fp_line + (start -1.11 -2.11) + (end -2.36 -2.11) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2b9f08b4-7a20-47c9-9231-6ff1afa81f0c") + ) + (fp_line + (start -2.45 3.3) + (end 4.45 3.3) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "bd44f20c-ee0e-41b5-a508-e42dc165db2d") + ) + (fp_line + (start 4.45 3.3) + (end 4.45 -2.2) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "93c933ef-fcc9-41e7-a427-f9b624757a7c") + ) + (fp_line + (start -2.45 -2.2) + (end -2.45 3.3) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "62242122-b070-42c2-abf2-73c501ab1dc5") + ) + (fp_line + (start 4.45 -2.2) + (end -2.45 -2.2) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "fbb6f0cb-0234-4b0f-aeec-9415172439c8") + ) + (fp_line + (start -1.95 2.8) + (end 3.95 2.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "381056b0-7744-4881-974e-e126673f0b40") + ) + (fp_line + (start 3.95 2.8) + (end 3.95 -1.7) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f879cd4d-b713-47e2-be4d-c8ac02d1f1c4") + ) + (fp_line + (start -1.95 -1.7) + (end -1.95 2.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d6a9e286-939e-4d44-be65-7c291e2a7b05") + ) + (fp_line + (start 3.95 -1.7) + (end -1.95 -1.7) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7050ba70-3650-4762-8436-7cd9dde40657") + ) + (fp_line + (start -2.36 -2.11) + (end -2.36 -0.86) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8f922d07-798f-4c0c-a9a7-43692abd728e") + ) + (fp_line + (start -1.11 -2.11) + (end -2.36 -2.11) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "97d5d671-bade-46cc-bb41-5387adafa182") + ) + (fp_text user "${REFERENCE}" + (at 1 1.5 90) + (layer "F.Fab") + (uuid "6140d1d3-ece5-4951-8223-0aae8b2f7400") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole roundrect + (at 0 0 270) + (size 1.2 1.75) + (drill 0.75) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (roundrect_rratio 0.208333) + (net 16 "Net-(D5-A)") + (pinfunction "Pin_1") + (pintype "passive") + (uuid "042fffa3-2876-42e9-aa37-8e7491a415ad") + ) + (pad "2" thru_hole oval + (at 2 0 270) + (size 1.2 1.75) + (drill 0.75) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 14 "Net-(D4-A)") + (pinfunction "Pin_2") + (pintype "passive") + (uuid "825cfc6d-76d4-4698-8575-8cca48c36a8d") + ) + (model "${KICAD6_3DMODEL_DIR}/Connector_JST.3dshapes/JST_PH_B2B-PH-K_1x02_P2.00mm_Vertical.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (layer "F.Cu") + (uuid "c5ede3f6-f5c9-48e0-a62c-a31eacf89d0a") + (at 108.3075 109.474 180) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor handsolder") + (property "Reference" "R25" + (at 0.0527 -1.524 0) + (layer "F.SilkS") + (uuid "d406e117-fd20-465d-9292-86caf2ab2d01") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "100" + (at 0 1.43 0) + (layer "F.Fab") + (uuid "bc917203-3a84-48d5-8043-a99174d1e2b5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4b693ad9-36f5-4058-a6c8-60b2cf4dfad6") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "cd8dd713-6b04-4936-ba74-933148a334fd") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a5795906-72dc-4891-8d31-799ade75d0b9") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/5ca3761a-e46f-449e-88a1-dcaf240a0196") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -0.254724 0.5225) + (end 0.254724 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b14b0d79-23ed-459a-9e27-c1344d3cf7ff") + ) + (fp_line + (start -0.254724 -0.5225) + (end 0.254724 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1cade091-7847-4814-9615-c6da0ccd3fda") + ) + (fp_line + (start 1.65 0.73) + (end -1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "857bafea-47eb-4c6f-a3f1-537c8f33c48c") + ) + (fp_line + (start 1.65 -0.73) + (end 1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "baabb79d-63f1-4efc-9994-a97057ff5e7d") + ) + (fp_line + (start -1.65 0.73) + (end -1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2b743d11-7dec-4771-82c0-97c3de08fc32") + ) + (fp_line + (start -1.65 -0.73) + (end 1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "264a71d7-1f4e-462d-9c9f-ad9892c0df56") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ad150d1f-7db5-493c-b797-f55d04541db9") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f4cb2b7b-a4d9-4909-9db3-bb3accef8a51") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "5ff17028-5d81-4b28-b795-613a0e69c449") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e0ff2d13-a09a-4460-8049-5e237cb05e29") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "f6750fd3-2284-47d6-ae2a-1aede5ed6ae3") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.9125 0 180) + (size 0.975 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 52 "/R_UP") + (pintype "passive") + (uuid "edebd2fd-4219-4e75-af47-1b60304d9d41") + ) + (pad "2" smd roundrect + (at 0.9125 0 180) + (size 0.975 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 43 "Net-(Q6-G)") + (pintype "passive") + (uuid "da853230-4d03-4515-a19c-df443fab4cf4") + ) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Connector_JST:JST_PH_B3B-PH-K_1x03_P2.00mm_Vertical" + (layer "F.Cu") + (uuid "c7a1d975-ecbb-4e98-b2cc-12d660e0fc0e") + (at 130.81 84.9 -90) + (descr "JST PH series connector, B3B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator") + (tags "connector JST PH side entry") + (property "Reference" "J3" + (at 5.0668 -3.2004 0) + (layer "F.SilkS") + (hide yes) + (uuid "9aad168a-7f8d-4a72-8c69-49d8678e6f99") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "Buttons" + (at -1.4 4.31 90) + (layer "F.SilkS") + (uuid "bc3a052c-76b7-4eb2-88d3-a4a5275d5d0f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "76ffc501-9d01-4fbf-97ba-bda49a659e1b") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0840b5e7-dc8a-41a1-aceb-8aeb40758b2e") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Generic connector, single row, 01x03, script generated" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a4432111-8653-4be6-9820-42318b822932") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/45b86bb5-ff85-46a7-bf12-14bf7cd69b36") + (sheetfile "windshield.kicad_sch") + (attr through_hole) + (fp_line + (start -2.06 2.91) + (end 6.06 2.91) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "66a845c0-f2c6-4c03-a056-05d870fd79f8") + ) + (fp_line + (start 6.06 2.91) + (end 6.06 -1.81) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "428d26fe-b23c-405a-adf7-356e40aeccfa") + ) + (fp_line + (start -1.45 2.3) + (end 5.45 2.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "68324a0a-7c70-4e5e-958e-83ce4a71fc6a") + ) + (fp_line + (start 0.9 2.3) + (end 0.9 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1424f8e5-e488-4ed3-a672-b5e190e0db11") + ) + (fp_line + (start 1 2.3) + (end 1 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c85efc67-1a87-4ff4-9a3e-b6c65e50440b") + ) + (fp_line + (start 2.9 2.3) + (end 2.9 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7eee6368-1987-4d7e-a193-56197ace1797") + ) + (fp_line + (start 3 2.3) + (end 3 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "50028743-5797-4031-ba4d-00579d473724") + ) + (fp_line + (start 5.45 2.3) + (end 5.45 -1.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "44a292ed-c17c-40a4-85ce-2a200737198c") + ) + (fp_line + (start 0.9 1.8) + (end 1.1 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "51e1f242-9a2e-4d3a-b728-56f937c71b82") + ) + (fp_line + (start 1.1 1.8) + (end 1.1 2.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "605ce739-25af-4258-af73-00971c2f5491") + ) + (fp_line + (start 2.9 1.8) + (end 3.1 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "de33a9e1-54e2-445c-87a6-d4955e669d8a") + ) + (fp_line + (start 3.1 1.8) + (end 3.1 2.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1683faf3-8e78-4f74-925c-14508330555d") + ) + (fp_line + (start -2.06 0.8) + (end -1.45 0.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c6e1689a-a677-4592-99ee-a9fe2df6a2af") + ) + (fp_line + (start 6.06 0.8) + (end 5.45 0.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "46924d25-fcbc-4c50-92bb-3fbbb7d1c2f1") + ) + (fp_line + (start -2.06 -0.5) + (end -1.45 -0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "193d7f3f-e7f0-4f45-81f3-5f60673f55ca") + ) + (fp_line + (start 6.06 -0.5) + (end 5.45 -0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a57784b5-21b9-401f-9b98-5ba04eec1f19") + ) + (fp_line + (start -1.45 -1.2) + (end -1.45 2.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4176fc34-bed4-45f8-9cca-2d9c88ef0ba5") + ) + (fp_line + (start 0.5 -1.2) + (end -1.45 -1.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b54a8087-d441-44e6-ac17-6c5f6b9836df") + ) + (fp_line + (start 3.5 -1.2) + (end 3.5 -1.81) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3fd4c603-ddb9-4241-bc01-f06b68d33d45") + ) + (fp_line + (start 5.45 -1.2) + (end 3.5 -1.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "77c51c54-bc9d-45b1-9c6c-463996df6e45") + ) + (fp_line + (start -2.06 -1.81) + (end -2.06 2.91) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6e25fd95-cf0a-4608-94a9-050655267c95") + ) + (fp_line + (start -0.3 -1.81) + (end -0.3 -2.01) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b4964d69-6dbd-478a-8eda-b0eca10c76e8") + ) + (fp_line + (start 0.5 -1.81) + (end 0.5 -1.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7abe11c4-3f96-4086-bb2e-3a7976a96368") + ) + (fp_line + (start 6.06 -1.81) + (end -2.06 -1.81) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5c45e6d5-21bd-4144-aa52-e3e23de644d2") + ) + (fp_line + (start -0.3 -1.91) + (end -0.6 -1.91) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6f317f94-30c0-4642-a0b7-6a2eee596b36") + ) + (fp_line + (start -0.6 -2.01) + (end -0.6 -1.81) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1e7edf21-93c3-4b65-8aab-64fc8453a42e") + ) + (fp_line + (start -0.3 -2.01) + (end -0.6 -2.01) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "375688a4-f013-4e11-81aa-01f87eb9380c") + ) + (fp_line + (start -2.36 -2.11) + (end -2.36 -0.86) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "affce363-396e-42e0-a1a9-9d37ef927431") + ) + (fp_line + (start -1.11 -2.11) + (end -2.36 -2.11) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f4ad6528-b018-4cb7-b9e8-5468be07881a") + ) + (fp_line + (start -2.45 3.3) + (end 6.45 3.3) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9b07529a-8a39-4e26-9a8a-b624d24e0848") + ) + (fp_line + (start 6.45 3.3) + (end 6.45 -2.2) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "7251e02c-06ea-40b5-a975-621bc8d9a22c") + ) + (fp_line + (start -2.45 -2.2) + (end -2.45 3.3) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "7fc17271-276b-4c9d-af77-808226bf2713") + ) + (fp_line + (start 6.45 -2.2) + (end -2.45 -2.2) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3547fc3d-d1c6-4a86-88cb-d6d3e322c5b9") + ) + (fp_line + (start -1.95 2.8) + (end 5.95 2.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "cd70569e-a3de-4e2f-a57d-b7b7a402f4cb") + ) + (fp_line + (start 5.95 2.8) + (end 5.95 -1.7) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a13646e8-142e-4c8d-a81e-9c2fbe6fc979") + ) + (fp_line + (start -1.95 -1.7) + (end -1.95 2.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "505e7f84-fa03-4d27-bdc2-4d6e16385f09") + ) + (fp_line + (start 5.95 -1.7) + (end -1.95 -1.7) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "edf076f7-1e97-44ed-b459-433d1224999a") + ) + (fp_line + (start -2.36 -2.11) + (end -2.36 -0.86) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d7b160c0-cef5-459a-b163-152c77fff0ca") + ) + (fp_line + (start -1.11 -2.11) + (end -2.36 -2.11) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "71a16378-0e5f-492b-9662-1684cb2577c6") + ) + (fp_text user "${REFERENCE}" + (at 2 1.5 90) + (layer "F.Fab") + (uuid "79b40719-fa2e-49f0-a97f-623925a4b24f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole roundrect + (at 0 0 270) + (size 1.2 1.75) + (drill 0.75) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (roundrect_rratio 0.208333) + (net 73 "Net-(J3-Pin_1)") + (pinfunction "Pin_1") + (pintype "passive") + (uuid "61e78869-f35e-4497-96db-37c189a63f65") + ) + (pad "2" thru_hole oval + (at 2 0 270) + (size 1.2 1.75) + (drill 0.75) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 28 "Net-(J3-Pin_2)") + (pinfunction "Pin_2") + (pintype "passive") + (uuid "e9eb03ff-0342-4b8f-846c-6ecc7b10b504") + ) + (pad "3" thru_hole oval + (at 4 0 270) + (size 1.2 1.75) + (drill 0.75) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Pin_3") + (pintype "passive") + (uuid "6db797b8-c3ed-473d-a78f-4f05b71ce2a0") + ) + (model "${KICAD6_3DMODEL_DIR}/Connector_JST.3dshapes/JST_PH_B3B-PH-K_1x03_P2.00mm_Vertical.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" + (layer "F.Cu") + (uuid "cbc1c2f7-aa3c-48ea-a6b8-5a2248595ec6") + (at 106.3255 80.518) + (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (property "Reference" "C7" + (at 0 -1.43 0) + (layer "F.SilkS") + (uuid "f126060e-0273-4817-a57d-7fc3c6a33802") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "0.1" + (at 0 1.43 0) + (layer "F.Fab") + (uuid "ebd76177-f925-4d87-8866-1209a5fcbc96") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e2abc341-bcd4-4334-b88d-5360b738a95a") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c350ace3-dbfd-4e8c-a298-6d0286951ec4") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5e836dcd-4663-47e3-a673-782116c99f60") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/d6c47741-d7ff-410d-ae78-4e99255d7d96") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -0.146267 -0.51) + (end 0.146267 -0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "13c01a3b-da83-460f-81d8-fbfa524fc24c") + ) + (fp_line + (start -0.146267 0.51) + (end 0.146267 0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ffc2b389-d699-4a57-bbad-4e13e379c084") + ) + (fp_line + (start -1.65 -0.73) + (end 1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "8d26f8c0-4bd6-485e-ae42-82ab45398cd3") + ) + (fp_line + (start -1.65 0.73) + (end -1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "054892b4-00fa-4e2f-8f2a-8d214c055c0c") + ) + (fp_line + (start 1.65 -0.73) + (end 1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "1189e3fe-67da-4e58-9f64-c0612daa8f17") + ) + (fp_line + (start 1.65 0.73) + (end -1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "0feab56a-f396-4169-b2be-26924b41cedb") + ) + (fp_line + (start -0.8 -0.4) + (end 0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "cfd1fe2c-fe96-474d-9d0f-9b5dd918a2d1") + ) + (fp_line + (start -0.8 0.4) + (end -0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4f99882c-a824-464d-8ce1-5aa22febde96") + ) + (fp_line + (start 0.8 -0.4) + (end 0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b96412da-5510-410a-893a-99e0cbc498e9") + ) + (fp_line + (start 0.8 0.4) + (end -0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8f6dc265-79b8-4536-b686-7fd4d7da0728") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "9be847b4-9cf3-4f31-b1b2-f5d482d74422") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.8625 0) + (size 1.075 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 6 "+3V3") + (pintype "passive") + (uuid "f156873e-8dfa-4c28-889e-e72f0b65d592") + ) + (pad "2" smd roundrect + (at 0.8625 0) + (size 1.075 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "336b954a-9656-48d9-bc6b-a78973a37c1c") + ) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Package_QFP:LQFP-48_7x7mm_P0.5mm" + (layer "F.Cu") + (uuid "cc5ff019-ac65-4b72-bf6f-3be23e9da242") + (at 110.3915 86.8141) + (descr "LQFP, 48 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ltc2358-16.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py") + (tags "LQFP QFP") + (property "Reference" "U3" + (at 0 -5.85 0) + (layer "F.SilkS") + (uuid "0a1cb2e4-d385-4743-947c-d45da36769f7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "STM32F103C6Tx" + (at 0 5.85 0) + (layer "F.Fab") + (uuid "53958a5f-4d34-4b01-bbda-7ea78ec5b3ca") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e2bf53e8-8d08-461f-83c1-b7517c8781b2") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "31820a76-d044-4e8e-abda-0b072b922a72") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "ARM Cortex-M3 MCU, 32KB flash, 10KB RAM, 72MHz, 2-3.6V, 37 GPIO, LQFP-48" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9f834ffa-f856-4e41-8dfa-7acb6fc54dc1") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/e4f2ba4e-4d73-483b-92c6-d8ba5e2d8e24") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -3.61 -3.61) + (end -3.61 -3.16) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0fe605ba-456c-43a9-a45b-57d307721ea1") + ) + (fp_line + (start -3.61 -3.16) + (end -4.9 -3.16) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6d209951-fc5b-43e3-8d14-1a11876b6ecc") + ) + (fp_line + (start -3.61 3.61) + (end -3.61 3.16) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d20cb165-6a13-4a13-b334-534319e81952") + ) + (fp_line + (start -3.16 -3.61) + (end -3.61 -3.61) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b3e369cf-a809-46c0-84ab-fcf33d0b077e") + ) + (fp_line + (start -3.16 3.61) + (end -3.61 3.61) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "90ddcad7-48e0-4c4b-9038-3454b25a4609") + ) + (fp_line + (start 3.16 -3.61) + (end 3.61 -3.61) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "72681d7a-be78-461c-8b28-8886890976f7") + ) + (fp_line + (start 3.16 3.61) + (end 3.61 3.61) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "12297965-177a-48a7-86e1-826d9b6c0e81") + ) + (fp_line + (start 3.61 -3.61) + (end 3.61 -3.16) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5b1d1b1a-d0c9-4229-8639-05d738a4ce10") + ) + (fp_line + (start 3.61 3.61) + (end 3.61 3.16) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ae5dc1bb-5712-4fa3-809f-469c628044c9") + ) + (fp_line + (start -5.15 -3.15) + (end -5.15 0) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "520a2fe4-8580-44ab-9e3d-627e463f0ac9") + ) + (fp_line + (start -5.15 3.15) + (end -5.15 0) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "8fba5951-01c9-4360-9fee-f4e5b180aaab") + ) + (fp_line + (start -3.75 -3.75) + (end -3.75 -3.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e36278de-b3bb-4277-9931-7722b6032ed1") + ) + (fp_line + (start -3.75 -3.15) + (end -5.15 -3.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "79c6e15d-530b-48e1-ac86-a0e57f1070ba") + ) + (fp_line + (start -3.75 3.15) + (end -5.15 3.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a7281a52-b9e0-4d3d-9b5d-2f9d49919fb2") + ) + (fp_line + (start -3.75 3.75) + (end -3.75 3.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "90996176-2625-49cd-8adc-f93e5a08b035") + ) + (fp_line + (start -3.15 -5.15) + (end -3.15 -3.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "58ff955d-3d1a-4248-8ae0-65ce291153e2") + ) + (fp_line + (start -3.15 -3.75) + (end -3.75 -3.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "14a6f6bf-2306-4143-b9f4-746aa022c8ec") + ) + (fp_line + (start -3.15 3.75) + (end -3.75 3.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a73f3089-43c8-4488-b41c-61de2f06090e") + ) + (fp_line + (start -3.15 5.15) + (end -3.15 3.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "89669a05-e7f1-4414-a960-0605113ee93a") + ) + (fp_line + (start 0 -5.15) + (end -3.15 -5.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "bb1d75d1-4287-42e4-9c98-b8c82f2978c0") + ) + (fp_line + (start 0 -5.15) + (end 3.15 -5.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a9b5b484-e1ad-489a-96ee-7224fc60689c") + ) + (fp_line + (start 0 5.15) + (end -3.15 5.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e5278e35-eb33-4433-b764-237f53f4efe3") + ) + (fp_line + (start 0 5.15) + (end 3.15 5.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2550eaf8-67c1-4eeb-a8e2-f6e5cfccf915") + ) + (fp_line + (start 3.15 -5.15) + (end 3.15 -3.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c1308aee-ed0d-476e-aa34-fd4a8f0bc668") + ) + (fp_line + (start 3.15 -3.75) + (end 3.75 -3.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "1982f51f-69c9-4422-b98d-3aa45b7e064f") + ) + (fp_line + (start 3.15 3.75) + (end 3.75 3.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3f8f432a-3c6f-4b56-96aa-b92690095598") + ) + (fp_line + (start 3.15 5.15) + (end 3.15 3.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e2f37836-fbc8-4c1d-a8eb-bc5137d2e16f") + ) + (fp_line + (start 3.75 -3.75) + (end 3.75 -3.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "8c340fc0-c21e-4fe1-8004-35a6c7c37a43") + ) + (fp_line + (start 3.75 -3.15) + (end 5.15 -3.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2a55490c-83af-41e9-aa30-0c09d723b2de") + ) + (fp_line + (start 3.75 3.15) + (end 5.15 3.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "0f8058fa-6eb5-45b0-a08a-57aaa0cc0e92") + ) + (fp_line + (start 3.75 3.75) + (end 3.75 3.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9dfecf84-1345-4818-981c-43c2318b0bd4") + ) + (fp_line + (start 5.15 -3.15) + (end 5.15 0) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "1acad55a-09a1-4ed4-8a82-78bbe54465c5") + ) + (fp_line + (start 5.15 3.15) + (end 5.15 0) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "45213a8d-8033-4b4b-8aa8-3f84e92ba783") + ) + (fp_line + (start -3.5 -2.5) + (end -2.5 -3.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "86e053bd-2d8c-4631-bfb0-a5a76b93c49f") + ) + (fp_line + (start -3.5 3.5) + (end -3.5 -2.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d0e98228-858c-4e8d-8e0c-4a33d591662a") + ) + (fp_line + (start -2.5 -3.5) + (end 3.5 -3.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "338f9023-7be2-4bab-ba92-c09529f8bf97") + ) + (fp_line + (start 3.5 -3.5) + (end 3.5 3.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f1f47f5f-4859-4746-bc4e-b75ba70ee9a6") + ) + (fp_line + (start 3.5 3.5) + (end -3.5 3.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c4879471-6596-456b-9678-abb22306e184") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "d08d7c8d-03d1-40f1-bc86-fb7af538930b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" smd roundrect + (at -4.1625 -2.75) + (size 1.475 0.3) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 6 "+3V3") + (pinfunction "VBAT") + (pintype "power_in") + (uuid "499e164f-4c65-46d6-84a1-b6f409b286f1") + ) + (pad "2" smd roundrect + (at -4.1625 -2.25) + (size 1.475 0.3) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 53 "unconnected-(U3-PC13-Pad2)") + (pinfunction "PC13") + (pintype "bidirectional+no_connect") + (uuid "35a9d5d4-0a6c-471e-a6d3-46e2f6f92f0f") + ) + (pad "3" smd roundrect + (at -4.1625 -1.75) + (size 1.475 0.3) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 54 "unconnected-(U3-PC14-Pad3)") + (pinfunction "PC14") + (pintype "bidirectional+no_connect") + (uuid "23034741-abd4-4d43-8106-d0cbe3790e13") + ) + (pad "4" smd roundrect + (at -4.1625 -1.25) + (size 1.475 0.3) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 55 "unconnected-(U3-PC15-Pad4)") + (pinfunction "PC15") + (pintype "bidirectional+no_connect") + (uuid "5d06adcd-2225-4c84-8c37-9887ee5bfa6e") + ) + (pad "5" smd roundrect + (at -4.1625 -0.75) + (size 1.475 0.3) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 8 "/OSC_IN") + (pinfunction "PD0") + (pintype "input") + (uuid "4a5759ed-e073-40bb-85c6-906f30fb68b0") + ) + (pad "6" smd roundrect + (at -4.1625 -0.25) + (size 1.475 0.3) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 9 "/OSC_OUT") + (pinfunction "PD1") + (pintype "input") + (uuid "02208645-4883-4d8e-aa30-f774bd72df0d") + ) + (pad "7" smd roundrect + (at -4.1625 0.25) + (size 1.475 0.3) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 35 "/NRST") + (pinfunction "NRST") + (pintype "input") + (uuid "cffe4702-cb4c-4b96-bc83-54250f41012f") + ) + (pad "8" smd roundrect + (at -4.1625 0.75) + (size 1.475 0.3) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pinfunction "VSSA") + (pintype "power_in") + (uuid "5d9df0f1-f507-4adc-846f-0865746f055c") + ) + (pad "9" smd roundrect + (at -4.1625 1.25) + (size 1.475 0.3) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 6 "+3V3") + (pinfunction "VDDA") + (pintype "power_in") + (uuid "166ec681-80fe-4e5f-8e46-056902676dcf") + ) + (pad "10" smd roundrect + (at -4.1625 1.75) + (size 1.475 0.3) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 19 "/Vsen") + (pinfunction "PA0") + (pintype "bidirectional") + (uuid "b7951343-c946-4821-8427-d951eb5470df") + ) + (pad "11" smd roundrect + (at -4.1625 2.25) + (size 1.475 0.3) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 12 "/Power_EN") + (pinfunction "PA1") + (pintype "bidirectional") + (uuid "a9dd3bc3-b723-4068-b31f-1f0ba028a2b6") + ) + (pad "12" smd roundrect + (at -4.1625 2.75) + (size 1.475 0.3) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 49 "/L_UP") + (pinfunction "PA2") + (pintype "bidirectional") + (uuid "c9401dc8-b982-43cf-a6ce-7fff3923418a") + ) + (pad "13" smd roundrect + (at -2.75 4.1625) + (size 0.3 1.475) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 52 "/R_UP") + (pinfunction "PA3") + (pintype "bidirectional") + (uuid "1621adc3-5c25-4439-8205-8d43eba29ec7") + ) + (pad "14" smd roundrect + (at -2.25 4.1625) + (size 0.3 1.475) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 66 "unconnected-(U3-PA4-Pad14)") + (pinfunction "PA4") + (pintype "bidirectional+no_connect") + (uuid "789ef831-b33b-493c-a57e-96d4d09c297b") + ) + (pad "15" smd roundrect + (at -1.75 4.1625) + (size 0.3 1.475) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 56 "unconnected-(U3-PA5-Pad15)") + (pinfunction "PA5") + (pintype "bidirectional+no_connect") + (uuid "6df34974-0a70-417d-a8bf-7385d0b35e10") + ) + (pad "16" smd roundrect + (at -1.25 4.1625) + (size 0.3 1.475) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 51 "/R_DOWN") + (pinfunction "PA6") + (pintype "bidirectional") + (uuid "de370586-1016-419d-8eb4-451bf09bfa31") + ) + (pad "17" smd roundrect + (at -0.75 4.1625) + (size 0.3 1.475) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 50 "/L_DOWN") + (pinfunction "PA7") + (pintype "bidirectional") + (uuid "003a9d30-8732-4fcf-af95-b2635086821b") + ) + (pad "18" smd roundrect + (at -0.25 4.1625) + (size 0.3 1.475) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 70 "unconnected-(U3-PB0-Pad18)") + (pinfunction "PB0") + (pintype "bidirectional+no_connect") + (uuid "051c2c8b-fe5b-4afa-ac5c-f45bde0a58b0") + ) + (pad "19" smd roundrect + (at 0.25 4.1625) + (size 0.3 1.475) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 69 "unconnected-(U3-PB1-Pad19)") + (pinfunction "PB1") + (pintype "bidirectional+no_connect") + (uuid "7f7d38e9-0168-4994-ab89-38c241c1f7ee") + ) + (pad "20" smd roundrect + (at 0.75 4.1625) + (size 0.3 1.475) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 68 "unconnected-(U3-PB2-Pad20)") + (pinfunction "PB2") + (pintype "bidirectional+no_connect") + (uuid "70bbbee1-d15f-425c-a500-aa40b85455ad") + ) + (pad "21" smd roundrect + (at 1.25 4.1625) + (size 0.3 1.475) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 57 "unconnected-(U3-PB10-Pad21)") + (pinfunction "PB10") + (pintype "bidirectional+no_connect") + (uuid "ec00149b-6c6d-450b-92f8-7550934dd628") + ) + (pad "22" smd roundrect + (at 1.75 4.1625) + (size 0.3 1.475) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 58 "unconnected-(U3-PB11-Pad22)") + (pinfunction "PB11") + (pintype "bidirectional+no_connect") + (uuid "bccee832-aae4-4db0-887e-c5db94a28a21") + ) + (pad "23" smd roundrect + (at 2.25 4.1625) + (size 0.3 1.475) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pinfunction "VSS") + (pintype "power_in") + (uuid "42d35e49-0091-45c1-a969-a13f3b8ac868") + ) + (pad "24" smd roundrect + (at 2.75 4.1625) + (size 0.3 1.475) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 6 "+3V3") + (pinfunction "VDD") + (pintype "power_in") + (uuid "2ff5c6a5-c1c0-4ffc-b86f-e90a58549212") + ) + (pad "25" smd roundrect + (at 4.1625 2.75) + (size 1.475 0.3) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 17 "/UP_DIR") + (pinfunction "PB12") + (pintype "bidirectional") + (uuid "234acce1-89fe-4c16-8144-0a43e46cacde") + ) + (pad "26" smd roundrect + (at 4.1625 2.25) + (size 1.475 0.3) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 18 "/DOWN_DIR") + (pinfunction "PB13") + (pintype "bidirectional") + (uuid "a59e0e0a-fb63-40b6-8fc9-6d23f82b4eb3") + ) + (pad "27" smd roundrect + (at 4.1625 1.75) + (size 1.475 0.3) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 46 "/UP_BTN") + (pinfunction "PB14") + (pintype "bidirectional") + (uuid "85da6c32-b454-420a-a30e-9681ce9f7482") + ) + (pad "28" smd roundrect + (at 4.1625 1.25) + (size 1.475 0.3) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 47 "/DOWN_BTN") + (pinfunction "PB15") + (pintype "bidirectional") + (uuid "cddc7500-ad4e-4d94-8398-6f70519c5e98") + ) + (pad "29" smd roundrect + (at 4.1625 0.75) + (size 1.475 0.3) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 59 "unconnected-(U3-PA8-Pad29)") + (pinfunction "PA8") + (pintype "bidirectional+no_connect") + (uuid "720f4ac0-2829-4eeb-b0bf-6787e5d71b8e") + ) + (pad "30" smd roundrect + (at 4.1625 0.25) + (size 1.475 0.3) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 30 "/Tx") + (pinfunction "PA9") + (pintype "bidirectional") + (uuid "ddf88d1c-2ead-43b6-b2c0-5f4d2e430be4") + ) + (pad "31" smd roundrect + (at 4.1625 -0.25) + (size 1.475 0.3) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 29 "/Rx") + (pinfunction "PA10") + (pintype "bidirectional") + (uuid "786459cc-05e0-4ff9-bb73-7912ed4c7cbf") + ) + (pad "32" smd roundrect + (at 4.1625 -0.75) + (size 1.475 0.3) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 45 "/DOWN_SW") + (pinfunction "PA11") + (pintype "bidirectional") + (uuid "b8ba5b21-533f-4c10-af2c-7f3765030510") + ) + (pad "33" smd roundrect + (at 4.1625 -1.25) + (size 1.475 0.3) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 44 "/UP_SW") + (pinfunction "PA12") + (pintype "bidirectional") + (uuid "af46d047-1234-48bb-b7c9-cb91a3725b33") + ) + (pad "34" smd roundrect + (at 4.1625 -1.75) + (size 1.475 0.3) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 32 "/SWDIO") + (pinfunction "PA13") + (pintype "bidirectional") + (uuid "5dc4068e-724f-4d73-a658-31d7f13efe20") + ) + (pad "35" smd roundrect + (at 4.1625 -2.25) + (size 1.475 0.3) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pinfunction "VSS") + (pintype "power_in") + (uuid "1bfa6417-7f4a-4e7f-babe-c02b20f41983") + ) + (pad "36" smd roundrect + (at 4.1625 -2.75) + (size 1.475 0.3) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 6 "+3V3") + (pinfunction "VDD") + (pintype "power_in") + (uuid "e5cc64ac-ec03-4ba2-ad97-d366e56a9a72") + ) + (pad "37" smd roundrect + (at 2.75 -4.1625) + (size 0.3 1.475) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 31 "/SWCLK") + (pinfunction "PA14") + (pintype "bidirectional") + (uuid "da5392c9-9243-43de-aa59-f29b934ac76f") + ) + (pad "38" smd roundrect + (at 2.25 -4.1625) + (size 0.3 1.475) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 60 "unconnected-(U3-PA15-Pad38)") + (pinfunction "PA15") + (pintype "bidirectional+no_connect") + (uuid "ff72364d-cbe6-46cc-ae74-8cd6927147ba") + ) + (pad "39" smd roundrect + (at 1.75 -4.1625) + (size 0.3 1.475) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 67 "unconnected-(U3-PB3-Pad39)") + (pinfunction "PB3") + (pintype "bidirectional+no_connect") + (uuid "6dd20f36-bf88-4d34-a328-e24e36d8ee84") + ) + (pad "40" smd roundrect + (at 1.25 -4.1625) + (size 0.3 1.475) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 72 "unconnected-(U3-PB4-Pad40)") + (pinfunction "PB4") + (pintype "bidirectional+no_connect") + (uuid "28b3a5db-ae50-48df-b984-3748aa0d5fe3") + ) + (pad "41" smd roundrect + (at 0.75 -4.1625) + (size 0.3 1.475) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 71 "unconnected-(U3-PB5-Pad41)") + (pinfunction "PB5") + (pintype "bidirectional+no_connect") + (uuid "1ecd1c7f-d4e2-49cf-be02-0b9ee9d512c5") + ) + (pad "42" smd roundrect + (at 0.25 -4.1625) + (size 0.3 1.475) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 61 "unconnected-(U3-PB6-Pad42)") + (pinfunction "PB6") + (pintype "bidirectional+no_connect") + (uuid "db860756-c9e7-4489-ab8a-892b401b4ec5") + ) + (pad "43" smd roundrect + (at -0.25 -4.1625) + (size 0.3 1.475) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 62 "unconnected-(U3-PB7-Pad43)") + (pinfunction "PB7") + (pintype "bidirectional+no_connect") + (uuid "ddb900fb-49e7-4284-984a-156b31aae93a") + ) + (pad "44" smd roundrect + (at -0.75 -4.1625) + (size 0.3 1.475) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 34 "/BOOT0") + (pinfunction "BOOT0") + (pintype "input") + (uuid "18df3b18-1253-4291-837f-d973da977a8f") + ) + (pad "45" smd roundrect + (at -1.25 -4.1625) + (size 0.3 1.475) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 63 "/CAN_Rx") + (pinfunction "PB8") + (pintype "bidirectional") + (uuid "0f373959-ed52-4da9-bd1e-59fc11d7dbf0") + ) + (pad "46" smd roundrect + (at -1.75 -4.1625) + (size 0.3 1.475) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 64 "/CAN_Tx") + (pinfunction "PB9") + (pintype "bidirectional") + (uuid "b23d1010-afa5-4ec1-b0bc-1831fb0c15aa") + ) + (pad "47" smd roundrect + (at -2.25 -4.1625) + (size 0.3 1.475) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pinfunction "VSS") + (pintype "power_in") + (uuid "0ee67874-e69d-45cf-aa03-009b685410b0") + ) + (pad "48" smd roundrect + (at -2.75 -4.1625) + (size 0.3 1.475) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 6 "+3V3") + (pinfunction "VDD") + (pintype "power_in") + (uuid "966c1fec-b283-4d5f-9466-87a4204bdecd") + ) + (model "${KICAD6_3DMODEL_DIR}/Package_QFP.3dshapes/LQFP-48_7x7mm_P0.5mm.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (layer "F.Cu") + (uuid "d13ca44b-8d91-417d-b459-168395b68169") + (at 76.5575 82.296 180) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor handsolder") + (property "Reference" "R6" + (at -0.0235 1.4224 0) + (layer "F.SilkS") + (uuid "a5fb6675-885d-402e-9ff9-bf51fd46401e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "19k" + (at 0 1.43 0) + (layer "F.Fab") + (uuid "971443b4-d0ca-4c4d-a15b-a4dc5390081a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "25a04ff1-71f1-4d26-b854-c99ddc0fc263") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "10dab31e-5402-47ea-87dc-8a0b611681ed") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3423b6a9-18aa-42f6-bd82-facc58e35730") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/d5ee53e9-7bd5-4534-9901-c669dd66fb12") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -0.254724 0.5225) + (end 0.254724 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4145180e-e68c-4707-a042-940998d11d95") + ) + (fp_line + (start -0.254724 -0.5225) + (end 0.254724 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6e8a8b5c-76d2-4faa-ae42-a7037f568d25") + ) + (fp_line + (start 1.65 0.73) + (end -1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "915120bd-2df0-4aee-b572-4b1e76257df1") + ) + (fp_line + (start 1.65 -0.73) + (end 1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "34451722-9571-46d7-852e-24bf9e8b9917") + ) + (fp_line + (start -1.65 0.73) + (end -1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "0c21bae9-367c-4669-9be8-ac919d820fca") + ) + (fp_line + (start -1.65 -0.73) + (end 1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "72d186d0-25db-43c7-8e2e-4ad909173edd") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f2a7c5a0-b37d-4f28-b1ab-050320884ab0") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f976e933-de58-4a83-8586-53e812addba8") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "cfc92dee-aa61-46b2-ada7-7ebac1543599") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d9bbe02f-95c5-4fe3-831e-f6c3ddbe9cc3") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "a96758f5-4e8f-40c1-9a39-29af4a342b26") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.9125 0 180) + (size 0.975 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 7 "Net-(U2-FB)") + (pintype "passive") + (uuid "61eb80bc-f88f-4a29-a614-cc3a3f52af99") + ) + (pad "2" smd roundrect + (at 0.9125 0 180) + (size 0.975 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "0ee64ad1-8e56-4592-b4df-2034668ffb72") + ) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "TestPoint:TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded" + (layer "F.Cu") + (uuid "d49250b6-1f02-4172-914f-a57cd73c6c1c") + (at 86.106 88.646) + (descr "wire loop with bead as test point, loop diameter 1.8mm, hole diameter 1.0mm") + (tags "test point wire loop bead") + (property "Reference" "TP4" + (at 0.7 2.5 0) + (layer "F.SilkS") + (hide yes) + (uuid "4282735f-9680-47a2-b655-5b1b17444917") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "5V" + (at 1.016 -2.286 0) + (layer "F.SilkS") + (uuid "86c5e3b0-bda7-4519-a1e3-645a4600931f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ac5920c9-cbd7-4fe1-ad01-31f0f33d57b9") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7ec9de64-3e88-4d9f-8e83-844d9480e688") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "test point" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "983d1f0d-f2f2-47f3-a7a1-4b05afc33ab7") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/876a0053-1bfc-4c2f-9e0b-38f2bf2e35cf") + (sheetfile "windshield.kicad_sch") + (attr through_hole) + (fp_circle + (center 0 0) + (end 1.5 0) + (stroke + (width 0.12) + (type solid) + ) + (fill none) + (layer "F.SilkS") + (uuid "cd2cda82-44e9-443c-aa43-91bdc14393cc") + ) + (fp_circle + (center 0 0) + (end 1.8 0) + (stroke + (width 0.05) + (type solid) + ) + (fill none) + (layer "F.CrtYd") + (uuid "02a8a0ac-6ff8-41e6-b19a-da9480677b1c") + ) + (fp_line + (start -0.9 -0.2) + (end 0.9 -0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "03597865-084c-4030-9fb9-319d44d83c98") + ) + (fp_line + (start -0.9 0.2) + (end -0.9 -0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "0c719475-e7de-493c-96db-bb6ae4720afc") + ) + (fp_line + (start 0.9 -0.2) + (end 0.9 0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "1294d4dd-c1f5-4212-ad79-535909923da0") + ) + (fp_line + (start 0.9 0.2) + (end -0.9 0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "7d566e0b-82b2-4a47-a597-a7cf29212465") + ) + (fp_circle + (center 0 0) + (end 1.3 0) + (stroke + (width 0.12) + (type solid) + ) + (fill none) + (layer "F.Fab") + (uuid "e698dc00-2d08-4403-8735-0b2ba5b98365") + ) + (fp_text user "${REFERENCE}" + (at 0.7 2.5 0) + (layer "F.Fab") + (uuid "e86bd0f3-7b12-49f4-b858-b6e93e60a76f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole circle + (at 0 0) + (size 2 2) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 1 "+5V") + (pinfunction "1") + (pintype "passive") + (uuid "9f11d2bf-6aa6-4e26-b71c-7f92347a6682") + ) + (model "${KICAD6_3DMODEL_DIR}/TestPoint.3dshapes/TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "TestPoint:TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded" + (layer "F.Cu") + (uuid "d4df7d47-163e-4918-8f05-49045903fa74") + (at 117.856 96.012) + (descr "wire loop with bead as test point, loop diameter 1.8mm, hole diameter 1.0mm") + (tags "test point wire loop bead") + (property "Reference" "TP9" + (at 0.7 2.5 0) + (layer "F.SilkS") + (hide yes) + (uuid "84919d8d-c2ff-4ce8-9d9f-1646795689b7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "L-" + (at -1.778 -1.778 0) + (layer "F.SilkS") + (uuid "308dda11-b5bd-4670-81d9-a4479c2ad1fb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ddbd16e4-b526-42dc-b430-f5d89e6a4b8e") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4d695a06-a8cc-40a2-abb3-87f370510e42") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "test point" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ebf7be4c-4981-4a6f-9d49-9d4ac2f0ad58") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/ae370df5-d57f-43d8-bbe8-80e609ef316c") + (sheetfile "windshield.kicad_sch") + (attr through_hole) + (fp_circle + (center 0 0) + (end 1.5 0) + (stroke + (width 0.12) + (type solid) + ) + (fill none) + (layer "F.SilkS") + (uuid "8b40f40b-5bbc-4d8b-8bf9-417a975a0b97") + ) + (fp_circle + (center 0 0) + (end 1.8 0) + (stroke + (width 0.05) + (type solid) + ) + (fill none) + (layer "F.CrtYd") + (uuid "5592cc1b-adeb-461f-bc75-888c4e370bcf") + ) + (fp_line + (start -0.9 -0.2) + (end 0.9 -0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "538be627-812c-41bc-85de-05c0a63237b8") + ) + (fp_line + (start -0.9 0.2) + (end -0.9 -0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "e7d55370-19fb-48c0-a3ed-e1c5f7b19e7a") + ) + (fp_line + (start 0.9 -0.2) + (end 0.9 0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "2197a413-18b1-4635-b9af-2cc7cf5f6b96") + ) + (fp_line + (start 0.9 0.2) + (end -0.9 0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "8cd76c2f-d35b-4d8d-a361-1f8d290971a2") + ) + (fp_circle + (center 0 0) + (end 1.3 0) + (stroke + (width 0.12) + (type solid) + ) + (fill none) + (layer "F.Fab") + (uuid "cb920cc8-e1ac-4d7e-ab0c-a7a63e04d8a3") + ) + (fp_text user "${REFERENCE}" + (at 0.7 2.5 0) + (layer "F.Fab") + (uuid "f22e89f4-3dfd-4062-a52c-551c02eb986a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole circle + (at 0 0) + (size 2 2) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 50 "/L_DOWN") + (pinfunction "1") + (pintype "passive") + (uuid "f7d32e02-1f31-48ee-90a3-415262cf06ea") + ) + (model "${KICAD6_3DMODEL_DIR}/TestPoint.3dshapes/TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (layer "F.Cu") + (uuid "daac47d7-a0b9-42fb-a197-2d8a51751647") + (at 124.0555 72.39 180) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor handsolder") + (property "Reference" "R3" + (at -0.0997 -1.6002 0) + (layer "F.SilkS") + (uuid "d33341de-1ff0-4110-828a-08679772fff4") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "47" + (at 0 1.43 0) + (layer "F.Fab") + (uuid "56290d11-4da6-42f6-ba15-1b66b45164c0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ac475db2-7c86-41b6-bebc-e3d0059e18a9") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "98591972-15d2-48ba-9cfd-5eae7e5e3ed3") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0a1fb597-3c8d-4b7e-be54-59ace99370a6") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/4fa462cf-38f4-4f24-a861-47c311b9ed07") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -0.254724 0.5225) + (end 0.254724 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d9c873e5-4b96-4c7b-b82c-8d7b237e4b11") + ) + (fp_line + (start -0.254724 -0.5225) + (end 0.254724 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "bf701cd6-c4f4-4dba-be31-c1739cb769ca") + ) + (fp_line + (start 1.65 0.73) + (end -1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "bd8f1421-c0bd-4794-8081-efd325aff765") + ) + (fp_line + (start 1.65 -0.73) + (end 1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "1eeb4f17-5681-46ca-9c12-7b0dfe1d5ef1") + ) + (fp_line + (start -1.65 0.73) + (end -1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "d24a2500-2250-4d2b-ae9b-b151cb08c31f") + ) + (fp_line + (start -1.65 -0.73) + (end 1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "4402a9e9-a94f-4f27-80f7-a0575b84f2d0") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "1deae9d8-699b-4f47-9727-38c6268d3696") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "9a9cd756-fb56-48e2-9d19-da5df1003462") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a7d9394c-88de-4f0f-94ee-f3185d429c5b") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "72bcb9c7-e0b8-43a2-9458-f3483aa270ef") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "8e713725-1d91-405b-b4be-1aef34de6e0f") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.9125 0 180) + (size 0.975 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 25 "Net-(J2-Pin_1)") + (pintype "passive") + (uuid "e42d8007-58f9-4236-8cfd-b0b48001cdba") + ) + (pad "2" smd roundrect + (at 0.9125 0 180) + (size 0.975 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 6 "+3V3") + (pintype "passive") + (uuid "32922bb3-347d-4bb8-b814-1ddd3d69b70f") + ) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Diode_SMD:D_0805_2012Metric_Pad1.15x1.40mm_HandSolder" + (layer "F.Cu") + (uuid "de251241-b4ee-4462-90fa-bdbeb5c60d71") + (at 125.739 103.124) + (descr "Diode SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "diode handsolder") + (property "Reference" "D6" + (at -0.009 1.778 0) + (layer "F.SilkS") + (uuid "41495e7a-a488-4014-80b6-216daa5d6c6e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "MM3Z3V3" + (at 0 1.65 0) + (layer "F.Fab") + (uuid "f1d668de-2d52-40ad-b6ea-13f4fc8a5136") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8d6ec1fa-3ed8-4955-af80-200fb51b56af") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "21e9c994-f72c-4260-9fc2-ff465390b7e2") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Schottky diode" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5bafa44e-08ae-45d1-89ca-d5e6d8c772ba") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/d81bbb2d-88a8-4b83-96e1-471fd82bedf8") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -1.86 -0.96) + (end -1.86 0.96) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c28b3836-9da5-4a42-a951-3e39c6203622") + ) + (fp_line + (start -1.86 0.96) + (end 1 0.96) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "905ac2a2-baf4-4970-a0dd-dc42fdf91c33") + ) + (fp_line + (start 1 -0.96) + (end -1.86 -0.96) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f20a5692-0d8f-472c-923f-71fd70e9262d") + ) + (fp_line + (start -1.85 -0.95) + (end 1.85 -0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9717b983-ce0d-4127-b8ef-eaf6ba42a991") + ) + (fp_line + (start -1.85 0.95) + (end -1.85 -0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3105dcda-2d22-44c1-9af8-56e771b22bab") + ) + (fp_line + (start 1.85 -0.95) + (end 1.85 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "29add182-72ed-43a9-8947-af606f5c969e") + ) + (fp_line + (start 1.85 0.95) + (end -1.85 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a517cb7d-6132-40d6-ba0d-74147b927ac9") + ) + (fp_line + (start -1 -0.3) + (end -1 0.6) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6b1968e7-a449-4f57-a5c1-4a3469a13532") + ) + (fp_line + (start -1 0.6) + (end 1 0.6) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "642ebba1-c5e5-4d47-9f88-2ffaf29f1e62") + ) + (fp_line + (start -0.7 -0.6) + (end -1 -0.3) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "de0cac86-fe29-4090-9619-81185afac1bc") + ) + (fp_line + (start 1 -0.6) + (end -0.7 -0.6) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c1d92153-29ba-460a-8a87-e68bbb9fbe3c") + ) + (fp_line + (start 1 0.6) + (end 1 -0.6) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0c5e09df-cdca-4802-b35b-541b6a7d254d") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "3673597f-8085-4d4d-a882-8e00304eea17") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1.025 0) + (size 1.15 1.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.217391) + (net 17 "/UP_DIR") + (pinfunction "K") + (pintype "passive") + (uuid "dca60498-ee07-4305-989a-fa65bcc609f5") + ) + (pad "2" smd roundrect + (at 1.025 0) + (size 1.15 1.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.217391) + (net 2 "GND") + (pinfunction "A") + (pintype "passive") + (uuid "c045728d-82c6-4931-b890-626ca8803498") + ) + (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_0805_2012Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (layer "F.Cu") + (uuid "e08134a7-3f9b-4294-b8ee-398195b9e9ce") + (at 124.5635 90.678 180) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor handsolder") + (property "Reference" "R8" + (at 2.6689 -0.254 0) + (layer "F.SilkS") + (uuid "4037d4a5-8ad4-4aba-b24b-e50a3813fa2e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "100" + (at 0 1.43 0) + (layer "F.Fab") + (uuid "7168c0b4-e303-44de-af45-75f652b7aa4c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "aabfeb1c-a5b5-4274-9a47-31b73ff83e81") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "893ac1b9-19d1-4983-8712-73e3826a8e95") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "1619d892-0ed2-45e3-a7e8-c85d90d7b44c") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/0b8eac93-733e-4d0c-acf8-31efe8dab991") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -0.254724 0.5225) + (end 0.254724 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "343d6b7b-11a5-4809-9f1d-d0a3d518cf0c") + ) + (fp_line + (start -0.254724 -0.5225) + (end 0.254724 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5e879427-d4af-4aed-a819-afb10aafc8d8") + ) + (fp_line + (start 1.65 0.73) + (end -1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e1093ab0-a353-4f60-a979-7b9995963e56") + ) + (fp_line + (start 1.65 -0.73) + (end 1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3c65c1ef-a706-4e70-929a-09b2e81c0352") + ) + (fp_line + (start -1.65 0.73) + (end -1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a135156a-d93b-4146-80a5-b2dafb05085f") + ) + (fp_line + (start -1.65 -0.73) + (end 1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "67224a06-20dd-4f88-8615-1ab50d6b8131") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "bdb5aa54-fd2e-46f4-a250-2112893d5b53") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8ad59e9e-79de-47e3-9d7e-cd29036e6934") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "34d348e9-efb0-4dc5-bddc-279e8bd4865e") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c3351cbf-39e1-4ddf-a39d-962d1604730d") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "602a1521-1b20-4355-b2c7-d1923eaeab76") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.9125 0 180) + (size 0.975 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 73 "Net-(J3-Pin_1)") + (pintype "passive") + (uuid "6be538c9-0d27-40f2-88d1-031e239af56a") + ) + (pad "2" smd roundrect + (at 0.9125 0 180) + (size 0.975 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 47 "/DOWN_BTN") + (pintype "passive") + (uuid "818df6e1-d7f1-4493-ad71-2cc85b07631e") + ) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Diode_SMD:D_SMA_Handsoldering" + (layer "F.Cu") + (uuid "e6c16a2d-b18b-4f91-ac70-8c7329ae0d98") + (at 133.096 100.624 -90) + (descr "Diode SMA (DO-214AC) Handsoldering") + (tags "Diode SMA (DO-214AC) Handsoldering") + (property "Reference" "D5" + (at -5.548 0 180) + (layer "F.SilkS") + (uuid "f3638fb7-3b29-4cea-9b07-991724f71ee1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "1N4007" + (at 0 2.6 90) + (layer "F.Fab") + (uuid "2fb3d9c6-3128-451d-ab47-1847d22d5fcd") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "77a2172c-53c7-4f76-8f4a-4ffe81346196") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "896ed69d-1966-44c5-a172-b0412dea8a74") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Diode" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "076115fe-ce4c-4063-9157-67b9c85a3eee") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Sim.Device" "D" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "2126726d-2450-491a-97df-595f6085d4da") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Sim.Pins" "1=K 2=A" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "15a51595-74da-4686-9494-aeaeefa06ac8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (path "/9ef64c98-01b3-44f8-96f0-9e00ac39996f") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -4.51 1.65) + (end 2.5 1.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "732ba2e4-f016-4350-bfe8-acd4d74c7dae") + ) + (fp_line + (start -4.51 -1.65) + (end -4.51 1.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5320f751-e2a8-4ebc-a49a-de852b14ec26") + ) + (fp_line + (start -4.51 -1.65) + (end 2.5 -1.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3410e8b1-82f3-4254-9384-9c1622bec35f") + ) + (fp_line + (start -4.5 1.75) + (end -4.5 -1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "38282c7f-ef96-44f7-946e-d66b0d2d732d") + ) + (fp_line + (start 4.5 1.75) + (end -4.5 1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "83676e60-a4ee-4a8a-bea8-08f9b56c6018") + ) + (fp_line + (start -4.5 -1.75) + (end 4.5 -1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f6ba8041-c194-42e9-9b66-fc7574f89ea2") + ) + (fp_line + (start 4.5 -1.75) + (end 4.5 1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f5764ac3-7ff3-4c03-a09f-b5be01be042c") + ) + (fp_line + (start -2.3 1.5) + (end -2.3 -1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3a6e106d-8e9e-4769-a52b-420bdc417d4b") + ) + (fp_line + (start 2.3 1.5) + (end -2.3 1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0d7316a6-6ab1-4cc4-b477-c95189fe4b1b") + ) + (fp_line + (start 0.50118 0.75032) + (end 0.50118 -0.79908) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "bc7a9378-37a0-4c65-a972-d8538fff4662") + ) + (fp_line + (start -0.64944 0.00102) + (end 0.50118 0.75032) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "40568b92-6558-4a12-a138-ddf8bfc64e24") + ) + (fp_line + (start -0.64944 0.00102) + (end -1.55114 0.00102) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "bbb09523-aec1-495a-97d9-1abc835072f0") + ) + (fp_line + (start -0.64944 0.00102) + (end 0.50118 -0.79908) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "97a613be-ba72-4872-b4c4-70dc89bdc632") + ) + (fp_line + (start 0.50118 0.00102) + (end 1.4994 0.00102) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6a2efba4-381f-43ea-8b4d-805336f4b176") + ) + (fp_line + (start -0.64944 -0.79908) + (end -0.64944 0.80112) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "9d20f13c-06b9-4e70-a954-a24533919a03") + ) + (fp_line + (start 2.3 -1.5) + (end 2.3 1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "216dc3b3-040c-4308-8afe-28637978b4e0") + ) + (fp_line + (start 2.3 -1.5) + (end -2.3 -1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ad8b1226-ad60-43bd-925a-e66024a194ba") + ) + (fp_text user "${REFERENCE}" + (at 0 -2.5 90) + (layer "F.Fab") + (uuid "7a2beb36-6ed4-4eac-8eb9-94cd88eae63d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" smd roundrect + (at -2.5 0 270) + (size 3.5 1.8) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.1388888889) + (net 15 "Net-(D5-K)") + (pinfunction "K") + (pintype "passive") + (uuid "dcdd7073-62bf-467b-b67f-281b3619cbb4") + ) + (pad "2" smd roundrect + (at 2.5 0 270) + (size 3.5 1.8) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.1388888889) + (net 16 "Net-(D5-A)") + (pinfunction "A") + (pintype "passive") + (uuid "7afd188b-9d39-40d3-b977-bab9b6187a06") + ) + (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Package_TO_SOT_SMD:SOT-23_Handsoldering" + (layer "F.Cu") + (uuid "ea999c4b-9ecd-4644-93c6-22be5605c70c") + (at 110.974 103.378 180) + (descr "SOT-23, Handsoldering") + (tags "SOT-23") + (property "Reference" "Q1" + (at 3.659 0.0254 0) + (layer "F.SilkS") + (uuid "fdbbe49d-2305-4ba3-9c6f-bdaa68ede704") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "2N7002" + (at 0 2.5 0) + (layer "F.Fab") + (uuid "9c4470ca-c880-43c3-9969-af12bf97eec7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "1350ceec-e4bd-448c-a6fa-1799f1371172") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b29c0db4-033e-4127-959a-413ce609259f") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "N-MOSFET transistor, gate/source/drain" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "1c9b2f51-8736-48ff-88e8-dc0eee7e596c") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/d37fe787-47f0-4d9d-9f4b-15cf491f1582") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start 0.76 1.58) + (end 0.76 0.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d3eb5694-de5d-44d2-b834-7d202d39dc02") + ) + (fp_line + (start 0.76 1.58) + (end -0.7 1.58) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c57b6bf0-d321-4a7d-bcde-75831e35180c") + ) + (fp_line + (start 0.76 -1.58) + (end 0.76 -0.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "446acf94-af0d-4574-852a-d17925cbf2c1") + ) + (fp_line + (start 0.76 -1.58) + (end -2.4 -1.58) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c7c9ca72-876c-426e-accf-581ae2aeff9a") + ) + (fp_line + (start 2.7 1.75) + (end -2.7 1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9d653576-0f90-4eae-9c07-b919d9bac5e5") + ) + (fp_line + (start 2.7 -1.75) + (end 2.7 1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "0ed238f2-7371-4dc6-8668-f99ef64e7038") + ) + (fp_line + (start -2.7 1.75) + (end -2.7 -1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3affdf6a-c377-4e0f-8b27-ea89a3af9357") + ) + (fp_line + (start -2.7 -1.75) + (end 2.7 -1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f01685f4-a540-45ab-bd6e-802283ca3c72") + ) + (fp_line + (start 0.7 -1.52) + (end 0.7 1.52) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "176b1f8a-8a33-4009-965d-17d5712a44d4") + ) + (fp_line + (start -0.15 -1.52) + (end 0.7 -1.52) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b31e3b62-9db5-4f97-9aaf-5e98c152cf3c") + ) + (fp_line + (start -0.7 1.52) + (end 0.7 1.52) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8d05ebbf-b0a8-4454-9b0e-2ff3ed833733") + ) + (fp_line + (start -0.7 -0.95) + (end -0.15 -1.52) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8c05c47b-ec8c-474d-8894-c6ae224d30af") + ) + (fp_line + (start -0.7 -0.95) + (end -0.7 1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c80c79fa-4a3d-47fd-9656-006dc664c3a1") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "c60e070e-ba5b-455e-b8cb-c57a09122434") + (effects + (font + (size 0.5 0.5) + (thickness 0.075) + ) + ) + ) + (pad "1" smd rect + (at -1.5 -0.95 180) + (size 1.9 0.8) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 37 "Net-(Q1-G)") + (pinfunction "G") + (pintype "input") + (uuid "7fa5d6af-56b2-4479-9b6c-57d0e5261fbc") + ) + (pad "2" smd rect + (at -1.5 0.95 180) + (size 1.9 0.8) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "S") + (pintype "passive") + (uuid "702c2a01-1c22-4e21-890d-7610854b6499") + ) + (pad "3" smd rect + (at 1.5 0 180) + (size 1.9 0.8) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 38 "Net-(Q1-D)") + (pinfunction "D") + (pintype "passive") + (uuid "196ee089-a6ab-40b1-84a6-7c25f23afdf1") + ) + (model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (layer "F.Cu") + (uuid "ece4b3cc-9759-4d72-9692-00073e874d8a") + (at 118.9755 72.39 180) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor handsolder") + (property "Reference" "R10" + (at 0 -1.43 0) + (layer "F.SilkS") + (uuid "59d920aa-e857-4cbd-b338-f73ca7eb60ab") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "6.8" + (at 0 1.43 0) + (layer "F.Fab") + (uuid "a13a1b43-bf00-4c83-935d-4cafb9df2aae") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "31ac94df-87d0-4387-bfaa-4b7ca0963269") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "12b5e7fb-3c83-45bd-a8fc-71a6798a0b85") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "aef8237a-18c0-4710-94d3-81737a522ae6") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/541eb5c2-fd4d-4d27-971f-cd8ffab89be3") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -0.254724 0.5225) + (end 0.254724 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "bf90f6c8-50e4-42e5-bc17-2ce67556572d") + ) + (fp_line + (start -0.254724 -0.5225) + (end 0.254724 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5576a271-5300-4ef0-a483-1ada9bf060b1") + ) + (fp_line + (start 1.65 0.73) + (end -1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "44610adb-425d-43fa-8bc9-00ee8a059dac") + ) + (fp_line + (start 1.65 -0.73) + (end 1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "8c004f3e-ff67-4d61-8c42-9474328d1d6d") + ) + (fp_line + (start -1.65 0.73) + (end -1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "79d4d722-7d61-49cd-a252-a52d5e7a3f84") + ) + (fp_line + (start -1.65 -0.73) + (end 1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b3cab9a9-e529-4e75-bfd7-39b160568c61") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "48dc48b4-3d00-43d9-895e-e918e735a641") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "aaff6c57-088d-4566-9541-8fc503b7812e") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3ef15666-4870-436e-be06-f517ac2aeeea") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "1cac050a-91db-478e-a33d-d61519694fca") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "b8f57f8f-8d81-4945-9d83-771705acfff4") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.9125 0 180) + (size 0.975 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 6 "+3V3") + (pintype "passive") + (uuid "ca37d4e2-f9ef-423e-b1a8-d506e042cd41") + ) + (pad "2" smd roundrect + (at 0.9125 0 180) + (size 0.975 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 33 "Net-(J5-Pin_4)") + (pintype "passive") + (uuid "25c59f3a-efab-40bb-adc4-4c95b8d66995") + ) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Diode_SMD:D_SMA_Handsoldering" + (layer "F.Cu") + (uuid "f2a1355c-c2e1-487c-9bb5-fed04b32bb9c") + (at 125.008 108.458) + (descr "Diode SMA (DO-214AC) Handsoldering") + (tags "Diode SMA (DO-214AC) Handsoldering") + (property "Reference" "D4" + (at -0.04 2.794 0) + (layer "F.SilkS") + (uuid "2174082a-64d8-42e8-9ca9-ec2e4d96c22b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "1N4007" + (at 0 2.6 0) + (layer "F.Fab") + (uuid "b2c44177-71fb-48e8-9f44-26cca98976b0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d3c2b69e-0ca4-413e-9a34-671815e27ba6") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "1a45416f-4e91-48f7-9b55-582803c10d52") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Diode" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4996684b-6df4-476c-8dc9-f1029c12b754") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Sim.Device" "D" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "6f465b17-aa6b-4563-94ec-d230941743e0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Sim.Pins" "1=K 2=A" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "25266d49-95a2-48e6-8bc5-60ea74058a6c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (path "/d6f3faa5-25f0-413e-8caf-dac69327944f") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -4.51 -1.65) + (end -4.51 1.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6a7a530b-3ef8-4aad-aed1-3fb36872cdda") + ) + (fp_line + (start -4.51 -1.65) + (end 2.5 -1.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "632cec5e-514d-4058-9296-799f56960184") + ) + (fp_line + (start -4.51 1.65) + (end 2.5 1.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "91ec3504-75fa-432a-93bc-1250bc287941") + ) + (fp_line + (start -4.5 -1.75) + (end 4.5 -1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9f37e740-846c-4aa9-92a7-895a161bbb42") + ) + (fp_line + (start -4.5 1.75) + (end -4.5 -1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "10b1751f-2b94-4fad-aae9-0d3d63245d24") + ) + (fp_line + (start 4.5 -1.75) + (end 4.5 1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "0697bcd8-38a1-4adb-ba12-1db70f563686") + ) + (fp_line + (start 4.5 1.75) + (end -4.5 1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "dd7b8de6-84e0-41b1-8064-bc947f85a631") + ) + (fp_line + (start -2.3 1.5) + (end -2.3 -1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c713c707-7e4b-48de-86e8-ad9dc5be8c96") + ) + (fp_line + (start -0.64944 -0.79908) + (end -0.64944 0.80112) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "5fcbf856-0ca3-4d2d-8a8b-fff8cda7e844") + ) + (fp_line + (start -0.64944 0.00102) + (end -1.55114 0.00102) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "199743d3-13db-43a1-98bc-73a0815e92fa") + ) + (fp_line + (start -0.64944 0.00102) + (end 0.50118 -0.79908) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8d5beea4-3f62-4eec-ae66-5d25d233ad81") + ) + (fp_line + (start -0.64944 0.00102) + (end 0.50118 0.75032) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "5426f0ba-a92f-402e-897f-936e2365ddd6") + ) + (fp_line + (start 0.50118 0.00102) + (end 1.4994 0.00102) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "42720cc1-af8f-4eda-a248-df4e382f44a6") + ) + (fp_line + (start 0.50118 0.75032) + (end 0.50118 -0.79908) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "30067730-c455-46c2-bd14-93866a42d5a0") + ) + (fp_line + (start 2.3 -1.5) + (end -2.3 -1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "888bae56-f5ce-49ca-9c72-9e903e5c0543") + ) + (fp_line + (start 2.3 -1.5) + (end 2.3 1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f394c77f-84f3-446b-beb8-5cfad6596a51") + ) + (fp_line + (start 2.3 1.5) + (end -2.3 1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "197887bf-c68a-418e-8049-f611899b9a62") + ) + (fp_text user "${REFERENCE}" + (at 0 -2.5 0) + (layer "F.Fab") + (uuid "5e4be96d-1454-445d-9664-3246f9721819") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" smd roundrect + (at -2.5 0) + (size 3.5 1.8) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.1388888889) + (net 13 "Net-(D4-K)") + (pinfunction "K") + (pintype "passive") + (uuid "8d3cdb6c-e65f-42b0-b460-013d0918fbd3") + ) + (pad "2" smd roundrect + (at 2.5 0) + (size 3.5 1.8) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.1388888889) + (net 14 "Net-(D4-A)") + (pinfunction "A") + (pintype "passive") + (uuid "0a866737-c027-47fc-91f6-551197f6866e") + ) + (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (layer "F.Cu") + (uuid "f41dfdbf-33d2-4393-b713-04ea6ed94a5f") + (at 124.5108 92.456 180) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor handsolder") + (property "Reference" "R9" + (at 0.0508 -1.4732 0) + (layer "F.SilkS") + (uuid "0cbd33a2-681c-46ce-9860-da1aa1bed2d3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "100" + (at 0 1.43 0) + (layer "F.Fab") + (uuid "f838bdc9-e8d1-435e-bf90-885200c244aa") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "fb4c429b-3a23-45d1-a749-12957f942773") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "48a37335-1ace-4640-aed5-d9aafad1a100") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c7c6d1da-bcb2-4f02-844b-e01196856271") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/b7837f1b-646b-4b94-a6fd-cdbb14dac714") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -0.254724 0.5225) + (end 0.254724 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9e979221-4391-461f-a01d-7bc3fa63f292") + ) + (fp_line + (start -0.254724 -0.5225) + (end 0.254724 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "69c0d0e0-d3a7-4ac9-b3c9-43c53e055349") + ) + (fp_line + (start 1.65 0.73) + (end -1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c1ea1c4c-f485-4e6e-a982-05845dbb0aac") + ) + (fp_line + (start 1.65 -0.73) + (end 1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2d5d68d6-de74-4aa7-937f-f9721b804919") + ) + (fp_line + (start -1.65 0.73) + (end -1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "4a050ab5-abe3-4d40-b5bc-da4631d503d7") + ) + (fp_line + (start -1.65 -0.73) + (end 1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "4061cc36-0db3-4198-860e-035b289af235") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "cbd6a7c1-19db-485a-b740-e1245bbc0efa") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "1135b6f3-a605-48f3-94fc-624d627b17aa") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "de42e454-a46e-4a7d-be36-f055ca36e576") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b6854a17-9c78-4ee6-bed0-77320bd6ae40") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "3c47a6a4-0d01-4726-8301-340e2bc0e4d5") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.9125 0 180) + (size 0.975 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 28 "Net-(J3-Pin_2)") + (pintype "passive") + (uuid "040cd97e-8466-411f-920b-a3a9f1739090") + ) + (pad "2" smd roundrect + (at 0.9125 0 180) + (size 0.975 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 46 "/UP_BTN") + (pintype "passive") + (uuid "78d26ea3-e781-43bd-97ee-989bed1b9689") + ) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Diode_SMD:D_0805_2012Metric_Pad1.15x1.40mm_HandSolder" + (layer "F.Cu") + (uuid "f58fbca1-5cd9-4c38-95c7-16aa2d5a258a") + (at 128.007 100.838) + (descr "Diode SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "diode handsolder") + (property "Reference" "D7" + (at 0.771 1.778 180) + (layer "F.SilkS") + (uuid "8e0290e4-1a46-4339-bb10-848e43108ceb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "MM3Z3V3" + (at 0 1.65 0) + (layer "F.Fab") + (uuid "e0c32cf3-b3db-4735-83f7-9b7001dda57f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "63ee4ea5-6133-48bd-b210-9e717664b320") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e0fd5207-f012-4a73-babd-8d3669329d2f") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Schottky diode" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b17c2c6a-4c4e-4e2c-aa99-2794065b01cc") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/784e693a-9161-41a5-8f5d-876789253060") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -1.86 -0.96) + (end -1.86 0.96) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5be958f8-c45a-4a59-8e73-7b4ec2f83bd6") + ) + (fp_line + (start -1.86 0.96) + (end 1 0.96) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ab64823b-c820-4077-af50-4c9b07663503") + ) + (fp_line + (start 1 -0.96) + (end -1.86 -0.96) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "31733624-6ec5-46da-9236-6e8ab8dea0b4") + ) + (fp_line + (start -1.85 -0.95) + (end 1.85 -0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "29b2bbf3-e47d-481a-bf74-34b4c78e426b") + ) + (fp_line + (start -1.85 0.95) + (end -1.85 -0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3abcbf61-26e5-4afc-bb80-28968ae08b94") + ) + (fp_line + (start 1.85 -0.95) + (end 1.85 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "15c13894-a4ab-4c4d-81cf-0293e833b044") + ) + (fp_line + (start 1.85 0.95) + (end -1.85 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "29c98261-c225-40c2-a196-56e9a1997960") + ) + (fp_line + (start -1 -0.3) + (end -1 0.6) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f0f1da59-0e3f-44cd-a6ff-48da7c8509a2") + ) + (fp_line + (start -1 0.6) + (end 1 0.6) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c6a55e9a-de03-4fa9-9874-ac73549d8607") + ) + (fp_line + (start -0.7 -0.6) + (end -1 -0.3) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b3c12102-1ef4-47a9-8506-9daf216dc410") + ) + (fp_line + (start 1 -0.6) + (end -0.7 -0.6) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "fbbc2a04-3a96-4a70-a345-618c67678fc8") + ) + (fp_line + (start 1 0.6) + (end 1 -0.6) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3ede0240-b3a7-4605-a9e5-5f35efd7ed9c") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "68cca3e8-6b1f-4b69-9fbd-88b57e529658") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1.025 0) + (size 1.15 1.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.217391) + (net 18 "/DOWN_DIR") + (pinfunction "K") + (pintype "passive") + (uuid "32161c52-4af9-4f81-8d9d-958ab6f76a8d") + ) + (pad "2" smd roundrect + (at 1.025 0) + (size 1.15 1.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.217391) + (net 2 "GND") + (pinfunction "A") + (pintype "passive") + (uuid "23490eef-9423-4703-8125-9dfe99c44d88") + ) + (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_0805_2012Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (layer "F.Cu") + (uuid "f90578e2-2dcd-406b-bae4-376f5760f382") + (at 113.4383 100.0252 180) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor handsolder") + (property "Reference" "R26" + (at -3.0969 0 180) + (layer "F.SilkS") + (uuid "da210ff0-93c8-46b8-b0e4-df6764ac4abb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "10k" + (at 0 1.43 0) + (layer "F.Fab") + (uuid "a9972a8b-63c8-4bf9-bff5-c7db0cdac3d9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "395d4767-a7f0-4e2d-9942-9416ee9b10f1") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0e5263ab-e86d-488d-ae58-ca5aabe1c76d") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4e2fc036-2c44-449a-a618-7068f5a469a0") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/374a9243-c0ae-42b3-927b-8a62be5d5888") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -0.254724 0.5225) + (end 0.254724 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7c28166b-add7-45bb-842b-cbc0d92447ab") + ) + (fp_line + (start -0.254724 -0.5225) + (end 0.254724 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9c463f25-8f4c-4556-aa1f-da0f2785f321") + ) + (fp_line + (start 1.65 0.73) + (end -1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b12d5f39-059c-4714-b3a6-41131223b145") + ) + (fp_line + (start 1.65 -0.73) + (end 1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b5ca7482-044a-49bc-ac4b-c57b7e9a5419") + ) + (fp_line + (start -1.65 0.73) + (end -1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e0e69b70-ac11-49c6-b786-170a3ea98eee") + ) + (fp_line + (start -1.65 -0.73) + (end 1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "38751642-2b8f-425e-a1da-463a6f7bcdbd") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a7012c51-80ce-43a7-9aaa-ecd9be4258f7") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "097e7fe5-e30a-4b26-ab0c-43e782843a1e") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "11759ca7-9f91-4da2-bf5a-c2510c1f2e16") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ac39d1f1-ff05-4dd0-9634-6663b416cceb") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "b3958dc8-b301-4e85-9ea8-ae10506ed1c3") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.9125 0 180) + (size 0.975 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "ee7eea9a-7610-49f3-9307-01dc96901a61") + ) + (pad "2" smd roundrect + (at 0.9125 0 180) + (size 0.975 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 49 "/L_UP") + (pintype "passive") + (uuid "2ff9b65c-ac6d-482d-b1ec-ca682f7b9dc6") + ) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (layer "F.Cu") + (uuid "fbb21119-1c5f-4ca0-bd04-933d3213be68") + (at 123.825 79.0702 180) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor handsolder") + (property "Reference" "R5" + (at 2.667 0.0254 0) + (layer "F.SilkS") + (uuid "83910396-d215-489f-9cfb-ff5971fce9b4") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "100" + (at 0 1.43 0) + (layer "F.Fab") + (uuid "161c7ebb-6968-4979-8de9-10ee6cfe5163") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "63105783-0505-4051-9a48-2627b760e3b3") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9bf3b7a4-ffd3-43b9-9201-a4403913bae2") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7fc94a16-6e69-4285-b22d-7c3c10cf2b6a") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/ccb227fc-0db8-4f37-b5a8-8442ea74cce2") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -0.254724 0.5225) + (end 0.254724 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3015bc52-c0aa-4a0e-af06-ff69d4ec87da") + ) + (fp_line + (start -0.254724 -0.5225) + (end 0.254724 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4ee44b6c-c053-4e4b-8eaf-5f72772bab5f") + ) + (fp_line + (start 1.65 0.73) + (end -1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "5446568e-6d51-4d92-92b8-bd6789eaf3fa") + ) + (fp_line + (start 1.65 -0.73) + (end 1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "54f1066d-2b2d-4a16-9a07-c9c1b89b8d3c") + ) + (fp_line + (start -1.65 0.73) + (end -1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "fa0e1dfe-47b5-4f55-b2ed-da3cc17526ae") + ) + (fp_line + (start -1.65 -0.73) + (end 1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "6429d4e9-be46-43b2-bbc0-f3a0f2fd825b") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "bef3470a-0f91-48e5-a0b5-6ec0deadff6c") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0643f0ca-d16f-4a5e-9552-a35850bad81a") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "1861206f-4002-429e-b35b-57ae93ff8bcc") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "aa045282-84d9-4831-91a9-854bbd7563db") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "ee87ef5d-85a2-4c4b-bedb-3838abf35a12") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.9125 0 180) + (size 0.975 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 27 "Net-(J2-Pin_3)") + (pintype "passive") + (uuid "d1124216-eb94-412b-89f6-7b954b8f83f2") + ) + (pad "2" smd roundrect + (at 0.9125 0 180) + (size 0.975 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 45 "/DOWN_SW") + (pintype "passive") + (uuid "7509024d-5879-4354-8855-b512ff42fe98") + ) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" + (layer "F.Cu") + (uuid "fc666206-f03a-48dd-9e57-0fe994f5fc29") + (at 99.9755 90.424) + (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (property "Reference" "C10" + (at 0 1.524 0) + (layer "F.SilkS") + (uuid "5b03eb2d-9fdb-4816-839e-1f37a7898922") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "6" + (at 0 1.43 0) + (layer "F.Fab") + (uuid "0e0eb1a4-f973-4cd8-a2b9-6b75e67e3ac5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c2339794-4681-4870-90a7-ae3ec27f9b15") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ff22617f-1094-48da-b44f-74f4b4fbbd33") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2b5c21e3-7477-4cb8-836e-6b4b8f895b5a") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/bd219d37-90db-48ca-aa0e-ba528aa27662") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -0.146267 -0.51) + (end 0.146267 -0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c1f3caf5-d681-41a8-8ec0-68ab2c14fa1c") + ) + (fp_line + (start -0.146267 0.51) + (end 0.146267 0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e2c685aa-e764-4f19-9761-76969de7b6b6") + ) + (fp_line + (start -1.65 -0.73) + (end 1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "8409a31c-c76a-475b-bfe6-76168d11a96e") + ) + (fp_line + (start -1.65 0.73) + (end -1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "00adf82c-e2da-464f-a96d-ed0d95b7b4e3") + ) + (fp_line + (start 1.65 -0.73) + (end 1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a42454d1-e51d-4141-9313-a93fc101f040") + ) + (fp_line + (start 1.65 0.73) + (end -1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "729aaca2-8f98-4faa-9189-dbe4efcabdaf") + ) + (fp_line + (start -0.8 -0.4) + (end 0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a45e5bea-04b6-4110-a4a6-e72d5968a421") + ) + (fp_line + (start -0.8 0.4) + (end -0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f952dd05-0ea2-43ee-bf70-2e6a050bd33a") + ) + (fp_line + (start 0.8 -0.4) + (end 0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0a304025-4142-4dad-b4f6-0f5ca2ba4635") + ) + (fp_line + (start 0.8 0.4) + (end -0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d8d78140-1f84-411b-af43-633933efabc6") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "435f7fd8-74ac-4dc6-b754-434cb04774b5") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.8625 0) + (size 1.075 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 9 "/OSC_OUT") + (pintype "passive") + (uuid "4da47c50-e90b-401f-b945-f609a8b5a0d9") + ) + (pad "2" smd roundrect + (at 0.8625 0) + (size 1.075 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "fd5f001b-7347-4867-a54b-b90e365333c3") + ) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" + (layer "F.Cu") + (uuid "fe2a72b7-0142-4ed1-a700-fd6b3687cabf") + (at 85.852 83.6665 -90) + (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (property "Reference" "C1" + (at -2.4395 0 0) + (layer "F.SilkS") + (uuid "d8822967-68d2-4b3a-99bf-d41d526bd239") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "0.1" + (at 0 1.43 90) + (layer "F.Fab") + (uuid "360de1c4-8bdb-47d0-84d7-78fddf080f80") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "6b5ba468-c904-4e74-b414-b1c09d89b7b7") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "18c9b753-c4ec-4a8d-937c-eea887fc516b") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "24c5e22f-6827-4167-9716-b40cfa0e2b3d") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/c64d8549-8fae-4510-88f8-d4e10f074e1e") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -0.146267 0.51) + (end 0.146267 0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "faa80171-2a48-4770-923d-16827b62c0ff") + ) + (fp_line + (start -0.146267 -0.51) + (end 0.146267 -0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d39689f4-d8d4-485b-a398-86f5dd711960") + ) + (fp_line + (start -1.65 0.73) + (end -1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "784b77c3-6fc7-4895-9db8-74b120334b09") + ) + (fp_line + (start 1.65 0.73) + (end -1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "99126429-e76b-4695-8046-a9fedbee37b6") + ) + (fp_line + (start -1.65 -0.73) + (end 1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "20a8a454-3ffd-462a-9740-acac90696af3") + ) + (fp_line + (start 1.65 -0.73) + (end 1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "370d4f63-8ac9-413b-a5f9-a721b98dcfd8") + ) + (fp_line + (start -0.8 0.4) + (end -0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d30cefa9-4c9a-4846-a8e2-ba44c66b17b3") + ) + (fp_line + (start 0.8 0.4) + (end -0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "87a6cda8-3a41-48fe-a80d-1cd617a85cca") + ) + (fp_line + (start -0.8 -0.4) + (end 0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3721f4c5-6385-4159-8579-7f512a75dfca") + ) + (fp_line + (start 0.8 -0.4) + (end 0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "57bf04df-d037-4fe1-8c54-8ddf6c562c09") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "275eb5dc-70b9-455e-9ea0-e72a9bacc22d") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.8625 0 270) + (size 1.075 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 1 "+5V") + (pintype "passive") + (uuid "39d55332-243c-4a39-8f49-384cc12b1772") + ) + (pad "2" smd roundrect + (at 0.8625 0 270) + (size 1.075 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "f9aba4df-5683-4d08-a48a-3e4e515151ba") + ) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (layer "F.Cu") + (uuid "ffe9868c-2fae-4fa6-be55-b9cbe593c4ec") + (at 122.682 104.0365 -90) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor handsolder") + (property "Reference" "R12" + (at -0.9125 2.286 180) + (layer "F.SilkS") + (uuid "9522e801-55c7-41c1-b8e1-cd2005a80efe") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "1k" + (at 0 1.43 90) + (layer "F.Fab") + (uuid "77ac7e49-a7ae-402b-948f-71ff95779842") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8fb364c6-cf2e-4e20-988f-cbaeab436225") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0402a0ce-9458-4a2c-a621-f704d7a72b7d") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7c1a5b81-2fd0-4dd8-a748-895b4f9b06a7") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/c48298ba-cdec-44fb-840d-4ba4dc791caa") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -0.254724 0.5225) + (end 0.254724 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6e5cc172-aeb4-4112-b479-c9acce711bed") + ) + (fp_line + (start -0.254724 -0.5225) + (end 0.254724 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "fc9aec77-e95a-4338-9983-c4be559d8288") + ) + (fp_line + (start -1.65 0.73) + (end -1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "6070c2f4-82f7-43d3-bb97-216f2ba7b351") + ) + (fp_line + (start 1.65 0.73) + (end -1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "663e3140-fded-46e2-b088-b1568e850928") + ) + (fp_line + (start -1.65 -0.73) + (end 1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2dc33d1c-7abe-4493-9f66-6ea6b7e5fa4a") + ) + (fp_line + (start 1.65 -0.73) + (end 1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "4654fc7f-89a7-4f3f-9613-afaf13a57bab") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7890a2f6-7e03-4812-99f8-ad764e77ac3b") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "9813282e-1576-40e2-893e-85b1644d9609") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3cbf4a8d-66e3-41ab-b7d7-c8619ccd5f38") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "63c4cb29-1955-4019-9eab-ad0672a19d2f") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "7da1489e-6bcf-4231-a6af-a53d764140a9") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.9125 0 270) + (size 0.975 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 17 "/UP_DIR") + (pintype "passive") + (uuid "75c31298-62c0-4ec8-99ad-6fba316bfbdd") + ) + (pad "2" smd roundrect + (at 0.9125 0 270) + (size 0.975 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 13 "Net-(D4-K)") + (pintype "passive") + (uuid "2cd59025-52fa-453a-9523-039909329ec5") + ) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Package_TO_SOT_SMD:TO-252-3_TabPin2" + (layer "B.Cu") + (uuid "03124b7b-1f65-4832-98b3-91efeefad60c") + (at 124.347 101.093 180) + (descr "TO-252/DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-3-1/") + (tags "DPAK TO-252 DPAK-3 TO-252-3 SOT-428") + (property "Reference" "Q3" + (at 0 4.5 0) + (layer "B.SilkS") + (uuid "affdc861-afde-4673-95b6-e28268cef6ff") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "IRLR7807" + (at 0 -4.5 0) + (layer "B.Fab") + (uuid "9c3146e5-d7ff-4ac7-9f28-4d07b5bf9d6c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Footprint" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2d78e9ae-cf30-4702-84e9-00005b6c9942") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b9d63c4a-8571-4a65-b031-19de451a6b12") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "N-MOSFET transistor, gate/drain/source" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "18569ca4-5a58-411a-8c93-68a1148a996a") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/55d5a1fe-3dfc-404d-b0d7-7bd71fa205b5") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start 3.11 3.45) + (end -3.31 3.45) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "d1fd9be3-4e6b-4b7b-a1dc-2843b91ebd92") + ) + (fp_line + (start 3.11 -3.45) + (end -3.31 -3.45) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "249ac40a-2d15-4bc7-8841-3c29487a5585") + ) + (fp_line + (start -3.31 3.45) + (end -3.31 3.18) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "d7ff207d-21a3-4a92-a081-1def4190c742") + ) + (fp_line + (start -3.31 3.18) + (end -6.14 3.18) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "64f24b4a-aaa4-4454-96b8-ba02eacc6f7d") + ) + (fp_line + (start -3.31 -3.18) + (end -4.41 -3.18) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "34109bc3-9dda-4248-9cd1-375edc229a72") + ) + (fp_line + (start -3.31 -3.45) + (end -3.31 -3.18) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "edc3c5a0-37f6-4d47-b433-281a218298da") + ) + (fp_line + (start 4.71 3.5) + (end -6.39 3.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "f858b574-1244-42e2-ae01-7a3257b09cc7") + ) + (fp_line + (start 4.71 -3.5) + (end 4.71 3.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "c89b30c1-dbf6-4c3c-8d66-b0518808437e") + ) + (fp_line + (start -6.39 3.5) + (end -6.39 -3.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "d8dc909d-c845-47a9-b290-100a4f01b4df") + ) + (fp_line + (start -6.39 -3.5) + (end 4.71 -3.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "d32f97c1-7ba1-4ea1-8587-bf580bddc1a6") + ) + (fp_line + (start 4.11 2.7) + (end 4.11 -2.7) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "56a8628f-4324-42bb-ab81-f493f0e0b7a3") + ) + (fp_line + (start 4.11 -2.7) + (end 3.11 -2.7) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "9a2b0ccf-5831-4865-8538-4cbb3c14425b") + ) + (fp_line + (start 3.11 3.25) + (end 3.11 -3.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "abc75527-b2e8-406e-b02e-1451ccca974d") + ) + (fp_line + (start 3.11 2.7) + (end 4.11 2.7) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "93c3eb30-c110-4676-818d-04194afd3411") + ) + (fp_line + (start 3.11 -3.25) + (end -3.11 -3.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "2575b431-42c0-4f9e-b525-bd72a8d82e0a") + ) + (fp_line + (start -2.11 3.25) + (end 3.11 3.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "e4135adf-6e45-4a01-a18c-a62627c20a9d") + ) + (fp_line + (start -2.705 2.655) + (end -5.81 2.655) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "f69fa7ed-ca99-441a-b4de-ac8385bf9a43") + ) + (fp_line + (start -3.11 2.25) + (end -2.11 3.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "2a2690bb-0482-4134-b482-5a8d59cd34a7") + ) + (fp_line + (start -3.11 0.375) + (end -5.81 0.375) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "bc437a74-2fbe-4009-a34c-4ab761dc081c") + ) + (fp_line + (start -3.11 -1.905) + (end -5.81 -1.905) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "6db9b305-f488-45bb-8a06-14631f06a91d") + ) + (fp_line + (start -3.11 -3.25) + (end -3.11 2.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "d4ba904e-be2e-44aa-8d13-f2ca6855f8ec") + ) + (fp_line + (start -5.81 2.655) + (end -5.81 1.905) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "b88596a8-0bab-4933-934c-fb87155bb269") + ) + (fp_line + (start -5.81 1.905) + (end -3.11 1.905) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "28ff204f-fa16-48b7-a694-378e1c33a505") + ) + (fp_line + (start -5.81 0.375) + (end -5.81 -0.375) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "b946ec6b-4b0c-4f83-b124-ea62d05bbb59") + ) + (fp_line + (start -5.81 -0.375) + (end -3.11 -0.375) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "e6b612e9-faf7-4359-a612-92580339a8e7") + ) + (fp_line + (start -5.81 -1.905) + (end -5.81 -2.655) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "eb55feef-faa4-4838-9d24-74a91fc5a0f7") + ) + (fp_line + (start -5.81 -2.655) + (end -3.11 -2.655) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "72757ca8-9230-4a3d-85f6-1a7917f18b02") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "B.Fab") + (uuid "5a41c305-65db-4139-bee2-65971168cd1a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (pad "1" smd roundrect + (at -5.04 2.28 180) + (size 2.2 1.2) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.208333) + (net 40 "Net-(Q3-G)") + (pinfunction "G") + (pintype "input") + (uuid "e2c7da54-eb4f-456c-bf77-47ebf58abea7") + ) + (pad "2" smd roundrect + (at -5.04 0 180) + (size 2.2 1.2) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.208333) + (net 20 "Net-(D10-A)") + (pinfunction "D") + (pintype "passive") + (uuid "2dc5f8ad-1e2e-44fb-a6e7-0034a3a4094c") + ) + (pad "2" smd roundrect + (at -0.415 -1.525 180) + (size 3.05 2.75) + (layers "B.Cu" "B.Paste") + (roundrect_rratio 0.090909) + (net 20 "Net-(D10-A)") + (pinfunction "D") + (pintype "passive") + (uuid "b3796216-eaf8-44fa-a01e-9787de9df7a8") + ) + (pad "2" smd roundrect + (at -0.415 1.525 180) + (size 3.05 2.75) + (layers "B.Cu" "B.Paste") + (roundrect_rratio 0.090909) + (net 20 "Net-(D10-A)") + (pinfunction "D") + (pintype "passive") + (uuid "c1783541-bbd2-47b6-a887-e423315b4178") + ) + (pad "2" smd roundrect + (at 1.26 0 180) + (size 6.4 5.8) + (layers "B.Cu" "B.Mask") + (roundrect_rratio 0.043103) + (net 20 "Net-(D10-A)") + (pinfunction "D") + (pintype "passive") + (uuid "fae82871-c27f-406c-b862-abd08b64978b") + ) + (pad "2" smd roundrect + (at 2.935 -1.525 180) + (size 3.05 2.75) + (layers "B.Cu" "B.Paste") + (roundrect_rratio 0.090909) + (net 20 "Net-(D10-A)") + (pinfunction "D") + (pintype "passive") + (uuid "b9f089ba-3f54-4d82-827a-7f2d7cc344d4") + ) + (pad "2" smd roundrect + (at 2.935 1.525 180) + (size 3.05 2.75) + (layers "B.Cu" "B.Paste") + (roundrect_rratio 0.090909) + (net 20 "Net-(D10-A)") + (pinfunction "D") + (pintype "passive") + (uuid "1cc939b4-7982-4368-9fe1-d9256616a6c2") + ) + (pad "3" smd roundrect + (at -5.04 -2.28 180) + (size 2.2 1.2) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.208333) + (net 2 "GND") + (pinfunction "S") + (pintype "passive") + (uuid "8ad185ba-5a84-48ec-ab2c-4b8dfa1cfe64") + ) + (model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/TO-252-3_TabPin2.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Diode_SMD:D_SMA_Handsoldering" + (layer "B.Cu") + (uuid "1d8090e7-7690-48ba-b12b-a8ba9651312b") + (at 128.524 117.388 90) + (descr "Diode SMA (DO-214AC) Handsoldering") + (tags "Diode SMA (DO-214AC) Handsoldering") + (property "Reference" "D10" + (at -5.294 0.254 0) + (layer "B.SilkS") + (uuid "0d098d7e-a8a3-4758-ac97-ce7c4786bba9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "1N4007" + (at 0 -2.6 90) + (layer "B.Fab") + (uuid "57e77e95-6ecc-4351-8fdb-25df0b017100") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Footprint" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "10294c28-318c-437a-92fa-ef4a69125292") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ad343899-d90a-4b4a-991f-be815af811a6") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Diode" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "1c711a87-72f2-4952-b3e7-9c221fb9a0dd") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Sim.Device" "D" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "edd1901a-f97b-4ce2-9b74-45116882cb36") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Sim.Pins" "1=K 2=A" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "b3eefbd2-7a6d-4db3-b6c9-c3b22f624f7a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (path "/8fc53933-c71d-4315-80b3-e885bef37c3a") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -4.51 -1.65) + (end 2.5 -1.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "e108047b-175b-42af-800d-4ab78e5848b2") + ) + (fp_line + (start -4.51 1.65) + (end -4.51 -1.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "0fd9172c-2b03-4366-896c-5371b266c382") + ) + (fp_line + (start -4.51 1.65) + (end 2.5 1.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "78a7004c-8b30-44a8-beab-12fd0fa0b8d2") + ) + (fp_line + (start 4.5 -1.75) + (end -4.5 -1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "73f52ed5-e498-4b91-b08b-1ae0e6cb2de8") + ) + (fp_line + (start -4.5 -1.75) + (end -4.5 1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "b9569e86-e773-4490-8bd9-59ab1f9b8c0a") + ) + (fp_line + (start 4.5 1.75) + (end 4.5 -1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "6b7c5bfc-4bf1-4f67-8d91-edb4e9f3401d") + ) + (fp_line + (start -4.5 1.75) + (end 4.5 1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "cb0a37e3-6597-4572-9f52-0c76fafb2c48") + ) + (fp_line + (start 2.3 -1.5) + (end -2.3 -1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "ee933cb5-7394-488d-89b2-5f24dbd815cf") + ) + (fp_line + (start -2.3 -1.5) + (end -2.3 1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "f71fab07-0e6a-4fae-bbf5-9ff290b75576") + ) + (fp_line + (start 0.50118 -0.75032) + (end 0.50118 0.79908) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "db783e2a-477f-45f7-8740-e34ea07bba01") + ) + (fp_line + (start 0.50118 -0.00102) + (end 1.4994 -0.00102) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "adc29691-b7bf-4804-9df9-e6a2ab4ee9a6") + ) + (fp_line + (start -0.64944 -0.00102) + (end 0.50118 -0.75032) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "be52a813-a286-4826-80e6-b04629f60a75") + ) + (fp_line + (start -0.64944 -0.00102) + (end -1.55114 -0.00102) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "10d4f948-8576-4607-b743-c91c8c0099ee") + ) + (fp_line + (start -0.64944 -0.00102) + (end 0.50118 0.79908) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "9403e188-a8ae-4e1e-97f1-021fa65a9bfd") + ) + (fp_line + (start -0.64944 0.79908) + (end -0.64944 -0.80112) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "19cd9e7e-18a6-446e-9b67-babfc9bb45a7") + ) + (fp_line + (start 2.3 1.5) + (end 2.3 -1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "1bdde0e0-64c7-43c0-ad3f-40b03f1ecdc7") + ) + (fp_line + (start 2.3 1.5) + (end -2.3 1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "89217477-e992-4c6b-aa94-913d14ade8e8") + ) + (fp_text user "${REFERENCE}" + (at 0 2.5 90) + (layer "B.Fab") + (uuid "5c5ab4c6-3934-4113-8c03-beedf1374407") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (pad "1" smd roundrect + (at -2.5 0 90) + (size 3.5 1.8) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.1388888889) + (net 3 "+12V") + (pinfunction "K") + (pintype "passive") + (uuid "50de6289-d5e9-4fee-b3d3-d2cd1173593e") + ) + (pad "2" smd roundrect + (at 2.5 0 90) + (size 3.5 1.8) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.1388888889) + (net 20 "Net-(D10-A)") + (pinfunction "A") + (pintype "passive") + (uuid "cb51c34b-d457-440f-baf2-ee32aa76eb3e") + ) + (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (layer "B.Cu") + (uuid "24e6a0c4-ccc1-47f0-946d-02cc2370fdeb") + (at 128.4205 96.52) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor handsolder") + (property "Reference" "R18" + (at 3.1515 0 0) + (layer "B.SilkS") + (uuid "0f338b9b-0815-4c08-b466-712b9d1500a1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "220" + (at 0 -1.43 0) + (layer "B.Fab") + (uuid "b2f44335-e05e-4338-b56f-c6921c9ace56") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "bd8e128a-d981-4d34-b98f-861292bdc97d") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "bdf5e687-b1a1-4e0b-8bc6-9a4bbc7bb78d") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "1c108cfa-e1ca-44a1-afa3-b5396d993dd4") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/81a2ee18-ba8a-4f75-adab-378149aa102d") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -0.254724 -0.5225) + (end 0.254724 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "dadadb17-a7c0-4a0e-87f3-e413f880f9f1") + ) + (fp_line + (start -0.254724 0.5225) + (end 0.254724 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "b2cba047-24fb-4960-8cbb-a3a98bea07c7") + ) + (fp_line + (start -1.65 -0.73) + (end -1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "8fc4e67e-81c5-42af-b1f1-9d79de943c93") + ) + (fp_line + (start -1.65 0.73) + (end 1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "96c84502-8628-4cb9-be46-bd000003ac40") + ) + (fp_line + (start 1.65 -0.73) + (end -1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "d52a74df-df60-4679-8397-bcde933dde2b") + ) + (fp_line + (start 1.65 0.73) + (end 1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "51cfdc0b-2403-4c45-afb9-4d791920c7c9") + ) + (fp_line + (start -0.8 -0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "b735fc0e-4d90-4fae-969b-0ed0ba759eee") + ) + (fp_line + (start -0.8 0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "1bbb6908-84bb-4bd9-ac91-10c511d99ecc") + ) + (fp_line + (start 0.8 -0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "4ea826f7-3f4c-47c2-b76d-8018f85c79a9") + ) + (fp_line + (start 0.8 0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "b92405f7-1cda-4afa-8861-83380da118f9") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "B.Fab") + (uuid "76539acb-ffe3-46a8-b6e4-5b2b96831e10") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + (justify mirror) + ) + ) + (pad "1" smd roundrect + (at -0.9125 0) + (size 0.975 0.95) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.25) + (net 50 "/L_DOWN") + (pintype "passive") + (uuid "65edb45a-5450-4cf0-879d-2bc9fd501c0d") + ) + (pad "2" smd roundrect + (at 0.9125 0) + (size 0.975 0.95) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.25) + (net 40 "Net-(Q3-G)") + (pintype "passive") + (uuid "97d22146-6773-4b0d-8989-21b544d0d751") + ) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Diode_SMD:D_SMA_Handsoldering" + (layer "B.Cu") + (uuid "296b4248-fa14-4c52-be90-7316645a3226") + (at 132.334 117.388 -90) + (descr "Diode SMA (DO-214AC) Handsoldering") + (tags "Diode SMA (DO-214AC) Handsoldering") + (property "Reference" "D9" + (at 5.374 0 0) + (layer "B.SilkS") + (uuid "daf741a4-2c42-4cb1-9317-0778fce43cdf") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "1N4007" + (at 0 -2.6 90) + (layer "B.Fab") + (uuid "f93966d6-fa5c-4eb1-a55a-697fc00437f1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Footprint" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e37298db-f6c1-49f7-8d9c-f082021af95c") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "31ac2790-7232-4d01-9697-07707632419b") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Diode" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9d696fcd-b94b-460e-89b8-8c75593f4a09") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Sim.Device" "D" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "7c7f8682-4bb8-47b0-a0da-2b579d7283f5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Sim.Pins" "1=K 2=A" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "d87f9f0a-5c85-4927-80fe-8bb8564beb31") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (path "/24d6f82c-2e62-4d47-9d97-379df441a496") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -4.51 1.65) + (end 2.5 1.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "1a6e4eb7-bb1e-44b2-8785-15608ee139c2") + ) + (fp_line + (start -4.51 1.65) + (end -4.51 -1.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "93de5584-fc54-4db5-a52f-229a66e525ac") + ) + (fp_line + (start -4.51 -1.65) + (end 2.5 -1.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "1c31ee06-d99c-4e17-9caf-e8532b97886b") + ) + (fp_line + (start -4.5 1.75) + (end 4.5 1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "30f43ab2-f72e-4231-a5b1-c81b5f7bfd73") + ) + (fp_line + (start 4.5 1.75) + (end 4.5 -1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "6f383d03-1827-42cd-b086-ceba5d3980cd") + ) + (fp_line + (start -4.5 -1.75) + (end -4.5 1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "55f2d9ed-a2d2-4242-a98d-897a70513c22") + ) + (fp_line + (start 4.5 -1.75) + (end -4.5 -1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "05523ad8-9d23-418b-9bea-86a9a0cfa765") + ) + (fp_line + (start 2.3 1.5) + (end -2.3 1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "743f43b1-94ca-4676-a3b3-1d29f927ed5b") + ) + (fp_line + (start 2.3 1.5) + (end 2.3 -1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "78b4d3f1-208f-48c1-8f2c-d30a827c208e") + ) + (fp_line + (start -0.64944 0.79908) + (end -0.64944 -0.80112) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "b2b768c9-d4ef-4ff8-bc4f-57bd12982f27") + ) + (fp_line + (start -0.64944 -0.00102) + (end 0.50118 0.79908) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "a6ae142d-267a-4c5e-83e8-f32f9ed33543") + ) + (fp_line + (start -0.64944 -0.00102) + (end -1.55114 -0.00102) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "508a2843-d141-405b-9832-703b1288c068") + ) + (fp_line + (start -0.64944 -0.00102) + (end 0.50118 -0.75032) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "9cbf9344-8d4d-4779-8fc7-7d92182068d4") + ) + (fp_line + (start 0.50118 -0.00102) + (end 1.4994 -0.00102) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "227aa3a4-338a-4cab-b2ab-284ec6406e01") + ) + (fp_line + (start 0.50118 -0.75032) + (end 0.50118 0.79908) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "5d518055-a9f0-4512-8834-d0e0d5f86684") + ) + (fp_line + (start -2.3 -1.5) + (end -2.3 1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "f9e52390-a7f2-42b6-955e-237aa78c9470") + ) + (fp_line + (start 2.3 -1.5) + (end -2.3 -1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "b510e6f0-1f36-48f5-89cc-6833d77f8af3") + ) + (fp_text user "${REFERENCE}" + (at 0 2.5 90) + (layer "B.Fab") + (uuid "09394d45-14d5-4150-9954-dfb0a051aa72") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (pad "1" smd roundrect + (at -2.5 0 270) + (size 3.5 1.8) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.1388888889) + (net 20 "Net-(D10-A)") + (pinfunction "K") + (pintype "passive") + (uuid "ee6a37bc-e9b3-4fbd-82b6-3818e8893594") + ) + (pad "2" smd roundrect + (at 2.5 0 270) + (size 3.5 1.8) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.1388888889) + (net 2 "GND") + (pinfunction "A") + (pintype "passive") + (uuid "85c2f3f9-3653-4950-afbc-ef3ea8eb1db6") + ) + (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Diode_SMD:D_SMB_Handsoldering" + (layer "B.Cu") + (uuid "31a6ad44-a1fd-4509-bbb7-c5d62ccf9813") + (at 76.454 91.0844 90) + (descr "Diode SMB (DO-214AA) Handsoldering") + (tags "Diode SMB (DO-214AA) Handsoldering") + (property "Reference" "D3" + (at 5.6896 -0.0254 180) + (layer "B.SilkS") + (uuid "2c31b866-01e0-427a-a37b-a2c4d6baa7e1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "SMBJ18A" + (at 0 -3 90) + (layer "B.Fab") + (uuid "8cb1fa5f-6b5b-40ee-989b-0eb7a3ccfd58") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Footprint" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c9e6dedf-cfbc-4cfb-8d54-1ebb0f58832a") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4df7d141-e523-480a-b717-6bd22a68b6ca") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Diode" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5d1c1428-0b14-488d-96f6-b294b4ee7409") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Sim.Device" "D" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "9125d71d-57f9-4f0f-8729-999c5fd4152f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Sim.Pins" "1=K 2=A" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "0cdeee63-37d1-4437-b30b-8fa6078e7137") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (path "/bf41fd65-da7d-431e-bc2d-c9c40b1e8eba") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -4.71 -2.15) + (end 2.7 -2.15) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "fa698182-3f3a-4d78-8d06-ec8047bfbd1b") + ) + (fp_line + (start -4.71 2.15) + (end -4.71 -2.15) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "d8030202-8773-4eed-8a63-41f9b434eb5a") + ) + (fp_line + (start -4.71 2.15) + (end 2.7 2.15) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "9fd81268-36d0-47a5-b40a-4e353e0baf8d") + ) + (fp_line + (start 4.7 -2.25) + (end -4.7 -2.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "f8b2058e-d55e-4b24-9dc4-9615018d1d94") + ) + (fp_line + (start -4.7 -2.25) + (end -4.7 2.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "ee02985c-e070-4090-9f61-744848ac4297") + ) + (fp_line + (start 4.7 2.25) + (end 4.7 -2.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "61de9c99-8c98-4f86-b3f4-c2f448cdf574") + ) + (fp_line + (start -4.7 2.25) + (end 4.7 2.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "58789616-e777-404c-bbf3-56abe036f89c") + ) + (fp_line + (start 2.3 -2) + (end -2.3 -2) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "db8ea9d9-e5cd-43fd-84d8-fa058e5b8942") + ) + (fp_line + (start -2.3 -2) + (end -2.3 2) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "72426bc4-514a-4e0b-b89b-dcf695c83f81") + ) + (fp_line + (start 0.50118 -0.75032) + (end 0.50118 0.79908) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "1bae047c-1a7a-4506-a451-d5ded2201cb1") + ) + (fp_line + (start 0.50118 -0.00102) + (end 1.4994 -0.00102) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "1e1cc799-45b1-4004-984d-a7af743fd393") + ) + (fp_line + (start -0.64944 -0.00102) + (end 0.50118 -0.75032) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "b18997de-8a4d-400e-81b7-5e10d15fee45") + ) + (fp_line + (start -0.64944 -0.00102) + (end -1.55114 -0.00102) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "977e065c-8277-4ec9-9ee7-1ca76bfc349d") + ) + (fp_line + (start -0.64944 -0.00102) + (end 0.50118 0.79908) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "a31eb5d9-6305-494d-a248-444b652dcc83") + ) + (fp_line + (start -0.64944 0.79908) + (end -0.64944 -0.80112) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "c5b05680-5209-4e18-bb60-b503a395ca77") + ) + (fp_line + (start 2.3 2) + (end 2.3 -2) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "68b04405-c829-4139-a8f7-626bad82b810") + ) + (fp_line + (start 2.3 2) + (end -2.3 2) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "57109c2a-8cc6-418b-94b0-d4698f63dcd1") + ) + (fp_text user "${REFERENCE}" + (at 0 3 90) + (layer "B.Fab") + (uuid "65ab77d9-5f00-4ca4-8cbd-b52f3f8b0f90") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (pad "1" smd roundrect + (at -2.7 0 90) + (size 3.5 2.3) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.1086956522) + (net 3 "+12V") + (pinfunction "K") + (pintype "passive") + (uuid "1df467e1-10f4-4281-a4bf-fa6441878963") + ) + (pad "2" smd roundrect + (at 2.7 0 90) + (size 3.5 2.3) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.1086956522) + (net 2 "GND") + (pinfunction "A") + (pintype "passive") + (uuid "0bc41eb4-53d3-4f78-996b-75757220ed94") + ) + (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMB.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (layer "B.Cu") + (uuid "341311d2-7559-4059-9ff2-87bc82b334c9") + (at 114.0714 113.9679 -90) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor handsolder") + (property "Reference" "R22" + (at 2.4365 -0.508 180) + (layer "B.SilkS") + (uuid "ebf84d48-b858-4e30-be3a-7e17136afb42") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "10k" + (at 0 -1.43 90) + (layer "B.Fab") + (uuid "86bddcaf-774c-4087-b3a0-b0040a1f559b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Footprint" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "da1eb76c-b08a-44a7-800f-e7b8450698c9") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "511a7daf-abf0-4692-8d20-bd5185dcd7da") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "1091994c-905a-4285-97c8-53e2544caa40") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/ebbc8d8c-bb01-4d32-b42b-7af07ae969d2") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -0.254724 0.5225) + (end 0.254724 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "7d0482f0-9732-4920-8580-34bb62aa15cd") + ) + (fp_line + (start -0.254724 -0.5225) + (end 0.254724 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "7b8c1061-cbe7-4b48-ad36-f140363e1985") + ) + (fp_line + (start -1.65 0.73) + (end 1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "6bb29434-aa44-4955-bdd3-222fc0fa166a") + ) + (fp_line + (start 1.65 0.73) + (end 1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "e837b8a8-96ea-48a6-807d-89e377d5dff4") + ) + (fp_line + (start -1.65 -0.73) + (end -1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "9ff8f524-d056-4867-867f-61f4885f1ea9") + ) + (fp_line + (start 1.65 -0.73) + (end -1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "5d6677a9-b2be-4ec4-af41-e7f047329ec3") + ) + (fp_line + (start -0.8 0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "33f1587a-bb94-40f9-8a91-c3b70735b9dc") + ) + (fp_line + (start 0.8 0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "ecd504ad-c953-4952-972b-992b12485aad") + ) + (fp_line + (start -0.8 -0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "ec34e1bb-b25a-4350-afa7-bcafaf38c7b1") + ) + (fp_line + (start 0.8 -0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "f0d500bd-78c0-400f-93a3-5ffa79f48bca") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "B.Fab") + (uuid "4bd83a01-517b-41f0-b19d-d2ae576ae305") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + (justify mirror) + ) + ) + (pad "1" smd roundrect + (at -0.9125 0 270) + (size 0.975 0.95) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.25) + (net 51 "/R_DOWN") + (pintype "passive") + (uuid "5013ebbc-492c-4b92-b2ba-e4b014393a06") + ) + (pad "2" smd roundrect + (at 0.9125 0 270) + (size 0.975 0.95) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "54d73a67-e10d-477d-900b-18d2b752e425") + ) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Package_TO_SOT_SMD:TO-252-3_TabPin2" + (layer "B.Cu") + (uuid "40f732a0-813f-4dbe-ac39-0ff2c608ff2d") + (at 104.789 113.793 180) + (descr "TO-252/DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-3-1/") + (tags "DPAK TO-252 DPAK-3 TO-252-3 SOT-428") + (property "Reference" "Q5" + (at 0.395 -4.3678 0) + (layer "B.SilkS") + (uuid "bad9cf5e-2b79-4157-b028-84bda7af51a7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "IRLR7807" + (at 0 -4.5 0) + (layer "B.Fab") + (uuid "634fa13c-5dce-4bb0-a377-8d38d008c87b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Footprint" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3a75fbe6-5a03-4435-8d3b-639b14282951") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b97c69c1-fd62-4043-8a8e-eca934237a1d") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "N-MOSFET transistor, gate/drain/source" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "446f1b80-cdc0-44d5-8698-b23ff90c8772") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/fad7fe14-e161-4c9f-93fd-7ab778ec54e8") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start 3.11 3.45) + (end -3.31 3.45) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "dab103e9-fde0-46ba-9c78-bd3f98e6ba04") + ) + (fp_line + (start 3.11 -3.45) + (end -3.31 -3.45) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "be623913-dddd-48b3-8bc0-4f7539579099") + ) + (fp_line + (start -3.31 3.45) + (end -3.31 3.18) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "fb3b717b-a035-41a3-83fe-f8ee51dc4b3c") + ) + (fp_line + (start -3.31 3.18) + (end -6.14 3.18) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "e8626f15-e65c-4c2f-8dee-8a53c4f72885") + ) + (fp_line + (start -3.31 -3.18) + (end -4.41 -3.18) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "da5b71cd-6dea-4e6e-a98b-f89bb3ce3009") + ) + (fp_line + (start -3.31 -3.45) + (end -3.31 -3.18) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "16293a83-2668-404c-b1d0-126cdfe45faa") + ) + (fp_line + (start 4.71 3.5) + (end -6.39 3.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "81e673db-58e7-4e29-8eca-fee0b9f53d98") + ) + (fp_line + (start 4.71 -3.5) + (end 4.71 3.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "51d63318-9a92-4eb0-857f-d4fb643f8e13") + ) + (fp_line + (start -6.39 3.5) + (end -6.39 -3.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "fa5f0cbf-3e5c-4545-bde3-efc4f28efe07") + ) + (fp_line + (start -6.39 -3.5) + (end 4.71 -3.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "42261cfd-7aac-4d8e-a8cb-4df7d598ac8e") + ) + (fp_line + (start 4.11 2.7) + (end 4.11 -2.7) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "f3b97b8c-d36d-47a4-b078-4b8f5da5e8ca") + ) + (fp_line + (start 4.11 -2.7) + (end 3.11 -2.7) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "5a210aae-a1b6-4c17-9290-a05878377f06") + ) + (fp_line + (start 3.11 3.25) + (end 3.11 -3.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "5006ac6d-b45d-4b69-9f37-b3555b8c64f2") + ) + (fp_line + (start 3.11 2.7) + (end 4.11 2.7) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "aae6c4a8-6c84-4ffc-b662-efeadcd435c2") + ) + (fp_line + (start 3.11 -3.25) + (end -3.11 -3.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "cef44e56-4f87-4bcf-9ccf-deaab782db1b") + ) + (fp_line + (start -2.11 3.25) + (end 3.11 3.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "a2f39e1a-5e99-4b45-ac08-543a10013088") + ) + (fp_line + (start -2.705 2.655) + (end -5.81 2.655) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "959d2374-2690-4020-9d8a-82c28122dec4") + ) + (fp_line + (start -3.11 2.25) + (end -2.11 3.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "1d5155b4-86a6-4623-8188-750eae418437") + ) + (fp_line + (start -3.11 0.375) + (end -5.81 0.375) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "2bdbd88b-5e06-47c4-9e3d-be0753c0f0e6") + ) + (fp_line + (start -3.11 -1.905) + (end -5.81 -1.905) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "f2250529-9cee-46d8-b549-7ca51dfab2cb") + ) + (fp_line + (start -3.11 -3.25) + (end -3.11 2.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "546e73fe-a8fe-4e8e-be14-b79e603f6f29") + ) + (fp_line + (start -5.81 2.655) + (end -5.81 1.905) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "1db9b767-6ae7-45ee-a628-c6dd78436006") + ) + (fp_line + (start -5.81 1.905) + (end -3.11 1.905) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "78bc231d-e32c-4884-9b99-4d1ad3ff192d") + ) + (fp_line + (start -5.81 0.375) + (end -5.81 -0.375) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "ccad40ae-f882-4599-8ce3-801976020955") + ) + (fp_line + (start -5.81 -0.375) + (end -3.11 -0.375) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "1ca7b804-09c3-4f7d-ae5d-80df257c454a") + ) + (fp_line + (start -5.81 -1.905) + (end -5.81 -2.655) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "b13ff947-a012-46d0-9099-cd88002bc210") + ) + (fp_line + (start -5.81 -2.655) + (end -3.11 -2.655) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "3b6a3b0f-39e8-47d0-b650-60f8813698d3") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "B.Fab") + (uuid "f7699708-fa81-4a5b-a1e6-e47bbaf79145") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (pad "1" smd roundrect + (at -5.04 2.28 180) + (size 2.2 1.2) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.208333) + (net 42 "Net-(Q5-G)") + (pinfunction "G") + (pintype "input") + (uuid "13b98cca-80d9-4702-9140-7d91b91bad39") + ) + (pad "2" smd roundrect + (at -5.04 0 180) + (size 2.2 1.2) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.208333) + (net 21 "Net-(D11-A)") + (pinfunction "D") + (pintype "passive") + (uuid "22c7dbc3-e2f8-40a5-b0e4-1b5f309f379e") + ) + (pad "2" smd roundrect + (at -0.415 -1.525 180) + (size 3.05 2.75) + (layers "B.Cu" "B.Paste") + (roundrect_rratio 0.090909) + (net 21 "Net-(D11-A)") + (pinfunction "D") + (pintype "passive") + (uuid "a0f4dc67-7116-4bda-92b6-aca0ff108a5a") + ) + (pad "2" smd roundrect + (at -0.415 1.525 180) + (size 3.05 2.75) + (layers "B.Cu" "B.Paste") + (roundrect_rratio 0.090909) + (net 21 "Net-(D11-A)") + (pinfunction "D") + (pintype "passive") + (uuid "cd9da806-1d80-47d0-bb67-6771f74d55d6") + ) + (pad "2" smd roundrect + (at 1.26 0 180) + (size 6.4 5.8) + (layers "B.Cu" "B.Mask") + (roundrect_rratio 0.043103) + (net 21 "Net-(D11-A)") + (pinfunction "D") + (pintype "passive") + (uuid "0bbc16b3-30a0-4979-94da-949b8897a507") + ) + (pad "2" smd roundrect + (at 2.935 -1.525 180) + (size 3.05 2.75) + (layers "B.Cu" "B.Paste") + (roundrect_rratio 0.090909) + (net 21 "Net-(D11-A)") + (pinfunction "D") + (pintype "passive") + (uuid "c471c87c-da77-47d3-9ea0-e82535ace6bb") + ) + (pad "2" smd roundrect + (at 2.935 1.525 180) + (size 3.05 2.75) + (layers "B.Cu" "B.Paste") + (roundrect_rratio 0.090909) + (net 21 "Net-(D11-A)") + (pinfunction "D") + (pintype "passive") + (uuid "8fcc7f6d-a5ac-46d4-8b46-5432a8e951ec") + ) + (pad "3" smd roundrect + (at -5.04 -2.28 180) + (size 2.2 1.2) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.208333) + (net 2 "GND") + (pinfunction "S") + (pintype "passive") + (uuid "743b93bd-7bf3-416f-b3bd-4b5e75563889") + ) + (model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/TO-252-3_TabPin2.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (layer "B.Cu") + (uuid "54408422-cefb-4832-ad40-660648383218") + (at 103.2275 93.472) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor handsolder") + (property "Reference" "R14" + (at -3.1515 0 0) + (layer "B.SilkS") + (uuid "16758656-8cc2-4ca6-a83a-3a7c3599d955") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "330" + (at 0 -1.43 0) + (layer "B.Fab") + (uuid "ae6867fb-d4e0-44fb-a22b-c34dc07fade8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "db94571b-e3f2-43c1-bc8d-cf28be9e7d02") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "99db70c3-a2f0-4699-b1fa-c245e1829906") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "547f649c-de42-4099-8529-009ccc45ad54") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/89755849-e3e9-4e1e-b86a-8ed346a9749b") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -0.254724 -0.5225) + (end 0.254724 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "1f03f40d-87b8-455e-b6a2-b28ccadfce37") + ) + (fp_line + (start -0.254724 0.5225) + (end 0.254724 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "9f98205c-e2ad-4977-93f0-6c1026ceba04") + ) + (fp_line + (start -1.65 -0.73) + (end -1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "d9328177-f1c9-46ca-972e-fcef25cbf23e") + ) + (fp_line + (start -1.65 0.73) + (end 1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "fe00e2ae-0335-4d4d-9d83-8e22b514edd7") + ) + (fp_line + (start 1.65 -0.73) + (end -1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "6f7d9829-63fe-47e1-be01-8aa9a0ac2530") + ) + (fp_line + (start 1.65 0.73) + (end 1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "cebd2a45-5023-4d7b-9df9-f3cdda1372be") + ) + (fp_line + (start -0.8 -0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "6566f024-dc73-4b04-8a4a-559fb9874cad") + ) + (fp_line + (start -0.8 0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "051f4afe-36b9-41dd-abbf-d142f43df004") + ) + (fp_line + (start 0.8 -0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "f42f9ab1-0a1c-4032-a9a2-f176710ce7d9") + ) + (fp_line + (start 0.8 0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "75acdaff-21be-4af2-9309-3886ddc417fe") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "B.Fab") + (uuid "34c62bab-213e-4a6b-87c2-1280314c477b") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + (justify mirror) + ) + ) + (pad "1" smd roundrect + (at -0.9125 0) + (size 0.975 0.95) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.25) + (net 48 "Net-(U4-sense)") + (pintype "passive") + (uuid "9b63ebc5-dc07-4db0-b2ac-3f48fea2f950") + ) + (pad "2" smd roundrect + (at 0.9125 0) + (size 0.975 0.95) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.25) + (net 19 "/Vsen") + (pintype "passive") + (uuid "aa15aadf-a4bd-4740-8667-cd8ea5cc6888") + ) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Diode_SMD:D_SOD-323_HandSoldering" + (layer "B.Cu") + (uuid "69f1e235-1457-4dc4-8a9b-18d4a189378d") + (at 102.85 91.44) + (descr "SOD-323") + (tags "SOD-323") + (property "Reference" "D8" + (at 0.02 -1.778 0) + (layer "B.SilkS") + (uuid "a192e703-3f0c-4b37-9ddc-1250853d6230") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "1N5819" + (at 0.1 -1.9 0) + (layer "B.Fab") + (uuid "b827cd12-d6b7-4aa2-9dd9-edda94e56676") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f712ce5d-e1ec-4046-9dd2-8101d6a7e839") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "aaec6b2c-b003-4de7-b109-8bcd9124534f") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Diode" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "88f80582-d0e0-4e9f-b935-b6cb17054381") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Sim.Device" "D" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "687bda91-7f65-42ee-b8d7-53957bb67d35") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Sim.Pins" "1=K 2=A" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "4c286556-07eb-4774-ac31-f4c2ce72ba4f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (path "/c7dcb330-00fd-4b26-9116-cfce065ece6a") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -2.01 -0.85) + (end 1.25 -0.85) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "a1009574-d80e-422e-8ffe-a2acc7d1474e") + ) + (fp_line + (start -2.01 0.85) + (end -2.01 -0.85) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "a53226c6-e3bf-4290-8d28-11b7127cf773") + ) + (fp_line + (start -2.01 0.85) + (end 1.25 0.85) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "4fceb3bb-05d0-4e17-bedd-7d3b45de57dd") + ) + (fp_line + (start -2 -0.95) + (end 2 -0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "434474e9-58ab-4f5a-ba17-75fa1f55edbf") + ) + (fp_line + (start -2 0.95) + (end -2 -0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "b70c3dc5-6013-446a-9845-5344486f8f0b") + ) + (fp_line + (start -2 0.95) + (end 2 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "3913fc6b-389a-4678-bb25-bcc3efd2ff2a") + ) + (fp_line + (start 2 0.95) + (end 2 -0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "dbdcb7e7-8d77-4e9d-be14-3b21cff6ba80") + ) + (fp_line + (start -0.9 -0.7) + (end -0.9 0.7) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "18f83e03-b569-4812-8a9b-35e29bc16c45") + ) + (fp_line + (start -0.9 0.7) + (end 0.9 0.7) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "7ca9a262-762a-4599-bf01-ec735d2928bb") + ) + (fp_line + (start -0.3 0) + (end -0.5 0) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "fbac3008-debc-4114-a19f-e13a369392ee") + ) + (fp_line + (start -0.3 0) + (end 0.2 0.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "91464acb-0e9d-4fa6-ba42-035f9a2c3113") + ) + (fp_line + (start -0.3 0.35) + (end -0.3 -0.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "cc2f84bf-0851-4048-9e80-207c970e285e") + ) + (fp_line + (start 0.2 -0.35) + (end -0.3 0) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "9c5a4215-23c3-4c57-9aeb-643d39d6b540") + ) + (fp_line + (start 0.2 0) + (end 0.45 0) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "1884bc99-243f-4c36-98bb-9e2b79cb49b3") + ) + (fp_line + (start 0.2 0.35) + (end 0.2 -0.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "abe7e5b3-f408-44ce-916c-399ca34f3147") + ) + (fp_line + (start 0.9 -0.7) + (end -0.9 -0.7) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "48ec4d74-4a21-4dbd-a59a-99ac51d5cd5d") + ) + (fp_line + (start 0.9 0.7) + (end 0.9 -0.7) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "933d327a-5f21-46b9-bfe2-373ac65067ad") + ) + (fp_text user "${REFERENCE}" + (at 0 1.85 0) + (layer "B.Fab") + (uuid "f00f7d74-7f47-4e25-bd95-02390cd715ee") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (pad "1" smd roundrect + (at -1.25 0) + (size 1 1) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.25) + (net 6 "+3V3") + (pinfunction "K") + (pintype "passive") + (uuid "b826b448-8202-4efb-8475-30112a5c39d7") + ) + (pad "2" smd roundrect + (at 1.25 0) + (size 1 1) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.25) + (net 19 "/Vsen") + (pinfunction "A") + (pintype "passive") + (uuid "b5fd153b-6c2e-44de-b825-f822a7163123") + ) + (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (layer "B.Cu") + (uuid "790ff481-68a4-4419-a7e0-1a42aa9f8665") + (at 113.1805 111.506 180) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor handsolder") + (property "Reference" "R24" + (at 0 1.43 0) + (layer "B.SilkS") + (uuid "2258b98f-6b87-4934-a406-01f414455114") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "220" + (at 0 -1.43 0) + (layer "B.Fab") + (uuid "7195054b-f133-4563-b736-d3e89a72a8b3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Footprint" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b47b0279-1ed8-4e52-ac6f-3c85fc1ce898") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0d49053b-67c5-49e8-b5a4-4d3d21787381") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "6321af46-7509-4a36-b383-c7d661edaa31") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/40ff16c9-50c1-4217-b945-227fce8d08eb") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -0.254724 0.5225) + (end 0.254724 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "795fc8ca-76a3-44d8-944e-027ff894d1b9") + ) + (fp_line + (start -0.254724 -0.5225) + (end 0.254724 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "a934ef16-b7f5-4aef-88d6-fc1874bbefd6") + ) + (fp_line + (start 1.65 0.73) + (end 1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "7d5a2102-8fa5-4f59-8746-bfe7f760c0af") + ) + (fp_line + (start 1.65 -0.73) + (end -1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "5400c6e9-505f-448f-bea5-4a5dd0806ace") + ) + (fp_line + (start -1.65 0.73) + (end 1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "786a6e56-b42d-4564-a2bb-23ffd130782c") + ) + (fp_line + (start -1.65 -0.73) + (end -1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "9f9f0754-f55f-4f67-9b06-13982b852339") + ) + (fp_line + (start 0.8 0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "acdd4c28-3047-4018-bc33-e5e52ce1db2c") + ) + (fp_line + (start 0.8 -0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "5be8c315-4f56-40b5-8e72-8eb1bc6b9368") + ) + (fp_line + (start -0.8 0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "88110e7b-c550-44c9-b269-fec4624f6c95") + ) + (fp_line + (start -0.8 -0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "70152b53-45d5-43ab-b846-286881db31cb") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "B.Fab") + (uuid "a1c2a301-c7c0-4b0e-8317-7cd9f3220594") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + (justify mirror) + ) + ) + (pad "1" smd roundrect + (at -0.9125 0 180) + (size 0.975 0.95) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.25) + (net 51 "/R_DOWN") + (pintype "passive") + (uuid "f098143a-8d3d-4388-9aad-8b2d4708b8b2") + ) + (pad "2" smd roundrect + (at 0.9125 0 180) + (size 0.975 0.95) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.25) + (net 42 "Net-(Q5-G)") + (pintype "passive") + (uuid "1446232b-7549-4b02-ab42-b834370cf59c") + ) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Package_TO_SOT_SMD:TO-252-3_TabPin2" + (layer "B.Cu") + (uuid "80b25565-9ad2-42d0-8d7b-991be3323827") + (at 102.322 106.178) + (descr "TO-252/DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-3-1/") + (tags "DPAK TO-252 DPAK-3 TO-252-3 SOT-428") + (property "Reference" "Q4" + (at 5.9582 -0.1076 180) + (layer "B.SilkS") + (uuid "e3f07cc6-5785-444b-a0c6-a7d17888ac15") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "AOD4185" + (at 0 -4.5 0) + (layer "B.Fab") + (uuid "32f36a9b-169e-46c2-8e44-aa72f35a85b5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4da56b67-da17-4297-a290-c882d8a5b3fd") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d64f7fc7-5314-4e65-8a61-3875a1885fe8") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "P-MOSFET transistor, gate/drain/source" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8d73ba30-e201-4c7d-9af3-2ae9895e922a") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/2f757bfd-4ac7-433b-ab5b-f2b0a45a23eb") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -3.31 -3.45) + (end -3.31 -3.18) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "11270586-97f3-4505-9c4e-e867fa45632a") + ) + (fp_line + (start -3.31 -3.18) + (end -4.41 -3.18) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "ba2c2005-3c88-4e30-b79d-2e1b635636be") + ) + (fp_line + (start -3.31 3.18) + (end -6.14 3.18) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "740a9f56-7824-4d76-ad19-fdfa5ca428df") + ) + (fp_line + (start -3.31 3.45) + (end -3.31 3.18) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "aea723a9-9451-4f4d-83bf-17dc1bebd41c") + ) + (fp_line + (start 3.11 -3.45) + (end -3.31 -3.45) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "dde275fb-d6a6-49fa-b7fc-b99c84717fd8") + ) + (fp_line + (start 3.11 3.45) + (end -3.31 3.45) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "c66a3d6e-4bb9-4731-9598-89d753dbd54d") + ) + (fp_line + (start -6.39 -3.5) + (end 4.71 -3.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "bcd166a0-9fc9-458e-99cc-838b6674eccb") + ) + (fp_line + (start -6.39 3.5) + (end -6.39 -3.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "a51f4fc9-b425-464e-afeb-ffddc3582393") + ) + (fp_line + (start 4.71 -3.5) + (end 4.71 3.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "1defe40e-6591-42bf-9ca6-3ac66af71f63") + ) + (fp_line + (start 4.71 3.5) + (end -6.39 3.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "2921052d-c50f-490d-9453-073c39cab8f8") + ) + (fp_line + (start -5.81 -2.655) + (end -3.11 -2.655) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "9a5a79ef-b2c0-46ec-95b3-ebd3902f42a2") + ) + (fp_line + (start -5.81 -1.905) + (end -5.81 -2.655) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "f821a131-07e7-4236-bd32-0a8dc3f9423a") + ) + (fp_line + (start -5.81 -0.375) + (end -3.11 -0.375) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "ad57ed7b-1868-4f20-8743-73388bb31038") + ) + (fp_line + (start -5.81 0.375) + (end -5.81 -0.375) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "9374f0ad-5953-4206-8c67-0eb7beceeebd") + ) + (fp_line + (start -5.81 1.905) + (end -3.11 1.905) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "7ed30fad-5871-4e52-a6d4-812de452821d") + ) + (fp_line + (start -5.81 2.655) + (end -5.81 1.905) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "1620a596-54b3-4cc9-8b2f-4ba248203c93") + ) + (fp_line + (start -3.11 -3.25) + (end -3.11 2.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "b033974e-d77b-4b4f-8a2c-272b3c0baf93") + ) + (fp_line + (start -3.11 -1.905) + (end -5.81 -1.905) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "5a293204-e9b2-4b19-968e-563162a2aaf0") + ) + (fp_line + (start -3.11 0.375) + (end -5.81 0.375) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "3330b14e-8c8d-44b5-a31f-362519fe8022") + ) + (fp_line + (start -3.11 2.25) + (end -2.11 3.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "e77c9f53-3903-4911-8c67-6e6b585092a6") + ) + (fp_line + (start -2.705 2.655) + (end -5.81 2.655) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "2f6edc19-4dd5-4e7a-a2dc-fe568d4e7224") + ) + (fp_line + (start -2.11 3.25) + (end 3.11 3.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "662d0c90-7cb7-4758-b8c9-bac5affecd36") + ) + (fp_line + (start 3.11 -3.25) + (end -3.11 -3.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "79ca459d-ea4e-4781-a540-22920e8c8ff2") + ) + (fp_line + (start 3.11 2.7) + (end 4.11 2.7) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "2c0116b9-c882-4702-851c-2bee88452299") + ) + (fp_line + (start 3.11 3.25) + (end 3.11 -3.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "be411e4f-eb92-41d5-a3d0-516face4a476") + ) + (fp_line + (start 4.11 -2.7) + (end 3.11 -2.7) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "fd8f2e54-1676-4937-b9a5-a4f3591755d1") + ) + (fp_line + (start 4.11 2.7) + (end 4.11 -2.7) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "4ff06d0e-ab1d-46ea-8493-6c062cbd7ff7") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "B.Fab") + (uuid "3f01b942-c565-483a-a78c-40d403f15f13") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (pad "1" smd roundrect + (at -5.04 2.28) + (size 2.2 1.2) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.208333) + (net 41 "Net-(Q4-G)") + (pinfunction "G") + (pintype "input") + (uuid "1606a247-eb00-4d4b-b3d4-d4b315fa5f8c") + ) + (pad "2" smd roundrect + (at -5.04 0) + (size 2.2 1.2) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.208333) + (net 21 "Net-(D11-A)") + (pinfunction "D") + (pintype "passive") + (uuid "475e4443-1bc9-43fd-a013-915803e8d574") + ) + (pad "2" smd roundrect + (at -0.415 -1.525) + (size 3.05 2.75) + (layers "B.Cu" "B.Paste") + (roundrect_rratio 0.090909) + (net 21 "Net-(D11-A)") + (pinfunction "D") + (pintype "passive") + (uuid "7781b014-cccc-41c6-a465-7eaa68550ae8") + ) + (pad "2" smd roundrect + (at -0.415 1.525) + (size 3.05 2.75) + (layers "B.Cu" "B.Paste") + (roundrect_rratio 0.090909) + (net 21 "Net-(D11-A)") + (pinfunction "D") + (pintype "passive") + (uuid "614c4869-2b07-4f51-9c63-1fd486c7df52") + ) + (pad "2" smd roundrect + (at 1.26 0) + (size 6.4 5.8) + (layers "B.Cu" "B.Mask") + (roundrect_rratio 0.043103) + (net 21 "Net-(D11-A)") + (pinfunction "D") + (pintype "passive") + (uuid "b44e33a1-89b0-4cab-9510-fedba35b7961") + ) + (pad "2" smd roundrect + (at 2.935 -1.525) + (size 3.05 2.75) + (layers "B.Cu" "B.Paste") + (roundrect_rratio 0.090909) + (net 21 "Net-(D11-A)") + (pinfunction "D") + (pintype "passive") + (uuid "8de103bd-f00e-4a7e-82b7-e61e203e2b52") + ) + (pad "2" smd roundrect + (at 2.935 1.525) + (size 3.05 2.75) + (layers "B.Cu" "B.Paste") + (roundrect_rratio 0.090909) + (net 21 "Net-(D11-A)") + (pinfunction "D") + (pintype "passive") + (uuid "7bfad46c-0ce5-4e57-8da1-e589579cc023") + ) + (pad "3" smd roundrect + (at -5.04 -2.28) + (size 2.2 1.2) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.208333) + (net 3 "+12V") + (pinfunction "S") + (pintype "passive") + (uuid "b67392d1-8aac-467d-b725-3aad662d2440") + ) + (model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/TO-252-3_TabPin2.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Package_TO_SOT_SMD:SOT-23_Handsoldering" + (layer "B.Cu") + (uuid "8f5e3ac7-307a-4d85-8dd6-bde33e41f963") + (at 102.362 97.258 90) + (descr "SOT-23, Handsoldering") + (tags "SOT-23") + (property "Reference" "U4" + (at -0.024 -2.794 180) + (layer "B.SilkS") + (uuid "7b573e55-433c-4c5b-a674-25ec44f4546d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "ZXCT1009" + (at 0 -2.5 90) + (layer "B.Fab") + (uuid "0bc8ba7b-5553-4328-8022-9e73187e4886") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Footprint" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4d7b469b-25ab-4e55-82ab-238f034dab08") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8d75b783-6e1c-49fa-a773-0c1e582ad8b8") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "High side current sensor 1mA/100mV" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "05492599-afda-44d7-aa8e-24a79b4989a3") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/3671fd88-84f3-4f3a-909e-cde8c8f599fa") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start 0.76 -1.58) + (end -0.7 -1.58) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "d43f8577-8530-4902-8a20-455f7aa7c26c") + ) + (fp_line + (start 0.76 -1.58) + (end 0.76 -0.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "433b5aed-921d-4459-b98e-2127b12018b8") + ) + (fp_line + (start 0.76 1.58) + (end 0.76 0.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "10bce20e-06b2-46a3-9364-26952582297b") + ) + (fp_line + (start 0.76 1.58) + (end -2.4 1.58) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "f53f0d7f-3e1f-4be9-9468-e86e84e0f1e7") + ) + (fp_line + (start 2.7 -1.75) + (end -2.7 -1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "e797a45b-9f74-4ed3-8585-b44e6b6b75a4") + ) + (fp_line + (start -2.7 -1.75) + (end -2.7 1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "982060b7-751c-4a6c-a611-7adb2ec95f23") + ) + (fp_line + (start 2.7 1.75) + (end 2.7 -1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "bf3cc7e0-85cb-4c1e-8569-412ca92554ec") + ) + (fp_line + (start -2.7 1.75) + (end 2.7 1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "e7aef5a3-167f-4273-90c1-8f3d67b2d3e2") + ) + (fp_line + (start -0.7 -1.52) + (end 0.7 -1.52) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "8dd3af56-aeca-45b0-ba38-74b169c8fe01") + ) + (fp_line + (start -0.7 0.95) + (end -0.7 -1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "f8564b58-561d-4ea7-877d-96b4928f882b") + ) + (fp_line + (start -0.7 0.95) + (end -0.15 1.52) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "a40720b8-5acc-4900-a7ee-9490c3fc3caa") + ) + (fp_line + (start 0.7 1.52) + (end 0.7 -1.52) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "8fd90f72-feaf-472f-8d8d-9da89f8d582e") + ) + (fp_line + (start -0.15 1.52) + (end 0.7 1.52) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "82b6904b-f66f-445d-9150-a6db6a3241c6") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "B.Fab") + (uuid "f0a6b4b3-b0d1-4a84-baf5-c924355f4542") + (effects + (font + (size 0.5 0.5) + (thickness 0.075) + ) + (justify mirror) + ) + ) + (pad "1" smd rect + (at -1.5 0.95 90) + (size 1.9 0.8) + (layers "B.Cu" "B.Paste" "B.Mask") + (net 39 "Net-(Q2-S)") + (pinfunction "-") + (pintype "passive") + (uuid "bf7fa157-d458-4c82-bcc8-3b299532d152") + ) + (pad "2" smd rect + (at -1.5 -0.95 90) + (size 1.9 0.8) + (layers "B.Cu" "B.Paste" "B.Mask") + (net 3 "+12V") + (pinfunction "+") + (pintype "passive") + (uuid "c6dbb8c1-3747-40f0-a419-477543d8b0e0") + ) + (pad "3" smd rect + (at 1.5 0 90) + (size 1.9 0.8) + (layers "B.Cu" "B.Paste" "B.Mask") + (net 48 "Net-(U4-sense)") + (pinfunction "sense") + (pintype "passive") + (uuid "7a7c6fe3-8597-47cb-93a7-37d9967d4541") + ) + (model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_1210_3225Metric_Pad1.30x2.65mm_HandSolder" + (layer "B.Cu") + (uuid "977ee666-73c0-435f-b8d3-615247847d18") + (at 83.058 76.734 90) + (descr "Resistor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor handsolder") + (property "Reference" "R21" + (at -3.276 -0.254 180) + (layer "B.SilkS") + (uuid "1f6ccd60-7b1a-494c-bd93-51a800135347") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "120" + (at 0 -2.28 90) + (layer "B.Fab") + (uuid "ffd284b5-8d3b-476e-9beb-49ea63b9b19a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Footprint" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "866bbce9-f1ad-4e04-89fd-d6e0b426bd69") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b51b8431-e9d6-46db-aece-2e795a79516e") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e7ec8fd7-354b-4b28-a825-6d9a90a2fbb5") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/0fa0b0c7-7679-4ad5-959a-2982a59300e4") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -0.723737 -1.355) + (end 0.723737 -1.355) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "32856184-be2a-43bd-b0fb-d0ff48fd27f1") + ) + (fp_line + (start -0.723737 1.355) + (end 0.723737 1.355) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "67b04a2b-a165-48b2-b79e-058b5f16e226") + ) + (fp_line + (start 2.45 -1.58) + (end -2.45 -1.58) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "7937db99-6c0d-4737-af4a-9550df533b59") + ) + (fp_line + (start -2.45 -1.58) + (end -2.45 1.58) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "a124553d-5f5a-402b-9478-bdb098a25373") + ) + (fp_line + (start 2.45 1.58) + (end 2.45 -1.58) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "87bbb67d-7495-4f6e-9c39-be89d0a1a5ca") + ) + (fp_line + (start -2.45 1.58) + (end 2.45 1.58) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "762d0eab-b891-42ae-a5da-89d79e68a5c2") + ) + (fp_line + (start 1.6 -1.245) + (end -1.6 -1.245) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "dd4ca008-a5fc-4876-90a8-dc6d07a355e3") + ) + (fp_line + (start -1.6 -1.245) + (end -1.6 1.245) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "73a9c446-94a2-4522-9310-394280f4aa8e") + ) + (fp_line + (start 1.6 1.245) + (end 1.6 -1.245) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "345f6841-c59f-452d-bb77-ffaf551f7e5f") + ) + (fp_line + (start -1.6 1.245) + (end 1.6 1.245) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "fd715e13-47c3-4bb9-8f82-ab979dad365c") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "B.Fab") + (uuid "b6e7fe05-68ce-4976-9821-95ffb9259607") + (effects + (font + (size 0.8 0.8) + (thickness 0.12) + ) + (justify mirror) + ) + ) + (pad "1" smd roundrect + (at -1.55 0 90) + (size 1.3 2.65) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.192308) + (net 23 "/CANH") + (pintype "passive") + (uuid "ed6fe388-2a43-41af-930a-1e1d8d3677ed") + ) + (pad "2" smd roundrect + (at 1.55 0 90) + (size 1.3 2.65) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.192308) + (net 36 "Net-(JP1-B)") + (pintype "passive") + (uuid "5c39b39f-d6d9-44cd-94e3-90b80d09ed8c") + ) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1210_3225Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Package_TO_SOT_SMD:SOT-23" + (layer "B.Cu") + (uuid "9b5a1503-ded0-4173-b972-3d56377a4698") + (at 78.8185 75.88 180) + (descr "SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py") + (tags "SOT TO_SOT_SMD") + (property "Reference" "D13" + (at 0.0785 -2.606 0) + (layer "B.SilkS") + (uuid "f0990dd6-a211-4e3d-a89f-fd99339318e0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "PESD1CAN" + (at 0 -2.4 0) + (layer "B.Fab") + (uuid "a0eb00a6-ede2-4f6e-a646-df82db1bc968") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Footprint" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "1b8cbd68-7bf7-4ef4-b126-ac9b882086bf") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "cfb43b39-5045-46f7-b93c-db1e350a106d") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "CAN bus ESD protection" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e197a0ac-7fa4-4272-b6c9-37bc4b90a64e") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/7d6e4e39-c56e-426f-8fc3-a264de8848d2") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start 0 1.56) + (end 0.65 1.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "e3123814-f2b5-49a4-bb58-8d163e19acf4") + ) + (fp_line + (start 0 1.56) + (end -1.675 1.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "8a7e434d-2c00-44d5-a4b7-c611c3debfd7") + ) + (fp_line + (start 0 -1.56) + (end 0.65 -1.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "c4679cc3-27f4-4875-b648-b818a96952de") + ) + (fp_line + (start 0 -1.56) + (end -0.65 -1.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "4f16aafb-c28f-4dd6-8fe2-bcb7a8a63cec") + ) + (fp_line + (start 1.92 1.7) + (end -1.92 1.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "5105dbd6-f035-480f-abb7-5b79a29cfa7b") + ) + (fp_line + (start 1.92 -1.7) + (end 1.92 1.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "63a72bd2-87e5-4f43-ad1c-e67fc11ca31e") + ) + (fp_line + (start -1.92 1.7) + (end -1.92 -1.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "40e82111-594d-4e1a-a3f4-cb6e7b708b83") + ) + (fp_line + (start -1.92 -1.7) + (end 1.92 -1.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "a792f453-082a-46c8-8f2d-a4a139c9d8dc") + ) + (fp_line + (start 0.65 1.45) + (end 0.65 -1.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "aa2ce019-53b0-4ba2-a848-ea4fb51ab4f7") + ) + (fp_line + (start 0.65 -1.45) + (end -0.65 -1.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "5695894d-b5f1-432d-8eae-098b19c72996") + ) + (fp_line + (start -0.325 1.45) + (end 0.65 1.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "61d0946f-a0c1-473b-910d-290d60790073") + ) + (fp_line + (start -0.65 1.125) + (end -0.325 1.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "7c40d624-9ea4-46fe-85d3-d93358860e1f") + ) + (fp_line + (start -0.65 -1.45) + (end -0.65 1.125) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "5926e315-7c12-40dd-b12c-0ada244694ff") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "B.Fab") + (uuid "a647d169-cbf9-414b-b92c-34e9848326fc") + (effects + (font + (size 0.32 0.32) + (thickness 0.05) + ) + (justify mirror) + ) + ) + (pad "1" smd roundrect + (at -0.9375 0.95 180) + (size 1.475 0.6) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.25) + (net 22 "/CANL") + (pinfunction "K") + (pintype "passive") + (uuid "8d63fbe0-289e-46c7-8c38-cb4924c60260") + ) + (pad "2" smd roundrect + (at -0.9375 -0.95 180) + (size 1.475 0.6) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.25) + (net 23 "/CANH") + (pinfunction "K") + (pintype "passive") + (uuid "2033e729-cdc9-4c18-8c41-dd19cb2d97d2") + ) + (pad "3" smd roundrect + (at 0.9375 0 180) + (size 1.475 0.6) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pinfunction "O") + (pintype "passive") + (uuid "fddec1e5-1066-4be9-b27d-2f1875357e97") + ) + (model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Package_TO_SOT_SMD:TO-252-3_TabPin2" + (layer "B.Cu") + (uuid "9d632501-8ef3-4eda-98f9-aa9d1f5048ec") + (at 114.514 101.086) + (descr "TO-252/DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-3-1/") + (tags "DPAK TO-252 DPAK-3 TO-252-3 SOT-428") + (property "Reference" "Q2" + (at -0.087 -4.3374 0) + (layer "B.SilkS") + (uuid "06fe757a-658f-46c2-8b71-b1241b0f4561") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "AOD4185" + (at 0 -4.5 0) + (layer "B.Fab") + (uuid "583c2087-ed41-4757-add7-f66289e6a3e7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "1b86045e-4678-4f9b-8402-551b93b4d17a") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a2a420d6-182e-4152-8009-50abefbcf7fe") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "P-MOSFET transistor, gate/drain/source" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f8e53fbe-21ee-4f34-b683-ffd654f2a7e1") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/6d2ea4e2-3322-4cbc-9204-8f00ac7f21c5") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -3.31 -3.45) + (end -3.31 -3.18) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "62ec47a3-e17a-4736-934c-0a0db68f82cb") + ) + (fp_line + (start -3.31 -3.18) + (end -4.41 -3.18) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "de41e6bd-efc5-4dab-b487-a9e6fb449034") + ) + (fp_line + (start -3.31 3.18) + (end -6.14 3.18) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "2ec7012c-d60b-4f94-a39e-fbed44080f83") + ) + (fp_line + (start -3.31 3.45) + (end -3.31 3.18) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "140c365b-1347-4fa7-a34f-1d759e1641a0") + ) + (fp_line + (start 3.11 -3.45) + (end -3.31 -3.45) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "a63acced-f936-4266-ab25-a3bc6e08aa1a") + ) + (fp_line + (start 3.11 3.45) + (end -3.31 3.45) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "d2e4082a-efa3-4b51-9dd8-1a6959ac9e2d") + ) + (fp_line + (start -6.39 -3.5) + (end 4.71 -3.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "3e29f86f-e2b4-4aa7-bf51-32e054ef4255") + ) + (fp_line + (start -6.39 3.5) + (end -6.39 -3.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "50c50c1f-5bd8-4d7a-a97e-4998b17e5d92") + ) + (fp_line + (start 4.71 -3.5) + (end 4.71 3.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "d3ac3ce0-3cae-4ec6-b0b1-b57f81aad0b7") + ) + (fp_line + (start 4.71 3.5) + (end -6.39 3.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "f3e1416f-39a9-47bf-a025-397a907d8883") + ) + (fp_line + (start -5.81 -2.655) + (end -3.11 -2.655) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "8224b10f-f055-451c-8d28-e0d103a8f628") + ) + (fp_line + (start -5.81 -1.905) + (end -5.81 -2.655) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "2f33f79a-a965-47ca-9d7e-221164dc069e") + ) + (fp_line + (start -5.81 -0.375) + (end -3.11 -0.375) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "94e8a1fa-6a57-4a57-b396-6bae78b61a2f") + ) + (fp_line + (start -5.81 0.375) + (end -5.81 -0.375) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "82f4543c-b083-484c-94ea-1511bf632ed3") + ) + (fp_line + (start -5.81 1.905) + (end -3.11 1.905) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "de1c9995-71bf-4a63-a98f-da9cd6a1a525") + ) + (fp_line + (start -5.81 2.655) + (end -5.81 1.905) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "7b2cb063-2e0f-4596-9c7a-6374d26ece56") + ) + (fp_line + (start -3.11 -3.25) + (end -3.11 2.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "908be0db-a3ec-4399-8091-bc8f20267994") + ) + (fp_line + (start -3.11 -1.905) + (end -5.81 -1.905) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "b8259d33-2b87-4f41-acc3-7d212f0559f0") + ) + (fp_line + (start -3.11 0.375) + (end -5.81 0.375) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "1fd4719d-337e-429b-af4a-3db2baf34dc4") + ) + (fp_line + (start -3.11 2.25) + (end -2.11 3.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "dc469ad9-da29-4b97-bc02-c45b19f69e73") + ) + (fp_line + (start -2.705 2.655) + (end -5.81 2.655) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "d6add565-ef3c-4240-99fc-4bba70176202") + ) + (fp_line + (start -2.11 3.25) + (end 3.11 3.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "f682d31e-c1cc-49ac-837d-869cb6b56dff") + ) + (fp_line + (start 3.11 -3.25) + (end -3.11 -3.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "8a966feb-0c62-46f9-92b9-4a9ad3b5869f") + ) + (fp_line + (start 3.11 2.7) + (end 4.11 2.7) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "abc4f215-6edb-497b-989b-c6dfff2d9040") + ) + (fp_line + (start 3.11 3.25) + (end 3.11 -3.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "5f330beb-caec-4a77-905c-087a65419aa9") + ) + (fp_line + (start 4.11 -2.7) + (end 3.11 -2.7) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "00af6729-bc87-4f89-9861-ae2e4acbc648") + ) + (fp_line + (start 4.11 2.7) + (end 4.11 -2.7) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "caa79f15-6115-4e3c-af5f-fa50b659b20a") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "B.Fab") + (uuid "2cf802ec-94ba-4ac2-b344-e378c12f837b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (pad "1" smd roundrect + (at -5.04 2.28) + (size 2.2 1.2) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.208333) + (net 38 "Net-(Q1-D)") + (pinfunction "G") + (pintype "input") + (uuid "a15ef6ae-2401-4d84-9d5f-89b6d4e9be1d") + ) + (pad "2" smd roundrect + (at -5.04 0) + (size 2.2 1.2) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.208333) + (net 20 "Net-(D10-A)") + (pinfunction "D") + (pintype "passive") + (uuid "dc61924c-49dc-4bf7-ab1a-5cc641dfa9e3") + ) + (pad "2" smd roundrect + (at -0.415 -1.525) + (size 3.05 2.75) + (layers "B.Cu" "B.Paste") + (roundrect_rratio 0.090909) + (net 20 "Net-(D10-A)") + (pinfunction "D") + (pintype "passive") + (uuid "77883f08-0096-4f82-808c-64c318e88d89") + ) + (pad "2" smd roundrect + (at -0.415 1.525) + (size 3.05 2.75) + (layers "B.Cu" "B.Paste") + (roundrect_rratio 0.090909) + (net 20 "Net-(D10-A)") + (pinfunction "D") + (pintype "passive") + (uuid "464db352-0462-4d41-802d-5758b4ae4721") + ) + (pad "2" smd roundrect + (at 1.26 0) + (size 6.4 5.8) + (layers "B.Cu" "B.Mask") + (roundrect_rratio 0.043103) + (net 20 "Net-(D10-A)") + (pinfunction "D") + (pintype "passive") + (uuid "ac058344-8142-4b84-89ca-d0e526e3d87a") + ) + (pad "2" smd roundrect + (at 2.935 -1.525) + (size 3.05 2.75) + (layers "B.Cu" "B.Paste") + (roundrect_rratio 0.090909) + (net 20 "Net-(D10-A)") + (pinfunction "D") + (pintype "passive") + (uuid "0288d2f5-d278-4319-87aa-747802c55413") + ) + (pad "2" smd roundrect + (at 2.935 1.525) + (size 3.05 2.75) + (layers "B.Cu" "B.Paste") + (roundrect_rratio 0.090909) + (net 20 "Net-(D10-A)") + (pinfunction "D") + (pintype "passive") + (uuid "2293294c-bee5-4271-bc1a-46b3f4a14e87") + ) + (pad "3" smd roundrect + (at -5.04 -2.28) + (size 2.2 1.2) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.208333) + (net 39 "Net-(Q2-S)") + (pinfunction "S") + (pintype "passive") + (uuid "507ef19b-3f87-4ecc-b29b-e14926f0eae0") + ) + (model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/TO-252-3_TabPin2.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (layer "B.Cu") + (uuid "9e4a24c3-ce3e-4f94-8634-3c6f1a5f8528") + (at 105.9434 101.6 180) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor handsolder") + (property "Reference" "R17" + (at 3.1242 0.508 0) + (layer "B.SilkS") + (uuid "2f226e82-c6a4-4f86-ab47-d787e2aeebd6") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "10k" + (at 0 -1.43 0) + (layer "B.Fab") + (uuid "af93e03c-387e-4244-8750-a3d5d69890c5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Footprint" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b5c52094-1bc2-4c88-ad15-a6f7e9c76a83") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "1a04068e-aa10-4fe1-a00f-b3b76f394a99") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b069eb86-12aa-443c-ab92-f71182022a28") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/b132ecea-804a-4016-9b77-f44b4264042d") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -0.254724 0.5225) + (end 0.254724 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "a981a40e-6c90-452d-93f2-f4a2fcf24867") + ) + (fp_line + (start -0.254724 -0.5225) + (end 0.254724 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "a9fdcef4-7307-4ef4-a383-db97210b965d") + ) + (fp_line + (start 1.65 0.73) + (end 1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "5aeeaa85-9b3f-4f46-a022-02d5ec52bb10") + ) + (fp_line + (start 1.65 -0.73) + (end -1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "7651e26d-426b-4133-8bcf-b9e20402d733") + ) + (fp_line + (start -1.65 0.73) + (end 1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "0a56e36b-163f-4152-824a-c5a531943248") + ) + (fp_line + (start -1.65 -0.73) + (end -1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "4d70f048-b730-4b5a-8e8c-807a9e6642d1") + ) + (fp_line + (start 0.8 0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "034afde8-0ebd-4d0a-92aa-fcdbf13ce296") + ) + (fp_line + (start 0.8 -0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "55393cb4-c14b-476d-b851-d83afe25c62f") + ) + (fp_line + (start -0.8 0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "d065369b-c386-44a9-9e4f-16d91719c3d9") + ) + (fp_line + (start -0.8 -0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "9ca82e2c-cc3d-40fa-b856-23adb1f5f312") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "B.Fab") + (uuid "289529e3-7613-47bc-908d-b78c81213662") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + (justify mirror) + ) + ) + (pad "1" smd roundrect + (at -0.9125 0 180) + (size 0.975 0.95) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.25) + (net 38 "Net-(Q1-D)") + (pintype "passive") + (uuid "a2284dce-c365-486f-8be2-f2bc004b3887") + ) + (pad "2" smd roundrect + (at 0.9125 0 180) + (size 0.975 0.95) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.25) + (net 3 "+12V") + (pintype "passive") + (uuid "667b098f-09ce-460f-91b9-cf2057649146") + ) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (layer "B.Cu") + (uuid "b08b6bd1-5ac5-4b61-88d8-e0da354951cf") + (at 94.3356 104.7985 90) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor handsolder") + (property "Reference" "R23" + (at 2.3603 0 180) + (layer "B.SilkS") + (uuid "a5f852d9-65ba-47c0-9330-c2b0180cd97d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "10k" + (at -0.1035 -0.254 90) + (layer "B.Fab") + (uuid "adf9445d-c5d2-4bb6-a88d-d028e7bdbcd8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Footprint" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f2bbe1cc-8807-4f1c-8940-39d11a8c77e8") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "832d9e60-c78d-4ce7-824a-69fc793ad47e") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a695f686-1975-4cd4-a030-5a8434fd2407") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/ab89a8c7-b04a-4797-a8da-da67b1836164") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -0.254724 -0.5225) + (end 0.254724 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "103a6ff6-b6d4-427c-9d30-6bf5c116d174") + ) + (fp_line + (start -0.254724 0.5225) + (end 0.254724 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "205610e3-3716-4441-b20b-518cb4e3ebea") + ) + (fp_line + (start 1.65 -0.73) + (end -1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "79fb19bc-9325-43e0-84da-b468d3dac018") + ) + (fp_line + (start -1.65 -0.73) + (end -1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "976b91f6-f6d6-4c5e-9558-aee62e36c5d0") + ) + (fp_line + (start 1.65 0.73) + (end 1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "ce212016-152d-4507-8a3f-bb925b1caa3d") + ) + (fp_line + (start -1.65 0.73) + (end 1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "5d0063ff-90ff-4c6f-9f85-1c711df22a27") + ) + (fp_line + (start 0.8 -0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "7662e922-3341-45a3-a40e-ef05ee43b8f4") + ) + (fp_line + (start -0.8 -0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "da59ce84-2aa0-4acd-af80-8069b84954d3") + ) + (fp_line + (start 0.8 0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "4dff6ff7-e4d2-4d28-a161-b6928723d6ef") + ) + (fp_line + (start -0.8 0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "b3bc0d1d-8b0a-40e5-b96a-da80e043c3af") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "B.Fab") + (uuid "04b36152-43a0-4338-9be9-2d4b831bc960") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + (justify mirror) + ) + ) + (pad "1" smd roundrect + (at -0.9125 0 90) + (size 0.975 0.95) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.25) + (net 41 "Net-(Q4-G)") + (pintype "passive") + (uuid "561947f8-c220-4985-9bad-4dad352a6c32") + ) + (pad "2" smd roundrect + (at 0.9125 0 90) + (size 0.975 0.95) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.25) + (net 3 "+12V") + (pintype "passive") + (uuid "d15557ca-365d-4f5c-97ce-439030606939") + ) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Diode_SMD:D_SMA_Handsoldering" + (layer "B.Cu") + (uuid "bd3da3fb-099e-41a4-af47-8a1d9b993ec8") + (at 96.012 115.022 -90) + (descr "Diode SMA (DO-214AC) Handsoldering") + (tags "Diode SMA (DO-214AC) Handsoldering") + (property "Reference" "D12" + (at 5.374 -0.254 180) + (layer "B.SilkS") + (uuid "e8b33097-3617-4a9d-bce1-83832e348bc3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "1N4007" + (at 0 -2.6 90) + (layer "B.Fab") + (uuid "6e5ad49f-74c4-431d-b5c8-d8eb9e76c679") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Footprint" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "23c5e2e2-36ee-4822-8ebb-db4652881c80") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "aff12332-eaf9-4a20-843e-9dad31fd27a6") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Diode" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f00a0945-50a3-43b1-830b-df8178865957") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Sim.Device" "D" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "789830b0-c6e2-4be0-a765-1bb963388300") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Sim.Pins" "1=K 2=A" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "77da538d-4856-4fab-9c88-a6442c156094") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (path "/5d0ed76a-29be-4a04-94ee-7e2065dbfdf7") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -4.51 1.65) + (end 2.5 1.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "3c1a32ea-fa42-4e40-8486-cd18355d975a") + ) + (fp_line + (start -4.51 1.65) + (end -4.51 -1.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "7a80db34-d847-473c-a9cd-f6ff36f7cb47") + ) + (fp_line + (start -4.51 -1.65) + (end 2.5 -1.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "cc7234c0-aac9-4ea5-ba67-5e7f6115df0f") + ) + (fp_line + (start -4.5 1.75) + (end 4.5 1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "2d9bff60-2899-47cb-8329-91e1b0a000a8") + ) + (fp_line + (start 4.5 1.75) + (end 4.5 -1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "06ab00b0-1aa7-4bee-b23f-c7cf31c1e7cb") + ) + (fp_line + (start -4.5 -1.75) + (end -4.5 1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "7551958c-3c1e-4f7e-8708-d89e1d2752b4") + ) + (fp_line + (start 4.5 -1.75) + (end -4.5 -1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "fec4706a-2342-451f-b902-1f96b6fbf05b") + ) + (fp_line + (start 2.3 1.5) + (end -2.3 1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "79b3e27c-ddfb-4f50-972b-9bbf419d65d0") + ) + (fp_line + (start 2.3 1.5) + (end 2.3 -1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "14cbc266-bf0c-426a-88f9-ce326a086254") + ) + (fp_line + (start -0.64944 0.79908) + (end -0.64944 -0.80112) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "b9c64960-b818-486d-b6c7-fe353649371f") + ) + (fp_line + (start -0.64944 -0.00102) + (end 0.50118 0.79908) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "cf786869-f08e-44c0-9221-65a9c4e37f1b") + ) + (fp_line + (start -0.64944 -0.00102) + (end -1.55114 -0.00102) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "644dd39e-1975-4327-8a1c-9a0c5357e32d") + ) + (fp_line + (start -0.64944 -0.00102) + (end 0.50118 -0.75032) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "f3dec44e-ba3c-461f-a8b9-c37ab22649fb") + ) + (fp_line + (start 0.50118 -0.00102) + (end 1.4994 -0.00102) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "19c51945-4b68-4efc-a9aa-c1c3e83512b5") + ) + (fp_line + (start 0.50118 -0.75032) + (end 0.50118 0.79908) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "e58b3e69-2552-428d-84b3-3cc8f6adb554") + ) + (fp_line + (start -2.3 -1.5) + (end -2.3 1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "c16b6e29-b853-4d1b-addc-48e4f01ce9d0") + ) + (fp_line + (start 2.3 -1.5) + (end -2.3 -1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "943bee36-22fe-4bd4-be8f-28b6014028bd") + ) + (fp_text user "${REFERENCE}" + (at 0 2.5 90) + (layer "B.Fab") + (uuid "a7fe8db7-b87c-4cc1-b910-1ea39d53eeb3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (pad "1" smd roundrect + (at -2.5 0 270) + (size 3.5 1.8) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.1388888889) + (net 21 "Net-(D11-A)") + (pinfunction "K") + (pintype "passive") + (uuid "15c146a7-e4e7-402a-acdf-537105287d47") + ) + (pad "2" smd roundrect + (at 2.5 0 270) + (size 3.5 1.8) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.1388888889) + (net 2 "GND") + (pinfunction "A") + (pintype "passive") + (uuid "e12c592c-54f2-4a00-ac30-fc01aa42eea6") + ) + (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (layer "B.Cu") + (uuid "c0ff5c41-2474-45b0-af6a-4a1502e5198a") + (at 106.2755 95.758) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor handsolder") + (property "Reference" "R15" + (at 1.8523 -1.4732 0) + (layer "B.SilkS") + (uuid "4aec99f9-5d68-436d-9901-01e693af8d31") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "100" + (at 0 -1.43 0) + (layer "B.Fab") + (uuid "b8be6fa0-c1fa-408b-a306-5154d772d3cd") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ecb02394-7f27-448e-9467-8ef8a1bbedc8") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c17df583-e668-4aeb-beff-f60bec5fa7b5") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "cbd7195a-78b2-4e51-98cb-042b90e62bbc") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/af43825a-4cd6-463e-ba5c-53cfcfa975cb") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -0.254724 -0.5225) + (end 0.254724 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "3409932f-18d7-45a8-a1c9-229c00345791") + ) + (fp_line + (start -0.254724 0.5225) + (end 0.254724 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "d8737d63-222d-4217-8da6-203d75be56a2") + ) + (fp_line + (start -1.65 -0.73) + (end -1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "ab5807e9-9119-4788-9665-5f845d7d85ec") + ) + (fp_line + (start -1.65 0.73) + (end 1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "6f2a598f-e3d6-4504-afdc-2e6612afe027") + ) + (fp_line + (start 1.65 -0.73) + (end -1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "b380af91-9fec-49ae-8c19-4176a7185f83") + ) + (fp_line + (start 1.65 0.73) + (end 1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "cffc17ba-00d6-44cb-b75c-588e11de19db") + ) + (fp_line + (start -0.8 -0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "e74f1e39-622b-4ec2-babc-023db272a7f9") + ) + (fp_line + (start -0.8 0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "9868df3a-8db8-4cb3-b635-e5fbf734b3f6") + ) + (fp_line + (start 0.8 -0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "2a36c764-c908-4900-979b-b317ccdfbfcc") + ) + (fp_line + (start 0.8 0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "2b06b079-4de3-40bd-9c54-f805f98a19e0") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "B.Fab") + (uuid "c5235afb-74ed-4162-b764-0622f8d299e2") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + (justify mirror) + ) + ) + (pad "1" smd roundrect + (at -0.9125 0) + (size 0.975 0.95) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.25) + (net 48 "Net-(U4-sense)") + (pintype "passive") + (uuid "622b5e5a-9e22-49b3-a120-a55961c06ec1") + ) + (pad "2" smd roundrect + (at 0.9125 0) + (size 0.975 0.95) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "075bbc62-b771-498d-89f3-31e0a2cf0813") + ) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" + (layer "B.Cu") + (uuid "dc37e0ca-9e3f-4b2b-8845-3526a73c9c9e") + (at 88.3797 96.139 180) + (descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (property "Reference" "C2" + (at 0 1.85 0) + (layer "B.SilkS") + (uuid "e5629f75-3d78-4efe-8230-49b35e0e07b1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "10u" + (at 0 -1.85 0) + (layer "B.Fab") + (uuid "c4dd1082-d8cf-4422-9c48-27f49aa98d1c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Footprint" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b8fe7314-3637-4184-adf6-9f9163c0338b") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3f543703-1acc-40bb-af51-c0f65963060d") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ed8ba557-d3f4-43a6-ac6e-a546d5650f9d") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/d3f87295-91a4-48f0-b1d7-f08b2ab4b533") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -0.711252 0.91) + (end 0.711252 0.91) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "4ab51e9c-1c11-4de1-9926-8b8b95c93574") + ) + (fp_line + (start -0.711252 -0.91) + (end 0.711252 -0.91) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "e5d9c47d-c9a3-4591-8917-20bc0d45f3cc") + ) + (fp_line + (start 2.48 1.15) + (end 2.48 -1.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "7724d03a-d9cb-40a8-aba7-332e8c091f45") + ) + (fp_line + (start 2.48 -1.15) + (end -2.48 -1.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "23bbf712-04cf-477e-af8f-50a214d90fb5") + ) + (fp_line + (start -2.48 1.15) + (end 2.48 1.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "4da1b58b-ab0d-40cc-974e-92dad9234dc6") + ) + (fp_line + (start -2.48 -1.15) + (end -2.48 1.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "1d788159-f6de-494c-a192-5b9b19141446") + ) + (fp_line + (start 1.6 0.8) + (end 1.6 -0.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "b63f259a-0d4d-4e04-a02f-20e1f9c6fff0") + ) + (fp_line + (start 1.6 -0.8) + (end -1.6 -0.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "015021f3-0b59-4dd2-8554-f3b28dab487b") + ) + (fp_line + (start -1.6 0.8) + (end 1.6 0.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "d2322ea9-380c-4c7d-a54a-af20a748cc7c") + ) + (fp_line + (start -1.6 -0.8) + (end -1.6 0.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "cd8d550f-49bd-474e-9931-dadecd502118") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "B.Fab") + (uuid "acfc5b25-6718-4bef-87cb-1128a5749ee3") + (effects + (font + (size 0.8 0.8) + (thickness 0.12) + ) + (justify mirror) + ) + ) + (pad "1" smd roundrect + (at -1.5625 0 180) + (size 1.325 1.8) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.188679) + (net 2 "GND") + (pintype "passive") + (uuid "670eff70-db90-4f41-8208-27c3eb43e3e0") + ) + (pad "2" smd roundrect + (at 1.5625 0 180) + (size 1.325 1.8) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.188679) + (net 3 "+12V") + (pintype "passive") + (uuid "66ceda6c-1f9e-4022-905f-fdf5430412f8") + ) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Jumper:SolderJumper-2_P1.3mm_Open_TrianglePad1.0x1.5mm" + (layer "B.Cu") + (uuid "e4c71ed4-9333-4c5f-9bd5-3ce8a1022bba") + (at 82.333 72.644) + (descr "SMD Solder Jumper, 1x1.5mm Triangular Pads, 0.3mm gap, open") + (tags "solder jumper open") + (property "Reference" "JP1" + (at 0 1.8 0) + (layer "B.SilkS") + (hide yes) + (uuid "f87d6be7-a885-4dbe-97e9-d0c633246132") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "Term" + (at 3.519 -0.254 180) + (layer "B.SilkS") + (uuid "111aa337-aa2b-4d5b-9abc-e5b96758556b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9a23fda7-e65f-4668-95b0-6639e16fe3de") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4f170ebc-deb6-4752-9e3b-d8765a7a2687") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Solder Jumper, 2-pole, open" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f6994cf8-3851-4f46-a751-5bc60721a4cf") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/19703c99-93cd-42bd-a514-95881437d720") + (sheetfile "windshield.kicad_sch") + (attr exclude_from_pos_files) + (fp_line + (start -1.4 -1) + (end -1.4 1) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "d97a0133-7a30-4754-be86-330365832d7c") + ) + (fp_line + (start -1.4 1) + (end 1.4 1) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "6dd4b1b2-51d6-4c89-9576-c0e6f29b05aa") + ) + (fp_line + (start 1.4 -1) + (end -1.4 -1) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "2a9c7554-662d-4fc8-bf27-e4406b4f6c67") + ) + (fp_line + (start 1.4 1) + (end 1.4 -1) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "6063e0c1-f0ba-4a85-bbe9-04ed48c17a26") + ) + (fp_line + (start -1.65 1.25) + (end -1.65 -1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "5fc88b26-21cb-481f-a5e0-c0fdabe5487e") + ) + (fp_line + (start -1.65 1.25) + (end 1.65 1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "0322f20f-b062-4c00-b073-64209ce275bd") + ) + (fp_line + (start 1.65 -1.25) + (end -1.65 -1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "2f8fcaa9-c4fb-4516-a235-c80c432e1d78") + ) + (fp_line + (start 1.65 -1.25) + (end 1.65 1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "8172d464-8955-4d22-a2e4-2216c13ef03a") + ) + (pad "1" smd custom + (at -0.725 0) + (size 0.3 0.3) + (layers "B.Cu" "B.Mask") + (net 22 "/CANL") + (pinfunction "A") + (pintype "passive") + (zone_connect 2) + (thermal_bridge_angle 45) + (options + (clearance outline) + (anchor rect) + ) + (primitives + (gr_poly + (pts + (xy 1 0) (xy 0.5 -0.75) (xy -0.5 -0.75) (xy -0.5 0.75) (xy 0.5 0.75) + ) + (width 0) + (fill yes) + ) + ) + (uuid "21c0f77d-1515-4e08-bbc9-6ca29be19c0a") + ) + (pad "2" smd custom + (at 0.725 0) + (size 0.3 0.3) + (layers "B.Cu" "B.Mask") + (net 36 "Net-(JP1-B)") + (pinfunction "B") + (pintype "passive") + (zone_connect 2) + (thermal_bridge_angle 45) + (options + (clearance outline) + (anchor rect) + ) + (primitives + (gr_poly + (pts + (xy 0.5 -0.75) (xy -0.65 -0.75) (xy -0.15 0) (xy -0.65 0.75) (xy 0.5 0.75) + ) + (width 0) + (fill yes) + ) + ) + (uuid "fdead4d1-654b-4dcc-b100-40c92f631be7") + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (layer "B.Cu") + (uuid "f56849ee-6fc1-4623-b112-51691512faf6") + (at 128.4205 94.742 180) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor handsolder") + (property "Reference" "R19" + (at -3.1515 0 180) + (layer "B.SilkS") + (uuid "859b0de0-6dc6-430f-b6fb-3c9fb5526195") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "10k" + (at 0 -1.43 0) + (layer "B.Fab") + (uuid "9b2c7917-800d-4ebc-9f26-1bc920b1cab8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Footprint" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "bc2cf683-92ff-45be-8e95-549a26294db6") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a62da956-00b0-4dde-a60a-1682a7e61f05") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "6bd2b6fc-d89f-4a12-bd73-d5d21fa07543") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/2f12e7c2-219f-416a-bbee-2bbdd41dfc34") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -0.254724 0.5225) + (end 0.254724 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "3df66015-1107-4c69-9683-d917e29313f6") + ) + (fp_line + (start -0.254724 -0.5225) + (end 0.254724 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "05bd24c6-ddd6-451e-ba17-ff68a25caa60") + ) + (fp_line + (start 1.65 0.73) + (end 1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "eb04c87d-c973-4f6d-95d8-d0d5f6ef9586") + ) + (fp_line + (start 1.65 -0.73) + (end -1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "edd6a72f-3a37-4680-b0f6-3bae4b1ad1a3") + ) + (fp_line + (start -1.65 0.73) + (end 1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "669fc6e6-8a70-4d0a-b51f-84858bc37fa0") + ) + (fp_line + (start -1.65 -0.73) + (end -1.65 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "6fa44ad6-a668-4ed5-982c-db75af0a3829") + ) + (fp_line + (start 0.8 0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "21ebb8bb-5ff7-4e58-8154-bf349acdf054") + ) + (fp_line + (start 0.8 -0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "467b903a-80e8-435d-9a4b-5430996393b8") + ) + (fp_line + (start -0.8 0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "66706280-f878-413e-b150-8304718bf246") + ) + (fp_line + (start -0.8 -0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "53206d51-3f7c-4e79-b4e2-eb40bef37d4a") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "B.Fab") + (uuid "f5b969e4-8c70-4d1c-a980-105e37d68fea") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + (justify mirror) + ) + ) + (pad "1" smd roundrect + (at -0.9125 0 180) + (size 0.975 0.95) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "bdbaea73-d50a-4759-9927-19dfb931e2f8") + ) + (pad "2" smd roundrect + (at 0.9125 0 180) + (size 0.975 0.95) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.25) + (net 50 "/L_DOWN") + (pintype "passive") + (uuid "a19c6984-82f8-446c-a35f-875ee623e354") + ) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Diode_SMD:D_SMA_Handsoldering" + (layer "B.Cu") + (uuid "f6900607-1b76-4236-bbac-f29889c2f660") + (at 91.948 115.022 90) + (descr "Diode SMA (DO-214AC) Handsoldering") + (tags "Diode SMA (DO-214AC) Handsoldering") + (property "Reference" "D11" + (at -5.3994 0.0254 180) + (layer "B.SilkS") + (uuid "54693335-d54b-4d9e-882c-aef0dcf94907") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "1N4007" + (at 0 -2.6 90) + (layer "B.Fab") + (uuid "0c3d057f-8fec-441b-8fbc-a7b1d986090f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Footprint" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "566ceca2-45f9-4ccf-9329-f08cd44e08b2") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "1bb357db-4ce2-441e-827f-6f6bc7c2f538") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Diode" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "30fcd5a8-6ba9-43ed-bee4-30d15c600943") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Sim.Device" "D" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "1507ab09-23ea-4272-a4e4-9d8ac4e42dfb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Sim.Pins" "1=K 2=A" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "bc98debe-189d-4fd7-a914-a132855dcf02") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (path "/c899a0e9-ef4c-40c2-93f7-5ac59aaf87c6") + (sheetfile "windshield.kicad_sch") + (attr smd) + (fp_line + (start -4.51 -1.65) + (end 2.5 -1.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "e3d3c8c7-4d49-4aa8-b9db-c9039dae6beb") + ) + (fp_line + (start -4.51 1.65) + (end -4.51 -1.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "c82d08e9-cbcc-4c7f-9196-7a3fe9ca52ed") + ) + (fp_line + (start -4.51 1.65) + (end 2.5 1.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "f8b4943d-68ca-4227-b042-39b47f6cf521") + ) + (fp_line + (start 4.5 -1.75) + (end -4.5 -1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "6552807e-5982-41ff-bf5d-c1cea19beb18") + ) + (fp_line + (start -4.5 -1.75) + (end -4.5 1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "c0d485dc-a2bd-43a4-9eb7-75a17258741d") + ) + (fp_line + (start 4.5 1.75) + (end 4.5 -1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "0d7902c3-0bfd-443c-b0ea-ff20552c0f31") + ) + (fp_line + (start -4.5 1.75) + (end 4.5 1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "7f89555d-ff80-4c3a-9cd7-6513474194cb") + ) + (fp_line + (start 2.3 -1.5) + (end -2.3 -1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "eaf2db51-253b-4b89-958d-965c465bc58e") + ) + (fp_line + (start -2.3 -1.5) + (end -2.3 1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "2b9cf69d-e35b-4003-9400-f28974597282") + ) + (fp_line + (start 0.50118 -0.75032) + (end 0.50118 0.79908) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "e83d43a1-d0c5-45df-94d9-8e51274affb4") + ) + (fp_line + (start 0.50118 -0.00102) + (end 1.4994 -0.00102) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "6cb28784-d113-45c8-9e77-b0ad6a53ed3a") + ) + (fp_line + (start -0.64944 -0.00102) + (end 0.50118 -0.75032) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "897eb76b-7c5a-4918-bfd7-04384eb5e9fa") + ) + (fp_line + (start -0.64944 -0.00102) + (end -1.55114 -0.00102) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "0721108a-e056-47eb-9e27-59e148df1584") + ) + (fp_line + (start -0.64944 -0.00102) + (end 0.50118 0.79908) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "a923bf76-30d0-4269-ad80-6a4562cbb2b0") + ) + (fp_line + (start -0.64944 0.79908) + (end -0.64944 -0.80112) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "1e31f5fb-2bb7-4a56-a860-4d82cd0611e8") + ) + (fp_line + (start 2.3 1.5) + (end 2.3 -1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "eded2051-e434-4207-a19d-077f972e5257") + ) + (fp_line + (start 2.3 1.5) + (end -2.3 1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "83c6ae2d-1d6a-4fe6-9e8d-adae4d24e79d") + ) + (fp_text user "${REFERENCE}" + (at 0 2.5 90) + (layer "B.Fab") + (uuid "331d3af9-d1f6-4587-8334-c40befd84cbd") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (pad "1" smd roundrect + (at -2.5 0 90) + (size 3.5 1.8) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.1388888889) + (net 3 "+12V") + (pinfunction "K") + (pintype "passive") + (uuid "fcb99350-f272-4917-81d3-02c2f17ace11") + ) + (pad "2" smd roundrect + (at 2.5 0 90) + (size 3.5 1.8) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.1388888889) + (net 21 "Net-(D11-A)") + (pinfunction "A") + (pintype "passive") + (uuid "25fe4fb7-50a7-4b67-839b-cc8bc19393c9") + ) + (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (gr_rect + (start 70.5 70.5) + (end 136.5 124.5) + (stroke + (width 0.1) + (type default) + ) + (fill none) + (layer "Edge.Cuts") + (uuid "d0e5046d-1956-4cb9-a297-f4bb848db438") + ) + (gr_text "-\n+" + (at 133.604 116.4082 0) + (layer "F.SilkS") + (uuid "04bf7282-9a75-4a3e-b148-6e9cf53e1079") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify left bottom) + ) + ) + (gr_text "Tx Rx Gnd" + (at 117.9322 86.0298 0) + (layer "F.SilkS") + (uuid "1633eac5-1a17-42d5-8efa-5338c753061e") + (effects + (font + (size 1 1) + (thickness 0.2) + (bold yes) + ) + (justify left bottom) + ) + ) + (gr_text "-\nUP" + (at 113.538 119.3546 0) + (layer "F.SilkS") + (uuid "7e8da2b7-9138-40aa-a2e6-caccdbbe1d31") + (effects + (font + (size 1.5 1.5) + (thickness 0.15) + ) + (justify left bottom) + ) + ) + (gr_text "+12V\nHot@On\nGnd" + (at 73.2282 119.0498 0) + (layer "F.SilkS") + (uuid "a3aeeeb9-6a0c-44c4-82bb-5ad7c646b3db") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify left bottom) + ) + ) + (gr_text "NRST\nBoot0\n3v3\nGnd\nSWDIO\nSWCLK" + (at 114.7064 74.0918 90) + (layer "F.SilkS") + (uuid "a660a47c-5921-4b98-a1a9-7da1dd42d39b") + (effects + (font + (size 0.8 0.8) + (thickness 0.15) + ) + (justify right bottom) + ) + ) + (gr_text "3.3\nUp\nDwn\nGnd" + (at 133.1214 80.01 0) + (layer "F.SilkS") + (uuid "a7b593d3-0976-47c6-b847-b617669f5b52") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify left bottom) + ) + ) + (gr_text "UP" + (at 131.3688 115.5954 0) + (layer "F.SilkS") + (uuid "b5a1cfb9-6a08-477b-9649-d8cdac5dddfa") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify left bottom) + ) + ) + (gr_text "Dwn\nUp\nGnd" + (at 132.8928 89.0016 0) + (layer "F.SilkS") + (uuid "b60408b1-0df3-48c0-9afc-620d8dbc294a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify left bottom) + ) + ) + (gr_text "CANL\nCANH" + (at 76.454 77.47 0) + (layer "F.SilkS") + (uuid "b6e59aa7-b4a0-401a-acf0-145d25220115") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify left bottom) + ) + ) + (gr_text "+\nUP" + (at 129.2098 119.7102 0) + (layer "F.SilkS") + (uuid "e320626d-489b-46c6-b78c-7fabe8fd904e") + (effects + (font + (size 1.5 1.5) + (thickness 0.15) + ) + (justify bottom) + ) + ) + (dimension + (type aligned) + (layer "Dwgs.User") + (uuid "0f320e78-2e32-41f6-9a9e-e510dc8acf63") + (pts + (xy 70.5 70.5) (xy 136.5 70.5) + ) + (height -2.5) + (gr_text "66.0000 mm" + (at 103.5 66.85 0) + (layer "Dwgs.User") + (uuid "0f320e78-2e32-41f6-9a9e-e510dc8acf63") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (format + (prefix "") + (suffix "") + (units 3) + (units_format 1) + (precision 4) + ) + (style + (thickness 0.15) + (arrow_length 1.27) + (text_position_mode 0) + (extension_height 0.58642) + (extension_offset 0.5) keep_text_aligned) + ) + (dimension + (type aligned) + (layer "Dwgs.User") + (uuid "5e2956a3-0593-4e7f-82b7-59a7ffe40e9c") + (pts + (xy 136.5 70.5) (xy 136.5 124.5) + ) + (height -3.5) + (gr_text "54.0000 mm" + (at 138.85 97.5 90) + (layer "Dwgs.User") + (uuid "5e2956a3-0593-4e7f-82b7-59a7ffe40e9c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (format + (prefix "") + (suffix "") + (units 3) + (units_format 1) + (precision 4) + ) + (style + (thickness 0.15) + (arrow_length 1.27) + (text_position_mode 0) + (extension_height 0.58642) + (extension_offset 0.5) keep_text_aligned) + ) + (segment + (start 83.9716 84.9876) + (end 83.9716 83.4144) + (width 0.5) + (layer "F.Cu") + (net 1) + (uuid "03a8ff27-6bd6-4918-96a6-fe6dcc2c9982") + ) + (segment + (start 83.9716 93.2942) + (end 81.7118 93.2942) + (width 0.5) + (layer "F.Cu") + (net 1) + (uuid "0bdc4c2e-f969-4e88-9515-94bffc97a2af") + ) + (segment + (start 85.852 81.026) + (end 85.852 82.804) + (width 0.5) + (layer "F.Cu") + (net 1) + (uuid "0e664727-e8a4-4db3-ae88-625ee4c0391f") + ) + (segment + (start 100.5332 78.9178) + (end 99.187 80.264) + (width 0.5) + (layer "F.Cu") + (net 1) + (uuid "13a5a6f4-e0fd-4fc4-a728-81153fcedd1b") + ) + (segment + (start 85.852 82.804) + (end 87.575 82.804) + (width 0.5) + (layer "F.Cu") + (net 1) + (uuid "16898c56-1c01-48f9-9a80-3709b12bcccd") + ) + (segment + (start 81.9396 84.9876) + (end 81.28 84.328) + (width 0.5) + (layer "F.Cu") + (net 1) + (uuid "1795e859-dcc6-4639-a896-621ef9a0fa75") + ) + (segment + (start 104.902 75.692) + (end 102.616 75.692) + (width 0.3) + (layer "F.Cu") + (net 1) + (uuid "35d95c82-b018-4580-b293-2e5ae4d31814") + ) + (segment + (start 102.616 75.692) + (end 101.1428 75.692) + (width 0.5) + (layer "F.Cu") + (net 1) + (uuid "3783da61-52b2-4d4f-b574-fff4b85abe48") + ) + (segment + (start 84.582 82.804) + (end 85.852 82.804) + (width 0.5) + (layer "F.Cu") + (net 1) + (uuid "39e1a286-00d6-43da-98e7-8a3a6f496b70") + ) + (segment + (start 81.534 82.296) + (end 81.534 84.074) + (width 0.3) + (layer "F.Cu") + (net 1) + (uuid "5098c435-50f3-461f-b430-43faf6f3f74a") + ) + (segment + (start 86.106 88.646) + (end 83.9716 88.646) + (width 0.3) + (layer "F.Cu") + (net 1) + (uuid "60189272-8b47-476d-89bb-55e95089a077") + ) + (segment + (start 101.1428 75.692) + (end 100.5332 76.3016) + (width 0.5) + (layer "F.Cu") + (net 1) + (uuid "61d3cc38-b699-41fe-bcce-31d2e18b84e6") + ) + (segment + (start 86.614 80.264) + (end 85.852 81.026) + (width 0.5) + (layer "F.Cu") + (net 1) + (uuid "6ad21d51-3c50-4c21-9ece-2782f6295e0d") + ) + (segment + (start 83.9716 88.646) + (end 83.9716 84.9876) + (width 0.5) + (layer "F.Cu") + (net 1) + (uuid "a15fe476-e289-4f6b-96f4-5dd59d7fa1bc") + ) + (segment + (start 83.9716 93.2942) + (end 83.9716 88.646) + (width 0.5) + (layer "F.Cu") + (net 1) + (uuid "c8bad23b-95a9-4d54-a302-6cc4bf3d3d8e") + ) + (segment + (start 99.187 80.264) + (end 86.614 80.264) + (width 0.5) + (layer "F.Cu") + (net 1) + (uuid "e7370830-030e-4b37-96ec-a6938683d463") + ) + (segment + (start 83.9716 84.9876) + (end 81.9396 84.9876) + (width 0.5) + (layer "F.Cu") + (net 1) + (uuid "e749e14e-3aad-4187-bef7-70d038a6ce87") + ) + (segment + (start 81.534 84.074) + (end 81.28 84.328) + (width 0.3) + (layer "F.Cu") + (net 1) + (uuid "eccee6cf-c656-4d76-9eac-eec296c89607") + ) + (segment + (start 87.575 82.804) + (end 87.641 82.87) + (width 0.5) + (layer "F.Cu") + (net 1) + (uuid "ed65390c-91c3-466d-adba-19c66f41fe0e") + ) + (segment + (start 100.5332 76.3016) + (end 100.5332 78.9178) + (width 0.5) + (layer "F.Cu") + (net 1) + (uuid "f5275e9f-0108-49cf-9ef0-a4631a112e2a") + ) + (segment + (start 83.9716 83.4144) + (end 84.582 82.804) + (width 0.5) + (layer "F.Cu") + (net 1) + (uuid "f865ca5f-4e27-4c8b-83f5-ff490f9665f1") + ) + (segment + (start 81.7118 93.2942) + (end 81.6864 93.2688) + (width 0.5) + (layer "F.Cu") + (net 1) + (uuid "fc444e55-7bc6-4b1e-98f3-ad824a10108a") + ) + (segment + (start 77.4852 88.585) + (end 76.8858 87.9856) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "03009570-aacc-4df8-b6b7-5873eae29333") + ) + (segment + (start 112.6415 90.9766) + (end 112.6415 92.0675) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "03cf2768-99cb-43bc-828d-d64b1791027a") + ) + (segment + (start 105.156 107.696) + (end 105.156 103.378) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "04df25b7-5514-467f-9bcc-350439431080") + ) + (segment + (start 107.188 80.082902) + (end 107.670302 79.6006) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "0a04daaf-3181-41bc-b023-7f2751cc7653") + ) + (segment + (start 99.187 93.8022) + (end 97.6376 95.3516) + (width 0.5) + (layer "F.Cu") + (net 2) + (uuid "0d4755dd-7345-41b2-a244-f565be4c8852") + ) + (segment + (start 121.2342 104.3686) + (end 120.015 105.5878) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "0dff0034-c371-432d-b5ba-513a6f0033c4") + ) + (segment + (start 108.1415 82.6516) + (end 108.1415 81.4715) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "0fe43bb9-0e70-423b-ac66-c88c802f40dc") + ) + (segment + (start 72.8218 88.011) + (end 72.8218 84.1502) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "121520b4-1187-470f-b70a-41a1697cd7f2") + ) + (segment + (start 102.108 82.804) + (end 101.0158 82.804) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "14085b54-675c-4b3d-9907-8e9fff4f5f75") + ) + (segment + (start 94.2848 95.3516) + (end 93.4974 96.139) + (width 0.5) + (layer "F.Cu") + (net 2) + (uuid "141112c6-830b-4778-bb4e-066245446bd5") + ) + (segment + (start 86.106 84.836) + (end 89.916 88.646) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "19a61a0c-e591-4286-b55e-a6d1239856fa") + ) + (segment + (start 94.2848 95.3516) + (end 94.2848 91.1098) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "1bc1d92f-1c8d-4ea3-871a-05211b5532f5") + ) + (segment + (start 75.946 109.728) + (end 75.946 115.4684) + (width 3) + (layer "F.Cu") + (net 2) + (uuid "1bde63e5-5219-47a9-8f96-d05cf0551675") + ) + (segment + (start 116.84 83.566) + (end 118.5418 81.8642) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "1ee0132c-02b5-4cc6-bda0-bf5bfaaf8222") + ) + (segment + (start 120.015 105.5878) + (end 120.015 108.6612) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "2117dc00-77b7-49c6-9bcf-0d562c512e34") + ) + (segment + (start 80.8736 120.396) + (end 99.568 120.396) + (width 3) + (layer "F.Cu") + (net 2) + (uuid "244425ee-3345-4d4c-a2ec-e004f2863ad3") + ) + (segment + (start 75.946 115.4684) + (end 80.8736 120.396) + (width 3) + (layer "F.Cu") + (net 2) + (uuid "25782083-406c-4af3-85d0-7a4326bad523") + ) + (segment + (start 112.474 102.428) + (end 113.6994 101.2026) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "293204e9-63cd-4158-a44f-d0e904ac89e4") + ) + (segment + (start 90.7542 87.8078) + (end 89.916 88.646) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "2df71cba-7b98-447e-84b4-f4ea46e3b34d") + ) + (segment + (start 99.568 120.396) + (end 108.2802 120.396) + (width 1) + (layer "F.Cu") + (net 2) + (uuid "2e69d2bf-365f-4d40-aec1-ea756b35078a") + ) + (segment + (start 100.838 89.789) + (end 101.3714 89.2556) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "2f7866b0-21bd-46eb-8b1d-5f22353ecbbe") + ) + (segment + (start 100.838 91.059) + (end 100.838 90.424) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "347aca0d-424d-4abb-b119-4a646f766710") + ) + (segment + (start 108.6358 101.5746) + (end 113.3274 101.5746) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "37d929fd-4107-47e7-95bb-a09db668ba26") + ) + (segment + (start 129.032 105.2576) + (end 129.1082 105.3338) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "3ac14978-862f-4885-856c-6aa1bbd41541") + ) + (segment + (start 76.8858 87.9856) + (end 73.9648 87.9856) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "3ac4ba51-daed-49e4-ad79-cdc7c7225249") + ) + (segment + (start 102.616 88.646) + (end 101.981 88.646) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "42896229-0ad4-42bc-b6b1-fe1aa8fa4aba") + ) + (segment + (start 108.6358 96.393) + (end 106.045 93.8022) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "46556796-11e5-48c3-b879-c9e871137726") + ) + (segment + (start 106.045 93.8022) + (end 99.187 93.8022) + (width 0.5) + (layer "F.Cu") + (net 2) + (uuid "497453e7-7c92-46b6-9d42-163c11842c1b") + ) + (segment + (start 106.9594 101.5746) + (end 108.6358 101.5746) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "4e287df7-4f18-40d0-8b8e-d1b915371f31") + ) + (segment + (start 128.1938 103.124) + (end 129.032 102.2858) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "52e69f8c-e57f-4f9d-b90c-f87a8733c250") + ) + (segment + (start 113.231 92.657) + (end 116.586 92.657) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "54c346f8-d8e1-4ea2-a9d2-f0487158e488") + ) + (segment + (start 129.032 102.2858) + (end 129.032 105.2576) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "54f72482-0cd1-4220-8ff5-17f5dec95945") + ) + (segment + (start 113.3274 101.5746) + (end 113.6994 101.2026) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "60b3829f-c27c-45aa-b3b4-713af4231729") + ) + (segment + (start 111.633 78.566) + (end 112.569 79.502) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "610d9851-96a6-498f-b2df-555d2def1f46") + ) + (segment + (start 126.764 103.124) + (end 128.1938 103.124) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "6d830233-87ea-4d01-a0f0-5dfd6df483ca") + ) + (segment + (start 73.9648 87.9856) + (end 72.8472 87.9856) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "74820b8d-a84c-4c83-8952-f06f48358075") + ) + (segment + (start 118.5418 81.8642) + (end 118.5418 81.28) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "76928c42-aa01-4a78-a2de-46734d48387f") + ) + (segment + (start 89.281 91.1098) + (end 87.0966 93.2942) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "7bb245b5-97cf-4fb1-98a3-0ab7e6095ab6") + ) + (segment + (start 101.0158 82.804) + (end 100.6348 82.423) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "7cdac99d-db67-467f-85eb-09ba568efe65") + ) + (segment + (start 89.916 91.1098) + (end 89.281 91.1098) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "7ceb5bfa-14d9-480b-98e7-51faa62502f7") + ) + (segment + (start 77.4852 89.1794) + (end 77.4852 88.585) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "7e57c77b-dd85-45a0-9e5f-45e7ddc03964") + ) + (segment + (start 102.616 76.962) + (end 104.447 76.962) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "7e704021-40a5-4eea-859a-9e9af9c3484e") + ) + (segment + (start 129.032 100.838) + (end 129.032 102.2858) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "8222d17c-f8c8-48c3-b8b6-0b649a43ea5b") + ) + (segment + (start 72.7202 106.5022) + (end 75.946 109.728) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "83241ef6-d693-494e-96df-9eea2016aa14") + ) + (segment + (start 108.2802 120.396) + (end 112.268 116.4082) + (width 1) + (layer "F.Cu") + (net 2) + (uuid "87e795eb-0dd0-4a33-b122-5aa17aef7290") + ) + (segment + (start 83.7692 80.2132) + (end 77.7278 80.2132) + (width 0.5) + (layer "F.Cu") + (net 2) + (uuid "8906f31a-8afe-4eda-ac0a-e18563b546f6") + ) + (segment + (start 120.015 108.6612) + (end 112.268 116.4082) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "8ac20e73-3143-4763-abfe-c7f44bb7e0a8") + ) + (segment + (start 108.1415 81.4715) + (end 107.188 80.518) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "8ccf14f3-0ea4-4eab-8faa-2bcd83cdbea4") + ) + (segment + (start 104.447 76.962) + (end 104.902 77.417) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "8d4982ac-f819-4e5d-b04a-e91e2de728d2") + ) + (segment + (start 116.586 92.657) + (end 118.2856 92.657) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "8f7dfa9e-5f61-4479-865c-7c3c37f99b2c") + ) + (segment + (start 95.4786 87.8078) + (end 90.7542 87.8078) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "90dc91ef-2463-481b-85a9-3a28235d17ae") + ) + (segment + (start 92.456 84.992) + (end 91.088 84.992) + (width 0.5) + (layer "F.Cu") + (net 2) + (uuid "91400f1f-e7af-41b8-9481-3857bd8a7fe5") + ) + (segment + (start 108.6358 101.5746) + (end 108.6358 96.393) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "91ac5326-dc1c-4498-a9ac-db39a4da56dd") + ) + (segment + (start 85.852 84.836) + (end 86.106 84.836) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "91c8b69a-2ed9-4053-b985-ddbb19ea3e10") + ) + (segment + (start 112.6415 92.0675) + (end 113.231 92.657) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "9516dfd5-f826-48e7-84ea-ba0744e4ced2") + ) + (segment + (start 104.250561 87.5641) + (end 103.168661 88.646) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "a23fd1e4-449a-4efb-b388-6808e9f25793") + ) + (segment + (start 100.1522 91.7448) + (end 100.838 91.059) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "a3811348-3d25-476b-aa51-08d7680508aa") + ) + (segment + (start 111.633 72.2884) + (end 111.633 78.566) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "aa328721-00be-40ca-8f4d-594fac596c1c") + ) + (segment + (start 91.088 84.992) + (end 89.916 83.82) + (width 0.5) + (layer "F.Cu") + (net 2) + (uuid "aa37a07c-0198-43cd-b659-337a7678931a") + ) + (segment + (start 118.2856 92.657) + (end 121.2342 95.6056) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "ac6fca6f-3477-4c99-8e53-5a564b70c856") + ) + (segment + (start 72.8218 88.011) + (end 72.7202 88.1126) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "af143870-9e86-47cb-ba01-f0ca8aff1c61") + ) + (segment + (start 97.6376 95.3516) + (end 94.2848 95.3516) + (width 0.5) + (layer "F.Cu") + (net 2) + (uuid "b15d1fd1-4f27-4186-acc8-d15da3443aea") + ) + (segment + (start 74.676 82.296) + (end 75.645 82.296) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "b4515d32-dbfb-45c1-a87e-07fa1999ca20") + ) + (segment + (start 85.852 84.529) + (end 85.852 84.836) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "b4f73b95-a881-490e-b249-1787a336b397") + ) + (segment + (start 92.456 84.992) + (end 92.456 86.106) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "b5188d96-15e2-41b6-853c-08d80b0f2313") + ) + (segment + (start 85.7504 78.232) + (end 83.7692 80.2132) + (width 0.5) + (layer "F.Cu") + (net 2) + (uuid "b753b1a5-b40e-4e19-96a3-3a6b82e4fd63") + ) + (segment + (start 82.804 111.553) + (end 82.804 114.554) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "bce541e5-51a7-44f4-8daa-b943b9187d4b") + ) + (segment + (start 77.7278 80.2132) + (end 75.645 82.296) + (width 0.5) + (layer "F.Cu") + (net 2) + (uuid "c104fa8c-fecb-4673-999f-507c83506243") + ) + (segment + (start 94.2848 91.1098) + (end 97.155 91.1098) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "c18163ab-94dd-4309-bdd1-f1d9a2419d9e") + ) + (segment + (start 103.168661 88.646) + (end 102.616 88.646) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "c560ada8-2220-458a-8bc0-9620d965b8b6") + ) + (segment + (start 89.916 88.646) + (end 89.916 91.1098) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "c7b5f024-ec2a-44e0-8b67-e345126526c7") + ) + (segment + (start 104.902 77.417) + (end 105.9202 77.417) + (width 0.5) + (layer "F.Cu") + (net 2) + (uuid "c9e9a9b9-fa8d-4197-a88a-120027ba8107") + ) + (segment + (start 107.188 80.518) + (end 107.188 80.082902) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "cab878f3-a775-42d6-94e0-77d0a4579c86") + ) + (segment + (start 114.3508 100.5512) + (end 114.3508 100.0252) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "caefa974-e798-4e3f-80bb-9f99f684fc03") + ) + (segment + (start 105.156 103.378) + (end 106.9594 101.5746) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "ce1aa21c-e47b-49bd-b0b2-c257ed9dbc99") + ) + (segment + (start 115.8419 84.5641) + (end 116.84 83.566) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "d4e90e67-6f10-439c-a1a2-32e55138bb69") + ) + (segment + (start 100.838 90.424) + (end 100.838 89.789) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "d70982e5-86de-44fd-a183-e863272a50f7") + ) + (segment + (start 72.8218 84.1502) + (end 74.676 82.296) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "d81a4820-7709-4109-9ebf-3677927a1d0e") + ) + (segment + (start 114.554 84.5641) + (end 115.8419 84.5641) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "e1d61b5b-c05c-46af-930f-d26207fd88f1") + ) + (segment + (start 105.9202 77.417) + (end 106.68 76.6572) + (width 0.5) + (layer "F.Cu") + (net 2) + (uuid "e1fd82ae-354a-457e-b8e1-b04b3ce29ea8") + ) + (segment + (start 97.666 78.232) + (end 85.7504 78.232) + (width 0.5) + (layer "F.Cu") + (net 2) + (uuid "e21d5e82-bed6-48e3-b9a4-fa2edd296a95") + ) + (segment + (start 105.156 107.696) + (end 107.2915 107.696) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "e62f07f4-b937-4015-9857-2a388aab60b6") + ) + (segment + (start 94.2848 91.1098) + (end 89.916 91.1098) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "e6c4705f-71fd-4d13-b55f-8350038019d3") + ) + (segment + (start 72.8472 87.9856) + (end 72.8218 88.011) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "eab3a406-5283-458b-8ea8-ab4bdb1f563c") + ) + (segment + (start 72.7202 88.1126) + (end 72.7202 106.5022) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "ed81b5d2-c227-4d56-ae89-ca6a01e069b6") + ) + (segment + (start 113.6994 101.2026) + (end 114.3508 100.5512) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "f1651caa-3498-4c67-b961-54eb1f35e139") + ) + (segment + (start 121.2342 95.6056) + (end 121.2342 104.3686) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "f1f96da5-45f8-49d0-9bdb-a43038e66a68") + ) + (segment + (start 106.229 87.5641) + (end 104.250561 87.5641) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "f362aba8-797c-40f4-938a-a56300785428") + ) + (segment + (start 92.456 86.106) + (end 89.916 88.646) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "f4d5e736-ac76-4541-9104-36ae601754f8") + ) + (segment + (start 97.155 91.1098) + (end 97.79 91.7448) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "f8781a94-3b19-44ff-a6ad-ef0858300d5d") + ) + (segment + (start 101.981 88.646) + (end 101.3714 89.2556) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "fd0929d4-c35f-4b9a-91d5-f19389bfda2d") + ) + (segment + (start 97.79 91.7448) + (end 100.1522 91.7448) + (width 0.3) + (layer "F.Cu") + (net 2) + (uuid "ff8ee136-ca03-4235-b3cf-13e9d9d5c8c4") + ) + (via + (at 93.4974 96.139) + (size 1.2) + (drill 0.8) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "1526a810-6a96-46e1-8651-c6287c710ee2") + ) + (via + (at 100.6348 82.423) + (size 1.2) + (drill 0.8) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "29427caa-3a58-4e14-9a9e-61f62f550566") + ) + (via + (at 112.268 116.4082) + (size 1.2) + (drill 0.8) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "438bb981-59bc-4a4e-8e99-2fd38209eb79") + ) + (via + (at 106.045 93.8022) + (size 1.2) + (drill 0.8) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "6ae2a8ef-bd39-4471-ab2a-da229e739e87") + ) + (via + (at 99.568 120.396) + (size 1.2) + (drill 0.8) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "6c85fba2-7139-4fa0-9cd5-e866b2baf310") + ) + (via + (at 72.8218 88.011) + (size 1.2) + (drill 0.8) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "6cdda348-2ff0-403f-b628-e0aeeb8aefb7") + ) + (via + (at 107.670302 79.6006) + (size 1.2) + (drill 0.8) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "9cf8c78d-39b7-4440-b70d-6522df7110dc") + ) + (via + (at 129.1082 105.3338) + (size 0.8) + (drill 0.6) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "d4f350e4-f674-4006-bc78-51b428ead450") + ) + (via + (at 118.5418 81.28) + (size 1.2) + (drill 0.8) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "dbc38f9f-5cb1-41c0-83d6-ca0f6c18468a") + ) + (via + (at 106.68 76.6572) + (size 1.2) + (drill 0.8) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "dfea5e08-5952-4c19-ab55-d18a3ce1f844") + ) + (segment + (start 107.7468 93.8022) + (end 110.4646 91.0844) + (width 0.3) + (layer "B.Cu") + (net 2) + (uuid "01105a8d-9a55-4a87-bb80-454de07ad7ff") + ) + (segment + (start 133.858 119.888) + (end 135.382 118.364) + (width 1) + (layer "B.Cu") + (net 2) + (uuid "0845e9f1-b2f5-46dc-a111-f1c53b9924eb") + ) + (segment + (start 85.1916 76.708) + (end 100.6856 76.708) + (width 0.5) + (layer "B.Cu") + (net 2) + (uuid "0d0cfba8-dff4-4047-9285-62908e0d2907") + ) + (segment + (start 135.382 118.364) + (end 135.382 105.3846) + (width 1) + (layer "B.Cu") + (net 2) + (uuid "159acc23-deab-417f-b769-bf744e2ea1a2") + ) + (segment + (start 129.4074 103.3526) + (end 133.35 103.3526) + (width 1) + (layer "B.Cu") + (net 2) + (uuid "18625371-5fb2-40e2-8d9a-29476e6cbdd0") + ) + (segment + (start 110.4646 91.0844) + (end 123.9774 91.0844) + (width 0.3) + (layer "B.Cu") + (net 2) + (uuid "2208fa1c-d743-4ff6-b685-34e6ba83a755") + ) + (segment + (start 81.4832 76.708) + (end 85.1916 76.708) + (width 0.3) + (layer "B.Cu") + (net 2) + (uuid "247b8d6f-665b-4e22-9573-d1222003e28c") + ) + (segment + (start 80.772 114.554) + (end 82.804 114.554) + (width 0.3) + (layer "B.Cu") + (net 2) + (uuid "2945394d-f2cb-4b85-9d10-f956219447de") + ) + (segment + (start 106.6292 76.708) + (end 106.68 76.6572) + (width 0.5) + (layer "B.Cu") + (net 2) + (uuid "2b86a05d-10c7-4c25-96e5-464f95be7874") + ) + (segment + (start 100.6348 82.423) + (end 100.6348 76.7588) + (width 0.3) + (layer "B.Cu") + (net 2) + (uuid "2ec21cd5-870f-4abb-9024-b62efe102ff3") + ) + (segment + (start 89.916 81.2038) + (end 85.4202 76.708) + (width 0.3) + (layer "B.Cu") + (net 2) + (uuid "306dba59-77be-4de0-a94e-591c51c3c419") + ) + (segment + (start 107.188 94.9452) + (end 106.045 93.8022) + (width 0.3) + (layer "B.Cu") + (net 2) + (uuid "31b95ef6-d744-43e1-abe1-c68949ff9c62") + ) + (segment + (start 123.9774 91.0844) + (end 124.7498 90.312) + (width 0.3) + (layer "B.Cu") + (net 2) + (uuid "3350e23d-e3c5-4062-a977-1d606c2b4ae6") + ) + (segment + (start 119.5 84) + (end 119.5 83.084261) + (width 0.3) + (layer "B.Cu") + (net 2) + (uuid "33b164c5-0a17-4def-a2eb-ce2a6dc4c91f") + ) + (segment + (start 132.0546 94.742) + (end 133.35 93.4466) + (width 0.3) + (layer "B.Cu") + (net 2) + (uuid "372276d8-3fa5-43c6-9b35-b4711b3a6aca") + ) + (segment + (start 133.35 82.2198) + (end 133.35 93.4466) + (width 0.3) + (layer "B.Cu") + (net 2) + (uuid "3abe4529-c53a-4484-be3f-00d3b4e9ae7a") + ) + (segment + (start 130.81 88.9) + (end 125.563 88.9) + (width 0.3) + (layer "B.Cu") + (net 2) + (uuid "3bd89997-ffa3-4661-9e68-93bdec398303") + ) + (segment + (start 106.4514 76.4286) + (end 106.68 76.6572) + (width 0.5) + (layer "B.Cu") + (net 2) + (uuid "42d0168e-d231-41ab-a1fb-2fb80a5c1610") + ) + (segment + (start 72.8218 88.011) + (end 76.0806 88.011) + (width 0.3) + (layer "B.Cu") + (net 2) + (uuid "49d9902f-52bc-468a-9895-2a6945348dca") + ) + (segment + (start 100.6856 76.708) + (end 106.6292 76.708) + (width 0.5) + (layer "B.Cu") + (net 2) + (uuid "5037ae20-89c1-4046-8457-2af0f3653de1") + ) + (segment + (start 107.670302 79.6006) + (end 107.670302 79.831902) + (width 0.3) + (layer "B.Cu") + (net 2) + (uuid "52300ca9-23f1-45e3-bd92-67d8a936e94f") + ) + (segment + (start 107.188 95.758) + (end 107.188 94.9452) + (width 0.3) + (layer "B.Cu") + (net 2) + (uuid "59b332ca-32e6-41fb-bf73-194581eaef66") + ) + (segment + (start 111.379 71.0946) + (end 106.4514 71.0946) + (width 0.5) + (layer "B.Cu") + (net 2) + (uuid "5b961e53-b19a-404f-9e8b-82ff9854b2f8") + ) + (segment + (start 111.379 71.0946) + (end 116.0526 71.0946) + (width 0.5) + (layer "B.Cu") + (net 2) + (uuid "5d7ede4a-32fd-4c80-af54-7084f89e80db") + ) + (segment + (start 100.6348 76.7588) + (end 100.6856 76.708) + (width 0.3) + (layer "B.Cu") + (net 2) + (uuid "5e01be82-833f-43f8-af6c-014727a71669") + ) + (segment + (start 85.1916 76.708) + (end 85.4202 76.708) + (width 0.3) + (layer "B.Cu") + (net 2) + (uuid "5e27c2a7-03a5-4402-a095-ba7487ddfe08") + ) + (segment + (start 96.694 117.522) + (end 99.568 120.396) + (width 1) + (layer "B.Cu") + (net 2) + (uuid "62a3361b-0e90-4ce7-8017-60d88d0f625f") + ) + (segment + (start 106.045 93.8022) + (end 107.7468 93.8022) + (width 0.3) + (layer "B.Cu") + (net 2) + (uuid "6507235b-0f75-43e1-bb30-4244b13aa994") + ) + (segment + (start 75.946 109.728) + (end 80.772 114.554) + (width 0.3) + (layer "B.Cu") + (net 2) + (uuid "6590b844-ecf5-4ecf-9d53-c26d5eae4e70") + ) + (segment + (start 118.6434 81.1784) + (end 118.5418 81.28) + (width 0.3) + (layer "B.Cu") + (net 2) + (uuid "659c6c5b-1f00-4949-91ca-5a1928235fe0") + ) + (segment + (start 89.9422 96.139) + (end 93.4974 96.139) + (width 0.5) + (layer "B.Cu") + (net 2) + (uuid "665f4e48-4b8f-4f0d-841b-4739af82aa74") + ) + (segment + (start 96.012 117.522) + (end 96.694 117.522) + (width 1) + (layer "B.Cu") + (net 2) + (uuid "68c2d991-b622-459c-b97d-12be77e83126") + ) + (segment + (start 135.382 105.3846) + (end 133.35 103.3526) + (width 1) + (layer "B.Cu") + (net 2) + (uuid "6a218c5c-0e29-4a1d-82c8-bfbdcc2cdbb7") + ) + (segment + (start 125.563 88.9) + (end 124.7498 88.0868) + (width 0.3) + (layer "B.Cu") + (net 2) + (uuid "705c67fc-306b-4016-95a7-1b888c61038e") + ) + (segment + (start 83.6346 81.2038) + (end 89.916 81.2038) + (width 0.5) + (layer "B.Cu") + (net 2) + (uuid "745eaa3d-dfb0-435a-a764-bf92e1a2b369") + ) + (segment + (start 119.5 83.084261) + (end 119.507 83.077261) + (width 0.3) + (layer "B.Cu") + (net 2) + (uuid "776afc88-4483-4aa9-966b-a921971fbb8b") + ) + (segment + (start 119.507 81.1784) + (end 118.6434 81.1784) + (width 0.3) + (layer "B.Cu") + (net 2) + (uuid "810189d4-179d-4026-a527-f9445d52d2ed") + ) + (segment + (start 133.35 103.3526) + (end 133.35 93.4466) + (width 3) + (layer "B.Cu") + (net 2) + (uuid "8178467d-ec4e-4623-8dfa-dd305cc90d2d") + ) + (segment + (start 129.1082 103.6518) + (end 129.387 103.373) + (width 0.3) + (layer "B.Cu") + (net 2) + (uuid "852f9245-d2de-487c-ab3e-9931abf5a4c7") + ) + (segment + (start 129.333 94.742) + (end 132.0546 94.742) + (width 0.3) + (layer "B.Cu") + (net 2) + (uuid "8e661ce7-6f8a-4bc8-a153-39f1938edbc9") + ) + (segment + (start 89.916 88.646) + (end 89.916 81.2038) + (width 0.3) + (layer "B.Cu") + (net 2) + (uuid "905560eb-33b5-4d8d-b146-5dc0afd81287") + ) + (segment + (start 112.5831 84.7447) + (end 118.7553 84.7447) + (width 0.3) + (layer "B.Cu") + (net 2) + (uuid "92e9f4db-8687-4a0a-aaaf-913c9ea7a694") + ) + (segment + (start 76.0806 88.011) + (end 76.454 88.3844) + (width 0.3) + (layer "B.Cu") + (net 2) + (uuid "94ed5f63-4cff-4dd6-a6f2-f2a4e80991eb") + ) + (segment + (start 76.454 88.3844) + (end 83.6346 81.2038) + (width 0.5) + (layer "B.Cu") + (net 2) + (uuid "954ffbb0-3ead-4661-b918-dca956f02290") + ) + (segment + (start 77.881 75.88) + (end 80.6552 75.88) + (width 0.3) + (layer "B.Cu") + (net 2) + (uuid "998b49f4-6241-474c-b8de-69b568f511f0") + ) + (segment + (start 114.0714 114.8804) + (end 113.7958 114.8804) + (width 0.3) + (layer "B.Cu") + (net 2) + (uuid "9cc2433b-cfa7-4a03-84c5-952e4c89ed6b") + ) + (segment + (start 124.7498 90.312) + (end 124.7498 88.0868) + (width 0.3) + (layer "B.Cu") + (net 2) + (uuid "a50a4509-4b4c-4eed-ad7c-3f84f22c346c") + ) + (segment + (start 130.81 79.756) + (end 130.8862 79.756) + (width 0.3) + (layer "B.Cu") + (net 2) + (uuid "a9692690-6fce-4e35-a14f-e0655a1311f6") + ) + (segment + (start 130.8862 79.756) + (end 133.35 82.2198) + (width 0.3) + (layer "B.Cu") + (net 2) + (uuid "b341b789-870e-4138-b924-46703b59d6c3") + ) + (segment + (start 111.633 72.2884) + (end 111.633 71.3486) + (width 0.5) + (layer "B.Cu") + (net 2) + (uuid "b610a6a4-dfea-445a-982c-67b2ef55e781") + ) + (segment + (start 106.4514 71.0946) + (end 106.4514 76.4286) + (width 0.5) + (layer "B.Cu") + (net 2) + (uuid "b78f4341-dfdb-4d51-afb3-d23b5ccb1bdf") + ) + (segment + (start 109.829 116.073) + (end 111.9328 116.073) + (width 1) + (layer "B.Cu") + (net 2) + (uuid "b9731e64-648a-4aa7-a36c-aa4cd0d9f91d") + ) + (segment + (start 118.7553 84.7447) + (end 119.5 84) + (width 0.3) + (layer "B.Cu") + (net 2) + (uuid "bc9821ee-2fe3-4f9d-8598-f1a2c4eaa2ee") + ) + (segment + (start 107.670302 79.831902) + (end 112.5831 84.7447) + (width 0.3) + (layer "B.Cu") + (net 2) + (uuid "d35796de-1ed4-4de1-8c69-e52dc318f68b") + ) + (segment + (start 116.0526 71.0946) + (end 118.5418 73.5838) + (width 0.5) + (layer "B.Cu") + (net 2) + (uuid "da82c07a-162f-41f7-8c1a-eddd893b4909") + ) + (segment + (start 130.81 90.9066) + (end 133.35 93.4466) + (width 0.5) + (layer "B.Cu") + (net 2) + (uuid "e009372a-9de6-402a-8e36-17bac2cf18fd") + ) + (segment + (start 129.1082 105.3338) + (end 129.1082 103.6518) + (width 0.3) + (layer "B.Cu") + (net 2) + (uuid "e6858bea-b8a7-48bf-b84f-58ae7bd384f7") + ) + (segment + (start 118.5418 73.5838) + (end 118.5418 81.28) + (width 0.5) + (layer "B.Cu") + (net 2) + (uuid "e92e3428-8a92-4687-b394-3d26a99539f0") + ) + (segment + (start 111.9328 116.073) + (end 112.268 116.4082) + (width 1) + (layer "B.Cu") + (net 2) + (uuid "ec2f2037-6f19-45a9-b761-a678ded70970") + ) + (segment + (start 111.633 71.3486) + (end 111.379 71.0946) + (width 0.5) + (layer "B.Cu") + (net 2) + (uuid "ee7f72f6-06ba-426c-8610-617c471979a2") + ) + (segment + (start 80.6552 75.88) + (end 81.4832 76.708) + (width 0.3) + (layer "B.Cu") + (net 2) + (uuid "ef781248-d077-486e-b7f8-be3c95273bcd") + ) + (segment + (start 119.507 83.077261) + (end 119.507 81.1784) + (width 0.3) + (layer "B.Cu") + (net 2) + (uuid "f1b23884-9b4d-46fb-9553-21fa74189fb2") + ) + (segment + (start 113.7958 114.8804) + (end 112.268 116.4082) + (width 0.3) + (layer "B.Cu") + (net 2) + (uuid "f2bb6132-13ee-4cae-a247-4c100b9334e9") + ) + (segment + (start 129.387 103.373) + (end 129.4074 103.3526) + (width 1) + (layer "B.Cu") + (net 2) + (uuid "f3f39ea3-3949-4e00-a1d4-2d3b59d14246") + ) + (segment + (start 130.81 88.9) + (end 130.81 90.9066) + (width 0.5) + (layer "B.Cu") + (net 2) + (uuid "f5255207-81f0-4f8f-8a97-302b11cdc369") + ) + (segment + (start 132.334 119.888) + (end 133.858 119.888) + (width 1) + (layer "B.Cu") + (net 2) + (uuid "fceb8329-b2ec-4c46-851b-04ded3776ade") + ) + (segment + (start 96.592 99.568) + (end 97.354 98.806) + (width 3) + (layer "F.Cu") + (net 3) + (uuid "4e5bc743-da1a-4d1d-9db9-2611d0dd1720") + ) + (segment + (start 75.946 99.568) + (end 86.7918 99.568) + (width 3) + (layer "F.Cu") + (net 3) + (uuid "4f27831f-e3c0-4dec-999e-d49bb8fbcee1") + ) + (segment + (start 86.7918 99.568) + (end 96.592 99.568) + (width 3) + (layer "F.Cu") + (net 3) + (uuid "6c37166c-3357-469e-a40b-4090a5b234b2") + ) + (segment + (start 82.1436 89.1794) + (end 79.3852 89.1794) + (width 0.5) + (layer "F.Cu") + (net 3) + (uuid "733fd56b-2f52-4314-aa0e-04973594c7dd") + ) + (via + (at 82.1436 89.1794) + (size 1.2) + (drill 0.8) + (layers "F.Cu" "B.Cu") + (net 3) + (uuid "76bf957d-5305-4a55-bd0f-7831ad4adcb1") + ) + (segment + (start 92.2528 100.2792) + (end 92.2528 107.6706) + (width 1) + (layer "B.Cu") + (net 3) + (uuid "02df94af-c666-45e4-88b7-f2f4537b4be7") + ) + (segment + (start 86.868 114.554) + (end 89.281 114.554) + (width 0.3) + (layer "B.Cu") + (net 3) + (uuid "1055fbce-2fe2-47a0-b2c7-33d22f4789f2") + ) + (segment + (start 82.1436 93.8276) + (end 82.1436 89.1794) + (width 0.5) + (layer "B.Cu") + (net 3) + (uuid "15008c47-eb5f-4565-bb36-fbacc1321843") + ) + (segment + (start 97.282 98.878) + (end 97.354 98.806) + (width 2) + (layer "B.Cu") + (net 3) + (uuid "377df477-54df-4706-b126-4df916b8d641") + ) + (segment + (start 91.948 121.158) + (end 91.948 117.522) + (width 1) + (layer "B.Cu") + (net 3) + (uuid "3dadd23c-7e1c-4ba5-8b0e-32c6da9ba5bd") + ) + (segment + (start 105.0309 101.6) + (end 100.148 101.6) + (width 0.3) + (layer "B.Cu") + (net 3) + (uuid "3e46ef07-fc96-4be3-827f-a7df5eaaf436") + ) + (segment + (start 125.476 123.4694) + (end 94.2594 123.4694) + (width 1) + (layer "B.Cu") + (net 3) + (uuid "4cf2d446-b381-4f05-a658-7c3ebbb48567") + ) + (segment + (start 94.2594 123.4694) + (end 91.948 121.158) + (width 1) + (layer "B.Cu") + (net 3) + (uuid "4e06a601-5d33-4817-a8d6-f830176c4afd") + ) + (segment + (start 128.524 120.4214) + (end 125.476 123.4694) + (width 1) + (layer "B.Cu") + (net 3) + (uuid "4ee6c815-47be-4330-afa5-59207da43dab") + ) + (segment + (start 89.3318 110.5916) + (end 89.3318 114.5032) + (width 1) + (layer "B.Cu") + (net 3) + (uuid "5d1a5bd8-a9b4-437f-8da0-df55d3b7cf73") + ) + (segment + (start 93.726 98.806) + (end 92.2528 100.2792) + (width 1) + (layer "B.Cu") + (net 3) + (uuid "62367597-5f2b-439f-bce2-d6d402a95d56") + ) + (segment + (start 101.364 98.806) + (end 101.412 98.758) + (width 0.3) + (layer "B.Cu") + (net 3) + (uuid "712e241f-a457-4699-aca4-80844ca9342b") + ) + (segment + (start 90.09 117.522) + (end 91.948 117.522) + (width 1) + (layer "B.Cu") + (net 3) + (uuid "751cf9ee-25bc-4ae4-8df2-ed64d7bc3bc5") + ) + (segment + (start 97.27 103.886) + (end 97.282 103.898) + (width 0.3) + (layer "B.Cu") + (net 3) + (uuid "75b43e7e-ddcf-431d-9565-4931321296b1") + ) + (segment + (start 89.3318 115.1636) + (end 89.3318 116.7638) + (width 1) + (layer "B.Cu") + (net 3) + (uuid "91ef9b61-25ff-4324-8b4f-23f5393a3ca2") + ) + (segment + (start 97.354 98.806) + (end 101.364 98.806) + (width 0.3) + (layer "B.Cu") + (net 3) + (uuid "9faa65df-1bdd-497b-9b11-e9ba7bac877c") + ) + (segment + (start 128.524 119.888) + (end 128.524 120.4214) + (width 1) + (layer "B.Cu") + (net 3) + (uuid "a2a84ef8-a844-48cc-a38d-09c2dd7eb382") + ) + (segment + (start 94.3356 103.886) + (end 97.27 103.886) + (width 0.3) + (layer "B.Cu") + (net 3) + (uuid "b2cf3d0d-d987-4581-b966-977a3a7e74f0") + ) + (segment + (start 86.8172 96.139) + (end 84.455 96.139) + (width 0.5) + (layer "B.Cu") + (net 3) + (uuid "b3115eea-6cff-4248-b5e4-8325f22f0c02") + ) + (segment + (start 97.354 98.806) + (end 93.726 98.806) + (width 1) + (layer "B.Cu") + (net 3) + (uuid "b9d40bbf-679f-482b-9ce8-63853052a34e") + ) + (segment + (start 86.8934 99.568) + (end 96.592 99.568) + (width 3) + (layer "B.Cu") + (net 3) + (uuid "c64423c9-7b7e-4863-862d-33c7f165dc18") + ) + (segment + (start 84.455 96.139) + (end 82.1436 93.8276) + (width 0.5) + (layer "B.Cu") + (net 3) + (uuid "cb096931-f350-4c31-b801-1e9b097ff276") + ) + (segment + (start 86.8172 96.139) + (end 86.8172 99.4918) + (width 0.5) + (layer "B.Cu") + (net 3) + (uuid "ccb21a08-8c11-40f0-92fa-27cbe53b42c0") + ) + (segment + (start 92.2528 107.6706) + (end 89.3318 110.5916) + (width 1) + (layer "B.Cu") + (net 3) + (uuid "cf0bbe9f-dbec-4020-894b-4c80f56e4523") + ) + (segment + (start 97.282 103.898) + (end 97.282 98.878) + (width 2) + (layer "B.Cu") + (net 3) + (uuid "d563f919-6423-452b-9124-1213fe7b1792") + ) + (segment + (start 75.946 99.568) + (end 86.8934 99.568) + (width 3) + (layer "B.Cu") + (net 3) + (uuid "e4c13a62-9083-437f-8ed5-1d55e1658bee") + ) + (segment + (start 89.3318 114.5032) + (end 89.3318 115.1636) + (width 1) + (layer "B.Cu") + (net 3) + (uuid "e6ab9ecb-607f-4c2f-a3dc-bb8410194fbf") + ) + (segment + (start 100.148 101.6) + (end 97.354 98.806) + (width 0.3) + (layer "B.Cu") + (net 3) + (uuid "e8762260-6734-4f26-902a-83e474dab0c4") + ) + (segment + (start 89.3318 116.7638) + (end 90.09 117.522) + (width 1) + (layer "B.Cu") + (net 3) + (uuid "e93221a4-d000-4f72-9108-c289a1e40d2a") + ) + (segment + (start 76.454 99.5172) + (end 76.454 93.7844) + (width 1) + (layer "B.Cu") + (net 3) + (uuid "eb74d6ec-2617-4d93-91bc-9048dd622267") + ) + (segment + (start 89.281 114.554) + (end 89.3318 114.5032) + (width 0.3) + (layer "B.Cu") + (net 3) + (uuid "f3b37b00-f568-4fdd-9cbd-79d8f2b81b1c") + ) + (segment + (start 86.8172 99.4918) + (end 86.8934 99.568) + (width 0.5) + (layer "B.Cu") + (net 3) + (uuid "fd13802d-df94-4d9a-80b0-e5a9799bea0f") + ) + (segment + (start 96.592 99.568) + (end 97.354 98.806) + (width 3) + (layer "B.Cu") + (net 3) + (uuid "ffdd380e-b505-4f00-8fec-377e39e64b90") + ) + (segment + (start 75.1586 92.5068) + (end 75.9206 93.2688) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "08eb950a-7f4f-4a56-a769-dcd52ef07499") + ) + (segment + (start 78.4352 93.2676) + (end 78.4364 93.2688) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "826e36c0-3954-4b58-910b-e8d9bc190a64") + ) + (segment + (start 75.9206 93.2688) + (end 78.4364 93.2688) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "9495cedf-5887-4930-87b4-35e26f0f9ac4") + ) + (segment + (start 74.7268 89.4596) + (end 75.1586 89.8914) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "a5dfb17f-2aa4-4fa1-9b43-7ee5eb57c9d3") + ) + (segment + (start 78.4352 89.1794) + (end 78.4352 93.2676) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "e14bbd14-020c-4da8-8877-92bbc501a792") + ) + (segment + (start 75.1586 89.8914) + (end 75.1586 92.5068) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "fb9cdda9-a8a6-4569-a885-8d329acb3355") + ) + (segment + (start 74.7268 86.3346) + (end 77.3404 86.3346) + (width 0.5) + (layer "F.Cu") + (net 5) + (uuid "4dc26e13-b792-4aee-851e-0e5845b05bfc") + ) + (segment + (start 77.3404 86.3346) + (end 77.4852 86.4794) + (width 0.5) + (layer "F.Cu") + (net 5) + (uuid "b672f0d4-b513-4992-a9ce-c7cff66d07d1") + ) + (segment + (start 106.229 84.0641) + (end 109.707541 84.0641) + (width 0.3) + (layer "F.Cu") + (net 6) + (uuid "1583ceec-c256-4066-a36e-d7f1c8e7537f") + ) + (segment + (start 106.229 88.0641) + (end 111.7115 88.0641) + (width 0.3) + (layer "F.Cu") + (net 6) + (uuid "1d46a92e-5257-4cd6-b053-eaaa7748e90f") + ) + (segment + (start 116.7771 81.841) + (end 114.554 84.0641) + (width 0.3) + (layer "F.Cu") + (net 6) + (uuid "22dadbde-f6c6-4577-99c0-c4dfa88102fa") + ) + (segment + (start 106.172 82.6516) + (end 106.172 84.0071) + (width 0.3) + (layer "F.Cu") + (net 6) + (uuid "2454ea0e-29b8-4e84-be72-127967dd0137") + ) + (segment + (start 113.1415 90.9766) + (end 116.5414 90.9766) + (width 0.3) + (layer "F.Cu") + (net 6) + (uuid "2996024e-b53b-4bc6-bd7e-2817e96abb68") + ) + (segment + (start 113.1415 89.4941) + (end 113.1415 90.9766) + (width 0.3) + (layer "F.Cu") + (net 6) + (uuid "2dcf5a78-8409-4ab3-a728-9f4a2a4900e3") + ) + (segment + (start 106.172 84.0071) + (end 106.229 84.0641) + (width 0.3) + (layer "F.Cu") + (net 6) + (uuid "348e7a45-dfaa-4cc6-b842-6c10f77f117a") + ) + (segment + (start 111.7115 88.0641) + (end 113.1415 89.4941) + (width 0.3) + (layer "F.Cu") + (net 6) + (uuid "5ca7fa3c-39b6-467a-a09f-6c7697163cbb") + ) + (segment + (start 106.172 82.6516) + (end 107.6415 82.6516) + (width 0.3) + (layer "F.Cu") + (net 6) + (uuid "5ffc6de7-e6ba-4680-8d35-f6ef79177396") + ) + (segment + (start 103.378 81.28) + (end 104.14 82.042) + (width 0.5) + (layer "F.Cu") + (net 6) + (uuid "66c772e9-cc16-4885-8264-0b1352b615d7") + ) + (segment + (start 89.916 81.92) + (end 92.334 81.92) + (width 0.5) + (layer "F.Cu") + (net 6) + (uuid "724938e2-5c58-4d1f-874d-2a0fc35a2991") + ) + (segment + (start 95.5548 82.0928) + (end 95.504 82.042) + (width 0.3) + (layer "F.Cu") + (net 6) + (uuid "76c37253-bea5-4d13-98f3-82d0e3802600") + ) + (segment + (start 113.715459 84.0641) + (end 111.7115 86.068059) + (width 0.3) + (layer "F.Cu") + (net 6) + (uuid "7ececa49-b465-414f-8a4e-cf07fc83d0ac") + ) + (segment + (start 119.888 72.39) + (end 121.412 72.39) + (width 0.3) + (layer "F.Cu") + (net 6) + (uuid "9fe8401c-d41e-4218-8d68-a6f77e3bb375") + ) + (segment + (start 95.504 82.042) + (end 96.266 81.28) + (width 0.5) + (layer "F.Cu") + (net 6) + (uuid "9ff31299-a93e-4bc2-a8a7-b84f2cf210bc") + ) + (segment + (start 92.456 82.042) + (end 95.504 82.042) + (width 0.5) + (layer "F.Cu") + (net 6) + (uuid "a220b22f-9e80-4fdd-9a05-929630316522") + ) + (segment + (start 114.554 84.0641) + (end 113.715459 84.0641) + (width 0.3) + (layer "F.Cu") + (net 6) + (uuid "a517f426-50e7-4a7a-aeb9-82ec659c5bb1") + ) + (segment + (start 95.5548 84.0486) + (end 95.5548 82.0928) + (width 0.3) + (layer "F.Cu") + (net 6) + (uuid "aba04f36-4f44-4875-ad56-6fcd32b7ca58") + ) + (segment + (start 92.334 81.92) + (end 92.456 82.042) + (width 0.5) + (layer "F.Cu") + (net 6) + (uuid "abfc47ff-20ca-41d1-9f94-be9d8caa0b62") + ) + (segment + (start 105.5624 82.042) + (end 104.14 82.042) + (width 0.5) + (layer "F.Cu") + (net 6) + (uuid "ac5aac56-ef2c-4517-a8e4-4c59cad46b7c") + ) + (segment + (start 116.5414 90.9766) + (end 116.586 90.932) + (width 0.3) + (layer "F.Cu") + (net 6) + (uuid "b8147371-bf68-41ec-b982-303b910aeb1b") + ) + (segment + (start 104.9229 88.0641) + (end 102.616 90.371) + (width 0.3) + (layer "F.Cu") + (net 6) + (uuid "b86f0e1c-a655-4237-b94a-0e8b9bf2fddd") + ) + (segment + (start 105.463 80.518) + (end 105.463 81.9426) + (width 0.3) + (layer "F.Cu") + (net 6) + (uuid "bf4e758e-197f-41b0-b5cd-da7df712fa2f") + ) + (segment + (start 96.266 81.28) + (end 103.378 81.28) + (width 0.5) + (layer "F.Cu") + (net 6) + (uuid "bfc56cb5-eb49-4555-b038-fb27c03b40e1") + ) + (segment + (start 116.84 81.841) + (end 116.7771 81.841) + (width 0.3) + (layer "F.Cu") + (net 6) + (uuid "c41a49be-cd09-4ace-8837-8d1b72203c4e") + ) + (segment + (start 121.412 72.39) + (end 123.143 72.39) + (width 0.3) + (layer "F.Cu") + (net 6) + (uuid "d64976ee-83ce-4406-8cf4-fcc7e79f9faa") + ) + (segment + (start 106.229 88.0641) + (end 104.9229 88.0641) + (width 0.3) + (layer "F.Cu") + (net 6) + (uuid "d919ac63-7ca2-4b59-82e7-d5ad5791b08c") + ) + (segment + (start 111.7115 86.068059) + (end 111.7115 88.0641) + (width 0.3) + (layer "F.Cu") + (net 6) + (uuid "ddcd7c57-effa-4ffc-a472-306b8ba2c575") + ) + (segment + (start 109.707541 84.0641) + (end 111.7115 86.068059) + (width 0.3) + (layer "F.Cu") + (net 6) + (uuid "e9eea998-73a4-42f3-b2b3-d50d5a6b86ed") + ) + (segment + (start 106.172 82.6516) + (end 105.5624 82.042) + (width 0.5) + (layer "F.Cu") + (net 6) + (uuid "f2bfc5e3-6fb4-4cc0-9c31-235160d4df18") + ) + (segment + (start 105.463 81.9426) + (end 106.172 82.6516) + (width 0.3) + (layer "F.Cu") + (net 6) + (uuid "f656fe7c-c26a-4662-912c-d460bb637acc") + ) + (via + (at 121.412 72.39) + (size 1.2) + (drill 0.8) + (layers "F.Cu" "B.Cu") + (net 6) + (uuid "09aa3f00-81d4-4c72-bf84-43d60d49aacd") + ) + (via + (at 106.172 82.6516) + (size 1.2) + (drill 0.8) + (layers "F.Cu" "B.Cu") + (net 6) + (uuid "4b630f16-7368-464c-8d7b-2b453f20bbf3") + ) + (segment + (start 106.172 82.6516) + (end 109.2073 85.6869) + (width 0.3) + (layer "B.Cu") + (net 6) + (uuid "24a5c7a2-f9a9-4b1e-b96e-9f5092090f2e") + ) + (segment + (start 101.6 91.44) + (end 101.6 90.17) + (width 0.3) + (layer "B.Cu") + (net 6) + (uuid "5549a8af-e20a-4020-9c51-3efc2c7841a3") + ) + (segment + (start 106.172 82.6516) + (end 106.172 87.63) + (width 0.3) + (layer "B.Cu") + (net 6) + (uuid "85b56f30-e914-4ba2-8440-cc018862c652") + ) + (segment + (start 109.2073 85.6869) + (end 119.8131 85.6869) + (width 0.3) + (layer "B.Cu") + (net 6) + (uuid "9fde6b04-02b0-4750-b9e6-ced367cd9fe1") + ) + (segment + (start 102.87 88.9) + (end 104.902 88.9) + (width 0.3) + (layer "B.Cu") + (net 6) + (uuid "a572d73d-a398-499a-b2d1-3dbe1bf9b07e") + ) + (segment + (start 119.8131 85.6869) + (end 121.412 84.088) + (width 0.3) + (layer "B.Cu") + (net 6) + (uuid "aa8736c2-dc76-403f-b21b-9a3a62527657") + ) + (segment + (start 121.412 84.088) + (end 121.412 72.39) + (width 0.3) + (layer "B.Cu") + (net 6) + (uuid "bc975306-e70d-4a86-9511-310f883abd1e") + ) + (segment + (start 106.172 87.63) + (end 104.902 88.9) + (width 0.3) + (layer "B.Cu") + (net 6) + (uuid "bdc21d74-e903-4151-9ad2-cb2b6d76b619") + ) + (segment + (start 101.6 90.17) + (end 102.87 88.9) + (width 0.3) + (layer "B.Cu") + (net 6) + (uuid "ee63d175-d863-4c1d-bddc-89cdd1e6066d") + ) + (segment + (start 79.455 86.4096) + (end 79.3852 86.4794) + (width 0.3) + (layer "F.Cu") + (net 7) + (uuid "1308b7e5-a49f-493f-97f8-cdb072a80df6") + ) + (segment + (start 79.455 84.328) + (end 79.455 86.4096) + (width 0.3) + (layer "F.Cu") + (net 7) + (uuid "200b0bbb-80c9-4c70-b061-ef6d5a247116") + ) + (segment + (start 79.459 84.324) + (end 79.455 84.328) + (width 0.3) + (layer "F.Cu") + (net 7) + (uuid "53825d6a-beb5-4515-9a38-899b4247a70a") + ) + (segment + (start 77.47 82.296) + (end 79.459 82.296) + (width 0.3) + (layer "F.Cu") + (net 7) + (uuid "89e63504-5648-48a5-bcc5-59363f390a56") + ) + (segment + (start 79.459 82.296) + (end 79.459 84.324) + (width 0.3) + (layer "F.Cu") + (net 7) + (uuid "bbb4ab98-d2ff-47aa-828c-698bb9d55014") + ) + (segment + (start 100.8681 86.0641) + (end 99.314 84.51) + (width 0.3) + (layer "F.Cu") + (net 8) + (uuid "186eea38-5765-4579-b8db-6b9bbd2b6033") + ) + (segment + (start 99.333 84.529) + (end 99.314 84.51) + (width 0.3) + (layer "F.Cu") + (net 8) + (uuid "65ee5947-133b-45c9-8b80-5af8cfc58ff0") + ) + (segment + (start 102.108 84.529) + (end 99.333 84.529) + (width 0.3) + (layer "F.Cu") + (net 8) + (uuid "e977f9cb-a900-4201-beb2-2016426d4093") + ) + (segment + (start 106.229 86.0641) + (end 100.8681 86.0641) + (width 0.3) + (layer "F.Cu") + (net 8) + (uuid "feda5962-b3a0-4b1e-b94b-2fad215cee46") + ) + (segment + (start 99.113 88.411) + (end 99.314 88.21) + (width 0.3) + (layer "F.Cu") + (net 9) + (uuid "143d5973-bf13-4351-9c39-be1c280b59a8") + ) + (segment + (start 99.113 90.424) + (end 99.113 88.411) + (width 0.3) + (layer "F.Cu") + (net 9) + (uuid "1881a403-4f4b-4498-a331-e243a52a7ec4") + ) + (segment + (start 106.229 86.5641) + (end 100.9599 86.5641) + (width 0.3) + (layer "F.Cu") + (net 9) + (uuid "a1dbc19f-fbcb-47eb-a80c-6c16ff5baa6d") + ) + (segment + (start 100.9599 86.5641) + (end 99.314 88.21) + (width 0.3) + (layer "F.Cu") + (net 9) + (uuid "c901834c-8f43-4784-a59e-3e3202db43c9") + ) + (segment + (start 92.456 97.3328) + (end 95.4278 97.3328) + (width 0.3) + (layer "F.Cu") + (net 10) + (uuid "01d43611-2eb3-49c4-8663-e30888def596") + ) + (segment + (start 98.0948 96.4438) + (end 99.568 97.917) + (width 0.3) + (layer "F.Cu") + (net 10) + (uuid "07122b41-9a4f-41e4-bc17-c50ba882b348") + ) + (segment + (start 78.74 87.8586) + (end 78.4352 87.5538) + (width 0.3) + (layer "F.Cu") + (net 10) + (uuid "1fa728b9-af0b-4f53-82bb-c1485d88aafa") + ) + (segment + (start 91.4908 96.3676) + (end 92.456 97.3328) + (width 0.3) + (layer "F.Cu") + (net 10) + (uuid "2499b744-e06f-407a-9344-aca1e53e9ad4") + ) + (segment + (start 78.4352 87.5538) + (end 78.4352 86.4794) + (width 0.3) + (layer "F.Cu") + (net 10) + (uuid "402d74a5-fa05-4b82-aed7-a1302e864cfc") + ) + (segment + (start 80.7466 87.8586) + (end 78.74 87.8586) + (width 0.3) + (layer "F.Cu") + (net 10) + (uuid "54d5d8b8-e148-45af-9ce9-7811a3ee4ce7") + ) + (segment + (start 85.1154 105.3846) + (end 88.8238 105.3846) + (width 0.3) + (layer "F.Cu") + (net 10) + (uuid "69752e24-9e86-4d7f-85a3-8b83c6285795") + ) + (segment + (start 93.004 92.456) + (end 91.4654 92.456) + (width 0.3) + (layer "F.Cu") + (net 10) + (uuid "6ec34f96-ce1f-4eb4-9ece-d3b9b0c792f2") + ) + (segment + (start 99.568 97.917) + (end 99.568 99.8982) + (width 0.3) + (layer "F.Cu") + (net 10) + (uuid "8d3664eb-c69b-46db-84a7-c9d03743225c") + ) + (segment + (start 94.0816 105.3846) + (end 88.8238 105.3846) + (width 0.3) + (layer "F.Cu") + (net 10) + (uuid "975dda67-0afb-41ab-b30f-13ead77accda") + ) + (segment + (start 96.3168 96.4438) + (end 98.0948 96.4438) + (width 0.3) + (layer "F.Cu") + (net 10) + (uuid "98a66655-542f-4939-bf62-e88a30889b4a") + ) + (segment + (start 99.568 99.8982) + (end 94.0816 105.3846) + (width 0.3) + (layer "F.Cu") + (net 10) + (uuid "aa87f12a-9b04-4342-93d5-bdf019c2d9b8") + ) + (segment + (start 91.4654 92.456) + (end 91.4908 92.4814) + (width 0.3) + (layer "F.Cu") + (net 10) + (uuid "d3c0076e-ebd0-45ef-a970-d85f3e684b73") + ) + (segment + (start 85.09 105.41) + (end 85.1154 105.3846) + (width 0.3) + (layer "F.Cu") + (net 10) + (uuid "ee62f16f-e332-4c49-b893-81f1cb225c56") + ) + (segment + (start 91.4908 92.4814) + (end 91.4908 96.3676) + (width 0.3) + (layer "F.Cu") + (net 10) + (uuid "fa0b6124-84ed-4344-87c8-dc14692eb69d") + ) + (segment + (start 95.4278 97.3328) + (end 96.3168 96.4438) + (width 0.3) + (layer "F.Cu") + (net 10) + (uuid "fbe428f9-f388-45e7-add9-3d2d07caa398") + ) + (via + (at 91.4908 92.4814) + (size 0.8) + (drill 0.6) + (layers "F.Cu" "B.Cu") + (net 10) + (uuid "49409edb-de28-4a0a-bab3-d9331dfaccf0") + ) + (via + (at 80.7466 87.8586) + (size 0.8) + (drill 0.6) + (layers "F.Cu" "B.Cu") + (net 10) + (uuid "d06e7b74-8e62-4d91-85ff-b8decd01b9b1") + ) + (segment + (start 82.5754 87.8586) + (end 80.7466 87.8586) + (width 0.3) + (layer "B.Cu") + (net 10) + (uuid "001daa1a-8de5-41c6-bfab-f2e913439df3") + ) + (segment + (start 84.6074 92.4814) + (end 91.4908 92.4814) + (width 0.3) + (layer "B.Cu") + (net 10) + (uuid "07f5519d-4b4f-4a5e-8a5a-a4c835381d7b") + ) + (segment + (start 83.312 91.186) + (end 84.6074 92.4814) + (width 0.3) + (layer "B.Cu") + (net 10) + (uuid "19373d10-dd8e-46e9-bdee-e79a9a795384") + ) + (segment + (start 82.5754 87.8586) + (end 83.312 88.5952) + (width 0.3) + (layer "B.Cu") + (net 10) + (uuid "316e296b-21a9-4ddd-adec-cdc335ce1271") + ) + (segment + (start 83.312 88.5952) + (end 83.312 91.186) + (width 0.3) + (layer "B.Cu") + (net 10) + (uuid "e3234d85-7e64-4969-bc14-0faa1f4376d6") + ) + (segment + (start 82.804 107.95) + (end 85.05 107.95) + (width 0.3) + (layer "F.Cu") + (net 11) + (uuid "81416345-ef60-42e3-bd07-7e40e0e6a5b1") + ) + (segment + (start 85.05 107.95) + (end 85.09 107.91) + (width 0.3) + (layer "F.Cu") + (net 11) + (uuid "8adb53d2-9e16-4b5f-b4c5-f4d974c021c7") + ) + (segment + (start 82.804 109.728) + (end 82.804 107.95) + (width 0.3) + (layer "F.Cu") + (net 11) + (uuid "a9701615-1694-4626-b9c9-8095a5985e1e") + ) + (segment + (start 106.229 89.0641) + (end 105.390459 89.0641) + (width 0.3) + (layer "F.Cu") + (net 12) + (uuid "27dea85b-6f7c-4a52-bf19-5bf2f4979b85") + ) + (segment + (start 104.902 89.552559) + (end 104.902 91.44) + (width 0.3) + (layer "F.Cu") + (net 12) + (uuid "29d567ed-bf5e-4e87-aabf-4e3b4e98dd50") + ) + (segment + (start 105.390459 89.0641) + (end 104.902 89.552559) + (width 0.3) + (layer "F.Cu") + (net 12) + (uuid "4e3bd9c6-ccf1-4d88-a785-fa730dcdd19b") + ) + (segment + (start 104.902 91.44) + (end 103.886 92.456) + (width 0.3) + (layer "F.Cu") + (net 12) + (uuid "8bbf1221-cb70-4b7e-a2ab-cc451454954d") + ) + (segment + (start 103.886 92.456) + (end 95.504 92.456) + (width 0.3) + (layer "F.Cu") + (net 12) + (uuid "fcde8b42-3d68-423a-90a7-336273b9a124") + ) + (segment + (start 122.682 108.284) + (end 122.508 108.458) + (width 0.3) + (layer "F.Cu") + (net 13) + (uuid "820269dd-4611-4397-9ea3-23213eda8be9") + ) + (segment + (start 122.682 104.949) + (end 122.682 108.284) + (width 0.3) + (layer "F.Cu") + (net 13) + (uuid "9eea3ef3-931a-48fb-9f64-55e37c0e4593") + ) + (segment + (start 129 109.95) + (end 127.508 108.458) + (width 0.3) + (layer "F.Cu") + (net 14) + (uuid "1bf644b3-89ac-40ca-97d5-88b62a30317f") + ) + (segment + (start 133.096 109.95) + (end 129 109.95) + (width 0.3) + (layer "F.Cu") + (net 14) + (uuid "85be4673-2626-4ae8-8e01-705c471ab2e3") + ) + (segment + (start 132.414 98.806) + (end 133.096 98.124) + (width 0.3) + (layer "F.Cu") + (net 15) + (uuid "68ac412f-c576-4afb-b03f-f69b73d5a08d") + ) + (segment + (start 128.6745 98.806) + (end 132.414 98.806) + (width 0.3) + (layer "F.Cu") + (net 15) + (uuid "f4466910-b798-40d9-bd8e-f49591531c7a") + ) + (segment + (start 133.096 107.95) + (end 133.096 103.124) + (width 0.3) + (layer "F.Cu") + (net 16) + (uuid "e877467f-d198-472a-9621-c7691deb133e") + ) + (segment + (start 124.714 103.124) + (end 124.714 97.69165) + (width 0.3) + (layer "F.Cu") + (net 17) + (uuid "6fbc8f93-1a20-41a4-8a7a-ecad10789447") + ) + (segment + (start 124.714 97.69165) + (end 122.682 95.65965) + (width 0.3) + (layer "F.Cu") + (net 17) + (uuid "78fd95c7-da37-40d3-90d9-f99579747cb9") + ) + (segment + (start 114.554 89.5641) + (end 116.58645 89.5641) + (width 0.3) + (layer "F.Cu") + (net 17) + (uuid "ba401b8e-837e-4d51-a753-782cc0de0858") + ) + (segment + (start 116.58645 89.5641) + (end 122.682 95.65965) + (width 0.3) + (layer "F.Cu") + (net 17) + (uuid "d4eace96-825f-40b7-9454-659878cdd3a4") + ) + (segment + (start 122.682 103.124) + (end 124.714 103.124) + (width 0.3) + (layer "F.Cu") + (net 17) + (uuid "ed21c70b-3c47-47a3-af49-0404405a5f28") + ) + (segment + (start 126.619 98.806) + (end 126.8495 98.806) + (width 0.3) + (layer "F.Cu") + (net 18) + (uuid "1b204f04-2b58-4611-9c75-04c602b538e1") + ) + (segment + (start 126.8495 100.7055) + (end 126.982 100.838) + (width 0.3) + (layer "F.Cu") + (net 18) + (uuid "20da2d34-94d7-41ed-8f7c-5d96d6969fe0") + ) + (segment + (start 116.8771 89.0641) + (end 126.619 98.806) + (width 0.3) + (layer "F.Cu") + (net 18) + (uuid "6c798c8c-d389-4e80-bc75-c5ea2b17c7b6") + ) + (segment + (start 126.8495 98.806) + (end 126.8495 100.7055) + (width 0.3) + (layer "F.Cu") + (net 18) + (uuid "ddcb275c-8b2d-4c6c-adf1-7a66c556c108") + ) + (segment + (start 114.554 89.0641) + (end 116.8771 89.0641) + (width 0.3) + (layer "F.Cu") + (net 18) + (uuid "e69a12d0-ab71-469c-a070-73d816efd66d") + ) + (segment + (start 104.394 89.353453) + (end 104.14 89.607453) + (width 0.3) + (layer "F.Cu") + (net 19) + (uuid "171e20e3-57c2-4f9c-b091-6f1f5178bdd7") + ) + (segment + (start 104.14 89.607453) + (end 104.14 90.17) + (width 0.3) + (layer "F.Cu") + (net 19) + (uuid "37919f12-cd0a-42eb-96fd-e769bc915a18") + ) + (segment + (start 105.183353 88.5641) + (end 104.394 89.353453) + (width 0.3) + (layer "F.Cu") + (net 19) + (uuid "992f099c-5de6-4fd7-b2ac-f1399c00a42d") + ) + (segment + (start 106.229 88.5641) + (end 105.183353 88.5641) + (width 0.3) + (layer "F.Cu") + (net 19) + (uuid "eabe2a55-323d-4313-9f49-4062eed6f679") + ) + (via + (at 104.14 90.17) + (size 0.8) + (drill 0.6) + (layers "F.Cu" "B.Cu") + (net 19) + (uuid "89f189a2-9958-4449-ac00-1428a631aa10") + ) + (segment + (start 104.14 91.4) + (end 104.1 91.44) + (width 0.3) + (layer "B.Cu") + (net 19) + (uuid "13412a5e-0da4-4b89-b404-a12b25dc33ad") + ) + (segment + (start 104.14 93.472) + (end 104.14 91.48) + (width 0.3) + (layer "B.Cu") + (net 19) + (uuid "9bb6eb62-fd04-4b4d-9aff-9540dabde2d2") + ) + (segment + (start 104.14 90.17) + (end 104.14 91.4) + (width 0.3) + (layer "B.Cu") + (net 19) + (uuid "e7faceef-c486-453e-b1c5-9b6f32b7d146") + ) + (segment + (start 104.14 91.48) + (end 104.1 91.44) + (width 0.3) + (layer "B.Cu") + (net 19) + (uuid "f43f684b-525a-4fdc-b9d0-9455f7a6fbc7") + ) + (segment + (start 124.674 117.653) + (end 124.674 115.0112) + (width 3) + (layer "B.Cu") + (net 20) + (uuid "0aba87f8-7835-40db-8712-ebef9c2d2ba9") + ) + (segment + (start 124.7972 114.888) + (end 124.674 115.0112) + (width 1) + (layer "B.Cu") + (net 20) + (uuid "25a96a03-8854-44b1-93dd-6b968ba30c1d") + ) + (segment + (start 123.08 101.086) + (end 123.087 101.093) + (width 1) + (layer "B.Cu") + (net 20) + (uuid "39b0591f-17fb-4a78-a3a9-3fc024abdeb4") + ) + (segment + (start 124.674 115.0112) + (end 124.674 102.68) + (width 3) + (layer "B.Cu") + (net 20) + (uuid "504889f4-abe4-4766-8ae3-07997a4d8b4d") + ) + (segment + (start 109.474 101.086) + (end 115.774 101.086) + (width 0.3) + (layer "B.Cu") + (net 20) + (uuid "5cca7aa0-6af1-4860-b777-822b67c6efa1") + ) + (segment + (start 129.387 101.093) + (end 123.087 101.093) + (width 0.3) + (layer "B.Cu") + (net 20) + (uuid "5dd22961-231b-4cf6-ae9f-15e56c69d5b6") + ) + (segment + (start 132.334 114.888) + (end 124.7972 114.888) + (width 1) + (layer "B.Cu") + (net 20) + (uuid "6a8f2e24-08b2-46ca-98e7-c16e1c619c14") + ) + (segment + (start 115.774 101.086) + (end 123.08 101.086) + (width 1) + (layer "B.Cu") + (net 20) + (uuid "6ac58f91-1918-4c0e-8efd-6c7cd23018a2") + ) + (segment + (start 124.674 102.68) + (end 123.087 101.093) + (width 3) + (layer "B.Cu") + (net 20) + (uuid "9bc15dbf-6b33-4931-b04b-fa2fda8d4a03") + ) + (segment + (start 117.449 99.561) + (end 121.405 99.561) + (width 1) + (layer "B.Cu") + (net 20) + (uuid "b7f22a12-9056-4c41-88a6-ea359caa7ff2") + ) + (segment + (start 121.405 99.561) + (end 121.412 99.568) + (width 1) + (layer "B.Cu") + (net 20) + (uuid "c0c27d80-a233-46ed-b675-915ff3e0d444") + ) + (segment + (start 114.099 102.611) + (end 121.405 102.611) + (width 1) + (layer "B.Cu") + (net 20) + (uuid "f26592c2-1ab3-434d-8f87-d0a289ec379c") + ) + (segment + (start 121.405 102.611) + (end 121.412 102.618) + (width 1) + (layer "B.Cu") + (net 20) + (uuid "fa95b56d-b823-4dd5-ba3a-de358ce53034") + ) + (segment + (start 97.282 106.178) + (end 103.582 106.178) + (width 0.3) + (layer "B.Cu") + (net 21) + (uuid "1361b68c-03f8-4eba-b3c8-a00f50a0cc51") + ) + (segment + (start 103.582 106.178) + (end 103.582 113.74) + (width 1) + (layer "B.Cu") + (net 21) + (uuid "14ad95a0-659b-47dd-b926-4b41eea54267") + ) + (segment + (start 103.529 117.9054) + (end 105.9688 120.3452) + (width 3) + (layer "B.Cu") + (net 21) + (uuid "1cfca93d-1559-4507-a4a9-e73deaa61edb") + ) + (segment + (start 96.012 112.522) + (end 101.6 112.522) + (width 1) + (layer "B.Cu") + (net 21) + (uuid "20a1b836-8d56-45c9-b47e-baa81e1003ff") + ) + (segment + (start 91.948 112.522) + (end 96.012 112.522) + (width 1) + (layer "B.Cu") + (net 21) + (uuid "29982cae-0124-4b28-8aa1-f858ccad0c84") + ) + (segment + (start 101.907 107.703) + (end 101.907 112.215) + (width 1) + (layer "B.Cu") + (net 21) + (uuid "375380fc-d309-4ba2-a634-9c98a554a2f3") + ) + (segment + (start 116.9818 120.3452) + (end 119.674 117.653) + (width 3) + (layer "B.Cu") + (net 21) + (uuid "3e265275-6ef6-424a-bd78-cf7de0bfba40") + ) + (segment + (start 105.257 112.215) + (end 105.204 112.268) + (width 1) + (layer "B.Cu") + (net 21) + (uuid "4b7b8c67-caaa-44a3-b626-a7c47c67141b") + ) + (segment + (start 105.257 107.703) + (end 105.257 112.215) + (width 1) + (layer "B.Cu") + (net 21) + (uuid "806053fc-8e08-4373-b7bb-8735a7c380bf") + ) + (segment + (start 101.6 112.522) + (end 101.854 112.268) + (width 1) + (layer "B.Cu") + (net 21) + (uuid "8740f50f-7a00-45e5-a759-f56b086e951c") + ) + (segment + (start 103.582 113.74) + (end 103.529 113.793) + (width 1) + (layer "B.Cu") + (net 21) + (uuid "9b0981ac-643a-43c6-b3a4-e96578188603") + ) + (segment + (start 103.529 113.793) + (end 103.529 117.9054) + (width 3) + (layer "B.Cu") + (net 21) + (uuid "bb6e3915-c72f-46e0-b56d-6c79d9e15051") + ) + (segment + (start 109.829 113.793) + (end 103.529 113.793) + (width 0.3) + (layer "B.Cu") + (net 21) + (uuid "bc834099-7af1-4aab-8228-5108525b220c") + ) + (segment + (start 105.9688 120.3452) + (end 116.9818 120.3452) + (width 3) + (layer "B.Cu") + (net 21) + (uuid "d938e0a3-c385-46f8-95d9-bede1cc0780f") + ) + (segment + (start 101.907 112.215) + (end 101.854 112.268) + (width 1) + (layer "B.Cu") + (net 21) + (uuid "ed1a6f0e-05c1-4550-a5d7-cddcda7b85e3") + ) + (segment + (start 97.666 75.692) + (end 76.2508 75.692) + (width 0.5) + (layer "F.Cu") + (net 22) + (uuid "309e530e-f587-4ffd-8ba2-00d02d9d3efb") + ) + (segment + (start 75.5048 74.946) + (end 73.11 74.946) + (width 0.5) + (layer "F.Cu") + (net 22) + (uuid "634cb7f7-e83e-48bf-b2d2-1dcb3aa75d02") + ) + (segment + (start 76.2508 75.692) + (end 75.5048 74.946) + (width 0.5) + (layer "F.Cu") + (net 22) + (uuid "e8cf091d-2acb-4060-8fe5-506138f8c377") + ) + (segment + (start 74.676 72.644) + (end 81.608 72.644) + (width 0.5) + (layer "B.Cu") + (net 22) + (uuid "59941ec9-0e28-422c-80d6-e0e8eba20c8a") + ) + (segment + (start 73.11 74.21) + (end 74.676 72.644) + (width 0.5) + (layer "B.Cu") + (net 22) + (uuid "59efc9ba-551f-4b0c-9c68-d9aeee90b036") + ) + (segment + (start 79.756 74.93) + (end 79.756 74.496) + (width 0.5) + (layer "B.Cu") + (net 22) + (uuid "7bf0b1c4-80a2-4d22-8cb0-b8a4f44be8b7") + ) + (segment + (start 79.756 74.496) + (end 81.608 72.644) + (width 0.5) + (layer "B.Cu") + (net 22) + (uuid "941bf34f-e7c8-46f2-a318-ad8be8d8d1c4") + ) + (segment + (start 73.11 74.946) + (end 73.11 74.21) + (width 0.5) + (layer "B.Cu") + (net 22) + (uuid "d9b72338-cd11-47f1-9063-c55119be3668") + ) + (segment + (start 97.666 76.962) + (end 73.126 76.962) + (width 0.5) + (layer "F.Cu") + (net 23) + (uuid "b432222f-ce16-4c65-ae58-326f97355166") + ) + (segment + (start 73.126 76.962) + (end 73.11 76.946) + (width 0.5) + (layer "F.Cu") + (net 23) + (uuid "e64ee0e8-4b53-405d-b5f4-ba5ac4fecaee") + ) + (segment + (start 79.756 76.83) + (end 79.756 78.284) + (width 0.5) + (layer "B.Cu") + (net 23) + (uuid "23da8548-8d6d-4275-abfa-5f7440587432") + ) + (segment + (start 73.11 77.682) + (end 73.712 78.284) + (width 0.5) + (layer "B.Cu") + (net 23) + (uuid "6cb72a44-afcc-4353-ad46-b3597f8c39bb") + ) + (segment + (start 73.11 76.946) + (end 73.11 77.682) + (width 0.5) + (layer "B.Cu") + (net 23) + (uuid "6ed71cfa-c03f-435d-82bd-e74da53251ee") + ) + (segment + (start 73.712 78.284) + (end 79.756 78.284) + (width 0.5) + (layer "B.Cu") + (net 23) + (uuid "a236c037-70b1-4e88-a015-19c0aa05e479") + ) + (segment + (start 79.756 78.284) + (end 83.058 78.284) + (width 0.5) + (layer "B.Cu") + (net 23) + (uuid "ab61a9a7-fd0b-455f-a1b0-59007ddc52e0") + ) + (segment + (start 82.804 104.648) + (end 82.8548 104.5972) + (width 0.3) + (layer "F.Cu") + (net 24) + (uuid "a538d0f9-d58b-4544-9d6f-7bd39714587b") + ) + (segment + (start 82.804 106.125) + (end 82.804 104.648) + (width 0.3) + (layer "F.Cu") + (net 24) + (uuid "c1fdda6a-366b-4d83-a4fc-7706d4e85f68") + ) + (via + (at 82.8548 104.5972) + (size 0.8) + (drill 0.6) + (layers "F.Cu" "B.Cu") + (net 24) + (uuid "822590ec-f67b-420e-a19d-1a0092443c06") + ) + (segment + (start 82.804 104.648) + (end 75.946 104.648) + (width 0.3) + (layer "B.Cu") + (net 24) + (uuid "6f96ce1c-dade-4622-ac77-84fb79d31b32") + ) + (segment + (start 82.8548 104.5972) + (end 82.804 104.648) + (width 0.3) + (layer "B.Cu") + (net 24) + (uuid "9a887fd9-31c2-409f-b680-f5f057198138") + ) + (segment + (start 124.968 72.39) + (end 129.444 72.39) + (width 0.3) + (layer "F.Cu") + (net 25) + (uuid "5ffff44e-9629-4daf-ab5b-07786cce52aa") + ) + (segment + (start 129.444 72.39) + (end 130.81 73.756) + (width 0.3) + (layer "F.Cu") + (net 25) + (uuid "b51160a8-5718-4021-bb49-a1912d286fcb") + ) + (segment + (start 130.5936 75.756) + (end 129.032 77.3176) + (width 0.3) + (layer "F.Cu") + (net 26) + (uuid "0908d77d-9ae4-4653-8a4b-9b33c7dcf7aa") + ) + (segment + (start 130.81 75.756) + (end 130.5936 75.756) + (width 0.3) + (layer "F.Cu") + (net 26) + (uuid "49a87267-eb32-44b6-984d-8f58bd08cb25") + ) + (segment + (start 129.032 77.3176) + (end 124.7375 77.3176) + (width 0.3) + (layer "F.Cu") + (net 26) + (uuid "9b65d13c-7394-4ab6-ad0c-bdf5c9ccb37f") + ) + (segment + (start 129.4958 79.0702) + (end 130.81 77.756) + (width 0.3) + (layer "F.Cu") + (net 27) + (uuid "392dd497-2d6e-4d72-8d4f-e6a09bfe84b4") + ) + (segment + (start 124.7375 79.0702) + (end 129.4958 79.0702) + (width 0.3) + (layer "F.Cu") + (net 27) + (uuid "c62753ed-52de-4122-ba61-94562f7fe95b") + ) + (segment + (start 126.9238 89.7382) + (end 129.7752 86.8868) + (width 0.3) + (layer "F.Cu") + (net 28) + (uuid "178946f3-6e42-4163-85aa-5f94c3ef50b8") + ) + (segment + (start 126.619 92.456) + (end 126.9238 92.1512) + (width 0.3) + (layer "F.Cu") + (net 28) + (uuid "33d9f2cc-ed15-4556-a5bd-3fb719d890f2") + ) + (segment + (start 126.9238 92.1512) + (end 126.9238 89.7382) + (width 0.3) + (layer "F.Cu") + (net 28) + (uuid "636fe351-7cd1-4bfe-ad10-410c6241cc3e") + ) + (segment + (start 129.7752 86.8868) + (end 130.7084 86.8868) + (width 0.3) + (layer "F.Cu") + (net 28) + (uuid "c2ec5182-9ef6-4aaf-b4a9-bb039b043626") + ) + (segment + (start 125.4233 92.456) + (end 126.619 92.456) + (width 0.3) + (layer "F.Cu") + (net 28) + (uuid "fce404fb-b735-4033-b8c4-e59279588b66") + ) + (segment + (start 120.6871 86.5641) + (end 122.2098 88.0868) + (width 0.3) + (layer "F.Cu") + (net 29) + (uuid "1e22ba79-ece8-496b-b480-3dd343e4c1ef") + ) + (segment + (start 114.554 86.5641) + (end 120.6871 86.5641) + (width 0.3) + (layer "F.Cu") + (net 29) + (uuid "73a66562-3ea5-42e5-9c06-9907e4b3984d") + ) + (segment + (start 118.6471 87.0641) + (end 119.6698 88.0868) + (width 0.3) + (layer "F.Cu") + (net 30) + (uuid "3e6ad59a-beaa-4522-9765-18ae847b38a4") + ) + (segment + (start 114.554 87.0641) + (end 118.6471 87.0641) + (width 0.3) + (layer "F.Cu") + (net 30) + (uuid "c28af23c-eb8f-407e-b023-7cc5456e75b6") + ) + (segment + (start 114.173 81.6201) + (end 113.1415 82.6516) + (width 0.3) + (layer "F.Cu") + (net 31) + (uuid "33024f9c-c8e5-4c1d-aa3f-258f42cd23ba") + ) + (segment + (start 114.173 72.2884) + (end 114.173 81.6201) + (width 0.3) + (layer "F.Cu") + (net 31) + (uuid "7063acb7-928b-4378-b429-dcbf0a5741cc") + ) + (segment + (start 118.2116 84.1756) + (end 118.2116 83.312) + (width 0.3) + (layer "F.Cu") + (net 32) + (uuid "09ad8161-9745-4be5-ad31-847b1103670b") + ) + (segment + (start 114.554 85.0641) + (end 117.3231 85.0641) + (width 0.3) + (layer "F.Cu") + (net 32) + (uuid "ca6489ba-69b0-41eb-a6ca-40f25b3fbf3c") + ) + (segment + (start 117.3231 85.0641) + (end 118.2116 84.1756) + (width 0.3) + (layer "F.Cu") + (net 32) + (uuid "e97f244e-2ef4-4611-87e5-2781280f9c3f") + ) + (via + (at 118.2116 83.312) + (size 0.8) + (drill 0.6) + (layers "F.Cu" "B.Cu") + (net 32) + (uuid "f7a07269-1a42-4d91-aa72-8f764b8d94f0") + ) + (segment + (start 112.903 80.6704) + (end 115.5446 83.312) + (width 0.3) + (layer "B.Cu") + (net 32) + (uuid "8a18e37e-e0dc-495f-b26b-3f2e6d9586e8") + ) + (segment + (start 112.903 72.2884) + (end 112.903 80.6704) + (width 0.3) + (layer "B.Cu") + (net 32) + (uuid "f367c885-6bc4-45b1-86b1-c0a83d283b9b") + ) + (segment + (start 115.5446 83.312) + (end 118.2116 83.312) + (width 0.3) + (layer "B.Cu") + (net 32) + (uuid "f3b8ad3e-4b27-4a4f-b621-e1dd5d3f0d0d") + ) + (segment + (start 110.363 71.755) + (end 110.998 71.12) + (width 0.3) + (layer "F.Cu") + (net 33) + (uuid "24bebb4b-c652-4fd1-a643-376af324ce0c") + ) + (segment + (start 110.998 71.12) + (end 116.793 71.12) + (width 0.3) + (layer "F.Cu") + (net 33) + (uuid "3da0154d-ef97-46bc-aab6-33f2862e8557") + ) + (segment + (start 116.793 71.12) + (end 118.063 72.39) + (width 0.3) + (layer "F.Cu") + (net 33) + (uuid "a3b26183-d968-4079-9a0b-c47d9123fef7") + ) + (segment + (start 110.363 72.2884) + (end 110.363 71.755) + (width 0.3) + (layer "F.Cu") + (net 33) + (uuid "a7c65463-0eb7-4531-a5c6-9ebbfda945fa") + ) + (segment + (start 109.093 73.9394) + (end 109.093 72.2884) + (width 0.3) + (layer "F.Cu") + (net 34) + (uuid "263a5693-33fc-4d7b-9e96-b09bcf7b7007") + ) + (segment + (start 109.6415 79.502) + (end 109.6415 82.6516) + (width 0.3) + (layer "F.Cu") + (net 34) + (uuid "752fbac7-fe53-48cb-b131-8161c325c06b") + ) + (segment + (start 109.6415 79.502) + (end 109.6415 74.4879) + (width 0.3) + (layer "F.Cu") + (net 34) + (uuid "85359493-bd0b-4eb9-a8af-fc71eb450936") + ) + (segment + (start 110.744 79.502) + (end 109.6415 79.502) + (width 0.3) + (layer "F.Cu") + (net 34) + (uuid "8c904424-85b0-42e2-ae68-7443c889ac1b") + ) + (segment + (start 109.6415 74.4879) + (end 109.093 73.9394) + (width 0.3) + (layer "F.Cu") + (net 34) + (uuid "9b17dbe0-aa2f-4d95-a0f8-23ca7f3c1a35") + ) + (segment + (start 106.229 87.0641) + (end 103.6899 87.0641) + (width 0.3) + (layer "F.Cu") + (net 35) + (uuid "87aae000-35ff-4654-b557-0836ae6ab3ac") + ) + (segment + (start 103.6899 87.0641) + (end 103.378 87.376) + (width 0.3) + (layer "F.Cu") + (net 35) + (uuid "e7566a3b-8dfc-422e-911d-29c816475a9d") + ) + (via + (at 103.378 87.376) + (size 0.8) + (drill 0.6) + (layers "F.Cu" "B.Cu") + (net 35) + (uuid "0021e00f-9848-4cc7-b2b3-5b783831ffdd") + ) + (segment + (start 103.378 82.042) + (end 103.378 87.376) + (width 0.3) + (layer "B.Cu") + (net 35) + (uuid "0caaa924-39a3-4d3e-8c86-463116c29a32") + ) + (segment + (start 107.823 77.597) + (end 103.378 82.042) + (width 0.3) + (layer "B.Cu") + (net 35) + (uuid "4e394a84-e1e2-4922-b82f-4e7e6233f49a") + ) + (segment + (start 107.823 72.2884) + (end 107.823 77.597) + (width 0.3) + (layer "B.Cu") + (net 35) + (uuid "a0561350-70f0-4a9f-8eac-ccdb6ac52c09") + ) + (segment + (start 83.058 72.644) + (end 83.058 75.184) + (width 0.5) + (layer "B.Cu") + (net 36) + (uuid "540cdb93-4d16-4672-a47e-3ceb0a99ff0b") + ) + (segment + (start 115.5446 102.108) + (end 113.3246 104.328) + (width 0.3) + (layer "F.Cu") + (net 37) + (uuid "9d4754c8-2357-4790-898b-37d012a26ce5") + ) + (segment + (start 115.5446 99.5172) + (end 115.5446 102.108) + (width 0.3) + (layer "F.Cu") + (net 37) + (uuid "9d825433-1c7e-42cb-8260-a511e34ada07") + ) + (segment + (start 114.3762 98.3488) + (end 115.5446 99.5172) + (width 0.3) + (layer "F.Cu") + (net 37) + (uuid "f10ea05c-b7ed-4686-9a6d-fa1196d19351") + ) + (segment + (start 113.3246 104.328) + (end 112.474 104.328) + (width 0.3) + (layer "F.Cu") + (net 37) + (uuid "fc1fac61-af67-4568-bce7-ac6686d50581") + ) + (segment + (start 109.474 103.378) + (end 109.474 105.3338) + (width 0.3) + (layer "F.Cu") + (net 38) + (uuid "5a6d2538-7bc1-4749-a1e7-3a2355b1da03") + ) + (segment + (start 109.474 105.3338) + (end 109.855 105.7148) + (width 0.3) + (layer "F.Cu") + (net 38) + (uuid "a2fc48f9-b0c0-4502-a622-2882e372564d") + ) + (via + (at 109.855 105.7148) + (size 0.8) + (drill 0.6) + (layers "F.Cu" "B.Cu") + (net 38) + (uuid "1174b2ac-84be-4582-8ab7-86e15be674b2") + ) + (segment + (start 109.474 103.366) + (end 108.6219 103.366) + (width 0.3) + (layer "B.Cu") + (net 38) + (uuid "0d3856d9-c457-40b1-b9aa-25d983061516") + ) + (segment + (start 109.855 103.747) + (end 109.474 103.366) + (width 0.3) + (layer "B.Cu") + (net 38) + (uuid "c552c3a2-9abc-4118-a8cc-7456cfb51a03") + ) + (segment + (start 109.855 105.7148) + (end 109.855 103.747) + (width 0.3) + (layer "B.Cu") + (net 38) + (uuid "dc445b06-218f-42c5-b8da-847087a55f03") + ) + (segment + (start 108.6219 103.366) + (end 106.8559 101.6) + (width 0.3) + (layer "B.Cu") + (net 38) + (uuid "f30b43d9-7a4e-4b49-8cbd-a93431deea72") + ) + (segment + (start 109.474 98.806) + (end 106.354 98.806) + (width 1.5) + (layer "B.Cu") + (net 39) + (uuid "78afda12-0045-4c0f-9dc7-039f6e2ec8f7") + ) + (segment + (start 103.36 98.806) + (end 103.312 98.758) + (width 0.3) + (layer "B.Cu") + (net 39) + (uuid "9f4277c4-84cd-4403-b619-4068ff0c1341") + ) + (segment + (start 106.354 98.806) + (end 103.36 98.806) + (width 0.3) + (layer "B.Cu") + (net 39) + (uuid "fb75311c-c4c2-4c74-9c73-ce35839cf74a") + ) + (segment + (start 129.333 96.52) + (end 129.333 98.759) + (width 0.3) + (layer "B.Cu") + (net 40) + (uuid "700fe733-2798-456a-9251-e4ea619467c1") + ) + (segment + (start 129.333 98.759) + (end 129.387 98.813) + (width 0.3) + (layer "B.Cu") + (net 40) + (uuid "e2fa8069-74d0-4d5d-9c3c-3b990516a5db") + ) + (segment + (start 102.156 108.646) + (end 95.7428 108.646) + (width 0.3) + (layer "F.Cu") + (net 41) + (uuid "633250ef-3bfc-4fa1-85ca-3ebdd568151e") + ) + (segment + (start 95.7428 108.646) + (end 95.0214 107.9246) + (width 0.3) + (layer "F.Cu") + (net 41) + (uuid "914fda78-5800-4432-a4bf-ff246fe8fc0f") + ) + (via + (at 95.0214 107.9246) + (size 0.8) + (drill 0.6) + (layers "F.Cu" "B.Cu") + (net 41) + (uuid "5f0680c8-43ec-459a-b6c1-0bc72a6747e8") + ) + (segment + (start 94.3356 105.711) + (end 94.3356 107.2388) + (width 0.3) + (layer "B.Cu") + (net 41) + (uuid "09e3937b-b757-4a18-9fc9-0ed5f80e47e6") + ) + (segment + (start 97.282 108.458) + (end 95.5548 108.458) + (width 0.3) + (layer "B.Cu") + (net 41) + (uuid "75a97593-7ccc-4c8f-98ab-09570e6576c6") + ) + (segment + (start 95.0214 107.9246) + (end 94.3356 107.2388) + (width 0.3) + (layer "B.Cu") + (net 41) + (uuid "9c0519e4-d630-4d28-ba7e-c5558ff023c0") + ) + (segment + (start 95.5548 108.458) + (end 95.0214 107.9246) + (width 0.3) + (layer "B.Cu") + (net 41) + (uuid "d2b72027-0e3a-4723-8fa9-bacc7517f5cf") + ) + (segment + (start 109.829 111.513) + (end 112.261 111.513) + (width 0.3) + (layer "B.Cu") + (net 42) + (uuid "f45df894-2f5c-4240-a942-6d1a779540b8") + ) + (segment + (start 112.261 111.513) + (end 112.268 111.506) + (width 0.3) + (layer "B.Cu") + (net 42) + (uuid "fe9e4fc2-1ec1-4c6f-b379-bd66e775e704") + ) + (segment + (start 107.273 109.596) + (end 107.395 109.474) + (width 0.3) + (layer "F.Cu") + (net 43) + (uuid "c437a4f1-4eca-4eed-976f-08ea0e2d8672") + ) + (segment + (start 105.156 109.596) + (end 107.273 109.596) + (width 0.3) + (layer "F.Cu") + (net 43) + (uuid "ee34e628-e894-48b7-b50b-54dcbea788b2") + ) + (segment + (start 121.8946 77.3176) + (end 122.9125 77.3176) + (width 0.3) + (layer "F.Cu") + (net 44) + (uuid "1194df6a-bd0e-441a-a529-a048ae424187") + ) + (segment + (start 121.5771 81.7499) + (end 121.5771 77.6351) + (width 0.3) + (layer "F.Cu") + (net 44) + (uuid "12915149-1c54-4965-9af2-8876a47af834") + ) + (segment + (start 117.7629 85.5641) + (end 121.5771 81.7499) + (width 0.3) + (layer "F.Cu") + (net 44) + (uuid "40235aff-97a3-4771-b1dd-c3dfce836d89") + ) + (segment + (start 121.5771 77.6351) + (end 121.8946 77.3176) + (width 0.3) + (layer "F.Cu") + (net 44) + (uuid "78808dce-72e7-4675-9e9a-bbe8b24f6c6c") + ) + (segment + (start 114.554 85.5641) + (end 117.7629 85.5641) + (width 0.3) + (layer "F.Cu") + (net 44) + (uuid "c26e54bd-9df4-4fec-b636-8ad26a0eb922") + ) + (segment + (start 122.9125 79.0702) + (end 122.9125 81.4051) + (width 0.3) + (layer "F.Cu") + (net 45) + (uuid "61e2e6ec-3c18-453f-b0c4-80e0b98441b5") + ) + (segment + (start 122.9125 81.4051) + (end 118.2535 86.0641) + (width 0.3) + (layer "F.Cu") + (net 45) + (uuid "a1cc2d5f-c040-48cf-b665-330639e73a80") + ) + (segment + (start 118.2535 86.0641) + (end 114.554 86.0641) + (width 0.3) + (layer "F.Cu") + (net 45) + (uuid "d0882fb3-1236-4ef6-befc-e282f4ea115c") + ) + (segment + (start 121.031 92.456) + (end 117.1391 88.5641) + (width 0.3) + (layer "F.Cu") + (net 46) + (uuid "2737d795-015e-4f26-ae55-46eebc1b089e") + ) + (segment + (start 117.1391 88.5641) + (end 114.554 88.5641) + (width 0.3) + (layer "F.Cu") + (net 46) + (uuid "9280df40-f92a-4295-87ee-56ea343697bc") + ) + (segment + (start 123.5983 92.456) + (end 121.031 92.456) + (width 0.3) + (layer "F.Cu") + (net 46) + (uuid "955f8689-e450-431a-91e4-ed4ef45cd7f5") + ) + (segment + (start 120.015 90.678) + (end 117.4011 88.0641) + (width 0.3) + (layer "F.Cu") + (net 47) + (uuid "8cb0c696-a629-4044-9ca3-c7c6ef2a8cec") + ) + (segment + (start 123.651 90.678) + (end 120.015 90.678) + (width 0.3) + (layer "F.Cu") + (net 47) + (uuid "a2dffa72-7a0e-4688-84cf-798615fc95fc") + ) + (segment + (start 117.4011 88.0641) + (end 114.554 88.0641) + (width 0.3) + (layer "F.Cu") + (net 47) + (uuid "b7c8ae3f-0954-4e0a-9b08-703ffd066e64") + ) + (segment + (start 102.315 95.711) + (end 102.362 95.758) + (width 0.3) + (layer "B.Cu") + (net 48) + (uuid "713a922f-7974-4163-bd4e-9dedfabfd9c8") + ) + (segment + (start 102.315 93.472) + (end 102.315 95.711) + (width 0.3) + (layer "B.Cu") + (net 48) + (uuid "88a0a5de-107d-4914-9165-ed65a4fa4974") + ) + (segment + (start 102.362 95.758) + (end 105.363 95.758) + (width 0.3) + (layer "B.Cu") + (net 48) + (uuid "e0f27e62-43e5-4131-b8bd-b4d49a04a587") + ) + (segment + (start 112.5258 100.0252) + (end 112.5258 98.3742) + (width 0.3) + (layer "F.Cu") + (net 49) + (uuid "20410b15-dbc5-4d04-89f1-c907f62b8845") + ) + (segment + (start 112.5512 98.3488) + (end 112.5512 97.362) + (width 0.3) + (layer "F.Cu") + (net 49) + (uuid "4bb41e75-dee7-453c-9c48-a44f34cfcb83") + ) + (segment + (start 111.0234 95.8342) + (end 109.7342 95.8342) + (width 0.3) + (layer "F.Cu") + (net 49) + (uuid "57a87a2d-2256-43bd-8b97-656d1b6a9c97") + ) + (segment + (start 106.229 89.5641) + (end 106.229 92.329) + (width 0.3) + (layer "F.Cu") + (net 49) + (uuid "74f2ed2b-6961-4a26-a715-830b1eb873e5") + ) + (segment + (start 112.5258 98.3742) + (end 112.5512 98.3488) + (width 0.3) + (layer "F.Cu") + (net 49) + (uuid "96eb3942-1c10-4d8d-82f9-c6e3219bb030") + ) + (segment + (start 109.7342 95.8342) + (end 106.229 92.329) + (width 0.3) + (layer "F.Cu") + (net 49) + (uuid "a687da87-a2bd-4dc4-a413-a0ae83f0d0bf") + ) + (segment + (start 112.5512 97.362) + (end 111.0234 95.8342) + (width 0.3) + (layer "F.Cu") + (net 49) + (uuid "cd436159-572f-4d70-aba3-22007636ada3") + ) + (segment + (start 109.6415 92.4457) + (end 110.1344 92.9386) + (width 0.3) + (layer "F.Cu") + (net 50) + (uuid "163ed787-8b13-42c8-93fb-2c49f793afa1") + ) + (segment + (start 119.4054 96.012) + (end 119.9388 96.5454) + (width 0.3) + (layer "F.Cu") + (net 50) + (uuid "26c1f16f-493c-4e33-86c9-4f9092744a8d") + ) + (segment + (start 115.7478 96.012) + (end 117.856 96.012) + (width 0.3) + (layer "F.Cu") + (net 50) + (uuid "53ffc247-8fec-47a3-9bc7-d10652f758aa") + ) + (segment + (start 117.856 96.012) + (end 119.4054 96.012) + (width 0.3) + (layer "F.Cu") + (net 50) + (uuid "6c94b364-97d7-4675-853a-028451eac6d8") + ) + (segment + (start 110.1344 92.9386) + (end 112.6744 92.9386) + (width 0.3) + (layer "F.Cu") + (net 50) + (uuid "73808e54-bf2b-49e3-839d-f0153ff586c9") + ) + (segment + (start 109.6415 90.9766) + (end 109.6415 92.4457) + (width 0.3) + (layer "F.Cu") + (net 50) + (uuid "e78c460b-0365-4db4-af7e-0419030cda70") + ) + (segment + (start 112.6744 92.9386) + (end 115.7478 96.012) + (width 0.3) + (layer "F.Cu") + (net 50) + (uuid "f1b4a534-0633-4666-8097-5a7704cfb162") + ) + (via + (at 119.9388 96.5454) + (size 0.8) + (drill 0.6) + (layers "F.Cu" "B.Cu") + (net 50) + (uuid "46536cb4-77fd-46a5-9a79-7fbe1adc554d") + ) + (segment + (start 127.508 94.742) + (end 127.508 96.52) + (width 0.3) + (layer "B.Cu") + (net 50) + (uuid "3764e22c-48e6-4787-b1d6-e0d9318ef35a") + ) + (segment + (start 127.508 96.52) + (end 119.9642 96.52) + (width 0.3) + (layer "B.Cu") + (net 50) + (uuid "3dd6812f-e9f3-4bc9-9725-15a47f364eed") + ) + (segment + (start 119.9642 96.52) + (end 119.9388 96.5454) + (width 0.3) + (layer "B.Cu") + (net 50) + (uuid "be2a1ac8-25ca-45bd-a0fb-7ecf429a392d") + ) + (segment + (start 112.4458 93.4974) + (end 116.8019 97.8535) + (width 0.3) + (layer "F.Cu") + (net 51) + (uuid "30553154-c83d-4077-910a-2b4a7537769e") + ) + (segment + (start 109.1415 90.9766) + (end 109.1415 92.7839) + (width 0.3) + (layer "F.Cu") + (net 51) + (uuid "4dbc0521-fa0b-4fa4-869e-a83effd60e5d") + ) + (segment + (start 114.0206 106.7054) + (end 116.8019 103.9241) + (width 0.3) + (layer "F.Cu") + (net 51) + (uuid "577875b6-4586-4d7e-b9e8-e18912096f8e") + ) + (segment + (start 114.046 107.696) + (end 114.0206 107.6706) + (width 0.3) + (layer "F.Cu") + (net 51) + (uuid "5dde64b9-648e-4c4e-ba12-58082cf1668e") + ) + (segment + (start 116.8019 103.9241) + (end 116.8019 97.8535) + (width 0.3) + (layer "F.Cu") + (net 51) + (uuid "bf788736-1d69-4649-83ef-9d79c721a4c6") + ) + (segment + (start 114.0206 108.966) + (end 114.0206 107.6706) + (width 0.3) + (layer "F.Cu") + (net 51) + (uuid "d322e8ff-b3b0-410b-b0a9-2e0e9bebc49b") + ) + (segment + (start 114.0206 107.6706) + (end 114.0206 106.7054) + (width 0.3) + (layer "F.Cu") + (net 51) + (uuid "db4d6bfc-f7e0-47e7-aaa7-a66977b293d0") + ) + (segment + (start 109.1415 92.7839) + (end 109.855 93.4974) + (width 0.3) + (layer "F.Cu") + (net 51) + (uuid "e5d99e5e-2f3b-4958-8632-4a07a21ad079") + ) + (segment + (start 109.855 93.4974) + (end 112.4458 93.4974) + (width 0.3) + (layer "F.Cu") + (net 51) + (uuid "f5977056-88a7-4f2e-8a8a-a5693a07fd08") + ) + (segment + (start 117.856 107.696) + (end 114.046 107.696) + (width 0.3) + (layer "F.Cu") + (net 51) + (uuid "ffd29bb6-9a8f-4064-9dc7-1b3535a49bed") + ) + (via + (at 114.0206 108.966) + (size 0.8) + (drill 0.6) + (layers "F.Cu" "B.Cu") + (net 51) + (uuid "a2009a85-ee5b-4950-9497-359cbb247849") + ) + (segment + (start 114.0714 111.5276) + (end 114.093 111.506) + (width 0.3) + (layer "B.Cu") + (net 51) + (uuid "134893cb-8ece-4803-92c7-32f691762818") + ) + (segment + (start 114.0206 108.966) + (end 114.0206 111.4336) + (width 0.3) + (layer "B.Cu") + (net 51) + (uuid "53eb09bf-eda7-4331-908e-0b01fad18614") + ) + (segment + (start 114.0206 111.4336) + (end 114.093 111.506) + (width 0.3) + (layer "B.Cu") + (net 51) + (uuid "ddd49db1-1645-44e5-aaf0-fc685d56dcf7") + ) + (segment + (start 114.0714 113.0554) + (end 114.0714 111.5276) + (width 0.3) + (layer "B.Cu") + (net 51) + (uuid "ed8b6495-1707-470b-9802-92dd8839cc54") + ) + (segment + (start 116.1796 103.4288) + (end 111.9124 107.696) + (width 0.3) + (layer "F.Cu") + (net 52) + (uuid "320089bb-9e1c-4416-8eb1-ea37bfb8d45d") + ) + (segment + (start 109.601 94.0054) + (end 112.0648 94.0054) + (width 0.3) + (layer "F.Cu") + (net 52) + (uuid "7892bf90-6d24-4839-b5f8-0e78947be19e") + ) + (segment + (start 116.1796 98.1202) + (end 116.1796 103.4288) + (width 0.3) + (layer "F.Cu") + (net 52) + (uuid "95ef2de4-991d-4267-8421-83b32b0f5190") + ) + (segment + (start 109.1165 107.696) + (end 111.9124 107.696) + (width 0.3) + (layer "F.Cu") + (net 52) + (uuid "9e84c00a-5955-4a0d-9f70-a3cb4a53a7f5") + ) + (segment + (start 107.6415 92.0459) + (end 109.601 94.0054) + (width 0.3) + (layer "F.Cu") + (net 52) + (uuid "aabc7eda-4871-4e1a-a610-6d0ab29a5d15") + ) + (segment + (start 109.1165 107.696) + (end 109.1165 109.3705) + (width 0.3) + (layer "F.Cu") + (net 52) + (uuid "b7ef7263-60ee-45b3-a27f-db486b13215a") + ) + (segment + (start 109.1165 109.3705) + (end 109.22 109.474) + (width 0.3) + (layer "F.Cu") + (net 52) + (uuid "bcdc568e-2f73-4d00-8c23-7084cc1721df") + ) + (segment + (start 107.6415 90.9766) + (end 107.6415 92.0459) + (width 0.3) + (layer "F.Cu") + (net 52) + (uuid "d26450be-4c56-48b1-b3fd-77ccafa86354") + ) + (segment + (start 112.0648 94.0054) + (end 116.1796 98.1202) + (width 0.3) + (layer "F.Cu") + (net 52) + (uuid "f845105c-9a04-4611-bdd0-c4a87af86c60") + ) + (segment + (start 109.1415 77.5185) + (end 106.045 74.422) + (width 0.3) + (layer "F.Cu") + (net 63) + (uuid "8a351182-9917-4875-b8ef-62c3f1cebf15") + ) + (segment + (start 106.045 74.422) + (end 102.616 74.422) + (width 0.3) + (layer "F.Cu") + (net 63) + (uuid "9efce8c4-1f4c-45a9-b1dc-9693469f010b") + ) + (segment + (start 109.1415 82.6516) + (end 109.1415 77.5185) + (width 0.3) + (layer "F.Cu") + (net 63) + (uuid "ca7a03bc-689a-4183-aa83-7d955dfeccfd") + ) + (segment + (start 108.6415 82.6516) + (end 108.6415 78.9997) + (width 0.3) + (layer "F.Cu") + (net 64) + (uuid "29a937e9-207f-4eba-a813-31105e524a0e") + ) + (segment + (start 103.3018 78.232) + (end 102.616 78.232) + (width 0.3) + (layer "F.Cu") + (net 64) + (uuid "3a61e7b1-5365-4124-add6-4be12b3365d2") + ) + (segment + (start 103.7209 78.6511) + (end 103.3018 78.232) + (width 0.3) + (layer "F.Cu") + (net 64) + (uuid "6d160411-43ed-4633-9950-a2759feacfcd") + ) + (segment + (start 108.2929 78.6511) + (end 103.7209 78.6511) + (width 0.3) + (layer "F.Cu") + (net 64) + (uuid "e77f1f49-6987-4c0e-aee8-759b3fb748c9") + ) + (segment + (start 108.6415 78.9997) + (end 108.2929 78.6511) + (width 0.3) + (layer "F.Cu") + (net 64) + (uuid "f7d958b6-3a9a-402e-9082-e23ec4bfa593") + ) + (segment + (start 125.476 90.1192) + (end 125.476 90.678) + (width 0.3) + (layer "F.Cu") + (net 73) + (uuid "9714b376-0c45-457b-8df8-6c9408f2f214") + ) + (segment + (start 130.7084 84.8868) + (end 125.476 90.1192) + (width 0.3) + (layer "F.Cu") + (net 73) + (uuid "e2563e98-8ec2-4621-adc2-00ea44495b73") + ) + (zone + (net 2) + (net_name "GND") + (layers "F&B.Cu") + (uuid "94dda6be-53d4-4124-adde-3ea3b25f01b8") + (hatch edge 0.5) + (connect_pads + (clearance 0.5) + ) + (min_thickness 0.25) + (filled_areas_thickness no) + (fill yes + (thermal_gap 0.5) + (thermal_bridge_width 0.5) + ) + (polygon + (pts + (xy 70.5 70.5) (xy 136.5 70.5) (xy 136.5 124.5) (xy 70.5 124.5) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 110.215231 70.770185) (xy 110.260986 70.822989) (xy 110.27093 70.892147) (xy 110.241905 70.955703) + (xy 110.235892 70.962161) (xy 109.96717 71.230882) (xy 109.963484 71.234569) (xy 109.950911 71.244644) + (xy 109.951065 71.24483) (xy 109.945058 71.249798) (xy 109.896468 71.301542) (xy 109.895114 71.302938) + (xy 109.87409 71.323963) (xy 109.874078 71.323977) (xy 109.869587 71.329765) (xy 109.865801 71.334197) + (xy 109.832552 71.369606) (xy 109.822322 71.388213) (xy 109.811644 71.404467) (xy 109.802528 71.41622) + (xy 109.745887 71.457128) (xy 109.67612 71.46092) (xy 109.646094 71.44958) (xy 109.477732 71.359588) + (xy 109.477729 71.359587) (xy 109.477727 71.359586) (xy 109.289132 71.302376) (xy 109.289129 71.302375) + (xy 109.093 71.283059) (xy 108.89687 71.302375) (xy 108.708266 71.359588) (xy 108.534465 71.452487) + (xy 108.529405 71.455869) (xy 108.528314 71.454236) (xy 108.472317 71.478) (xy 108.403453 71.466187) + (xy 108.386844 71.455509) (xy 108.386601 71.455874) (xy 108.38154 71.452491) (xy 108.381538 71.45249) + (xy 108.363698 71.442954) (xy 108.20773 71.359587) (xy 108.019129 71.302375) (xy 107.823 71.283059) + (xy 107.62687 71.302375) (xy 107.438266 71.359588) (xy 107.264467 71.452486) (xy 107.26446 71.45249) + (xy 107.112116 71.577516) (xy 106.98709 71.72986) (xy 106.987086 71.729867) (xy 106.894188 71.903666) + (xy 106.836975 72.09227) (xy 106.817659 72.2884) (xy 106.836975 72.484529) (xy 106.836976 72.484532) + (xy 106.892024 72.666001) (xy 106.894188 72.673133) (xy 106.987086 72.846932) (xy 106.98709 72.846939) + (xy 107.112116 72.999283) (xy 107.26446 73.124309) (xy 107.264467 73.124313) (xy 107.438266 73.217211) + (xy 107.438269 73.217211) (xy 107.438273 73.217214) (xy 107.626868 73.274424) (xy 107.823 73.293741) + (xy 108.019132 73.274424) (xy 108.207727 73.217214) (xy 108.260046 73.189248) (xy 108.328448 73.175006) + (xy 108.393692 73.200005) (xy 108.435063 73.25631) (xy 108.4425 73.298606) (xy 108.4425 73.853894) + (xy 108.440732 73.869905) (xy 108.440974 73.869928) (xy 108.440239 73.877694) (xy 108.442469 73.948635) + (xy 108.4425 73.950583) (xy 108.4425 73.98032) (xy 108.442501 73.98034) (xy 108.443418 73.987606) + (xy 108.443876 73.993424) (xy 108.445402 74.041967) (xy 108.445403 74.04197) (xy 108.451323 74.062348) + (xy 108.455268 74.081396) (xy 108.457928 74.102454) (xy 108.457931 74.102464) (xy 108.475813 74.14763) + (xy 108.477705 74.153158) (xy 108.491254 74.199795) (xy 108.491255 74.199797) (xy 108.50206 74.218066) + (xy 108.510617 74.235534) (xy 108.516226 74.2497) (xy 108.518432 74.255272) (xy 108.546983 74.29457) + (xy 108.550188 74.299449) (xy 108.574919 74.341265) (xy 108.574923 74.341269) (xy 108.589925 74.356271) + (xy 108.602563 74.371069) (xy 108.615033 74.388233) (xy 108.615036 74.388236) (xy 108.615037 74.388237) + (xy 108.652476 74.419209) (xy 108.656776 74.423122) (xy 108.807055 74.573401) (xy 108.954681 74.721027) + (xy 108.988166 74.78235) (xy 108.991 74.808708) (xy 108.991 76.148691) (xy 108.971315 76.21573) + (xy 108.918511 76.261485) (xy 108.849353 76.271429) (xy 108.785797 76.242404) (xy 108.779319 76.236372) + (xy 106.565434 74.022488) (xy 106.555361 74.009914) (xy 106.555174 74.01007) (xy 106.550198 74.004055) + (xy 106.517382 73.97324) (xy 106.498432 73.955445) (xy 106.497058 73.954112) (xy 106.476035 73.933089) + (xy 106.47024 73.928594) (xy 106.465798 73.924799) (xy 106.430396 73.891554) (xy 106.430388 73.891548) + (xy 106.411792 73.881325) (xy 106.395531 73.870644) (xy 106.378763 73.857637) (xy 106.350715 73.8455) + (xy 106.334178 73.838343) (xy 106.328956 73.835786) (xy 106.286368 73.812373) (xy 106.286365 73.812372) + (xy 106.265801 73.807092) (xy 106.247396 73.80079) (xy 106.227927 73.792365) (xy 106.227921 73.792363) + (xy 106.179951 73.784766) (xy 106.174236 73.783582) (xy 106.157772 73.779355) (xy 106.12718 73.7715) + (xy 106.127177 73.7715) (xy 106.105955 73.7715) (xy 106.086555 73.769973) (xy 106.065596 73.766653) + (xy 106.065595 73.766653) (xy 106.041786 73.768903) (xy 106.01723 73.771225) (xy 106.011392 73.7715) + (xy 103.906516 73.7715) (xy 103.843395 73.754232) (xy 103.701396 73.670255) (xy 103.701393 73.670254) + (xy 103.543573 73.624402) (xy 103.543567 73.624401) (xy 103.506701 73.6215) (xy 103.506694 73.6215) + (xy 101.725306 73.6215) (xy 101.725298 73.6215) (xy 101.688432 73.624401) (xy 101.688426 73.624402) + (xy 101.530606 73.670254) (xy 101.530603 73.670255) (xy 101.389137 73.753917) (xy 101.389129 73.753923) + (xy 101.272923 73.870129) (xy 101.272917 73.870137) (xy 101.189255 74.011603) (xy 101.189254 74.011606) + (xy 101.143402 74.169426) (xy 101.143401 74.169432) (xy 101.1405 74.206298) (xy 101.1405 74.637701) + (xy 101.143401 74.674567) (xy 101.143402 74.674573) (xy 101.17606 74.786981) (xy 101.175861 74.856851) + (xy 101.137919 74.915521) (xy 101.07428 74.944364) (xy 101.071398 74.944735) (xy 101.067422 74.945201) + (xy 101.065619 74.945385) (xy 100.989999 74.952001) (xy 100.982932 74.95346) (xy 100.98292 74.953404) + (xy 100.975563 74.955035) (xy 100.975577 74.955092) (xy 100.96854 74.95676) (xy 100.897185 74.982729) + (xy 100.895485 74.98332) (xy 100.823468 75.007185) (xy 100.816926 75.010236) (xy 100.816901 75.010183) + (xy 100.810108 75.013471) (xy 100.810134 75.013523) (xy 100.80368 75.016764) (xy 100.740268 75.05847) + (xy 100.738748 75.059439) (xy 100.674148 75.099285) (xy 100.668483 75.103765) (xy 100.668447 75.103719) + (xy 100.662598 75.108484) (xy 100.662635 75.108528) (xy 100.657105 75.113168) (xy 100.604997 75.168398) + (xy 100.603741 75.16969) (xy 100.047558 75.725872) (xy 100.033929 75.737651) (xy 100.014668 75.75199) + (xy 99.981098 75.791997) (xy 99.977453 75.795976) (xy 99.971607 75.801823) (xy 99.951818 75.826851) + (xy 99.950681 75.828247) (xy 99.901894 75.88639) (xy 99.897929 75.892419) (xy 99.897882 75.892388) + (xy 99.89383 75.898747) (xy 99.893879 75.898777) (xy 99.890089 75.904921) (xy 99.858012 75.97371) + (xy 99.857227 75.975331) (xy 99.823157 76.043172) (xy 99.820688 76.049957) (xy 99.820632 76.049936) + (xy 99.81816 76.05705) (xy 99.818215 76.057069) (xy 99.815943 76.063925) (xy 99.800591 76.13827) + (xy 99.800201 76.140028) (xy 99.782699 76.213879) (xy 99.781861 76.221054) (xy 99.781801 76.221047) + (xy 99.781035 76.228545) (xy 99.781095 76.228551) (xy 99.780465 76.23574) (xy 99.782674 76.31163) + (xy 99.7827 76.313433) (xy 99.7827 78.555569) (xy 99.763015 78.622608) (xy 99.746381 78.64325) (xy 98.912451 79.477181) + (xy 98.851128 79.510666) (xy 98.82477 79.5135) (xy 86.677705 79.5135) (xy 86.659735 79.512191) (xy 86.635972 79.50871) + (xy 86.590533 79.512686) (xy 86.583931 79.513264) (xy 86.57853 79.5135) (xy 86.570283 79.5135) (xy 86.538606 79.517202) + (xy 86.536832 79.517384) (xy 86.50639 79.520047) (xy 86.461198 79.524001) (xy 86.454132 79.52546) + (xy 86.45412 79.525404) (xy 86.446763 79.527035) (xy 86.446777 79.527092) (xy 86.43974 79.52876) + (xy 86.368385 79.554729) (xy 86.366685 79.55532) (xy 86.294668 79.579185) (xy 86.288126 79.582236) + (xy 86.288101 79.582183) (xy 86.281308 79.585471) (xy 86.281334 79.585523) (xy 86.27488 79.588764) + (xy 86.211468 79.63047) (xy 86.209948 79.631439) (xy 86.145348 79.671285) (xy 86.139683 79.675765) + (xy 86.139647 79.675719) (xy 86.133798 79.680484) (xy 86.133835 79.680528) (xy 86.128305 79.685168) + (xy 86.076214 79.74038) (xy 86.074958 79.741673) (xy 85.366358 80.450272) (xy 85.352729 80.462051) + (xy 85.333468 80.47639) (xy 85.299898 80.516397) (xy 85.296253 80.520376) (xy 85.290407 80.526223) + (xy 85.270618 80.551251) (xy 85.269481 80.552647) (xy 85.220694 80.61079) (xy 85.216729 80.616819) + (xy 85.216682 80.616788) (xy 85.21263 80.623147) (xy 85.212679 80.623177) (xy 85.208889 80.629321) + (xy 85.176812 80.69811) (xy 85.176027 80.699731) (xy 85.141957 80.767572) (xy 85.139488 80.774357) + (xy 85.139432 80.774336) (xy 85.13696 80.78145) (xy 85.137015 80.781469) (xy 85.134743 80.788325) + (xy 85.119391 80.86267) (xy 85.119001 80.864428) (xy 85.101499 80.938279) (xy 85.100661 80.945454) + (xy 85.100601 80.945447) (xy 85.099835 80.952945) (xy 85.099895 80.952951) (xy 85.099265 80.96014) + (xy 85.101474 81.03603) (xy 85.1015 81.037833) (xy 85.1015 81.921948) (xy 85.081815 81.988987) (xy 85.065181 82.009629) + (xy 85.057629 82.017181) (xy 84.996306 82.050666) (xy 84.969948 82.0535) (xy 84.645705 82.0535) + (xy 84.627735 82.052191) (xy 84.603972 82.04871) (xy 84.559512 82.052601) (xy 84.551931 82.053264) + (xy 84.54653 82.0535) (xy 84.538283 82.0535) (xy 84.506606 82.057202) (xy 84.504832 82.057384) (xy 84.47439 82.060047) + (xy 84.429198 82.064001) (xy 84.422132 82.06546) (xy 84.42212 82.065404) (xy 84.414763 82.067035) + (xy 84.414777 82.067092) (xy 84.40774 82.06876) (xy 84.336385 82.094729) (xy 84.334685 82.09532) + (xy 84.262668 82.119185) (xy 84.256126 82.122236) (xy 84.256101 82.122183) (xy 84.249308 82.125471) + (xy 84.249334 82.125523) (xy 84.24288 82.128764) (xy 84.179468 82.17047) (xy 84.177948 82.171439) + (xy 84.113348 82.211285) (xy 84.107683 82.215765) (xy 84.107647 82.215719) (xy 84.101798 82.220484) + (xy 84.101835 82.220528) (xy 84.096305 82.225168) (xy 84.044197 82.280398) (xy 84.042941 82.28169) + (xy 83.485958 82.838672) (xy 83.472329 82.850451) (xy 83.453068 82.86479) (xy 83.419498 82.904797) + (xy 83.415853 82.908776) (xy 83.410007 82.914623) (xy 83.390218 82.939651) (xy 83.389081 82.941047) + (xy 83.340294 82.99919) (xy 83.336329 83.005219) (xy 83.336282 83.005188) (xy 83.33223 83.011547) + (xy 83.332279 83.011577) (xy 83.328489 83.017721) (xy 83.296412 83.08651) (xy 83.295627 83.088131) + (xy 83.261557 83.155972) (xy 83.259088 83.162757) (xy 83.259032 83.162736) (xy 83.25656 83.16985) + (xy 83.256615 83.169869) (xy 83.254343 83.176725) (xy 83.238991 83.25107) (xy 83.238601 83.252828) + (xy 83.221099 83.326679) (xy 83.220261 83.333854) (xy 83.220201 83.333847) (xy 83.219435 83.341345) + (xy 83.219495 83.341351) (xy 83.218865 83.34854) (xy 83.221074 83.42443) (xy 83.2211 83.426233) + (xy 83.2211 84.1131) (xy 83.201415 84.180139) (xy 83.148611 84.225894) (xy 83.0971 84.2371) (xy 82.391999 84.2371) + (xy 82.32496 84.217415) (xy 82.279205 84.164611) (xy 82.267999 84.1131) (xy 82.267999 84.04133) + (xy 82.267998 84.041313) (xy 82.257674 83.940247) (xy 82.24937 83.915188) (xy 82.203408 83.776484) + (xy 82.202961 83.775759) (xy 82.202793 83.775167) (xy 82.200354 83.769936) (xy 82.201198 83.769542) + (xy 82.1845 83.710663) (xy 82.1845 83.528927) (xy 82.204185 83.461888) (xy 82.243401 83.42339) (xy 82.340156 83.363712) + (xy 82.464212 83.239656) (xy 82.556314 83.090334) (xy 82.611499 82.923797) (xy 82.622 82.821009) + (xy 82.621999 81.770992) (xy 82.611499 81.668203) (xy 82.556314 81.501666) (xy 82.464212 81.352344) + (xy 82.340156 81.228288) (xy 82.190834 81.136186) (xy 82.024297 81.081001) (xy 82.024295 81.081) + (xy 81.92151 81.0705) (xy 81.146498 81.0705) (xy 81.14648 81.070501) (xy 81.043703 81.081) (xy 81.0437 81.081001) + (xy 80.877168 81.136185) (xy 80.877163 81.136187) (xy 80.727842 81.228289) (xy 80.603785 81.352346) + (xy 80.602037 81.355182) (xy 80.600329 81.356717) (xy 80.599307 81.358011) (xy 80.599085 81.357836) + (xy 80.550089 81.401905) (xy 80.481126 81.413126) (xy 80.417044 81.385282) (xy 80.390963 81.355182) + (xy 80.389214 81.352346) (xy 80.265157 81.228289) (xy 80.265156 81.228288) (xy 80.115834 81.136186) + (xy 79.949297 81.081001) (xy 79.949295 81.081) (xy 79.84651 81.0705) (xy 79.071498 81.0705) (xy 79.07148 81.070501) + (xy 78.968703 81.081) (xy 78.9687 81.081001) (xy 78.802168 81.136185) (xy 78.802163 81.136187) (xy 78.652842 81.228289) + (xy 78.528789 81.352342) (xy 78.498219 81.401905) (xy 78.442041 81.492985) (xy 78.432895 81.507813) + (xy 78.430835 81.506542) (xy 78.392268 81.550347) (xy 78.325075 81.5695) (xy 78.258193 81.549286) + (xy 78.238375 81.533185) (xy 78.180851 81.475661) (xy 78.18085 81.47566) (xy 78.088297 81.418573) + (xy 78.034018 81.385093) (xy 78.034013 81.385091) (xy 77.992974 81.371492) (xy 77.870253 81.330826) + (xy 77.870251 81.330825) (xy 77.769178 81.3205) (xy 77.17083 81.3205) (xy 77.170812 81.320501) (xy 77.069747 81.330825) + (xy 76.905984 81.385092) (xy 76.905981 81.385093) (xy 76.759151 81.475659) (xy 76.644827 81.589983) + (xy 76.583504 81.623467) (xy 76.513812 81.618483) (xy 76.469465 81.589982) (xy 76.355538 81.476055) + (xy 76.355534 81.476052) (xy 76.208811 81.385551) (xy 76.2088 81.385546) (xy 76.045152 81.331319) + (xy 75.944154 81.321) (xy 75.895 81.321) (xy 75.895 83.270999) (xy 75.94414 83.270999) (xy 75.944154 83.270998) + (xy 76.045152 83.26068) (xy 76.2088 83.206453) (xy 76.208811 83.206448) (xy 76.355533 83.115948) + (xy 76.469464 83.002017) (xy 76.530787 82.968532) (xy 76.600479 82.973516) (xy 76.644827 83.002017) + (xy 76.75915 83.11634) (xy 76.905984 83.206908) (xy 77.069747 83.261174) (xy 77.170823 83.2715) + (xy 77.769176 83.271499) (xy 77.769184 83.271498) (xy 77.769187 83.271498) (xy 77.82453 83.265844) + (xy 77.870253 83.261174) (xy 78.034016 83.206908) (xy 78.18085 83.11634) (xy 78.238378 83.058811) + (xy 78.299697 83.025329) (xy 78.369389 83.030313) (xy 78.425323 83.072184) (xy 78.432612 83.084361) + (xy 78.432895 83.084187) (xy 78.436685 83.090331) (xy 78.436686 83.090334) (xy 78.528788 83.239656) + (xy 78.652844 83.363712) (xy 78.664871 83.37113) (xy 78.711597 83.423076) (xy 78.722821 83.492039) + (xy 78.694979 83.556121) (xy 78.687459 83.564351) (xy 78.622159 83.629651) (xy 78.531593 83.776481) + (xy 78.531591 83.776486) (xy 78.510921 83.838864) (xy 78.477326 83.940247) (xy 78.477326 83.940248) + (xy 78.477325 83.940248) (xy 78.467 84.041315) (xy 78.467 84.614669) (xy 78.467001 84.614687) (xy 78.477325 84.715752) + (xy 78.504508 84.797783) (xy 78.531148 84.878177) (xy 78.531592 84.879515) (xy 78.531593 84.879518) + (xy 78.611954 85.009803) (xy 78.630394 85.077196) (xy 78.609471 85.143859) (xy 78.555829 85.188629) + (xy 78.506415 85.1989) (xy 78.062329 85.1989) (xy 78.062323 85.198901) (xy 78.00272 85.205308) (xy 77.995174 85.207092) + (xy 77.994828 85.20563) (xy 77.933822 85.209984) (xy 77.9188 85.205572) (xy 77.917682 85.205308) + (xy 77.858082 85.198901) (xy 77.858073 85.1989) (xy 77.858063 85.1989) (xy 77.112329 85.1989) (xy 77.112323 85.198901) + (xy 77.052716 85.205308) (xy 76.917871 85.255602) (xy 76.917864 85.255606) (xy 76.802655 85.341852) + (xy 76.802652 85.341855) (xy 76.716406 85.457064) (xy 76.716402 85.457071) (xy 76.699111 85.503433) + (xy 76.65724 85.559367) (xy 76.591776 85.583784) (xy 76.582929 85.5841) (xy 76.119308 85.5841) (xy 76.052269 85.564415) + (xy 76.013769 85.525197) (xy 75.969512 85.453444) (xy 75.845456 85.329388) (xy 75.725836 85.255606) + (xy 75.696136 85.237287) (xy 75.696131 85.237285) (xy 75.694662 85.236798) (xy 75.529597 85.182101) + (xy 75.529595 85.1821) (xy 75.42681 85.1716) (xy 74.026798 85.1716) (xy 74.026781 85.171601) (xy 73.924003 85.1821) + (xy 73.924 85.182101) (xy 73.757468 85.237285) (xy 73.757463 85.237287) (xy 73.608142 85.329389) + (xy 73.484089 85.453442) (xy 73.391987 85.602763) (xy 73.391985 85.602768) (xy 73.368781 85.672795) + (xy 73.336801 85.769303) (xy 73.336801 85.769304) (xy 73.3368 85.769304) (xy 73.3263 85.872083) + (xy 73.3263 86.797101) (xy 73.326301 86.797119) (xy 73.3368 86.899896) (xy 73.336801 86.899899) + (xy 73.391985 87.066431) (xy 73.391987 87.066436) (xy 73.407405 87.091432) (xy 73.484088 87.215756) + (xy 73.608144 87.339812) (xy 73.757466 87.431914) (xy 73.924003 87.487099) (xy 74.026791 87.4976) + (xy 75.426808 87.497599) (xy 75.529597 87.487099) (xy 75.696134 87.431914) (xy 75.845456 87.339812) + (xy 75.969512 87.215756) (xy 76.01377 87.144002) (xy 76.065717 87.097279) (xy 76.119308 87.0851) + (xy 76.535701 87.0851) (xy 76.60274 87.104785) (xy 76.648495 87.157589) (xy 76.659701 87.2091) (xy 76.659701 87.307276) + (xy 76.666108 87.366883) (xy 76.716402 87.501728) (xy 76.716406 87.501735) (xy 76.802652 87.616944) + (xy 76.802655 87.616947) (xy 76.917864 87.703193) (xy 76.917869 87.703196) (xy 76.945452 87.713483) + (xy 77.001386 87.755354) (xy 77.025804 87.820818) (xy 77.010953 87.889091) (xy 76.961549 87.938497) + (xy 76.945455 87.945847) (xy 76.918116 87.956044) (xy 76.918106 87.956049) (xy 76.803012 88.042209) + (xy 76.803009 88.042212) (xy 76.716849 88.157306) (xy 76.716845 88.157313) (xy 76.666603 88.29202) + (xy 76.666601 88.292027) (xy 76.6602 88.351555) (xy 76.6602 88.9294) (xy 77.4857 88.9294) (xy 77.552739 88.949085) + (xy 77.598494 89.001889) (xy 77.6097 89.0534) (xy 77.6097 90.00727) (xy 77.609701 90.007276) (xy 77.616108 90.066883) + (xy 77.666403 90.20173) (xy 77.669529 90.207454) (xy 77.6847 90.266886) (xy 77.6847 90.67204) (xy 77.665015 90.739079) + (xy 77.625715 90.777629) (xy 77.615531 90.783899) (xy 77.615529 90.7839) (xy 77.439762 90.938594) + (xy 77.439759 90.938597) (xy 77.402278 90.985016) (xy 77.292665 91.120769) (xy 77.292664 91.120769) + (xy 77.178475 91.325177) (xy 77.100472 91.545947) (xy 77.10047 91.545955) (xy 77.0609 91.776719) + (xy 77.0609 92.3943) (xy 77.041215 92.461339) (xy 76.988411 92.507094) (xy 76.9369 92.5183) (xy 76.282829 92.5183) + (xy 76.21579 92.498615) (xy 76.195148 92.481981) (xy 75.945419 92.232251) (xy 75.911934 92.170928) + (xy 75.9091 92.14457) (xy 75.9091 90.45253) (xy 75.928785 90.385491) (xy 75.945417 90.36485) (xy 75.969512 90.340756) + (xy 76.061614 90.191434) (xy 76.116799 90.024897) (xy 76.1273 89.922109) (xy 76.127299 89.4294) + (xy 76.6602 89.4294) (xy 76.6602 90.007244) (xy 76.666601 90.066772) (xy 76.666603 90.066779) (xy 76.716845 90.201486) + (xy 76.716849 90.201493) (xy 76.803009 90.316587) (xy 76.803012 90.31659) (xy 76.918106 90.40275) + (xy 76.918113 90.402754) (xy 77.05282 90.452996) (xy 77.052827 90.452998) (xy 77.112355 90.459399) + (xy 77.112372 90.4594) (xy 77.2352 90.4594) (xy 77.2352 89.4294) (xy 76.6602 89.4294) (xy 76.127299 89.4294) + (xy 76.127299 88.997092) (xy 76.122629 88.95138) (xy 76.116799 88.894303) (xy 76.116798 88.8943) + (xy 76.113648 88.884794) (xy 76.061614 88.727766) (xy 75.969512 88.578444) (xy 75.845456 88.454388) + (xy 75.750793 88.396) (xy 75.696136 88.362287) (xy 75.696131 88.362285) (xy 75.66375 88.351555) + (xy 75.529597 88.307101) (xy 75.529595 88.3071) (xy 75.42681 88.2966) (xy 74.026798 88.2966) (xy 74.026781 88.296601) + (xy 73.924003 88.3071) (xy 73.924 88.307101) (xy 73.757468 88.362285) (xy 73.757463 88.362287) (xy 73.608142 88.454389) + (xy 73.484089 88.578442) (xy 73.391987 88.727763) (xy 73.391985 88.727768) (xy 73.374628 88.78015) + (xy 73.336801 88.894303) (xy 73.336801 88.894304) (xy 73.3368 88.894304) (xy 73.3263 88.997083) + (xy 73.3263 89.922101) (xy 73.326301 89.922119) (xy 73.3368 90.024896) (xy 73.336801 90.024899) + (xy 73.391985 90.191431) (xy 73.391987 90.191436) (xy 73.400497 90.205233) (xy 73.484088 90.340756) + (xy 73.608144 90.464812) (xy 73.757466 90.556914) (xy 73.924003 90.612099) (xy 74.026791 90.6226) + (xy 74.284101 90.622599) (xy 74.351139 90.642283) (xy 74.396894 90.695087) (xy 74.4081 90.746599) + (xy 74.4081 92.443094) (xy 74.406791 92.461063) (xy 74.40331 92.484825) (xy 74.407864 92.536864) + (xy 74.4081 92.54227) (xy 74.4081 92.550512) (xy 74.411802 92.582191) (xy 74.411983 92.583959) (xy 74.414665 92.614611) + (xy 74.4186 92.659592) (xy 74.420061 92.666667) (xy 74.420003 92.666678) (xy 74.421634 92.674037) + (xy 74.421692 92.674024) (xy 74.423357 92.681049) (xy 74.423358 92.681054) (xy 74.423359 92.681055) + (xy 74.446949 92.745871) (xy 74.449308 92.752351) (xy 74.449899 92.754053) (xy 74.473782 92.826126) + (xy 74.476836 92.832674) (xy 74.476782 92.832698) (xy 74.48007 92.839488) (xy 74.480121 92.839463) + (xy 74.483361 92.845913) (xy 74.483362 92.845914) (xy 74.483363 92.845917) (xy 74.525094 92.909367) + (xy 74.526043 92.910858) (xy 74.565889 92.975457) (xy 74.570366 92.981119) (xy 74.570319 92.981156) + (xy 74.575082 92.987002) (xy 74.575128 92.986964) (xy 74.579773 92.992499) (xy 74.634963 93.044568) + (xy 74.636257 93.045825) (xy 75.34487 93.754438) (xy 75.356651 93.76807) (xy 75.370988 93.787328) + (xy 75.411009 93.820911) (xy 75.414997 93.824566) (xy 75.420817 93.830386) (xy 75.420822 93.83039) + (xy 75.420823 93.830391) (xy 75.445863 93.85019) (xy 75.447244 93.851315) (xy 75.505386 93.900102) + (xy 75.505387 93.900102) (xy 75.505389 93.900104) (xy 75.511418 93.90407) (xy 75.511385 93.904119) + (xy 75.517747 93.908172) (xy 75.517779 93.908121) (xy 75.523919 93.911908) (xy 75.523923 93.911911) + (xy 75.561878 93.929609) (xy 75.592737 93.944) (xy 75.59436 93.944786) (xy 75.662162 93.978838) + (xy 75.668957 93.981311) (xy 75.668936 93.981367) (xy 75.676055 93.983842) (xy 75.676074 93.983786) + (xy 75.682924 93.986055) (xy 75.682927 93.986057) (xy 75.757309 94.001414) (xy 75.759018 94.001794) + (xy 75.782969 94.00747) (xy 75.832873 94.019299) (xy 75.832876 94.019299) (xy 75.832879 94.0193) + (xy 75.832882 94.0193) (xy 75.840052 94.020138) (xy 75.840044 94.020197) (xy 75.847545 94.020964) + (xy 75.847551 94.020905) (xy 75.85474 94.021534) (xy 75.854744 94.021533) (xy 75.854745 94.021534) + (xy 75.88283 94.020716) (xy 75.930633 94.019326) (xy 75.932436 94.0193) (xy 76.9369 94.0193) (xy 77.003939 94.038985) + (xy 77.049694 94.091789) (xy 77.0609 94.1433) (xy 77.0609 94.702246) (xy 77.075782 94.877096) (xy 77.134782 95.103689) + (xy 77.231224 95.317044) (xy 77.231229 95.317052) (xy 77.362335 95.511031) (xy 77.36234 95.511036) + (xy 77.362343 95.511041) (xy 77.524356 95.680083) (xy 77.712608 95.819313) (xy 77.757716 95.842056) + (xy 77.874604 95.90099) (xy 77.921682 95.924726) (xy 78.145563 95.993289) (xy 78.377811 96.023029) + (xy 78.611745 96.013092) (xy 78.840634 95.963762) (xy 79.057894 95.87646) (xy 79.257275 95.753696) + (xy 79.433041 95.599003) (xy 79.580135 95.41683) (xy 79.694326 95.212419) (xy 79.772329 94.991649) + (xy 79.8119 94.760872) (xy 79.8119 91.835372) (xy 79.811899 91.835353) (xy 79.797017 91.660503) + (xy 79.784723 91.613289) (xy 79.738017 91.43391) (xy 79.726757 91.409) (xy 79.641575 91.220555) + (xy 79.64157 91.220547) (xy 79.510464 91.026568) (xy 79.51046 91.026563) (xy 79.510457 91.026559) + (xy 79.348444 90.857517) (xy 79.348443 90.857516) (xy 79.348442 90.857515) (xy 79.235965 90.774327) + (xy 79.193771 90.718637) (xy 79.1857 90.674632) (xy 79.1857 90.583899) (xy 79.205385 90.51686) (xy 79.258189 90.471105) + (xy 79.3097 90.459899) (xy 79.758071 90.459899) (xy 79.758072 90.459899) (xy 79.817683 90.453491) + (xy 79.952531 90.403196) (xy 80.067746 90.316946) (xy 80.153996 90.201731) (xy 80.204291 90.066883) + (xy 80.207112 90.040641) (xy 80.233849 89.976094) (xy 80.291241 89.936246) (xy 80.330401 89.9299) + (xy 81.285293 89.9299) (xy 81.352332 89.949585) (xy 81.368831 89.962263) (xy 81.477558 90.06138) + (xy 81.47756 90.061382) (xy 81.54814 90.105083) (xy 81.650963 90.168748) (xy 81.841144 90.242424) + (xy 82.041624 90.2799) (xy 82.041626 90.2799) (xy 82.245574 90.2799) (xy 82.245576 90.2799) (xy 82.446056 90.242424) + (xy 82.636237 90.168748) (xy 82.809641 90.061381) (xy 82.960364 89.923979) (xy 82.998145 89.873948) + (xy 83.054254 89.832311) (xy 83.123966 89.827619) (xy 83.185148 89.861361) (xy 83.218376 89.922825) + (xy 83.2211 89.948674) (xy 83.2211 91.374185) (xy 83.201415 91.441224) (xy 83.148611 91.486979) + (xy 83.079453 91.496923) (xy 83.015897 91.467898) (xy 82.984108 91.425261) (xy 82.891575 91.220555) + (xy 82.89157 91.220547) (xy 82.760464 91.026568) (xy 82.76046 91.026563) (xy 82.760457 91.026559) + (xy 82.621551 90.881626) (xy 82.598448 90.857521) (xy 82.598447 90.85752) (xy 82.598444 90.857517) + (xy 82.410192 90.718287) (xy 82.410191 90.718286) (xy 82.410189 90.718285) (xy 82.201119 90.612874) + (xy 82.018383 90.556912) (xy 81.977237 90.544311) (xy 81.977235 90.54431) (xy 81.977233 90.54431) + (xy 81.744983 90.51457) (xy 81.511058 90.524507) (xy 81.511057 90.524507) (xy 81.282163 90.573838) + (xy 81.064909 90.661138) (xy 80.865524 90.783903) (xy 80.689762 90.938593) (xy 80.68976 90.938595) + (xy 80.689759 90.938597) (xy 80.652278 90.985016) (xy 80.542665 91.120769) (xy 80.542664 91.120769) + (xy 80.428475 91.325177) (xy 80.350472 91.545947) (xy 80.35047 91.545955) (xy 80.3109 91.776719) + (xy 80.3109 94.702246) (xy 80.325782 94.877096) (xy 80.384782 95.103689) (xy 80.481224 95.317044) + (xy 80.481229 95.317052) (xy 80.612335 95.511031) (xy 80.61234 95.511036) (xy 80.612343 95.511041) + (xy 80.774356 95.680083) (xy 80.962608 95.819313) (xy 81.007716 95.842056) (xy 81.124604 95.90099) + (xy 81.171682 95.924726) (xy 81.395563 95.993289) (xy 81.627811 96.023029) (xy 81.861745 96.013092) + (xy 82.090634 95.963762) (xy 82.307894 95.87646) (xy 82.507275 95.753696) (xy 82.683041 95.599003) + (xy 82.830135 95.41683) (xy 82.944326 95.212419) (xy 83.022329 94.991649) (xy 83.0619 94.760872) + (xy 83.0619 94.740713) (xy 83.081585 94.673675) (xy 83.134389 94.62792) (xy 83.203547 94.617976) + (xy 83.238308 94.628333) (xy 83.23976 94.62901) (xy 83.239766 94.629014) (xy 83.406303 94.684199) + (xy 83.509091 94.6947) (xy 84.434108 94.694699) (xy 84.434116 94.694698) (xy 84.434119 94.694698) + (xy 84.490402 94.688948) (xy 84.536897 94.684199) (xy 84.703434 94.629014) (xy 84.852756 94.536912) + (xy 84.976812 94.412856) (xy 85.068914 94.263534) (xy 85.124099 94.096997) (xy 85.1346 93.994209) + (xy 85.1346 93.5442) (xy 85.934101 93.5442) (xy 85.934101 93.994186) (xy 85.944594 94.096897) (xy 85.999741 94.263319) + (xy 85.999743 94.263324) (xy 86.091784 94.412545) (xy 86.215754 94.536515) (xy 86.364975 94.628556) + (xy 86.36498 94.628558) (xy 86.531402 94.683705) (xy 86.531409 94.683706) (xy 86.634119 94.694199) + (xy 86.846599 94.694199) (xy 86.8466 94.694198) (xy 86.8466 93.5442) (xy 87.3466 93.5442) (xy 87.3466 94.694199) + (xy 87.559072 94.694199) (xy 87.559086 94.694198) (xy 87.661797 94.683705) (xy 87.828219 94.628558) + (xy 87.828224 94.628556) (xy 87.977445 94.536515) (xy 88.101415 94.412545) (xy 88.193456 94.263324) + (xy 88.193458 94.263319) (xy 88.248605 94.096897) (xy 88.248606 94.09689) (xy 88.259099 93.994186) + (xy 88.2591 93.994173) (xy 88.2591 93.5442) (xy 87.3466 93.5442) (xy 86.8466 93.5442) (xy 85.934101 93.5442) + (xy 85.1346 93.5442) (xy 85.134599 93.0442) (xy 85.9341 93.0442) (xy 86.8466 93.0442) (xy 86.8466 91.8942) + (xy 87.3466 91.8942) (xy 87.3466 93.0442) (xy 88.259099 93.0442) (xy 88.259099 92.594228) (xy 88.259098 92.594213) + (xy 88.248605 92.491502) (xy 88.193458 92.32508) (xy 88.193456 92.325075) (xy 88.101415 92.175854) + (xy 87.977445 92.051884) (xy 87.828224 91.959843) (xy 87.828219 91.959841) (xy 87.661797 91.904694) + (xy 87.66179 91.904693) (xy 87.559086 91.8942) (xy 87.3466 91.8942) (xy 86.8466 91.8942) (xy 86.634129 91.8942) + (xy 86.634112 91.894201) (xy 86.531402 91.904694) (xy 86.36498 91.959841) (xy 86.364975 91.959843) + (xy 86.215754 92.051884) (xy 86.091784 92.175854) (xy 85.999743 92.325075) (xy 85.999741 92.32508) + (xy 85.944594 92.491502) (xy 85.944593 92.491509) (xy 85.9341 92.594213) (xy 85.9341 93.0442) (xy 85.134599 93.0442) + (xy 85.134599 92.594192) (xy 85.124099 92.491403) (xy 85.068914 92.324866) (xy 84.976812 92.175544) + (xy 84.852756 92.051488) (xy 84.852755 92.051487) (xy 84.781002 92.007229) (xy 84.734278 91.955281) + (xy 84.7221 91.901691) (xy 84.7221 89.675943) (xy 84.741785 89.608904) (xy 84.794589 89.563149) + (xy 84.863747 89.553205) (xy 84.927303 89.58223) (xy 84.93732 89.59195) (xy 85.086256 89.753738) + (xy 85.282491 89.906474) (xy 85.337505 89.936246) (xy 85.500332 90.024364) (xy 85.50119 90.024828) + (xy 85.623369 90.066772) (xy 85.734964 90.105083) (xy 85.736386 90.105571) (xy 85.981665 90.1465) + (xy 86.230335 90.1465) (xy 86.475614 90.105571) (xy 86.71081 90.024828) (xy 86.929509 89.906474) + (xy 87.125744 89.753738) (xy 87.294164 89.570785) (xy 87.29628 89.567547) (xy 87.366988 89.459319) + (xy 87.430173 89.362607) (xy 87.530063 89.134881) (xy 87.591108 88.893821) (xy 87.591856 88.884794) + (xy 87.611643 88.646005) (xy 88.410858 88.646005) (xy 88.431385 88.893729) (xy 88.431387 88.893738) + (xy 88.492412 89.134717) (xy 88.592266 89.362364) (xy 88.692564 89.515882) (xy 89.432923 88.775523) + (xy 89.456507 88.855844) (xy 89.534239 88.976798) (xy 89.6429 89.070952) (xy 89.773685 89.13068) + (xy 89.783466 89.132086) (xy 89.045942 89.869609) (xy 89.092768 89.906055) (xy 89.09277 89.906056) + (xy 89.311385 90.024364) (xy 89.311396 90.024369) (xy 89.546506 90.105083) (xy 89.791707 90.146) + (xy 90.040293 90.146) (xy 90.285493 90.105083) (xy 90.520603 90.024369) (xy 90.520614 90.024364) + (xy 90.739228 89.906057) (xy 90.739231 89.906055) (xy 90.786056 89.869609) (xy 90.048533 89.132086) + (xy 90.058315 89.13068) (xy 90.1891 89.070952) (xy 90.297761 88.976798) (xy 90.375493 88.855844) + (xy 90.399076 88.775524) (xy 91.139434 89.515882) (xy 91.239731 89.362369) (xy 91.339587 89.134717) + (xy 91.400612 88.893738) (xy 91.400614 88.893729) (xy 91.421141 88.646005) (xy 91.421141 88.645994) + (xy 91.400614 88.39827) (xy 91.400612 88.398261) (xy 91.339587 88.157282) (xy 91.239731 87.92963) + (xy 91.160138 87.807805) (xy 93.973458 87.807805) (xy 93.993985 88.055529) (xy 93.993987 88.055538) + (xy 94.055012 88.296517) (xy 94.154866 88.524164) (xy 94.255164 88.677682) (xy 94.995523 87.937323) + (xy 95.019107 88.017644) (xy 95.096839 88.138598) (xy 95.2055 88.232752) (xy 95.336285 88.29248) + (xy 95.346066 88.293886) (xy 94.608542 89.031409) (xy 94.655368 89.067855) (xy 94.65537 89.067856) + (xy 94.873985 89.186164) (xy 94.873996 89.186169) (xy 95.109106 89.266883) (xy 95.354307 89.3078) + (xy 95.602893 89.3078) (xy 95.848093 89.266883) (xy 96.083203 89.186169) (xy 96.083214 89.186164) + (xy 96.301828 89.067857) (xy 96.301831 89.067855) (xy 96.348656 89.031409) (xy 95.611133 88.293886) + (xy 95.620915 88.29248) (xy 95.7517 88.232752) (xy 95.860361 88.138598) (xy 95.938093 88.017644) + (xy 95.961676 87.937324) (xy 96.702034 88.677682) (xy 96.802331 88.524169) (xy 96.902187 88.296517) + (xy 96.963212 88.055538) (xy 96.963214 88.055529) (xy 96.983741 87.807805) (xy 96.983741 87.807794) + (xy 96.963214 87.56007) (xy 96.963212 87.560061) (xy 96.902187 87.319082) (xy 96.802331 87.09143) + (xy 96.702034 86.937916) (xy 95.961676 87.678274) (xy 95.938093 87.597956) (xy 95.860361 87.477002) + (xy 95.7517 87.382848) (xy 95.620915 87.32312) (xy 95.611134 87.321713) (xy 96.348657 86.58419) + (xy 96.348656 86.584189) (xy 96.301829 86.547743) (xy 96.083214 86.429435) (xy 96.083203 86.42943) + (xy 95.848093 86.348716) (xy 95.602893 86.3078) (xy 95.354307 86.3078) (xy 95.109106 86.348716) + (xy 94.873996 86.42943) (xy 94.87399 86.429432) (xy 94.655361 86.547749) (xy 94.608542 86.584188) + (xy 94.608542 86.58419) (xy 95.346066 87.321713) (xy 95.336285 87.32312) (xy 95.2055 87.382848) + (xy 95.096839 87.477002) (xy 95.019107 87.597956) (xy 94.995523 87.678275) (xy 94.255164 86.937916) + (xy 94.154867 87.091432) (xy 94.055012 87.319082) (xy 93.993987 87.560061) (xy 93.993985 87.56007) + (xy 93.973458 87.807794) (xy 93.973458 87.807805) (xy 91.160138 87.807805) (xy 91.139434 87.776116) + (xy 90.399076 88.516475) (xy 90.375493 88.436156) (xy 90.297761 88.315202) (xy 90.1891 88.221048) + (xy 90.058315 88.16132) (xy 90.048534 88.159913) (xy 90.786057 87.42239) (xy 90.786056 87.422389) + (xy 90.739229 87.385943) (xy 90.520614 87.267635) (xy 90.520603 87.26763) (xy 90.285493 87.186916) + (xy 90.040293 87.146) (xy 89.791707 87.146) (xy 89.546506 87.186916) (xy 89.311396 87.26763) (xy 89.31139 87.267632) + (xy 89.092761 87.385949) (xy 89.045942 87.422388) (xy 89.045942 87.42239) (xy 89.783466 88.159913) + (xy 89.773685 88.16132) (xy 89.6429 88.221048) (xy 89.534239 88.315202) (xy 89.456507 88.436156) + (xy 89.432923 88.516475) (xy 88.692564 87.776116) (xy 88.592267 87.929632) (xy 88.492412 88.157282) + (xy 88.431387 88.398261) (xy 88.431385 88.39827) (xy 88.410858 88.645994) (xy 88.410858 88.646005) + (xy 87.611643 88.646005) (xy 87.611643 88.645994) (xy 87.591109 88.398187) (xy 87.591107 88.398175) + (xy 87.530063 88.157118) (xy 87.430173 87.929393) (xy 87.294166 87.721217) (xy 87.253302 87.676827) + (xy 87.125744 87.538262) (xy 86.929509 87.385526) (xy 86.929507 87.385525) (xy 86.929506 87.385524) + (xy 86.710811 87.267172) (xy 86.710802 87.267169) (xy 86.475616 87.186429) (xy 86.230335 87.1455) + (xy 85.981665 87.1455) (xy 85.736383 87.186429) (xy 85.501197 87.267169) (xy 85.501188 87.267172) + (xy 85.282493 87.385524) (xy 85.086257 87.538261) (xy 85.086256 87.538262) (xy 84.958705 87.67682) + (xy 84.93733 87.700039) (xy 84.877443 87.73603) (xy 84.807604 87.733929) (xy 84.749988 87.694405) + (xy 84.722887 87.630006) (xy 84.7221 87.616056) (xy 84.7221 85.22426) (xy 84.741785 85.157221) (xy 84.794589 85.111466) + (xy 84.863747 85.101522) (xy 84.927303 85.130547) (xy 84.951638 85.159163) (xy 85.032052 85.289534) + (xy 85.032055 85.289538) (xy 85.153961 85.411444) (xy 85.153965 85.411447) (xy 85.300688 85.501948) + (xy 85.300699 85.501953) (xy 85.464347 85.55618) (xy 85.565352 85.566499) (xy 85.602 85.566499) + (xy 85.602 84.779) (xy 86.102 84.779) (xy 86.102 85.566499) (xy 86.13864 85.566499) (xy 86.138654 85.566498) + (xy 86.239652 85.55618) (xy 86.4033 85.501953) (xy 86.403311 85.501948) (xy 86.550034 85.411447) + (xy 86.550038 85.411444) (xy 86.671944 85.289538) (xy 86.671947 85.289534) (xy 86.701267 85.242) + (xy 91.056001 85.242) (xy 91.056001 85.366986) (xy 91.066494 85.469697) (xy 91.121641 85.636119) + (xy 91.121643 85.636124) (xy 91.213684 85.785345) (xy 91.337654 85.909315) (xy 91.486875 86.001356) + (xy 91.48688 86.001358) (xy 91.653302 86.056505) (xy 91.653309 86.056506) (xy 91.756019 86.066999) + (xy 92.205999 86.066999) (xy 92.206 86.066998) (xy 92.206 85.242) (xy 92.706 85.242) (xy 92.706 86.066999) + (xy 93.155972 86.066999) (xy 93.155986 86.066998) (xy 93.258697 86.056505) (xy 93.425119 86.001358) + (xy 93.425124 86.001356) (xy 93.574345 85.909315) (xy 93.698315 85.785345) (xy 93.790356 85.636124) + (xy 93.790358 85.636119) (xy 93.845505 85.469697) (xy 93.845506 85.46969) (xy 93.855999 85.366986) + (xy 93.856 85.366973) (xy 93.856 85.242) (xy 92.706 85.242) (xy 92.206 85.242) (xy 91.056001 85.242) + (xy 86.701267 85.242) (xy 86.762448 85.142811) (xy 86.762453 85.1428) (xy 86.81668 84.979152) (xy 86.826999 84.878154) + (xy 86.827 84.878141) (xy 86.827 84.779) (xy 86.102 84.779) (xy 85.602 84.779) (xy 85.602 84.403) + (xy 85.621685 84.335961) (xy 85.674489 84.290206) (xy 85.726 84.279) (xy 86.826999 84.279) (xy 86.826999 84.17986) + (xy 86.826998 84.179845) (xy 86.81668 84.078847) (xy 86.813749 84.070001) (xy 88.756204 84.070001) + (xy 88.756399 84.072486) (xy 88.802218 84.230198) (xy 88.885814 84.371552) (xy 88.885821 84.371561) + (xy 89.001938 84.487678) (xy 89.001947 84.487685) (xy 89.143303 84.571282) (xy 89.143306 84.571283) + (xy 89.301004 84.617099) (xy 89.30101 84.6171) (xy 89.33785 84.619999) (xy 89.337866 84.62) (xy 89.666 84.62) + (xy 90.166 84.62) (xy 90.494134 84.62) (xy 90.494149 84.619999) (xy 90.530989 84.6171) (xy 90.530995 84.617099) + (xy 90.688693 84.571283) (xy 90.688696 84.571282) (xy 90.830052 84.487685) (xy 90.830056 84.487682) + (xy 90.84996 84.467778) (xy 90.911283 84.434292) (xy 90.980974 84.439275) (xy 91.036909 84.481146) + (xy 91.061327 84.54661) (xy 91.061001 84.568059) (xy 91.056 84.617008) (xy 91.056 84.742) (xy 92.206 84.742) + (xy 92.206 83.917) (xy 92.706 83.917) (xy 92.706 84.742) (xy 93.855999 84.742) (xy 93.855999 84.617028) + (xy 93.855998 84.617013) (xy 93.845505 84.514302) (xy 93.790358 84.34788) (xy 93.790356 84.347875) + (xy 93.698315 84.198654) (xy 93.574345 84.074684) (xy 93.425124 83.982643) (xy 93.425119 83.982641) + (xy 93.258697 83.927494) (xy 93.25869 83.927493) (xy 93.155986 83.917) (xy 92.706 83.917) (xy 92.206 83.917) + (xy 91.756028 83.917) (xy 91.756012 83.917001) (xy 91.653302 83.927494) (xy 91.48688 83.982641) + (xy 91.486875 83.982643) (xy 91.337654 84.074684) (xy 91.290694 84.121644) (xy 91.229371 84.155128) + (xy 91.159679 84.150143) (xy 91.103746 84.108271) (xy 91.098722 84.094802) (xy 91.075795 84.07) + (xy 90.166 84.07) (xy 90.166 84.62) (xy 89.666 84.62) (xy 89.666 84.07) (xy 88.756205 84.07) (xy 88.756204 84.070001) + (xy 86.813749 84.070001) (xy 86.762453 83.915199) (xy 86.762448 83.915188) (xy 86.680538 83.782392) + (xy 86.662097 83.715) (xy 86.683019 83.648336) (xy 86.736661 83.603567) (xy 86.805992 83.594905) + (xy 86.849196 83.610563) (xy 86.868102 83.621744) (xy 86.895318 83.629651) (xy 87.025926 83.667597) + (xy 87.025929 83.667597) (xy 87.025931 83.667598) (xy 87.062806 83.6705) (xy 87.062814 83.6705) + (xy 88.219186 83.6705) (xy 88.219194 83.6705) (xy 88.256069 83.667598) (xy 88.256071 83.667597) + (xy 88.256073 83.667597) (xy 88.299039 83.655114) (xy 88.413898 83.621744) (xy 88.555365 83.538081) + (xy 88.55537 83.538075) (xy 88.561531 83.533298) (xy 88.562839 83.534984) (xy 88.614509 83.506761) + (xy 88.684201 83.511735) (xy 88.731941 83.543752) (xy 88.756204 83.57) (xy 89.666 83.57) (xy 89.666 83.02) + (xy 90.166 83.02) (xy 90.166 83.57) (xy 91.075795 83.57) (xy 91.075795 83.569998) (xy 91.0756 83.567513) + (xy 91.029781 83.409801) (xy 90.946185 83.268447) (xy 90.946178 83.268438) (xy 90.830061 83.152321) + (xy 90.830052 83.152314) (xy 90.688696 83.068717) (xy 90.688693 83.068716) (xy 90.530995 83.0229) + (xy 90.530989 83.022899) (xy 90.494149 83.02) (xy 90.166 83.02) (xy 89.666 83.02) (xy 89.33785 83.02) + (xy 89.30101 83.022899) (xy 89.301004 83.0229) (xy 89.143306 83.068716) (xy 89.143303 83.068717) + (xy 88.995229 83.156288) (xy 88.994211 83.154566) (xy 88.938955 83.176257) (xy 88.870438 83.162572) + (xy 88.820197 83.114017) (xy 88.804 83.052742) (xy 88.804 82.687895) (xy 88.823685 82.620856) (xy 88.876489 82.575101) + (xy 88.945647 82.565157) (xy 88.993996 82.585671) (xy 88.99492 82.58411) (xy 89.027853 82.603586) + (xy 89.143102 82.671744) (xy 89.184089 82.683652) (xy 89.300926 82.717597) (xy 89.300929 82.717597) + (xy 89.300931 82.717598) (xy 89.337806 82.7205) (xy 89.337814 82.7205) (xy 90.494186 82.7205) (xy 90.494194 82.7205) + (xy 90.531069 82.717598) (xy 90.531071 82.717597) (xy 90.531073 82.717597) (xy 90.676233 82.675424) + (xy 90.710828 82.6705) (xy 91.042213 82.6705) (xy 91.109252 82.690185) (xy 91.147751 82.729402) + (xy 91.166165 82.759257) (xy 91.204253 82.821009) (xy 91.213288 82.835656) (xy 91.337344 82.959712) + (xy 91.486666 83.051814) (xy 91.653203 83.106999) (xy 91.755991 83.1175) (xy 93.156008 83.117499) + (xy 93.258797 83.106999) (xy 93.425334 83.051814) (xy 93.574656 82.959712) (xy 93.698712 82.835656) + (xy 93.698712 82.835655) (xy 93.703819 82.830549) (xy 93.705705 82.832435) (xy 93.752625 82.799212) + (xy 93.792868 82.7925) (xy 94.388942 82.7925) (xy 94.455981 82.812185) (xy 94.501736 82.864989) + (xy 94.51168 82.934147) (xy 94.482655 82.997703) (xy 94.480203 83.000447) (xy 94.459536 83.022899) + (xy 94.366633 83.123817) (xy 94.230626 83.331993) (xy 94.130736 83.559718) (xy 94.069692 83.800775) + (xy 94.06969 83.800787) (xy 94.049157 84.048594) (xy 94.049157 84.048605) (xy 94.06969 84.296412) + (xy 94.069692 84.296424) (xy 94.130736 84.537481) (xy 94.230626 84.765206) (xy 94.366633 84.973382) + (xy 94.366636 84.973385) (xy 94.535056 85.156338) (xy 94.731291 85.309074) (xy 94.94999 85.427428) + (xy 95.185186 85.508171) (xy 95.430465 85.5491) (xy 95.679135 85.5491) (xy 95.924414 85.508171) + (xy 96.15961 85.427428) (xy 96.378309 85.309074) (xy 96.574544 85.156338) (xy 96.742964 84.973385) + (xy 96.878973 84.765207) (xy 96.978863 84.537481) (xy 97.039908 84.296421) (xy 97.041352 84.279) + (xy 97.060443 84.048605) (xy 97.060443 84.048594) (xy 97.039909 83.800787) (xy 97.039907 83.800775) + (xy 96.978863 83.559718) (xy 96.878973 83.331993) (xy 96.742966 83.123817) (xy 96.689929 83.066204) + (xy 96.574544 82.940862) (xy 96.378309 82.788126) (xy 96.378308 82.788125) (xy 96.378305 82.788123) + (xy 96.378298 82.788119) (xy 96.270282 82.729663) (xy 96.220691 82.680444) (xy 96.2053 82.620609) + (xy 96.2053 82.45343) (xy 96.224985 82.386391) (xy 96.241619 82.365749) (xy 96.540549 82.066819) + (xy 96.601872 82.033334) (xy 96.62823 82.0305) (xy 101.078746 82.0305) (xy 101.145785 82.050185) + (xy 101.19154 82.102989) (xy 101.201484 82.172147) (xy 101.196452 82.193504) (xy 101.143319 82.353848) + (xy 101.133 82.454845) (xy 101.133 82.554) (xy 103.082999 82.554) (xy 103.082999 82.45486) (xy 103.082998 82.454845) + (xy 103.071993 82.347114) (xy 103.074979 82.346808) (xy 103.079159 82.290341) (xy 103.121169 82.234512) + (xy 103.186694 82.210257) (xy 103.25493 82.225279) (xy 103.282914 82.246282) (xy 103.56427 82.527638) + (xy 103.576051 82.54127) (xy 103.590388 82.560528) (xy 103.630409 82.594111) (xy 103.634397 82.597766) + (xy 103.640217 82.603586) (xy 103.640222 82.60359) (xy 103.640223 82.603591) (xy 103.665263 82.62339) + (xy 103.666644 82.624515) (xy 103.724786 82.673302) (xy 103.724787 82.673302) (xy 103.724789 82.673304) + (xy 103.730818 82.67727) (xy 103.730785 82.677319) (xy 103.737147 82.681372) (xy 103.737179 82.681321) + (xy 103.743319 82.685108) (xy 103.743323 82.685111) (xy 103.781278 82.702809) (xy 103.812137 82.7172) + (xy 103.81376 82.717986) (xy 103.881562 82.752038) (xy 103.888357 82.754511) (xy 103.888336 82.754567) + (xy 103.895455 82.757042) (xy 103.895474 82.756986) (xy 103.902324 82.759255) (xy 103.902327 82.759257) + (xy 103.976709 82.774614) (xy 103.978418 82.774994) (xy 104.002369 82.78067) (xy 104.052273 82.792499) + (xy 104.052276 82.792499) (xy 104.052279 82.7925) (xy 104.052282 82.7925) (xy 104.059452 82.793338) + (xy 104.059444 82.793397) (xy 104.066945 82.794164) (xy 104.066951 82.794105) (xy 104.07414 82.794734) + (xy 104.074144 82.794733) (xy 104.074145 82.794734) (xy 104.10223 82.793916) (xy 104.150033 82.792526) + (xy 104.151836 82.7925) (xy 104.97427 82.7925) (xy 105.041309 82.812185) (xy 105.087064 82.864989) + (xy 105.093536 82.882565) (xy 105.141417 83.050847) (xy 105.141422 83.05086) (xy 105.219028 83.206713) + (xy 105.232327 83.233421) (xy 105.295248 83.316742) (xy 105.31994 83.382102) (xy 105.305375 83.450437) + (xy 105.271781 83.489843) (xy 105.156051 83.578647) (xy 105.15605 83.578648) (xy 105.156049 83.578649) + (xy 105.068685 83.692504) (xy 105.0638 83.69887) (xy 105.005813 83.838863) (xy 105.005813 83.838864) + (xy 104.991 83.951372) (xy 104.991 84.176827) (xy 105.006874 84.297392) (xy 105.003899 84.297783) + (xy 105.003899 84.330416) (xy 105.006874 84.330808) (xy 104.991 84.451372) (xy 104.991 84.676827) + (xy 105.006874 84.797392) (xy 105.003899 84.797783) (xy 105.003899 84.830416) (xy 105.006874 84.830808) + (xy 104.991 84.951372) (xy 104.991 85.176827) (xy 104.999174 85.238906) (xy 105.003524 85.271953) + (xy 105.003717 85.273414) (xy 104.992952 85.34245) (xy 104.946572 85.394706) (xy 104.880778 85.4136) + (xy 103.074185 85.4136) (xy 103.007146 85.393915) (xy 102.961391 85.341111) (xy 102.951447 85.271953) + (xy 102.968646 85.224503) (xy 102.968796 85.22426) (xy 103.018908 85.143016) (xy 103.073174 84.979253) + (xy 103.0835 84.878177) (xy 103.083499 84.179824) (xy 103.073174 84.078747) (xy 103.018908 83.914984) + (xy 102.92834 83.76815) (xy 102.914017 83.753826) (xy 102.880532 83.692504) (xy 102.885516 83.622812) + (xy 102.914021 83.57846) (xy 102.927947 83.564535) (xy 103.018448 83.417811) (xy 103.018453 83.4178) + (xy 103.07268 83.254152) (xy 103.082999 83.153154) (xy 103.083 83.153141) (xy 103.083 83.054) (xy 101.133001 83.054) + (xy 101.133001 83.129156) (xy 101.113316 83.196195) (xy 101.060512 83.24195) (xy 100.991354 83.251894) + (xy 100.927798 83.222869) (xy 100.909735 83.203467) (xy 100.871547 83.152455) (xy 100.871544 83.152452) + (xy 100.756335 83.066206) (xy 100.756328 83.066202) (xy 100.621482 83.015908) (xy 100.621483 83.015908) + (xy 100.561883 83.009501) (xy 100.561881 83.0095) (xy 100.561873 83.0095) (xy 100.561864 83.0095) + (xy 98.066129 83.0095) (xy 98.066123 83.009501) (xy 98.006516 83.015908) (xy 97.871671 83.066202) + (xy 97.871664 83.066206) (xy 97.756455 83.152452) (xy 97.756452 83.152455) (xy 97.670206 83.267664) + (xy 97.670202 83.267671) (xy 97.619908 83.402517) (xy 97.613501 83.462116) (xy 97.6135 83.462135) + (xy 97.6135 85.55787) (xy 97.613501 85.557876) (xy 97.619908 85.617483) (xy 97.670202 85.752328) + (xy 97.670206 85.752335) (xy 97.756452 85.867544) (xy 97.756455 85.867547) (xy 97.871664 85.953793) + (xy 97.871671 85.953797) (xy 98.006517 86.004091) (xy 98.006516 86.004091) (xy 98.013444 86.004835) + (xy 98.066127 86.0105) (xy 99.843191 86.010499) (xy 99.91023 86.030184) (xy 99.930872 86.046818) + (xy 100.156372 86.272318) (xy 100.189857 86.333641) (xy 100.184873 86.403333) (xy 100.156372 86.44768) + (xy 99.930872 86.673181) (xy 99.869549 86.706666) (xy 99.843191 86.7095) (xy 98.066129 86.7095) + (xy 98.066123 86.709501) (xy 98.006516 86.715908) (xy 97.871671 86.766202) (xy 97.871664 86.766206) + (xy 97.756455 86.852452) (xy 97.756452 86.852455) (xy 97.670206 86.967664) (xy 97.670202 86.967671) + (xy 97.619908 87.102517) (xy 97.613501 87.162116) (xy 97.6135 87.162135) (xy 97.6135 89.25787) (xy 97.613501 89.257876) + (xy 97.619908 89.317483) (xy 97.670202 89.452328) (xy 97.670206 89.452335) (xy 97.756452 89.567544) + (xy 97.756455 89.567547) (xy 97.871664 89.653793) (xy 97.871671 89.653797) (xy 97.903695 89.665741) + (xy 98.006517 89.704091) (xy 98.03611 89.707272) (xy 98.100658 89.734008) (xy 98.140507 89.7914) + (xy 98.143002 89.861225) (xy 98.140559 89.869565) (xy 98.085326 90.036247) (xy 98.085325 90.036248) + (xy 98.075 90.137315) (xy 98.075 90.710669) (xy 98.075001 90.710687) (xy 98.085325 90.811752) (xy 98.100492 90.857521) + (xy 98.131636 90.951508) (xy 98.139592 90.975515) (xy 98.139593 90.975518) (xy 98.152533 90.996497) + (xy 98.23016 91.12235) (xy 98.35215 91.24434) (xy 98.498984 91.334908) (xy 98.662747 91.389174) + (xy 98.763823 91.3995) (xy 99.462176 91.399499) (xy 99.462184 91.399498) (xy 99.462187 91.399498) + (xy 99.51753 91.393844) (xy 99.563253 91.389174) (xy 99.727016 91.334908) (xy 99.87385 91.24434) + (xy 99.888171 91.230018) (xy 99.949489 91.196533) (xy 100.019181 91.201514) (xy 100.063534 91.230017) + (xy 100.077461 91.243944) (xy 100.077465 91.243947) (xy 100.224188 91.334448) (xy 100.224199 91.334453) + (xy 100.387847 91.38868) (xy 100.488851 91.398999) (xy 100.588 91.398998) (xy 100.588 90.298) (xy 100.607685 90.230961) + (xy 100.660489 90.185206) (xy 100.712 90.174) (xy 100.964 90.174) (xy 101.031039 90.193685) (xy 101.076794 90.246489) + (xy 101.088 90.298) (xy 101.088 91.398999) (xy 101.18714 91.398999) (xy 101.187154 91.398998) (xy 101.288152 91.38868) + (xy 101.4518 91.334453) (xy 101.451811 91.334448) (xy 101.598533 91.243948) (xy 101.665464 91.177017) + (xy 101.726787 91.143532) (xy 101.796479 91.148516) (xy 101.840827 91.177017) (xy 101.91765 91.25384) + (xy 102.064484 91.344408) (xy 102.228247 91.398674) (xy 102.329323 91.409) (xy 102.902676 91.408999) + (xy 102.902684 91.408998) (xy 102.902687 91.408998) (xy 102.95803 91.403344) (xy 103.003753 91.398674) + (xy 103.167516 91.344408) (xy 103.31435 91.25384) (xy 103.43634 91.13185) (xy 103.519827 90.996496) + (xy 103.571774 90.949772) (xy 103.640736 90.938549) (xy 103.681073 90.952092) (xy 103.681334 90.951508) + (xy 103.860192 91.031142) (xy 103.860197 91.031144) (xy 104.045354 91.0705) (xy 104.045355 91.0705) + (xy 104.052192 91.0705) (xy 104.119231 91.090185) (xy 104.164986 91.142989) (xy 104.17493 91.212147) + (xy 104.145905 91.275703) (xy 104.139873 91.282181) (xy 103.652873 91.769181) (xy 103.59155 91.802666) + (xy 103.565192 91.8055) (xy 96.457958 91.8055) (xy 96.390919 91.785815) (xy 96.35242 91.746598) + (xy 96.346712 91.737344) (xy 96.222657 91.613289) (xy 96.222656 91.613288) (xy 96.073334 91.521186) + (xy 95.906797 91.466001) (xy 95.906795 91.466) (xy 95.80401 91.4555) (xy 95.203998 91.4555) (xy 95.20398 91.455501) + (xy 95.101203 91.466) (xy 95.1012 91.466001) (xy 94.934668 91.521185) (xy 94.934663 91.521187) (xy 94.785342 91.613289) + (xy 94.661289 91.737342) (xy 94.569187 91.886663) (xy 94.569185 91.886668) (xy 94.548469 91.949185) + (xy 94.514001 92.053203) (xy 94.514001 92.053204) (xy 94.514 92.053204) (xy 94.5035 92.155983) (xy 94.5035 92.756001) + (xy 94.503501 92.756019) (xy 94.514 92.858796) (xy 94.514001 92.858799) (xy 94.569185 93.025331) + (xy 94.569187 93.025336) (xy 94.596334 93.069348) (xy 94.661288 93.174656) (xy 94.785344 93.298712) + (xy 94.934666 93.390814) (xy 95.101203 93.445999) (xy 95.203991 93.4565) (xy 95.804008 93.456499) + (xy 95.804016 93.456498) (xy 95.804019 93.456498) (xy 95.860302 93.450748) (xy 95.906797 93.445999) + (xy 96.073334 93.390814) (xy 96.222656 93.298712) (xy 96.346712 93.174656) (xy 96.352419 93.165402) + (xy 96.404368 93.118678) (xy 96.457958 93.1065) (xy 103.800495 93.1065) (xy 103.816505 93.108267) + (xy 103.816528 93.108026) (xy 103.824294 93.10876) (xy 103.824295 93.108759) (xy 103.824296 93.10876) + (xy 103.831271 93.10854) (xy 103.895235 93.106531) (xy 103.897183 93.1065) (xy 103.926925 93.1065) + (xy 103.93419 93.105581) (xy 103.940016 93.105122) (xy 103.988569 93.103597) (xy 104.008956 93.097673) + (xy 104.027996 93.093731) (xy 104.049058 93.091071) (xy 104.094235 93.073183) (xy 104.099735 93.0713) + (xy 104.146398 93.057744) (xy 104.164665 93.046939) (xy 104.182136 93.03838) (xy 104.201871 93.030568) + (xy 104.241177 93.00201) (xy 104.246043 92.998813) (xy 104.287865 92.974081) (xy 104.30287 92.959075) + (xy 104.317668 92.946436) (xy 104.334837 92.933963) (xy 104.365809 92.896522) (xy 104.369723 92.892221) + (xy 105.301513 91.960431) (xy 105.314079 91.950365) (xy 105.313925 91.950178) (xy 105.319933 91.945206) + (xy 105.31994 91.945202) (xy 105.364109 91.898165) (xy 105.424348 91.862772) (xy 105.494161 91.865564) + (xy 105.551383 91.905657) (xy 105.577845 91.970322) (xy 105.5785 91.98305) (xy 105.5785 92.243494) + (xy 105.576732 92.259505) (xy 105.576974 92.259528) (xy 105.576239 92.267294) (xy 105.578469 92.338235) + (xy 105.5785 92.340183) (xy 105.5785 92.36992) (xy 105.578501 92.36994) (xy 105.579418 92.377206) + (xy 105.579876 92.383024) (xy 105.581402 92.431567) (xy 105.581403 92.43157) (xy 105.587323 92.451948) + (xy 105.591268 92.470996) (xy 105.593928 92.492054) (xy 105.593931 92.492064) (xy 105.611813 92.53723) + (xy 105.613705 92.542758) (xy 105.627254 92.589395) (xy 105.627255 92.589397) (xy 105.63806 92.607666) + (xy 105.646617 92.625134) (xy 105.652226 92.6393) (xy 105.654432 92.644872) (xy 105.682983 92.68417) + (xy 105.686188 92.689049) (xy 105.710919 92.730865) (xy 105.710923 92.730869) (xy 105.725925 92.745871) + (xy 105.738563 92.760669) (xy 105.751033 92.777833) (xy 105.751036 92.777836) (xy 105.751037 92.777837) + (xy 105.788476 92.808809) (xy 105.792776 92.812722) (xy 107.516569 94.536515) (xy 109.213764 96.23371) + (xy 109.223835 96.24628) (xy 109.224022 96.246126) (xy 109.228995 96.252137) (xy 109.280742 96.300731) + (xy 109.282109 96.302055) (xy 109.303165 96.323111) (xy 109.303168 96.323113) (xy 109.308957 96.327605) + (xy 109.313397 96.331397) (xy 109.340812 96.35714) (xy 109.348807 96.364648) (xy 109.348809 96.364649) + (xy 109.367405 96.374872) (xy 109.38367 96.385557) (xy 109.400432 96.39856) (xy 109.400435 96.398561) + (xy 109.400436 96.398562) (xy 109.445023 96.417856) (xy 109.450259 96.420421) (xy 109.492832 96.443827) + (xy 109.50854 96.447859) (xy 109.513386 96.449104) (xy 109.531798 96.455407) (xy 109.551273 96.463835) + (xy 109.599255 96.471434) (xy 109.604948 96.472613) (xy 109.614079 96.474957) (xy 109.674113 96.510697) + (xy 109.69679 96.545251) (xy 109.699227 96.550807) (xy 109.835233 96.758982) (xy 109.865051 96.791373) + (xy 110.003656 96.941938) (xy 110.199891 97.094674) (xy 110.199893 97.094675) (xy 110.323594 97.161619) + (xy 110.41859 97.213028) (xy 110.653786 97.293771) (xy 110.899065 97.3347) (xy 111.147735 97.3347) + (xy 111.393014 97.293771) (xy 111.446366 97.275454) (xy 111.516162 97.272304) (xy 111.574307 97.305052) + (xy 111.731352 97.462097) (xy 111.764836 97.523419) (xy 111.759852 97.59311) (xy 111.731354 97.637456) + (xy 111.71836 97.65045) (xy 111.627793 97.797281) (xy 111.627791 97.797286) (xy 111.612874 97.842302) + (xy 111.573526 97.961047) (xy 111.573526 97.961048) (xy 111.573525 97.961048) (xy 111.5632 98.062115) + (xy 111.5632 98.635469) (xy 111.563201 98.635487) (xy 111.573525 98.736552) (xy 111.627792 98.900315) + (xy 111.627793 98.900318) (xy 111.718361 99.047151) (xy 111.757828 99.086618) (xy 111.791313 99.147941) + (xy 111.786329 99.217633) (xy 111.757829 99.261979) (xy 111.692961 99.326848) (xy 111.602393 99.473681) + (xy 111.602391 99.473686) (xy 111.599016 99.483871) (xy 111.548126 99.637447) (xy 111.548126 99.637448) + (xy 111.548125 99.637448) (xy 111.5378 99.738515) (xy 111.5378 99.738528) (xy 111.537801 100.311864) + (xy 111.537801 100.311887) (xy 111.548125 100.412952) (xy 111.56919 100.476519) (xy 111.602392 100.576716) + (xy 111.69296 100.72355) (xy 111.81495 100.84554) (xy 111.961784 100.936108) (xy 112.125547 100.990374) + (xy 112.226623 101.0007) (xy 112.824976 101.000699) (xy 112.824984 101.000698) (xy 112.824987 101.000698) + (xy 112.88033 100.995044) (xy 112.926053 100.990374) (xy 113.089816 100.936108) (xy 113.23665 100.84554) + (xy 113.350975 100.731214) (xy 113.412294 100.697732) (xy 113.481986 100.702716) (xy 113.526334 100.731217) + (xy 113.640261 100.845144) (xy 113.640265 100.845147) (xy 113.786988 100.935648) (xy 113.786999 100.935653) + (xy 113.950647 100.98988) (xy 114.051651 101.000199) (xy 114.100799 101.000198) (xy 114.1008 101.000198) + (xy 114.1008 99.8992) (xy 114.120485 99.832161) (xy 114.173289 99.786406) (xy 114.2248 99.7752) + (xy 114.4768 99.7752) (xy 114.543839 99.794885) (xy 114.589594 99.847689) (xy 114.6008 99.8992) + (xy 114.600799 101.000198) (xy 114.6008 101.000199) (xy 114.64994 101.000199) (xy 114.649954 101.000198) + (xy 114.757498 100.989212) (xy 114.826191 101.001982) (xy 114.877075 101.049862) (xy 114.8941 101.11257) + (xy 114.8941 101.787191) (xy 114.874415 101.85423) (xy 114.857781 101.874872) (xy 114.077007 102.655645) + (xy 114.015684 102.68913) (xy 113.945992 102.684146) (xy 113.936429 102.678) (xy 111.023999 102.678) + (xy 111.011168 102.690831) (xy 110.949845 102.724315) (xy 110.880153 102.71933) (xy 110.824222 102.677461) + (xy 110.78421 102.624013) (xy 110.781546 102.620454) (xy 110.781544 102.620453) (xy 110.781544 102.620452) + (xy 110.666335 102.534206) (xy 110.666328 102.534202) (xy 110.531482 102.483908) (xy 110.531483 102.483908) + (xy 110.471883 102.477501) (xy 110.471881 102.4775) (xy 110.471873 102.4775) (xy 110.471864 102.4775) + (xy 108.476129 102.4775) (xy 108.476123 102.477501) (xy 108.416516 102.483908) (xy 108.281671 102.534202) + (xy 108.281664 102.534206) (xy 108.166455 102.620452) (xy 108.166452 102.620455) (xy 108.080206 102.735664) + (xy 108.080202 102.735671) (xy 108.029908 102.870517) (xy 108.023501 102.930116) (xy 108.0235 102.930135) + (xy 108.0235 103.82587) (xy 108.023501 103.825876) (xy 108.029908 103.885483) (xy 108.080202 104.020328) + (xy 108.080206 104.020335) (xy 108.166452 104.135544) (xy 108.166455 104.135547) (xy 108.281664 104.221793) + (xy 108.281671 104.221797) (xy 108.325511 104.238148) (xy 108.416517 104.272091) (xy 108.476127 104.2785) + (xy 108.6995 104.278499) (xy 108.766539 104.298183) (xy 108.812294 104.350987) (xy 108.8235 104.402499) + (xy 108.8235 105.248293) (xy 108.821732 105.264304) (xy 108.821974 105.264327) (xy 108.821239 105.272094) + (xy 108.823468 105.343036) (xy 108.823499 105.344981) (xy 108.823499 105.374728) (xy 108.824418 105.382004) + (xy 108.824876 105.387823) (xy 108.826402 105.436367) (xy 108.826403 105.43637) (xy 108.832323 105.456748) + (xy 108.836268 105.475796) (xy 108.838928 105.496854) (xy 108.838931 105.496864) (xy 108.856813 105.54203) + (xy 108.858705 105.547558) (xy 108.872254 105.594195) (xy 108.872255 105.594197) (xy 108.88306 105.612466) + (xy 108.891617 105.629934) (xy 108.899432 105.649671) (xy 108.927988 105.688976) (xy 108.931183 105.69384) + (xy 108.934408 105.699292) (xy 108.937066 105.703788) (xy 108.953654 105.753945) (xy 108.969326 105.903056) + (xy 108.969327 105.903059) (xy 109.027818 106.083077) (xy 109.027821 106.083084) (xy 109.122467 106.247016) + (xy 109.196049 106.328737) (xy 109.249129 106.387688) (xy 109.398458 106.496182) (xy 109.441124 106.551512) + (xy 109.447103 106.621125) (xy 109.414497 106.68292) (xy 109.353659 106.717277) (xy 109.325573 106.7205) + (xy 108.81733 106.7205) (xy 108.817312 106.720501) (xy 108.716247 106.730825) (xy 108.552484 106.785092) + (xy 108.552481 106.785093) (xy 108.405651 106.875659) (xy 108.291327 106.989983) (xy 108.230004 107.023467) + (xy 108.160312 107.018483) (xy 108.115965 106.989982) (xy 108.002038 106.876055) (xy 108.002034 106.876052) + (xy 107.855311 106.785551) (xy 107.8553 106.785546) (xy 107.691652 106.731319) (xy 107.590654 106.721) + (xy 107.541499 106.721) (xy 107.5415 107.822) (xy 107.521815 107.889039) (xy 107.469012 107.934794) + (xy 107.4175 107.946) (xy 103.705999 107.946) (xy 103.693168 107.958831) (xy 103.631845 107.992315) + (xy 103.562153 107.98733) (xy 103.506222 107.945461) (xy 103.484229 107.916083) (xy 103.463546 107.888454) + (xy 103.463544 107.888453) (xy 103.463544 107.888452) (xy 103.348335 107.802206) (xy 103.348328 107.802202) + (xy 103.213482 107.751908) (xy 103.213483 107.751908) (xy 103.153883 107.745501) (xy 103.153881 107.7455) + (xy 103.153873 107.7455) (xy 103.153864 107.7455) (xy 101.158129 107.7455) (xy 101.158123 107.745501) + (xy 101.098516 107.751908) (xy 100.963671 107.802202) (xy 100.963664 107.802206) (xy 100.848457 107.888451) + (xy 100.848451 107.888457) (xy 100.805515 107.945812) (xy 100.749581 107.987682) (xy 100.706249 107.9955) + (xy 96.063608 107.9955) (xy 95.996569 107.975815) (xy 95.975927 107.959181) (xy 95.956208 107.939462) + (xy 95.922723 107.878139) (xy 95.920568 107.864741) (xy 95.913995 107.802202) (xy 95.907074 107.736344) + (xy 95.848579 107.556316) (xy 95.784888 107.446) (xy 103.706 107.446) (xy 104.906 107.446) (xy 105.406 107.446) + (xy 107.0415 107.446) (xy 107.0415 106.721) (xy 107.041499 106.720999) (xy 106.992361 106.721) (xy 106.992343 106.721001) + (xy 106.891347 106.731319) (xy 106.727699 106.785546) (xy 106.727688 106.785551) (xy 106.580965 106.876052) + (xy 106.58096 106.876056) (xy 106.570626 106.88639) (xy 106.509302 106.919873) (xy 106.439611 106.914886) + (xy 106.408637 106.897973) (xy 106.348089 106.852647) (xy 106.348086 106.852645) (xy 106.213379 106.802403) + (xy 106.213372 106.802401) (xy 106.153844 106.796) (xy 105.406 106.796) (xy 105.406 107.446) (xy 104.906 107.446) + (xy 104.906 106.796) (xy 104.158155 106.796) (xy 104.098627 106.802401) (xy 104.09862 106.802403) + (xy 103.963913 106.852645) (xy 103.963906 106.852649) (xy 103.848812 106.938809) (xy 103.848809 106.938812) + (xy 103.762649 107.053906) (xy 103.762645 107.053913) (xy 103.712403 107.18862) (xy 103.712401 107.188627) + (xy 103.706 107.248155) (xy 103.706 107.446) (xy 95.784888 107.446) (xy 95.753933 107.392384) (xy 95.627271 107.251712) + (xy 95.62727 107.251711) (xy 95.474134 107.140451) (xy 95.474129 107.140448) (xy 95.301207 107.063457) + (xy 95.301202 107.063455) (xy 95.14433 107.030112) (xy 95.116046 107.0241) (xy 94.926754 107.0241) + (xy 94.89847 107.030112) (xy 94.741597 107.063455) (xy 94.741592 107.063457) (xy 94.56867 107.140448) + (xy 94.568665 107.140451) (xy 94.415529 107.251711) (xy 94.288866 107.392385) (xy 94.194221 107.556315) + (xy 94.194218 107.556322) (xy 94.148833 107.696005) (xy 94.135726 107.736344) (xy 94.11594 107.9246) + (xy 94.135726 108.112856) (xy 94.135727 108.112859) (xy 94.194218 108.292877) (xy 94.194221 108.292884) + (xy 94.288867 108.456816) (xy 94.369949 108.546866) (xy 94.415529 108.597488) (xy 94.568665 108.708748) + (xy 94.56867 108.708751) (xy 94.741592 108.785742) (xy 94.741597 108.785744) (xy 94.926754 108.8251) + (xy 94.950592 108.8251) (xy 95.017631 108.844785) (xy 95.038273 108.861419) (xy 95.222364 109.04551) + (xy 95.232435 109.05808) (xy 95.232622 109.057926) (xy 95.237595 109.063937) (xy 95.237597 109.063939) + (xy 95.237598 109.06394) (xy 95.249193 109.074828) (xy 95.289342 109.112531) (xy 95.290709 109.113855) + (xy 95.30966 109.132806) (xy 95.311767 109.134913) (xy 95.317558 109.139405) (xy 95.321998 109.143198) + (xy 95.333778 109.154259) (xy 95.357407 109.176448) (xy 95.375998 109.186668) (xy 95.392263 109.197352) + (xy 95.409034 109.210361) (xy 95.409037 109.210363) (xy 95.453627 109.229658) (xy 95.458856 109.23222) + (xy 95.501432 109.255627) (xy 95.521993 109.260905) (xy 95.540397 109.267207) (xy 95.559874 109.275636) + (xy 95.597727 109.28163) (xy 95.607854 109.283235) (xy 95.613564 109.284417) (xy 95.660623 109.2965) + (xy 95.681845 109.2965) (xy 95.701242 109.298026) (xy 95.722205 109.301347) (xy 95.770572 109.296774) + (xy 95.776409 109.2965) (xy 100.706249 109.2965) (xy 100.773288 109.316185) (xy 100.805515 109.346188) + (xy 100.848451 109.403542) (xy 100.848454 109.403546) (xy 100.848457 109.403548) (xy 100.963664 109.489793) + (xy 100.963671 109.489797) (xy 101.098517 109.540091) (xy 101.098516 109.540091) (xy 101.105444 109.540835) + (xy 101.158127 109.5465) (xy 103.153872 109.546499) (xy 103.213483 109.540091) (xy 103.348331 109.489796) + (xy 103.463546 109.403546) (xy 103.482233 109.378582) (xy 103.538166 109.336711) (xy 103.607858 109.331727) + (xy 103.669181 109.365212) (xy 103.702666 109.426535) (xy 103.7055 109.452893) (xy 103.7055 110.04387) + (xy 103.705501 110.043876) (xy 103.711908 110.103483) (xy 103.762202 110.238328) (xy 103.762206 110.238335) + (xy 103.848452 110.353544) (xy 103.848455 110.353547) (xy 103.963664 110.439793) (xy 103.963671 110.439797) + (xy 104.098517 110.490091) (xy 104.098516 110.490091) (xy 104.103865 110.490666) (xy 104.158127 110.4965) + (xy 106.153872 110.496499) (xy 106.213483 110.490091) (xy 106.348331 110.439796) (xy 106.463546 110.353546) + (xy 106.497579 110.308083) (xy 106.553509 110.266215) (xy 106.623201 110.26123) (xy 106.677628 110.290948) + (xy 106.678487 110.289862) (xy 106.684147 110.294338) (xy 106.684149 110.294339) (xy 106.68415 110.29434) + (xy 106.830984 110.384908) (xy 106.994747 110.439174) (xy 107.095823 110.4495) (xy 107.694176 110.449499) + (xy 107.694184 110.449498) (xy 107.694187 110.449498) (xy 107.753833 110.443405) (xy 107.795253 110.439174) + (xy 107.959016 110.384908) (xy 108.10585 110.29434) (xy 108.219818 110.180371) (xy 108.281142 110.146886) + (xy 108.350834 110.15187) (xy 108.395181 110.180371) (xy 108.50915 110.29434) (xy 108.655984 110.384908) + (xy 108.819747 110.439174) (xy 108.920823 110.4495) (xy 109.519176 110.449499) (xy 109.519184 110.449498) + (xy 109.519187 110.449498) (xy 109.578833 110.443405) (xy 109.620253 110.439174) (xy 109.784016 110.384908) + (xy 109.93085 110.29434) (xy 110.05284 110.17235) (xy 110.143408 110.025516) (xy 110.197674 109.861753) + (xy 110.208 109.760677) (xy 110.207999 109.187324) (xy 110.205811 109.165909) (xy 110.197674 109.086247) + (xy 110.178714 109.02903) (xy 110.143408 108.922484) (xy 110.05284 108.77565) (xy 109.93085 108.65366) + (xy 109.930846 108.653657) (xy 109.915375 108.644114) (xy 109.868651 108.592165) (xy 109.857431 108.523202) + (xy 109.885276 108.459121) (xy 109.892771 108.450918) (xy 109.94934 108.39435) (xy 109.949343 108.394344) + (xy 109.949348 108.39434) (xy 109.949945 108.393586) (xy 109.950485 108.393202) (xy 109.954447 108.389242) + (xy 109.955124 108.389919) (xy 110.006968 108.353211) (xy 110.047208 108.3465) (xy 110.478563 108.3465) + (xy 110.545602 108.366185) (xy 110.584961 108.408615) (xy 110.585422 108.408314) (xy 110.587185 108.411012) + (xy 110.587614 108.411475) (xy 110.588226 108.412606) (xy 110.724233 108.620782) (xy 110.737629 108.635334) + (xy 110.892656 108.803738) (xy 111.088891 108.956474) (xy 111.30759 109.074828) (xy 111.495696 109.139405) + (xy 111.538955 109.154256) (xy 111.542786 109.155571) (xy 111.788065 109.1965) (xy 112.036735 109.1965) + (xy 112.282014 109.155571) (xy 112.51721 109.074828) (xy 112.735909 108.956474) (xy 112.920078 108.813129) + (xy 112.985071 108.787487) (xy 113.05361 108.801053) (xy 113.103935 108.849522) (xy 113.120067 108.917504) + (xy 113.11956 108.923943) (xy 113.117366 108.944818) (xy 113.11514 108.966) (xy 113.134926 109.154256) + (xy 113.134927 109.154259) (xy 113.193418 109.334277) (xy 113.193421 109.334284) (xy 113.288067 109.498216) + (xy 113.384427 109.605234) (xy 113.414729 109.638888) (xy 113.567865 109.750148) (xy 113.56787 109.750151) + (xy 113.740792 109.827142) (xy 113.740797 109.827144) (xy 113.925954 109.8665) (xy 113.925955 109.8665) + (xy 114.115244 109.8665) (xy 114.115246 109.8665) (xy 114.300403 109.827144) (xy 114.47333 109.750151) + (xy 114.626471 109.638888) (xy 114.753133 109.498216) (xy 114.847779 109.334284) (xy 114.906274 109.154256) + (xy 114.92606 108.966) (xy 114.906274 108.777744) (xy 114.847779 108.597716) (xy 114.810125 108.532498) + (xy 114.793655 108.464599) (xy 114.816507 108.398572) (xy 114.871429 108.355382) (xy 114.917514 108.3465) + (xy 116.422163 108.3465) (xy 116.489202 108.366185) (xy 116.528561 108.408615) (xy 116.529022 108.408314) + (xy 116.530785 108.411012) (xy 116.531214 108.411475) (xy 116.531826 108.412606) (xy 116.667833 108.620782) + (xy 116.681229 108.635334) (xy 116.836256 108.803738) (xy 117.032491 108.956474) (xy 117.25119 109.074828) + (xy 117.439296 109.139405) (xy 117.482555 109.154256) (xy 117.486386 109.155571) (xy 117.731665 109.1965) + (xy 117.980335 109.1965) (xy 118.225614 109.155571) (xy 118.46081 109.074828) (xy 118.679509 108.956474) + (xy 118.875744 108.803738) (xy 119.044164 108.620785) (xy 119.180173 108.412607) (xy 119.280063 108.184881) + (xy 119.341108 107.943821) (xy 119.344042 107.908412) (xy 119.361643 107.696005) (xy 119.361643 107.695994) + (xy 119.341109 107.448187) (xy 119.341107 107.448175) (xy 119.280063 107.207118) (xy 119.180173 106.979393) + (xy 119.044166 106.771217) (xy 118.997937 106.720999) (xy 118.875744 106.588262) (xy 118.679509 106.435526) + (xy 118.679507 106.435525) (xy 118.679506 106.435524) (xy 118.460811 106.317172) (xy 118.460802 106.317169) + (xy 118.225616 106.236429) (xy 117.980335 106.1955) (xy 117.731665 106.1955) (xy 117.486383 106.236429) + (xy 117.251197 106.317169) (xy 117.251188 106.317172) (xy 117.032493 106.435524) (xy 116.836257 106.588261) + (xy 116.667833 106.771217) (xy 116.531826 106.979393) (xy 116.531214 106.980525) (xy 116.530842 106.980898) + (xy 116.529022 106.983686) (xy 116.528448 106.983311) (xy 116.481991 107.030112) (xy 116.422163 107.0455) + (xy 114.899807 107.0455) (xy 114.832768 107.025815) (xy 114.787013 106.973011) (xy 114.777069 106.903853) + (xy 114.806094 106.840297) (xy 114.812126 106.833819) (xy 115.996274 105.649671) (xy 117.201413 104.444531) + (xy 117.213979 104.434465) (xy 117.213825 104.434278) (xy 117.219833 104.429305) (xy 117.21984 104.429302) + (xy 117.267172 104.378898) (xy 117.268432 104.377556) (xy 117.269756 104.376188) (xy 117.290811 104.355135) + (xy 117.295301 104.349345) (xy 117.299083 104.344915) (xy 117.332348 104.309493) (xy 117.342574 104.29089) + (xy 117.353253 104.274633) (xy 117.366262 104.257864) (xy 117.385556 104.213275) (xy 117.388112 104.208056) + (xy 117.411527 104.165468) (xy 117.416805 104.144906) (xy 117.423107 104.126499) (xy 117.431535 104.107027) + (xy 117.439133 104.059053) (xy 117.440314 104.053347) (xy 117.4524 104.006277) (xy 117.4524 103.985048) + (xy 117.453927 103.965649) (xy 117.455322 103.95684) (xy 117.457246 103.944695) (xy 117.452672 103.896316) + (xy 117.452399 103.890522) (xy 117.452399 97.939009) (xy 117.454167 97.922994) (xy 117.453925 97.922972) + (xy 117.454657 97.915213) (xy 117.45466 97.915204) (xy 117.453019 97.862979) (xy 117.452431 97.844249) + (xy 117.4524 97.842302) (xy 117.4524 97.812578) (xy 117.4524 97.812575) (xy 117.451479 97.805292) + (xy 117.451023 97.799487) (xy 117.450954 97.797281) (xy 117.449498 97.750931) (xy 117.443576 97.73055) + (xy 117.439631 97.711495) (xy 117.436972 97.690449) (xy 117.436971 97.690443) (xy 117.436971 97.690442) + (xy 117.421489 97.651341) (xy 117.415113 97.581766) (xy 117.447365 97.519785) (xy 117.508006 97.48508) + (xy 117.557191 97.483386) (xy 117.731665 97.5125) (xy 117.980335 97.5125) (xy 118.225614 97.471571) + (xy 118.46081 97.390828) (xy 118.679509 97.272474) (xy 118.875744 97.119738) (xy 118.979556 97.006967) + (xy 119.039441 96.970979) (xy 119.109279 96.973079) (xy 119.166895 97.012603) (xy 119.178168 97.028948) + (xy 119.188088 97.046129) (xy 119.206267 97.077616) (xy 119.332929 97.218288) (xy 119.486065 97.329548) + (xy 119.48607 97.329551) (xy 119.658992 97.406542) (xy 119.658997 97.406544) (xy 119.844154 97.4459) + (xy 119.844155 97.4459) (xy 120.033444 97.4459) (xy 120.033446 97.4459) (xy 120.218603 97.406544) + (xy 120.39153 97.329551) (xy 120.544671 97.218288) (xy 120.671333 97.077616) (xy 120.765979 96.913684) + (xy 120.824474 96.733656) (xy 120.84426 96.5454) (xy 120.824474 96.357144) (xy 120.765979 96.177116) + (xy 120.671333 96.013184) (xy 120.544671 95.872512) (xy 120.54467 95.872511) (xy 120.391534 95.761251) + (xy 120.391529 95.761248) (xy 120.218607 95.684257) (xy 120.218602 95.684255) (xy 120.072801 95.653265) + (xy 120.033446 95.6449) (xy 120.033445 95.6449) (xy 120.011011 95.6449) (xy 119.943972 95.625215) + (xy 119.915468 95.599941) (xy 119.910601 95.594057) (xy 119.866361 95.552515) (xy 119.858832 95.545445) + (xy 119.857458 95.544112) (xy 119.836435 95.523089) (xy 119.83064 95.518594) (xy 119.826198 95.514799) + (xy 119.790796 95.481554) (xy 119.790788 95.481548) (xy 119.772192 95.471325) (xy 119.755931 95.460644) + (xy 119.739163 95.447637) (xy 119.715695 95.437482) (xy 119.694578 95.428343) (xy 119.689356 95.425786) + (xy 119.646768 95.402373) (xy 119.646765 95.402372) (xy 119.626201 95.397092) (xy 119.607796 95.39079) + (xy 119.588327 95.382365) (xy 119.588321 95.382363) (xy 119.540351 95.374766) (xy 119.534636 95.373582) + (xy 119.518172 95.369355) (xy 119.48758 95.3615) (xy 119.487577 95.3615) (xy 119.466355 95.3615) + (xy 119.446955 95.359973) (xy 119.425996 95.356653) (xy 119.425995 95.356653) (xy 119.402186 95.358903) + (xy 119.37763 95.361225) (xy 119.371792 95.3615) (xy 119.289837 95.3615) (xy 119.222798 95.341815) + (xy 119.183438 95.299384) (xy 119.182978 95.299686) (xy 119.181214 95.296987) (xy 119.180786 95.296525) + (xy 119.180173 95.295393) (xy 119.044166 95.087217) (xy 118.956189 94.991649) (xy 118.875744 94.904262) + (xy 118.679509 94.751526) (xy 118.679507 94.751525) (xy 118.679506 94.751524) (xy 118.460811 94.633172) + (xy 118.460802 94.633169) (xy 118.225616 94.552429) (xy 117.980335 94.5115) (xy 117.731665 94.5115) + (xy 117.486383 94.552429) (xy 117.251197 94.633169) (xy 117.251188 94.633172) (xy 117.032493 94.751524) + (xy 116.836257 94.904261) (xy 116.667833 95.087217) (xy 116.531826 95.295393) (xy 116.531214 95.296525) + (xy 116.530842 95.296898) (xy 116.529022 95.299686) (xy 116.528448 95.299311) (xy 116.481991 95.346112) + (xy 116.422163 95.3615) (xy 116.068608 95.3615) (xy 116.001569 95.341815) (xy 115.980927 95.325181) + (xy 113.562746 92.907) (xy 115.611001 92.907) (xy 115.611001 93.006154) (xy 115.621319 93.107152) + (xy 115.675546 93.2708) (xy 115.675551 93.270811) (xy 115.766052 93.417534) (xy 115.766055 93.417538) + (xy 115.887961 93.539444) (xy 115.887965 93.539447) (xy 116.034688 93.629948) (xy 116.034699 93.629953) + (xy 116.198347 93.68418) (xy 116.299352 93.694499) (xy 116.335999 93.694499) (xy 116.336 92.907) + (xy 116.836 92.907) (xy 116.836 93.694499) (xy 116.87264 93.694499) (xy 116.872654 93.694498) (xy 116.973652 93.68418) + (xy 117.1373 93.629953) (xy 117.137311 93.629948) (xy 117.284034 93.539447) (xy 117.284038 93.539444) + (xy 117.405944 93.417538) (xy 117.405947 93.417534) (xy 117.496448 93.270811) (xy 117.496453 93.2708) + (xy 117.55068 93.107152) (xy 117.560999 93.006154) (xy 117.561 93.006141) (xy 117.561 92.907) (xy 116.836 92.907) + (xy 116.336 92.907) (xy 115.611001 92.907) (xy 113.562746 92.907) (xy 113.194834 92.539088) (xy 113.184761 92.526514) + (xy 113.184574 92.52667) (xy 113.179598 92.520655) (xy 113.141592 92.484966) (xy 113.127832 92.472045) + (xy 113.126458 92.470712) (xy 113.105434 92.449688) (xy 113.09964 92.445193) (xy 113.095206 92.441407) + (xy 113.081985 92.428991) (xy 113.046591 92.368749) (xy 113.049385 92.298935) (xy 113.08948 92.241715) + (xy 113.154145 92.215255) (xy 113.16687 92.2146) (xy 113.254213 92.2146) (xy 113.25422 92.2146) + (xy 113.366736 92.199787) (xy 113.506733 92.141798) (xy 113.626951 92.049551) (xy 113.719198 91.929333) + (xy 113.777187 91.789336) (xy 113.784351 91.734914) (xy 113.812619 91.671017) (xy 113.870944 91.632547) + (xy 113.907291 91.6271) (xy 115.655898 91.6271) (xy 115.722937 91.646785) (xy 115.761436 91.686002) + (xy 115.765659 91.692849) (xy 115.779982 91.707172) (xy 115.813467 91.768495) (xy 115.808483 91.838187) + (xy 115.779985 91.882532) (xy 115.766052 91.896465) (xy 115.675551 92.043188) (xy 115.675546 92.043199) + (xy 115.621319 92.206847) (xy 115.611 92.307845) (xy 115.611 92.407) (xy 117.560998 92.407) (xy 117.560999 92.30786) + (xy 117.560998 92.307845) (xy 117.55068 92.206847) (xy 117.496453 92.043199) (xy 117.496448 92.043188) + (xy 117.405947 91.896465) (xy 117.405944 91.896461) (xy 117.392017 91.882534) (xy 117.358532 91.821211) + (xy 117.363516 91.751519) (xy 117.392017 91.707172) (xy 117.40634 91.69285) (xy 117.472381 91.585779) + (xy 117.524328 91.539056) (xy 117.59329 91.527833) (xy 117.657372 91.555676) (xy 117.6656 91.563195) + (xy 122.163919 96.061515) (xy 124.027182 97.924778) (xy 124.060666 97.986099) (xy 124.0635 98.012457) + (xy 124.0635 101.923781) (xy 124.043815 101.99082) (xy 124.004597 102.029319) (xy 123.920347 102.081285) + (xy 123.920343 102.081288) (xy 123.796289 102.205342) (xy 123.704187 102.354663) (xy 123.704184 102.35467) + (xy 123.702623 102.359382) (xy 123.662845 102.416823) (xy 123.598327 102.443641) (xy 123.529553 102.43132) + (xy 123.497239 102.408049) (xy 123.380351 102.291161) (xy 123.38035 102.29116) (xy 123.249239 102.21029) + (xy 123.233518 102.200593) (xy 123.233513 102.200591) (xy 123.232069 102.200112) (xy 123.069753 102.146326) + (xy 123.069751 102.146325) (xy 122.968678 102.136) (xy 122.39533 102.136) (xy 122.395312 102.136001) + (xy 122.294247 102.146325) (xy 122.130484 102.200592) (xy 122.130481 102.200593) (xy 121.983648 102.291161) + (xy 121.861661 102.413148) (xy 121.771093 102.559981) (xy 121.771091 102.559984) (xy 121.771092 102.559984) + (xy 121.716826 102.723747) (xy 121.716826 102.723748) (xy 121.716825 102.723748) (xy 121.7065 102.824815) + (xy 121.7065 103.423169) (xy 121.706501 103.423187) (xy 121.716825 103.524252) (xy 121.744837 103.608784) + (xy 121.771092 103.688016) (xy 121.856122 103.825872) (xy 121.861661 103.834851) (xy 121.975629 103.948819) + (xy 122.009114 104.010142) (xy 122.00413 104.079834) (xy 121.975629 104.124181) (xy 121.861661 104.238148) + (xy 121.771093 104.384981) (xy 121.771091 104.384986) (xy 121.754567 104.434853) (xy 121.716826 104.548747) + (xy 121.716826 104.548748) (xy 121.716825 104.548748) (xy 121.7065 104.649815) (xy 121.7065 105.248169) + (xy 121.706502 105.248184) (xy 121.716825 105.349252) (xy 121.745694 105.43637) (xy 121.765736 105.496854) + (xy 121.771092 105.513015) (xy 121.771093 105.513018) (xy 121.779436 105.526544) (xy 121.86166 105.65985) + (xy 121.98365 105.78184) (xy 121.983656 105.781843) (xy 121.984405 105.782436) (xy 121.98479 105.78298) + (xy 121.988757 105.786947) (xy 121.988079 105.787624) (xy 122.024785 105.839456) (xy 122.0315 105.879707) + (xy 122.0315 106.9335) (xy 122.011815 107.000539) (xy 121.959011 107.046294) (xy 121.9075 107.0575) + (xy 120.957998 107.0575) (xy 120.95798 107.057501) (xy 120.855203 107.068) (xy 120.8552 107.068001) + (xy 120.688668 107.123185) (xy 120.688663 107.123187) (xy 120.539342 107.215289) (xy 120.415289 107.339342) + (xy 120.323187 107.488663) (xy 120.323185 107.488666) (xy 120.323186 107.488666) (xy 120.268001 107.655203) + (xy 120.268001 107.655204) (xy 120.268 107.655204) (xy 120.2575 107.757983) (xy 120.2575 109.158001) + (xy 120.257501 109.158018) (xy 120.268 109.260796) (xy 120.268001 109.260799) (xy 120.323185 109.427331) + (xy 120.323187 109.427336) (xy 120.324099 109.428815) (xy 120.415288 109.576656) (xy 120.539344 109.700712) + (xy 120.688666 109.792814) (xy 120.855203 109.847999) (xy 120.957991 109.8585) (xy 124.058008 109.858499) + (xy 124.160797 109.847999) (xy 124.327334 109.792814) (xy 124.476656 109.700712) (xy 124.600712 109.576656) + (xy 124.692814 109.427334) (xy 124.747999 109.260797) (xy 124.7585 109.158009) (xy 124.7585 109.158001) + (xy 125.2575 109.158001) (xy 125.257501 109.158018) (xy 125.268 109.260796) (xy 125.268001 109.260799) + (xy 125.323185 109.427331) (xy 125.323187 109.427336) (xy 125.324099 109.428815) (xy 125.415288 109.576656) + (xy 125.539344 109.700712) (xy 125.688666 109.792814) (xy 125.855203 109.847999) (xy 125.957991 109.8585) + (xy 127.937191 109.858499) (xy 128.00423 109.878184) (xy 128.024872 109.894818) (xy 128.479564 110.34951) + (xy 128.489635 110.36208) (xy 128.489822 110.361926) (xy 128.494795 110.367937) (xy 128.546542 110.416531) + (xy 128.547909 110.417855) (xy 128.568902 110.438848) (xy 128.568967 110.438913) (xy 128.574758 110.443405) + (xy 128.579198 110.447198) (xy 128.58165 110.4495) (xy 128.614607 110.480448) (xy 128.633198 110.490668) + (xy 128.649463 110.501352) (xy 128.666234 110.514361) (xy 128.666237 110.514363) (xy 128.710827 110.533658) + (xy 128.716056 110.53622) (xy 128.758632 110.559627) (xy 128.779193 110.564905) (xy 128.797597 110.571207) + (xy 128.817074 110.579636) (xy 128.854927 110.58563) (xy 128.865054 110.587235) (xy 128.870764 110.588417) + (xy 128.917823 110.6005) (xy 128.939045 110.6005) (xy 128.958442 110.602026) (xy 128.979405 110.605347) + (xy 129.027772 110.600774) (xy 129.033609 110.6005) (xy 131.899889 110.6005) (xy 131.966928 110.620185) + (xy 132.000896 110.652572) (xy 132.027514 110.689952) (xy 132.027516 110.689954) (xy 132.027517 110.689955) + (xy 132.02752 110.689959) (xy 132.17962 110.834985) (xy 132.274578 110.896011) (xy 132.356428 110.948613) + (xy 132.551543 111.026725) (xy 132.654729 111.046612) (xy 132.757914 111.0665) (xy 132.757915 111.0665) + (xy 133.465419 111.0665) (xy 133.465425 111.0665) (xy 133.622218 111.051528) (xy 133.823875 110.992316) + (xy 134.010682 110.896011) (xy 134.175886 110.766092) (xy 134.313519 110.607256) (xy 134.324815 110.587692) + (xy 134.410748 110.438851) (xy 134.418604 110.425244) (xy 134.487344 110.226633) (xy 134.517254 110.018602) + (xy 134.507254 109.80867) (xy 134.457704 109.604424) (xy 134.431251 109.5465) (xy 134.370401 109.413256) + (xy 134.370398 109.413251) (xy 134.370397 109.41325) (xy 134.370396 109.413247) (xy 134.248486 109.242048) + (xy 134.215256 109.210363) (xy 134.145917 109.144249) (xy 134.110982 109.08374) (xy 134.114307 109.01395) + (xy 134.154835 108.957036) (xy 134.166384 108.948971) (xy 134.231656 108.908712) (xy 134.355712 108.784656) + (xy 134.447814 108.635334) (xy 134.502999 108.468797) (xy 134.5135 108.366009) (xy 134.513499 107.565992) + (xy 134.51251 107.556315) (xy 134.502999 107.463203) (xy 134.502998 107.4632) (xy 134.498023 107.448187) + (xy 134.447814 107.296666) (xy 134.355712 107.147344) (xy 134.231656 107.023288) (xy 134.082334 106.931186) + (xy 133.915797 106.876001) (xy 133.915795 106.876) (xy 133.857896 106.870085) (xy 133.793205 106.843688) + (xy 133.753054 106.786507) (xy 133.7465 106.746727) (xy 133.7465 105.491534) (xy 133.766185 105.424495) + (xy 133.818989 105.37874) (xy 133.857897 105.368176) (xy 133.898797 105.363999) (xy 134.065334 105.308814) + (xy 134.214656 105.216712) (xy 134.338712 105.092656) (xy 134.430814 104.943334) (xy 134.485999 104.776797) + (xy 134.4965 104.674009) (xy 134.496499 101.573992) (xy 134.485999 101.471203) (xy 134.430814 101.304666) + (xy 134.338712 101.155344) (xy 134.214656 101.031288) (xy 134.065334 100.939186) (xy 133.898797 100.884001) + (xy 133.898795 100.884) (xy 133.79601 100.8735) (xy 132.395998 100.8735) (xy 132.395981 100.873501) + (xy 132.293203 100.884) (xy 132.2932 100.884001) (xy 132.126668 100.939185) (xy 132.126663 100.939187) + (xy 131.977342 101.031289) (xy 131.853289 101.155342) (xy 131.761187 101.304663) (xy 131.761185 101.304668) + (xy 131.750137 101.338009) (xy 131.706001 101.471203) (xy 131.706001 101.471204) (xy 131.706 101.471204) + (xy 131.6955 101.573983) (xy 131.6955 104.674001) (xy 131.695501 104.674018) (xy 131.706 104.776796) + (xy 131.706001 104.776799) (xy 131.752493 104.917101) (xy 131.761186 104.943334) (xy 131.853288 105.092656) + (xy 131.977344 105.216712) (xy 132.126666 105.308814) (xy 132.293203 105.363999) (xy 132.334103 105.368177) + (xy 132.398793 105.394573) (xy 132.438945 105.451753) (xy 132.4455 105.491535) (xy 132.4455 106.758195) + (xy 132.425815 106.825234) (xy 132.373011 106.870989) (xy 132.360504 106.875901) (xy 132.193668 106.931185) + (xy 132.193663 106.931187) (xy 132.044342 107.023289) (xy 131.920289 107.147342) (xy 131.828187 107.296663) + (xy 131.828185 107.296668) (xy 131.814044 107.339344) (xy 131.773001 107.463203) (xy 131.773001 107.463204) + (xy 131.773 107.463204) (xy 131.7625 107.565983) (xy 131.7625 108.366001) (xy 131.762501 108.366019) + (xy 131.773 108.468796) (xy 131.773001 108.468799) (xy 131.828185 108.635331) (xy 131.828187 108.635336) + (xy 131.840429 108.655183) (xy 131.920288 108.784656) (xy 132.044344 108.908712) (xy 132.102881 108.944818) + (xy 132.107739 108.947814) (xy 132.154464 108.999762) (xy 132.165687 109.068724) (xy 132.137844 109.132806) + (xy 132.119296 109.150822) (xy 132.100118 109.165903) (xy 132.100112 109.165909) (xy 132.021439 109.256703) + (xy 131.96266 109.294477) (xy 131.927726 109.2995) (xy 129.881359 109.2995) (xy 129.81432 109.279815) + (xy 129.768565 109.227011) (xy 129.758001 109.162901) (xy 129.758498 109.158026) (xy 129.7585 109.158009) + (xy 129.758499 107.757992) (xy 129.752166 107.696) (xy 129.747999 107.655203) (xy 129.747998 107.6552) + (xy 129.746545 107.650815) (xy 129.692814 107.488666) (xy 129.600712 107.339344) (xy 129.476656 107.215288) + (xy 129.355322 107.140449) (xy 129.327336 107.123187) (xy 129.327331 107.123185) (xy 129.309149 107.11716) + (xy 129.160797 107.068001) (xy 129.160795 107.068) (xy 129.05801 107.0575) (xy 125.957998 107.0575) + (xy 125.957981 107.057501) (xy 125.855203 107.068) (xy 125.8552 107.068001) (xy 125.688668 107.123185) + (xy 125.688663 107.123187) (xy 125.539342 107.215289) (xy 125.415289 107.339342) (xy 125.323187 107.488663) + (xy 125.323185 107.488666) (xy 125.323186 107.488666) (xy 125.268001 107.655203) (xy 125.268001 107.655204) + (xy 125.268 107.655204) (xy 125.2575 107.757983) (xy 125.2575 109.158001) (xy 124.7585 109.158001) + (xy 124.758499 107.757992) (xy 124.752166 107.696) (xy 124.747999 107.655203) (xy 124.747998 107.6552) + (xy 124.746545 107.650815) (xy 124.692814 107.488666) (xy 124.600712 107.339344) (xy 124.476656 107.215288) + (xy 124.355322 107.140449) (xy 124.327336 107.123187) (xy 124.327331 107.123185) (xy 124.309149 107.11716) + (xy 124.160797 107.068001) (xy 124.160795 107.068) (xy 124.058016 107.0575) (xy 124.058009 107.0575) + (xy 123.4565 107.0575) (xy 123.389461 107.037815) (xy 123.343706 106.985011) (xy 123.3325 106.9335) + (xy 123.3325 105.879707) (xy 123.352185 105.812668) (xy 123.37538 105.787084) (xy 123.375243 105.786947) + (xy 123.37805 105.784139) (xy 123.379595 105.782436) (xy 123.380339 105.781846) (xy 123.38035 105.78184) + (xy 123.50234 105.65985) (xy 123.592908 105.513016) (xy 123.647174 105.349253) (xy 123.6575 105.248177) + (xy 123.657499 104.649824) (xy 123.657317 104.648046) (xy 123.647174 104.548747) (xy 123.622798 104.475186) + (xy 123.592908 104.384984) (xy 123.50234 104.23815) (xy 123.38837 104.124181) (xy 123.354886 104.062858) + (xy 123.35987 103.993166) (xy 123.388368 103.948821) (xy 123.497242 103.839947) (xy 123.558561 103.806465) + (xy 123.628253 103.811449) (xy 123.684187 103.85332) (xy 123.702623 103.888619) (xy 123.704116 103.893124) + (xy 123.704185 103.89333) (xy 123.704187 103.893336) (xy 123.735866 103.944695) (xy 123.796288 104.042656) + (xy 123.920344 104.166712) (xy 124.069666 104.258814) (xy 124.236203 104.313999) (xy 124.338991 104.3245) + (xy 125.089008 104.324499) (xy 125.089016 104.324498) (xy 125.089019 104.324498) (xy 125.145302 104.318748) + (xy 125.191797 104.313999) (xy 125.358334 104.258814) (xy 125.507656 104.166712) (xy 125.631712 104.042656) + (xy 125.633752 104.039347) (xy 125.635745 104.037555) (xy 125.636193 104.036989) (xy 125.636289 104.037065) + (xy 125.685694 103.992623) (xy 125.754656 103.981395) (xy 125.81874 104.009234) (xy 125.844829 104.039339) + (xy 125.846681 104.042341) (xy 125.846683 104.042344) (xy 125.970654 104.166315) (xy 126.119875 104.258356) + (xy 126.11988 104.258358) (xy 126.286302 104.313505) (xy 126.286309 104.313506) (xy 126.389019 104.323999) + (xy 126.513999 104.323999) (xy 126.514 104.323998) (xy 126.514 103.374) (xy 127.014 103.374) (xy 127.014 104.323999) + (xy 127.138972 104.323999) (xy 127.138986 104.323998) (xy 127.241697 104.313505) (xy 127.408119 104.258358) + (xy 127.408124 104.258356) (xy 127.557345 104.166315) (xy 127.681315 104.042345) (xy 127.773356 103.893124) + (xy 127.773358 103.893119) (xy 127.828505 103.726697) (xy 127.828506 103.72669) (xy 127.838999 103.623986) + (xy 127.839 103.623973) (xy 127.839 103.374) (xy 127.014 103.374) (xy 126.514 103.374) (xy 126.514 102.998) + (xy 126.533685 102.930961) (xy 126.586489 102.885206) (xy 126.638 102.874) (xy 127.838999 102.874) + (xy 127.838999 102.624028) (xy 127.838998 102.624013) (xy 127.828505 102.521302) (xy 127.773358 102.35488) + (xy 127.773356 102.354875) (xy 127.681315 102.205654) (xy 127.627218 102.151557) (xy 127.593733 102.090234) + (xy 127.598717 102.020542) (xy 127.640589 101.964609) (xy 127.649782 101.95835) (xy 127.775656 101.880712) + (xy 127.899712 101.756656) (xy 127.901752 101.753347) (xy 127.903745 101.751555) (xy 127.904193 101.750989) + (xy 127.904289 101.751065) (xy 127.953694 101.706623) (xy 128.022656 101.695395) (xy 128.08674 101.723234) + (xy 128.112829 101.753339) (xy 128.114681 101.756341) (xy 128.114683 101.756344) (xy 128.238654 101.880315) + (xy 128.387875 101.972356) (xy 128.38788 101.972358) (xy 128.554302 102.027505) (xy 128.554309 102.027506) + (xy 128.657019 102.037999) (xy 128.781999 102.037999) (xy 128.781999 102.037998) (xy 128.782 101.088) + (xy 129.282 101.088) (xy 129.282 102.037999) (xy 129.406972 102.037999) (xy 129.406986 102.037998) + (xy 129.509697 102.027505) (xy 129.676119 101.972358) (xy 129.676124 101.972356) (xy 129.825345 101.880315) + (xy 129.949315 101.756345) (xy 130.041356 101.607124) (xy 130.041358 101.607119) (xy 130.096505 101.440697) + (xy 130.096506 101.44069) (xy 130.106999 101.337986) (xy 130.107 101.337973) (xy 130.107 101.088) + (xy 129.282 101.088) (xy 128.782 101.088) (xy 128.782 100.712) (xy 128.801685 100.644961) (xy 128.854489 100.599206) + (xy 128.906 100.588) (xy 130.106999 100.588) (xy 130.106999 100.338028) (xy 130.106998 100.338013) + (xy 130.096505 100.235302) (xy 130.041358 100.06888) (xy 130.041356 100.068875) (xy 129.949315 99.919654) + (xy 129.825345 99.795684) (xy 129.676124 99.703643) (xy 129.676119 99.703641) (xy 129.659716 99.698206) + (xy 129.602271 99.658433) (xy 129.575448 99.593917) (xy 129.587763 99.525142) (xy 129.635306 99.473942) + (xy 129.69872 99.4565) (xy 131.571501 99.4565) (xy 131.63854 99.476185) (xy 131.684295 99.528989) + (xy 131.695501 99.5805) (xy 131.695501 99.674018) (xy 131.706 99.776796) (xy 131.706001 99.776799) + (xy 131.753055 99.918797) (xy 131.761186 99.943334) (xy 131.853288 100.092656) (xy 131.977344 100.216712) + (xy 132.126666 100.308814) (xy 132.293203 100.363999) (xy 132.395991 100.3745) (xy 133.796008 100.374499) + (xy 133.898797 100.363999) (xy 134.065334 100.308814) (xy 134.214656 100.216712) (xy 134.338712 100.092656) + (xy 134.430814 99.943334) (xy 134.485999 99.776797) (xy 134.4965 99.674009) (xy 134.496499 96.573992) + (xy 134.485999 96.471203) (xy 134.430814 96.304666) (xy 134.338712 96.155344) (xy 134.214656 96.031288) + (xy 134.079019 95.947627) (xy 134.065336 95.939187) (xy 134.065331 95.939185) (xy 134.024693 95.925719) + (xy 133.898797 95.884001) (xy 133.898795 95.884) (xy 133.79601 95.8735) (xy 132.395998 95.8735) + (xy 132.395981 95.873501) (xy 132.293203 95.884) (xy 132.2932 95.884001) (xy 132.126668 95.939185) + (xy 132.126663 95.939187) (xy 131.977342 96.031289) (xy 131.853289 96.155342) (xy 131.761187 96.304663) + (xy 131.761185 96.304668) (xy 131.736951 96.377803) (xy 131.706001 96.471203) (xy 131.706001 96.471204) + (xy 131.706 96.471204) (xy 131.6955 96.573983) (xy 131.6955 96.573991) (xy 131.6955 97.355819) (xy 131.695501 98.0315) + (xy 131.675816 98.098539) (xy 131.623013 98.144294) (xy 131.571501 98.1555) (xy 129.605208 98.1555) + (xy 129.538169 98.135815) (xy 129.512584 98.112619) (xy 129.512447 98.112757) (xy 129.509647 98.109957) + (xy 129.507945 98.108414) (xy 129.507344 98.107654) (xy 129.385351 97.985661) (xy 129.38535 97.98566) + (xy 129.271123 97.915204) (xy 129.238518 97.895093) (xy 129.238513 97.895091) (xy 129.196638 97.881215) + (xy 129.074753 97.840826) (xy 129.074751 97.840825) (xy 128.973678 97.8305) (xy 128.37533 97.8305) + (xy 128.375312 97.830501) (xy 128.274247 97.840825) (xy 128.110484 97.895092) (xy 128.110481 97.895093) + (xy 127.963648 97.985661) (xy 127.849681 98.099629) (xy 127.788358 98.133114) (xy 127.718666 98.12813) + (xy 127.674319 98.099629) (xy 127.560351 97.985661) (xy 127.56035 97.98566) (xy 127.446123 97.915204) + (xy 127.413518 97.895093) (xy 127.413513 97.895091) (xy 127.371638 97.881215) (xy 127.249753 97.840826) + (xy 127.249751 97.840825) (xy 127.148684 97.8305) (xy 127.148677 97.8305) (xy 126.614808 97.8305) + (xy 126.547769 97.810815) (xy 126.527127 97.794181) (xy 122.051127 93.318181) (xy 122.017642 93.256858) + (xy 122.022626 93.187166) (xy 122.064498 93.131233) (xy 122.129962 93.106816) (xy 122.138808 93.1065) + (xy 122.667592 93.1065) (xy 122.734631 93.126185) (xy 122.760215 93.14938) (xy 122.760353 93.149243) + (xy 122.763152 93.152042) (xy 122.764855 93.153586) (xy 122.765455 93.154345) (xy 122.765459 93.154349) + (xy 122.76546 93.15435) (xy 122.88745 93.27634) (xy 123.034284 93.366908) (xy 123.198047 93.421174) + (xy 123.299123 93.4315) (xy 123.897476 93.431499) (xy 123.897484 93.431498) (xy 123.897487 93.431498) + (xy 123.95283 93.425844) (xy 123.998553 93.421174) (xy 124.162316 93.366908) (xy 124.30915 93.27634) + (xy 124.423119 93.16237) (xy 124.484442 93.128886) (xy 124.554134 93.13387) (xy 124.598481 93.162371) + (xy 124.71245 93.27634) (xy 124.859284 93.366908) (xy 125.023047 93.421174) (xy 125.124123 93.4315) + (xy 125.722476 93.431499) (xy 125.722484 93.431498) (xy 125.722487 93.431498) (xy 125.77783 93.425844) + (xy 125.823553 93.421174) (xy 125.987316 93.366908) (xy 126.13415 93.27634) (xy 126.25614 93.15435) + (xy 126.256141 93.154347) (xy 126.256144 93.154345) (xy 126.256745 93.153586) (xy 126.257289 93.1532) + (xy 126.261247 93.149243) (xy 126.261923 93.149919) (xy 126.313768 93.113211) (xy 126.354008 93.1065) + (xy 126.533495 93.1065) (xy 126.549505 93.108267) (xy 126.549528 93.108026) (xy 126.557294 93.10876) + (xy 126.557295 93.108759) (xy 126.557296 93.10876) (xy 126.564271 93.10854) (xy 126.628235 93.106531) + (xy 126.630183 93.1065) (xy 126.659925 93.1065) (xy 126.66719 93.105581) (xy 126.673016 93.105122) + (xy 126.721569 93.103597) (xy 126.741956 93.097673) (xy 126.760996 93.093731) (xy 126.782058 93.091071) + (xy 126.827235 93.073183) (xy 126.832735 93.0713) (xy 126.879398 93.057744) (xy 126.897665 93.046939) + (xy 126.915136 93.03838) (xy 126.934871 93.030568) (xy 126.974177 93.00201) (xy 126.979043 92.998813) + (xy 127.020865 92.974081) (xy 127.03587 92.959075) (xy 127.050668 92.946436) (xy 127.067837 92.933963) + (xy 127.098809 92.896522) (xy 127.102723 92.892221) (xy 127.323313 92.671631) (xy 127.335879 92.661565) + (xy 127.335725 92.661378) (xy 127.341733 92.656405) (xy 127.34174 92.656402) (xy 127.390332 92.604656) + (xy 127.391656 92.603288) (xy 127.412711 92.582235) (xy 127.417201 92.576445) (xy 127.420983 92.572015) + (xy 127.454248 92.536593) (xy 127.464474 92.51799) (xy 127.475153 92.501733) (xy 127.488162 92.484964) + (xy 127.507456 92.440375) (xy 127.510012 92.435156) (xy 127.533427 92.392568) (xy 127.538705 92.372006) + (xy 127.545007 92.353599) (xy 127.553435 92.334127) (xy 127.561033 92.286153) (xy 127.562214 92.280447) + (xy 127.5743 92.233377) (xy 127.5743 92.212149) (xy 127.575827 92.192749) (xy 127.577334 92.183233) + (xy 127.579146 92.171795) (xy 127.574572 92.123416) (xy 127.5743 92.117622) (xy 127.5743 90.059007) + (xy 127.593985 89.991967) (xy 127.610614 89.971331) (xy 129.39506 88.186884) (xy 129.456381 88.153401) + (xy 129.526073 88.158385) (xy 129.582006 88.200257) (xy 129.606423 88.265721) (xy 129.591571 88.333994) + (xy 129.590127 88.336566) (xy 129.529853 88.440963) (xy 129.529852 88.440967) (xy 129.461144 88.639482) + (xy 129.461144 88.639484) (xy 129.459632 88.65) (xy 130.53044 88.65) (xy 130.491722 88.692059) (xy 130.441449 88.80667) + (xy 130.431114 88.931395) (xy 130.461837 89.052719) (xy 130.525394 89.15) (xy 129.463742 89.15) + (xy 129.49077 89.261409) (xy 129.57804 89.452507) (xy 129.699889 89.623619) (xy 129.699895 89.623625) + (xy 129.851932 89.768592) (xy 130.028657 89.882166) (xy 130.223685 89.960244) (xy 130.429962 90) + (xy 130.56 90) (xy 130.56 89.180617) (xy 130.629052 89.234363) (xy 130.747424 89.275) (xy 130.841073 89.275) + (xy 130.933446 89.259586) (xy 131.043514 89.200019) (xy 131.06 89.18211) (xy 131.06 90) (xy 131.137398 90) + (xy 131.294122 89.985034) (xy 131.294126 89.985033) (xy 131.495686 89.92585) (xy 131.682414 89.829586) + (xy 131.847537 89.699731) (xy 131.84754 89.699728) (xy 131.985105 89.540969) (xy 131.985114 89.540958) + (xy 132.090144 89.359039) (xy 132.090147 89.359032) (xy 132.158855 89.160517) (xy 132.158855 89.160515) + (xy 132.160368 89.15) (xy 131.08956 89.15) (xy 131.128278 89.107941) (xy 131.178551 88.99333) (xy 131.188886 88.868605) + (xy 131.158163 88.747281) (xy 131.094606 88.65) (xy 132.156257 88.65) (xy 132.129229 88.53859) (xy 132.041959 88.347492) + (xy 131.92011 88.17638) (xy 131.920104 88.176374) (xy 131.768067 88.031408) (xy 131.726641 88.004784) + (xy 131.680887 87.951979) (xy 131.670944 87.882821) (xy 131.69997 87.819265) (xy 131.71703 87.802999) + (xy 131.72416 87.797392) (xy 131.847886 87.700092) (xy 131.985519 87.541256) (xy 132.010725 87.497599) + (xy 132.090601 87.359249) (xy 132.0906 87.359249) (xy 132.090604 87.359244) (xy 132.159344 87.160633) + (xy 132.189254 86.952602) (xy 132.179254 86.74267) (xy 132.129704 86.538424) (xy 132.089955 86.451386) + (xy 132.042401 86.347256) (xy 132.042398 86.347251) (xy 132.042397 86.34725) (xy 132.042396 86.347247) + (xy 131.920486 86.176048) (xy 131.817917 86.078249) (xy 131.782982 86.01774) (xy 131.786307 85.94795) + (xy 131.826835 85.891036) (xy 131.838384 85.882971) (xy 131.903656 85.842712) (xy 132.027712 85.718656) + (xy 132.119814 85.569334) (xy 132.174999 85.402797) (xy 132.1855 85.300009) (xy 132.185499 84.499992) + (xy 132.180532 84.451372) (xy 132.174999 84.397203) (xy 132.174998 84.3972) (xy 132.142054 84.297783) + (xy 132.119814 84.230666) (xy 132.027712 84.081344) (xy 131.903656 83.957288) (xy 131.793914 83.889599) + (xy 131.754336 83.865187) (xy 131.754331 83.865185) (xy 131.752351 83.864529) (xy 131.587797 83.810001) + (xy 131.587795 83.81) (xy 131.48501 83.7995) (xy 130.134998 83.7995) (xy 130.134981 83.799501) (xy 130.032203 83.81) + (xy 130.0322 83.810001) (xy 129.865668 83.865185) (xy 129.865663 83.865187) (xy 129.716342 83.957289) + (xy 129.592289 84.081342) (xy 129.500187 84.230663) (xy 129.500185 84.230666) (xy 129.500186 84.230666) + (xy 129.445001 84.397203) (xy 129.445001 84.397204) (xy 129.445 84.397204) (xy 129.4345 84.499983) + (xy 129.4345 85.18939) (xy 129.414815 85.256429) (xy 129.398181 85.277071) (xy 126.306807 88.368445) + (xy 126.245484 88.40193) (xy 126.175792 88.396946) (xy 126.131445 88.368445) (xy 126.0998 88.3368) + (xy 125.183486 88.3368) (xy 125.209293 88.296644) (xy 125.2498 88.158689) (xy 125.2498 88.014911) + (xy 125.209293 87.876956) (xy 125.183486 87.8368) (xy 126.0998 87.8368) (xy 126.0998 87.188972) + (xy 126.099799 87.188955) (xy 126.093398 87.129427) (xy 126.093396 87.12942) (xy 126.043154 86.994713) + (xy 126.04315 86.994706) (xy 125.95699 86.879612) (xy 125.956987 86.879609) (xy 125.841893 86.793449) + (xy 125.841886 86.793445) (xy 125.707179 86.743203) (xy 125.707172 86.743201) (xy 125.647644 86.7368) + (xy 124.9998 86.7368) (xy 124.9998 87.651298) (xy 124.892115 87.60212) (xy 124.785563 87.5868) (xy 124.714037 87.5868) + (xy 124.607485 87.60212) (xy 124.499799 87.651298) (xy 124.4998 86.7368) (xy 123.851955 86.7368) + (xy 123.792427 86.743201) (xy 123.79242 86.743203) (xy 123.657713 86.793445) (xy 123.657706 86.793449) + (xy 123.542612 86.879609) (xy 123.542609 86.879612) (xy 123.456449 86.994706) (xy 123.456445 86.994713) + (xy 123.407378 87.12627) (xy 123.365507 87.182204) (xy 123.300042 87.206621) (xy 123.231769 87.191769) + (xy 123.203515 87.170619) (xy 123.159166 87.12627) (xy 123.081201 87.048305) (xy 123.081197 87.048302) + (xy 123.081196 87.048301) (xy 122.887634 86.912767) (xy 122.88763 86.912765) (xy 122.860039 86.899899) + (xy 122.673463 86.812897) (xy 122.673459 86.812896) (xy 122.673455 86.812894) (xy 122.445213 86.751738) + (xy 122.445203 86.751736) (xy 122.209801 86.731141) (xy 122.209799 86.731141) (xy 121.97439 86.751737) + (xy 121.974389 86.751737) (xy 121.901808 86.771184) (xy 121.831958 86.76952) (xy 121.782036 86.73909) + (xy 121.207534 86.164588) (xy 121.197461 86.152014) (xy 121.197274 86.15217) (xy 121.192298 86.146155) + (xy 121.159482 86.11534) (xy 121.140532 86.097545) (xy 121.139158 86.096212) (xy 121.118135 86.075189) + (xy 121.11234 86.070694) (xy 121.107898 86.066899) (xy 121.072496 86.033654) (xy 121.072488 86.033648) + (xy 121.053892 86.023425) (xy 121.037631 86.012744) (xy 121.020863 85.999737) (xy 120.997395 85.989582) + (xy 120.976278 85.980443) (xy 120.971056 85.977886) (xy 120.928468 85.954473) (xy 120.928465 85.954472) + (xy 120.907901 85.949192) (xy 120.889496 85.94289) (xy 120.870027 85.934465) (xy 120.870021 85.934463) + (xy 120.822051 85.926866) (xy 120.816336 85.925682) (xy 120.799872 85.921455) (xy 120.76928 85.9136) + (xy 120.769277 85.9136) (xy 120.748055 85.9136) (xy 120.728655 85.912073) (xy 120.707696 85.908753) + (xy 120.707695 85.908753) (xy 120.683886 85.911003) (xy 120.65933 85.913325) (xy 120.653492 85.9136) + (xy 119.623308 85.9136) (xy 119.556269 85.893915) (xy 119.510514 85.841111) (xy 119.50057 85.771953) + (xy 119.529595 85.708397) (xy 119.535627 85.701919) (xy 120.47234 84.765206) (xy 123.312013 81.925531) + (xy 123.324579 81.915465) (xy 123.324425 81.915278) (xy 123.330433 81.910305) (xy 123.33044 81.910302) + (xy 123.379032 81.858556) (xy 123.380356 81.857188) (xy 123.401411 81.836135) (xy 123.405901 81.830345) + (xy 123.409683 81.825915) (xy 123.442948 81.790493) (xy 123.453174 81.77189) (xy 123.463853 81.755633) + (xy 123.476862 81.738864) (xy 123.496163 81.694259) (xy 123.498707 81.689065) (xy 123.522127 81.646468) + (xy 123.527407 81.625902) (xy 123.533709 81.607495) (xy 123.542135 81.588026) (xy 123.549733 81.540048) + (xy 123.550911 81.534353) (xy 123.563 81.487277) (xy 123.563 81.466054) (xy 123.564527 81.446655) + (xy 123.567847 81.425695) (xy 123.563275 81.37733) (xy 123.563 81.371492) (xy 123.563 79.996971) + (xy 123.582685 79.929932) (xy 123.617929 79.895332) (xy 123.617683 79.895021) (xy 123.620582 79.892728) + (xy 123.621901 79.891433) (xy 123.62335 79.89054) (xy 123.737319 79.77657) (xy 123.798642 79.743086) + (xy 123.868334 79.74807) (xy 123.912681 79.776571) (xy 124.02665 79.89054) (xy 124.173484 79.981108) + (xy 124.337247 80.035374) (xy 124.438323 80.0457) (xy 125.036676 80.045699) (xy 125.036684 80.045698) + (xy 125.036687 80.045698) (xy 125.09203 80.040044) (xy 125.137753 80.035374) (xy 125.301516 79.981108) + (xy 125.44835 79.89054) (xy 125.57034 79.76855) (xy 125.570341 79.768547) (xy 125.570344 79.768545) + (xy 125.570945 79.767786) (xy 125.571489 79.7674) (xy 125.575447 79.763443) (xy 125.576123 79.764119) + (xy 125.627968 79.727411) (xy 125.668208 79.7207) (xy 129.410295 79.7207) (xy 129.426305 79.722467) + (xy 129.426328 79.722226) (xy 129.434094 79.72296) (xy 129.434095 79.722959) (xy 129.434096 79.72296) + (xy 129.441071 79.72274) (xy 129.505035 79.720731) (xy 129.506983 79.7207) (xy 129.536725 79.7207) + (xy 129.54399 79.719781) (xy 129.549816 79.719322) (xy 129.598369 79.717797) (xy 129.618756 79.711873) + (xy 129.637796 79.707931) (xy 129.658858 79.705271) (xy 129.704035 79.687383) (xy 129.709535 79.6855) + (xy 129.756198 79.671944) (xy 129.774465 79.661139) (xy 129.791936 79.65258) (xy 129.811671 79.644768) + (xy 129.850977 79.61621) (xy 129.855843 79.613013) (xy 129.897665 79.588281) (xy 129.91267 79.573275) + (xy 129.927468 79.560636) (xy 129.944637 79.548163) (xy 129.944644 79.548154) (xy 129.950323 79.542823) + (xy 129.951893 79.544495) (xy 130.000226 79.511851) (xy 130.037867 79.506) (xy 130.53044 79.506) + (xy 130.491722 79.548059) (xy 130.441449 79.66267) (xy 130.431114 79.787395) (xy 130.461837 79.908719) + (xy 130.525394 80.006) (xy 129.463742 80.006) (xy 129.49077 80.117409) (xy 129.57804 80.308507) + (xy 129.699889 80.479619) (xy 129.699895 80.479625) (xy 129.851932 80.624592) (xy 130.028657 80.738166) + (xy 130.223685 80.816244) (xy 130.429962 80.856) (xy 130.56 80.856) (xy 130.56 80.036617) (xy 130.629052 80.090363) + (xy 130.747424 80.131) (xy 130.841073 80.131) (xy 130.933446 80.115586) (xy 131.043514 80.056019) + (xy 131.06 80.03811) (xy 131.06 80.856) (xy 131.137398 80.856) (xy 131.294122 80.841034) (xy 131.294126 80.841033) + (xy 131.495686 80.78185) (xy 131.682414 80.685586) (xy 131.847537 80.555731) (xy 131.84754 80.555728) + (xy 131.985105 80.396969) (xy 131.985114 80.396958) (xy 132.090144 80.215039) (xy 132.090147 80.215032) + (xy 132.158855 80.016517) (xy 132.158855 80.016515) (xy 132.160368 80.006) (xy 131.08956 80.006) + (xy 131.128278 79.963941) (xy 131.178551 79.84933) (xy 131.188886 79.724605) (xy 131.158163 79.603281) + (xy 131.094606 79.506) (xy 132.156257 79.506) (xy 132.129229 79.39459) (xy 132.041959 79.203492) + (xy 131.92011 79.03238) (xy 131.920104 79.032374) (xy 131.768067 78.887408) (xy 131.726641 78.860784) + (xy 131.680887 78.807979) (xy 131.670944 78.738821) (xy 131.69997 78.675265) (xy 131.71703 78.658999) + (xy 131.847886 78.556092) (xy 131.985519 78.397256) (xy 131.997319 78.376819) (xy 132.090601 78.215249) + (xy 132.0906 78.215249) (xy 132.090604 78.215244) (xy 132.159344 78.016633) (xy 132.189254 77.808602) + (xy 132.179254 77.59867) (xy 132.129704 77.394424) (xy 132.087192 77.301336) (xy 132.042401 77.203256) + (xy 132.042398 77.203251) (xy 132.042397 77.20325) (xy 132.042396 77.203247) (xy 131.920486 77.032048) + (xy 131.920484 77.032046) (xy 131.920479 77.03204) (xy 131.768379 76.887014) (xy 131.727057 76.860458) + (xy 131.681302 76.807654) (xy 131.671359 76.738496) (xy 131.700384 76.67494) (xy 131.717445 76.658673) + (xy 131.847883 76.556094) (xy 131.847886 76.556092) (xy 131.985519 76.397256) (xy 132.017133 76.3425) + (xy 132.085015 76.224924) (xy 132.090604 76.215244) (xy 132.159344 76.016633) (xy 132.189254 75.808602) + (xy 132.179254 75.59867) (xy 132.129704 75.394424) (xy 132.129701 75.394417) (xy 132.042401 75.203256) + (xy 132.042398 75.203251) (xy 132.042397 75.20325) (xy 132.042396 75.203247) (xy 131.920486 75.032048) + (xy 131.904457 75.016764) (xy 131.817917 74.934249) (xy 131.782982 74.87374) (xy 131.786307 74.80395) + (xy 131.826835 74.747036) (xy 131.838384 74.738971) (xy 131.903656 74.698712) (xy 132.027712 74.574656) + (xy 132.119814 74.425334) (xy 132.174999 74.258797) (xy 132.1855 74.156009) (xy 132.185499 73.355992) + (xy 132.185415 73.355174) (xy 132.174999 73.253203) (xy 132.174998 73.2532) (xy 132.168037 73.232194) + (xy 132.119814 73.086666) (xy 132.027712 72.937344) (xy 131.903656 72.813288) (xy 131.754334 72.721186) + (xy 131.587797 72.666001) (xy 131.587795 72.666) (xy 131.485016 72.6555) (xy 131.485009 72.6555) + (xy 130.680808 72.6555) (xy 130.613769 72.635815) (xy 130.593127 72.619181) (xy 129.964434 71.990488) + (xy 129.954361 71.977914) (xy 129.954174 71.97807) (xy 129.949198 71.972055) (xy 129.913358 71.9384) + (xy 129.897432 71.923445) (xy 129.896058 71.922112) (xy 129.875035 71.901089) (xy 129.86924 71.896594) + (xy 129.864798 71.892799) (xy 129.829396 71.859554) (xy 129.829388 71.859548) (xy 129.810792 71.849325) + (xy 129.794531 71.838644) (xy 129.777763 71.825637) (xy 129.754295 71.815482) (xy 129.733178 71.806343) + (xy 129.727956 71.803786) (xy 129.685368 71.780373) (xy 129.685365 71.780372) (xy 129.664801 71.775092) + (xy 129.646396 71.76879) (xy 129.626927 71.760365) (xy 129.626921 71.760363) (xy 129.578951 71.752766) + (xy 129.573236 71.751582) (xy 129.556772 71.747355) (xy 129.52618 71.7395) (xy 129.526177 71.7395) + (xy 129.504955 71.7395) (xy 129.485555 71.737973) (xy 129.464596 71.734653) (xy 129.464595 71.734653) + (xy 129.440786 71.736903) (xy 129.41623 71.739225) (xy 129.410392 71.7395) (xy 125.898708 71.7395) + (xy 125.831669 71.719815) (xy 125.806084 71.696619) (xy 125.805947 71.696757) (xy 125.803147 71.693957) + (xy 125.801445 71.692414) (xy 125.800844 71.691654) (xy 125.678851 71.569661) (xy 125.67885 71.56966) + (xy 125.532016 71.479092) (xy 125.368253 71.424826) (xy 125.368251 71.424825) (xy 125.267178 71.4145) + (xy 124.66883 71.4145) (xy 124.668812 71.414501) (xy 124.567747 71.424825) (xy 124.403984 71.479092) + (xy 124.403981 71.479093) (xy 124.257148 71.569661) (xy 124.143181 71.683629) (xy 124.081858 71.717114) + (xy 124.012166 71.71213) (xy 123.967819 71.683629) (xy 123.853851 71.569661) (xy 123.85385 71.56966) + (xy 123.707016 71.479092) (xy 123.543253 71.424826) (xy 123.543251 71.424825) (xy 123.442178 71.4145) + (xy 122.84383 71.4145) (xy 122.843812 71.414501) (xy 122.742747 71.424825) (xy 122.578984 71.479092) + (xy 122.578981 71.479093) (xy 122.43215 71.569659) (xy 122.379246 71.622563) (xy 122.317922 71.656047) + (xy 122.24823 71.651061) (xy 122.208028 71.626517) (xy 122.078041 71.508019) (xy 122.078039 71.508017) + (xy 121.904642 71.400655) (xy 121.904635 71.400651) (xy 121.798633 71.359586) (xy 121.714456 71.326976) + (xy 121.513976 71.2895) (xy 121.310024 71.2895) (xy 121.109544 71.326976) (xy 121.109541 71.326976) + (xy 121.109541 71.326977) (xy 120.919364 71.400651) (xy 120.919357 71.400655) (xy 120.745962 71.508016) + (xy 120.71534 71.535932) (xy 120.652535 71.566548) (xy 120.583148 71.55835) (xy 120.566705 71.549833) + (xy 120.452018 71.479093) (xy 120.452013 71.479091) (xy 120.448721 71.478) (xy 120.288253 71.424826) + (xy 120.288251 71.424825) (xy 120.187178 71.4145) (xy 119.58883 71.4145) (xy 119.588812 71.414501) + (xy 119.487747 71.424825) (xy 119.323984 71.479092) (xy 119.323981 71.479093) (xy 119.177148 71.569661) + (xy 119.063181 71.683629) (xy 119.001858 71.717114) (xy 118.932166 71.71213) (xy 118.887819 71.683629) + (xy 118.773851 71.569661) (xy 118.77385 71.56966) (xy 118.627016 71.479092) (xy 118.463253 71.424826) + (xy 118.463251 71.424825) (xy 118.362184 71.4145) (xy 118.362177 71.4145) (xy 118.058808 71.4145) + (xy 117.991769 71.394815) (xy 117.971127 71.378181) (xy 117.555127 70.962181) (xy 117.521642 70.900858) + (xy 117.526626 70.831166) (xy 117.568498 70.775233) (xy 117.633962 70.750816) (xy 117.642808 70.7505) + (xy 136.1255 70.7505) (xy 136.192539 70.770185) (xy 136.238294 70.822989) (xy 136.2495 70.8745) + (xy 136.2495 124.1255) (xy 136.229815 124.192539) (xy 136.177011 124.238294) (xy 136.1255 124.2495) + (xy 70.8745 124.2495) (xy 70.807461 124.229815) (xy 70.761706 124.177011) (xy 70.7505 124.1255) + (xy 70.7505 119.00087) (xy 117.8735 119.00087) (xy 117.873501 119.000876) (xy 117.879908 119.060483) + (xy 117.930202 119.195328) (xy 117.930206 119.195335) (xy 118.016452 119.310544) (xy 118.016455 119.310547) + (xy 118.131664 119.396793) (xy 118.131671 119.396797) (xy 118.266517 119.447091) (xy 118.266516 119.447091) + (xy 118.273444 119.447835) (xy 118.326127 119.4535) (xy 121.021872 119.453499) (xy 121.081483 119.447091) + (xy 121.216331 119.396796) (xy 121.331546 119.310546) (xy 121.417796 119.195331) (xy 121.468091 119.060483) + (xy 121.4745 119.000873) (xy 121.4745 117.653004) (xy 122.868451 117.653004) (xy 122.888616 117.922101) + (xy 122.948664 118.185188) (xy 122.948666 118.185195) (xy 123.047257 118.436398) (xy 123.182185 118.670102) + (xy 123.31808 118.840509) (xy 123.350442 118.881089) (xy 123.537183 119.054358) (xy 123.548259 119.064635) + (xy 123.771226 119.216651) (xy 124.014359 119.333738) (xy 124.272228 119.41328) (xy 124.272229 119.41328) + (xy 124.272232 119.413281) (xy 124.539063 119.453499) (xy 124.539068 119.453499) (xy 124.539071 119.4535) + (xy 124.539072 119.4535) (xy 124.808928 119.4535) (xy 124.808929 119.4535) (xy 124.808936 119.453499) + (xy 125.075767 119.413281) (xy 125.075768 119.41328) (xy 125.075772 119.41328) (xy 125.333641 119.333738) + (xy 125.576775 119.216651) (xy 125.799741 119.064635) (xy 125.997561 118.881085) (xy 126.165815 118.670102) + (xy 126.300743 118.436398) (xy 126.399334 118.185195) (xy 126.459383 117.922103) (xy 126.479549 117.653) + (xy 126.459383 117.383897) (xy 126.399334 117.120805) (xy 126.300743 116.869602) (xy 126.165815 116.635898) + (xy 125.997561 116.424915) (xy 125.99756 116.424914) (xy 125.997557 116.42491) (xy 125.799741 116.241365) + (xy 125.79974 116.241364) (xy 125.576775 116.089349) (xy 125.576769 116.089346) (xy 125.576768 116.089345) + (xy 125.576767 116.089344) (xy 125.333643 115.972263) (xy 125.333645 115.972263) (xy 125.075773 115.89272) + (xy 125.075767 115.892718) (xy 124.808936 115.8525) (xy 124.808929 115.8525) (xy 124.539071 115.8525) + (xy 124.539063 115.8525) (xy 124.272232 115.892718) (xy 124.272226 115.89272) (xy 124.014358 115.972262) + (xy 123.77123 116.089346) (xy 123.548258 116.241365) (xy 123.350442 116.42491) (xy 123.182185 116.635898) + (xy 123.047258 116.869599) (xy 123.047256 116.869603) (xy 122.948666 117.120804) (xy 122.948664 117.120811) + (xy 122.888616 117.383898) (xy 122.868451 117.652995) (xy 122.868451 117.653004) (xy 121.4745 117.653004) + (xy 121.474499 116.305128) (xy 121.468091 116.245517) (xy 121.466542 116.241365) (xy 121.417797 116.110671) + (xy 121.417793 116.110664) (xy 121.331547 115.995455) (xy 121.331544 115.995452) (xy 121.216335 115.909206) + (xy 121.216328 115.909202) (xy 121.081482 115.858908) (xy 121.081483 115.858908) (xy 121.021883 115.852501) + (xy 121.021881 115.8525) (xy 121.021873 115.8525) (xy 121.021864 115.8525) (xy 118.326129 115.8525) + (xy 118.326123 115.852501) (xy 118.266516 115.858908) (xy 118.131671 115.909202) (xy 118.131664 115.909206) + (xy 118.016455 115.995452) (xy 118.016452 115.995455) (xy 117.930206 116.110664) (xy 117.930202 116.110671) + (xy 117.879908 116.245517) (xy 117.873501 116.305116) (xy 117.873501 116.305123) (xy 117.8735 116.305135) + (xy 117.8735 119.00087) (xy 70.7505 119.00087) (xy 70.7505 114.554005) (xy 81.298859 114.554005) + (xy 81.319385 114.801729) (xy 81.319387 114.801738) (xy 81.380412 115.042717) (xy 81.480266 115.270364) + (xy 81.580564 115.423882) (xy 82.320923 114.683523) (xy 82.344507 114.763844) (xy 82.422239 114.884798) + (xy 82.5309 114.978952) (xy 82.661685 115.03868) (xy 82.671466 115.040086) (xy 81.933942 115.777609) + (xy 81.980768 115.814055) (xy 81.98077 115.814056) (xy 82.199385 115.932364) (xy 82.199396 115.932369) + (xy 82.434506 116.013083) (xy 82.679707 116.054) (xy 82.928293 116.054) (xy 83.173493 116.013083) + (xy 83.408603 115.932369) (xy 83.408614 115.932364) (xy 83.627228 115.814057) (xy 83.627231 115.814055) + (xy 83.674056 115.777609) (xy 82.936533 115.040086) (xy 82.946315 115.03868) (xy 83.0771 114.978952) + (xy 83.185761 114.884798) (xy 83.263493 114.763844) (xy 83.287076 114.683524) (xy 84.027434 115.423882) + (xy 84.127731 115.270369) (xy 84.227587 115.042717) (xy 84.288612 114.801738) (xy 84.288614 114.801729) + (xy 84.309141 114.554005) (xy 85.362357 114.554005) (xy 85.38289 114.801812) (xy 85.382892 114.801824) + (xy 85.443936 115.042881) (xy 85.543826 115.270606) (xy 85.679833 115.478782) (xy 85.679836 115.478785) + (xy 85.848256 115.661738) (xy 86.044491 115.814474) (xy 86.044493 115.814475) (xy 86.262332 115.932364) + (xy 86.26319 115.932828) (xy 86.445607 115.995452) (xy 86.496964 116.013083) (xy 86.498386 116.013571) + (xy 86.743665 116.0545) (xy 86.992335 116.0545) (xy 87.237614 116.013571) (xy 87.47281 115.932828) + (xy 87.691509 115.814474) (xy 87.887744 115.661738) (xy 88.056164 115.478785) (xy 88.192173 115.270607) + (xy 88.292063 115.042881) (xy 88.353108 114.801821) (xy 88.373643 114.554) (xy 88.367686 114.482111) + (xy 88.353109 114.306187) (xy 88.353107 114.306175) (xy 88.292063 114.065118) (xy 88.192173 113.837393) + (xy 88.056166 113.629217) (xy 88.034557 113.605744) (xy 87.887744 113.446262) (xy 87.691509 113.293526) + (xy 87.691507 113.293525) (xy 87.691506 113.293524) (xy 87.472811 113.175172) (xy 87.472802 113.175169) + (xy 87.237616 113.094429) (xy 86.992335 113.0535) (xy 86.743665 113.0535) (xy 86.498383 113.094429) + (xy 86.263197 113.175169) (xy 86.263188 113.175172) (xy 86.044493 113.293524) (xy 85.848257 113.446261) + (xy 85.679833 113.629217) (xy 85.543826 113.837393) (xy 85.443936 114.065118) (xy 85.382892 114.306175) + (xy 85.38289 114.306187) (xy 85.362357 114.553994) (xy 85.362357 114.554005) (xy 84.309141 114.554005) + (xy 84.309141 114.553994) (xy 84.288614 114.30627) (xy 84.288612 114.306261) (xy 84.227587 114.065282) + (xy 84.127731 113.83763) (xy 84.027434 113.684116) (xy 83.287076 114.424475) (xy 83.263493 114.344156) + (xy 83.185761 114.223202) (xy 83.0771 114.129048) (xy 82.946315 114.06932) (xy 82.936534 114.067913) + (xy 83.674057 113.33039) (xy 83.674056 113.330389) (xy 83.627229 113.293943) (xy 83.408614 113.175635) + (xy 83.408603 113.17563) (xy 83.173493 113.094916) (xy 82.928293 113.054) (xy 82.679707 113.054) + (xy 82.434506 113.094916) (xy 82.199396 113.17563) (xy 82.19939 113.175632) (xy 81.980761 113.293949) + (xy 81.933942 113.330388) (xy 81.933942 113.33039) (xy 82.671466 114.067913) (xy 82.661685 114.06932) + (xy 82.5309 114.129048) (xy 82.422239 114.223202) (xy 82.344507 114.344156) (xy 82.320923 114.424475) + (xy 81.580564 113.684116) (xy 81.480267 113.837632) (xy 81.380412 114.065282) (xy 81.319387 114.306261) + (xy 81.319385 114.30627) (xy 81.298859 114.553994) (xy 81.298859 114.554005) (xy 70.7505 114.554005) + (xy 70.7505 111.803) (xy 81.829001 111.803) (xy 81.829001 111.852154) (xy 81.839319 111.953152) + (xy 81.893546 112.1168) (xy 81.893551 112.116811) (xy 81.984052 112.263534) (xy 81.984055 112.263538) + (xy 82.105961 112.385444) (xy 82.105965 112.385447) (xy 82.252688 112.475948) (xy 82.252699 112.475953) + (xy 82.416347 112.53018) (xy 82.517352 112.540499) (xy 82.554 112.540499) (xy 82.554 111.803) (xy 83.054 111.803) + (xy 83.054 112.540499) (xy 83.09064 112.540499) (xy 83.090654 112.540498) (xy 83.191652 112.53018) + (xy 83.3553 112.475953) (xy 83.355311 112.475948) (xy 83.502034 112.385447) (xy 83.502038 112.385444) + (xy 83.623944 112.263538) (xy 83.623947 112.263534) (xy 83.714448 112.116811) (xy 83.714453 112.1168) + (xy 83.76868 111.953152) (xy 83.778999 111.852154) (xy 83.779 111.852141) (xy 83.779 111.803) (xy 83.054 111.803) + (xy 82.554 111.803) (xy 81.829001 111.803) (xy 70.7505 111.803) (xy 70.7505 109.728004) (xy 74.140953 109.728004) + (xy 74.161113 109.997026) (xy 74.161113 109.997028) (xy 74.221142 110.260033) (xy 74.221148 110.260052) + (xy 74.319709 110.511181) (xy 74.319708 110.511181) (xy 74.454602 110.744822) (xy 74.508294 110.812151) + (xy 75.343452 109.976993) (xy 75.353188 110.006956) (xy 75.441186 110.145619) (xy 75.560903 110.25804) + (xy 75.69551 110.332041) (xy 74.860848 111.166702) (xy 75.043483 111.29122) (xy 75.043485 111.291221) + (xy 75.286539 111.408269) (xy 75.286537 111.408269) (xy 75.544337 111.48779) (xy 75.544343 111.487792) + (xy 75.811101 111.527999) (xy 75.81111 111.528) (xy 76.08089 111.528) (xy 76.080898 111.527999) + (xy 76.347656 111.487792) (xy 76.347662 111.48779) (xy 76.605461 111.408269) (xy 76.848521 111.291218) + (xy 77.03115 111.166702) (xy 76.193534 110.329086) (xy 76.261629 110.302126) (xy 76.394492 110.205595) + (xy 76.499175 110.079055) (xy 76.547631 109.976079) (xy 77.383703 110.812151) (xy 77.383704 110.81215) + (xy 77.437393 110.744828) (xy 77.4374 110.744817) (xy 77.57229 110.511181) (xy 77.670851 110.260052) + (xy 77.670857 110.260033) (xy 77.724007 110.027169) (xy 81.8285 110.027169) (xy 81.828501 110.027187) + (xy 81.838825 110.128252) (xy 81.856096 110.180371) (xy 81.893092 110.292016) (xy 81.970729 110.417886) + (xy 81.983661 110.438851) (xy 82.097982 110.553172) (xy 82.131467 110.614495) (xy 82.126483 110.684187) + (xy 82.097983 110.728534) (xy 81.984052 110.842465) (xy 81.893551 110.989188) (xy 81.893546 110.989199) + (xy 81.839319 111.152847) (xy 81.829 111.253845) (xy 81.829 111.303) (xy 83.778999 111.303) (xy 83.778999 111.25386) + (xy 83.778998 111.253845) (xy 83.76868 111.152847) (xy 83.714453 110.989199) (xy 83.714448 110.989188) + (xy 83.623947 110.842465) (xy 83.623944 110.842461) (xy 83.510017 110.728534) (xy 83.476532 110.667211) + (xy 83.481516 110.597519) (xy 83.510013 110.553176) (xy 83.62434 110.43885) (xy 83.714908 110.292016) + (xy 83.769174 110.128253) (xy 83.7795 110.027177) (xy 83.779499 109.428824) (xy 83.779346 109.427331) + (xy 83.769174 109.327747) (xy 83.760426 109.301347) (xy 83.714908 109.163984) (xy 83.62434 109.01715) + (xy 83.533869 108.926679) (xy 83.500386 108.865356) (xy 83.50537 108.795665) (xy 83.533867 108.751322) + (xy 83.62434 108.66085) (xy 83.625233 108.659401) (xy 83.626104 108.658617) (xy 83.628821 108.655183) + (xy 83.629407 108.655647) (xy 83.67718 108.612679) (xy 83.730771 108.6005) (xy 84.16777 108.6005) + (xy 84.234809 108.620185) (xy 84.255451 108.636819) (xy 84.371344 108.752712) (xy 84.520666 108.844814) + (xy 84.687203 108.899999) (xy 84.789991 108.9105) (xy 85.390008 108.910499) (xy 85.390016 108.910498) + (xy 85.390019 108.910498) (xy 85.446302 108.904748) (xy 85.492797 108.899999) (xy 85.659334 108.844814) + (xy 85.808656 108.752712) (xy 85.932712 108.628656) (xy 86.024814 108.479334) (xy 86.079999 108.312797) + (xy 86.0905 108.210009) (xy 86.090499 107.609992) (xy 86.086003 107.565983) (xy 86.079999 107.507203) + (xy 86.079998 107.5072) (xy 86.059718 107.446) (xy 86.024814 107.340666) (xy 85.932712 107.191344) + (xy 85.808656 107.067288) (xy 85.700438 107.000539) (xy 85.659336 106.975187) (xy 85.659331 106.975185) + (xy 85.606987 106.95784) (xy 85.492797 106.920001) (xy 85.492795 106.92) (xy 85.39001 106.9095) + (xy 84.789998 106.9095) (xy 84.78998 106.909501) (xy 84.687203 106.92) (xy 84.6872 106.920001) (xy 84.520668 106.975185) + (xy 84.520663 106.975187) (xy 84.371342 107.067289) (xy 84.247289 107.191342) (xy 84.247287 107.191344) + (xy 84.247288 107.191344) (xy 84.217803 107.239148) (xy 84.216909 107.240597) (xy 84.164961 107.287321) + (xy 84.11137 107.2995) (xy 83.730771 107.2995) (xy 83.663732 107.279815) (xy 83.629132 107.24457) + (xy 83.628821 107.244817) (xy 83.626528 107.241917) (xy 83.625233 107.240598) (xy 83.62434 107.23915) + (xy 83.510371 107.125181) (xy 83.476886 107.063858) (xy 83.48187 106.994166) (xy 83.510371 106.949819) + (xy 83.562217 106.897973) (xy 83.62434 106.83585) (xy 83.714908 106.689016) (xy 83.769174 106.525253) + (xy 83.7795 106.424177) (xy 83.779499 105.825824) (xy 83.779428 105.825133) (xy 83.769174 105.724747) + (xy 83.765878 105.7148) (xy 83.714908 105.560984) (xy 83.62434 105.41415) (xy 83.553166 105.342976) + (xy 83.519681 105.281653) (xy 83.524665 105.211961) (xy 83.548693 105.172328) (xy 83.587333 105.129416) + (xy 83.681979 104.965484) (xy 83.740474 104.785456) (xy 83.76026 104.5972) (xy 83.740474 104.408944) + (xy 83.681979 104.228916) (xy 83.587333 104.064984) (xy 83.460671 103.924312) (xy 83.46067 103.924311) + (xy 83.307534 103.813051) (xy 83.307529 103.813048) (xy 83.134607 103.736057) (xy 83.134602 103.736055) + (xy 82.9888 103.705065) (xy 82.949446 103.6967) (xy 82.760154 103.6967) (xy 82.727697 103.703598) + (xy 82.574997 103.736055) (xy 82.574992 103.736057) (xy 82.40207 103.813048) (xy 82.402065 103.813051) + (xy 82.248929 103.924311) (xy 82.122266 104.064985) (xy 82.027621 104.228915) (xy 82.027618 104.228922) + (xy 81.976912 104.384981) (xy 81.969126 104.408944) (xy 81.94934 104.5972) (xy 81.969126 104.785456) + (xy 81.969127 104.785459) (xy 82.027618 104.965477) (xy 82.027621 104.965484) (xy 82.125516 105.135044) + (xy 82.124169 105.135821) (xy 82.144988 105.194196) (xy 82.129153 105.262247) (xy 82.108871 105.288938) + (xy 81.983659 105.414151) (xy 81.893093 105.560981) (xy 81.893091 105.560984) (xy 81.893092 105.560984) + (xy 81.838826 105.724747) (xy 81.838826 105.724748) (xy 81.838825 105.724748) (xy 81.8285 105.825815) + (xy 81.8285 106.424169) (xy 81.828501 106.424187) (xy 81.838825 106.525252) (xy 81.893092 106.689015) + (xy 81.893093 106.689018) (xy 81.91888 106.730825) (xy 81.982407 106.833819) (xy 81.983661 106.835851) + (xy 82.097629 106.949819) (xy 82.131114 107.011142) (xy 82.12613 107.080834) (xy 82.097629 107.125181) + (xy 81.983661 107.239148) (xy 81.893093 107.385981) (xy 81.893091 107.385986) (xy 81.872484 107.448175) + (xy 81.838826 107.549747) (xy 81.838826 107.549748) (xy 81.838825 107.549748) (xy 81.8285 107.650815) + (xy 81.8285 108.249169) (xy 81.828501 108.249187) (xy 81.838825 108.350252) (xy 81.866915 108.435019) + (xy 81.889129 108.502058) (xy 81.893092 108.514015) (xy 81.893093 108.514018) (xy 81.897289 108.520821) + (xy 81.982767 108.659403) (xy 81.983661 108.660851) (xy 82.074128 108.751318) (xy 82.107613 108.812641) + (xy 82.102629 108.882333) (xy 82.074129 108.926679) (xy 81.983661 109.017148) (xy 81.893093 109.163981) + (xy 81.893091 109.163984) (xy 81.893092 109.163984) (xy 81.838826 109.327747) (xy 81.838826 109.327748) + (xy 81.838825 109.327748) (xy 81.8285 109.428815) (xy 81.8285 110.027169) (xy 77.724007 110.027169) + (xy 77.730886 109.997028) (xy 77.730886 109.997026) (xy 77.751047 109.728004) (xy 77.751047 109.727995) + (xy 77.730886 109.458973) (xy 77.730886 109.458971) (xy 77.670857 109.195966) (xy 77.670851 109.195947) + (xy 77.57229 108.944818) (xy 77.572291 108.944818) (xy 77.437397 108.711177) (xy 77.383704 108.643847) + (xy 76.548546 109.479004) (xy 76.538812 109.449044) (xy 76.450814 109.310381) (xy 76.331097 109.19796) + (xy 76.196487 109.123957) (xy 77.03115 108.289296) (xy 76.848517 108.164779) (xy 76.848516 108.164778) + (xy 76.60546 108.04773) (xy 76.605462 108.04773) (xy 76.347662 107.968209) (xy 76.347656 107.968207) + (xy 76.080898 107.928) (xy 75.811101 107.928) (xy 75.544343 107.968207) (xy 75.544337 107.968209) + (xy 75.286538 108.04773) (xy 75.043485 108.164778) (xy 75.043476 108.164783) (xy 74.860848 108.289296) + (xy 75.698465 109.126913) (xy 75.630371 109.153874) (xy 75.497508 109.250405) (xy 75.392825 109.376945) + (xy 75.344368 109.479921) (xy 74.508295 108.643848) (xy 74.4546 108.71118) (xy 74.319709 108.944818) + (xy 74.221148 109.195947) (xy 74.221142 109.195966) (xy 74.161113 109.458971) (xy 74.161113 109.458973) + (xy 74.140953 109.727995) (xy 74.140953 109.728004) (xy 70.7505 109.728004) (xy 70.7505 104.648004) + (xy 74.140451 104.648004) (xy 74.160616 104.917101) (xy 74.220664 105.180188) (xy 74.220666 105.180195) + (xy 74.319256 105.431396) (xy 74.319258 105.4314) (xy 74.324327 105.44018) (xy 74.454185 105.665102) + (xy 74.58235 105.825815) (xy 74.622442 105.876089) (xy 74.79385 106.035131) (xy 74.820259 106.059635) + (xy 75.043226 106.211651) (xy 75.286359 106.328738) (xy 75.544228 106.40828) (xy 75.544229 106.40828) + (xy 75.544232 106.408281) (xy 75.811063 106.448499) (xy 75.811068 106.448499) (xy 75.811071 106.4485) + (xy 75.811072 106.4485) (xy 76.080928 106.4485) (xy 76.080929 106.4485) (xy 76.080936 106.448499) + (xy 76.347767 106.408281) (xy 76.347768 106.40828) (xy 76.347772 106.40828) (xy 76.605641 106.328738) + (xy 76.848775 106.211651) (xy 77.071741 106.059635) (xy 77.240897 105.902681) (xy 77.269557 105.876089) + (xy 77.269557 105.876087) (xy 77.269561 105.876085) (xy 77.437815 105.665102) (xy 77.572743 105.431398) + (xy 77.671334 105.180195) (xy 77.731383 104.917103) (xy 77.741967 104.77587) (xy 77.751549 104.648004) + (xy 77.751549 104.647995) (xy 77.731383 104.378898) (xy 77.725958 104.35513) (xy 77.671334 104.115805) + (xy 77.572743 103.864602) (xy 77.437815 103.630898) (xy 77.269561 103.419915) (xy 77.26956 103.419914) + (xy 77.269557 103.41991) (xy 77.071741 103.236365) (xy 77.068357 103.234058) (xy 76.848775 103.084349) + (xy 76.848769 103.084346) (xy 76.848768 103.084345) (xy 76.848767 103.084344) (xy 76.605643 102.967263) + (xy 76.605645 102.967263) (xy 76.347773 102.88772) (xy 76.347767 102.887718) (xy 76.080936 102.8475) + (xy 76.080929 102.8475) (xy 75.811071 102.8475) (xy 75.811063 102.8475) (xy 75.544232 102.887718) + (xy 75.544226 102.88772) (xy 75.286358 102.967262) (xy 75.04323 103.084346) (xy 74.820258 103.236365) + (xy 74.622442 103.41991) (xy 74.454185 103.630898) (xy 74.319258 103.864599) (xy 74.319256 103.864603) + (xy 74.220666 104.115804) (xy 74.220664 104.115811) (xy 74.160616 104.378898) (xy 74.140451 104.647995) + (xy 74.140451 104.648004) (xy 70.7505 104.648004) (xy 70.7505 99.568001) (xy 73.94039 99.568001) + (xy 73.960804 99.853433) (xy 74.021628 100.133037) (xy 74.02163 100.133043) (xy 74.021631 100.133046) + (xy 74.090989 100.319002) (xy 74.121633 100.401161) (xy 74.121636 100.401166) (xy 74.130332 100.417092) + (xy 74.1455 100.476519) (xy 74.1455 100.91587) (xy 74.145501 100.915876) (xy 74.151908 100.975483) + (xy 74.202202 101.110328) (xy 74.202206 101.110335) (xy 74.288452 101.225544) (xy 74.288455 101.225547) + (xy 74.403664 101.311793) (xy 74.403671 101.311797) (xy 74.448618 101.32856) (xy 74.538517 101.362091) + (xy 74.598127 101.3685) (xy 75.037479 101.368499) (xy 75.096906 101.383667) (xy 75.112839 101.392367) + (xy 75.380954 101.492369) (xy 75.38096 101.49237) (xy 75.380962 101.492371) (xy 75.660566 101.553195) + (xy 75.660568 101.553195) (xy 75.660572 101.553196) (xy 75.874552 101.5685) (xy 96.678391 101.5685) + (xy 96.74543 101.588185) (xy 96.791185 101.640989) (xy 96.801129 101.710147) (xy 96.772104 101.773703) + (xy 96.766072 101.780181) (xy 93.848473 104.697781) (xy 93.78715 104.731266) (xy 93.760792 104.7341) + (xy 90.257637 104.7341) (xy 90.190598 104.714415) (xy 90.151238 104.671984) (xy 90.150778 104.672286) + (xy 90.149014 104.669587) (xy 90.148586 104.669125) (xy 90.147973 104.667993) (xy 90.011966 104.459817) + (xy 89.943074 104.384981) (xy 89.843544 104.276862) (xy 89.647309 104.124126) (xy 89.647307 104.124125) + (xy 89.647306 104.124124) (xy 89.428611 104.005772) (xy 89.428602 104.005769) (xy 89.193416 103.925029) + (xy 88.948135 103.8841) (xy 88.699465 103.8841) (xy 88.454183 103.925029) (xy 88.218997 104.005769) + (xy 88.218988 104.005772) (xy 88.000293 104.124124) (xy 87.804057 104.276861) (xy 87.635633 104.459817) + (xy 87.499626 104.667993) (xy 87.499014 104.669125) (xy 87.498642 104.669498) (xy 87.496822 104.672286) + (xy 87.496248 104.671911) (xy 87.449791 104.718712) (xy 87.389963 104.7341) (xy 86.026552 104.7341) + (xy 85.959513 104.714415) (xy 85.938711 104.695558) (xy 85.937819 104.696451) (xy 85.808657 104.567289) + (xy 85.808656 104.567289) (xy 85.808656 104.567288) (xy 85.659334 104.475186) (xy 85.492797 104.420001) + (xy 85.492795 104.42) (xy 85.39001 104.4095) (xy 84.789998 104.4095) (xy 84.78998 104.409501) (xy 84.687203 104.42) + (xy 84.6872 104.420001) (xy 84.520668 104.475185) (xy 84.520663 104.475187) (xy 84.371342 104.567289) + (xy 84.247289 104.691342) (xy 84.155187 104.840663) (xy 84.155185 104.840668) (xy 84.129858 104.917101) + (xy 84.100001 105.007203) (xy 84.100001 105.007204) (xy 84.1 105.007204) (xy 84.0895 105.109983) + (xy 84.0895 105.710001) (xy 84.089501 105.710019) (xy 84.1 105.812796) (xy 84.100001 105.812799) + (xy 84.155185 105.979331) (xy 84.155187 105.979336) (xy 84.187792 106.032197) (xy 84.247288 106.128656) + (xy 84.371344 106.252712) (xy 84.520666 106.344814) (xy 84.687203 106.399999) (xy 84.789991 106.4105) + (xy 85.390008 106.410499) (xy 85.390016 106.410498) (xy 85.390019 106.410498) (xy 85.446302 106.404748) + (xy 85.492797 106.399999) (xy 85.659334 106.344814) (xy 85.808656 106.252712) (xy 85.932712 106.128656) + (xy 85.954085 106.094003) (xy 86.006031 106.04728) (xy 86.059624 106.0351) (xy 87.389963 106.0351) + (xy 87.457002 106.054785) (xy 87.496361 106.097215) (xy 87.496822 106.096914) (xy 87.498585 106.099612) + (xy 87.499014 106.100075) (xy 87.499626 106.101206) (xy 87.635633 106.309382) (xy 87.642804 106.317172) + (xy 87.804056 106.492338) (xy 88.000291 106.645074) (xy 88.21899 106.763428) (xy 88.454186 106.844171) + (xy 88.699465 106.8851) (xy 88.948135 106.8851) (xy 89.193414 106.844171) (xy 89.42861 106.763428) + (xy 89.647309 106.645074) (xy 89.843544 106.492338) (xy 90.011964 106.309385) (xy 90.147973 106.101207) + (xy 90.147975 106.101201) (xy 90.148586 106.100075) (xy 90.148957 106.099701) (xy 90.150778 106.096914) + (xy 90.151351 106.097288) (xy 90.197809 106.050488) (xy 90.257637 106.0351) (xy 93.996095 106.0351) + (xy 94.012105 106.036867) (xy 94.012128 106.036626) (xy 94.019894 106.03736) (xy 94.019895 106.037359) + (xy 94.019896 106.03736) (xy 94.026871 106.03714) (xy 94.090835 106.035131) (xy 94.092783 106.0351) + (xy 94.122525 106.0351) (xy 94.12979 106.034181) (xy 94.135616 106.033722) (xy 94.184169 106.032197) + (xy 94.204556 106.026273) (xy 94.223596 106.022331) (xy 94.244658 106.019671) (xy 94.289835 106.001783) + (xy 94.295335 105.9999) (xy 94.341998 105.986344) (xy 94.360265 105.975539) (xy 94.377736 105.96698) + (xy 94.397471 105.959168) (xy 94.436777 105.93061) (xy 94.441643 105.927413) (xy 94.483465 105.902681) + (xy 94.49847 105.887675) (xy 94.513268 105.875036) (xy 94.530437 105.862563) (xy 94.561409 105.825122) + (xy 94.565323 105.820821) (xy 98.208144 102.178) (xy 111.024 102.178) (xy 112.224 102.178) (xy 112.224 101.528) + (xy 112.724 101.528) (xy 112.724 102.178) (xy 113.924 102.178) (xy 113.924 101.980172) (xy 113.923999 101.980155) + (xy 113.917598 101.920627) (xy 113.917596 101.92062) (xy 113.867354 101.785913) (xy 113.86735 101.785906) + (xy 113.78119 101.670812) (xy 113.781187 101.670809) (xy 113.666093 101.584649) (xy 113.666086 101.584645) + (xy 113.531379 101.534403) (xy 113.531372 101.534401) (xy 113.471844 101.528) (xy 112.724 101.528) + (xy 112.224 101.528) (xy 111.476155 101.528) (xy 111.416627 101.534401) (xy 111.41662 101.534403) + (xy 111.281913 101.584645) (xy 111.281906 101.584649) (xy 111.166812 101.670809) (xy 111.166809 101.670812) + (xy 111.080649 101.785906) (xy 111.080645 101.785913) (xy 111.030403 101.92062) (xy 111.030401 101.920627) + (xy 111.024 101.980155) (xy 111.024 102.178) (xy 98.208144 102.178) (xy 99.967513 100.418631) (xy 99.980079 100.408565) + (xy 99.979925 100.408378) (xy 99.985933 100.403405) (xy 99.98594 100.403402) (xy 100.034532 100.351656) + (xy 100.035856 100.350288) (xy 100.056911 100.329235) (xy 100.061401 100.323445) (xy 100.065183 100.319015) + (xy 100.098448 100.283593) (xy 100.108674 100.26499) (xy 100.119353 100.248733) (xy 100.132362 100.231964) + (xy 100.151656 100.187375) (xy 100.154212 100.182156) (xy 100.177627 100.139568) (xy 100.182905 100.119006) + (xy 100.189207 100.100599) (xy 100.197635 100.081127) (xy 100.205233 100.03315) (xy 100.206412 100.027451) + (xy 100.2185 99.980377) (xy 100.218499 99.959151) (xy 100.220027 99.939748) (xy 100.223345 99.9188) + (xy 100.223346 99.918797) (xy 100.218775 99.870437) (xy 100.2185 99.8646) (xy 100.2185 98.806005) + (xy 104.848357 98.806005) (xy 104.86889 99.053812) (xy 104.868892 99.053824) (xy 104.929936 99.294881) + (xy 105.029826 99.522606) (xy 105.165833 99.730782) (xy 105.172952 99.738515) (xy 105.334256 99.913738) + (xy 105.530491 100.066474) (xy 105.74919 100.184828) (xy 105.984386 100.265571) (xy 106.229665 100.3065) + (xy 106.478335 100.3065) (xy 106.723614 100.265571) (xy 106.95881 100.184828) (xy 107.177509 100.066474) + (xy 107.373744 99.913738) (xy 107.542164 99.730785) (xy 107.678173 99.522607) (xy 107.778063 99.294881) + (xy 107.839108 99.053821) (xy 107.841927 99.019806) (xy 107.859643 98.806005) (xy 107.859643 98.805994) + (xy 107.839109 98.558187) (xy 107.839107 98.558175) (xy 107.778063 98.317118) (xy 107.678173 98.089393) + (xy 107.542166 97.881217) (xy 107.504982 97.840825) (xy 107.373744 97.698262) (xy 107.177509 97.545526) + (xy 107.177507 97.545525) (xy 107.177506 97.545524) (xy 106.958811 97.427172) (xy 106.958802 97.427169) + (xy 106.723616 97.346429) (xy 106.478335 97.3055) (xy 106.229665 97.3055) (xy 105.984383 97.346429) + (xy 105.749197 97.427169) (xy 105.749188 97.427172) (xy 105.530493 97.545524) (xy 105.334257 97.698261) + (xy 105.165833 97.881217) (xy 105.029826 98.089393) (xy 104.929936 98.317118) (xy 104.868892 98.558175) + (xy 104.86889 98.558187) (xy 104.848357 98.805994) (xy 104.848357 98.806005) (xy 100.2185 98.806005) + (xy 100.2185 98.002501) (xy 100.220268 97.986488) (xy 100.220026 97.986466) (xy 100.22076 97.978704) + (xy 100.218531 97.907762) (xy 100.2185 97.905814) (xy 100.2185 97.876077) (xy 100.2185 97.876075) + (xy 100.217579 97.868788) (xy 100.217122 97.862979) (xy 100.215597 97.81443) (xy 100.209676 97.794052) + (xy 100.205731 97.775003) (xy 100.203071 97.753942) (xy 100.185186 97.708772) (xy 100.183297 97.703252) + (xy 100.169743 97.656599) (xy 100.162073 97.643631) (xy 100.158939 97.638332) (xy 100.150379 97.620858) + (xy 100.149351 97.618262) (xy 100.142568 97.601129) (xy 100.114014 97.561828) (xy 100.11081 97.55695) + (xy 100.102422 97.542767) (xy 100.086081 97.515135) (xy 100.071075 97.500129) (xy 100.058435 97.48533) + (xy 100.058253 97.48508) (xy 100.045963 97.468163) (xy 100.045961 97.46816) (xy 100.008528 97.437194) + (xy 100.004206 97.43326) (xy 98.615234 96.044288) (xy 98.605161 96.031714) (xy 98.604974 96.03187) + (xy 98.599998 96.025855) (xy 98.565317 95.993289) (xy 98.548232 95.977245) (xy 98.546858 95.975912) + (xy 98.525835 95.954889) (xy 98.52004 95.950394) (xy 98.515598 95.946599) (xy 98.480196 95.913354) + (xy 98.480188 95.913348) (xy 98.461592 95.903125) (xy 98.445331 95.892444) (xy 98.428563 95.879437) + (xy 98.40498 95.869232) (xy 98.383978 95.860143) (xy 98.378756 95.857586) (xy 98.336168 95.834173) + (xy 98.336165 95.834172) (xy 98.315601 95.828892) (xy 98.297196 95.82259) (xy 98.277727 95.814165) + (xy 98.277721 95.814163) (xy 98.229751 95.806566) (xy 98.224036 95.805382) (xy 98.207572 95.801155) + (xy 98.17698 95.7933) (xy 98.176977 95.7933) (xy 98.155755 95.7933) (xy 98.136355 95.791773) (xy 98.115396 95.788453) + (xy 98.115395 95.788453) (xy 98.091586 95.790703) (xy 98.06703 95.793025) (xy 98.061192 95.7933) + (xy 96.402305 95.7933) (xy 96.386294 95.791532) (xy 96.386272 95.791774) (xy 96.378505 95.791039) + (xy 96.307565 95.793269) (xy 96.305617 95.7933) (xy 96.275875 95.7933) (xy 96.275871 95.7933) (xy 96.275861 95.793301) + (xy 96.268593 95.794219) (xy 96.262776 95.794676) (xy 96.214236 95.796202) (xy 96.214225 95.796204) + (xy 96.193849 95.802123) (xy 96.174808 95.806066) (xy 96.153753 95.808726) (xy 96.153737 95.80873) + (xy 96.108571 95.826612) (xy 96.103044 95.828504) (xy 96.056399 95.842056) (xy 96.038127 95.852862) + (xy 96.020661 95.861419) (xy 96.000928 95.869232) (xy 95.96163 95.897783) (xy 95.956753 95.900986) + (xy 95.943081 95.909072) (xy 95.914932 95.92572) (xy 95.899926 95.940726) (xy 95.885136 95.953358) + (xy 95.867967 95.965832) (xy 95.867965 95.965834) (xy 95.836994 96.00327) (xy 95.833061 96.007591) + (xy 95.506983 96.333671) (xy 95.194673 96.645981) (xy 95.13335 96.679466) (xy 95.106992 96.6823) + (xy 92.776808 96.6823) (xy 92.709769 96.662615) (xy 92.689127 96.645981) (xy 92.177619 96.134473) + (xy 92.144134 96.07315) (xy 92.1413 96.046792) (xy 92.1413 93.432039) (xy 92.160985 93.365) (xy 92.213789 93.319245) + (xy 92.282947 93.309301) (xy 92.330394 93.326498) (xy 92.434666 93.390814) (xy 92.601203 93.445999) + (xy 92.703991 93.4565) (xy 93.304008 93.456499) (xy 93.304016 93.456498) (xy 93.304019 93.456498) + (xy 93.360302 93.450748) (xy 93.406797 93.445999) (xy 93.573334 93.390814) (xy 93.722656 93.298712) + (xy 93.846712 93.174656) (xy 93.938814 93.025334) (xy 93.993999 92.858797) (xy 94.0045 92.756009) + (xy 94.004499 92.155992) (xy 94.000876 92.120529) (xy 93.993999 92.053203) (xy 93.993998 92.0532) + (xy 93.992789 92.049551) (xy 93.938814 91.886666) (xy 93.846712 91.737344) (xy 93.722656 91.613288) + (xy 93.573334 91.521186) (xy 93.406797 91.466001) (xy 93.406795 91.466) (xy 93.30401 91.4555) (xy 92.703998 91.4555) + (xy 92.70398 91.455501) (xy 92.601203 91.466) (xy 92.6012 91.466001) (xy 92.434668 91.521185) (xy 92.434663 91.521187) + (xy 92.285345 91.613287) (xy 92.167763 91.730869) (xy 92.10644 91.764353) (xy 92.036748 91.759369) + (xy 92.007197 91.743505) (xy 91.943534 91.697251) (xy 91.943529 91.697248) (xy 91.770607 91.620257) + (xy 91.770602 91.620255) (xy 91.608409 91.585781) (xy 91.585446 91.5809) (xy 91.396154 91.5809) + (xy 91.373191 91.585781) (xy 91.210997 91.620255) (xy 91.210992 91.620257) (xy 91.03807 91.697248) + (xy 91.038065 91.697251) (xy 90.884929 91.808511) (xy 90.758266 91.949185) (xy 90.663621 92.113115) + (xy 90.663618 92.113122) (xy 90.606765 92.2881) (xy 90.605126 92.293144) (xy 90.58534 92.4814) (xy 90.605126 92.669656) + (xy 90.605127 92.669659) (xy 90.663618 92.849677) (xy 90.663621 92.849684) (xy 90.753958 93.006154) + (xy 90.758267 93.013616) (xy 90.798 93.057744) (xy 90.808449 93.069348) (xy 90.83868 93.13234) (xy 90.8403 93.152321) + (xy 90.8403 96.282094) (xy 90.838532 96.298105) (xy 90.838774 96.298128) (xy 90.838039 96.305894) + (xy 90.840269 96.376835) (xy 90.8403 96.378783) (xy 90.8403 96.40852) (xy 90.840301 96.40854) (xy 90.841218 96.415806) + (xy 90.841676 96.421624) (xy 90.843202 96.470167) (xy 90.843203 96.47017) (xy 90.849123 96.490548) + (xy 90.853068 96.509596) (xy 90.855728 96.530654) (xy 90.855731 96.530664) (xy 90.873613 96.57583) + (xy 90.875505 96.581358) (xy 90.889054 96.627995) (xy 90.889055 96.627997) (xy 90.89986 96.646266) + (xy 90.908417 96.663734) (xy 90.914026 96.6779) (xy 90.916232 96.683472) (xy 90.944783 96.72277) + (xy 90.947988 96.727649) (xy 90.972719 96.769465) (xy 90.972723 96.769469) (xy 90.987725 96.784471) + (xy 91.000363 96.799269) (xy 91.012833 96.816433) (xy 91.012836 96.816436) (xy 91.012837 96.816437) + (xy 91.050276 96.847409) (xy 91.054576 96.851322) (xy 91.322992 97.119738) (xy 91.559073 97.355819) + (xy 91.592558 97.417142) (xy 91.587574 97.486834) (xy 91.545702 97.542767) (xy 91.480238 97.567184) + (xy 91.471392 97.5675) (xy 75.874549 97.5675) (xy 75.660566 97.582804) (xy 75.380962 97.643628) + (xy 75.112839 97.743633) (xy 75.096902 97.752335) (xy 75.03748 97.7675) (xy 74.598129 97.7675) (xy 74.598123 97.767501) + (xy 74.538516 97.773908) (xy 74.403671 97.824202) (xy 74.403664 97.824206) (xy 74.288455 97.910452) + (xy 74.288452 97.910455) (xy 74.202206 98.025664) (xy 74.202202 98.025671) (xy 74.151908 98.160517) + (xy 74.145501 98.220116) (xy 74.1455 98.220135) (xy 74.1455 98.65948) (xy 74.130333 98.718905) (xy 74.121637 98.734831) + (xy 74.121633 98.734838) (xy 74.021628 99.002962) (xy 73.960804 99.282566) (xy 73.94039 99.567998) + (xy 73.94039 99.568001) (xy 70.7505 99.568001) (xy 70.7505 82.546) (xy 74.657501 82.546) (xy 74.657501 82.582654) + (xy 74.667819 82.683652) (xy 74.722046 82.8473) (xy 74.722051 82.847311) (xy 74.812552 82.994034) + (xy 74.812555 82.994038) (xy 74.934461 83.115944) (xy 74.934465 83.115947) (xy 75.081188 83.206448) + (xy 75.081199 83.206453) (xy 75.244847 83.26068) (xy 75.345851 83.270999) (xy 75.394999 83.270998) + (xy 75.395 83.270998) (xy 75.395 82.546) (xy 74.657501 82.546) (xy 70.7505 82.546) (xy 70.7505 82.046) + (xy 74.6575 82.046) (xy 75.395 82.046) (xy 75.395 81.321) (xy 75.394999 81.320999) (xy 75.345861 81.321) + (xy 75.345843 81.321001) (xy 75.244847 81.331319) (xy 75.081199 81.385546) (xy 75.081188 81.385551) + (xy 74.934465 81.476052) (xy 74.934461 81.476055) (xy 74.812555 81.597961) (xy 74.812552 81.597965) + (xy 74.722051 81.744688) (xy 74.722046 81.744699) (xy 74.667819 81.908347) (xy 74.6575 82.009345) + (xy 74.6575 82.046) (xy 70.7505 82.046) (xy 70.7505 78.482001) (xy 96.193704 78.482001) (xy 96.193899 78.484486) + (xy 96.239718 78.642198) (xy 96.323314 78.783552) (xy 96.323321 78.783561) (xy 96.439438 78.899678) + (xy 96.439447 78.899685) (xy 96.580803 78.983282) (xy 96.580806 78.983283) (xy 96.738504 79.029099) + (xy 96.73851 79.0291) (xy 96.77535 79.031999) (xy 96.775366 79.032) (xy 97.416 79.032) (xy 97.416 78.482) + (xy 97.916 78.482) (xy 97.916 79.032) (xy 98.556634 79.032) (xy 98.556649 79.031999) (xy 98.593489 79.0291) + (xy 98.593495 79.029099) (xy 98.751193 78.983283) (xy 98.751196 78.983282) (xy 98.892552 78.899685) + (xy 98.892561 78.899678) (xy 99.008678 78.783561) (xy 99.008685 78.783552) (xy 99.092281 78.642198) + (xy 99.1381 78.484486) (xy 99.138295 78.482001) (xy 99.138295 78.482) (xy 97.916 78.482) (xy 97.416 78.482) + (xy 96.193705 78.482) (xy 96.193704 78.482001) (xy 70.7505 78.482001) (xy 70.7505 74.893401) (xy 71.730746 74.893401) + (xy 71.740745 75.103327) (xy 71.790296 75.307578) (xy 71.790298 75.307582) (xy 71.877598 75.498743) + (xy 71.877601 75.498748) (xy 71.877602 75.49875) (xy 71.877604 75.498753) (xy 71.948756 75.598672) + (xy 71.999515 75.669953) (xy 72.102082 75.76775) (xy 72.137017 75.828259) (xy 72.133692 75.898049) + (xy 72.093164 75.954963) (xy 72.08161 75.963031) (xy 72.016344 76.003287) (xy 71.892289 76.127342) + (xy 71.800187 76.276663) (xy 71.800185 76.276668) (xy 71.783507 76.327) (xy 71.745001 76.443203) + (xy 71.745001 76.443204) (xy 71.745 76.443204) (xy 71.7345 76.545983) (xy 71.7345 77.346001) (xy 71.734501 77.346019) + (xy 71.745 77.448796) (xy 71.745001 77.448799) (xy 71.776217 77.543) (xy 71.800186 77.615334) (xy 71.892288 77.764656) + (xy 72.016344 77.888712) (xy 72.165666 77.980814) (xy 72.332203 78.035999) (xy 72.434991 78.0465) + (xy 73.785008 78.046499) (xy 73.887797 78.035999) (xy 74.054334 77.980814) (xy 74.203656 77.888712) + (xy 74.327712 77.764656) (xy 74.327716 77.764649) (xy 74.331721 77.759586) (xy 74.388744 77.719211) + (xy 74.428985 77.7125) (xy 96.106321 77.7125) (xy 96.17336 77.732185) (xy 96.219115 77.784989) (xy 96.229059 77.854147) + (xy 96.225397 77.871095) (xy 96.1939 77.979505) (xy 96.193899 77.979511) (xy 96.193704 77.981998) + (xy 96.193705 77.982) (xy 99.138295 77.982) (xy 99.138295 77.981998) (xy 99.1381 77.979513) (xy 99.092281 77.821801) + (xy 99.008685 77.680447) (xy 99.0039 77.674278) (xy 99.006366 77.672364) (xy 98.979802 77.623776) + (xy 98.984749 77.554082) (xy 99.005856 77.521232) (xy 99.004301 77.520026) (xy 99.009077 77.513868) + (xy 99.009081 77.513865) (xy 99.092744 77.372398) (xy 99.138598 77.214569) (xy 99.1415 77.177694) + (xy 99.1415 76.746306) (xy 99.138598 76.709431) (xy 99.136527 76.702303) (xy 99.092745 76.551606) + (xy 99.092744 76.551603) (xy 99.092744 76.551602) (xy 99.052382 76.483353) (xy 99.009084 76.410139) + (xy 99.004301 76.403974) (xy 99.006752 76.402072) (xy 98.980154 76.353421) (xy 98.985103 76.283726) + (xy 99.005942 76.251299) (xy 99.004301 76.250026) (xy 99.009077 76.243868) (xy 99.009081 76.243865) + (xy 99.092744 76.102398) (xy 99.138598 75.944569) (xy 99.1415 75.907694) (xy 99.1415 75.476306) + (xy 99.138598 75.439431) (xy 99.129108 75.406768) (xy 99.092745 75.281606) (xy 99.092744 75.281603) + (xy 99.092744 75.281602) (xy 99.052382 75.213353) (xy 99.009084 75.140139) (xy 99.004301 75.133974) + (xy 99.006752 75.132072) (xy 98.980154 75.083421) (xy 98.985103 75.013726) (xy 99.005942 74.981299) + (xy 99.004301 74.980026) (xy 99.009077 74.973868) (xy 99.009081 74.973865) (xy 99.092744 74.832398) + (xy 99.135461 74.685367) (xy 99.138597 74.674573) (xy 99.138598 74.674567) (xy 99.141499 74.637701) + (xy 99.1415 74.637694) (xy 99.1415 74.206306) (xy 99.138598 74.169431) (xy 99.136219 74.161243) + (xy 99.101567 74.04197) (xy 99.092744 74.011602) (xy 99.009081 73.870135) (xy 99.009079 73.870133) + (xy 99.009076 73.870129) (xy 98.89287 73.753923) (xy 98.892862 73.753917) (xy 98.751396 73.670255) + (xy 98.751393 73.670254) (xy 98.593573 73.624402) (xy 98.593567 73.624401) (xy 98.556701 73.6215) + (xy 98.556694 73.6215) (xy 96.775306 73.6215) (xy 96.775298 73.6215) (xy 96.738432 73.624401) (xy 96.738426 73.624402) + (xy 96.580606 73.670254) (xy 96.580603 73.670255) (xy 96.439137 73.753917) (xy 96.439129 73.753923) + (xy 96.322923 73.870129) (xy 96.322917 73.870137) (xy 96.239255 74.011603) (xy 96.239254 74.011606) + (xy 96.193402 74.169426) (xy 96.193401 74.169432) (xy 96.1905 74.206298) (xy 96.1905 74.637701) + (xy 96.193401 74.674567) (xy 96.193402 74.674573) (xy 96.224876 74.782905) (xy 96.224677 74.852775) + (xy 96.186735 74.911445) (xy 96.123096 74.940288) (xy 96.1058 74.9415) (xy 76.61303 74.9415) (xy 76.545991 74.921815) + (xy 76.525349 74.905181) (xy 76.080529 74.460361) (xy 76.068749 74.44673) (xy 76.059181 74.433879) + (xy 76.054412 74.427472) (xy 76.05441 74.42747) (xy 76.014387 74.393886) (xy 76.010412 74.390244) + (xy 76.00749 74.387322) (xy 76.004579 74.38441) (xy 75.979536 74.364609) (xy 75.978138 74.36347) + (xy 75.968737 74.355582) (xy 75.920014 74.314698) (xy 75.91398 74.310729) (xy 75.914012 74.31068) + (xy 75.907653 74.306628) (xy 75.907622 74.306679) (xy 75.90148 74.302891) (xy 75.901478 74.30289) + (xy 75.901477 74.302889) (xy 75.832672 74.270804) (xy 75.831052 74.270019) (xy 75.791312 74.250061) + (xy 75.763233 74.23596) (xy 75.763231 74.235959) (xy 75.76323 74.235959) (xy 75.756445 74.233489) + (xy 75.756465 74.233433) (xy 75.749349 74.230959) (xy 75.749331 74.231015) (xy 75.742474 74.228743) + (xy 75.668128 74.213391) (xy 75.666369 74.213001) (xy 75.592518 74.195499) (xy 75.585347 74.194661) + (xy 75.585353 74.194601) (xy 75.577855 74.193835) (xy 75.57785 74.193895) (xy 75.57066 74.193265) + (xy 75.494768 74.195474) (xy 75.492965 74.1955) (xy 74.242285 74.1955) (xy 74.175246 74.175815) + (xy 74.156715 74.161243) (xy 74.145284 74.150344) (xy 74.068378 74.077014) (xy 74.068376 74.077012) + (xy 73.891574 73.963388) (xy 73.696455 73.885274) (xy 73.490086 73.8455) (xy 73.490085 73.8455) + (xy 72.782575 73.8455) (xy 72.625782 73.860472) (xy 72.625778 73.860473) (xy 72.424127 73.919683) + (xy 72.237313 74.015991) (xy 72.072116 74.145905) (xy 72.072112 74.145909) (xy 71.934478 74.304746) + (xy 71.829398 74.48675) (xy 71.760656 74.685365) (xy 71.760656 74.685367) (xy 71.733573 74.87374) + (xy 71.730746 74.893401) (xy 70.7505 74.893401) (xy 70.7505 70.8745) (xy 70.770185 70.807461) (xy 70.822989 70.761706) + (xy 70.8745 70.7505) (xy 110.148192 70.7505) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 124.9998 89.4368) (xy 125.03069 89.46769) (xy 125.064175 89.529013) (xy 125.059191 89.598705) + (xy 125.033401 89.640255) (xy 125.009469 89.665741) (xy 125.008115 89.667138) (xy 124.987089 89.688164) + (xy 124.987078 89.688177) (xy 124.982587 89.693965) (xy 124.978801 89.698397) (xy 124.945551 89.733807) + (xy 124.943375 89.736803) (xy 124.908157 89.769451) (xy 124.765153 89.857657) (xy 124.765149 89.85766) + (xy 124.651181 89.971629) (xy 124.589858 90.005114) (xy 124.520166 90.00013) (xy 124.475819 89.971629) + (xy 124.361851 89.857661) (xy 124.361851 89.85766) (xy 124.36185 89.85766) (xy 124.215016 89.767092) + (xy 124.051253 89.712826) (xy 124.051251 89.712825) (xy 123.950178 89.7025) (xy 123.35183 89.7025) + (xy 123.351812 89.702501) (xy 123.250747 89.712825) (xy 123.086984 89.767092) (xy 123.086981 89.767093) + (xy 122.940148 89.857661) (xy 122.818155 89.979654) (xy 122.817555 89.980414) (xy 122.81701 89.980799) + (xy 122.813053 89.984757) (xy 122.812376 89.98408) (xy 122.760532 90.020789) (xy 122.720292 90.0275) + (xy 120.335808 90.0275) (xy 120.268769 90.007815) (xy 120.248127 89.991181) (xy 119.878521 89.621575) + (xy 119.845036 89.560252) (xy 119.85002 89.49056) (xy 119.891892 89.434627) (xy 119.934109 89.414119) + (xy 119.962417 89.406534) (xy 120.133463 89.360703) (xy 120.34763 89.260835) (xy 120.541201 89.125295) + (xy 120.708295 88.958201) (xy 120.838224 88.772642) (xy 120.892802 88.729017) (xy 120.9623 88.721823) + (xy 121.024655 88.753346) (xy 121.041375 88.772642) (xy 121.166528 88.95138) (xy 121.171305 88.958201) + (xy 121.338399 89.125295) (xy 121.411974 89.176813) (xy 121.531965 89.260832) (xy 121.531967 89.260833) + (xy 121.53197 89.260835) (xy 121.746137 89.360703) (xy 121.746143 89.360704) (xy 121.746144 89.360705) + (xy 121.753239 89.362606) (xy 121.974392 89.421863) (xy 122.145119 89.4368) (xy 122.209799 89.442459) + (xy 122.2098 89.442459) (xy 122.209801 89.442459) (xy 122.274481 89.4368) (xy 122.445208 89.421863) + (xy 122.673463 89.360703) (xy 122.88763 89.260835) (xy 123.081201 89.125295) (xy 123.203517 89.002978) + (xy 123.264836 88.969496) (xy 123.334528 88.97448) (xy 123.390462 89.016351) (xy 123.407377 89.047328) + (xy 123.456446 89.178888) (xy 123.456449 89.178893) (xy 123.542609 89.293987) (xy 123.542612 89.29399) + (xy 123.657706 89.38015) (xy 123.657713 89.380154) (xy 123.79242 89.430396) (xy 123.792427 89.430398) + (xy 123.851955 89.436799) (xy 123.851972 89.4368) (xy 124.499799 89.4368) (xy 124.499799 88.522301) + (xy 124.607485 88.57148) (xy 124.714037 88.5868) (xy 124.785563 88.5868) (xy 124.892115 88.57148) + (xy 124.9998 88.522301) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 102.418827 87.234285) (xy 102.464582 87.287089) (xy 102.475108 87.351559) (xy 102.474575 87.356639) + (xy 102.47254 87.376) (xy 102.482581 87.471539) (xy 102.470011 87.540269) (xy 102.422279 87.591293) + (xy 102.359264 87.6085) (xy 102.329362 87.6085) (xy 102.329344 87.608501) (xy 102.228347 87.618819) + (xy 102.064699 87.673046) (xy 102.064688 87.673051) (xy 101.917965 87.763552) (xy 101.917961 87.763555) + (xy 101.796055 87.885461) (xy 101.796052 87.885465) (xy 101.705551 88.032188) (xy 101.705546 88.032199) + (xy 101.651319 88.195847) (xy 101.641 88.296845) (xy 101.641 88.396) (xy 102.742 88.396) (xy 102.809039 88.415685) + (xy 102.854794 88.468489) (xy 102.866 88.52) (xy 102.866 88.772) (xy 102.846315 88.839039) (xy 102.793511 88.884794) + (xy 102.742 88.896) (xy 101.641001 88.896) (xy 101.641001 88.995154) (xy 101.651319 89.096152) (xy 101.705546 89.2598) + (xy 101.705551 89.259811) (xy 101.796052 89.406534) (xy 101.796055 89.406538) (xy 101.809982 89.420465) + (xy 101.843467 89.481788) (xy 101.838483 89.55148) (xy 101.809984 89.595825) (xy 101.790555 89.615255) + (xy 101.789009 89.613709) (xy 101.74069 89.647913) (xy 101.67089 89.65104) (xy 101.612786 89.618303) + (xy 101.598534 89.604052) (xy 101.451811 89.513551) (xy 101.4518 89.513546) (xy 101.288152 89.459319) + (xy 101.187154 89.449) (xy 101.131997 89.449) (xy 101.064958 89.429315) (xy 101.019203 89.376511) + (xy 101.008708 89.311744) (xy 101.011117 89.289336) (xy 101.0145 89.257873) (xy 101.014499 87.480807) + (xy 101.034184 87.413769) (xy 101.050813 87.393132) (xy 101.193028 87.250917) (xy 101.25435 87.217434) + (xy 101.280708 87.2146) (xy 102.351788 87.2146) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 116.539231 71.790185) (xy 116.559873 71.806819) (xy 117.038681 72.285627) (xy 117.072166 72.34695) + (xy 117.075 72.373308) (xy 117.075 72.676668) (xy 117.075001 72.676687) (xy 117.085325 72.777752) + (xy 117.139592 72.941515) (xy 117.139593 72.941518) (xy 117.173895 72.997129) (xy 117.23016 73.08835) + (xy 117.35215 73.21034) (xy 117.498984 73.300908) (xy 117.662747 73.355174) (xy 117.763823 73.3655) + (xy 118.362176 73.365499) (xy 118.362184 73.365498) (xy 118.362187 73.365498) (xy 118.455186 73.355998) + (xy 118.463253 73.355174) (xy 118.627016 73.300908) (xy 118.77385 73.21034) (xy 118.887819 73.09637) + (xy 118.949142 73.062886) (xy 119.018834 73.06787) (xy 119.063181 73.096371) (xy 119.17715 73.21034) + (xy 119.323984 73.300908) (xy 119.487747 73.355174) (xy 119.588823 73.3655) (xy 120.187176 73.365499) + (xy 120.187184 73.365498) (xy 120.187187 73.365498) (xy 120.280186 73.355998) (xy 120.288253 73.355174) + (xy 120.452016 73.300908) (xy 120.566705 73.230166) (xy 120.634097 73.211726) (xy 120.700761 73.232648) + (xy 120.715341 73.244069) (xy 120.745957 73.27198) (xy 120.74596 73.271982) (xy 120.800246 73.305594) + (xy 120.919363 73.379348) (xy 121.109544 73.453024) (xy 121.310024 73.4905) (xy 121.310026 73.4905) + (xy 121.513974 73.4905) (xy 121.513976 73.4905) (xy 121.714456 73.453024) (xy 121.904637 73.379348) + (xy 122.078041 73.271981) (xy 122.208032 73.153478) (xy 122.270831 73.122864) (xy 122.340218 73.131061) + (xy 122.379247 73.157437) (xy 122.43215 73.21034) (xy 122.578984 73.300908) (xy 122.742747 73.355174) + (xy 122.843823 73.3655) (xy 123.442176 73.365499) (xy 123.442184 73.365498) (xy 123.442187 73.365498) + (xy 123.535186 73.355998) (xy 123.543253 73.355174) (xy 123.707016 73.300908) (xy 123.85385 73.21034) + (xy 123.967818 73.09637) (xy 124.029142 73.062886) (xy 124.098834 73.06787) (xy 124.143181 73.096371) + (xy 124.25715 73.21034) (xy 124.403984 73.300908) (xy 124.567747 73.355174) (xy 124.668823 73.3655) + (xy 125.267176 73.365499) (xy 125.267184 73.365498) (xy 125.267187 73.365498) (xy 125.360186 73.355998) + (xy 125.368253 73.355174) (xy 125.532016 73.300908) (xy 125.67885 73.21034) (xy 125.80084 73.08835) + (xy 125.800841 73.088347) (xy 125.800844 73.088345) (xy 125.801445 73.087586) (xy 125.801989 73.0872) + (xy 125.805947 73.083243) (xy 125.806623 73.083919) (xy 125.858468 73.047211) (xy 125.898708 73.0405) + (xy 129.123192 73.0405) (xy 129.190231 73.060185) (xy 129.210873 73.076819) (xy 129.39823 73.264176) + (xy 129.431715 73.325499) (xy 129.433964 73.352835) (xy 129.4345 73.352835) (xy 129.4345 74.156001) + (xy 129.434501 74.156019) (xy 129.445 74.258796) (xy 129.445001 74.258799) (xy 129.500185 74.425331) + (xy 129.500187 74.425336) (xy 129.513534 74.446975) (xy 129.576835 74.549603) (xy 129.592289 74.574657) + (xy 129.716344 74.698712) (xy 129.779739 74.737814) (xy 129.826464 74.789762) (xy 129.837687 74.858724) + (xy 129.809844 74.922806) (xy 129.791296 74.940822) (xy 129.772118 74.955903) (xy 129.772112 74.955909) + (xy 129.634478 75.114746) (xy 129.529398 75.29675) (xy 129.460656 75.495365) (xy 129.460656 75.495367) + (xy 129.445804 75.59867) (xy 129.430746 75.703401) (xy 129.440746 75.913331) (xy 129.441412 75.917962) + (xy 129.431472 75.987121) (xy 129.406356 76.023296) (xy 128.798873 76.630781) (xy 128.73755 76.664266) + (xy 128.711192 76.6671) (xy 125.668208 76.6671) (xy 125.601169 76.647415) (xy 125.575584 76.624219) + (xy 125.575447 76.624357) (xy 125.572647 76.621557) (xy 125.570945 76.620014) (xy 125.570344 76.619254) + (xy 125.448351 76.497261) (xy 125.44835 76.49726) (xy 125.357129 76.440995) (xy 125.301518 76.406693) + (xy 125.301513 76.406691) (xy 125.273031 76.397253) (xy 125.137753 76.352426) (xy 125.137751 76.352425) + (xy 125.036678 76.3421) (xy 124.43833 76.3421) (xy 124.438312 76.342101) (xy 124.337247 76.352425) + (xy 124.173484 76.406692) (xy 124.173481 76.406693) (xy 124.026648 76.497261) (xy 123.912681 76.611229) + (xy 123.851358 76.644714) (xy 123.781666 76.63973) (xy 123.737319 76.611229) (xy 123.623351 76.497261) + (xy 123.62335 76.49726) (xy 123.532129 76.440995) (xy 123.476518 76.406693) (xy 123.476513 76.406691) + (xy 123.448031 76.397253) (xy 123.312753 76.352426) (xy 123.312751 76.352425) (xy 123.211678 76.3421) + (xy 122.61333 76.3421) (xy 122.613312 76.342101) (xy 122.512247 76.352425) (xy 122.348484 76.406692) + (xy 122.348481 76.406693) (xy 122.201648 76.497261) (xy 122.079655 76.619254) (xy 122.079055 76.620014) + (xy 122.07851 76.620399) (xy 122.074553 76.624357) (xy 122.073876 76.62368) (xy 122.022032 76.660389) + (xy 121.981792 76.6671) (xy 121.980106 76.6671) (xy 121.964095 76.665332) (xy 121.964073 76.665574) + (xy 121.956305 76.664839) (xy 121.88535 76.667069) (xy 121.883403 76.6671) (xy 121.853675 76.6671) + (xy 121.853671 76.6671) (xy 121.85366 76.667101) (xy 121.846404 76.668017) (xy 121.840586 76.668475) + (xy 121.792032 76.670001) (xy 121.792031 76.670001) (xy 121.771641 76.675925) (xy 121.752596 76.679869) + (xy 121.731542 76.682529) (xy 121.686374 76.700411) (xy 121.680848 76.702303) (xy 121.634202 76.715855) + (xy 121.634195 76.715858) (xy 121.615929 76.726661) (xy 121.598461 76.735219) (xy 121.578728 76.743032) + (xy 121.53943 76.771583) (xy 121.534553 76.774786) (xy 121.520881 76.782872) (xy 121.492732 76.79952) + (xy 121.477726 76.814526) (xy 121.462936 76.827158) (xy 121.445767 76.839632) (xy 121.445765 76.839634) + (xy 121.414794 76.87707) (xy 121.410862 76.881391) (xy 121.177583 77.114669) (xy 121.16501 77.124743) + (xy 121.165165 77.12493) (xy 121.159158 77.129898) (xy 121.110568 77.181642) (xy 121.109214 77.183038) + (xy 121.08819 77.204063) (xy 121.088178 77.204077) (xy 121.083687 77.209865) (xy 121.079901 77.214297) + (xy 121.046652 77.249706) (xy 121.036422 77.268313) (xy 121.025746 77.284564) (xy 121.01274 77.301332) + (xy 121.012736 77.301338) (xy 120.993448 77.345911) (xy 120.990877 77.351158) (xy 120.967472 77.39373) + (xy 120.967472 77.393731) (xy 120.962191 77.414299) (xy 120.955891 77.432701) (xy 120.947464 77.452173) + (xy 120.939866 77.500147) (xy 120.938681 77.50587) (xy 120.9266 77.552918) (xy 120.9266 77.574144) + (xy 120.925073 77.593543) (xy 120.921753 77.614505) (xy 120.924855 77.647315) (xy 120.926325 77.662867) + (xy 120.9266 77.668706) (xy 120.9266 81.429091) (xy 120.906915 81.49613) (xy 120.890281 81.516772) + (xy 119.285979 83.121073) (xy 119.224656 83.154558) (xy 119.154964 83.149574) (xy 119.099031 83.107702) + (xy 119.080367 83.07171) (xy 119.038781 82.943721) (xy 119.038778 82.943715) (xy 119.037131 82.940862) + (xy 118.944133 82.779784) (xy 118.817471 82.639112) (xy 118.79738 82.624515) (xy 118.664334 82.527851) + (xy 118.664329 82.527848) (xy 118.491407 82.450857) (xy 118.491402 82.450855) (xy 118.345601 82.419865) + (xy 118.306246 82.4115) (xy 118.116954 82.4115) (xy 118.116952 82.4115) (xy 117.950183 82.446947) + (xy 117.880516 82.441631) (xy 117.824783 82.399493) (xy 117.800678 82.333913) (xy 117.805236 82.298186) + (xy 117.803757 82.29787) (xy 117.805174 82.291251) (xy 117.809768 82.246282) (xy 117.8155 82.190177) + (xy 117.815499 81.491824) (xy 117.815034 81.487275) (xy 117.805174 81.390747) (xy 117.797679 81.368129) + (xy 117.750908 81.226984) (xy 117.66034 81.08015) (xy 117.53835 80.95816) (xy 117.391516 80.867592) + (xy 117.227753 80.813326) (xy 117.227751 80.813325) (xy 117.126678 80.803) (xy 116.55333 80.803) + (xy 116.553312 80.803001) (xy 116.452247 80.813325) (xy 116.288484 80.867592) (xy 116.288481 80.867593) + (xy 116.141648 80.958161) (xy 116.019661 81.080148) (xy 115.929093 81.226981) (xy 115.929091 81.226986) + (xy 115.919748 81.255181) (xy 115.874826 81.390747) (xy 115.874826 81.390748) (xy 115.874825 81.390748) + (xy 115.8645 81.491815) (xy 115.8645 81.782291) (xy 115.844815 81.84933) (xy 115.828181 81.869972) + (xy 114.320873 83.377281) (xy 114.25955 83.410766) (xy 114.233192 83.4136) (xy 113.916 83.4136) + (xy 113.848961 83.393915) (xy 113.803206 83.341111) (xy 113.792 83.2896) (xy 113.792 82.972407) + (xy 113.811685 82.905368) (xy 113.828319 82.884726) (xy 114.185407 82.527638) (xy 114.572513 82.140531) + (xy 114.585079 82.130465) (xy 114.584925 82.130278) (xy 114.590933 82.125305) (xy 114.59094 82.125302) + (xy 114.639532 82.073556) (xy 114.640856 82.072188) (xy 114.661911 82.051135) (xy 114.666401 82.045345) + (xy 114.670183 82.040915) (xy 114.703448 82.005493) (xy 114.713674 81.98689) (xy 114.724353 81.970633) + (xy 114.737362 81.953864) (xy 114.756656 81.909275) (xy 114.759212 81.904056) (xy 114.782627 81.861468) + (xy 114.787905 81.840906) (xy 114.794207 81.822499) (xy 114.802635 81.803027) (xy 114.810233 81.755053) + (xy 114.811414 81.749347) (xy 114.8235 81.702277) (xy 114.8235 81.681048) (xy 114.825027 81.661649) + (xy 114.828346 81.640695) (xy 114.823772 81.592316) (xy 114.8235 81.586522) (xy 114.8235 73.352541) + (xy 114.843185 73.285502) (xy 114.895989 73.239747) (xy 114.904149 73.236366) (xy 114.915331 73.232196) + (xy 114.916172 73.231567) (xy 114.977292 73.185812) (xy 115.030546 73.145946) (xy 115.116796 73.030731) + (xy 115.167091 72.895883) (xy 115.1735 72.836273) (xy 115.173499 71.894499) (xy 115.193183 71.827461) + (xy 115.245987 71.781706) (xy 115.297499 71.7705) (xy 116.472192 71.7705) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 111.883 73.257559) (xy 112.017534 73.216749) (xy 112.191259 73.123892) (xy 112.19632 73.120511) + (xy 112.197444 73.122193) (xy 112.253203 73.098486) (xy 112.322075 73.110251) (xy 112.339186 73.121243) + (xy 112.339399 73.120926) (xy 112.344457 73.124306) (xy 112.344462 73.12431) (xy 112.459524 73.185812) + (xy 112.514714 73.215312) (xy 112.518273 73.217214) (xy 112.706868 73.274424) (xy 112.903 73.293741) + (xy 113.099132 73.274424) (xy 113.287727 73.217214) (xy 113.289848 73.21608) (xy 113.291088 73.215821) + (xy 113.293355 73.214883) (xy 113.293532 73.215312) (xy 113.358246 73.201834) (xy 113.422618 73.226169) + (xy 113.430669 73.232196) (xy 113.44183 73.236358) (xy 113.497764 73.278226) (xy 113.522184 73.343689) + (xy 113.5225 73.352541) (xy 113.5225 78.625655) (xy 113.502815 78.692694) (xy 113.450011 78.738449) + (xy 113.380853 78.748393) (xy 113.317297 78.719368) (xy 113.310819 78.713336) (xy 113.279538 78.682055) + (xy 113.279534 78.682052) (xy 113.132811 78.591551) (xy 113.1328 78.591546) (xy 112.969152 78.537319) + (xy 112.868154 78.527) (xy 112.819 78.527) (xy 112.819 80.476999) (xy 112.86814 80.476999) (xy 112.868154 80.476998) + (xy 112.969152 80.46668) (xy 113.1328 80.412453) (xy 113.132811 80.412448) (xy 113.279534 80.321947) + (xy 113.279538 80.321944) (xy 113.310819 80.290664) (xy 113.372142 80.257179) (xy 113.441834 80.262163) + (xy 113.497767 80.304035) (xy 113.522184 80.369499) (xy 113.5225 80.378345) (xy 113.5225 81.29929) + (xy 113.502815 81.366329) (xy 113.486181 81.386971) (xy 113.478878 81.394274) (xy 113.417555 81.427759) + (xy 113.375146 81.426786) (xy 113.374793 81.429474) (xy 113.366736 81.428413) (xy 113.346091 81.425695) + (xy 113.254227 81.4136) (xy 113.25422 81.4136) (xy 113.02878 81.4136) (xy 113.028772 81.4136) (xy 112.941893 81.425038) + (xy 112.916264 81.428413) (xy 112.916262 81.428413) (xy 112.908208 81.429474) (xy 112.907816 81.426499) + (xy 112.875184 81.426499) (xy 112.874792 81.429474) (xy 112.866737 81.428413) (xy 112.866736 81.428413) + (xy 112.837771 81.424599) (xy 112.754227 81.4136) (xy 112.75422 81.4136) (xy 112.52878 81.4136) + (xy 112.528772 81.4136) (xy 112.441893 81.425038) (xy 112.416264 81.428413) (xy 112.416262 81.428413) + (xy 112.408208 81.429474) (xy 112.407816 81.426499) (xy 112.375184 81.426499) (xy 112.374792 81.429474) + (xy 112.366737 81.428413) (xy 112.366736 81.428413) (xy 112.337771 81.424599) (xy 112.254227 81.4136) + (xy 112.25422 81.4136) (xy 112.02878 81.4136) (xy 112.028772 81.4136) (xy 111.941893 81.425038) + (xy 111.916264 81.428413) (xy 111.916262 81.428413) (xy 111.908208 81.429474) (xy 111.907815 81.426495) + (xy 111.875186 81.426486) (xy 111.874793 81.429474) (xy 111.866736 81.428413) (xy 111.846091 81.425695) + (xy 111.754227 81.4136) (xy 111.75422 81.4136) (xy 111.52878 81.4136) (xy 111.528772 81.4136) (xy 111.441893 81.425038) + (xy 111.416264 81.428413) (xy 111.416262 81.428413) (xy 111.408208 81.429474) (xy 111.407816 81.426499) + (xy 111.375184 81.426499) (xy 111.374792 81.429474) (xy 111.366737 81.428413) (xy 111.366736 81.428413) + (xy 111.337771 81.424599) (xy 111.254227 81.4136) (xy 111.25422 81.4136) (xy 111.02878 81.4136) + (xy 111.028772 81.4136) (xy 110.941893 81.425038) (xy 110.916264 81.428413) (xy 110.916262 81.428413) + (xy 110.908208 81.429474) (xy 110.907816 81.426499) (xy 110.875184 81.426499) (xy 110.874792 81.429474) + (xy 110.866737 81.428413) (xy 110.866736 81.428413) (xy 110.837771 81.424599) (xy 110.754227 81.4136) + (xy 110.75422 81.4136) (xy 110.52878 81.4136) (xy 110.528772 81.4136) (xy 110.445562 81.424555) + (xy 110.432185 81.426316) (xy 110.36315 81.415552) (xy 110.310894 81.369172) (xy 110.292 81.303378) + (xy 110.292 80.599201) (xy 110.311685 80.532162) (xy 110.364489 80.486407) (xy 110.428603 80.475843) + (xy 110.444823 80.4775) (xy 111.043176 80.477499) (xy 111.043184 80.477498) (xy 111.043187 80.477498) + (xy 111.09853 80.471844) (xy 111.144253 80.467174) (xy 111.308016 80.412908) (xy 111.45485 80.32234) + (xy 111.569175 80.208014) (xy 111.630494 80.174532) (xy 111.700186 80.179516) (xy 111.744534 80.208017) + (xy 111.858461 80.321944) (xy 111.858465 80.321947) (xy 112.005188 80.412448) (xy 112.005199 80.412453) + (xy 112.168847 80.46668) (xy 112.269851 80.476999) (xy 112.318999 80.476998) (xy 112.319 80.476998) + (xy 112.319 78.527) (xy 112.318999 78.526999) (xy 112.269861 78.527) (xy 112.269843 78.527001) (xy 112.168847 78.537319) + (xy 112.005199 78.591546) (xy 112.005188 78.591551) (xy 111.858465 78.682052) (xy 111.744534 78.795983) + (xy 111.683211 78.829467) (xy 111.613519 78.824483) (xy 111.569172 78.795982) (xy 111.454851 78.681661) + (xy 111.45485 78.68166) (xy 111.333695 78.606931) (xy 111.308018 78.591093) (xy 111.308013 78.591091) + (xy 111.306569 78.590612) (xy 111.144253 78.536826) (xy 111.144251 78.536825) (xy 111.043178 78.5265) + (xy 110.44483 78.5265) (xy 110.444816 78.526501) (xy 110.428594 78.528158) (xy 110.359901 78.515384) + (xy 110.30902 78.4675) (xy 110.292 78.404802) (xy 110.292 74.5734) (xy 110.293768 74.557388) (xy 110.293526 74.557366) + (xy 110.29426 74.549604) (xy 110.292031 74.478663) (xy 110.292 74.476715) (xy 110.292 74.446977) + (xy 110.292 74.446975) (xy 110.291079 74.439688) (xy 110.290622 74.433879) (xy 110.290421 74.42747) + (xy 110.289097 74.385331) (xy 110.283176 74.364953) (xy 110.279231 74.345904) (xy 110.276571 74.324842) + (xy 110.258686 74.279671) (xy 110.256798 74.274154) (xy 110.249589 74.249344) (xy 110.243244 74.227501) + (xy 110.232439 74.209232) (xy 110.223879 74.191758) (xy 110.222851 74.189162) (xy 110.216068 74.172029) + (xy 110.187514 74.132728) (xy 110.18431 74.12785) (xy 110.169293 74.102458) (xy 110.159581 74.086035) + (xy 110.144574 74.071028) (xy 110.131935 74.05623) (xy 110.119461 74.03906) (xy 110.082028 74.008094) + (xy 110.077706 74.00416) (xy 109.779819 73.706272) (xy 109.746334 73.644949) (xy 109.7435 73.618591) + (xy 109.7435 73.298606) (xy 109.763185 73.231567) (xy 109.815989 73.185812) (xy 109.885147 73.175868) + (xy 109.925952 73.189248) (xy 109.949499 73.201834) (xy 109.974714 73.215312) (xy 109.978273 73.217214) + (xy 110.166868 73.274424) (xy 110.363 73.293741) (xy 110.559132 73.274424) (xy 110.747727 73.217214) + (xy 110.921538 73.12431) (xy 110.921544 73.124304) (xy 110.926607 73.120923) (xy 110.927624 73.122445) + (xy 110.984021 73.098484) (xy 111.05289 73.110266) (xy 111.069424 73.120889) (xy 111.069678 73.12051) + (xy 111.074738 73.123891) (xy 111.248465 73.216749) (xy 111.383 73.257559) (xy 111.383 72.537338) + (xy 111.464115 72.600472) (xy 111.574595 72.6384) (xy 111.662005 72.6384) (xy 111.748216 72.624014) + (xy 111.850947 72.568419) (xy 111.883 72.5336) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 107.934039 79.321285) (xy 107.979794 79.374089) (xy 107.991 79.4256) (xy 107.991 79.50207) (xy 107.971315 79.569109) + (xy 107.918511 79.614864) (xy 107.849353 79.624808) (xy 107.808612 79.610041) (xy 107.808351 79.610601) + (xy 107.802045 79.60766) (xy 107.801905 79.60761) (xy 107.801807 79.60755) (xy 107.8018 79.607546) + (xy 107.638151 79.553319) (xy 107.595466 79.548958) (xy 107.530774 79.522562) (xy 107.490623 79.465381) + (xy 107.48776 79.39557) (xy 107.523094 79.335293) (xy 107.585407 79.303688) (xy 107.608069 79.3016) + (xy 107.867 79.3016) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 106.082702 75.380094) (xy 106.08918 75.386126) (xy 108.454681 77.751627) (xy 108.488166 77.81295) + (xy 108.491 77.839308) (xy 108.491 77.8766) (xy 108.471315 77.943639) (xy 108.418511 77.989394) + (xy 108.367 78.0006) (xy 108.353855 78.0006) (xy 108.334455 77.999073) (xy 108.313496 77.995753) + (xy 108.313495 77.995753) (xy 108.289686 77.998003) (xy 108.26513 78.000325) (xy 108.259292 78.0006) + (xy 105.990361 78.0006) (xy 105.923322 77.980915) (xy 105.877567 77.928111) (xy 105.867003 77.863997) + (xy 105.876999 77.766154) (xy 105.877 77.766141) (xy 105.877 77.667) (xy 104.776 77.667) (xy 104.708961 77.647315) + (xy 104.663206 77.594511) (xy 104.652 77.543) (xy 104.652 77.291) (xy 104.671685 77.223961) (xy 104.724489 77.178206) + (xy 104.776 77.167) (xy 105.876998 77.167) (xy 105.876999 77.06786) (xy 105.876998 77.067845) (xy 105.86668 76.966847) + (xy 105.812453 76.803199) (xy 105.812448 76.803188) (xy 105.721947 76.656465) (xy 105.721944 76.656461) + (xy 105.708017 76.642534) (xy 105.674532 76.581211) (xy 105.679516 76.511519) (xy 105.708017 76.467172) + (xy 105.72234 76.45285) (xy 105.812908 76.306016) (xy 105.867174 76.142253) (xy 105.8775 76.041177) + (xy 105.877499 75.473806) (xy 105.897183 75.406768) (xy 105.949987 75.361013) (xy 106.019146 75.351069) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 136.192539 70.770185) (xy 136.238294 70.822989) (xy 136.2495 70.8745) (xy 136.2495 124.1255) + (xy 136.229815 124.192539) (xy 136.177011 124.238294) (xy 136.1255 124.2495) (xy 126.410182 124.2495) + (xy 126.343143 124.229815) (xy 126.297388 124.177011) (xy 126.287444 124.107853) (xy 126.316469 124.044297) + (xy 126.322501 124.037819) (xy 128.185501 122.174818) (xy 128.246824 122.141333) (xy 128.273182 122.138499) + (xy 129.224002 122.138499) (xy 129.224008 122.138499) (xy 129.326797 122.127999) (xy 129.493334 122.072814) + (xy 129.642656 121.980712) (xy 129.766712 121.856656) (xy 129.858814 121.707334) (xy 129.913999 121.540797) + (xy 129.9245 121.438009) (xy 129.924499 120.138) (xy 130.934001 120.138) (xy 130.934001 121.437986) + (xy 130.944494 121.540697) (xy 130.999641 121.707119) (xy 130.999643 121.707124) (xy 131.091684 121.856345) + (xy 131.215654 121.980315) (xy 131.364875 122.072356) (xy 131.36488 122.072358) (xy 131.531302 122.127505) + (xy 131.531309 122.127506) (xy 131.634019 122.137999) (xy 132.083999 122.137999) (xy 132.083999 122.137998) + (xy 132.084 120.138) (xy 132.584 120.138) (xy 132.584 122.137999) (xy 133.033972 122.137999) (xy 133.033986 122.137998) + (xy 133.136697 122.127505) (xy 133.303119 122.072358) (xy 133.303124 122.072356) (xy 133.452345 121.980315) + (xy 133.576315 121.856345) (xy 133.668356 121.707124) (xy 133.668358 121.707119) (xy 133.723505 121.540697) + (xy 133.723506 121.54069) (xy 133.733999 121.437986) (xy 133.734 121.437973) (xy 133.734 120.138) + (xy 132.584 120.138) (xy 132.084 120.138) (xy 130.934001 120.138) (xy 129.924499 120.138) (xy 129.924499 119.638) + (xy 130.934 119.638) (xy 132.084 119.638) (xy 132.084 117.638) (xy 132.584 117.638) (xy 132.584 119.638) + (xy 133.733999 119.638) (xy 133.733999 118.338028) (xy 133.733998 118.338013) (xy 133.723505 118.235302) + (xy 133.668358 118.06888) (xy 133.668356 118.068875) (xy 133.576315 117.919654) (xy 133.452345 117.795684) + (xy 133.303124 117.703643) (xy 133.303119 117.703641) (xy 133.136697 117.648494) (xy 133.13669 117.648493) + (xy 133.033986 117.638) (xy 132.584 117.638) (xy 132.084 117.638) (xy 131.634028 117.638) (xy 131.634012 117.638001) + (xy 131.531302 117.648494) (xy 131.36488 117.703641) (xy 131.364875 117.703643) (xy 131.215654 117.795684) + (xy 131.091684 117.919654) (xy 130.999643 118.068875) (xy 130.999641 118.06888) (xy 130.944494 118.235302) + (xy 130.944493 118.235309) (xy 130.934 118.338013) (xy 130.934 119.638) (xy 129.924499 119.638) + (xy 129.924499 118.337992) (xy 129.923859 118.331731) (xy 129.913999 118.235203) (xy 129.913998 118.2352) + (xy 129.899295 118.19083) (xy 129.858814 118.068666) (xy 129.766712 117.919344) (xy 129.642656 117.795288) + (xy 129.527809 117.72445) (xy 129.493336 117.703187) (xy 129.493331 117.703185) (xy 129.491862 117.702698) + (xy 129.326797 117.648001) (xy 129.326795 117.648) (xy 129.22401 117.6375) (xy 127.823998 117.6375) + (xy 127.823981 117.637501) (xy 127.721203 117.648) (xy 127.7212 117.648001) (xy 127.554668 117.703185) + (xy 127.554663 117.703187) (xy 127.405342 117.795289) (xy 127.281289 117.919342) (xy 127.189187 118.068663) + (xy 127.189185 118.068668) (xy 127.185655 118.079322) (xy 127.134001 118.235203) (xy 127.134001 118.235204) + (xy 127.134 118.235204) (xy 127.1235 118.337983) (xy 127.123499 118.337996) (xy 127.1235 120.355616) + (xy 127.103815 120.422655) (xy 127.08718 120.443297) (xy 125.579706 121.950774) (xy 125.097899 122.432581) + (xy 125.036576 122.466066) (xy 125.010218 122.4689) (xy 117.712288 122.4689) (xy 117.645249 122.449215) + (xy 117.599494 122.396411) (xy 117.58955 122.327253) (xy 117.618575 122.263697) (xy 117.677353 122.225923) + (xy 117.677353 122.225922) (xy 117.682688 122.224356) (xy 117.745857 122.195506) (xy 117.749883 122.193839) + (xy 117.814961 122.169567) (xy 117.875893 122.136294) (xy 117.879836 122.134321) (xy 117.879847 122.134316) + (xy 117.942987 122.105482) (xy 118.001415 122.067931) (xy 118.00518 122.065698) (xy 118.066115 122.032426) + (xy 118.121682 121.990827) (xy 118.125309 121.988309) (xy 118.183717 121.950774) (xy 118.236188 121.905306) + (xy 118.239623 121.902539) (xy 118.260525 121.886892) (xy 118.295195 121.860939) (xy 118.497539 121.658595) + (xy 118.556098 121.600036) (xy 118.556111 121.600021) (xy 120.666315 119.489818) (xy 120.727639 119.456333) + (xy 120.753997 119.453499) (xy 121.021871 119.453499) (xy 121.021872 119.453499) (xy 121.081483 119.447091) + (xy 121.216331 119.396796) (xy 121.331546 119.310546) (xy 121.417796 119.195331) (xy 121.468091 119.060483) + (xy 121.4745 119.000873) (xy 121.474499 118.553094) (xy 121.485705 118.501583) (xy 121.494858 118.481541) + (xy 121.553156 118.353888) (xy 121.633776 118.079322) (xy 121.635278 118.06888) (xy 121.641074 118.028559) + (xy 121.6745 117.796079) (xy 121.6745 117.509921) (xy 121.633776 117.226677) (xy 121.553156 116.952111) + (xy 121.553155 116.952109) (xy 121.553154 116.952105) (xy 121.485705 116.804413) (xy 121.474499 116.752902) + (xy 121.474499 116.305129) (xy 121.474498 116.305123) (xy 121.474497 116.305116) (xy 121.468091 116.245517) + (xy 121.417796 116.110669) (xy 121.417795 116.110668) (xy 121.417793 116.110664) (xy 121.331547 115.995455) + (xy 121.331544 115.995452) (xy 121.216335 115.909206) (xy 121.216328 115.909202) (xy 121.081482 115.858908) + (xy 121.081483 115.858908) (xy 121.021883 115.852501) (xy 121.021881 115.8525) (xy 121.021873 115.8525) + (xy 121.021865 115.8525) (xy 120.574095 115.8525) (xy 120.522585 115.841294) (xy 120.374889 115.773844) + (xy 120.246241 115.736069) (xy 120.100328 115.693225) (xy 120.100318 115.693223) (xy 119.959751 115.673013) + (xy 119.817079 115.6525) (xy 119.530921 115.6525) (xy 119.504961 115.656232) (xy 119.247682 115.693222) + (xy 119.247672 115.693225) (xy 118.973109 115.773844) (xy 118.825411 115.841295) (xy 118.773901 115.8525) + (xy 118.326129 115.8525) (xy 118.326123 115.852501) (xy 118.266516 115.858908) (xy 118.131671 115.909202) + (xy 118.131664 115.909206) (xy 118.016455 115.995452) (xy 118.016452 115.995455) (xy 117.930206 116.110664) + (xy 117.930202 116.110671) (xy 117.879908 116.245517) (xy 117.873501 116.305116) (xy 117.873501 116.305123) + (xy 117.8735 116.305135) (xy 117.8735 116.573003) (xy 117.853815 116.640042) (xy 117.837181 116.660684) + (xy 116.189485 118.308381) (xy 116.128162 118.341866) (xy 116.101804 118.3447) (xy 106.848796 118.3447) + (xy 106.781757 118.325015) (xy 106.761115 118.308381) (xy 105.857915 117.405181) (xy 105.82443 117.343858) + (xy 105.829414 117.274166) (xy 105.871286 117.218233) (xy 105.93675 117.193816) (xy 105.945596 117.1935) + (xy 106.529007 117.1935) (xy 106.529012 117.1935) (xy 106.6318 117.182999) (xy 106.798336 117.127815) + (xy 106.947657 117.035712) (xy 107.071712 116.911657) (xy 107.163815 116.762336) (xy 107.218999 116.5958) + (xy 107.2295 116.493012) (xy 107.2295 116.323) (xy 108.229001 116.323) (xy 108.229001 116.472986) + (xy 108.239494 116.575697) (xy 108.294641 116.742119) (xy 108.294643 116.742124) (xy 108.386684 116.891345) + (xy 108.510654 117.015315) (xy 108.659875 117.107356) (xy 108.65988 117.107358) (xy 108.826302 117.162505) + (xy 108.826309 117.162506) (xy 108.929019 117.172999) (xy 109.578999 117.172999) (xy 109.579 117.172998) + (xy 109.579 116.323) (xy 110.079 116.323) (xy 110.079 117.172999) (xy 110.728972 117.172999) (xy 110.728986 117.172998) + (xy 110.831697 117.162505) (xy 110.998119 117.107358) (xy 110.998124 117.107356) (xy 111.147345 117.015315) + (xy 111.271315 116.891345) (xy 111.363356 116.742124) (xy 111.363358 116.742119) (xy 111.418505 116.575697) + (xy 111.418506 116.57569) (xy 111.428999 116.472986) (xy 111.429 116.472973) (xy 111.429 116.323) + (xy 110.079 116.323) (xy 109.579 116.323) (xy 108.229001 116.323) (xy 107.2295 116.323) (xy 107.2295 114.5675) + (xy 107.249185 114.500461) (xy 107.301989 114.454706) (xy 107.3535 114.4435) (xy 108.213362 114.4435) + (xy 108.280401 114.463185) (xy 108.318899 114.502401) (xy 108.386288 114.611656) (xy 108.510344 114.735712) + (xy 108.617524 114.801821) (xy 108.659569 114.827754) (xy 108.706294 114.879702) (xy 108.717517 114.948664) + (xy 108.689674 115.012747) (xy 108.65957 115.038831) (xy 108.510659 115.13068) (xy 108.510655 115.130683) + (xy 108.386684 115.254654) (xy 108.294643 115.403875) (xy 108.294641 115.40388) (xy 108.239494 115.570302) + (xy 108.239493 115.570309) (xy 108.229 115.673013) (xy 108.229 115.823) (xy 111.428999 115.823) + (xy 111.428999 115.673028) (xy 111.428998 115.673013) (xy 111.418505 115.570302) (xy 111.363358 115.40388) + (xy 111.363356 115.403875) (xy 111.271315 115.254654) (xy 111.147345 115.130684) (xy 111.146885 115.1304) + (xy 113.096401 115.1304) (xy 113.096401 115.179554) (xy 113.106719 115.280552) (xy 113.160946 115.4442) + (xy 113.160951 115.444211) (xy 113.251452 115.590934) (xy 113.251455 115.590938) (xy 113.373361 115.712844) + (xy 113.373365 115.712847) (xy 113.520088 115.803348) (xy 113.520099 115.803353) (xy 113.683747 115.85758) + (xy 113.784752 115.867899) (xy 113.8214 115.867899) (xy 113.8214 115.1304) (xy 114.3214 115.1304) + (xy 114.3214 115.867899) (xy 114.35804 115.867899) (xy 114.358054 115.867898) (xy 114.459052 115.85758) + (xy 114.6227 115.803353) (xy 114.622711 115.803348) (xy 114.769434 115.712847) (xy 114.769438 115.712844) + (xy 114.891344 115.590938) (xy 114.891347 115.590934) (xy 114.981848 115.444211) (xy 114.981853 115.4442) + (xy 115.03608 115.280552) (xy 115.046399 115.179554) (xy 115.0464 115.179541) (xy 115.0464 115.1304) + (xy 114.3214 115.1304) (xy 113.8214 115.1304) (xy 113.096401 115.1304) (xy 111.146885 115.1304) + (xy 110.998429 115.038832) (xy 110.951705 114.986884) (xy 110.940482 114.917921) (xy 110.968326 114.853839) + (xy 110.998426 114.827756) (xy 111.147656 114.735712) (xy 111.271712 114.611656) (xy 111.363814 114.462334) + (xy 111.418999 114.295797) (xy 111.4295 114.193009) (xy 111.429499 113.392992) (xy 111.418999 113.290203) + (xy 111.363814 113.123666) (xy 111.271712 112.974344) (xy 111.147656 112.850288) (xy 111.04882 112.789326) + (xy 110.998905 112.758538) (xy 110.952181 112.70659) (xy 110.940958 112.637627) (xy 110.968802 112.573545) + (xy 110.998901 112.547464) (xy 111.147656 112.455712) (xy 111.271712 112.331656) (xy 111.300306 112.285297) + (xy 111.35225 112.238575) (xy 111.421212 112.227351) (xy 111.485295 112.255193) (xy 111.493524 112.262714) + (xy 111.55715 112.32634) (xy 111.703984 112.416908) (xy 111.867747 112.471174) (xy 111.968823 112.4815) + (xy 112.567176 112.481499) (xy 112.567184 112.481498) (xy 112.567187 112.481498) (xy 112.62253 112.475844) + (xy 112.668253 112.471174) (xy 112.832016 112.416908) (xy 112.97885 112.32634) (xy 112.978862 112.326327) + (xy 112.980489 112.325042) (xy 112.981832 112.324499) (xy 112.984997 112.322548) (xy 112.98533 112.323088) + (xy 113.045281 112.298894) (xy 113.113925 112.311926) (xy 113.164626 112.36) (xy 113.181288 112.427854) + (xy 113.162957 112.487386) (xy 113.160496 112.491375) (xy 113.160491 112.491384) (xy 113.160492 112.491384) + (xy 113.106226 112.655147) (xy 113.106226 112.655148) (xy 113.106225 112.655148) (xy 113.0959 112.756215) + (xy 113.0959 113.354569) (xy 113.095901 113.354587) (xy 113.106225 113.455652) (xy 113.160492 113.619415) + (xy 113.160493 113.619418) (xy 113.194794 113.675029) (xy 113.238956 113.746627) (xy 113.251061 113.766251) + (xy 113.365382 113.880572) (xy 113.398867 113.941895) (xy 113.393883 114.011587) (xy 113.365383 114.055934) + (xy 113.251452 114.169865) (xy 113.160951 114.316588) (xy 113.160946 114.316599) (xy 113.106719 114.480247) + (xy 113.0964 114.581245) (xy 113.0964 114.6304) (xy 115.046399 114.6304) (xy 115.046399 114.58126) + (xy 115.046398 114.581245) (xy 115.03608 114.480247) (xy 114.981853 114.316599) (xy 114.981848 114.316588) + (xy 114.891347 114.169865) (xy 114.891344 114.169861) (xy 114.777417 114.055934) (xy 114.743932 113.994611) + (xy 114.748916 113.924919) (xy 114.777413 113.880576) (xy 114.89174 113.76625) (xy 114.982308 113.619416) + (xy 115.036574 113.455653) (xy 115.0469 113.354577) (xy 115.046899 112.756224) (xy 115.036574 112.655147) + (xy 114.982308 112.491384) (xy 114.982304 112.491378) (xy 114.982303 112.491375) (xy 114.902735 112.362376) + (xy 114.884294 112.294984) (xy 114.905216 112.22832) (xy 114.920596 112.209594) (xy 114.920893 112.209296) + (xy 114.92584 112.20435) (xy 115.016408 112.057516) (xy 115.070674 111.893753) (xy 115.081 111.792677) + (xy 115.080999 111.219324) (xy 115.070674 111.118247) (xy 115.016408 110.954484) (xy 114.92584 110.80765) + (xy 114.80385 110.68566) (xy 114.803849 110.685659) (xy 114.730002 110.640109) (xy 114.683278 110.58816) + (xy 114.6711 110.534571) (xy 114.6711 109.636921) (xy 114.690785 109.569882) (xy 114.702951 109.553948) + (xy 114.753133 109.498216) (xy 114.847779 109.334284) (xy 114.906274 109.154256) (xy 114.92606 108.966) + (xy 114.906274 108.777744) (xy 114.847779 108.597716) (xy 114.753133 108.433784) (xy 114.626471 108.293112) + (xy 114.62647 108.293111) (xy 114.473334 108.181851) (xy 114.473329 108.181848) (xy 114.300407 108.104857) + (xy 114.300402 108.104855) (xy 114.154601 108.073865) (xy 114.115246 108.0655) (xy 113.925954 108.0655) + (xy 113.893497 108.072398) (xy 113.740797 108.104855) (xy 113.740792 108.104857) (xy 113.56787 108.181848) + (xy 113.567864 108.181852) (xy 113.562429 108.185801) (xy 113.496621 108.209277) (xy 113.428568 108.193448) + (xy 113.379876 108.14334) (xy 113.366004 108.074861) (xy 113.369344 108.055038) (xy 113.397505 107.943833) + (xy 113.397507 107.943824) (xy 113.397508 107.943821) (xy 113.397509 107.943812) (xy 113.418043 107.696005) + (xy 116.350357 107.696005) (xy 116.37089 107.943812) (xy 116.370892 107.943824) (xy 116.431936 108.184881) + (xy 116.531826 108.412606) (xy 116.667833 108.620782) (xy 116.681229 108.635334) (xy 116.836256 108.803738) + (xy 117.032491 108.956474) (xy 117.25119 109.074828) (xy 117.420074 109.132806) (xy 117.482555 109.154256) + (xy 117.486386 109.155571) (xy 117.731665 109.1965) (xy 117.980335 109.1965) (xy 118.225614 109.155571) + (xy 118.46081 109.074828) (xy 118.679509 108.956474) (xy 118.875744 108.803738) (xy 119.044164 108.620785) + (xy 119.180173 108.412607) (xy 119.280063 108.184881) (xy 119.341108 107.943821) (xy 119.341109 107.943812) + (xy 119.361643 107.696005) (xy 119.361643 107.695994) (xy 119.341109 107.448187) (xy 119.341107 107.448175) + (xy 119.280063 107.207118) (xy 119.180173 106.979393) (xy 119.044166 106.771217) (xy 118.960927 106.680796) + (xy 118.875744 106.588262) (xy 118.679509 106.435526) (xy 118.679507 106.435525) (xy 118.679506 106.435524) + (xy 118.460811 106.317172) (xy 118.460802 106.317169) (xy 118.225616 106.236429) (xy 117.980335 106.1955) + (xy 117.731665 106.1955) (xy 117.486383 106.236429) (xy 117.251197 106.317169) (xy 117.251188 106.317172) + (xy 117.032493 106.435524) (xy 116.836257 106.588261) (xy 116.667833 106.771217) (xy 116.531826 106.979393) + (xy 116.431936 107.207118) (xy 116.370892 107.448175) (xy 116.37089 107.448187) (xy 116.350357 107.695994) + (xy 116.350357 107.696005) (xy 113.418043 107.696005) (xy 113.418043 107.695994) (xy 113.397509 107.448187) + (xy 113.397507 107.448175) (xy 113.336463 107.207118) (xy 113.236573 106.979393) (xy 113.100566 106.771217) + (xy 113.017327 106.680796) (xy 112.932144 106.588262) (xy 112.735909 106.435526) (xy 112.735907 106.435525) + (xy 112.735906 106.435524) (xy 112.517211 106.317172) (xy 112.517202 106.317169) (xy 112.282016 106.236429) + (xy 112.036735 106.1955) (xy 111.788065 106.1955) (xy 111.542783 106.236429) (xy 111.307597 106.317169) + (xy 111.307588 106.317172) (xy 111.088893 106.435524) (xy 110.892657 106.588261) (xy 110.724233 106.771217) + (xy 110.588226 106.979393) (xy 110.488336 107.207118) (xy 110.427292 107.448175) (xy 110.42729 107.448187) + (xy 110.406757 107.695994) (xy 110.406757 107.696005) (xy 110.42729 107.943812) (xy 110.427292 107.943824) + (xy 110.488336 108.184881) (xy 110.588226 108.412606) (xy 110.724233 108.620782) (xy 110.737629 108.635334) + (xy 110.892656 108.803738) (xy 111.088891 108.956474) (xy 111.30759 109.074828) (xy 111.476474 109.132806) + (xy 111.538955 109.154256) (xy 111.542786 109.155571) (xy 111.788065 109.1965) (xy 112.036735 109.1965) + (xy 112.282014 109.155571) (xy 112.51721 109.074828) (xy 112.735909 108.956474) (xy 112.920078 108.813129) + (xy 112.985071 108.787487) (xy 113.05361 108.801053) (xy 113.103935 108.849522) (xy 113.120067 108.917504) + (xy 113.11956 108.923943) (xy 113.11514 108.966) (xy 113.134926 109.154256) (xy 113.134927 109.154259) + (xy 113.193418 109.334277) (xy 113.193421 109.334284) (xy 113.288066 109.498215) (xy 113.301208 109.51281) + (xy 113.332891 109.547998) (xy 113.338249 109.553948) (xy 113.36848 109.61694) (xy 113.3701 109.636921) + (xy 113.3701 110.646348) (xy 113.350415 110.713387) (xy 113.333781 110.734029) (xy 113.268181 110.799629) + (xy 113.206858 110.833114) (xy 113.137166 110.82813) (xy 113.092819 110.799629) (xy 112.978851 110.685661) + (xy 112.97885 110.68566) (xy 112.867658 110.617076) (xy 112.832018 110.595093) (xy 112.832013 110.595091) + (xy 112.830569 110.594612) (xy 112.668253 110.540826) (xy 112.668251 110.540825) (xy 112.567178 110.5305) + (xy 111.96883 110.5305) (xy 111.968812 110.530501) (xy 111.867747 110.540825) (xy 111.703984 110.595092) + (xy 111.703981 110.595093) (xy 111.557151 110.685659) (xy 111.488183 110.754627) (xy 111.426859 110.788111) + (xy 111.357168 110.783126) (xy 111.301234 110.741255) (xy 111.294972 110.732054) (xy 111.271712 110.694344) + (xy 111.147656 110.570288) (xy 111.017259 110.489859) (xy 110.998336 110.478187) (xy 110.998331 110.478185) + (xy 110.996862 110.477698) (xy 110.831797 110.423001) (xy 110.831795 110.423) (xy 110.72901 110.4125) + (xy 108.928998 110.4125) (xy 108.928981 110.412501) (xy 108.826203 110.423) (xy 108.8262 110.423001) + (xy 108.659668 110.478185) (xy 108.659663 110.478187) (xy 108.510342 110.570289) (xy 108.386289 110.694342) + (xy 108.294187 110.843663) (xy 108.294185 110.843668) (xy 108.266349 110.92767) (xy 108.239001 111.010203) + (xy 108.239001 111.010204) (xy 108.239 111.010204) (xy 108.2285 111.112983) (xy 108.2285 111.913001) + (xy 108.228501 111.913019) (xy 108.239 112.015796) (xy 108.239001 112.015799) (xy 108.294185 112.182331) + (xy 108.294187 112.182336) (xy 108.32255 112.22832) (xy 108.386288 112.331656) (xy 108.510344 112.455712) + (xy 108.659092 112.54746) (xy 108.659094 112.547461) (xy 108.705818 112.599409) (xy 108.717041 112.668372) + (xy 108.689197 112.732454) (xy 108.659094 112.758539) (xy 108.510342 112.850289) (xy 108.386289 112.974342) + (xy 108.386287 112.974344) (xy 108.386288 112.974344) (xy 108.327281 113.070011) (xy 108.318901 113.083597) + (xy 108.266953 113.130321) (xy 108.213362 113.1425) (xy 107.3535 113.1425) (xy 107.286461 113.122815) + (xy 107.240706 113.070011) (xy 107.2295 113.0185) (xy 107.2295 111.092993) (xy 107.229499 111.09298) + (xy 107.22273 111.026725) (xy 107.218999 110.9902) (xy 107.163815 110.823664) (xy 107.163811 110.823658) + (xy 107.16381 110.823655) (xy 107.071714 110.674346) (xy 107.071711 110.674342) (xy 106.947657 110.550288) + (xy 106.947653 110.550285) (xy 106.798344 110.458189) (xy 106.798338 110.458186) (xy 106.798336 110.458185) + (xy 106.692154 110.423) (xy 106.631801 110.403001) (xy 106.529019 110.3925) (xy 106.529012 110.3925) + (xy 106.3815 110.3925) (xy 106.314461 110.372815) (xy 106.268706 110.320011) (xy 106.2575 110.2685) + (xy 106.2575 109.7025) (xy 106.277185 109.635461) (xy 106.329989 109.589706) (xy 106.3815 109.5785) + (xy 106.582007 109.5785) (xy 106.582012 109.5785) (xy 106.6848 109.567999) (xy 106.851336 109.512815) + (xy 107.000657 109.420712) (xy 107.124712 109.296657) (xy 107.216815 109.147336) (xy 107.271999 108.9808) + (xy 107.2825 108.878012) (xy 107.2825 103.477988) (xy 107.271999 103.3752) (xy 107.218928 103.215043) + (xy 107.216527 103.145219) (xy 107.252259 103.085177) (xy 107.314779 103.053984) (xy 107.384238 103.061544) + (xy 107.424316 103.088362) (xy 107.837181 103.501227) (xy 107.870666 103.56255) (xy 107.8735 103.588907) + (xy 107.8735 103.766) (xy 107.873501 103.766019) (xy 107.884 103.868796) (xy 107.884001 103.868799) + (xy 107.920126 103.977815) (xy 107.939186 104.035334) (xy 108.031288 104.184656) (xy 108.155344 104.308712) + (xy 108.304666 104.400814) (xy 108.471203 104.455999) (xy 108.573991 104.4665) (xy 109.0805 104.466499) + (xy 109.147539 104.486183) (xy 109.193294 104.538987) (xy 109.2045 104.590499) (xy 109.2045 105.043878) + (xy 109.184815 105.110917) (xy 109.17265 105.12685) (xy 109.122466 105.182585) (xy 109.027821 105.346515) + (xy 109.027818 105.346522) (xy 108.988154 105.468597) (xy 108.969326 105.526544) (xy 108.94954 105.7148) + (xy 108.969326 105.903056) (xy 108.969327 105.903059) (xy 109.027818 106.083077) (xy 109.027821 106.083084) + (xy 109.122467 106.247016) (xy 109.196049 106.328737) (xy 109.249129 106.387688) (xy 109.402265 106.498948) + (xy 109.40227 106.498951) (xy 109.575192 106.575942) (xy 109.575197 106.575944) (xy 109.760354 106.6153) + (xy 109.760355 106.6153) (xy 109.949644 106.6153) (xy 109.949646 106.6153) (xy 110.134803 106.575944) + (xy 110.30773 106.498951) (xy 110.460871 106.387688) (xy 110.587533 106.247016) (xy 110.682179 106.083084) + (xy 110.740674 105.903056) (xy 110.76046 105.7148) (xy 110.740674 105.526544) (xy 110.682179 105.346516) + (xy 110.587533 105.182584) (xy 110.537348 105.126848) (xy 110.507119 105.063858) (xy 110.505499 105.043888) + (xy 110.505499 104.536027) (xy 110.525184 104.468989) (xy 110.577988 104.423234) (xy 110.590486 104.418325) + (xy 110.643334 104.400814) (xy 110.792656 104.308712) (xy 110.916712 104.184656) (xy 111.008814 104.035334) + (xy 111.063999 103.868797) (xy 111.0745 103.766009) (xy 111.074499 102.965992) (xy 111.063999 102.863203) + (xy 111.008814 102.696666) (xy 110.916712 102.547344) (xy 110.792656 102.423288) (xy 110.643905 102.331538) + (xy 110.597181 102.27959) (xy 110.585958 102.210627) (xy 110.613802 102.146545) (xy 110.643901 102.120464) + (xy 110.792656 102.028712) (xy 110.916712 101.904656) (xy 110.984099 101.795402) (xy 111.036047 101.748679) + (xy 111.089638 101.7365) (xy 111.9495 101.7365) (xy 112.016539 101.756185) (xy 112.062294 101.808989) + (xy 112.0735 101.8605) (xy 112.0735 103.786019) (xy 112.084001 103.888801) (xy 112.139184 104.055333) + (xy 112.139189 104.055344) (xy 112.231285 104.204653) (xy 112.231288 104.204657) (xy 112.355342 104.328711) + (xy 112.355346 104.328714) (xy 112.504655 104.42081) (xy 112.504658 104.420811) (xy 112.504664 104.420815) + (xy 112.6712 104.475999) (xy 112.773988 104.4865) (xy 112.773991 104.4865) (xy 112.773993 104.4865) + (xy 118.774007 104.4865) (xy 118.774012 104.4865) (xy 118.8768 104.475999) (xy 119.043336 104.420815) + (xy 119.192657 104.328712) (xy 119.316712 104.204657) (xy 119.322802 104.194782) (xy 119.374748 104.148059) + (xy 119.44371 104.136835) (xy 119.507793 104.164677) (xy 119.53388 104.194783) (xy 119.544287 104.211655) + (xy 119.544288 104.211657) (xy 119.668342 104.335711) (xy 119.668346 104.335714) (xy 119.817655 104.42781) + (xy 119.817658 104.427811) (xy 119.817664 104.427815) (xy 119.9842 104.482999) (xy 120.086988 104.4935) + (xy 120.086991 104.4935) (xy 122.5495 104.4935) (xy 122.616539 104.513185) (xy 122.662294 104.565989) + (xy 122.6735 104.6175) (xy 122.673499 117.724448) (xy 122.6735 117.72445) (xy 122.688804 117.938433) + (xy 122.749628 118.218037) (xy 122.74963 118.218043) (xy 122.749631 118.218046) (xy 122.84791 118.481541) + (xy 122.849635 118.486166) (xy 122.98677 118.737309) (xy 122.986775 118.737317) (xy 123.158254 118.966387) + (xy 123.15827 118.966405) (xy 123.360594 119.168729) (xy 123.360612 119.168745) (xy 123.589682 119.340224) + (xy 123.58969 119.340229) (xy 123.840833 119.477364) (xy 123.840832 119.477364) (xy 123.840836 119.477365) + (xy 123.840839 119.477367) (xy 124.108954 119.577369) (xy 124.10896 119.57737) (xy 124.108962 119.577371) + (xy 124.388566 119.638195) (xy 124.388568 119.638195) (xy 124.388572 119.638196) (xy 124.64222 119.656337) + (xy 124.673999 119.65861) (xy 124.674 119.65861) (xy 124.674001 119.65861) (xy 124.702595 119.656564) + (xy 124.959428 119.638196) (xy 125.069208 119.614315) (xy 125.239037 119.577371) (xy 125.239037 119.57737) + (xy 125.239046 119.577369) (xy 125.507161 119.477367) (xy 125.758315 119.340226) (xy 125.987395 119.168739) + (xy 126.189739 118.966395) (xy 126.361226 118.737315) (xy 126.498367 118.486161) (xy 126.598369 118.218046) + (xy 126.604289 118.190833) (xy 126.659195 117.938433) (xy 126.659195 117.938432) (xy 126.659196 117.938428) + (xy 126.6745 117.724448) (xy 126.6745 116.0125) (xy 126.694185 115.945461) (xy 126.746989 115.899706) + (xy 126.7985 115.8885) (xy 126.999501 115.8885) (xy 127.06654 115.908185) (xy 127.112295 115.960989) + (xy 127.123501 116.0125) (xy 127.123501 116.438018) (xy 127.134 116.540796) (xy 127.134001 116.540799) + (xy 127.189185 116.707331) (xy 127.189187 116.707336) (xy 127.215691 116.750306) (xy 127.281288 116.856656) + (xy 127.405344 116.980712) (xy 127.554666 117.072814) (xy 127.721203 117.127999) (xy 127.823991 117.1385) + (xy 129.224008 117.138499) (xy 129.326797 117.127999) (xy 129.493334 117.072814) (xy 129.642656 116.980712) + (xy 129.766712 116.856656) (xy 129.858814 116.707334) (xy 129.913999 116.540797) (xy 129.9245 116.438009) + (xy 129.9245 116.0125) (xy 129.944185 115.945461) (xy 129.996989 115.899706) (xy 130.0485 115.8885) + (xy 130.809501 115.8885) (xy 130.87654 115.908185) (xy 130.922295 115.960989) (xy 130.933501 116.0125) + (xy 130.933501 116.438018) (xy 130.944 116.540796) (xy 130.944001 116.540799) (xy 130.999185 116.707331) + (xy 130.999187 116.707336) (xy 131.025691 116.750306) (xy 131.091288 116.856656) (xy 131.215344 116.980712) + (xy 131.364666 117.072814) (xy 131.531203 117.127999) (xy 131.633991 117.1385) (xy 133.034008 117.138499) + (xy 133.136797 117.127999) (xy 133.303334 117.072814) (xy 133.452656 116.980712) (xy 133.576712 116.856656) + (xy 133.668814 116.707334) (xy 133.723999 116.540797) (xy 133.7345 116.438009) (xy 133.734499 113.337992) + (xy 133.733722 113.33039) (xy 133.723999 113.235203) (xy 133.723998 113.2352) (xy 133.704258 113.17563) + (xy 133.668814 113.068666) (xy 133.576712 112.919344) (xy 133.452656 112.795288) (xy 133.303334 112.703186) + (xy 133.136797 112.648001) (xy 133.136795 112.648) (xy 133.03401 112.6375) (xy 131.633998 112.6375) + (xy 131.633981 112.637501) (xy 131.531203 112.648) (xy 131.5312 112.648001) (xy 131.364668 112.703185) + (xy 131.364663 112.703187) (xy 131.215342 112.795289) (xy 131.091289 112.919342) (xy 130.999187 113.068663) + (xy 130.999185 113.068668) (xy 130.97472 113.1425) (xy 130.944001 113.235203) (xy 130.944001 113.235204) + (xy 130.944 113.235204) (xy 130.9335 113.337983) (xy 130.9335 113.7635) (xy 130.913815 113.830539) + (xy 130.861011 113.876294) (xy 130.8095 113.8875) (xy 130.048499 113.8875) (xy 129.98146 113.867815) + (xy 129.935705 113.815011) (xy 129.924499 113.7635) (xy 129.924499 113.337998) (xy 129.924498 113.337981) + (xy 129.913999 113.235203) (xy 129.913998 113.2352) (xy 129.894258 113.17563) (xy 129.858814 113.068666) + (xy 129.766712 112.919344) (xy 129.642656 112.795288) (xy 129.493334 112.703186) (xy 129.326797 112.648001) + (xy 129.326795 112.648) (xy 129.22401 112.6375) (xy 127.823998 112.6375) (xy 127.823981 112.637501) + (xy 127.721203 112.648) (xy 127.7212 112.648001) (xy 127.554668 112.703185) (xy 127.554663 112.703187) + (xy 127.405342 112.795289) (xy 127.281289 112.919342) (xy 127.189187 113.068663) (xy 127.189185 113.068668) + (xy 127.16472 113.1425) (xy 127.134001 113.235203) (xy 127.134001 113.235204) (xy 127.134 113.235204) + (xy 127.1235 113.337983) (xy 127.1235 113.7635) (xy 127.103815 113.830539) (xy 127.051011 113.876294) + (xy 126.9995 113.8875) (xy 126.7985 113.8875) (xy 126.731461 113.867815) (xy 126.685706 113.815011) + (xy 126.6745 113.7635) (xy 126.6745 109.913401) (xy 131.758746 109.913401) (xy 131.768745 110.123327) + (xy 131.818296 110.327578) (xy 131.818298 110.327582) (xy 131.905598 110.518743) (xy 131.905601 110.518748) + (xy 131.905602 110.51875) (xy 131.905604 110.518753) (xy 132.027514 110.689952) (xy 132.027515 110.689953) + (xy 132.02752 110.689959) (xy 132.17962 110.834985) (xy 132.274578 110.896011) (xy 132.356428 110.948613) + (xy 132.551543 111.026725) (xy 132.654729 111.046612) (xy 132.757914 111.0665) (xy 132.757915 111.0665) + (xy 133.465419 111.0665) (xy 133.465425 111.0665) (xy 133.622218 111.051528) (xy 133.823875 110.992316) + (xy 134.010682 110.896011) (xy 134.175886 110.766092) (xy 134.313519 110.607256) (xy 134.315527 110.603779) + (xy 134.418601 110.425249) (xy 134.4186 110.425249) (xy 134.418604 110.425244) (xy 134.487344 110.226633) + (xy 134.517254 110.018602) (xy 134.507254 109.80867) (xy 134.457704 109.604424) (xy 134.454855 109.598185) + (xy 134.370401 109.413256) (xy 134.370398 109.413251) (xy 134.370397 109.41325) (xy 134.370396 109.413247) + (xy 134.248486 109.242048) (xy 134.202248 109.19796) (xy 134.145917 109.144249) (xy 134.110982 109.08374) + (xy 134.114307 109.01395) (xy 134.154835 108.957036) (xy 134.166384 108.948971) (xy 134.231656 108.908712) + (xy 134.355712 108.784656) (xy 134.447814 108.635334) (xy 134.502999 108.468797) (xy 134.5135 108.366009) + (xy 134.513499 107.565992) (xy 134.508319 107.515287) (xy 134.502999 107.463203) (xy 134.502998 107.4632) + (xy 134.498023 107.448187) (xy 134.447814 107.296666) (xy 134.355712 107.147344) (xy 134.231656 107.023288) + (xy 134.11689 106.9525) (xy 134.082336 106.931187) (xy 134.082331 106.931185) (xy 134.080862 106.930698) + (xy 133.915797 106.876001) (xy 133.915795 106.876) (xy 133.81301 106.8655) (xy 132.462998 106.8655) + (xy 132.462981 106.865501) (xy 132.360203 106.876) (xy 132.3602 106.876001) (xy 132.193668 106.931185) + (xy 132.193663 106.931187) (xy 132.044342 107.023289) (xy 131.920289 107.147342) (xy 131.828187 107.296663) + (xy 131.828185 107.296668) (xy 131.808027 107.357501) (xy 131.773001 107.463203) (xy 131.773001 107.463204) + (xy 131.773 107.463204) (xy 131.7625 107.565983) (xy 131.7625 108.366001) (xy 131.762501 108.366019) + (xy 131.773 108.468796) (xy 131.773001 108.468799) (xy 131.823364 108.620782) (xy 131.828186 108.635334) + (xy 131.920288 108.784656) (xy 132.044344 108.908712) (xy 132.106276 108.946912) (xy 132.107739 108.947814) + (xy 132.154464 108.999762) (xy 132.165687 109.068724) (xy 132.137844 109.132806) (xy 132.119296 109.150822) + (xy 132.100118 109.165903) (xy 132.100112 109.165909) (xy 131.962478 109.324746) (xy 131.857398 109.50675) + (xy 131.788656 109.705365) (xy 131.788656 109.705367) (xy 131.773804 109.80867) (xy 131.758746 109.913401) + (xy 126.6745 109.913401) (xy 126.6745 104.174211) (xy 126.692961 104.109113) (xy 126.721815 104.062336) + (xy 126.776999 103.8958) (xy 126.7875 103.793012) (xy 126.7875 103.623) (xy 127.787001 103.623) + (xy 127.787001 103.772986) (xy 127.797494 103.875697) (xy 127.852641 104.042119) (xy 127.852643 104.042124) + (xy 127.944684 104.191345) (xy 128.068654 104.315315) (xy 128.217875 104.407356) (xy 128.21788 104.407358) + (xy 128.384302 104.462505) (xy 128.384309 104.462506) (xy 128.487019 104.472999) (xy 129.136999 104.472999) + (xy 129.137 103.623) (xy 129.637 103.623) (xy 129.637 104.472999) (xy 130.286972 104.472999) (xy 130.286986 104.472998) + (xy 130.389697 104.462505) (xy 130.556119 104.407358) (xy 130.556124 104.407356) (xy 130.705345 104.315315) + (xy 130.829315 104.191345) (xy 130.921356 104.042124) (xy 130.921358 104.042119) (xy 130.976505 103.875697) + (xy 130.976506 103.87569) (xy 130.986999 103.772986) (xy 130.987 103.772973) (xy 130.987 103.623) + (xy 129.637 103.623) (xy 129.137 103.623) (xy 127.787001 103.623) (xy 126.7875 103.623) (xy 126.7875 101.8675) + (xy 126.807185 101.800461) (xy 126.859989 101.754706) (xy 126.9115 101.7435) (xy 127.771362 101.7435) + (xy 127.838401 101.763185) (xy 127.876899 101.802401) (xy 127.944288 101.911656) (xy 128.068344 102.035712) + (xy 128.164783 102.095196) (xy 128.217569 102.127754) (xy 128.264294 102.179702) (xy 128.275517 102.248664) + (xy 128.247674 102.312747) (xy 128.21757 102.338831) (xy 128.068659 102.43068) (xy 128.068655 102.430683) + (xy 127.944684 102.554654) (xy 127.852643 102.703875) (xy 127.852641 102.70388) (xy 127.797494 102.870302) + (xy 127.797493 102.870309) (xy 127.787 102.973013) (xy 127.787 103.123) (xy 130.986999 103.123) + (xy 130.986999 102.973028) (xy 130.986998 102.973013) (xy 130.976505 102.870302) (xy 130.921358 102.70388) + (xy 130.921356 102.703875) (xy 130.829315 102.554654) (xy 130.705345 102.430684) (xy 130.556429 102.338832) + (xy 130.509705 102.286884) (xy 130.498482 102.217921) (xy 130.526326 102.153839) (xy 130.556426 102.127756) + (xy 130.705656 102.035712) (xy 130.829712 101.911656) (xy 130.921814 101.762334) (xy 130.976999 101.595797) + (xy 130.9875 101.493009) (xy 130.987499 100.692992) (xy 130.980502 100.6245) (xy 130.976999 100.590203) + (xy 130.976998 100.5902) (xy 130.974679 100.583203) (xy 130.921814 100.423666) (xy 130.829712 100.274344) + (xy 130.705656 100.150288) (xy 130.705655 100.150287) (xy 130.57783 100.071445) (xy 130.556905 100.058538) + (xy 130.510181 100.006591) (xy 130.498958 99.937629) (xy 130.526801 99.873546) (xy 130.556906 99.847461) + (xy 130.567683 99.840814) (xy 130.705656 99.755712) (xy 130.829712 99.631656) (xy 130.921814 99.482334) + (xy 130.976999 99.315797) (xy 130.9875 99.213009) (xy 130.987499 98.412992) (xy 130.976999 98.310203) + (xy 130.921814 98.143666) (xy 130.829712 97.994344) (xy 130.705656 97.870288) (xy 130.556334 97.778186) + (xy 130.389797 97.723001) (xy 130.389795 97.723) (xy 130.287016 97.7125) (xy 130.287009 97.7125) + (xy 130.1075 97.7125) (xy 130.040461 97.692815) (xy 129.994706 97.640011) (xy 129.9835 97.5885) + (xy 129.9835 97.446771) (xy 130.003185 97.379732) (xy 130.038429 97.345132) (xy 130.038183 97.344821) + (xy 130.041082 97.342528) (xy 130.042401 97.341233) (xy 130.04385 97.34034) (xy 130.16584 97.21835) + (xy 130.256408 97.071516) (xy 130.310674 96.907753) (xy 130.321 96.806677) (xy 130.320999 96.233324) + (xy 130.310674 96.132247) (xy 130.256408 95.968484) (xy 130.16584 95.82165) (xy 130.062517 95.718327) + (xy 130.029032 95.657004) (xy 130.034016 95.587312) (xy 130.062517 95.542964) (xy 130.165448 95.440033) + (xy 130.255948 95.293311) (xy 130.255953 95.2933) (xy 130.31018 95.129652) (xy 130.320499 95.028654) + (xy 130.3205 95.028641) (xy 130.3205 94.992) (xy 129.207 94.992) (xy 129.139961 94.972315) (xy 129.094206 94.919511) + (xy 129.083 94.868) (xy 129.083 94.491999) (xy 129.582999 94.491999) (xy 129.583 94.492) (xy 130.320499 94.492) + (xy 130.320499 94.45536) (xy 130.320498 94.455345) (xy 130.31018 94.354347) (xy 130.255953 94.190699) + (xy 130.255948 94.190688) (xy 130.165447 94.043965) (xy 130.165444 94.043961) (xy 130.043538 93.922055) + (xy 130.043534 93.922052) (xy 129.896811 93.831551) (xy 129.8968 93.831546) (xy 129.733152 93.777319) + (xy 129.632154 93.767) (xy 129.583 93.767) (xy 129.582999 94.491999) (xy 129.083 94.491999) (xy 129.083 93.767) + (xy 129.082999 93.766999) (xy 129.033861 93.767) (xy 129.033843 93.767001) (xy 128.932847 93.777319) + (xy 128.769199 93.831546) (xy 128.769188 93.831551) (xy 128.622465 93.922052) (xy 128.508534 94.035983) + (xy 128.447211 94.069467) (xy 128.377519 94.064483) (xy 128.333172 94.035982) (xy 128.218851 93.921661) + (xy 128.218851 93.92166) (xy 128.21885 93.92166) (xy 128.115096 93.857664) (xy 128.072018 93.831093) + (xy 128.072013 93.831091) (xy 128.070569 93.830612) (xy 127.908253 93.776826) (xy 127.908251 93.776825) + (xy 127.807178 93.7665) (xy 127.20883 93.7665) (xy 127.208812 93.766501) (xy 127.107747 93.776825) + (xy 126.943984 93.831092) (xy 126.943981 93.831093) (xy 126.797148 93.921661) (xy 126.675161 94.043648) + (xy 126.584593 94.190481) (xy 126.584591 94.190486) (xy 126.571452 94.230137) (xy 126.530326 94.354247) + (xy 126.530326 94.354248) (xy 126.530325 94.354248) (xy 126.52 94.455315) (xy 126.52 95.028669) + (xy 126.520001 95.028687) (xy 126.530325 95.129752) (xy 126.566609 95.239249) (xy 126.58452 95.2933) + (xy 126.584592 95.293515) (xy 126.584593 95.293518) (xy 126.60981 95.334401) (xy 126.674964 95.440033) + (xy 126.675161 95.440351) (xy 126.778128 95.543318) (xy 126.811613 95.604641) (xy 126.806629 95.674333) + (xy 126.778129 95.718679) (xy 126.675156 95.821653) (xy 126.674555 95.822414) (xy 126.67401 95.822799) + (xy 126.670054 95.826756) (xy 126.669377 95.826079) (xy 126.617532 95.862789) (xy 126.577292 95.8695) + (xy 120.580815 95.8695) (xy 120.513776 95.849815) (xy 120.50793 95.845818) (xy 120.391534 95.761251) + (xy 120.391529 95.761248) (xy 120.218607 95.684257) (xy 120.218602 95.684255) (xy 120.072801 95.653265) + (xy 120.033446 95.6449) (xy 119.844154 95.6449) (xy 119.811697 95.651798) (xy 119.658997 95.684255) + (xy 119.658992 95.684257) (xy 119.489628 95.759664) (xy 119.420378 95.768949) (xy 119.357101 95.739321) + (xy 119.319888 95.680186) (xy 119.319001 95.676881) (xy 119.280063 95.523119) (xy 119.180173 95.295393) + (xy 119.122227 95.206699) (xy 119.044166 95.087217) (xy 118.990275 95.028676) (xy 118.875744 94.904262) + (xy 118.679509 94.751526) (xy 118.679507 94.751525) (xy 118.679506 94.751524) (xy 118.460811 94.633172) + (xy 118.460802 94.633169) (xy 118.225616 94.552429) (xy 117.980335 94.5115) (xy 117.731665 94.5115) + (xy 117.486383 94.552429) (xy 117.251197 94.633169) (xy 117.251188 94.633172) (xy 117.032493 94.751524) + (xy 116.845992 94.896684) (xy 116.836256 94.904262) (xy 116.825452 94.915997) (xy 116.667833 95.087217) + (xy 116.531826 95.295393) (xy 116.431936 95.523118) (xy 116.370892 95.764175) (xy 116.37089 95.764187) + (xy 116.350357 96.011994) (xy 116.350357 96.012005) (xy 116.37089 96.259812) (xy 116.370892 96.259824) + (xy 116.431936 96.500881) (xy 116.531826 96.728606) (xy 116.667833 96.936782) (xy 116.691038 96.961989) + (xy 116.836256 97.119738) (xy 117.032491 97.272474) (xy 117.13796 97.329551) (xy 117.166176 97.344821) + (xy 117.25119 97.390828) (xy 117.296969 97.406544) (xy 117.406711 97.444219) (xy 117.463726 97.484604) + (xy 117.489857 97.549404) (xy 117.476806 97.618044) (xy 117.428717 97.668732) (xy 117.366448 97.6855) + (xy 112.77398 97.6855) (xy 112.671198 97.696001) (xy 112.504666 97.751184) (xy 112.504655 97.751189) + (xy 112.355346 97.843285) (xy 112.355342 97.843288) (xy 112.231288 97.967342) (xy 112.231285 97.967346) + (xy 112.139189 98.116655) (xy 112.139184 98.116666) (xy 112.084001 98.283198) (xy 112.0735 98.38598) + (xy 112.0735 100.3115) (xy 112.053815 100.378539) (xy 112.001011 100.424294) (xy 111.9495 100.4355) + (xy 111.089638 100.4355) (xy 111.022599 100.415815) (xy 110.984099 100.376597) (xy 110.980037 100.370011) + (xy 110.916712 100.267344) (xy 110.792656 100.143288) (xy 110.666617 100.065547) (xy 110.643905 100.051538) + (xy 110.597181 99.99959) (xy 110.585958 99.930627) (xy 110.613802 99.866545) (xy 110.643901 99.840464) + (xy 110.792656 99.748712) (xy 110.916712 99.624656) (xy 111.008814 99.475334) (xy 111.063999 99.308797) + (xy 111.0745 99.206009) (xy 111.074499 98.405992) (xy 111.063999 98.303203) (xy 111.008814 98.136666) + (xy 110.916712 97.987344) (xy 110.792656 97.863288) (xy 110.699888 97.806069) (xy 110.643336 97.771187) + (xy 110.643331 97.771185) (xy 110.609927 97.760116) (xy 110.476797 97.716001) (xy 110.476795 97.716) + (xy 110.374016 97.7055) (xy 110.374009 97.7055) (xy 110.104395 97.7055) (xy 110.040797 97.687948) + (xy 110.018773 97.674789) (xy 110.018766 97.674786) (xy 110.018764 97.674785) (xy 109.913393 97.635239) + (xy 109.808023 97.595692) (xy 109.58655 97.5555) (xy 109.586547 97.5555) (xy 107.227341 97.5555) + (xy 107.168324 97.540555) (xy 106.958816 97.427175) (xy 106.958813 97.427174) (xy 106.95881 97.427172) + (xy 106.958804 97.42717) (xy 106.958802 97.427169) (xy 106.723616 97.346429) (xy 106.478335 97.3055) + (xy 106.229665 97.3055) (xy 105.984383 97.346429) (xy 105.749197 97.427169) (xy 105.749188 97.427172) + (xy 105.530493 97.545524) (xy 105.334257 97.698261) (xy 105.165833 97.881217) (xy 105.029826 98.089393) + (xy 105.029214 98.090525) (xy 105.028842 98.090898) (xy 105.027022 98.093686) (xy 105.026448 98.093311) + (xy 104.979991 98.140112) (xy 104.920163 98.1555) (xy 104.336499 98.1555) (xy 104.26946 98.135815) + (xy 104.223705 98.083011) (xy 104.212499 98.0315) (xy 104.212499 97.760129) (xy 104.212498 97.760123) + (xy 104.212497 97.760116) (xy 104.206091 97.700517) (xy 104.203218 97.692815) (xy 104.155797 97.565671) + (xy 104.155793 97.565664) (xy 104.069547 97.450455) (xy 104.069544 97.450452) (xy 103.954335 97.364206) + (xy 103.954328 97.364202) (xy 103.819482 97.313908) (xy 103.819483 97.313908) (xy 103.759883 97.307501) + (xy 103.759881 97.3075) (xy 103.759873 97.3075) (xy 103.759865 97.3075) (xy 103.168892 97.3075) + (xy 103.101853 97.287815) (xy 103.056098 97.235011) (xy 103.046154 97.165853) (xy 103.075179 97.102297) + (xy 103.094575 97.084238) (xy 103.119546 97.065546) (xy 103.205796 96.950331) (xy 103.256091 96.815483) + (xy 103.2625 96.755873) (xy 103.2625 96.5325) (xy 103.282185 96.465461) (xy 103.334989 96.419706) + (xy 103.3865 96.4085) (xy 104.432292 96.4085) (xy 104.499331 96.428185) (xy 104.524915 96.45138) + (xy 104.525053 96.451243) (xy 104.527852 96.454042) (xy 104.529555 96.455586) (xy 104.530155 96.456345) + (xy 104.53016 96.45635) (xy 104.65215 96.57834) (xy 104.798984 96.668908) (xy 104.962747 96.723174) + (xy 105.063823 96.7335) (xy 105.662176 96.733499) (xy 105.662184 96.733498) (xy 105.662187 96.733498) + (xy 105.71753 96.727844) (xy 105.763253 96.723174) (xy 105.927016 96.668908) (xy 106.07385 96.57834) + (xy 106.188175 96.464014) (xy 106.249494 96.430532) (xy 106.319186 96.435516) (xy 106.363534 96.464017) + (xy 106.477461 96.577944) (xy 106.477465 96.577947) (xy 106.624188 96.668448) (xy 106.624199 96.668453) + (xy 106.787847 96.72268) (xy 106.888851 96.732999) (xy 106.937999 96.732998) (xy 106.938 96.732998) + (xy 106.938 96.008) (xy 107.438 96.008) (xy 107.438 96.732999) (xy 107.48714 96.732999) (xy 107.487154 96.732998) + (xy 107.588152 96.72268) (xy 107.7518 96.668453) (xy 107.751811 96.668448) (xy 107.898534 96.577947) + (xy 107.898538 96.577944) (xy 108.020444 96.456038) (xy 108.020447 96.456034) (xy 108.110948 96.309311) + (xy 108.110953 96.3093) (xy 108.16518 96.145652) (xy 108.175499 96.044654) (xy 108.1755 96.044641) + (xy 108.1755 96.008) (xy 107.438 96.008) (xy 106.938 96.008) (xy 106.938 95.834205) (xy 109.517757 95.834205) + (xy 109.53829 96.082012) (xy 109.538292 96.082024) (xy 109.599336 96.323081) (xy 109.699226 96.550806) + (xy 109.835233 96.758982) (xy 109.850218 96.77526) (xy 110.003656 96.941938) (xy 110.199891 97.094674) + (xy 110.225136 97.108336) (xy 110.415814 97.211526) (xy 110.41859 97.213028) (xy 110.653786 97.293771) + (xy 110.899065 97.3347) (xy 111.147735 97.3347) (xy 111.393014 97.293771) (xy 111.62821 97.213028) + (xy 111.846909 97.094674) (xy 112.043144 96.941938) (xy 112.211564 96.758985) (xy 112.347573 96.550807) + (xy 112.447463 96.323081) (xy 112.508508 96.082021) (xy 112.510885 96.053336) (xy 112.529043 95.834205) + (xy 112.529043 95.834194) (xy 112.508509 95.586387) (xy 112.508507 95.586375) (xy 112.447463 95.345318) + (xy 112.347573 95.117593) (xy 112.211566 94.909417) (xy 112.154614 94.847551) (xy 112.043144 94.726462) + (xy 111.846909 94.573726) (xy 111.846907 94.573725) (xy 111.846906 94.573724) (xy 111.628211 94.455372) + (xy 111.628202 94.455369) (xy 111.393016 94.374629) (xy 111.147735 94.3337) (xy 110.899065 94.3337) + (xy 110.653783 94.374629) (xy 110.418597 94.455369) (xy 110.418588 94.455372) (xy 110.199893 94.573724) + (xy 110.003657 94.726461) (xy 109.835233 94.909417) (xy 109.699226 95.117593) (xy 109.599336 95.345318) + (xy 109.538292 95.586375) (xy 109.53829 95.586387) (xy 109.517757 95.834194) (xy 109.517757 95.834205) + (xy 106.938 95.834205) (xy 106.938 94.783) (xy 107.438 94.783) (xy 107.438 95.508) (xy 108.175499 95.508) + (xy 108.175499 95.47136) (xy 108.175498 95.471345) (xy 108.16518 95.370347) (xy 108.110953 95.206699) + (xy 108.110948 95.206688) (xy 108.020447 95.059965) (xy 108.020444 95.059961) (xy 107.898538 94.938055) + (xy 107.898534 94.938052) (xy 107.751811 94.847551) (xy 107.7518 94.847546) (xy 107.588152 94.793319) + (xy 107.487154 94.783) (xy 107.438 94.783) (xy 106.938 94.783) (xy 106.937999 94.782999) (xy 106.888861 94.783) + (xy 106.888843 94.783001) (xy 106.787847 94.793319) (xy 106.624199 94.847546) (xy 106.624188 94.847551) + (xy 106.477465 94.938052) (xy 106.363534 95.051983) (xy 106.302211 95.085467) (xy 106.232519 95.080483) + (xy 106.188172 95.051982) (xy 106.073851 94.937661) (xy 106.07385 94.93766) (xy 105.960913 94.868) + (xy 105.927018 94.847093) (xy 105.927013 94.847091) (xy 105.925569 94.846612) (xy 105.763253 94.792826) + (xy 105.763251 94.792825) (xy 105.662178 94.7825) (xy 105.06383 94.7825) (xy 105.063812 94.782501) + (xy 104.962747 94.792825) (xy 104.798984 94.847092) (xy 104.798981 94.847093) (xy 104.652148 94.937661) + (xy 104.530155 95.059654) (xy 104.529555 95.060414) (xy 104.52901 95.060799) (xy 104.525053 95.064757) + (xy 104.524376 95.06408) (xy 104.472532 95.100789) (xy 104.432292 95.1075) (xy 103.386499 95.1075) + (xy 103.31946 95.087815) (xy 103.273705 95.035011) (xy 103.262499 94.9835) (xy 103.262499 94.760129) + (xy 103.262498 94.760123) (xy 103.262497 94.760116) (xy 103.256091 94.700517) (xy 103.2088 94.573724) + (xy 103.205797 94.565671) (xy 103.205793 94.565664) (xy 103.119547 94.450455) (xy 103.119546 94.450454) + (xy 103.090096 94.428407) (xy 103.048226 94.372473) (xy 103.043243 94.302781) (xy 103.076725 94.241464) + (xy 103.139821 94.178368) (xy 103.201143 94.144886) (xy 103.270834 94.149871) (xy 103.31518 94.178371) + (xy 103.42915 94.29234) (xy 103.575984 94.382908) (xy 103.739747 94.437174) (xy 103.840823 94.4475) + (xy 104.439176 94.447499) (xy 104.439184 94.447498) (xy 104.439187 94.447498) (xy 104.49453 94.441844) + (xy 104.540253 94.437174) (xy 104.704016 94.382908) (xy 104.85085 94.29234) (xy 104.97284 94.17035) + (xy 105.063408 94.023516) (xy 105.117674 93.859753) (xy 105.128 93.758677) (xy 105.127999 93.185324) + (xy 105.119549 93.102607) (xy 105.117674 93.084247) (xy 105.104921 93.045762) (xy 105.063408 92.920484) + (xy 104.97284 92.77365) (xy 104.85085 92.65166) (xy 104.850849 92.651659) (xy 104.850846 92.651656) + (xy 104.850845 92.651655) (xy 104.8494 92.650764) (xy 104.848617 92.649893) (xy 104.845184 92.647179) + (xy 104.845647 92.646592) (xy 104.802677 92.598815) (xy 104.7905 92.545228) (xy 104.7905 92.36223) + (xy 104.810185 92.295191) (xy 104.826819 92.274549) (xy 104.866987 92.234381) (xy 104.942712 92.158656) + (xy 105.034814 92.009334) (xy 105.089999 91.842797) (xy 105.1005 91.740009) (xy 105.100499 91.139992) + (xy 105.089999 91.037203) (xy 105.034814 90.870666) (xy 105.031438 90.865192) (xy 104.939615 90.716322) + (xy 104.921175 90.64893) (xy 104.937768 90.589225) (xy 104.963755 90.544214) (xy 104.967179 90.538284) + (xy 105.025674 90.358256) (xy 105.04546 90.17) (xy 105.025674 89.981744) (xy 104.967179 89.801716) + (xy 104.92598 89.730357) (xy 104.909507 89.662456) (xy 104.93236 89.596429) (xy 104.987281 89.553239) + (xy 104.998769 89.549281) (xy 105.004564 89.547597) (xy 105.004569 89.547597) (xy 105.024961 89.541672) + (xy 105.043996 89.537731) (xy 105.065058 89.535071) (xy 105.110235 89.517183) (xy 105.115735 89.5153) + (xy 105.162398 89.501744) (xy 105.180665 89.490939) (xy 105.198136 89.48238) (xy 105.217871 89.474568) + (xy 105.257177 89.44601) (xy 105.262043 89.442813) (xy 105.303865 89.418081) (xy 105.31887 89.403075) + (xy 105.333668 89.390436) (xy 105.344615 89.382483) (xy 105.350837 89.377963) (xy 105.381809 89.340522) + (xy 105.385723 89.336221) (xy 106.571513 88.150431) (xy 106.584079 88.140365) (xy 106.583925 88.140178) + (xy 106.589933 88.135205) (xy 106.58994 88.135202) (xy 106.635392 88.0868) (xy 118.314141 88.0868) + (xy 118.334736 88.322203) (xy 118.334738 88.322213) (xy 118.395894 88.550455) (xy 118.395896 88.550459) + (xy 118.395897 88.550463) (xy 118.473969 88.717889) (xy 118.495765 88.76463) (xy 118.495767 88.764634) + (xy 118.586228 88.893824) (xy 118.631305 88.958201) (xy 118.798399 89.125295) (xy 118.875669 89.1794) + (xy 118.991965 89.260832) (xy 118.991967 89.260833) (xy 118.99197 89.260835) (xy 119.206137 89.360703) + (xy 119.206143 89.360704) (xy 119.206144 89.360705) (xy 119.213239 89.362606) (xy 119.434392 89.421863) + (xy 119.605119 89.4368) (xy 119.669799 89.442459) (xy 119.6698 89.442459) (xy 119.669801 89.442459) + (xy 119.734481 89.4368) (xy 119.905208 89.421863) (xy 120.133463 89.360703) (xy 120.34763 89.260835) + (xy 120.541201 89.125295) (xy 120.708295 88.958201) (xy 120.838224 88.772642) (xy 120.892802 88.729017) + (xy 120.9623 88.721823) (xy 121.024655 88.753346) (xy 121.041375 88.772642) (xy 121.1713 88.958195) + (xy 121.171305 88.958201) (xy 121.338399 89.125295) (xy 121.415669 89.1794) (xy 121.531965 89.260832) + (xy 121.531967 89.260833) (xy 121.53197 89.260835) (xy 121.746137 89.360703) (xy 121.746143 89.360704) + (xy 121.746144 89.360705) (xy 121.753239 89.362606) (xy 121.974392 89.421863) (xy 122.145119 89.4368) + (xy 122.209799 89.442459) (xy 122.2098 89.442459) (xy 122.209801 89.442459) (xy 122.274481 89.4368) + (xy 122.445208 89.421863) (xy 122.673463 89.360703) (xy 122.88763 89.260835) (xy 123.081201 89.125295) + (xy 123.203517 89.002978) (xy 123.264836 88.969496) (xy 123.334528 88.97448) (xy 123.390462 89.016351) + (xy 123.407377 89.047328) (xy 123.456446 89.178888) (xy 123.456449 89.178893) (xy 123.542609 89.293987) + (xy 123.542612 89.29399) (xy 123.657706 89.38015) (xy 123.657713 89.380154) (xy 123.79242 89.430396) + (xy 123.792427 89.430398) (xy 123.851955 89.436799) (xy 123.851972 89.4368) (xy 124.499799 89.4368) + (xy 124.499799 88.522301) (xy 124.607485 88.57148) (xy 124.714037 88.5868) (xy 124.785563 88.5868) + (xy 124.892115 88.57148) (xy 124.9998 88.522301) (xy 124.9998 89.4368) (xy 125.647628 89.4368) (xy 125.647644 89.436799) + (xy 125.707172 89.430398) (xy 125.707179 89.430396) (xy 125.841886 89.380154) (xy 125.841893 89.38015) + (xy 125.956987 89.29399) (xy 125.95699 89.293987) (xy 126.04315 89.178893) (xy 126.043154 89.178886) + (xy 126.093396 89.044179) (xy 126.093398 89.044172) (xy 126.099799 88.984644) (xy 126.0998 88.984627) + (xy 126.0998 88.3368) (xy 125.183486 88.3368) (xy 125.209293 88.296644) (xy 125.2498 88.158689) + (xy 125.2498 88.014911) (xy 125.209293 87.876956) (xy 125.183486 87.8368) (xy 126.0998 87.8368) + (xy 126.0998 87.188972) (xy 126.099799 87.188955) (xy 126.093398 87.129427) (xy 126.093396 87.12942) + (xy 126.043154 86.994713) (xy 126.04315 86.994706) (xy 125.95699 86.879612) (xy 125.956987 86.879609) + (xy 125.913963 86.847401) (xy 129.430746 86.847401) (xy 129.440745 87.057327) (xy 129.490296 87.261578) + (xy 129.490298 87.261582) (xy 129.577598 87.452743) (xy 129.577601 87.452748) (xy 129.577602 87.45275) + (xy 129.577604 87.452753) (xy 129.698934 87.623137) (xy 129.699515 87.623953) (xy 129.69952 87.623959) + (xy 129.851619 87.768984) (xy 129.851621 87.768985) (xy 129.851622 87.768986) (xy 129.862716 87.776116) + (xy 129.893386 87.795826) (xy 129.939141 87.84863) (xy 129.949085 87.917789) (xy 129.92006 87.981345) + (xy 129.902999 87.997612) (xy 129.772462 88.100268) (xy 129.772459 88.100271) (xy 129.634894 88.25903) + (xy 129.634885 88.259041) (xy 129.529855 88.44096) (xy 129.529852 88.440967) (xy 129.461144 88.639482) + (xy 129.461144 88.639484) (xy 129.459632 88.65) (xy 130.53044 88.65) (xy 130.491722 88.692059) (xy 130.441449 88.80667) + (xy 130.431114 88.931395) (xy 130.461837 89.052719) (xy 130.525394 89.15) (xy 129.463742 89.15) + (xy 129.49077 89.261409) (xy 129.57804 89.452507) (xy 129.699889 89.623619) (xy 129.699895 89.623625) + (xy 129.851932 89.768592) (xy 130.028657 89.882166) (xy 130.223685 89.960244) (xy 130.429962 90) + (xy 130.56 90) (xy 130.56 89.180617) (xy 130.629052 89.234363) (xy 130.747424 89.275) (xy 130.841073 89.275) + (xy 130.933446 89.259586) (xy 131.043514 89.200019) (xy 131.06 89.18211) (xy 131.06 90) (xy 131.137398 90) + (xy 131.294122 89.985034) (xy 131.294126 89.985033) (xy 131.495686 89.92585) (xy 131.682414 89.829586) + (xy 131.847537 89.699731) (xy 131.84754 89.699728) (xy 131.985105 89.540969) (xy 131.985114 89.540958) + (xy 132.090144 89.359039) (xy 132.090147 89.359032) (xy 132.158855 89.160517) (xy 132.158855 89.160515) + (xy 132.160368 89.15) (xy 131.08956 89.15) (xy 131.128278 89.107941) (xy 131.178551 88.99333) (xy 131.188886 88.868605) + (xy 131.158163 88.747281) (xy 131.094606 88.65) (xy 132.156257 88.65) (xy 132.129229 88.53859) (xy 132.041959 88.347492) + (xy 131.92011 88.17638) (xy 131.920104 88.176374) (xy 131.768067 88.031408) (xy 131.726641 88.004784) + (xy 131.680887 87.951979) (xy 131.670944 87.882821) (xy 131.69997 87.819265) (xy 131.71703 87.802999) + (xy 131.776791 87.756002) (xy 131.847886 87.700092) (xy 131.985519 87.541256) (xy 132.040219 87.446514) + (xy 132.076976 87.382848) (xy 132.090604 87.359244) (xy 132.159344 87.160633) (xy 132.189254 86.952602) + (xy 132.179254 86.74267) (xy 132.129704 86.538424) (xy 132.129701 86.538417) (xy 132.042401 86.347256) + (xy 132.042398 86.347251) (xy 132.042397 86.34725) (xy 132.042396 86.347247) (xy 131.920486 86.176048) + (xy 131.92024 86.175813) (xy 131.817917 86.078249) (xy 131.782982 86.01774) (xy 131.786307 85.94795) + (xy 131.826835 85.891036) (xy 131.838384 85.882971) (xy 131.903656 85.842712) (xy 132.027712 85.718656) + (xy 132.119814 85.569334) (xy 132.174999 85.402797) (xy 132.1855 85.300009) (xy 132.185499 84.499992) + (xy 132.180838 84.454368) (xy 132.174999 84.397203) (xy 132.174998 84.3972) (xy 132.166627 84.371937) + (xy 132.119814 84.230666) (xy 132.027712 84.081344) (xy 131.903656 83.957288) (xy 131.754334 83.865186) + (xy 131.587797 83.810001) (xy 131.587795 83.81) (xy 131.48501 83.7995) (xy 130.134998 83.7995) (xy 130.134981 83.799501) + (xy 130.032203 83.81) (xy 130.0322 83.810001) (xy 129.865668 83.865185) (xy 129.865663 83.865187) + (xy 129.716342 83.957289) (xy 129.592289 84.081342) (xy 129.500187 84.230663) (xy 129.500185 84.230666) + (xy 129.500186 84.230666) (xy 129.445001 84.397203) (xy 129.445001 84.397204) (xy 129.445 84.397204) + (xy 129.4345 84.499983) (xy 129.4345 85.300001) (xy 129.434501 85.300019) (xy 129.445 85.402796) + (xy 129.445001 85.402799) (xy 129.500185 85.569331) (xy 129.500187 85.569336) (xy 129.592289 85.718657) + (xy 129.716344 85.842712) (xy 129.779739 85.881814) (xy 129.826464 85.933762) (xy 129.837687 86.002724) + (xy 129.809844 86.066806) (xy 129.791296 86.084822) (xy 129.772118 86.099903) (xy 129.772112 86.099909) + (xy 129.634478 86.258746) (xy 129.529398 86.44075) (xy 129.460656 86.639365) (xy 129.460656 86.639367) + (xy 129.431266 86.843785) (xy 129.430746 86.847401) (xy 125.913963 86.847401) (xy 125.841893 86.793449) + (xy 125.841886 86.793445) (xy 125.707179 86.743203) (xy 125.707172 86.743201) (xy 125.647644 86.7368) + (xy 124.9998 86.7368) (xy 124.9998 87.651298) (xy 124.892115 87.60212) (xy 124.785563 87.5868) (xy 124.714037 87.5868) + (xy 124.607485 87.60212) (xy 124.499799 87.651298) (xy 124.4998 86.7368) (xy 123.851955 86.7368) + (xy 123.792427 86.743201) (xy 123.79242 86.743203) (xy 123.657713 86.793445) (xy 123.657706 86.793449) + (xy 123.542612 86.879609) (xy 123.542609 86.879612) (xy 123.456449 86.994706) (xy 123.456445 86.994713) + (xy 123.407378 87.12627) (xy 123.365507 87.182204) (xy 123.300042 87.206621) (xy 123.231769 87.191769) + (xy 123.203515 87.170619) (xy 123.159166 87.12627) (xy 123.081201 87.048305) (xy 123.081197 87.048302) + (xy 123.081196 87.048301) (xy 122.887634 86.912767) (xy 122.88763 86.912765) (xy 122.816527 86.879609) + (xy 122.673463 86.812897) (xy 122.673459 86.812896) (xy 122.673455 86.812894) (xy 122.445213 86.751738) + (xy 122.445203 86.751736) (xy 122.209801 86.731141) (xy 122.209799 86.731141) (xy 121.974396 86.751736) + (xy 121.974386 86.751738) (xy 121.746144 86.812894) (xy 121.746135 86.812898) (xy 121.531971 86.912764) + (xy 121.531969 86.912765) (xy 121.338397 87.048305) (xy 121.171305 87.215397) (xy 121.041375 87.400958) + (xy 120.986798 87.444583) (xy 120.9173 87.451777) (xy 120.854945 87.420254) (xy 120.838225 87.400958) + (xy 120.708294 87.215397) (xy 120.541202 87.048306) (xy 120.541195 87.048301) (xy 120.347634 86.912767) + (xy 120.34763 86.912765) (xy 120.276527 86.879609) (xy 120.133463 86.812897) (xy 120.133459 86.812896) + (xy 120.133455 86.812894) (xy 119.905213 86.751738) (xy 119.905203 86.751736) (xy 119.669801 86.731141) + (xy 119.669799 86.731141) (xy 119.434396 86.751736) (xy 119.434386 86.751738) (xy 119.206144 86.812894) + (xy 119.206135 86.812898) (xy 118.991971 86.912764) (xy 118.991969 86.912765) (xy 118.798397 87.048305) + (xy 118.631305 87.215397) (xy 118.495765 87.408969) (xy 118.495764 87.408971) (xy 118.395898 87.623135) + (xy 118.395894 87.623144) (xy 118.334738 87.851386) (xy 118.334736 87.851396) (xy 118.314141 88.086799) + (xy 118.314141 88.0868) (xy 106.635392 88.0868) (xy 106.638532 88.083456) (xy 106.639856 88.082088) + (xy 106.660911 88.061035) (xy 106.665401 88.055245) (xy 106.669183 88.050815) (xy 106.702448 88.015393) + (xy 106.712674 87.99679) (xy 106.723353 87.980533) (xy 106.736362 87.963764) (xy 106.755656 87.919175) + (xy 106.758212 87.913956) (xy 106.781627 87.871368) (xy 106.786905 87.850806) (xy 106.793207 87.832399) + (xy 106.801635 87.812927) (xy 106.809233 87.764953) (xy 106.810414 87.759247) (xy 106.8225 87.712177) + (xy 106.8225 87.690949) (xy 106.824027 87.671549) (xy 106.824218 87.670344) (xy 106.827346 87.650595) + (xy 106.822775 87.602238) (xy 106.8225 87.5964) (xy 106.8225 84.521407) (xy 106.842185 84.454368) + (xy 106.894989 84.408613) (xy 106.964147 84.398669) (xy 107.027703 84.427694) (xy 107.034181 84.433726) + (xy 108.686864 86.08641) (xy 108.696935 86.09898) (xy 108.697122 86.098826) (xy 108.702095 86.104837) + (xy 108.753842 86.153431) (xy 108.755209 86.154755) (xy 108.776265 86.175811) (xy 108.776268 86.175813) + (xy 108.782057 86.180305) (xy 108.786497 86.184097) (xy 108.815798 86.211611) (xy 108.821907 86.217348) + (xy 108.821909 86.217349) (xy 108.840505 86.227572) (xy 108.85677 86.238257) (xy 108.873532 86.25126) + (xy 108.873535 86.251261) (xy 108.873536 86.251262) (xy 108.918123 86.270556) (xy 108.923359 86.273121) + (xy 108.965932 86.296527) (xy 108.98164 86.300559) (xy 108.986486 86.301804) (xy 109.004898 86.308107) + (xy 109.024373 86.316535) (xy 109.072371 86.324137) (xy 109.07804 86.325311) (xy 109.125123 86.3374) + (xy 109.146351 86.3374) (xy 109.165748 86.338926) (xy 109.186703 86.342245) (xy 109.186704 86.342246) + (xy 109.186704 86.342245) (xy 109.186705 86.342246) (xy 109.23506 86.337675) (xy 109.240899 86.3374) + (xy 119.727595 86.3374) (xy 119.743605 86.339167) (xy 119.743628 86.338926) (xy 119.751394 86.33966) + (xy 119.751395 86.339659) (xy 119.751396 86.33966) (xy 119.758371 86.33944) (xy 119.822335 86.337431) + (xy 119.824283 86.3374) (xy 119.854025 86.3374) (xy 119.86129 86.336481) (xy 119.867116 86.336022) + (xy 119.915669 86.334497) (xy 119.936056 86.328573) (xy 119.955096 86.324631) (xy 119.976158 86.321971) + (xy 120.021335 86.304083) (xy 120.026835 86.3022) (xy 120.073498 86.288644) (xy 120.091765 86.277839) + (xy 120.109236 86.26928) (xy 120.128971 86.261468) (xy 120.168277 86.23291) (xy 120.173143 86.229713) + (xy 120.214965 86.204981) (xy 120.22997 86.189975) (xy 120.244768 86.177336) (xy 120.246544 86.176046) + (xy 120.261937 86.164863) (xy 120.292909 86.127422) (xy 120.296823 86.123121) (xy 121.811513 84.608431) + (xy 121.824079 84.598365) (xy 121.823925 84.598178) (xy 121.829933 84.593205) (xy 121.82994 84.593202) + (xy 121.878532 84.541456) (xy 121.879856 84.540088) (xy 121.900911 84.519035) (xy 121.905401 84.513245) + (xy 121.909183 84.508815) (xy 121.942448 84.473393) (xy 121.952674 84.45479) (xy 121.963353 84.438533) + (xy 121.976362 84.421764) (xy 121.995663 84.377159) (xy 121.998207 84.371965) (xy 122.021627 84.329368) + (xy 122.026907 84.308802) (xy 122.033209 84.290395) (xy 122.041635 84.270926) (xy 122.049233 84.222948) + (xy 122.050411 84.217253) (xy 122.0625 84.170177) (xy 122.0625 84.148954) (xy 122.064027 84.129555) + (xy 122.067347 84.108595) (xy 122.062775 84.06023) (xy 122.0625 84.054392) (xy 122.0625 77.703401) + (xy 129.430746 77.703401) (xy 129.440745 77.913327) (xy 129.490296 78.117578) (xy 129.490298 78.117582) + (xy 129.577598 78.308743) (xy 129.577601 78.308748) (xy 129.577602 78.30875) (xy 129.577604 78.308753) + (xy 129.640627 78.397256) (xy 129.699515 78.479953) (xy 129.69952 78.479959) (xy 129.851619 78.624984) + (xy 129.893386 78.651826) (xy 129.939141 78.70463) (xy 129.949085 78.773789) (xy 129.92006 78.837345) + (xy 129.902999 78.853612) (xy 129.772462 78.956268) (xy 129.772459 78.956271) (xy 129.634894 79.11503) + (xy 129.634885 79.115041) (xy 129.529855 79.29696) (xy 129.529852 79.296967) (xy 129.461144 79.495482) + (xy 129.461144 79.495484) (xy 129.459632 79.506) (xy 130.53044 79.506) (xy 130.491722 79.548059) + (xy 130.441449 79.66267) (xy 130.431114 79.787395) (xy 130.461837 79.908719) (xy 130.525394 80.006) + (xy 129.463742 80.006) (xy 129.49077 80.117409) (xy 129.57804 80.308507) (xy 129.699889 80.479619) + (xy 129.699895 80.479625) (xy 129.851932 80.624592) (xy 130.028657 80.738166) (xy 130.223685 80.816244) + (xy 130.429962 80.856) (xy 130.56 80.856) (xy 130.56 80.036617) (xy 130.629052 80.090363) (xy 130.747424 80.131) + (xy 130.841073 80.131) (xy 130.933446 80.115586) (xy 131.043514 80.056019) (xy 131.06 80.03811) + (xy 131.06 80.856) (xy 131.137398 80.856) (xy 131.294122 80.841034) (xy 131.294126 80.841033) (xy 131.495686 80.78185) + (xy 131.682414 80.685586) (xy 131.847537 80.555731) (xy 131.84754 80.555728) (xy 131.985105 80.396969) + (xy 131.985114 80.396958) (xy 132.090144 80.215039) (xy 132.090147 80.215032) (xy 132.158855 80.016517) + (xy 132.158855 80.016515) (xy 132.160368 80.006) (xy 131.08956 80.006) (xy 131.128278 79.963941) + (xy 131.178551 79.84933) (xy 131.188886 79.724605) (xy 131.158163 79.603281) (xy 131.094606 79.506) + (xy 132.156257 79.506) (xy 132.129229 79.39459) (xy 132.041959 79.203492) (xy 131.92011 79.03238) + (xy 131.920104 79.032374) (xy 131.768067 78.887408) (xy 131.726641 78.860784) (xy 131.680887 78.807979) + (xy 131.670944 78.738821) (xy 131.69997 78.675265) (xy 131.71703 78.658999) (xy 131.847883 78.556094) + (xy 131.847886 78.556092) (xy 131.985519 78.397256) (xy 132.090604 78.215244) (xy 132.159344 78.016633) + (xy 132.189254 77.808602) (xy 132.179254 77.59867) (xy 132.129704 77.394424) (xy 132.12853 77.391853) + (xy 132.042401 77.203256) (xy 132.042398 77.203251) (xy 132.042397 77.20325) (xy 132.042396 77.203247) + (xy 131.920486 77.032048) (xy 131.920484 77.032046) (xy 131.920479 77.03204) (xy 131.768379 76.887014) + (xy 131.727057 76.860458) (xy 131.681302 76.807654) (xy 131.671359 76.738496) (xy 131.700384 76.67494) + (xy 131.717445 76.658673) (xy 131.773853 76.614313) (xy 131.847886 76.556092) (xy 131.985519 76.397256) + (xy 132.021753 76.334498) (xy 132.090601 76.215249) (xy 132.0906 76.215249) (xy 132.090604 76.215244) + (xy 132.159344 76.016633) (xy 132.189254 75.808602) (xy 132.179254 75.59867) (xy 132.129704 75.394424) + (xy 132.105031 75.340398) (xy 132.042401 75.203256) (xy 132.042398 75.203251) (xy 132.042397 75.20325) + (xy 132.042396 75.203247) (xy 131.920486 75.032048) (xy 131.885409 74.998602) (xy 131.817917 74.934249) + (xy 131.782982 74.87374) (xy 131.786307 74.80395) (xy 131.826835 74.747036) (xy 131.838384 74.738971) + (xy 131.903656 74.698712) (xy 132.027712 74.574656) (xy 132.119814 74.425334) (xy 132.174999 74.258797) + (xy 132.1855 74.156009) (xy 132.185499 73.355992) (xy 132.183957 73.3409) (xy 132.174999 73.253203) + (xy 132.174998 73.2532) (xy 132.168037 73.232193) (xy 132.119814 73.086666) (xy 132.027712 72.937344) + (xy 131.903656 72.813288) (xy 131.754334 72.721186) (xy 131.587797 72.666001) (xy 131.587795 72.666) + (xy 131.48501 72.6555) (xy 130.134998 72.6555) (xy 130.134981 72.655501) (xy 130.032203 72.666) + (xy 130.0322 72.666001) (xy 129.865668 72.721185) (xy 129.865663 72.721187) (xy 129.716342 72.813289) + (xy 129.592289 72.937342) (xy 129.500187 73.086663) (xy 129.500185 73.086668) (xy 129.480542 73.145947) + (xy 129.445001 73.253203) (xy 129.445001 73.253204) (xy 129.445 73.253204) (xy 129.4345 73.355983) + (xy 129.4345 74.156001) (xy 129.434501 74.156019) (xy 129.445 74.258796) (xy 129.445001 74.258799) + (xy 129.500185 74.425331) (xy 129.500187 74.425336) (xy 129.592289 74.574657) (xy 129.716344 74.698712) + (xy 129.779739 74.737814) (xy 129.826464 74.789762) (xy 129.837687 74.858724) (xy 129.809844 74.922806) + (xy 129.791296 74.940822) (xy 129.772118 74.955903) (xy 129.772112 74.955909) (xy 129.634478 75.114746) + (xy 129.529398 75.29675) (xy 129.460656 75.495365) (xy 129.460656 75.495367) (xy 129.43386 75.681745) + (xy 129.430746 75.703401) (xy 129.440745 75.913327) (xy 129.490296 76.117578) (xy 129.490298 76.117582) + (xy 129.577598 76.308743) (xy 129.577601 76.308748) (xy 129.577602 76.30875) (xy 129.577604 76.308753) + (xy 129.673346 76.443204) (xy 129.699515 76.479953) (xy 129.69952 76.479959) (xy 129.851619 76.624984) + (xy 129.892941 76.65154) (xy 129.938696 76.704344) (xy 129.94864 76.773503) (xy 129.919615 76.837059) + (xy 129.902555 76.853326) (xy 129.772112 76.955909) (xy 129.634478 77.114746) (xy 129.529398 77.29675) + (xy 129.460656 77.495365) (xy 129.460656 77.495367) (xy 129.434229 77.679177) (xy 129.430746 77.703401) + (xy 122.0625 77.703401) (xy 122.0625 73.3409) (xy 122.082185 73.273861) (xy 122.102962 73.249263) + (xy 122.228762 73.134581) (xy 122.228764 73.134579) (xy 122.351673 72.971821) (xy 122.442582 72.78925) + (xy 122.498397 72.593083) (xy 122.517215 72.39) (xy 122.498397 72.186917) (xy 122.442582 71.99075) + (xy 122.423678 71.952786) (xy 122.396002 71.897204) (xy 122.351673 71.808179) (xy 122.257859 71.683949) + (xy 122.228762 71.645418) (xy 122.078041 71.508019) (xy 122.078039 71.508017) (xy 121.904642 71.400655) + (xy 121.904635 71.400651) (xy 121.775522 71.350633) (xy 121.714456 71.326976) (xy 121.513976 71.2895) + (xy 121.310024 71.2895) (xy 121.109544 71.326976) (xy 121.109541 71.326976) (xy 121.109541 71.326977) + (xy 120.919364 71.400651) (xy 120.919357 71.400655) (xy 120.74596 71.508017) (xy 120.745958 71.508019) + (xy 120.595237 71.645418) (xy 120.472327 71.808178) (xy 120.381422 71.990739) (xy 120.381417 71.990752) + (xy 120.325602 72.186917) (xy 120.306785 72.389999) (xy 120.306785 72.39) (xy 120.325602 72.593082) + (xy 120.381417 72.789247) (xy 120.381422 72.78926) (xy 120.472327 72.971821) (xy 120.595235 73.134578) + (xy 120.721038 73.249263) (xy 120.757319 73.308975) (xy 120.761499 73.3409) (xy 120.761499 83.767192) + (xy 120.741814 83.834231) (xy 120.72518 83.854873) (xy 119.579973 85.000081) (xy 119.51865 85.033566) + (xy 119.492292 85.0364) (xy 109.528108 85.0364) (xy 109.461069 85.016715) (xy 109.440427 85.000081) + (xy 107.302663 82.862317) (xy 107.269178 82.800994) (xy 107.266873 82.763201) (xy 107.277215 82.6516) + (xy 107.258397 82.448517) (xy 107.202582 82.25235) (xy 107.111673 82.069779) (xy 107.028634 81.959818) + (xy 106.988762 81.907018) (xy 106.838041 81.769619) (xy 106.838039 81.769617) (xy 106.664642 81.662255) + (xy 106.664635 81.662251) (xy 106.532244 81.610963) (xy 106.474456 81.588576) (xy 106.273976 81.5511) + (xy 106.070024 81.5511) (xy 105.869544 81.588576) (xy 105.869541 81.588576) (xy 105.869541 81.588577) + (xy 105.679364 81.662251) (xy 105.679357 81.662255) (xy 105.50596 81.769617) (xy 105.505958 81.769619) + (xy 105.355237 81.907018) (xy 105.232327 82.069778) (xy 105.141422 82.252339) (xy 105.141417 82.252352) + (xy 105.085602 82.448517) (xy 105.066785 82.651599) (xy 105.066785 82.6516) (xy 105.085602 82.854682) + (xy 105.141417 83.050847) (xy 105.141422 83.05086) (xy 105.232327 83.233421) (xy 105.355237 83.396181) + (xy 105.481038 83.510863) (xy 105.51732 83.570574) (xy 105.5215 83.6025) (xy 105.5215 87.309192) + (xy 105.501815 87.376231) (xy 105.485181 87.396873) (xy 104.668873 88.213181) (xy 104.60755 88.246666) + (xy 104.581192 88.2495) (xy 104.081748 88.2495) (xy 104.014709 88.229815) (xy 103.968954 88.177011) + (xy 103.95901 88.107853) (xy 103.988035 88.044297) (xy 103.989598 88.042528) (xy 104.014464 88.014911) + (xy 104.110533 87.908216) (xy 104.205179 87.744284) (xy 104.263674 87.564256) (xy 104.28346 87.376) + (xy 104.263674 87.187744) (xy 104.205179 87.007716) (xy 104.110533 86.843784) (xy 104.06035 86.78805) + (xy 104.03012 86.725058) (xy 104.0285 86.705078) (xy 104.0285 82.362807) (xy 104.048185 82.295768) + (xy 104.064814 82.275131) (xy 108.222513 78.117431) (xy 108.235079 78.107365) (xy 108.234925 78.107178) + (xy 108.240933 78.102205) (xy 108.24094 78.102202) (xy 108.289532 78.050456) (xy 108.290856 78.049088) + (xy 108.311911 78.028035) (xy 108.316401 78.022245) (xy 108.320183 78.017815) (xy 108.353448 77.982393) + (xy 108.363674 77.96379) (xy 108.374353 77.947533) (xy 108.387362 77.930764) (xy 108.406656 77.886175) + (xy 108.409212 77.880956) (xy 108.432627 77.838368) (xy 108.437905 77.817806) (xy 108.444207 77.799399) + (xy 108.452635 77.779927) (xy 108.460233 77.731953) (xy 108.461414 77.726247) (xy 108.4735 77.679177) + (xy 108.4735 77.657949) (xy 108.475027 77.638549) (xy 108.478346 77.617595) (xy 108.473775 77.569238) + (xy 108.4735 77.5634) (xy 108.4735 73.298606) (xy 108.493185 73.231567) (xy 108.545989 73.185812) + (xy 108.615147 73.175868) (xy 108.655952 73.189248) (xy 108.708273 73.217214) (xy 108.896868 73.274424) + (xy 109.093 73.293741) (xy 109.289132 73.274424) (xy 109.477727 73.217214) (xy 109.651538 73.12431) + (xy 109.651544 73.124304) (xy 109.656607 73.120923) (xy 109.657703 73.122564) (xy 109.713639 73.098805) + (xy 109.782507 73.110594) (xy 109.799148 73.121288) (xy 109.799393 73.120923) (xy 109.804458 73.124307) + (xy 109.804462 73.12431) (xy 109.978273 73.217214) (xy 110.166868 73.274424) (xy 110.363 73.293741) + (xy 110.559132 73.274424) (xy 110.747727 73.217214) (xy 110.921538 73.12431) (xy 110.921544 73.124304) + (xy 110.926607 73.120923) (xy 110.927624 73.122445) (xy 110.984021 73.098484) (xy 111.05289 73.110266) + (xy 111.069424 73.120889) (xy 111.069678 73.12051) (xy 111.074738 73.123891) (xy 111.248465 73.216749) + (xy 111.383 73.257559) (xy 111.383 72.537338) (xy 111.464115 72.600472) (xy 111.574595 72.6384) + (xy 111.662005 72.6384) (xy 111.748216 72.624014) (xy 111.850947 72.568419) (xy 111.883 72.5336) + (xy 111.883 73.257559) (xy 112.017538 73.216748) (xy 112.070047 73.188682) (xy 112.13845 73.17444) + (xy 112.203694 73.19944) (xy 112.245064 73.255745) (xy 112.2525 73.29804) (xy 112.2525 80.584893) + (xy 112.250732 80.600904) (xy 112.250974 80.600927) (xy 112.250239 80.608694) (xy 112.252468 80.679636) + (xy 112.252499 80.681581) (xy 112.252499 80.711328) (xy 112.253418 80.718604) (xy 112.253876 80.724423) + (xy 112.255402 80.772967) (xy 112.255403 80.77297) (xy 112.261323 80.793348) (xy 112.265268 80.812396) + (xy 112.267928 80.833454) (xy 112.267931 80.833464) (xy 112.285813 80.87863) (xy 112.287705 80.884158) + (xy 112.301254 80.930795) (xy 112.301255 80.930797) (xy 112.31206 80.949066) (xy 112.320617 80.966534) + (xy 112.326226 80.9807) (xy 112.328432 80.986272) (xy 112.356983 81.02557) (xy 112.360188 81.030449) + (xy 112.384919 81.072265) (xy 112.384923 81.072269) (xy 112.399925 81.087271) (xy 112.412563 81.102069) + (xy 112.425033 81.119233) (xy 112.425036 81.119236) (xy 112.425037 81.119237) (xy 112.462476 81.150209) + (xy 112.466776 81.154122) (xy 113.761171 82.448517) (xy 115.024164 83.71151) (xy 115.034235 83.72408) + (xy 115.034422 83.723926) (xy 115.039395 83.729937) (xy 115.091142 83.778531) (xy 115.092509 83.779855) + (xy 115.112154 83.7995) (xy 115.113567 83.800913) (xy 115.119358 83.805405) (xy 115.123798 83.809198) + (xy 115.133762 83.818554) (xy 115.159207 83.842448) (xy 115.177798 83.852668) (xy 115.194063 83.863352) + (xy 115.210834 83.876361) (xy 115.210837 83.876363) (xy 115.255427 83.895658) (xy 115.260656 83.89822) + (xy 115.303232 83.921627) (xy 115.323793 83.926905) (xy 115.342197 83.933207) (xy 115.361674 83.941636) + (xy 115.399527 83.94763) (xy 115.409654 83.949235) (xy 115.415364 83.950417) (xy 115.462423 83.9625) + (xy 115.483645 83.9625) (xy 115.503042 83.964026) (xy 115.524005 83.967347) (xy 115.572372 83.962774) + (xy 115.578209 83.9625) (xy 117.534625 83.9625) (xy 117.601664 83.982185) (xy 117.60751 83.986182) + (xy 117.758865 84.096148) (xy 117.75887 84.096151) (xy 117.931792 84.173142) (xy 117.931797 84.173144) + (xy 118.116954 84.2125) (xy 118.116955 84.2125) (xy 118.306244 84.2125) (xy 118.306246 84.2125) + (xy 118.491403 84.173144) (xy 118.66433 84.096151) (xy 118.817471 83.984888) (xy 118.944133 83.844216) + (xy 119.038779 83.680284) (xy 119.097274 83.500256) (xy 119.11706 83.312) (xy 119.097274 83.123744) + (xy 119.038779 82.943716) (xy 118.944133 82.779784) (xy 118.817471 82.639112) (xy 118.798297 82.625181) + (xy 118.664334 82.527851) (xy 118.664329 82.527848) (xy 118.491407 82.450857) (xy 118.491402 82.450855) + (xy 118.345601 82.419865) (xy 118.306246 82.4115) (xy 118.116954 82.4115) (xy 118.084497 82.418398) + (xy 117.931797 82.450855) (xy 117.931792 82.450857) (xy 117.75887 82.527848) (xy 117.758865 82.527851) + (xy 117.60751 82.637818) (xy 117.541704 82.661298) (xy 117.534625 82.6615) (xy 115.865408 82.6615) + (xy 115.798369 82.641815) (xy 115.777727 82.625181) (xy 113.589819 80.437273) (xy 113.556334 80.37595) + (xy 113.5535 80.349592) (xy 113.5535 73.412899) (xy 113.573185 73.34586) (xy 113.625989 73.300105) + (xy 113.677495 73.288899) (xy 114.720872 73.288899) (xy 114.780483 73.282491) (xy 114.915331 73.232196) + (xy 115.030546 73.145946) (xy 115.116796 73.030731) (xy 115.167091 72.895883) (xy 115.1735 72.836273) + (xy 115.173499 71.740528) (xy 115.167091 71.680917) (xy 115.144604 71.620627) (xy 115.116797 71.546071) + (xy 115.116793 71.546064) (xy 115.030547 71.430855) (xy 115.030544 71.430852) (xy 114.915335 71.344606) + (xy 114.915328 71.344602) (xy 114.780482 71.294308) (xy 114.780483 71.294308) (xy 114.720883 71.287901) + (xy 114.720881 71.2879) (xy 114.720873 71.2879) (xy 114.720864 71.2879) (xy 113.625129 71.2879) + (xy 113.625123 71.287901) (xy 113.565516 71.294308) (xy 113.430671 71.344602) (xy 113.430666 71.344605) + (xy 113.422614 71.350633) (xy 113.357149 71.375048) (xy 113.29353 71.361504) (xy 113.293359 71.361918) + (xy 113.291123 71.360992) (xy 113.28985 71.360721) (xy 113.287729 71.359587) (xy 113.287728 71.359586) + (xy 113.287727 71.359586) (xy 113.099132 71.302376) (xy 113.099129 71.302375) (xy 112.903 71.283059) + (xy 112.70687 71.302375) (xy 112.518266 71.359588) (xy 112.344467 71.452486) (xy 112.339399 71.455873) + (xy 112.338386 71.454358) (xy 112.281936 71.47832) (xy 112.213071 71.466515) (xy 112.196574 71.455911) + (xy 112.196322 71.45629) (xy 112.191253 71.452903) (xy 112.017541 71.360052) (xy 111.883 71.319239) + (xy 111.883 72.039461) (xy 111.801885 71.976328) (xy 111.691405 71.9384) (xy 111.603995 71.9384) + (xy 111.517784 71.952786) (xy 111.415053 72.008381) (xy 111.383 72.043199) (xy 111.383 71.319239) + (xy 111.382999 71.319239) (xy 111.248458 71.360052) (xy 111.074742 71.452905) (xy 111.069673 71.456293) + (xy 111.068556 71.454621) (xy 111.012715 71.478321) (xy 110.943851 71.466511) (xy 110.926811 71.455558) + (xy 110.926601 71.455873) (xy 110.921532 71.452486) (xy 110.747733 71.359588) (xy 110.747727 71.359586) + (xy 110.559132 71.302376) (xy 110.559129 71.302375) (xy 110.363 71.283059) (xy 110.16687 71.302375) + (xy 109.978266 71.359588) (xy 109.804465 71.452487) (xy 109.799405 71.455869) (xy 109.798314 71.454236) + (xy 109.742317 71.478) (xy 109.673453 71.466187) (xy 109.656844 71.455509) (xy 109.656601 71.455874) + (xy 109.65154 71.452491) (xy 109.651538 71.45249) (xy 109.611056 71.430852) (xy 109.47773 71.359587) + (xy 109.428341 71.344605) (xy 109.289132 71.302376) (xy 109.289129 71.302375) (xy 109.093 71.283059) + (xy 108.89687 71.302375) (xy 108.708266 71.359588) (xy 108.534465 71.452487) (xy 108.529405 71.455869) + (xy 108.528314 71.454236) (xy 108.472317 71.478) (xy 108.403453 71.466187) (xy 108.386844 71.455509) + (xy 108.386601 71.455874) (xy 108.38154 71.452491) (xy 108.381538 71.45249) (xy 108.341056 71.430852) + (xy 108.20773 71.359587) (xy 108.158341 71.344605) (xy 108.019132 71.302376) (xy 108.019129 71.302375) + (xy 107.823 71.283059) (xy 107.62687 71.302375) (xy 107.438266 71.359588) (xy 107.264467 71.452486) + (xy 107.26446 71.45249) (xy 107.112116 71.577516) (xy 106.98709 71.72986) (xy 106.987086 71.729867) + (xy 106.894188 71.903666) (xy 106.836975 72.09227) (xy 106.817659 72.2884) (xy 106.836975 72.484529) + (xy 106.836976 72.484532) (xy 106.892024 72.666001) (xy 106.894188 72.673133) (xy 106.987086 72.846932) + (xy 106.98709 72.846939) (xy 107.112116 72.999283) (xy 107.127161 73.011629) (xy 107.166498 73.069373) + (xy 107.1725 73.107485) (xy 107.1725 77.276191) (xy 107.152815 77.34323) (xy 107.136181 77.363872) + (xy 102.978484 81.521568) (xy 102.96591 81.531643) (xy 102.966065 81.53183) (xy 102.960058 81.536798) + (xy 102.911468 81.588542) (xy 102.910114 81.589938) (xy 102.88909 81.610963) (xy 102.889078 81.610977) + (xy 102.884587 81.616765) (xy 102.880801 81.621197) (xy 102.847552 81.656606) (xy 102.837322 81.675213) + (xy 102.826646 81.691464) (xy 102.81364 81.708232) (xy 102.813636 81.708238) (xy 102.794348 81.752811) + (xy 102.791777 81.758058) (xy 102.768372 81.80063) (xy 102.768372 81.800631) (xy 102.763091 81.821199) + (xy 102.756791 81.839601) (xy 102.748364 81.859073) (xy 102.740766 81.907047) (xy 102.739581 81.91277) + (xy 102.7275 81.959818) (xy 102.7275 81.981044) (xy 102.725973 82.000444) (xy 102.722653 82.021403) + (xy 102.727225 82.069767) (xy 102.7275 82.075606) (xy 102.7275 86.705078) (xy 102.707815 86.772117) + (xy 102.69565 86.78805) (xy 102.645466 86.843785) (xy 102.550821 87.007715) (xy 102.550818 87.007722) + (xy 102.492986 87.185712) (xy 102.492326 87.187744) (xy 102.47254 87.376) (xy 102.492326 87.564256) + (xy 102.492327 87.564259) (xy 102.550818 87.744277) (xy 102.550821 87.744284) (xy 102.645467 87.908216) + (xy 102.741536 88.014911) (xy 102.772127 88.048886) (xy 102.773249 88.049896) (xy 102.773709 88.050642) + (xy 102.776478 88.053718) (xy 102.775915 88.054224) (xy 102.809899 88.109381) (xy 102.80857 88.179238) + (xy 102.769686 88.237288) (xy 102.714107 88.261468) (xy 102.714498 88.262989) (xy 102.706939 88.264929) + (xy 102.661775 88.282811) (xy 102.656247 88.284703) (xy 102.609602 88.298255) (xy 102.596248 88.306152) + (xy 102.592905 88.30813) (xy 102.591332 88.30906) (xy 102.573863 88.317618) (xy 102.554128 88.325432) + (xy 102.554126 88.325433) (xy 102.514839 88.353977) (xy 102.509956 88.357184) (xy 102.468132 88.381919) + (xy 102.453126 88.396926) (xy 102.438336 88.409558) (xy 102.421167 88.422032) (xy 102.421165 88.422034) + (xy 102.390194 88.45947) (xy 102.386262 88.463791) (xy 101.200483 89.649569) (xy 101.18791 89.659643) + (xy 101.188065 89.65983) (xy 101.182058 89.664798) (xy 101.133468 89.716542) (xy 101.132114 89.717938) + (xy 101.11109 89.738963) (xy 101.111078 89.738977) (xy 101.106587 89.744765) (xy 101.102801 89.749197) + (xy 101.069552 89.784606) (xy 101.059322 89.803213) (xy 101.048646 89.819464) (xy 101.03564 89.836232) + (xy 101.035636 89.836238) (xy 101.016348 89.880811) (xy 101.013777 89.886058) (xy 100.990372 89.92863) + (xy 100.990372 89.928631) (xy 100.985091 89.949199) (xy 100.978791 89.967601) (xy 100.970364 89.987073) + (xy 100.962766 90.035047) (xy 100.961581 90.04077) (xy 100.9495 90.087818) (xy 100.9495 90.109044) + (xy 100.947973 90.128444) (xy 100.944653 90.149403) (xy 100.944652 90.149405) (xy 100.949224 90.197769) + (xy 100.949499 90.203606) (xy 100.9495 90.486042) (xy 100.929816 90.553081) (xy 100.890598 90.59158) + (xy 100.881344 90.597287) (xy 100.757289 90.721342) (xy 100.665187 90.870663) (xy 100.665185 90.870668) + (xy 100.64998 90.916554) (xy 100.610001 91.037203) (xy 100.610001 91.037204) (xy 100.61 91.037204) + (xy 100.5995 91.139983) (xy 100.5995 91.740001) (xy 100.599501 91.740019) (xy 100.61 91.842796) + (xy 100.610001 91.842799) (xy 100.65792 91.987407) (xy 100.665186 92.009334) (xy 100.757288 92.158656) + (xy 100.881344 92.282712) (xy 101.030666 92.374814) (xy 101.197203 92.429999) (xy 101.299991 92.4405) + (xy 101.515949 92.440499) (xy 101.582987 92.460183) (xy 101.628742 92.512987) (xy 101.638686 92.582145) + (xy 101.609661 92.645701) (xy 101.60363 92.65218) (xy 101.482159 92.773651) (xy 101.391593 92.920481) + (xy 101.391591 92.920486) (xy 101.372335 92.978597) (xy 101.337326 93.084247) (xy 101.337326 93.084248) + (xy 101.337325 93.084248) (xy 101.327 93.185315) (xy 101.327 93.758669) (xy 101.327001 93.758687) + (xy 101.337325 93.859752) (xy 101.352248 93.904785) (xy 101.382084 93.994824) (xy 101.391592 94.023515) + (xy 101.391593 94.023518) (xy 101.404205 94.043965) (xy 101.479919 94.166717) (xy 101.482161 94.170351) + (xy 101.596038 94.284228) (xy 101.629523 94.345551) (xy 101.624539 94.415243) (xy 101.607624 94.44622) + (xy 101.604454 94.450453) (xy 101.604454 94.450454) (xy 101.580922 94.481887) (xy 101.518203 94.565669) + (xy 101.518202 94.565671) (xy 101.467908 94.700517) (xy 101.461501 94.760116) (xy 101.461501 94.760123) + (xy 101.4615 94.760135) (xy 101.4615 96.75587) (xy 101.461501 96.755876) (xy 101.467908 96.815483) + (xy 101.518202 96.950328) (xy 101.518206 96.950335) (xy 101.604452 97.065544) (xy 101.604453 97.065544) + (xy 101.604454 97.065546) (xy 101.629415 97.084232) (xy 101.629418 97.084234) (xy 101.671288 97.140168) + (xy 101.676272 97.20986) (xy 101.642786 97.271182) (xy 101.581462 97.304667) (xy 101.555106 97.3075) + (xy 100.964129 97.3075) (xy 100.964123 97.307501) (xy 100.904516 97.313908) (xy 100.769671 97.364202) + (xy 100.769664 97.364206) (xy 100.654455 97.450452) (xy 100.654452 97.450455) (xy 100.568206 97.565664) + (xy 100.568202 97.565671) (xy 100.517908 97.700517) (xy 100.511709 97.758184) (xy 100.511501 97.760123) + (xy 100.5115 97.760135) (xy 100.5115 98.0315) (xy 100.491815 98.098539) (xy 100.439011 98.144294) + (xy 100.3875 98.1555) (xy 99.335858 98.1555) (xy 99.268819 98.135815) (xy 99.223064 98.083011) (xy 99.114288 97.844824) + (xy 99.114275 97.844801) (xy 98.959578 97.604088) (xy 98.959574 97.604082) (xy 98.772181 97.387818) + (xy 98.555917 97.200425) (xy 98.555911 97.200421) (xy 98.315198 97.045724) (xy 98.315175 97.045711) + (xy 98.054894 96.926845) (xy 97.780328 96.846225) (xy 97.780318 96.846223) (xy 97.640301 96.826092) + (xy 97.497079 96.8055) (xy 97.210921 96.8055) (xy 97.184961 96.809232) (xy 96.927682 96.846222) + (xy 96.927672 96.846225) (xy 96.653106 96.926845) (xy 96.392825 97.045711) (xy 96.392802 97.045724) + (xy 96.152089 97.200421) (xy 96.152083 97.200425) (xy 95.989957 97.340908) (xy 95.989931 97.340932) + (xy 95.799684 97.531181) (xy 95.738361 97.564666) (xy 95.712003 97.5675) (xy 90.936223 97.5675) + (xy 90.869184 97.547815) (xy 90.823429 97.495011) (xy 90.813485 97.425853) (xy 90.84251 97.362297) + (xy 90.848542 97.355819) (xy 90.947015 97.257345) (xy 91.039056 97.108124) (xy 91.039058 97.108119) + (xy 91.094205 96.941697) (xy 91.094206 96.94169) (xy 91.104699 96.838986) (xy 91.1047 96.838973) + (xy 91.1047 96.389) (xy 88.779701 96.389) (xy 88.779701 96.838986) (xy 88.790194 96.941697) (xy 88.845341 97.108119) + (xy 88.845343 97.108124) (xy 88.937384 97.257345) (xy 89.035858 97.355819) (xy 89.069343 97.417142) + (xy 89.064359 97.486834) (xy 89.022487 97.542767) (xy 88.957023 97.567184) (xy 88.948177 97.5675) + (xy 87.81193 97.5675) (xy 87.744891 97.547815) (xy 87.699136 97.495011) (xy 87.689192 97.425853) + (xy 87.718217 97.362297) (xy 87.724249 97.355819) (xy 87.772568 97.3075) (xy 87.822412 97.257656) + (xy 87.914514 97.108334) (xy 87.969699 96.941797) (xy 87.9802 96.839009) (xy 87.980199 95.889) (xy 88.7797 95.889) + (xy 89.6922 95.889) (xy 89.6922 94.739) (xy 90.1922 94.739) (xy 90.1922 95.889) (xy 91.104699 95.889) + (xy 91.104699 95.439028) (xy 91.104698 95.439013) (xy 91.094205 95.336302) (xy 91.039058 95.16988) + (xy 91.039056 95.169875) (xy 90.947015 95.020654) (xy 90.823045 94.896684) (xy 90.673824 94.804643) + (xy 90.673819 94.804641) (xy 90.507397 94.749494) (xy 90.50739 94.749493) (xy 90.404686 94.739) + (xy 90.1922 94.739) (xy 89.6922 94.739) (xy 89.479729 94.739) (xy 89.479712 94.739001) (xy 89.377002 94.749494) + (xy 89.21058 94.804641) (xy 89.210575 94.804643) (xy 89.061354 94.896684) (xy 88.937384 95.020654) + (xy 88.845343 95.169875) (xy 88.845341 95.16988) (xy 88.790194 95.336302) (xy 88.790193 95.336309) + (xy 88.7797 95.439013) (xy 88.7797 95.889) (xy 87.980199 95.889) (xy 87.980199 95.438992) (xy 87.980015 95.437195) + (xy 87.969699 95.336203) (xy 87.969698 95.3362) (xy 87.914514 95.169666) (xy 87.822412 95.020344) + (xy 87.698356 94.896288) (xy 87.549034 94.804186) (xy 87.382497 94.749001) (xy 87.382495 94.749) + (xy 87.27971 94.7385) (xy 86.354698 94.7385) (xy 86.35468 94.738501) (xy 86.251903 94.749) (xy 86.2519 94.749001) + (xy 86.085368 94.804185) (xy 86.085363 94.804187) (xy 85.936042 94.896289) (xy 85.811989 95.020342) + (xy 85.719887 95.169663) (xy 85.719885 95.169668) (xy 85.719815 95.16988) (xy 85.675535 95.303505) + (xy 85.635764 95.360949) (xy 85.571249 95.387772) (xy 85.557831 95.3885) (xy 84.81723 95.3885) (xy 84.750191 95.368815) + (xy 84.729549 95.352181) (xy 82.930419 93.553051) (xy 82.896934 93.491728) (xy 82.8941 93.46537) + (xy 82.8941 91.987407) (xy 82.913785 91.920368) (xy 82.966589 91.874613) (xy 83.035747 91.864669) + (xy 83.099303 91.893694) (xy 83.105766 91.899712) (xy 83.624683 92.418629) (xy 84.086964 92.88091) + (xy 84.097035 92.89348) (xy 84.097222 92.893326) (xy 84.102195 92.899337) (xy 84.102197 92.899339) + (xy 84.102198 92.89934) (xy 84.124711 92.920481) (xy 84.153942 92.947931) (xy 84.155309 92.949255) + (xy 84.176365 92.970311) (xy 84.176368 92.970313) (xy 84.182157 92.974805) (xy 84.186597 92.978597) + (xy 84.215898 93.006111) (xy 84.222007 93.011848) (xy 84.225219 93.013614) (xy 84.240605 93.022072) + (xy 84.25687 93.032757) (xy 84.273632 93.04576) (xy 84.273635 93.045761) (xy 84.273636 93.045762) + (xy 84.318223 93.065056) (xy 84.323459 93.067621) (xy 84.366032 93.091027) (xy 84.38174 93.095059) + (xy 84.386586 93.096304) (xy 84.404998 93.102607) (xy 84.424473 93.111035) (xy 84.472471 93.118637) + (xy 84.47814 93.119811) (xy 84.525223 93.1319) (xy 84.546451 93.1319) (xy 84.565848 93.133426) (xy 84.586803 93.136745) + (xy 84.586804 93.136746) (xy 84.586804 93.136745) (xy 84.586805 93.136746) (xy 84.63516 93.132175) + (xy 84.640999 93.1319) (xy 90.813825 93.1319) (xy 90.880864 93.151585) (xy 90.88671 93.155582) (xy 91.038065 93.265548) + (xy 91.03807 93.265551) (xy 91.210992 93.342542) (xy 91.210997 93.342544) (xy 91.396154 93.3819) + (xy 91.396155 93.3819) (xy 91.585444 93.3819) (xy 91.585446 93.3819) (xy 91.770603 93.342544) (xy 91.94353 93.265551) + (xy 92.096671 93.154288) (xy 92.223333 93.013616) (xy 92.317979 92.849684) (xy 92.376474 92.669656) + (xy 92.39626 92.4814) (xy 92.376474 92.293144) (xy 92.317979 92.113116) (xy 92.223333 91.949184) + (xy 92.096671 91.808512) (xy 92.077497 91.794581) (xy 91.943534 91.697251) (xy 91.943529 91.697248) + (xy 91.770607 91.620257) (xy 91.770602 91.620255) (xy 91.6248 91.589265) (xy 91.585446 91.5809) + (xy 91.396154 91.5809) (xy 91.363697 91.587798) (xy 91.210997 91.620255) (xy 91.210992 91.620257) + (xy 91.03807 91.697248) (xy 91.038065 91.697251) (xy 90.88671 91.807218) (xy 90.820904 91.830698) + (xy 90.813825 91.8309) (xy 84.928208 91.8309) (xy 84.861169 91.811215) (xy 84.840527 91.794581) + (xy 83.998819 90.952873) (xy 83.965334 90.89155) (xy 83.9625 90.865192) (xy 83.9625 88.680703) (xy 83.964268 88.664691) + (xy 83.964026 88.664669) (xy 83.96476 88.656905) (xy 83.964418 88.646005) (xy 84.600357 88.646005) + (xy 84.62089 88.893812) (xy 84.620892 88.893824) (xy 84.681936 89.134881) (xy 84.781826 89.362606) + (xy 84.917833 89.570782) (xy 84.917836 89.570785) (xy 85.086256 89.753738) (xy 85.282491 89.906474) + (xy 85.314839 89.92398) (xy 85.500332 90.024364) (xy 85.50119 90.024828) (xy 85.684688 90.087823) + (xy 85.734964 90.105083) (xy 85.736386 90.105571) (xy 85.981665 90.1465) (xy 86.230335 90.1465) + (xy 86.475614 90.105571) (xy 86.71081 90.024828) (xy 86.929509 89.906474) (xy 87.125744 89.753738) + (xy 87.294164 89.570785) (xy 87.430173 89.362607) (xy 87.530063 89.134881) (xy 87.591108 88.893821) + (xy 87.591116 88.893729) (xy 87.611643 88.646005) (xy 88.410858 88.646005) (xy 88.431385 88.893729) + (xy 88.431387 88.893738) (xy 88.492412 89.134717) (xy 88.592266 89.362364) (xy 88.692564 89.515882) + (xy 89.432923 88.775523) (xy 89.456507 88.855844) (xy 89.534239 88.976798) (xy 89.6429 89.070952) + (xy 89.773685 89.13068) (xy 89.783466 89.132086) (xy 89.045942 89.869609) (xy 89.092768 89.906055) + (xy 89.09277 89.906056) (xy 89.311385 90.024364) (xy 89.311396 90.024369) (xy 89.546506 90.105083) + (xy 89.791707 90.146) (xy 90.040293 90.146) (xy 90.285493 90.105083) (xy 90.520603 90.024369) (xy 90.520614 90.024364) + (xy 90.739228 89.906057) (xy 90.739231 89.906055) (xy 90.786056 89.869609) (xy 90.048533 89.132086) + (xy 90.058315 89.13068) (xy 90.1891 89.070952) (xy 90.297761 88.976798) (xy 90.375493 88.855844) + (xy 90.399076 88.775524) (xy 91.139434 89.515882) (xy 91.239731 89.362369) (xy 91.339587 89.134717) + (xy 91.400612 88.893738) (xy 91.400614 88.893729) (xy 91.421141 88.646005) (xy 91.421141 88.645994) + (xy 91.400614 88.39827) (xy 91.400612 88.398261) (xy 91.339587 88.157282) (xy 91.239731 87.92963) + (xy 91.160138 87.807805) (xy 93.973458 87.807805) (xy 93.993985 88.055529) (xy 93.993987 88.055538) + (xy 94.055012 88.296517) (xy 94.154866 88.524164) (xy 94.255164 88.677682) (xy 94.995523 87.937323) + (xy 95.019107 88.017644) (xy 95.096839 88.138598) (xy 95.2055 88.232752) (xy 95.336285 88.29248) + (xy 95.346066 88.293886) (xy 94.608542 89.031409) (xy 94.655368 89.067855) (xy 94.65537 89.067856) + (xy 94.873985 89.186164) (xy 94.873996 89.186169) (xy 95.109106 89.266883) (xy 95.354307 89.3078) + (xy 95.602893 89.3078) (xy 95.848093 89.266883) (xy 96.083203 89.186169) (xy 96.083214 89.186164) + (xy 96.301828 89.067857) (xy 96.301831 89.067855) (xy 96.348656 89.031409) (xy 95.611133 88.293886) + (xy 95.620915 88.29248) (xy 95.7517 88.232752) (xy 95.860361 88.138598) (xy 95.938093 88.017644) + (xy 95.961676 87.937324) (xy 96.702034 88.677682) (xy 96.802331 88.524169) (xy 96.902187 88.296517) + (xy 96.963212 88.055538) (xy 96.963214 88.055529) (xy 96.983741 87.807805) (xy 96.983741 87.807794) + (xy 96.963214 87.56007) (xy 96.963212 87.560061) (xy 96.902187 87.319082) (xy 96.802331 87.09143) + (xy 96.702034 86.937916) (xy 95.961676 87.678274) (xy 95.938093 87.597956) (xy 95.860361 87.477002) + (xy 95.7517 87.382848) (xy 95.620915 87.32312) (xy 95.611134 87.321713) (xy 96.348657 86.58419) + (xy 96.348656 86.584189) (xy 96.301829 86.547743) (xy 96.083214 86.429435) (xy 96.083203 86.42943) + (xy 95.848093 86.348716) (xy 95.602893 86.3078) (xy 95.354307 86.3078) (xy 95.109106 86.348716) + (xy 94.873996 86.42943) (xy 94.87399 86.429432) (xy 94.655361 86.547749) (xy 94.608542 86.584188) + (xy 94.608542 86.58419) (xy 95.346066 87.321713) (xy 95.336285 87.32312) (xy 95.2055 87.382848) + (xy 95.096839 87.477002) (xy 95.019107 87.597956) (xy 94.995523 87.678275) (xy 94.255164 86.937916) + (xy 94.154867 87.091432) (xy 94.055012 87.319082) (xy 93.993987 87.560061) (xy 93.993985 87.56007) + (xy 93.973458 87.807794) (xy 93.973458 87.807805) (xy 91.160138 87.807805) (xy 91.139434 87.776116) + (xy 90.399076 88.516475) (xy 90.375493 88.436156) (xy 90.297761 88.315202) (xy 90.1891 88.221048) + (xy 90.058315 88.16132) (xy 90.048534 88.159913) (xy 90.786057 87.42239) (xy 90.786056 87.422389) + (xy 90.739229 87.385943) (xy 90.520614 87.267635) (xy 90.520603 87.26763) (xy 90.285493 87.186916) + (xy 90.040293 87.146) (xy 89.791707 87.146) (xy 89.546506 87.186916) (xy 89.311396 87.26763) (xy 89.31139 87.267632) + (xy 89.092761 87.385949) (xy 89.045942 87.422388) (xy 89.045942 87.42239) (xy 89.783466 88.159913) + (xy 89.773685 88.16132) (xy 89.6429 88.221048) (xy 89.534239 88.315202) (xy 89.456507 88.436156) + (xy 89.432923 88.516475) (xy 88.692564 87.776116) (xy 88.592267 87.929632) (xy 88.492412 88.157282) + (xy 88.431387 88.398261) (xy 88.431385 88.39827) (xy 88.410858 88.645994) (xy 88.410858 88.646005) + (xy 87.611643 88.646005) (xy 87.611643 88.645994) (xy 87.591109 88.398187) (xy 87.591107 88.398175) + (xy 87.530063 88.157118) (xy 87.430173 87.929393) (xy 87.294166 87.721217) (xy 87.239513 87.661848) + (xy 87.125744 87.538262) (xy 86.929509 87.385526) (xy 86.929507 87.385525) (xy 86.929506 87.385524) + (xy 86.710811 87.267172) (xy 86.710802 87.267169) (xy 86.475616 87.186429) (xy 86.230335 87.1455) + (xy 85.981665 87.1455) (xy 85.736383 87.186429) (xy 85.501197 87.267169) (xy 85.501188 87.267172) + (xy 85.282493 87.385524) (xy 85.086257 87.538261) (xy 84.917833 87.721217) (xy 84.781826 87.929393) + (xy 84.681936 88.157118) (xy 84.620892 88.398175) (xy 84.62089 88.398187) (xy 84.600357 88.645994) + (xy 84.600357 88.646005) (xy 83.964418 88.646005) (xy 83.962531 88.585949) (xy 83.9625 88.584002) + (xy 83.9625 88.554278) (xy 83.9625 88.554275) (xy 83.961579 88.546992) (xy 83.961123 88.541187) + (xy 83.961099 88.540414) (xy 83.959598 88.492631) (xy 83.953676 88.47225) (xy 83.949731 88.453195) + (xy 83.947072 88.432149) (xy 83.947071 88.432148) (xy 83.947071 88.432142) (xy 83.929189 88.386979) + (xy 83.9273 88.381459) (xy 83.919816 88.3557) (xy 83.913745 88.334802) (xy 83.906294 88.322203) + (xy 83.902936 88.316524) (xy 83.894378 88.299055) (xy 83.886568 88.279329) (xy 83.858006 88.240018) + (xy 83.854818 88.235164) (xy 83.830081 88.193335) (xy 83.815075 88.178329) (xy 83.802435 88.16353) + (xy 83.800853 88.161353) (xy 83.789963 88.146363) (xy 83.789961 88.14636) (xy 83.752528 88.115394) + (xy 83.748206 88.11146) (xy 83.095834 87.459088) (xy 83.085761 87.446514) (xy 83.085574 87.44667) + (xy 83.080598 87.440655) (xy 83.046857 87.408971) (xy 83.028832 87.392045) (xy 83.027458 87.390712) + (xy 83.006435 87.369689) (xy 83.00064 87.365194) (xy 82.996198 87.361399) (xy 82.960796 87.328154) + (xy 82.960788 87.328148) (xy 82.942192 87.317925) (xy 82.925931 87.307244) (xy 82.909163 87.294237) + (xy 82.885695 87.284082) (xy 82.864578 87.274943) (xy 82.859356 87.272386) (xy 82.816768 87.248973) + (xy 82.816765 87.248972) (xy 82.796201 87.243692) (xy 82.777796 87.23739) (xy 82.758327 87.228965) + (xy 82.758321 87.228963) (xy 82.710351 87.221366) (xy 82.704636 87.220182) (xy 82.685997 87.215397) + (xy 82.65758 87.2081) (xy 82.657577 87.2081) (xy 82.636355 87.2081) (xy 82.616955 87.206573) (xy 82.595996 87.203253) + (xy 82.595995 87.203253) (xy 82.572186 87.205503) (xy 82.54763 87.207825) (xy 82.541792 87.2081) + (xy 81.423575 87.2081) (xy 81.356536 87.188415) (xy 81.35069 87.184418) (xy 81.199334 87.074451) + (xy 81.199329 87.074448) (xy 81.026407 86.997457) (xy 81.026402 86.997455) (xy 80.8806 86.966465) + (xy 80.841246 86.9581) (xy 80.651954 86.9581) (xy 80.619497 86.964998) (xy 80.466797 86.997455) + (xy 80.466792 86.997457) (xy 80.29387 87.074448) (xy 80.293865 87.074451) (xy 80.140729 87.185711) + (xy 80.014066 87.326385) (xy 79.919421 87.490315) (xy 79.919418 87.490322) (xy 79.860927 87.67034) + (xy 79.860926 87.670344) (xy 79.850559 87.768984) (xy 79.841898 87.851392) (xy 79.84114 87.8586) + (xy 79.860926 88.046856) (xy 79.860927 88.046859) (xy 79.919418 88.226877) (xy 79.919421 88.226884) + (xy 80.014067 88.390816) (xy 80.087393 88.472252) (xy 80.140729 88.531488) (xy 80.293865 88.642748) + (xy 80.29387 88.642751) (xy 80.466792 88.719742) (xy 80.466797 88.719744) (xy 80.651954 88.7591) + (xy 80.651955 88.7591) (xy 80.841244 88.7591) (xy 80.841246 88.7591) (xy 80.935494 88.739067) (xy 81.005161 88.744383) + (xy 81.060895 88.78652) (xy 81.085 88.8521) (xy 81.080541 88.894291) (xy 81.057203 88.976314) (xy 81.057202 88.976317) + (xy 81.038385 89.179399) (xy 81.038385 89.1794) (xy 81.057202 89.382482) (xy 81.113017 89.578647) + (xy 81.113022 89.57866) (xy 81.191617 89.736499) (xy 81.203927 89.761221) (xy 81.3133 89.906055) + (xy 81.326837 89.92398) (xy 81.352638 89.947501) (xy 81.38892 90.007212) (xy 81.3931 90.039138) + (xy 81.3931 93.763894) (xy 81.391791 93.781863) (xy 81.38831 93.805625) (xy 81.392864 93.857664) + (xy 81.3931 93.86307) (xy 81.3931 93.871312) (xy 81.396802 93.902991) (xy 81.396986 93.904785) (xy 81.4036 93.980392) + (xy 81.405061 93.987467) (xy 81.405003 93.987478) (xy 81.406634 93.994837) (xy 81.406692 93.994824) + (xy 81.408357 94.001849) (xy 81.408358 94.001854) (xy 81.408359 94.001855) (xy 81.416243 94.023518) + (xy 81.434308 94.073151) (xy 81.434899 94.074853) (xy 81.458782 94.146926) (xy 81.461836 94.153474) + (xy 81.461782 94.153498) (xy 81.46507 94.160288) (xy 81.465121 94.160263) (xy 81.468361 94.166713) + (xy 81.468362 94.166714) (xy 81.468363 94.166717) (xy 81.510094 94.230167) (xy 81.511043 94.231658) + (xy 81.548471 94.292338) (xy 81.550889 94.296257) (xy 81.555366 94.301919) (xy 81.555319 94.301956) + (xy 81.560082 94.307802) (xy 81.560128 94.307764) (xy 81.564773 94.313299) (xy 81.619964 94.365369) + (xy 81.621258 94.366626) (xy 83.879267 96.624634) (xy 83.891048 96.638266) (xy 83.90539 96.65753) + (xy 83.94542 96.691119) (xy 83.949392 96.694759) (xy 83.952312 96.697679) (xy 83.95522 96.700588) + (xy 83.980252 96.720381) (xy 83.981649 96.721519) (xy 83.995928 96.7335) (xy 84.039786 96.770302) + (xy 84.039794 96.770306) (xy 84.045824 96.774273) (xy 84.04579 96.774323) (xy 84.052137 96.778366) + (xy 84.052169 96.778316) (xy 84.058321 96.78211) (xy 84.058322 96.78211) (xy 84.058323 96.782111) + (xy 84.127143 96.814202) (xy 84.128692 96.814952) (xy 84.196567 96.84904) (xy 84.196576 96.849042) + (xy 84.203355 96.85151) (xy 84.203334 96.851567) (xy 84.210451 96.85404) (xy 84.21047 96.853984) + (xy 84.217324 96.856254) (xy 84.217327 96.856256) (xy 84.291715 96.871615) (xy 84.293352 96.871978) + (xy 84.367279 96.8895) (xy 84.367285 96.8895) (xy 84.374452 96.890338) (xy 84.374445 96.890397) + (xy 84.381946 96.891163) (xy 84.381952 96.891104) (xy 84.389141 96.891733) (xy 84.389143 96.891732) + (xy 84.389144 96.891733) (xy 84.410764 96.891104) (xy 84.465012 96.889526) (xy 84.466815 96.8895) + (xy 85.55783 96.8895) (xy 85.624869 96.909185) (xy 85.670624 96.961989) (xy 85.675536 96.974495) + (xy 85.719886 97.108334) (xy 85.811796 97.257345) (xy 85.811989 97.257657) (xy 85.910151 97.355819) + (xy 85.943636 97.417142) (xy 85.938652 97.486834) (xy 85.89678 97.542767) (xy 85.831316 97.567184) + (xy 85.82247 97.5675) (xy 77.5785 97.5675) (xy 77.511461 97.547815) (xy 77.465706 97.495011) (xy 77.4545 97.4435) + (xy 77.4545 96.131269) (xy 77.474185 96.06423) (xy 77.526989 96.018475) (xy 77.539486 96.013566) + (xy 77.673334 95.969214) (xy 77.822656 95.877112) (xy 77.946712 95.753056) (xy 78.038814 95.603734) + (xy 78.093999 95.437197) (xy 78.1045 95.334409) (xy 78.104499 92.234392) (xy 78.096762 92.158656) + (xy 78.093999 92.131603) (xy 78.093998 92.1316) (xy 78.087873 92.113115) (xy 78.038814 91.965066) + (xy 77.946712 91.815744) (xy 77.822656 91.691688) (xy 77.673334 91.599586) (xy 77.506797 91.544401) + (xy 77.506795 91.5444) (xy 77.40401 91.5339) (xy 75.503998 91.5339) (xy 75.503981 91.533901) (xy 75.401203 91.5444) + (xy 75.4012 91.544401) (xy 75.234668 91.599585) (xy 75.234663 91.599587) (xy 75.085342 91.691689) + (xy 74.961289 91.815742) (xy 74.869187 91.965063) (xy 74.869185 91.965066) (xy 74.869186 91.965066) + (xy 74.814001 92.131603) (xy 74.814001 92.131604) (xy 74.814 92.131604) (xy 74.8035 92.234383) (xy 74.8035 95.334401) + (xy 74.803501 95.334418) (xy 74.814 95.437196) (xy 74.814001 95.437199) (xy 74.869185 95.603731) + (xy 74.869187 95.603736) (xy 74.869745 95.604641) (xy 74.961288 95.753056) (xy 75.085344 95.877112) + (xy 75.234666 95.969214) (xy 75.368505 96.013564) (xy 75.425949 96.053336) (xy 75.452772 96.117851) + (xy 75.4535 96.131269) (xy 75.4535 97.530478) (xy 75.433815 97.597517) (xy 75.381011 97.643272) + (xy 75.372843 97.646656) (xy 75.112838 97.743633) (xy 75.112839 97.743633) (xy 75.096902 97.752335) + (xy 75.03748 97.7675) (xy 74.598129 97.7675) (xy 74.598123 97.767501) (xy 74.538516 97.773908) (xy 74.403671 97.824202) + (xy 74.403664 97.824206) (xy 74.288455 97.910452) (xy 74.288452 97.910455) (xy 74.202206 98.025664) + (xy 74.202202 98.025671) (xy 74.151908 98.160517) (xy 74.145501 98.220116) (xy 74.1455 98.220135) + (xy 74.1455 98.65948) (xy 74.130333 98.718905) (xy 74.121637 98.734831) (xy 74.121633 98.734838) + (xy 74.021628 99.002962) (xy 73.960804 99.282566) (xy 73.94039 99.567998) (xy 73.94039 99.568001) + (xy 73.960804 99.853433) (xy 74.021628 100.133037) (xy 74.02163 100.133043) (xy 74.021631 100.133046) + (xy 74.071721 100.267341) (xy 74.121633 100.401161) (xy 74.121636 100.401166) (xy 74.130332 100.417092) + (xy 74.1455 100.476519) (xy 74.1455 100.91587) (xy 74.145501 100.915876) (xy 74.151908 100.975483) + (xy 74.202202 101.110328) (xy 74.202206 101.110335) (xy 74.288452 101.225544) (xy 74.288455 101.225547) + (xy 74.403664 101.311793) (xy 74.403671 101.311797) (xy 74.448618 101.32856) (xy 74.538517 101.362091) + (xy 74.598127 101.3685) (xy 75.037479 101.368499) (xy 75.096906 101.383667) (xy 75.112839 101.392367) + (xy 75.380954 101.492369) (xy 75.38096 101.49237) (xy 75.380962 101.492371) (xy 75.660566 101.553195) + (xy 75.660568 101.553195) (xy 75.660572 101.553196) (xy 75.874552 101.5685) (xy 86.821952 101.5685) + (xy 91.1283 101.5685) (xy 91.195339 101.588185) (xy 91.241094 101.640989) (xy 91.2523 101.6925) + (xy 91.2523 107.204817) (xy 91.232615 107.271856) (xy 91.215981 107.292498) (xy 88.633891 109.874587) + (xy 88.632767 109.875683) (xy 88.568746 109.936542) (xy 88.533699 109.986894) (xy 88.530862 109.990656) + (xy 88.492102 110.038192) (xy 88.492099 110.038197) (xy 88.476192 110.068647) (xy 88.472124 110.075361) + (xy 88.452502 110.103554) (xy 88.428309 110.15993) (xy 88.426288 110.164184) (xy 88.397891 110.218551) + (xy 88.39789 110.218552) (xy 88.38844 110.251575) (xy 88.385807 110.258971) (xy 88.372259 110.290543) + (xy 88.359913 110.350619) (xy 88.35879 110.355195) (xy 88.341913 110.414177) (xy 88.341913 110.414179) + (xy 88.339303 110.448441) (xy 88.338214 110.456208) (xy 88.33278 110.482652) (xy 88.3313 110.489858) + (xy 88.3313 110.551197) (xy 88.331121 110.555906) (xy 88.326462 110.617074) (xy 88.328507 110.633127) + (xy 88.330803 110.65116) (xy 88.3313 110.658988) (xy 88.331299 113.633833) (xy 88.311614 113.700872) + (xy 88.25881 113.746627) (xy 88.189652 113.756571) (xy 88.126096 113.727546) (xy 88.10349 113.701653) + (xy 88.056168 113.629219) (xy 87.976047 113.542185) (xy 87.887744 113.446262) (xy 87.691509 113.293526) + (xy 87.691507 113.293525) (xy 87.691506 113.293524) (xy 87.472811 113.175172) (xy 87.472802 113.175169) + (xy 87.237616 113.094429) (xy 86.992335 113.0535) (xy 86.743665 113.0535) (xy 86.498383 113.094429) + (xy 86.263197 113.175169) (xy 86.263188 113.175172) (xy 86.044493 113.293524) (xy 85.848257 113.446261) + (xy 85.679833 113.629217) (xy 85.543826 113.837393) (xy 85.443936 114.065118) (xy 85.382892 114.306175) + (xy 85.38289 114.306187) (xy 85.362357 114.553994) (xy 85.362357 114.554005) (xy 85.38289 114.801812) + (xy 85.382892 114.801824) (xy 85.443936 115.042881) (xy 85.543826 115.270606) (xy 85.679833 115.478782) + (xy 85.679836 115.478785) (xy 85.848256 115.661738) (xy 86.044491 115.814474) (xy 86.044493 115.814475) + (xy 86.262332 115.932364) (xy 86.26319 115.932828) (xy 86.377332 115.972013) (xy 86.496964 116.013083) + (xy 86.498386 116.013571) (xy 86.743665 116.0545) (xy 86.992335 116.0545) (xy 87.237614 116.013571) + (xy 87.47281 115.932828) (xy 87.691509 115.814474) (xy 87.887744 115.661738) (xy 88.056164 115.478785) + (xy 88.103491 115.406344) (xy 88.156637 115.360988) (xy 88.225868 115.351564) (xy 88.289204 115.381065) + (xy 88.326536 115.440125) (xy 88.3313 115.474166) (xy 88.3313 116.750306) (xy 88.33128 116.75187) + (xy 88.329949 116.804413) (xy 88.329043 116.840162) (xy 88.329043 116.84017) (xy 88.339864 116.900539) + (xy 88.340518 116.905204) (xy 88.346725 116.96623) (xy 88.346727 116.966244) (xy 88.357008 116.999013) + (xy 88.358879 117.006637) (xy 88.364942 117.040452) (xy 88.364942 117.040455) (xy 88.387694 117.097412) + (xy 88.389274 117.101851) (xy 88.407641 117.160388) (xy 88.407644 117.160395) (xy 88.424309 117.190419) + (xy 88.427679 117.197514) (xy 88.440422 117.229414) (xy 88.440427 117.229424) (xy 88.474177 117.280633) + (xy 88.476618 117.284663) (xy 88.506388 117.338298) (xy 88.506389 117.338299) (xy 88.506391 117.338302) + (xy 88.528768 117.364367) (xy 88.533493 117.370635) (xy 88.546063 117.389706) (xy 88.552398 117.399319) + (xy 88.595778 117.442699) (xy 88.598969 117.446143) (xy 88.638931 117.492692) (xy 88.638934 117.492695) + (xy 88.666094 117.513718) (xy 88.671989 117.518911) (xy 89.373042 118.219963) (xy 89.374101 118.22105) + (xy 89.434937 118.28505) (xy 89.434941 118.285053) (xy 89.485281 118.320092) (xy 89.489043 118.322928) + (xy 89.536587 118.361694) (xy 89.53659 118.361695) (xy 89.536593 118.361698) (xy 89.567045 118.377604) + (xy 89.573758 118.381672) (xy 89.601951 118.401295) (xy 89.658329 118.425489) (xy 89.662578 118.427507) + (xy 89.716951 118.455909) (xy 89.744489 118.463788) (xy 89.749974 118.465358) (xy 89.757368 118.46799) + (xy 89.788942 118.48154) (xy 89.788945 118.48154) (xy 89.788946 118.481541) (xy 89.849022 118.493887) + (xy 89.8536 118.49501) (xy 89.867501 118.498987) (xy 89.912582 118.511887) (xy 89.946839 118.514495) + (xy 89.954614 118.515586) (xy 89.988255 118.5225) (xy 89.988259 118.5225) (xy 90.049599 118.5225) + (xy 90.054305 118.522678) (xy 90.089063 118.525325) (xy 90.115476 118.527337) (xy 90.115476 118.527336) + (xy 90.115477 118.527337) (xy 90.14956 118.522996) (xy 90.15739 118.5225) (xy 90.423501 118.5225) + (xy 90.49054 118.542185) (xy 90.536295 118.594989) (xy 90.547501 118.6465) (xy 90.547501 119.072018) + (xy 90.558 119.174796) (xy 90.558001 119.174799) (xy 90.595143 119.286884) (xy 90.613186 119.341334) + (xy 90.705288 119.490656) (xy 90.829344 119.614712) (xy 90.888596 119.651258) (xy 90.935321 119.703204) + (xy 90.9475 119.756797) (xy 90.9475 121.144506) (xy 90.94748 121.146076) (xy 90.945243 121.234362) + (xy 90.945243 121.23437) (xy 90.956064 121.294739) (xy 90.956718 121.299404) (xy 90.962925 121.36043) + (xy 90.962927 121.360444) (xy 90.973208 121.393213) (xy 90.975079 121.400837) (xy 90.981142 121.434652) + (xy 90.981142 121.434655) (xy 91.003894 121.491612) (xy 91.005474 121.496051) (xy 91.023841 121.554588) + (xy 91.023844 121.554595) (xy 91.040509 121.584619) (xy 91.043879 121.591714) (xy 91.056622 121.623614) + (xy 91.056627 121.623624) (xy 91.090377 121.674833) (xy 91.092818 121.678863) (xy 91.122588 121.732498) + (xy 91.122589 121.732499) (xy 91.122591 121.732502) (xy 91.144968 121.758567) (xy 91.149693 121.764835) + (xy 91.162263 121.783906) (xy 91.168598 121.793519) (xy 91.211978 121.836899) (xy 91.215169 121.840343) + (xy 91.255131 121.886892) (xy 91.25513 121.886892) (xy 91.282299 121.907923) (xy 91.288186 121.913107) + (xy 93.412899 124.037819) (xy 93.446384 124.099142) (xy 93.4414 124.168834) (xy 93.399528 124.224767) + (xy 93.334064 124.249184) (xy 93.325218 124.2495) (xy 70.8745 124.2495) (xy 70.807461 124.229815) + (xy 70.761706 124.177011) (xy 70.7505 124.1255) (xy 70.7505 114.554005) (xy 81.298859 114.554005) + (xy 81.319385 114.801729) (xy 81.319387 114.801738) (xy 81.380412 115.042717) (xy 81.480266 115.270364) + (xy 81.580564 115.423882) (xy 82.320923 114.683523) (xy 82.344507 114.763844) (xy 82.422239 114.884798) + (xy 82.5309 114.978952) (xy 82.661685 115.03868) (xy 82.671466 115.040086) (xy 81.933942 115.777609) + (xy 81.980768 115.814055) (xy 81.98077 115.814056) (xy 82.199385 115.932364) (xy 82.199396 115.932369) + (xy 82.434506 116.013083) (xy 82.679707 116.054) (xy 82.928293 116.054) (xy 83.173493 116.013083) + (xy 83.408603 115.932369) (xy 83.408614 115.932364) (xy 83.627228 115.814057) (xy 83.627231 115.814055) + (xy 83.674056 115.777609) (xy 82.936533 115.040086) (xy 82.946315 115.03868) (xy 83.0771 114.978952) + (xy 83.185761 114.884798) (xy 83.263493 114.763844) (xy 83.287076 114.683524) (xy 84.027434 115.423882) + (xy 84.127731 115.270369) (xy 84.227587 115.042717) (xy 84.288612 114.801738) (xy 84.288614 114.801729) + (xy 84.309141 114.554005) (xy 84.309141 114.553994) (xy 84.288614 114.30627) (xy 84.288612 114.306261) + (xy 84.227587 114.065282) (xy 84.127731 113.83763) (xy 84.027434 113.684116) (xy 83.287076 114.424475) + (xy 83.263493 114.344156) (xy 83.185761 114.223202) (xy 83.0771 114.129048) (xy 82.946315 114.06932) + (xy 82.936534 114.067913) (xy 83.674057 113.33039) (xy 83.674056 113.330389) (xy 83.627229 113.293943) + (xy 83.408614 113.175635) (xy 83.408603 113.17563) (xy 83.173493 113.094916) (xy 82.928293 113.054) + (xy 82.679707 113.054) (xy 82.434506 113.094916) (xy 82.199396 113.17563) (xy 82.19939 113.175632) + (xy 81.980761 113.293949) (xy 81.933942 113.330388) (xy 81.933942 113.33039) (xy 82.671466 114.067913) + (xy 82.661685 114.06932) (xy 82.5309 114.129048) (xy 82.422239 114.223202) (xy 82.344507 114.344156) + (xy 82.320923 114.424475) (xy 81.580564 113.684116) (xy 81.480267 113.837632) (xy 81.380412 114.065282) + (xy 81.319387 114.306261) (xy 81.319385 114.30627) (xy 81.298859 114.553994) (xy 81.298859 114.554005) + (xy 70.7505 114.554005) (xy 70.7505 109.728004) (xy 74.140953 109.728004) (xy 74.161113 109.997026) + (xy 74.161113 109.997028) (xy 74.221142 110.260033) (xy 74.221148 110.260052) (xy 74.319709 110.511181) + (xy 74.319708 110.511181) (xy 74.454602 110.744822) (xy 74.508294 110.812151) (xy 75.343452 109.976993) + (xy 75.353188 110.006956) (xy 75.441186 110.145619) (xy 75.560903 110.25804) (xy 75.69551 110.332041) + (xy 74.860848 111.166702) (xy 75.043483 111.29122) (xy 75.043485 111.291221) (xy 75.286539 111.408269) + (xy 75.286537 111.408269) (xy 75.544337 111.48779) (xy 75.544343 111.487792) (xy 75.811101 111.527999) + (xy 75.81111 111.528) (xy 76.08089 111.528) (xy 76.080898 111.527999) (xy 76.347656 111.487792) + (xy 76.347662 111.48779) (xy 76.605461 111.408269) (xy 76.848521 111.291218) (xy 77.03115 111.166702) + (xy 76.193534 110.329086) (xy 76.261629 110.302126) (xy 76.394492 110.205595) (xy 76.499175 110.079055) + (xy 76.547631 109.976079) (xy 77.383703 110.812151) (xy 77.383704 110.81215) (xy 77.437393 110.744828) + (xy 77.4374 110.744817) (xy 77.57229 110.511181) (xy 77.670851 110.260052) (xy 77.670857 110.260033) + (xy 77.730886 109.997028) (xy 77.730886 109.997026) (xy 77.751047 109.728004) (xy 77.751047 109.727995) + (xy 77.730886 109.458973) (xy 77.730886 109.458971) (xy 77.670857 109.195966) (xy 77.670851 109.195947) + (xy 77.57229 108.944818) (xy 77.572291 108.944818) (xy 77.437397 108.711177) (xy 77.383704 108.643847) + (xy 76.548546 109.479004) (xy 76.538812 109.449044) (xy 76.450814 109.310381) (xy 76.331097 109.19796) + (xy 76.196487 109.123957) (xy 77.03115 108.289296) (xy 76.848517 108.164779) (xy 76.848516 108.164778) + (xy 76.60546 108.04773) (xy 76.605462 108.04773) (xy 76.347662 107.968209) (xy 76.347656 107.968207) + (xy 76.080898 107.928) (xy 75.811101 107.928) (xy 75.544343 107.968207) (xy 75.544337 107.968209) + (xy 75.286538 108.04773) (xy 75.043485 108.164778) (xy 75.043476 108.164783) (xy 74.860848 108.289296) + (xy 75.698465 109.126913) (xy 75.630371 109.153874) (xy 75.497508 109.250405) (xy 75.392825 109.376945) + (xy 75.344368 109.479921) (xy 74.508295 108.643848) (xy 74.4546 108.71118) (xy 74.319709 108.944818) + (xy 74.221148 109.195947) (xy 74.221142 109.195966) (xy 74.161113 109.458971) (xy 74.161113 109.458973) + (xy 74.140953 109.727995) (xy 74.140953 109.728004) (xy 70.7505 109.728004) (xy 70.7505 104.648004) + (xy 74.140451 104.648004) (xy 74.160616 104.917101) (xy 74.220664 105.180188) (xy 74.220666 105.180195) + (xy 74.311574 105.411824) (xy 74.319257 105.431398) (xy 74.454185 105.665102) (xy 74.59008 105.835509) + (xy 74.622442 105.876089) (xy 74.766955 106.010176) (xy 74.820259 106.059635) (xy 75.043226 106.211651) + (xy 75.286359 106.328738) (xy 75.544228 106.40828) (xy 75.544229 106.40828) (xy 75.544232 106.408281) + (xy 75.811063 106.448499) (xy 75.811068 106.448499) (xy 75.811071 106.4485) (xy 75.811072 106.4485) + (xy 76.080928 106.4485) (xy 76.080929 106.4485) (xy 76.080936 106.448499) (xy 76.347767 106.408281) + (xy 76.347768 106.40828) (xy 76.347772 106.40828) (xy 76.605641 106.328738) (xy 76.848775 106.211651) + (xy 77.071741 106.059635) (xy 77.269561 105.876085) (xy 77.437815 105.665102) (xy 77.572743 105.431398) + (xy 77.594015 105.377197) (xy 77.636831 105.321984) (xy 77.702701 105.298683) (xy 77.709443 105.2985) + (xy 82.247745 105.2985) (xy 82.314784 105.318185) (xy 82.32063 105.322182) (xy 82.402065 105.381348) + (xy 82.40207 105.381351) (xy 82.574992 105.458342) (xy 82.574997 105.458344) (xy 82.760154 105.4977) + (xy 82.760155 105.4977) (xy 82.949444 105.4977) (xy 82.949446 105.4977) (xy 83.134603 105.458344) + (xy 83.300221 105.384605) (xy 87.318157 105.384605) (xy 87.33869 105.632412) (xy 87.338692 105.632424) + (xy 87.399736 105.873481) (xy 87.499626 106.101206) (xy 87.635633 106.309382) (xy 87.65345 106.328736) + (xy 87.804056 106.492338) (xy 88.000291 106.645074) (xy 88.21899 106.763428) (xy 88.454186 106.844171) + (xy 88.699465 106.8851) (xy 88.948135 106.8851) (xy 89.193414 106.844171) (xy 89.42861 106.763428) + (xy 89.647309 106.645074) (xy 89.843544 106.492338) (xy 90.011964 106.309385) (xy 90.147973 106.101207) + (xy 90.247863 105.873481) (xy 90.308908 105.632421) (xy 90.317602 105.5275) (xy 90.329443 105.384605) + (xy 90.329443 105.384594) (xy 90.308909 105.136787) (xy 90.308907 105.136775) (xy 90.247863 104.895718) + (xy 90.147973 104.667993) (xy 90.011966 104.459817) (xy 89.963672 104.407356) (xy 89.843544 104.276862) + (xy 89.647309 104.124126) (xy 89.647307 104.124125) (xy 89.647306 104.124124) (xy 89.428611 104.005772) + (xy 89.428602 104.005769) (xy 89.193416 103.925029) (xy 88.948135 103.8841) (xy 88.699465 103.8841) + (xy 88.454183 103.925029) (xy 88.218997 104.005769) (xy 88.218988 104.005772) (xy 88.000293 104.124124) + (xy 87.804057 104.276861) (xy 87.635633 104.459817) (xy 87.499626 104.667993) (xy 87.399736 104.895718) + (xy 87.338692 105.136775) (xy 87.33869 105.136787) (xy 87.318157 105.384594) (xy 87.318157 105.384605) + (xy 83.300221 105.384605) (xy 83.30753 105.381351) (xy 83.460671 105.270088) (xy 83.587333 105.129416) + (xy 83.681979 104.965484) (xy 83.740474 104.785456) (xy 83.76026 104.5972) (xy 83.740474 104.408944) + (xy 83.681979 104.228916) (xy 83.587333 104.064984) (xy 83.460671 103.924312) (xy 83.46067 103.924311) + (xy 83.307534 103.813051) (xy 83.307529 103.813048) (xy 83.134607 103.736057) (xy 83.134602 103.736055) + (xy 82.9888 103.705065) (xy 82.949446 103.6967) (xy 82.760154 103.6967) (xy 82.727697 103.703598) + (xy 82.574997 103.736055) (xy 82.574992 103.736057) (xy 82.40207 103.813048) (xy 82.402065 103.813051) + (xy 82.248929 103.924311) (xy 82.219972 103.956472) (xy 82.160485 103.993121) (xy 82.127822 103.9975) + (xy 77.709443 103.9975) (xy 77.642404 103.977815) (xy 77.596649 103.925011) (xy 77.594015 103.918802) + (xy 77.572743 103.864602) (xy 77.437815 103.630898) (xy 77.269561 103.419915) (xy 77.26956 103.419914) + (xy 77.269557 103.41991) (xy 77.071741 103.236365) (xy 76.986926 103.178539) (xy 76.848775 103.084349) + (xy 76.848769 103.084346) (xy 76.848768 103.084345) (xy 76.848767 103.084344) (xy 76.605643 102.967263) + (xy 76.605645 102.967263) (xy 76.347773 102.88772) (xy 76.347767 102.887718) (xy 76.080936 102.8475) + (xy 76.080929 102.8475) (xy 75.811071 102.8475) (xy 75.811063 102.8475) (xy 75.544232 102.887718) + (xy 75.544226 102.88772) (xy 75.286358 102.967262) (xy 75.04323 103.084346) (xy 74.820258 103.236365) + (xy 74.622442 103.41991) (xy 74.454185 103.630898) (xy 74.319258 103.864599) (xy 74.319256 103.864603) + (xy 74.220666 104.115804) (xy 74.220664 104.115811) (xy 74.160616 104.378898) (xy 74.140451 104.647995) + (xy 74.140451 104.648004) (xy 70.7505 104.648004) (xy 70.7505 88.6344) (xy 74.804001 88.6344) (xy 74.804001 89.934386) + (xy 74.814494 90.037097) (xy 74.869641 90.203519) (xy 74.869643 90.203524) (xy 74.961684 90.352745) + (xy 75.085654 90.476715) (xy 75.234875 90.568756) (xy 75.23488 90.568758) (xy 75.401302 90.623905) + (xy 75.401309 90.623906) (xy 75.504019 90.634399) (xy 76.203999 90.634399) (xy 76.204 90.634398) + (xy 76.204 88.6344) (xy 76.704 88.6344) (xy 76.704 90.634399) (xy 77.403972 90.634399) (xy 77.403986 90.634398) + (xy 77.506697 90.623905) (xy 77.673119 90.568758) (xy 77.673124 90.568756) (xy 77.822345 90.476715) + (xy 77.946315 90.352745) (xy 78.038356 90.203524) (xy 78.038358 90.203519) (xy 78.093505 90.037097) + (xy 78.093506 90.03709) (xy 78.103999 89.934386) (xy 78.104 89.934373) (xy 78.104 88.6344) (xy 76.704 88.6344) + (xy 76.204 88.6344) (xy 74.804001 88.6344) (xy 70.7505 88.6344) (xy 70.7505 88.1344) (xy 74.804 88.1344) + (xy 76.204 88.1344) (xy 76.204 86.1344) (xy 76.704 86.1344) (xy 76.704 88.1344) (xy 78.103999 88.1344) + (xy 78.103999 86.834428) (xy 78.103998 86.834413) (xy 78.093505 86.731702) (xy 78.038358 86.56528) + (xy 78.038356 86.565275) (xy 77.946315 86.416054) (xy 77.822345 86.292084) (xy 77.673124 86.200043) + (xy 77.673119 86.200041) (xy 77.506697 86.144894) (xy 77.50669 86.144893) (xy 77.403986 86.1344) + (xy 76.704 86.1344) (xy 76.204 86.1344) (xy 75.504028 86.1344) (xy 75.504012 86.134401) (xy 75.401302 86.144894) + (xy 75.23488 86.200041) (xy 75.234875 86.200043) (xy 75.085654 86.292084) (xy 74.961684 86.416054) + (xy 74.869643 86.565275) (xy 74.869641 86.56528) (xy 74.814494 86.731702) (xy 74.814493 86.731709) + (xy 74.804 86.834413) (xy 74.804 88.1344) (xy 70.7505 88.1344) (xy 70.7505 84.048605) (xy 94.049157 84.048605) + (xy 94.06969 84.296412) (xy 94.069692 84.296424) (xy 94.130736 84.537481) (xy 94.230626 84.765206) + (xy 94.366633 84.973382) (xy 94.366636 84.973385) (xy 94.535056 85.156338) (xy 94.731291 85.309074) + (xy 94.94999 85.427428) (xy 95.185186 85.508171) (xy 95.430465 85.5491) (xy 95.679135 85.5491) (xy 95.924414 85.508171) + (xy 96.15961 85.427428) (xy 96.378309 85.309074) (xy 96.574544 85.156338) (xy 96.742964 84.973385) + (xy 96.878973 84.765207) (xy 96.978863 84.537481) (xy 97.039908 84.296421) (xy 97.040408 84.290388) + (xy 97.060443 84.048605) (xy 97.060443 84.048594) (xy 97.039909 83.800787) (xy 97.039907 83.800775) + (xy 96.978863 83.559718) (xy 96.878973 83.331993) (xy 96.742966 83.123817) (xy 96.675792 83.050847) + (xy 96.574544 82.940862) (xy 96.378309 82.788126) (xy 96.378307 82.788125) (xy 96.378306 82.788124) + (xy 96.159611 82.669772) (xy 96.159602 82.669769) (xy 95.924416 82.589029) (xy 95.679135 82.5481) + (xy 95.430465 82.5481) (xy 95.185183 82.589029) (xy 94.949997 82.669769) (xy 94.949988 82.669772) + (xy 94.731293 82.788124) (xy 94.535057 82.940861) (xy 94.366633 83.123817) (xy 94.230626 83.331993) + (xy 94.130736 83.559718) (xy 94.069692 83.800775) (xy 94.06969 83.800787) (xy 94.049157 84.048594) + (xy 94.049157 84.048605) (xy 70.7505 84.048605) (xy 70.7505 74.893401) (xy 71.730746 74.893401) + (xy 71.740745 75.103327) (xy 71.790296 75.307578) (xy 71.790298 75.307582) (xy 71.877598 75.498743) + (xy 71.877601 75.498748) (xy 71.877602 75.49875) (xy 71.877604 75.498753) (xy 71.983361 75.647268) + (xy 71.999515 75.669953) (xy 72.102082 75.76775) (xy 72.137017 75.828259) (xy 72.133692 75.898049) + (xy 72.093164 75.954963) (xy 72.08161 75.963031) (xy 72.016344 76.003287) (xy 71.892289 76.127342) + (xy 71.800187 76.276663) (xy 71.800185 76.276668) (xy 71.795702 76.290198) (xy 71.745001 76.443203) + (xy 71.745001 76.443204) (xy 71.745 76.443204) (xy 71.7345 76.545983) (xy 71.7345 77.346001) (xy 71.734501 77.346019) + (xy 71.745 77.448796) (xy 71.745001 77.448799) (xy 71.800185 77.615331) (xy 71.800187 77.615336) + (xy 71.801581 77.617596) (xy 71.892288 77.764656) (xy 72.016344 77.888712) (xy 72.165666 77.980814) + (xy 72.332203 78.035999) (xy 72.393424 78.042253) (xy 72.458115 78.068649) (xy 72.486359 78.100513) + (xy 72.517287 78.150655) (xy 72.521766 78.156319) (xy 72.521719 78.156356) (xy 72.526482 78.162202) + (xy 72.526528 78.162164) (xy 72.531173 78.167699) (xy 72.586365 78.21977) (xy 72.587659 78.221027) + (xy 73.136268 78.769635) (xy 73.148049 78.783267) (xy 73.16239 78.80253) (xy 73.20242 78.836119) + (xy 73.206392 78.839759) (xy 73.208161 78.841528) (xy 73.212221 78.845589) (xy 73.23725 78.865379) + (xy 73.238646 78.866517) (xy 73.296786 78.915302) (xy 73.296787 78.915302) (xy 73.296789 78.915304) + (xy 73.302818 78.91927) (xy 73.302785 78.919319) (xy 73.309143 78.923369) (xy 73.309175 78.923319) + (xy 73.315317 78.927107) (xy 73.315319 78.927108) (xy 73.315323 78.927111) (xy 73.377851 78.956268) + (xy 73.384132 78.959197) (xy 73.385754 78.959983) (xy 73.453567 78.99404) (xy 73.453569 78.99404) + (xy 73.460361 78.996513) (xy 73.46034 78.99657) (xy 73.467455 78.999043) (xy 73.467475 78.998986) + (xy 73.474324 79.001256) (xy 73.474327 79.001256) (xy 73.474328 79.001257) (xy 73.548705 79.016613) + (xy 73.550414 79.016993) (xy 73.574415 79.022681) (xy 73.624273 79.034499) (xy 73.624276 79.034499) + (xy 73.624279 79.0345) (xy 73.624282 79.0345) (xy 73.631452 79.035338) (xy 73.631444 79.035397) + (xy 73.638945 79.036164) (xy 73.638951 79.036105) (xy 73.64614 79.036734) (xy 73.646144 79.036733) + (xy 73.646145 79.036734) (xy 73.67423 79.035916) (xy 73.722033 79.034526) (xy 73.723836 79.0345) + (xy 79.668279 79.0345) (xy 79.732359 79.0345) (xy 79.735959 79.034604) (xy 79.799935 79.038331) + (xy 79.810976 79.036384) (xy 79.832509 79.0345) (xy 81.248202 79.0345) (xy 81.315241 79.054185) + (xy 81.353739 79.093401) (xy 81.390288 79.152656) (xy 81.514344 79.276712) (xy 81.663666 79.368814) + (xy 81.830203 79.423999) (xy 81.932991 79.4345) (xy 84.183008 79.434499) (xy 84.285797 79.423999) + (xy 84.452334 79.368814) (xy 84.601656 79.276712) (xy 84.725712 79.152656) (xy 84.817814 79.003334) + (xy 84.872999 78.836797) (xy 84.8835 78.734009) (xy 84.883499 77.833992) (xy 84.881846 77.817814) + (xy 84.872999 77.731203) (xy 84.872998 77.7312) (xy 84.834604 77.615336) (xy 84.817814 77.564666) + (xy 84.725712 77.415344) (xy 84.601656 77.291288) (xy 84.458933 77.203256) (xy 84.452336 77.199187) + (xy 84.452331 77.199185) (xy 84.450862 77.198698) (xy 84.285797 77.144001) (xy 84.285795 77.144) + (xy 84.18301 77.1335) (xy 81.932998 77.1335) (xy 81.932981 77.133501) (xy 81.830203 77.144) (xy 81.8302 77.144001) + (xy 81.663668 77.199185) (xy 81.663663 77.199187) (xy 81.514342 77.291289) (xy 81.390289 77.415342) + (xy 81.390287 77.415344) (xy 81.390288 77.415344) (xy 81.362121 77.461011) (xy 81.353741 77.474597) + (xy 81.301793 77.521321) (xy 81.248202 77.5335) (xy 80.989299 77.5335) (xy 80.92226 77.513815) (xy 80.876505 77.461011) + (xy 80.866561 77.391853) (xy 80.882567 77.346379) (xy 80.882786 77.346009) (xy 80.945244 77.240398) + (xy 80.991098 77.082569) (xy 80.994 77.045694) (xy 80.994 76.614306) (xy 80.991098 76.577431) (xy 80.984898 76.556092) + (xy 80.945245 76.419606) (xy 80.945244 76.419603) (xy 80.945244 76.419602) (xy 80.861581 76.278135) + (xy 80.861579 76.278133) (xy 80.861576 76.278129) (xy 80.74537 76.161923) (xy 80.745362 76.161917) + (xy 80.603896 76.078255) (xy 80.603893 76.078254) (xy 80.446073 76.032402) (xy 80.446067 76.032401) + (xy 80.409201 76.0295) (xy 80.409194 76.0295) (xy 79.102806 76.0295) (xy 79.102798 76.0295) (xy 79.065932 76.032401) + (xy 79.065926 76.032402) (xy 78.908106 76.078254) (xy 78.908103 76.078255) (xy 78.849806 76.112732) + (xy 78.786685 76.13) (xy 78.131 76.13) (xy 78.131 76.68) (xy 78.394 76.68) (xy 78.461039 76.699685) + (xy 78.506794 76.752489) (xy 78.518 76.804) (xy 78.518 77.045701) (xy 78.520901 77.082567) (xy 78.520902 77.082573) + (xy 78.566754 77.240393) (xy 78.566755 77.240396) (xy 78.566756 77.240398) (xy 78.629213 77.346008) + (xy 78.629433 77.346379) (xy 78.646616 77.414103) (xy 78.624456 77.480366) (xy 78.56999 77.524129) + (xy 78.522701 77.5335) (xy 74.603659 77.5335) (xy 74.53662 77.513815) (xy 74.490865 77.461011) (xy 74.480301 77.396897) + (xy 74.480554 77.394421) (xy 74.4855 77.346009) (xy 74.485499 76.545992) (xy 74.474999 76.443203) + (xy 74.419814 76.276666) (xy 74.329351 76.130001) (xy 76.646204 76.130001) (xy 76.646399 76.132486) + (xy 76.692218 76.290198) (xy 76.775814 76.431552) (xy 76.775821 76.431561) (xy 76.891938 76.547678) + (xy 76.891947 76.547685) (xy 77.033303 76.631282) (xy 77.033306 76.631283) (xy 77.191004 76.677099) + (xy 77.19101 76.6771) (xy 77.22785 76.679999) (xy 77.227866 76.68) (xy 77.631 76.68) (xy 77.631 76.13) + (xy 76.646205 76.13) (xy 76.646204 76.130001) (xy 74.329351 76.130001) (xy 74.327712 76.127344) + (xy 74.203656 76.003288) (xy 74.140258 75.964184) (xy 74.093535 75.912237) (xy 74.082312 75.843274) + (xy 74.110156 75.779192) (xy 74.128697 75.761181) (xy 74.147886 75.746092) (xy 74.248483 75.629998) + (xy 76.646204 75.629998) (xy 76.646205 75.63) (xy 77.631 75.63) (xy 77.631 75.08) (xy 77.22785 75.08) + (xy 77.19101 75.082899) (xy 77.191004 75.0829) (xy 77.033306 75.128716) (xy 77.033303 75.128717) + (xy 76.891947 75.212314) (xy 76.891938 75.212321) (xy 76.775821 75.328438) (xy 76.775814 75.328447) + (xy 76.692218 75.469801) (xy 76.646399 75.627513) (xy 76.646204 75.629998) (xy 74.248483 75.629998) + (xy 74.285519 75.587256) (xy 74.338573 75.495365) (xy 74.390601 75.405249) (xy 74.3906 75.405249) + (xy 74.390604 75.405244) (xy 74.459344 75.206633) (xy 74.489254 74.998602) (xy 74.479254 74.78867) + (xy 74.429704 74.584424) (xy 74.400103 74.519607) (xy 74.342401 74.393256) (xy 74.342398 74.393251) + (xy 74.342397 74.39325) (xy 74.342396 74.393247) (xy 74.255885 74.271759) (xy 74.233034 74.205734) + (xy 74.249507 74.137834) (xy 74.269213 74.112153) (xy 74.590016 73.791351) (xy 74.950547 73.430819) + (xy 75.011871 73.397334) (xy 75.038229 73.3945) (xy 79.49677 73.3945) (xy 79.563809 73.414185) (xy 79.609564 73.466989) + (xy 79.619508 73.536147) (xy 79.590483 73.599703) (xy 79.584469 73.606161) (xy 79.317343 73.873288) + (xy 79.270358 73.920273) (xy 79.256729 73.932051) (xy 79.237468 73.94639) (xy 79.203898 73.986397) + (xy 79.200253 73.990376) (xy 79.194407 73.996223) (xy 79.174618 74.021251) (xy 79.173481 74.022647) + (xy 79.124691 74.080793) (xy 79.121715 74.085318) (xy 79.068423 74.130503) (xy 79.052722 74.136238) + (xy 78.908105 74.178254) (xy 78.908103 74.178255) (xy 78.766637 74.261917) (xy 78.766629 74.261923) + (xy 78.650423 74.378129) (xy 78.650417 74.378137) (xy 78.566755 74.519603) (xy 78.566754 74.519606) + (xy 78.520902 74.677426) (xy 78.520901 74.677432) (xy 78.518 74.714298) (xy 78.518 74.956) (xy 78.498315 75.023039) + (xy 78.445511 75.068794) (xy 78.394 75.08) (xy 78.131 75.08) (xy 78.131 75.63) (xy 78.786685 75.63) + (xy 78.849806 75.647268) (xy 78.908102 75.681744) (xy 78.949724 75.693836) (xy 79.065926 75.727597) + (xy 79.065929 75.727597) (xy 79.065931 75.727598) (xy 79.102806 75.7305) (xy 79.102814 75.7305) + (xy 80.409186 75.7305) (xy 80.409194 75.7305) (xy 80.446069 75.727598) (xy 80.446071 75.727597) + (xy 80.446073 75.727597) (xy 80.487691 75.715505) (xy 80.603898 75.681744) (xy 80.745365 75.598081) + (xy 80.861581 75.481865) (xy 80.945244 75.340398) (xy 80.989425 75.188326) (xy 81.02703 75.129445) + (xy 81.090502 75.100238) (xy 81.159689 75.109984) (xy 81.212623 75.155588) (xy 81.232499 75.222571) + (xy 81.2325 75.222925) (xy 81.2325 75.634001) (xy 81.232501 75.634019) (xy 81.243 75.736796) (xy 81.243001 75.736799) + (xy 81.298185 75.903331) (xy 81.298187 75.903336) (xy 81.330031 75.954963) (xy 81.390288 76.052656) + (xy 81.514344 76.176712) (xy 81.663666 76.268814) (xy 81.830203 76.323999) (xy 81.932991 76.3345) + (xy 84.183008 76.334499) (xy 84.285797 76.323999) (xy 84.452334 76.268814) (xy 84.601656 76.176712) + (xy 84.725712 76.052656) (xy 84.817814 75.903334) (xy 84.872999 75.736797) (xy 84.8835 75.634009) + (xy 84.883499 74.733992) (xy 84.872999 74.631203) (xy 84.817814 74.464666) (xy 84.725712 74.315344) + (xy 84.601656 74.191288) (xy 84.452334 74.099186) (xy 84.285797 74.044001) (xy 84.285795 74.044) + (xy 84.183016 74.0335) (xy 84.183009 74.0335) (xy 83.9325 74.0335) (xy 83.865461 74.013815) (xy 83.819706 73.961011) + (xy 83.8085 73.9095) (xy 83.8085 73.895668) (xy 83.828185 73.828629) (xy 83.865458 73.791354) (xy 83.889128 73.776143) + (xy 83.983377 73.667373) (xy 84.043165 73.536457) (xy 84.063647 73.394) (xy 84.063647 71.894) (xy 84.0585 71.822039) + (xy 84.05443 71.808179) (xy 84.017954 71.683949) (xy 84.017953 71.683947) (xy 83.940143 71.562872) + (xy 83.831373 71.468623) (xy 83.826757 71.466515) (xy 83.700456 71.408834) (xy 83.593792 71.393499) + (xy 83.558 71.388353) (xy 82.408 71.388353) (xy 82.40798 71.388353) (xy 82.327645 71.394778) (xy 82.327629 71.394781) + (xy 82.299239 71.403638) (xy 82.244668 71.408002) (xy 82.108 71.388353) (xy 81.108 71.388353) (xy 81.107997 71.388353) + (xy 81.036039 71.393499) (xy 81.036034 71.3935) (xy 80.897949 71.434045) (xy 80.776873 71.511856) + (xy 80.682623 71.620626) (xy 80.682622 71.620628) (xy 80.622834 71.751543) (xy 80.617716 71.787147) + (xy 80.588691 71.850702) (xy 80.529913 71.888477) (xy 80.494978 71.8935) (xy 74.739705 71.8935) + (xy 74.721735 71.892191) (xy 74.697972 71.88871) (xy 74.65289 71.892655) (xy 74.645933 71.893264) + (xy 74.640532 71.8935) (xy 74.632283 71.8935) (xy 74.600589 71.897204) (xy 74.598821 71.897385) + (xy 74.581405 71.898909) (xy 74.523199 71.904001) (xy 74.516133 71.905461) (xy 74.516121 71.905404) + (xy 74.508754 71.907038) (xy 74.508768 71.907094) (xy 74.501745 71.908758) (xy 74.430424 71.934715) + (xy 74.428724 71.935306) (xy 74.356666 71.959185) (xy 74.350119 71.962238) (xy 74.350094 71.962186) + (xy 74.343314 71.965468) (xy 74.34334 71.96552) (xy 74.336882 71.968763) (xy 74.273483 72.01046) + (xy 74.271965 72.011428) (xy 74.207346 72.051287) (xy 74.201677 72.05577) (xy 74.201641 72.055724) + (xy 74.195798 72.060484) (xy 74.195835 72.060528) (xy 74.190309 72.065164) (xy 74.138213 72.120381) + (xy 74.136957 72.121674) (xy 72.624358 73.634272) (xy 72.610729 73.646051) (xy 72.591468 73.66039) + (xy 72.557898 73.700397) (xy 72.554253 73.704376) (xy 72.548407 73.710223) (xy 72.528618 73.735251) + (xy 72.527481 73.736647) (xy 72.478694 73.79479) (xy 72.474729 73.800819) (xy 72.474682 73.800788) + (xy 72.47063 73.807147) (xy 72.470679 73.807177) (xy 72.466891 73.813318) (xy 72.466889 73.813323) + (xy 72.436186 73.879165) (xy 72.434811 73.882113) (xy 72.43402 73.883745) (xy 72.431228 73.889302) + (xy 72.383542 73.940369) (xy 72.377248 73.943848) (xy 72.237317 74.015988) (xy 72.072116 74.145905) + (xy 72.072112 74.145909) (xy 71.934478 74.304746) (xy 71.829398 74.48675) (xy 71.760656 74.685365) + (xy 71.760656 74.685367) (xy 71.733573 74.87374) (xy 71.730746 74.893401) (xy 70.7505 74.893401) + (xy 70.7505 70.8745) (xy 70.770185 70.807461) (xy 70.822989 70.761706) (xy 70.8745 70.7505) (xy 136.1255 70.7505) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 94.55454 113.542185) (xy 94.600295 113.594989) (xy 94.611501 113.6465) (xy 94.611501 114.072018) + (xy 94.622 114.174796) (xy 94.622001 114.174799) (xy 94.677185 114.341331) (xy 94.677187 114.341336) + (xy 94.712069 114.397888) (xy 94.769288 114.490656) (xy 94.893344 114.614712) (xy 95.042666 114.706814) + (xy 95.209203 114.761999) (xy 95.311991 114.7725) (xy 96.712008 114.772499) (xy 96.814797 114.761999) + (xy 96.981334 114.706814) (xy 97.130656 114.614712) (xy 97.254712 114.490656) (xy 97.346814 114.341334) + (xy 97.401999 114.174797) (xy 97.4125 114.072009) (xy 97.4125 113.646499) (xy 97.432185 113.579461) + (xy 97.484989 113.533706) (xy 97.5365 113.5225) (xy 99.7045 113.5225) (xy 99.771539 113.542185) + (xy 99.817294 113.594989) (xy 99.8285 113.6465) (xy 99.8285 116.493019) (xy 99.839001 116.595801) + (xy 99.894184 116.762333) (xy 99.894189 116.762344) (xy 99.986285 116.911653) (xy 99.986288 116.911657) + (xy 100.110342 117.035711) (xy 100.110346 117.035714) (xy 100.259655 117.12781) (xy 100.259658 117.127811) + (xy 100.259664 117.127815) (xy 100.4262 117.182999) (xy 100.528988 117.1935) (xy 100.528991 117.1935) + (xy 101.4045 117.1935) (xy 101.471539 117.213185) (xy 101.517294 117.265989) (xy 101.5285 117.3175) + (xy 101.5285 118.048482) (xy 101.538377 118.117184) (xy 101.53885 118.121584) (xy 101.543804 118.19083) + (xy 101.543804 118.190833) (xy 101.55856 118.258659) (xy 101.559346 118.263016) (xy 101.569224 118.331718) + (xy 101.569227 118.331731) (xy 101.588778 118.398315) (xy 101.589873 118.402605) (xy 101.604631 118.470448) + (xy 101.628891 118.535492) (xy 101.630289 118.539692) (xy 101.649845 118.606291) (xy 101.678678 118.669429) + (xy 101.680372 118.673517) (xy 101.704166 118.737309) (xy 101.704633 118.738561) (xy 101.73791 118.799504) + (xy 101.739883 118.803446) (xy 101.768715 118.866582) (xy 101.76872 118.866592) (xy 101.80625 118.924989) + (xy 101.808509 118.928796) (xy 101.84177 118.989709) (xy 101.841771 118.98971) (xy 101.841774 118.989715) + (xy 101.850127 119.000873) (xy 101.883366 119.045275) (xy 101.885883 119.048899) (xy 101.923426 119.107317) + (xy 101.923427 119.107318) (xy 101.92343 119.107323) (xy 101.968884 119.159778) (xy 101.971661 119.163225) + (xy 101.995694 119.195328) (xy 102.013261 119.218795) (xy 102.013268 119.218802) (xy 102.081348 119.286884) + (xy 102.081354 119.286888) (xy 104.453061 121.658595) (xy 104.655394 121.860929) (xy 104.6554 121.860934) + (xy 104.655405 121.860939) (xy 104.710986 121.902546) (xy 104.714411 121.905307) (xy 104.766882 121.950773) + (xy 104.825282 121.988304) (xy 104.828907 121.990821) (xy 104.884482 122.032424) (xy 104.88449 122.032429) + (xy 104.945403 122.06569) (xy 104.949205 122.067945) (xy 104.949207 122.067947) (xy 104.949211 122.067949) + (xy 105.007608 122.105479) (xy 105.007609 122.10548) (xy 105.007613 122.105482) (xy 105.070776 122.134327) + (xy 105.074685 122.136283) (xy 105.135639 122.169567) (xy 105.2007 122.193832) (xy 105.204745 122.195508) + (xy 105.267911 122.224356) (xy 105.273245 122.225922) (xy 105.332023 122.263696) (xy 105.361049 122.327252) + (xy 105.351106 122.39641) (xy 105.305352 122.449215) (xy 105.238312 122.4689) (xy 94.725183 122.4689) + (xy 94.658144 122.449215) (xy 94.637502 122.432581) (xy 92.984819 120.779898) (xy 92.951334 120.718575) + (xy 92.9485 120.692217) (xy 92.9485 119.756797) (xy 92.968185 119.689758) (xy 93.007403 119.651258) + (xy 93.066656 119.614712) (xy 93.190712 119.490656) (xy 93.282814 119.341334) (xy 93.337999 119.174797) + (xy 93.3485 119.072009) (xy 93.348499 117.772) (xy 94.612001 117.772) (xy 94.612001 119.071986) + (xy 94.622494 119.174697) (xy 94.677641 119.341119) (xy 94.677643 119.341124) (xy 94.769684 119.490345) + (xy 94.893654 119.614315) (xy 95.042875 119.706356) (xy 95.04288 119.706358) (xy 95.209302 119.761505) + (xy 95.209309 119.761506) (xy 95.312019 119.771999) (xy 95.761999 119.771999) (xy 95.762 119.771998) + (xy 95.762 117.772) (xy 96.262 117.772) (xy 96.262 119.771999) (xy 96.711972 119.771999) (xy 96.711986 119.771998) + (xy 96.814697 119.761505) (xy 96.981119 119.706358) (xy 96.981124 119.706356) (xy 97.130345 119.614315) + (xy 97.254315 119.490345) (xy 97.346356 119.341124) (xy 97.346358 119.341119) (xy 97.401505 119.174697) + (xy 97.401506 119.17469) (xy 97.411999 119.071986) (xy 97.412 119.071973) (xy 97.412 117.772) (xy 96.262 117.772) + (xy 95.762 117.772) (xy 94.612001 117.772) (xy 93.348499 117.772) (xy 93.348499 117.272) (xy 94.612 117.272) + (xy 95.762 117.272) (xy 95.762 115.272) (xy 96.262 115.272) (xy 96.262 117.272) (xy 97.411999 117.272) + (xy 97.411999 115.972028) (xy 97.411998 115.972013) (xy 97.401505 115.869302) (xy 97.346358 115.70288) + (xy 97.346356 115.702875) (xy 97.254315 115.553654) (xy 97.130345 115.429684) (xy 96.981124 115.337643) + (xy 96.981119 115.337641) (xy 96.814697 115.282494) (xy 96.81469 115.282493) (xy 96.711986 115.272) + (xy 96.262 115.272) (xy 95.762 115.272) (xy 95.312028 115.272) (xy 95.312012 115.272001) (xy 95.209302 115.282494) + (xy 95.04288 115.337641) (xy 95.042875 115.337643) (xy 94.893654 115.429684) (xy 94.769684 115.553654) + (xy 94.677643 115.702875) (xy 94.677641 115.70288) (xy 94.622494 115.869302) (xy 94.622493 115.869309) + (xy 94.612 115.972013) (xy 94.612 117.272) (xy 93.348499 117.272) (xy 93.348499 115.971992) (xy 93.344451 115.932369) + (xy 93.337999 115.869203) (xy 93.337998 115.8692) (xy 93.334588 115.858908) (xy 93.282814 115.702666) + (xy 93.190712 115.553344) (xy 93.066656 115.429288) (xy 92.973888 115.372068) (xy 92.917336 115.337187) + (xy 92.917331 115.337185) (xy 92.915862 115.336698) (xy 92.750797 115.282001) (xy 92.750795 115.282) + (xy 92.64801 115.2715) (xy 91.247998 115.2715) (xy 91.247981 115.271501) (xy 91.145203 115.282) + (xy 91.1452 115.282001) (xy 90.978668 115.337185) (xy 90.978663 115.337187) (xy 90.829342 115.429289) + (xy 90.705289 115.553342) (xy 90.613187 115.702663) (xy 90.613185 115.702668) (xy 90.613115 115.70288) + (xy 90.576137 115.814474) (xy 90.574006 115.820904) (xy 90.534233 115.878349) (xy 90.469717 115.905172) + (xy 90.400942 115.892857) (xy 90.349742 115.845314) (xy 90.3323 115.7819) (xy 90.3323 114.2621) + (xy 90.351985 114.195061) (xy 90.404789 114.149306) (xy 90.473947 114.139362) (xy 90.537503 114.168387) + (xy 90.574005 114.223095) (xy 90.601537 114.306179) (xy 90.613185 114.341331) (xy 90.613187 114.341336) + (xy 90.648069 114.397888) (xy 90.705288 114.490656) (xy 90.829344 114.614712) (xy 90.978666 114.706814) + (xy 91.145203 114.761999) (xy 91.247991 114.7725) (xy 92.648008 114.772499) (xy 92.750797 114.761999) + (xy 92.917334 114.706814) (xy 93.066656 114.614712) (xy 93.190712 114.490656) (xy 93.282814 114.341334) + (xy 93.337999 114.174797) (xy 93.3485 114.072009) (xy 93.3485 113.6465) (xy 93.368185 113.579461) + (xy 93.420989 113.533706) (xy 93.4725 113.5225) (xy 94.487501 113.5225) + ) + ) + ) +) \ No newline at end of file diff --git a/F1:F103/CAR_CANbus/WindShield/kicad/windshield.kicad_prl b/F1:F103/CAR_CANbus/WindShield/kicad/windshield.kicad_prl index 416eb22..5eb04ea 100644 --- a/F1:F103/CAR_CANbus/WindShield/kicad/windshield.kicad_prl +++ b/F1:F103/CAR_CANbus/WindShield/kicad/windshield.kicad_prl @@ -67,11 +67,30 @@ "visible_layers": "fffffff_ffffffff", "zone_display_mode": 1 }, + "git": { + "repo_password": "", + "repo_type": "", + "repo_username": "", + "ssh_key": "" + }, "meta": { "filename": "windshield.kicad_prl", "version": 3 }, "project": { "files": [] + }, + "schematic": { + "selection_filter": { + "graphics": true, + "images": true, + "labels": true, + "lockedItems": false, + "otherItems": true, + "pins": true, + "symbols": true, + "text": true, + "wires": true + } } } diff --git a/F1:F103/CAR_CANbus/WindShield/kicad/windshield.kicad_pro b/F1:F103/CAR_CANbus/WindShield/kicad/windshield.kicad_pro index 48ec21e..d083a36 100644 --- a/F1:F103/CAR_CANbus/WindShield/kicad/windshield.kicad_pro +++ b/F1:F103/CAR_CANbus/WindShield/kicad/windshield.kicad_pro @@ -194,6 +194,13 @@ ], "zones_allow_external_fillets": false }, + "ipc2581": { + "dist": "", + "distpn": "", + "internal_id": "", + "mfg": "", + "mpn": "" + }, "layer_presets": [], "viewports": [] }, @@ -388,10 +395,12 @@ "duplicate_sheet_names": "error", "endpoint_off_grid": "warning", "extra_units": "error", + "footprint_link_issues": "warning", "global_label_dangling": "warning", "hier_label_mismatch": "error", "label_dangling": "error", "lib_symbol_issues": "warning", + "lib_symbol_mismatch": "warning", "missing_bidi_pin": "warning", "missing_input_pin": "warning", "missing_power_pin": "error", @@ -452,14 +461,75 @@ "gencad": "", "idf": "", "netlist": "", + "plot": "", + "pos_files": "", "specctra_dsn": "", "step": "", + "svg": "", "vrml": "" }, "page_layout_descr_file": "" }, "schematic": { "annotate_start_num": 0, + "bom_fmt_presets": [], + "bom_fmt_settings": { + "field_delimiter": ",", + "keep_line_breaks": false, + "keep_tabs": false, + "name": "CSV", + "ref_delimiter": ",", + "ref_range_delimiter": "", + "string_delimiter": "\"" + }, + "bom_presets": [], + "bom_settings": { + "exclude_dnp": false, + "fields_ordered": [ + { + "group_by": false, + "label": "Reference", + "name": "Reference", + "show": true + }, + { + "group_by": true, + "label": "Value", + "name": "Value", + "show": true + }, + { + "group_by": false, + "label": "Datasheet", + "name": "Datasheet", + "show": true + }, + { + "group_by": false, + "label": "Footprint", + "name": "Footprint", + "show": true + }, + { + "group_by": false, + "label": "Qty", + "name": "${QUANTITY}", + "show": true + }, + { + "group_by": true, + "label": "DNP", + "name": "${DNP}", + "show": true + } + ], + "filter_string": "", + "group_symbols": true, + "name": "Grouped By Value", + "sort_asc": true, + "sort_field": "Reference" + }, + "connection_grid_size": 50.0, "drawing": { "dashed_lines_dash_length_ratio": 12.0, "dashed_lines_gap_length_ratio": 3.0, @@ -473,6 +543,11 @@ "intersheets_ref_suffix": "", "junction_size_choice": 3, "label_size_ratio": 0.375, + "operating_point_overlay_i_precision": 3, + "operating_point_overlay_i_range": "~A", + "operating_point_overlay_v_precision": 3, + "operating_point_overlay_v_range": "~V", + "overbar_offset_ratio": 1.23, "pin_symbol_size": 25.0, "text_offset_ratio": 0.15 }, @@ -488,6 +563,7 @@ "spice_external_command": "spice \"%I\"", "spice_model_current_sheet_as_root": true, "spice_save_all_currents": false, + "spice_save_all_dissipations": false, "spice_save_all_voltages": false, "subpart_first_id": 65, "subpart_id_separator": 0 diff --git a/F1:F103/CAR_CANbus/WindShield/kicad/windshield.kicad_sch b/F1:F103/CAR_CANbus/WindShield/kicad/windshield.kicad_sch index 115246a..951c7a8 100644 --- a/F1:F103/CAR_CANbus/WindShield/kicad/windshield.kicad_sch +++ b/F1:F103/CAR_CANbus/WindShield/kicad/windshield.kicad_sch @@ -1,6879 +1,17647 @@ -(kicad_sch (version 20230121) (generator eeschema) - - (uuid 07322d58-7316-46ef-93d7-29583fc10978) - - (paper "A4") - - (lib_symbols - (symbol "Connector:Conn_01x02_Pin" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) - (property "Reference" "J" (at 0 2.54 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "Conn_01x02_Pin" (at 0 -5.08 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_locked" "" (at 0 0 0) - (effects (font (size 1.27 1.27))) - ) - (property "ki_keywords" "connector" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Generic connector, single row, 01x02, script generated" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "Conn_01x02_Pin_1_1" - (polyline - (pts - (xy 1.27 -2.54) - (xy 0.8636 -2.54) - ) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 1.27 0) - (xy 0.8636 0) - ) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start 0.8636 -2.413) (end 0 -2.667) - (stroke (width 0.1524) (type default)) - (fill (type outline)) - ) - (rectangle (start 0.8636 0.127) (end 0 -0.127) - (stroke (width 0.1524) (type default)) - (fill (type outline)) - ) - (pin passive line (at 5.08 0 180) (length 3.81) - (name "Pin_1" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 5.08 -2.54 180) (length 3.81) - (name "Pin_2" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Connector:Conn_01x03_Pin" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) - (property "Reference" "J" (at 0 5.08 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "Conn_01x03_Pin" (at 0 -5.08 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_locked" "" (at 0 0 0) - (effects (font (size 1.27 1.27))) - ) - (property "ki_keywords" "connector" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Generic connector, single row, 01x03, script generated" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "Conn_01x03_Pin_1_1" - (polyline - (pts - (xy 1.27 -2.54) - (xy 0.8636 -2.54) - ) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 1.27 0) - (xy 0.8636 0) - ) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 1.27 2.54) - (xy 0.8636 2.54) - ) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start 0.8636 -2.413) (end 0 -2.667) - (stroke (width 0.1524) (type default)) - (fill (type outline)) - ) - (rectangle (start 0.8636 0.127) (end 0 -0.127) - (stroke (width 0.1524) (type default)) - (fill (type outline)) - ) - (rectangle (start 0.8636 2.667) (end 0 2.413) - (stroke (width 0.1524) (type default)) - (fill (type outline)) - ) - (pin passive line (at 5.08 2.54 180) (length 3.81) - (name "Pin_1" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 5.08 0 180) (length 3.81) - (name "Pin_2" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 5.08 -2.54 180) (length 3.81) - (name "Pin_3" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Connector:Conn_01x04_Pin" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) - (property "Reference" "J" (at 0 5.08 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "Conn_01x04_Pin" (at 0 -7.62 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_locked" "" (at 0 0 0) - (effects (font (size 1.27 1.27))) - ) - (property "ki_keywords" "connector" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Generic connector, single row, 01x04, script generated" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "Conn_01x04_Pin_1_1" - (polyline - (pts - (xy 1.27 -5.08) - (xy 0.8636 -5.08) - ) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 1.27 -2.54) - (xy 0.8636 -2.54) - ) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 1.27 0) - (xy 0.8636 0) - ) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 1.27 2.54) - (xy 0.8636 2.54) - ) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start 0.8636 -4.953) (end 0 -5.207) - (stroke (width 0.1524) (type default)) - (fill (type outline)) - ) - (rectangle (start 0.8636 -2.413) (end 0 -2.667) - (stroke (width 0.1524) (type default)) - (fill (type outline)) - ) - (rectangle (start 0.8636 0.127) (end 0 -0.127) - (stroke (width 0.1524) (type default)) - (fill (type outline)) - ) - (rectangle (start 0.8636 2.667) (end 0 2.413) - (stroke (width 0.1524) (type default)) - (fill (type outline)) - ) - (pin passive line (at 5.08 2.54 180) (length 3.81) - (name "Pin_1" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 5.08 0 180) (length 3.81) - (name "Pin_2" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 5.08 -2.54 180) (length 3.81) - (name "Pin_3" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 5.08 -5.08 180) (length 3.81) - (name "Pin_4" (effects (font (size 1.27 1.27)))) - (number "4" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Connector:Conn_01x06_Socket" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) - (property "Reference" "J" (at 0 7.62 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "Conn_01x06_Socket" (at 0 -10.16 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_locked" "" (at 0 0 0) - (effects (font (size 1.27 1.27))) - ) - (property "ki_keywords" "connector" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Generic connector, single row, 01x06, script generated" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "Conn_01x06_Socket_1_1" - (arc (start 0 -7.112) (mid -0.5058 -7.62) (end 0 -8.128) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (arc (start 0 -4.572) (mid -0.5058 -5.08) (end 0 -5.588) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (arc (start 0 -2.032) (mid -0.5058 -2.54) (end 0 -3.048) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -1.27 -7.62) - (xy -0.508 -7.62) - ) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -1.27 -5.08) - (xy -0.508 -5.08) - ) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -1.27 -2.54) - (xy -0.508 -2.54) - ) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -1.27 0) - (xy -0.508 0) - ) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -1.27 2.54) - (xy -0.508 2.54) - ) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -1.27 5.08) - (xy -0.508 5.08) - ) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (arc (start 0 0.508) (mid -0.5058 0) (end 0 -0.508) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (arc (start 0 3.048) (mid -0.5058 2.54) (end 0 2.032) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (arc (start 0 5.588) (mid -0.5058 5.08) (end 0 4.572) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (pin passive line (at -5.08 5.08 0) (length 3.81) - (name "Pin_1" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 2.54 0) (length 3.81) - (name "Pin_2" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 0 0) (length 3.81) - (name "Pin_3" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 -2.54 0) (length 3.81) - (name "Pin_4" (effects (font (size 1.27 1.27)))) - (number "4" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 -5.08 0) (length 3.81) - (name "Pin_5" (effects (font (size 1.27 1.27)))) - (number "5" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 -7.62 0) (length 3.81) - (name "Pin_6" (effects (font (size 1.27 1.27)))) - (number "6" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Connector:Screw_Terminal_01x02" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) - (property "Reference" "J" (at 0 2.54 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "Screw_Terminal_01x02" (at 0 -5.08 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "screw terminal" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Generic screw terminal, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "TerminalBlock*:*" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "Screw_Terminal_01x02_1_1" - (rectangle (start -1.27 1.27) (end 1.27 -3.81) - (stroke (width 0.254) (type default)) - (fill (type background)) - ) - (circle (center 0 -2.54) (radius 0.635) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -0.5334 -2.2098) - (xy 0.3302 -3.048) - ) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -0.5334 0.3302) - (xy 0.3302 -0.508) - ) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -0.3556 -2.032) - (xy 0.508 -2.8702) - ) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -0.3556 0.508) - (xy 0.508 -0.3302) - ) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (circle (center 0 0) (radius 0.635) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (pin passive line (at -5.08 0 0) (length 3.81) - (name "Pin_1" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 -2.54 0) (length 3.81) - (name "Pin_2" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Connector:Screw_Terminal_01x03" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) - (property "Reference" "J" (at 0 5.08 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "Screw_Terminal_01x03" (at 0 -5.08 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "screw terminal" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Generic screw terminal, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "TerminalBlock*:*" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "Screw_Terminal_01x03_1_1" - (rectangle (start -1.27 3.81) (end 1.27 -3.81) - (stroke (width 0.254) (type default)) - (fill (type background)) - ) - (circle (center 0 -2.54) (radius 0.635) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -0.5334 -2.2098) - (xy 0.3302 -3.048) - ) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -0.5334 0.3302) - (xy 0.3302 -0.508) - ) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -0.5334 2.8702) - (xy 0.3302 2.032) - ) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -0.3556 -2.032) - (xy 0.508 -2.8702) - ) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -0.3556 0.508) - (xy 0.508 -0.3302) - ) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -0.3556 3.048) - (xy 0.508 2.2098) - ) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (circle (center 0 0) (radius 0.635) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (circle (center 0 2.54) (radius 0.635) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (pin passive line (at -5.08 2.54 0) (length 3.81) - (name "Pin_1" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 0 0) (length 3.81) - (name "Pin_2" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 -2.54 0) (length 3.81) - (name "Pin_3" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Connector:TestPoint" (pin_numbers hide) (pin_names (offset 0.762) hide) (in_bom yes) (on_board yes) - (property "Reference" "TP" (at 0 6.858 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "TestPoint" (at 0 5.08 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 5.08 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 5.08 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "test point tp" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "test point" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "Pin* Test*" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "TestPoint_0_1" - (circle (center 0 3.302) (radius 0.762) - (stroke (width 0) (type default)) - (fill (type none)) - ) - ) - (symbol "TestPoint_1_1" - (pin passive line (at 0 0 90) (length 2.54) - (name "1" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "D_1" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) - (property "Reference" "D" (at 0 2.54 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "D" (at 0 -2.54 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Sim.Device" "D" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Sim.Pins" "1=K 2=A" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "diode" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Diode" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "D_1_0_1" - (polyline - (pts - (xy -1.27 1.27) - (xy -1.27 -1.27) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 1.27 0) - (xy -1.27 0) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 1.27 1.27) - (xy 1.27 -1.27) - (xy -1.27 0) - (xy 1.27 1.27) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - ) - (symbol "D_1_1_1" - (pin passive line (at -3.81 0 0) (length 2.54) - (name "K" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 3.81 0 180) (length 2.54) - (name "A" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes) - (property "Reference" "C" (at 0.635 2.54 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "C" (at 0.635 -2.54 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "" (at 0.9652 -3.81 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "cap capacitor" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Unpolarized capacitor" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "C_*" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "C_0_1" - (polyline - (pts - (xy -2.032 -0.762) - (xy 2.032 -0.762) - ) - (stroke (width 0.508) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -2.032 0.762) - (xy 2.032 0.762) - ) - (stroke (width 0.508) (type default)) - (fill (type none)) - ) - ) - (symbol "C_1_1" - (pin passive line (at 0 3.81 270) (length 2.794) - (name "~" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 0 -3.81 90) (length 2.794) - (name "~" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Device:Crystal" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) - (property "Reference" "Y" (at 0 3.81 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "Crystal" (at 0 -3.81 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "quartz ceramic resonator oscillator" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Two pin crystal" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "Crystal*" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "Crystal_0_1" - (rectangle (start -1.143 2.54) (end 1.143 -2.54) - (stroke (width 0.3048) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -2.54 0) - (xy -1.905 0) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -1.905 -1.27) - (xy -1.905 1.27) - ) - (stroke (width 0.508) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 1.905 -1.27) - (xy 1.905 1.27) - ) - (stroke (width 0.508) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 2.54 0) - (xy 1.905 0) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - ) - (symbol "Crystal_1_1" - (pin passive line (at -3.81 0 0) (length 1.27) - (name "1" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 3.81 0 180) (length 1.27) - (name "2" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Device:D" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) - (property "Reference" "D" (at 0 2.54 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "D" (at 0 -2.54 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Sim.Device" "D" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Sim.Pins" "1=K 2=A" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "diode" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Diode" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "D_0_1" - (polyline - (pts - (xy -1.27 1.27) - (xy -1.27 -1.27) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 1.27 0) - (xy -1.27 0) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 1.27 1.27) - (xy 1.27 -1.27) - (xy -1.27 0) - (xy 1.27 1.27) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - ) - (symbol "D_1_1" - (pin passive line (at -3.81 0 0) (length 2.54) - (name "K" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 3.81 0 180) (length 2.54) - (name "A" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Device:D_Schottky" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) - (property "Reference" "D" (at 0 2.54 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "D_Schottky" (at 0 -2.54 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "diode Schottky" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Schottky diode" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "D_Schottky_0_1" - (polyline - (pts - (xy 1.27 0) - (xy -1.27 0) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 1.27 1.27) - (xy 1.27 -1.27) - (xy -1.27 0) - (xy 1.27 1.27) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -1.905 0.635) - (xy -1.905 1.27) - (xy -1.27 1.27) - (xy -1.27 -1.27) - (xy -0.635 -1.27) - (xy -0.635 -0.635) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - ) - (symbol "D_Schottky_1_1" - (pin passive line (at -3.81 0 0) (length 2.54) - (name "K" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 3.81 0 180) (length 2.54) - (name "A" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Device:L" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) - (property "Reference" "L" (at -1.27 0 90) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "L" (at 1.905 0 90) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "inductor choke coil reactor magnetic" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Inductor" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "Choke_* *Coil* Inductor_* L_*" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "L_0_1" - (arc (start 0 -2.54) (mid 0.6323 -1.905) (end 0 -1.27) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (arc (start 0 -1.27) (mid 0.6323 -0.635) (end 0 0) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (arc (start 0 0) (mid 0.6323 0.635) (end 0 1.27) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (arc (start 0 1.27) (mid 0.6323 1.905) (end 0 2.54) - (stroke (width 0) (type default)) - (fill (type none)) - ) - ) - (symbol "L_1_1" - (pin passive line (at 0 3.81 270) (length 1.27) - (name "1" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 0 -3.81 90) (length 1.27) - (name "2" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Device:Q_NMOS_GDS" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) - (property "Reference" "Q" (at 5.08 1.27 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "Q_NMOS_GDS" (at 5.08 -1.27 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "" (at 5.08 2.54 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "transistor NMOS N-MOS N-MOSFET" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "N-MOSFET transistor, gate/drain/source" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "Q_NMOS_GDS_0_1" - (polyline - (pts - (xy 0.254 0) - (xy -2.54 0) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 0.254 1.905) - (xy 0.254 -1.905) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 0.762 -1.27) - (xy 0.762 -2.286) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 0.762 0.508) - (xy 0.762 -0.508) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 0.762 2.286) - (xy 0.762 1.27) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 2.54 2.54) - (xy 2.54 1.778) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 2.54 -2.54) - (xy 2.54 0) - (xy 0.762 0) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 0.762 -1.778) - (xy 3.302 -1.778) - (xy 3.302 1.778) - (xy 0.762 1.778) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 1.016 0) - (xy 2.032 0.381) - (xy 2.032 -0.381) - (xy 1.016 0) - ) - (stroke (width 0) (type default)) - (fill (type outline)) - ) - (polyline - (pts - (xy 2.794 0.508) - (xy 2.921 0.381) - (xy 3.683 0.381) - (xy 3.81 0.254) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 3.302 0.381) - (xy 2.921 -0.254) - (xy 3.683 -0.254) - (xy 3.302 0.381) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (circle (center 1.651 0) (radius 2.794) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (circle (center 2.54 -1.778) (radius 0.254) - (stroke (width 0) (type default)) - (fill (type outline)) - ) - (circle (center 2.54 1.778) (radius 0.254) - (stroke (width 0) (type default)) - (fill (type outline)) - ) - ) - (symbol "Q_NMOS_GDS_1_1" - (pin input line (at -5.08 0 0) (length 2.54) - (name "G" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 2.54 5.08 270) (length 2.54) - (name "D" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 2.54 -5.08 90) (length 2.54) - (name "S" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Device:Q_NMOS_GSD" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) - (property "Reference" "Q" (at 5.08 1.27 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "Q_NMOS_GSD" (at 5.08 -1.27 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "" (at 5.08 2.54 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "transistor NMOS N-MOS N-MOSFET" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "N-MOSFET transistor, gate/source/drain" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "Q_NMOS_GSD_0_1" - (polyline - (pts - (xy 0.254 0) - (xy -2.54 0) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 0.254 1.905) - (xy 0.254 -1.905) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 0.762 -1.27) - (xy 0.762 -2.286) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 0.762 0.508) - (xy 0.762 -0.508) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 0.762 2.286) - (xy 0.762 1.27) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 2.54 2.54) - (xy 2.54 1.778) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 2.54 -2.54) - (xy 2.54 0) - (xy 0.762 0) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 0.762 -1.778) - (xy 3.302 -1.778) - (xy 3.302 1.778) - (xy 0.762 1.778) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 1.016 0) - (xy 2.032 0.381) - (xy 2.032 -0.381) - (xy 1.016 0) - ) - (stroke (width 0) (type default)) - (fill (type outline)) - ) - (polyline - (pts - (xy 2.794 0.508) - (xy 2.921 0.381) - (xy 3.683 0.381) - (xy 3.81 0.254) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 3.302 0.381) - (xy 2.921 -0.254) - (xy 3.683 -0.254) - (xy 3.302 0.381) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (circle (center 1.651 0) (radius 2.794) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (circle (center 2.54 -1.778) (radius 0.254) - (stroke (width 0) (type default)) - (fill (type outline)) - ) - (circle (center 2.54 1.778) (radius 0.254) - (stroke (width 0) (type default)) - (fill (type outline)) - ) - ) - (symbol "Q_NMOS_GSD_1_1" - (pin input line (at -5.08 0 0) (length 2.54) - (name "G" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 2.54 -5.08 90) (length 2.54) - (name "S" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 2.54 5.08 270) (length 2.54) - (name "D" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Device:Q_PMOS_GDS" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) - (property "Reference" "Q" (at 5.08 1.27 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "Q_PMOS_GDS" (at 5.08 -1.27 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "" (at 5.08 2.54 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "transistor PMOS P-MOS P-MOSFET" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "P-MOSFET transistor, gate/drain/source" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "Q_PMOS_GDS_0_1" - (polyline - (pts - (xy 0.254 0) - (xy -2.54 0) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 0.254 1.905) - (xy 0.254 -1.905) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 0.762 -1.27) - (xy 0.762 -2.286) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 0.762 0.508) - (xy 0.762 -0.508) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 0.762 2.286) - (xy 0.762 1.27) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 2.54 2.54) - (xy 2.54 1.778) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 2.54 -2.54) - (xy 2.54 0) - (xy 0.762 0) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 0.762 1.778) - (xy 3.302 1.778) - (xy 3.302 -1.778) - (xy 0.762 -1.778) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 2.286 0) - (xy 1.27 0.381) - (xy 1.27 -0.381) - (xy 2.286 0) - ) - (stroke (width 0) (type default)) - (fill (type outline)) - ) - (polyline - (pts - (xy 2.794 -0.508) - (xy 2.921 -0.381) - (xy 3.683 -0.381) - (xy 3.81 -0.254) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 3.302 -0.381) - (xy 2.921 0.254) - (xy 3.683 0.254) - (xy 3.302 -0.381) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (circle (center 1.651 0) (radius 2.794) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (circle (center 2.54 -1.778) (radius 0.254) - (stroke (width 0) (type default)) - (fill (type outline)) - ) - (circle (center 2.54 1.778) (radius 0.254) - (stroke (width 0) (type default)) - (fill (type outline)) - ) - ) - (symbol "Q_PMOS_GDS_1_1" - (pin input line (at -5.08 0 0) (length 2.54) - (name "G" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 2.54 5.08 270) (length 2.54) - (name "D" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 2.54 -5.08 90) (length 2.54) - (name "S" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes) - (property "Reference" "R" (at 2.032 0 90) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "R" (at 0 0 90) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at -1.778 0 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "R res resistor" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Resistor" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "R_*" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "R_0_1" - (rectangle (start -1.016 -2.54) (end 1.016 2.54) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - ) - (symbol "R_1_1" - (pin passive line (at 0 3.81 270) (length 1.27) - (name "~" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 0 -3.81 90) (length 1.27) - (name "~" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "GND_3" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) - (property "Reference" "#PWR" (at 0 -6.35 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND_3" (at 0 -3.81 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "global power" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "GND_3_0_1" - (polyline - (pts - (xy 0 0) - (xy 0 -1.27) - (xy 1.27 -1.27) - (xy 0 -2.54) - (xy -1.27 -1.27) - (xy 0 -1.27) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - ) - (symbol "GND_3_1_1" - (pin power_in line (at 0 0 270) (length 0) hide - (name "GND" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Interface_CAN_LIN:MCP2551-I-SN" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) - (property "Reference" "U" (at -10.16 8.89 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "MCP2551-I-SN" (at 2.54 8.89 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (at 0 -12.7 0) - (effects (font (size 1.27 1.27) italic) hide) - ) - (property "Datasheet" "http://ww1.microchip.com/downloads/en/devicedoc/21667d.pdf" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "High-Speed CAN Transceiver" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "High-Speed CAN Transceiver, 1Mbps, 5V supply, SOIC-8" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "SOIC*3.9x4.9mm*P1.27mm*" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "MCP2551-I-SN_0_1" - (rectangle (start -10.16 7.62) (end 10.16 -7.62) - (stroke (width 0.254) (type default)) - (fill (type background)) - ) - ) - (symbol "MCP2551-I-SN_1_1" - (pin input line (at -12.7 5.08 0) (length 2.54) - (name "TXD" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at 0 -10.16 90) (length 2.54) - (name "VSS" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at 0 10.16 270) (length 2.54) - (name "VDD" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - (pin output line (at -12.7 2.54 0) (length 2.54) - (name "RXD" (effects (font (size 1.27 1.27)))) - (number "4" (effects (font (size 1.27 1.27)))) - ) - (pin power_out line (at -12.7 -2.54 0) (length 2.54) - (name "Vref" (effects (font (size 1.27 1.27)))) - (number "5" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at 12.7 -2.54 180) (length 2.54) - (name "CANL" (effects (font (size 1.27 1.27)))) - (number "6" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at 12.7 2.54 180) (length 2.54) - (name "CANH" (effects (font (size 1.27 1.27)))) - (number "7" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -12.7 -5.08 0) (length 2.54) - (name "Rs" (effects (font (size 1.27 1.27)))) - (number "8" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Jumper:SolderJumper_2_Open" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) - (property "Reference" "JP" (at 0 2.032 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "SolderJumper_2_Open" (at 0 -2.54 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "solder jumper SPST" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Solder Jumper, 2-pole, open" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "SolderJumper*Open*" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "SolderJumper_2_Open_0_1" - (arc (start -0.254 1.016) (mid -1.2656 0) (end -0.254 -1.016) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (arc (start -0.254 1.016) (mid -1.2656 0) (end -0.254 -1.016) - (stroke (width 0) (type default)) - (fill (type outline)) - ) - (polyline - (pts - (xy -0.254 1.016) - (xy -0.254 -1.016) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 0.254 1.016) - (xy 0.254 -1.016) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (arc (start 0.254 -1.016) (mid 1.2656 0) (end 0.254 1.016) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (arc (start 0.254 -1.016) (mid 1.2656 0) (end 0.254 1.016) - (stroke (width 0) (type default)) - (fill (type outline)) - ) - ) - (symbol "SolderJumper_2_Open_1_1" - (pin passive line (at -3.81 0 0) (length 2.54) - (name "A" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 3.81 0 180) (length 2.54) - (name "B" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "MCU_ST_STM32F1:STM32F103C6Tx" (in_bom yes) (on_board yes) - (property "Reference" "U" (at -15.24 36.83 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "STM32F103C6Tx" (at 7.62 36.83 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Package_QFP:LQFP-48_7x7mm_P0.5mm" (at -15.24 -35.56 0) - (effects (font (size 1.27 1.27)) (justify right) hide) - ) - (property "Datasheet" "http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/CD00210843.pdf" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "ARM Cortex-M3 STM32F1 STM32F103" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "ARM Cortex-M3 MCU, 32KB flash, 10KB RAM, 72MHz, 2-3.6V, 37 GPIO, LQFP-48" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "LQFP*7x7mm*P0.5mm*" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "STM32F103C6Tx_0_1" - (rectangle (start -15.24 -35.56) (end 12.7 35.56) - (stroke (width 0.254) (type default)) - (fill (type background)) - ) - ) - (symbol "STM32F103C6Tx_1_1" - (pin power_in line (at -5.08 38.1 270) (length 2.54) - (name "VBAT" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at 15.24 5.08 180) (length 2.54) - (name "PA0" (effects (font (size 1.27 1.27)))) - (number "10" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at 15.24 2.54 180) (length 2.54) - (name "PA1" (effects (font (size 1.27 1.27)))) - (number "11" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at 15.24 0 180) (length 2.54) - (name "PA2" (effects (font (size 1.27 1.27)))) - (number "12" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at 15.24 -2.54 180) (length 2.54) - (name "PA3" (effects (font (size 1.27 1.27)))) - (number "13" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at 15.24 -5.08 180) (length 2.54) - (name "PA4" (effects (font (size 1.27 1.27)))) - (number "14" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at 15.24 -7.62 180) (length 2.54) - (name "PA5" (effects (font (size 1.27 1.27)))) - (number "15" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at 15.24 -10.16 180) (length 2.54) - (name "PA6" (effects (font (size 1.27 1.27)))) - (number "16" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at 15.24 -12.7 180) (length 2.54) - (name "PA7" (effects (font (size 1.27 1.27)))) - (number "17" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at -17.78 5.08 0) (length 2.54) - (name "PB0" (effects (font (size 1.27 1.27)))) - (number "18" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at -17.78 2.54 0) (length 2.54) - (name "PB1" (effects (font (size 1.27 1.27)))) - (number "19" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at -17.78 15.24 0) (length 2.54) - (name "PC13" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at -17.78 0 0) (length 2.54) - (name "PB2" (effects (font (size 1.27 1.27)))) - (number "20" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at -17.78 -20.32 0) (length 2.54) - (name "PB10" (effects (font (size 1.27 1.27)))) - (number "21" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at -17.78 -22.86 0) (length 2.54) - (name "PB11" (effects (font (size 1.27 1.27)))) - (number "22" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at -5.08 -38.1 90) (length 2.54) - (name "VSS" (effects (font (size 1.27 1.27)))) - (number "23" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at -2.54 38.1 270) (length 2.54) - (name "VDD" (effects (font (size 1.27 1.27)))) - (number "24" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at -17.78 -25.4 0) (length 2.54) - (name "PB12" (effects (font (size 1.27 1.27)))) - (number "25" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at -17.78 -27.94 0) (length 2.54) - (name "PB13" (effects (font (size 1.27 1.27)))) - (number "26" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at -17.78 -30.48 0) (length 2.54) - (name "PB14" (effects (font (size 1.27 1.27)))) - (number "27" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at -17.78 -33.02 0) (length 2.54) - (name "PB15" (effects (font (size 1.27 1.27)))) - (number "28" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at 15.24 -15.24 180) (length 2.54) - (name "PA8" (effects (font (size 1.27 1.27)))) - (number "29" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at -17.78 12.7 0) (length 2.54) - (name "PC14" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at 15.24 -17.78 180) (length 2.54) - (name "PA9" (effects (font (size 1.27 1.27)))) - (number "30" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at 15.24 -20.32 180) (length 2.54) - (name "PA10" (effects (font (size 1.27 1.27)))) - (number "31" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at 15.24 -22.86 180) (length 2.54) - (name "PA11" (effects (font (size 1.27 1.27)))) - (number "32" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at 15.24 -25.4 180) (length 2.54) - (name "PA12" (effects (font (size 1.27 1.27)))) - (number "33" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at 15.24 -27.94 180) (length 2.54) - (name "PA13" (effects (font (size 1.27 1.27)))) - (number "34" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at -2.54 -38.1 90) (length 2.54) - (name "VSS" (effects (font (size 1.27 1.27)))) - (number "35" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at 0 38.1 270) (length 2.54) - (name "VDD" (effects (font (size 1.27 1.27)))) - (number "36" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at 15.24 -30.48 180) (length 2.54) - (name "PA14" (effects (font (size 1.27 1.27)))) - (number "37" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at 15.24 -33.02 180) (length 2.54) - (name "PA15" (effects (font (size 1.27 1.27)))) - (number "38" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at -17.78 -2.54 0) (length 2.54) - (name "PB3" (effects (font (size 1.27 1.27)))) - (number "39" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at -17.78 10.16 0) (length 2.54) - (name "PC15" (effects (font (size 1.27 1.27)))) - (number "4" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at -17.78 -5.08 0) (length 2.54) - (name "PB4" (effects (font (size 1.27 1.27)))) - (number "40" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at -17.78 -7.62 0) (length 2.54) - (name "PB5" (effects (font (size 1.27 1.27)))) - (number "41" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at -17.78 -10.16 0) (length 2.54) - (name "PB6" (effects (font (size 1.27 1.27)))) - (number "42" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at -17.78 -12.7 0) (length 2.54) - (name "PB7" (effects (font (size 1.27 1.27)))) - (number "43" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -17.78 27.94 0) (length 2.54) - (name "BOOT0" (effects (font (size 1.27 1.27)))) - (number "44" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at -17.78 -15.24 0) (length 2.54) - (name "PB8" (effects (font (size 1.27 1.27)))) - (number "45" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at -17.78 -17.78 0) (length 2.54) - (name "PB9" (effects (font (size 1.27 1.27)))) - (number "46" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at 0 -38.1 90) (length 2.54) - (name "VSS" (effects (font (size 1.27 1.27)))) - (number "47" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at 2.54 38.1 270) (length 2.54) - (name "VDD" (effects (font (size 1.27 1.27)))) - (number "48" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -17.78 22.86 0) (length 2.54) - (name "PD0" (effects (font (size 1.27 1.27)))) - (number "5" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -17.78 20.32 0) (length 2.54) - (name "PD1" (effects (font (size 1.27 1.27)))) - (number "6" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -17.78 33.02 0) (length 2.54) - (name "NRST" (effects (font (size 1.27 1.27)))) - (number "7" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at 2.54 -38.1 90) (length 2.54) - (name "VSSA" (effects (font (size 1.27 1.27)))) - (number "8" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at 5.08 38.1 270) (length 2.54) - (name "VDDA" (effects (font (size 1.27 1.27)))) - (number "9" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Regulator_Linear:XC6206PxxxMR" (pin_names (offset 0.254)) (in_bom yes) (on_board yes) - (property "Reference" "U" (at -3.81 3.175 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "XC6206PxxxMR" (at 0 3.175 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Package_TO_SOT_SMD:SOT-23-3" (at 0 5.715 0) - (effects (font (size 1.27 1.27) italic) hide) - ) - (property "Datasheet" "https://www.torexsemi.com/file/xc6206/XC6206.pdf" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "Torex LDO Voltage Regulator Fixed Positive" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Positive 60-250mA Low Dropout Regulator, Fixed Output, SOT-23" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "SOT?23?3*" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "XC6206PxxxMR_0_1" - (rectangle (start -5.08 1.905) (end 5.08 -5.08) - (stroke (width 0.254) (type default)) - (fill (type background)) - ) - ) - (symbol "XC6206PxxxMR_1_1" - (pin power_in line (at 0 -7.62 90) (length 2.54) - (name "GND" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin power_out line (at 7.62 0 180) (length 2.54) - (name "VO" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at -7.62 0 0) (length 2.54) - (name "VI" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "ZXCT1009:ZXCT1009" (in_bom yes) (on_board yes) - (property "Reference" "U" (at 0 5.08 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "ZXCT1009" (at 0 -5.08 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Package_TO_SOT_SMD:SOT-23_Handsoldering" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "High side current sensor 1mA/100mV" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "ZXCT1009_0_0" - (text "" (at 0 -6.35 0) - (effects (font (size 1.27 1.27))) - ) - ) - (symbol "ZXCT1009_0_1" - (rectangle (start -3.81 3.81) (end 3.81 -3.81) - (stroke (width 0) (type default)) - (fill (type none)) - ) - ) - (symbol "ZXCT1009_1_1" - (pin passive line (at -8.89 2.54 0) (length 5.08) - (name "-" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -8.89 -2.54 0) (length 5.08) - (name "+" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 8.89 0 180) (length 5.08) - (name "sense" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "elements:PESD1CAN" (pin_names (offset 0.762) hide) (in_bom yes) (on_board yes) - (property "Reference" "D" (at 0 -8.89 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "PESD1CAN" (at 1.27 3.81 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 0 0 0) - (effects (font (size 1.27 1.27))) - ) - (property "Datasheet" "" (at 0 0 0) - (effects (font (size 1.27 1.27))) - ) - (property "ki_keywords" "diode" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "CAN bus ESD protection" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "SOT23" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "PESD1CAN_0_1" - (rectangle (start -5.08 2.54) (end 7.62 -7.62) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -3.556 -5.08) - (xy 3.81 -5.08) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -3.556 0) - (xy 3.81 0) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -3.81 -3.81) - (xy -3.81 -6.35) - (xy -3.81 -6.35) - ) - (stroke (width 0.2032) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -3.81 1.27) - (xy -3.81 -1.27) - (xy -3.81 -1.27) - ) - (stroke (width 0.2032) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 3.81 -3.81) - (xy 3.81 -6.35) - (xy 3.81 -6.35) - ) - (stroke (width 0.2032) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 3.81 1.27) - (xy 3.81 -1.27) - (xy 3.81 -1.27) - ) - (stroke (width 0.2032) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -3.81 -3.81) - (xy -4.318 -3.81) - (xy -4.318 -4.064) - (xy -4.318 -4.064) - ) - (stroke (width 0.2032) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -3.81 1.27) - (xy -4.318 1.27) - (xy -4.318 1.016) - (xy -4.318 1.016) - ) - (stroke (width 0.2032) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 3.81 -6.35) - (xy 4.318 -6.35) - (xy 4.318 -6.096) - (xy 4.318 -6.096) - ) - (stroke (width 0.2032) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 3.81 -3.81) - (xy 3.302 -3.81) - (xy 3.302 -4.064) - (xy 3.302 -4.064) - ) - (stroke (width 0.2032) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 3.81 -1.27) - (xy 4.318 -1.27) - (xy 4.318 -1.016) - (xy 4.318 -1.016) - ) - (stroke (width 0.2032) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 3.81 0) - (xy 6.35 0) - (xy 6.35 -5.08) - (xy 3.81 -5.08) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 3.81 1.27) - (xy 3.302 1.27) - (xy 3.302 1.016) - (xy 3.302 1.016) - ) - (stroke (width 0.2032) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -3.302 -6.096) - (xy -3.302 -6.35) - (xy -3.81 -6.35) - (xy -3.81 -6.35) - (xy -3.81 -6.35) - ) - (stroke (width 0.2032) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -3.302 -1.016) - (xy -3.302 -1.27) - (xy -3.81 -1.27) - (xy -3.81 -1.27) - (xy -3.81 -1.27) - ) - (stroke (width 0.2032) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -1.27 -6.35) - (xy -3.81 -5.08) - (xy -1.27 -3.81) - (xy -1.27 -6.35) - (xy -1.27 -6.35) - (xy -1.27 -6.35) - ) - (stroke (width 0.2032) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -1.27 -1.27) - (xy -3.81 0) - (xy -1.27 1.27) - (xy -1.27 -1.27) - (xy -1.27 -1.27) - (xy -1.27 -1.27) - ) - (stroke (width 0.2032) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 1.27 -3.81) - (xy 3.81 -5.08) - (xy 1.27 -6.35) - (xy 1.27 -3.81) - (xy 1.27 -3.81) - (xy 1.27 -3.81) - ) - (stroke (width 0.2032) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 1.27 1.27) - (xy 3.81 0) - (xy 1.27 -1.27) - (xy 1.27 1.27) - (xy 1.27 1.27) - (xy 1.27 1.27) - ) - (stroke (width 0.2032) (type default)) - (fill (type none)) - ) - (pin passive line (at -7.62 0 0) (length 3.81) - (name "K" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -7.62 -5.08 0) (length 3.81) - (name "K" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 10.16 -2.54 180) (length 3.81) - (name "O" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "mp1584:MT1470" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) - (property "Reference" "U" (at -2.54 5.08 0) - (effects (font (size 1.524 1.524))) - ) - (property "Value" "MT1470" (at 0 -5.08 0) - (effects (font (size 1.524 1.524))) - ) - (property "Footprint" "" (at 0 0 0) - (effects (font (size 1.524 1.524))) - ) - (property "Datasheet" "" (at 0 0 0) - (effects (font (size 1.524 1.524))) - ) - (symbol "MT1470_0_1" - (rectangle (start -5.08 3.81) (end 3.81 -3.81) - (stroke (width 0) (type default)) - (fill (type none)) - ) - ) - (symbol "MT1470_1_1" - (pin input line (at -10.16 2.54 0) (length 5.08) - (name "GND" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -10.16 0 0) (length 5.08) - (name "SW" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -10.16 -2.54 0) (length 5.08) - (name "VIN" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at 8.89 -2.54 180) (length 5.08) - (name "FB" (effects (font (size 1.27 1.27)))) - (number "4" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at 8.89 0 180) (length 5.08) - (name "EN" (effects (font (size 1.27 1.27)))) - (number "5" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at 8.89 2.54 180) (length 5.08) - (name "BS" (effects (font (size 1.27 1.27)))) - (number "6" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "power:+12V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) - (property "Reference" "#PWR" (at 0 -3.81 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "+12V" (at 0 3.556 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "global power" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Power symbol creates a global label with name \"+12V\"" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "+12V_0_1" - (polyline - (pts - (xy -0.762 1.27) - (xy 0 2.54) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 0 0) - (xy 0 2.54) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 0 2.54) - (xy 0.762 1.27) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - ) - (symbol "+12V_1_1" - (pin power_in line (at 0 0 90) (length 0) hide - (name "+12V" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "power:+3V3" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) - (property "Reference" "#PWR" (at 0 -3.81 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "+3V3" (at 0 3.556 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "global power" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Power symbol creates a global label with name \"+3V3\"" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "+3V3_0_1" - (polyline - (pts - (xy -0.762 1.27) - (xy 0 2.54) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 0 0) - (xy 0 2.54) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 0 2.54) - (xy 0.762 1.27) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - ) - (symbol "+3V3_1_1" - (pin power_in line (at 0 0 90) (length 0) hide - (name "+3V3" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) - (property "Reference" "#PWR" (at 0 -3.81 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "+5V" (at 0 3.556 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "global power" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Power symbol creates a global label with name \"+5V\"" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "+5V_0_1" - (polyline - (pts - (xy -0.762 1.27) - (xy 0 2.54) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 0 0) - (xy 0 2.54) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 0 2.54) - (xy 0.762 1.27) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - ) - (symbol "+5V_1_1" - (pin power_in line (at 0 0 90) (length 0) hide - (name "+5V" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes) - (property "Reference" "#FLG" (at 0 1.905 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "PWR_FLAG" (at 0 3.81 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "flag power" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Special symbol for telling ERC where power comes from" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "PWR_FLAG_0_0" - (pin power_out line (at 0 0 90) (length 0) - (name "pwr" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - ) - (symbol "PWR_FLAG_0_1" - (polyline - (pts - (xy 0 0) - (xy 0 1.27) - (xy -1.016 1.905) - (xy 0 2.54) - (xy 1.016 1.905) - (xy 0 1.27) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - ) - ) - ) - - (junction (at 46.736 131.953) (diameter 0) (color 0 0 0 0) - (uuid 04a83578-a55f-4580-96f3-61057dbedfed) - ) - (junction (at 135.001 68.326) (diameter 0) (color 0 0 0 0) - (uuid 04b5ccf0-675d-4bc1-a7d0-6782b714c016) - ) - (junction (at 53.594 88.646) (diameter 0) (color 0 0 0 0) - (uuid 11ecb61e-87a2-43b6-a070-8585268ffba1) - ) - (junction (at 30.988 105.918) (diameter 0) (color 0 0 0 0) - (uuid 14214c0a-7fec-4231-adcf-cde97aabb67a) - ) - (junction (at 261.493 119.761) (diameter 0) (color 0 0 0 0) - (uuid 1db461ad-03e9-432c-9f2c-347de611387a) - ) - (junction (at 229.235 115.824) (diameter 0) (color 0 0 0 0) - (uuid 2be67728-ec70-49e8-bbfa-abf5ec4d977a) - ) - (junction (at 211.963 94.488) (diameter 0) (color 0 0 0 0) - (uuid 3234f340-43e5-493b-a07c-74a94506335c) - ) - (junction (at 276.733 114.681) (diameter 0) (color 0 0 0 0) - (uuid 35c0c0a5-3e52-41c7-950a-f30080e0af6c) - ) - (junction (at 50.8071 88.646) (diameter 0) (color 0 0 0 0) - (uuid 38787313-cecc-4c84-96d7-09057bce0655) - ) - (junction (at 39.878 64.389) (diameter 0) (color 0 0 0 0) - (uuid 39413802-93ed-4e1e-bb18-cc6b2021382f) - ) - (junction (at 43.307 64.389) (diameter 0) (color 0 0 0 0) - (uuid 3d1e81d7-2d2d-471f-a713-8c94c4cf1ab4) - ) - (junction (at 132.461 144.526) (diameter 0) (color 0 0 0 0) - (uuid 455ea53d-7b60-4e69-a0db-f87c85ec9568) - ) - (junction (at 30.988 113.538) (diameter 0) (color 0 0 0 0) - (uuid 4b219aa1-1fc9-4039-b8ce-d6a403f27bda) - ) - (junction (at 46.355 88.646) (diameter 0) (color 0 0 0 0) - (uuid 4dafc3e9-bb15-4849-b167-2ce518e17a61) - ) - (junction (at 129.794 53.721) (diameter 0) (color 0 0 0 0) - (uuid 512d2776-dce2-4c71-ba85-4e727bda1d50) - ) - (junction (at 187.198 114.681) (diameter 0) (color 0 0 0 0) - (uuid 53cfd96d-d4a7-44c0-98ea-4afe39dd6be1) - ) - (junction (at 238.633 115.824) (diameter 0) (color 0 0 0 0) - (uuid 57989eff-3b78-4838-bb0e-557e3d8f8442) - ) - (junction (at 202.438 119.761) (diameter 0) (color 0 0 0 0) - (uuid 5d492663-2764-4232-8c8c-88700c22bf0d) - ) - (junction (at 253.873 115.824) (diameter 0) (color 0 0 0 0) - (uuid 614675c8-a980-400f-803d-24720c6b3581) - ) - (junction (at 135.001 144.526) (diameter 0) (color 0 0 0 0) - (uuid 62eac716-4df5-44b3-9de4-cda8a911fa89) - ) - (junction (at 240.665 115.824) (diameter 0) (color 0 0 0 0) - (uuid 68016f29-dfa2-4cea-8f8d-399f760f65cc) - ) - (junction (at 45.466 34.798) (diameter 0) (color 0 0 0 0) - (uuid 68c3a4fc-6335-4d03-9b7c-43c6d8907813) - ) - (junction (at 50.038 105.918) (diameter 0) (color 0 0 0 0) - (uuid 6c3e5452-5e97-4702-b80f-465156cc0523) - ) - (junction (at 45.466 42.418) (diameter 0) (color 0 0 0 0) - (uuid 755dead6-1ecf-4996-8076-7d36eb05d770) - ) - (junction (at 26.162 105.918) (diameter 0) (color 0 0 0 0) - (uuid 78c7cf04-cfc9-4b74-bf26-b44b53476696) - ) - (junction (at 202.438 107.315) (diameter 0) (color 0 0 0 0) - (uuid 841f754b-9fa0-4200-bee7-235e5c7f7a8d) - ) - (junction (at 36.83 139.573) (diameter 0) (color 0 0 0 0) - (uuid 8f465ff5-7247-4690-be90-da64bf941923) - ) - (junction (at 229.235 108.204) (diameter 0) (color 0 0 0 0) - (uuid 8f724349-f694-44ed-8d9c-e0cda61f11e4) - ) - (junction (at 129.794 61.341) (diameter 0) (color 0 0 0 0) - (uuid 919037aa-be87-430c-9a1f-f5d08491b9b4) - ) - (junction (at 132.461 68.326) (diameter 0) (color 0 0 0 0) - (uuid 92d49134-2523-4b52-a64d-a8f259d65d33) - ) - (junction (at 210.058 115.824) (diameter 0) (color 0 0 0 0) - (uuid 945d0b04-2a66-4f10-9cfc-3a3fbf5954e7) - ) - (junction (at 32.258 64.389) (diameter 0) (color 0 0 0 0) - (uuid 94a8a855-818f-4a60-837f-b46d08470f3b) - ) - (junction (at 44.45 131.953) (diameter 0) (color 0 0 0 0) - (uuid 95de10a3-8395-4be0-88f7-9e7b6e463543) - ) - (junction (at 137.541 68.326) (diameter 0) (color 0 0 0 0) - (uuid a1061cfb-4aa1-4dd7-a1ef-7b377d5dbdc9) - ) - (junction (at 35.306 91.948) (diameter 0) (color 0 0 0 0) - (uuid a1ecd3cc-6560-49d2-98d4-5dcb348cbac1) - ) - (junction (at 269.113 124.206) (diameter 0) (color 0 0 0 0) - (uuid a542f058-4cec-4529-a80d-0ffb720e7f96) - ) - (junction (at 194.818 124.206) (diameter 0) (color 0 0 0 0) - (uuid a8dd4f46-fbd3-4699-9fa4-6e69f3724105) - ) - (junction (at 276.733 124.206) (diameter 0) (color 0 0 0 0) - (uuid b0939354-3ca3-412b-9380-d9560afdf94d) - ) - (junction (at 253.873 129.286) (diameter 0) (color 0 0 0 0) - (uuid b15f23a6-ce6b-4ac5-ae8a-8d53d0b544fc) - ) - (junction (at 138.049 53.721) (diameter 0) (color 0 0 0 0) - (uuid be06a359-e3aa-4c99-b7b2-72ce9b79acaf) - ) - (junction (at 29.21 131.953) (diameter 0) (color 0 0 0 0) - (uuid bf5382bb-cec6-4308-b804-be4dcf2ac377) - ) - (junction (at 225.425 115.824) (diameter 0) (color 0 0 0 0) - (uuid c0fc507c-0599-481d-ac28-0565e5b670b5) - ) - (junction (at 129.921 68.326) (diameter 0) (color 0 0 0 0) - (uuid cad9296b-c0fc-4011-a597-f561a8812f8c) - ) - (junction (at 261.493 107.315) (diameter 0) (color 0 0 0 0) - (uuid ce0451f1-4534-4806-b104-4ced52d273eb) - ) - (junction (at 48.768 42.418) (diameter 0) (color 0 0 0 0) - (uuid d279cb62-5026-45c9-91ab-35ea685e8122) - ) - (junction (at 189.611 97.028) (diameter 0) (color 0 0 0 0) - (uuid db1002bd-49f2-4ec6-b301-2e4aedac98b4) - ) - (junction (at 187.198 124.206) (diameter 0) (color 0 0 0 0) - (uuid de5b929b-4a6c-44d1-ae06-8d9f1bec4fe8) - ) - (junction (at 53.594 96.266) (diameter 0) (color 0 0 0 0) - (uuid e81c3ee8-3240-49e7-823a-2822235c184c) - ) - (junction (at 210.058 102.108) (diameter 0) (color 0 0 0 0) - (uuid e8ae2c37-1d22-4e4f-84ac-8e1360bed333) - ) - (junction (at 57.912 88.646) (diameter 0) (color 0 0 0 0) - (uuid e9e2cd99-5be1-4306-aff8-7abf9c487738) - ) - (junction (at 138.049 61.341) (diameter 0) (color 0 0 0 0) - (uuid edc0cac8-fb78-4e00-a675-7998c1060781) - ) - (junction (at 261.493 99.695) (diameter 0) (color 0 0 0 0) - (uuid f511a81b-9375-489f-bf7f-fa049e995d6a) - ) - (junction (at 210.058 129.286) (diameter 0) (color 0 0 0 0) - (uuid f7e852da-adad-46e3-a1ba-2cca78c2f910) - ) - (junction (at 32.512 39.878) (diameter 0) (color 0 0 0 0) - (uuid faeaaffc-336c-48bb-b2c2-d5e1c50238e7) - ) - (junction (at 133.731 144.526) (diameter 0) (color 0 0 0 0) - (uuid fb719421-8f6a-4259-a1d3-1b26b66ea299) - ) - - (no_connect (at 250.444 39.751) (uuid 06b76f45-c04e-4722-98a2-713c33e2c2dc)) - (no_connect (at 117.221 103.886) (uuid 11fd59f3-d31e-4cbf-a6fa-69d401922ec6)) - (no_connect (at 117.221 96.266) (uuid 284a0ee7-da16-43ab-84d1-eaa22b5bf7e1)) - (no_connect (at 117.221 108.966) (uuid 350d36c4-e684-4307-a078-2d14e88d92fc)) - (no_connect (at 150.241 114.046) (uuid 54611337-fc3a-41ca-a37b-d97c37d8aa4b)) - (no_connect (at 117.221 119.126) (uuid 67c7a72a-ea7a-4c56-844a-62c7257a317a)) - (no_connect (at 150.241 121.666) (uuid 6ac0d355-8ab8-477d-a446-d7f7bd6a19bc)) - (no_connect (at 117.221 111.506) (uuid 6b1749e8-eb78-431c-a797-91b137d64476)) - (no_connect (at 117.221 126.746) (uuid 733e0d28-8fca-4ed4-9ddb-27a52caf2a90)) - (no_connect (at 117.221 93.726) (uuid 86bd9976-0639-407d-a51b-73058f4a1983)) - (no_connect (at 117.221 101.346) (uuid 8dcb6ba8-ca3a-4a28-82fe-c8278f4a27f8)) - (no_connect (at 117.221 129.286) (uuid a23eee45-778a-4851-ab87-7c37f8452f09)) - (no_connect (at 150.241 139.446) (uuid aaf8f740-8042-40e7-9e8c-f870d4531d3a)) - (no_connect (at 117.221 106.426) (uuid acd137e9-588c-4174-a218-005f9b8c20b4)) - (no_connect (at 150.241 111.506) (uuid ca1bc797-8799-4b8d-abd5-07ed7ab7bf65)) - (no_connect (at 117.221 91.186) (uuid ed00d6ce-ba2f-498d-a4f9-d31ea334e44e)) - (no_connect (at 117.221 116.586) (uuid f2eeed21-545d-4b4d-a8f7-0c74a52be954)) - (no_connect (at 117.221 114.046) (uuid f54998f2-8bed-4551-9912-3dda0df67cf7)) - - (wire (pts (xy 50.038 91.948) (xy 50.038 100.838)) - (stroke (width 0) (type default)) - (uuid 0875b0c0-a586-435e-aee8-9deaf5a2335c) - ) - (wire (pts (xy 276.733 114.681) (xy 276.733 116.459)) - (stroke (width 0) (type default)) - (uuid 0d858a6a-d82c-4479-adb1-197b30bf84ae) - ) - (wire (pts (xy 187.198 114.681) (xy 187.198 116.459)) - (stroke (width 0) (type default)) - (uuid 0f0fa712-65f5-4e5d-8c85-0233e686837c) - ) - (wire (pts (xy 50.038 105.918) (xy 53.594 105.918)) - (stroke (width 0) (type default)) - (uuid 10b379e9-fb61-4975-95b8-65a497adceb4) - ) - (wire (pts (xy 45.466 42.418) (xy 48.768 42.418)) - (stroke (width 0) (type default)) - (uuid 1151df19-e3de-495f-b1ec-a47de2421c34) - ) - (wire (pts (xy 262.763 129.286) (xy 269.113 129.286)) - (stroke (width 0) (type default)) - (uuid 134fb925-aef7-49bc-8346-491c123b1859) - ) - (wire (pts (xy 135.001 68.326) (xy 137.541 68.326)) - (stroke (width 0) (type default)) - (uuid 14861fa0-1060-4e8e-bcf0-05b0bfc6566c) - ) - (wire (pts (xy 210.058 115.824) (xy 210.058 119.126)) - (stroke (width 0) (type default)) - (uuid 167fa0bf-4b54-47b7-9d57-ee66d31cb734) - ) - (wire (pts (xy 46.736 131.953) (xy 44.45 131.953)) - (stroke (width 0) (type default)) - (uuid 1803955e-a18e-4ca6-8be6-06fd8837fc7e) - ) - (wire (pts (xy 269.113 124.206) (xy 276.733 124.206)) - (stroke (width 0) (type default)) - (uuid 1b57ca45-2af8-4f41-8482-d3ff117df5b6) - ) - (wire (pts (xy 133.731 144.526) (xy 135.001 144.526)) - (stroke (width 0) (type default)) - (uuid 1b9af7a5-eb43-4b7a-aabd-f60400dd32e0) - ) - (wire (pts (xy 253.873 99.695) (xy 253.873 102.235)) - (stroke (width 0) (type default)) - (uuid 1f4be369-65ca-42e6-99a3-b4914bad4fc4) - ) - (wire (pts (xy 129.921 144.526) (xy 132.461 144.526)) - (stroke (width 0) (type default)) - (uuid 265d56d8-a4eb-4d75-a989-b4465779efad) - ) - (wire (pts (xy 47.244 64.389) (xy 43.307 64.389)) - (stroke (width 0) (type default)) - (uuid 27ab7309-6476-4052-b0e9-50081cbaa4c0) - ) - (wire (pts (xy 210.058 99.568) (xy 210.058 102.108)) - (stroke (width 0) (type default)) - (uuid 282c3294-b80e-4ef0-ab22-e32038113fbf) - ) - (wire (pts (xy 210.058 102.108) (xy 211.963 102.108)) - (stroke (width 0) (type default)) - (uuid 29940ae5-2ad5-4751-9d78-baf85f4f3c2c) - ) - (wire (pts (xy 53.594 105.918) (xy 53.594 96.266)) - (stroke (width 0) (type default)) - (uuid 2aeb2385-ee9a-4bac-99a1-b50eaa6bf17a) - ) - (wire (pts (xy 137.541 68.326) (xy 140.081 68.326)) - (stroke (width 0) (type default)) - (uuid 2c511560-bd86-4951-8a5b-d00bb210434a) - ) - (wire (pts (xy 129.921 68.326) (xy 132.461 68.326)) - (stroke (width 0) (type default)) - (uuid 2ec56d4f-7218-41a4-ae8b-54e44968c656) - ) - (wire (pts (xy 132.461 68.326) (xy 135.001 68.326)) - (stroke (width 0) (type default)) - (uuid 3472c12c-066f-4cd9-a5f5-a1816e7efa69) - ) - (wire (pts (xy 26.162 105.918) (xy 30.988 105.918)) - (stroke (width 0) (type default)) - (uuid 362ba119-08f7-4b5f-81e3-db41859a6d68) - ) - (wire (pts (xy 185.928 114.681) (xy 187.198 114.681)) - (stroke (width 0) (type default)) - (uuid 368b68cc-9389-44d3-9361-decbf727a475) - ) - (wire (pts (xy 138.049 53.721) (xy 146.431 53.721)) - (stroke (width 0) (type default)) - (uuid 3f5f7246-8f22-4dc4-8b03-6d000dd693f5) - ) - (wire (pts (xy 121.031 61.341) (xy 129.794 61.341)) - (stroke (width 0) (type default)) - (uuid 3ffb71dd-92aa-491c-b044-6132987e0d8f) - ) - (wire (pts (xy 194.818 124.206) (xy 187.198 124.206)) - (stroke (width 0) (type default)) - (uuid 40bd4aac-eb13-4d74-870a-8635c859180c) - ) - (wire (pts (xy 129.794 61.341) (xy 138.049 61.341)) - (stroke (width 0) (type default)) - (uuid 44ba091f-522c-4d6d-9beb-ce52494b667d) - ) - (wire (pts (xy 48.768 42.418) (xy 51.816 42.418)) - (stroke (width 0) (type default)) - (uuid 45501a32-9f44-4757-ad53-c3d78f22fec1) - ) - (wire (pts (xy 225.425 115.824) (xy 229.235 115.824)) - (stroke (width 0) (type default)) - (uuid 459e3da3-2b52-4dab-b4cd-d907f66d4528) - ) - (wire (pts (xy 45.085 168.275) (xy 41.656 168.275)) - (stroke (width 0) (type default)) - (uuid 4a1f53ee-7ad7-4df1-9f05-678a48aaaa04) - ) - (wire (pts (xy 240.665 115.824) (xy 253.873 115.824)) - (stroke (width 0) (type default)) - (uuid 4b5afb41-295c-42cd-bf7f-4f366ca16c22) - ) - (wire (pts (xy 35.306 88.646) (xy 35.306 91.948)) - (stroke (width 0) (type default)) - (uuid 4e21e834-0dbd-402d-ada0-5331cb655e4d) - ) - (wire (pts (xy 136.652 19.939) (xy 134.747 19.939)) - (stroke (width 0) (type default)) - (uuid 4f0f3b35-56ce-49ac-bc9a-cb47197be91b) - ) - (wire (pts (xy 41.656 173.355) (xy 45.085 173.355)) - (stroke (width 0) (type default)) - (uuid 580223b0-a299-4081-9c4e-937d084eeb87) - ) - (wire (pts (xy 202.057 129.286) (xy 194.818 129.286)) - (stroke (width 0) (type default)) - (uuid 59ccd0c5-a35c-45dc-9bc2-eba23f15622e) - ) - (wire (pts (xy 253.873 112.395) (xy 253.873 115.824)) - (stroke (width 0) (type default)) - (uuid 5efcab19-a6ed-442b-8ed6-6e3ffcbdda84) - ) - (wire (pts (xy 229.235 108.204) (xy 238.633 108.204)) - (stroke (width 0) (type default)) - (uuid 5f1f924f-790d-43e9-ba6a-74d8136e7c19) - ) - (wire (pts (xy 186.563 97.028) (xy 189.611 97.028)) - (stroke (width 0) (type default)) - (uuid 6048650a-37fa-4862-ad7a-133c46216dbd) - ) - (wire (pts (xy 105.791 78.486) (xy 117.221 78.486)) - (stroke (width 0) (type default)) - (uuid 625f5351-dce7-4449-a6f6-9b5eb192ed13) - ) - (wire (pts (xy 210.058 112.395) (xy 210.058 115.824)) - (stroke (width 0) (type default)) - (uuid 632a6ad0-aecd-408b-a4ab-45770c2c0c27) - ) - (wire (pts (xy 43.307 64.389) (xy 39.878 64.389)) - (stroke (width 0) (type default)) - (uuid 6bf20f87-15f1-48e0-a06e-53b5b98e4af7) - ) - (wire (pts (xy 44.958 91.948) (xy 50.038 91.948)) - (stroke (width 0) (type default)) - (uuid 6cab717a-6c3c-4306-9a8c-8c3296b8b522) - ) - (wire (pts (xy 229.235 115.824) (xy 232.537 115.824)) - (stroke (width 0) (type default)) - (uuid 6d15cd5f-cbb5-4017-b8c5-c7a6cd597535) - ) - (wire (pts (xy 41.656 170.815) (xy 45.085 170.815)) - (stroke (width 0) (type default)) - (uuid 73e0b0c9-26aa-4912-8ff5-24ea6e0264b4) - ) - (wire (pts (xy 89.789 45.974) (xy 95.123 45.974)) - (stroke (width 0) (type default)) - (uuid 7b1f69ab-3309-407c-b7bb-5dc28196f54c) - ) - (wire (pts (xy 261.493 109.601) (xy 261.493 107.315)) - (stroke (width 0) (type default)) - (uuid 7b6dc3c7-3977-4534-a0fa-0f542e14cd7d) - ) - (wire (pts (xy 37.338 91.948) (xy 35.306 91.948)) - (stroke (width 0) (type default)) - (uuid 7c060d77-5709-47bf-8d6b-d1213b30daf7) - ) - (wire (pts (xy 209.677 129.286) (xy 210.058 129.286)) - (stroke (width 0) (type default)) - (uuid 7c67c6d6-0d82-45b5-b6d0-1ef4f776776d) - ) - (wire (pts (xy 276.733 114.681) (xy 277.749 114.681)) - (stroke (width 0) (type default)) - (uuid 813bbe41-0503-4e7c-b898-7c09dfb757ab) - ) - (wire (pts (xy 32.512 34.798) (xy 45.466 34.798)) - (stroke (width 0) (type default)) - (uuid 8b5d68ba-ae4b-432a-9bb2-906df32448e1) - ) - (wire (pts (xy 202.438 109.601) (xy 202.438 107.315)) - (stroke (width 0) (type default)) - (uuid 8d23173d-d262-48b2-99c3-0eaf30f158d0) - ) - (wire (pts (xy 210.058 94.488) (xy 211.963 94.488)) - (stroke (width 0) (type default)) - (uuid 926c3073-9beb-4274-81ee-84b6f2ff1f9a) - ) - (wire (pts (xy 121.031 53.721) (xy 129.794 53.721)) - (stroke (width 0) (type default)) - (uuid 94f1444a-3ef0-4de3-a233-d6de4c3189e3) - ) - (wire (pts (xy 194.818 116.459) (xy 194.818 119.761)) - (stroke (width 0) (type default)) - (uuid 955842a7-7717-42dd-be70-7239b05c90a1) - ) - (wire (pts (xy 138.049 61.341) (xy 146.431 61.341)) - (stroke (width 0) (type default)) - (uuid 958e84cc-805b-46d4-a90a-eab59fc95524) - ) - (wire (pts (xy 28.448 103.378) (xy 30.988 103.378)) - (stroke (width 0) (type default)) - (uuid 95ee444b-9c5f-4571-9ceb-cbed842b698d) - ) - (wire (pts (xy 42.926 88.646) (xy 46.355 88.646)) - (stroke (width 0) (type default)) - (uuid 96d28969-40e1-44d8-98c6-1d2b56517da4) - ) - (wire (pts (xy 129.794 53.721) (xy 138.049 53.721)) - (stroke (width 0) (type default)) - (uuid 9853ddef-49eb-442b-b6b3-17e8c34e5560) - ) - (wire (pts (xy 255.143 129.286) (xy 253.873 129.286)) - (stroke (width 0) (type default)) - (uuid 99ef87db-4c39-480a-be31-93d70438d996) - ) - (wire (pts (xy 50.8071 88.646) (xy 53.594 88.646)) - (stroke (width 0) (type default)) - (uuid 9a13ff8a-4218-42d1-9fcf-710692c05916) - ) - (wire (pts (xy 118.999 176.276) (xy 118.999 179.832)) - (stroke (width 0) (type default)) - (uuid ac2a53a2-9a5c-471e-9ecb-044856058cc5) - ) - (wire (pts (xy 235.077 115.824) (xy 238.633 115.824)) - (stroke (width 0) (type default)) - (uuid b0805483-704f-4988-a120-327ad892d71b) - ) - (wire (pts (xy 29.21 139.573) (xy 36.83 139.573)) - (stroke (width 0) (type default)) - (uuid b2e6b54b-4ab4-4076-a76c-d208a324b5bd) - ) - (wire (pts (xy 276.733 116.459) (xy 269.113 116.459)) - (stroke (width 0) (type default)) - (uuid b3fb4a8e-9e04-444b-a89a-3134d3de06e2) - ) - (wire (pts (xy 269.113 129.286) (xy 269.113 124.206)) - (stroke (width 0) (type default)) - (uuid b58648f9-208a-4756-a3d8-5d9f08dd2f4e) - ) - (wire (pts (xy 187.198 118.491) (xy 187.198 124.206)) - (stroke (width 0) (type default)) - (uuid b7345348-87ea-4f67-a259-0a5c53f5f776) - ) - (wire (pts (xy 210.058 102.108) (xy 210.058 102.235)) - (stroke (width 0) (type default)) - (uuid b7645524-bd05-4ad8-98f2-1b8f78cd8efb) - ) - (wire (pts (xy 53.594 96.266) (xy 57.912 96.266)) - (stroke (width 0) (type default)) - (uuid bc3eba17-ae75-4ac5-a7b2-afccd5693c4b) - ) - (wire (pts (xy 28.448 91.948) (xy 28.448 103.378)) - (stroke (width 0) (type default)) - (uuid c31d0199-4938-4dec-95fc-83bd318a1609) - ) - (wire (pts (xy 269.113 116.459) (xy 269.113 119.761)) - (stroke (width 0) (type default)) - (uuid c5256a31-8e7a-4aff-a99f-270dc2d3ffdd) - ) - (wire (pts (xy 53.594 88.646) (xy 57.912 88.646)) - (stroke (width 0) (type default)) - (uuid c539c5e9-040d-409c-b9ee-cf5ef2e59c54) - ) - (wire (pts (xy 135.001 144.526) (xy 137.541 144.526)) - (stroke (width 0) (type default)) - (uuid c8d743c5-694b-46d0-8350-ae354c476cfb) - ) - (wire (pts (xy 46.355 88.646) (xy 50.8071 88.646)) - (stroke (width 0) (type default)) - (uuid cd9cf484-8ddd-41b2-9854-bf507882524e) - ) - (wire (pts (xy 261.493 99.695) (xy 253.873 99.695)) - (stroke (width 0) (type default)) - (uuid ce8a033f-f3d4-4d96-a516-cd06fd53c080) - ) - (wire (pts (xy 194.818 129.286) (xy 194.818 124.206)) - (stroke (width 0) (type default)) - (uuid cfa0def0-c6c9-41dd-aa08-5ca9a44d34ef) - ) - (wire (pts (xy 93.599 43.434) (xy 95.123 43.434)) - (stroke (width 0) (type default)) - (uuid d41a0c64-40eb-42e2-9173-9b40915bc1ad) - ) - (wire (pts (xy 253.873 115.824) (xy 253.873 119.126)) - (stroke (width 0) (type default)) - (uuid d5e11bbc-c581-4173-b74d-4a829150ca0f) - ) - (wire (pts (xy 238.633 115.824) (xy 240.665 115.824)) - (stroke (width 0) (type default)) - (uuid db7af0bb-f02d-41b4-9eda-981f26e759b0) - ) - (wire (pts (xy 210.058 115.824) (xy 225.425 115.824)) - (stroke (width 0) (type default)) - (uuid dc3eeaff-3306-45da-9be5-ea79ec0da308) - ) - (wire (pts (xy 36.83 139.573) (xy 44.45 139.573)) - (stroke (width 0) (type default)) - (uuid de6a9bac-3162-4761-876c-1076649ac160) - ) - (wire (pts (xy 132.461 144.526) (xy 133.731 144.526)) - (stroke (width 0) (type default)) - (uuid e4be9c35-1408-4407-8c13-f70a96661b95) - ) - (wire (pts (xy 35.306 91.948) (xy 28.448 91.948)) - (stroke (width 0) (type default)) - (uuid e75b9d6c-a134-4ba5-89e9-29a59ae4ec80) - ) - (wire (pts (xy 125.222 19.939) (xy 127.127 19.939)) - (stroke (width 0) (type default)) - (uuid ec5475ad-f6f4-46bb-8167-8fa12a84165c) - ) - (wire (pts (xy 187.198 116.459) (xy 194.818 116.459)) - (stroke (width 0) (type default)) - (uuid ed3f42a3-72c1-4631-8403-445a05910c37) - ) - (wire (pts (xy 27.305 113.538) (xy 30.988 113.538)) - (stroke (width 0) (type default)) - (uuid f0e4c757-5463-4f1f-9469-6f752add662a) - ) - (wire (pts (xy 115.189 173.736) (xy 111.379 173.736)) - (stroke (width 0) (type default)) - (uuid f10a3685-30d1-4dd2-b8f1-e760a41efb85) - ) - (wire (pts (xy 276.733 118.491) (xy 276.733 124.206)) - (stroke (width 0) (type default)) - (uuid f133d506-295f-4826-a3ab-8f4509a3a42d) - ) - (wire (pts (xy 189.611 97.028) (xy 192.278 97.028)) - (stroke (width 0) (type default)) - (uuid fc9c41a5-74f9-46f5-96a1-b0ae78e27752) - ) - - (rectangle (start 20.701 18.796) (end 67.056 144.653) - (stroke (width 0) (type dash)) - (fill (type none)) - (uuid 4abc0973-8f80-494e-83d9-6e69ac14bd71) - ) - (rectangle (start 76.835 14.478) (end 106.426 54.483) - (stroke (width 0) (type dash)) - (fill (type none)) - (uuid 6a6ed6df-6d29-4536-8291-f8c58ec1fa01) - ) - (rectangle (start 99.06 155.321) (end 139.319 192.405) - (stroke (width 0) (type dash)) - (fill (type none)) - (uuid 898c0133-ff64-420d-a0c8-29f7988e993f) - ) - (rectangle (start 59.69 163.322) (end 92.583 183.388) - (stroke (width 0) (type dash)) - (fill (type none)) - (uuid 96c5d968-2217-476f-861a-adfcfedb6724) - ) - (rectangle (start 24.638 160.02) (end 53.721 181.737) - (stroke (width 0) (type dash)) - (fill (type none)) - (uuid bc2df5f4-07d8-4282-ae74-82ff9e507e14) - ) - - (text "Control by car windows\nmanage system" (at 102.235 162.941 0) - (effects (font (size 2 2)) (justify left bottom)) - (uuid 1a53cc86-b271-4497-8366-fa9d4cc73612) - ) - (text "Hall sensors" (at 27.94 163.576 0) - (effects (font (size 2.0066 2.0066)) (justify left bottom)) - (uuid 2bf6369f-95ca-40c6-97dc-a61363567f08) - ) - (text "Connect motor so that (2) of J3\nis positive when window goes up!!!" - (at 212.344 143.764 0) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid 40d8ae1a-7fbd-4c92-8fdf-b445af79940b) - ) - (text "Control by simplest\nbuttons" (at 61.214 171.069 0) - (effects (font (size 2 2)) (justify left bottom)) - (uuid 6cf216b7-527a-4af8-bdbd-a380149893b0) - ) - (text "Terminal on/off" (at 236.093 69.977 0) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid 7963bcba-8242-4c88-8d4a-dd202dc15c50) - ) - (text "Program &\nconfigure" (at 83.947 23.114 0) - (effects (font (size 2 2)) (justify left bottom)) - (uuid 8ba6f5d6-7ee2-4f05-89eb-8daf5035b1a3) - ) - (text "Power" (at 37.084 23.876 0) - (effects (font (size 2.54 2.54)) (justify left bottom)) - (uuid b1ba27dd-6b6c-4680-a1f6-5f75707304fa) - ) - (text "5W" (at 212.725 99.695 90) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid c4faca53-b5af-4472-a929-8850ef49c2a2) - ) - - (label "OSC_OUT" (at 117.221 86.106 180) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify right bottom)) - (uuid 00b86c96-cd43-4a87-8d08-911400ca7e2f) - ) - (label "OSC_IN" (at 125.222 19.939 180) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify right bottom)) - (uuid 04f9e798-8a06-419d-bc1a-02a359ee3695) - ) - (label "HOT@On" (at 32.512 37.338 0) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid 0b5ec417-7880-4cd6-9766-94f52f9b56a5) - ) - (label "DOWN_DIR" (at 126.619 179.832 0) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid 0fb8d8eb-15b4-49f8-9e3f-96ce80a7c940) - ) - (label "DOWN_SW" (at 34.036 173.355 180) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify right bottom)) - (uuid 116455d0-3885-44d9-9d77-a32013b8ea2f) - ) - (label "SWCLK" (at 95.123 38.354 180) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify right bottom)) - (uuid 141c720d-bee6-4fb1-ae61-01469c119d97) - ) - (label "UP_SW" (at 150.241 131.826 0) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid 1734a881-eb44-4b57-ae5f-8b2719d95863) - ) - (label "BOOT0" (at 117.221 78.486 180) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify right bottom)) - (uuid 1ef0c2ce-6722-44bd-bb5f-688434289722) - ) - (label "CAN_Rx" (at 250.444 34.671 180) (fields_autoplaced) - (effects (font (size 1.524 1.524)) (justify right bottom)) - (uuid 1fb8aabd-e4f0-4697-b1f3-145062eb7313) - ) - (label "SWDIO" (at 95.123 40.894 180) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify right bottom)) - (uuid 23931abb-751d-4dc9-8a52-d0a8c7d9cf05) - ) - (label "UP_DIR" (at 122.809 166.116 0) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid 26717b99-6e3b-4899-b8f6-e77036e6fb46) - ) - (label "OSC_OUT" (at 136.652 19.939 0) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid 27ae4202-4266-41d1-b46e-d6ef1b11e6fa) - ) - (label "Power_EN" (at 150.241 103.886 0) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid 2bc925ac-08f7-472c-94d3-e81cf43e6fdd) - ) - (label "NRST" (at 117.221 73.406 180) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify right bottom)) - (uuid 2db2c245-6481-4e0f-a4a9-d307f8eb4cdd) - ) - (label "CAN_Tx" (at 250.444 32.131 180) (fields_autoplaced) - (effects (font (size 1.524 1.524)) (justify right bottom)) - (uuid 37194176-570d-4c7e-a46c-d82d0e2ecd2e) - ) - (label "UP_DIR" (at 117.221 131.826 180) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify right bottom)) - (uuid 37ac4294-be85-4536-ae1d-0a3b3f7fdfe6) - ) - (label "Power_EN" (at 39.878 72.009 0) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid 3c2af804-d8d8-44e8-bcdb-1b26ba24d06b) - ) - (label "HOT@Always" (at 32.512 34.798 0) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid 3c924bcd-eb78-447c-87e1-39945b16997d) - ) - (label "L_DOWN" (at 187.198 118.491 180) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify right bottom)) - (uuid 3f127e0c-635f-4f3e-8c6f-9c37814dc8c7) - ) - (label "CAN_Rx" (at 117.221 121.666 180) (fields_autoplaced) - (effects (font (size 1.524 1.524)) (justify right bottom)) - (uuid 4b3125ce-b71e-4e2a-ad73-d55d9252fe10) - ) - (label "L_UP" (at 150.241 106.426 0) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid 4da5b4db-93bb-4b76-8d8a-5d75f2e6f6a6) - ) - (label "Vsen" (at 150.241 101.346 0) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid 5015a96b-8b02-4670-b224-fa3a8484fd13) - ) - (label "Tx" (at 91.059 26.797 180) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify right bottom)) - (uuid 523e051e-184b-40b7-a047-f869d1c87b66) - ) - (label "DOWN_BTN" (at 117.221 139.446 180) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify right bottom)) - (uuid 54d2631a-8fcd-49ff-aac0-6b7d7779a92b) - ) - (label "R_UP" (at 277.749 114.681 0) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid 55d865af-37ad-4c70-9d61-9290eb2e0589) - ) - (label "DOWN_DIR" (at 117.221 134.366 180) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify right bottom)) - (uuid 5b36a0ca-bf92-476d-a14f-6feaf255eeb4) - ) - (label "R_DOWN" (at 150.241 116.586 0) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid 5c32ac0e-8dda-4674-a86b-5e5e186a30e5) - ) - (label "VEN" (at 50.038 103.378 0) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid 5c909ea7-220f-4c72-aa97-9e6af46260b2) - ) - (label "DOWN_BTN" (at 70.866 174.371 180) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify right bottom)) - (uuid 637928a8-4add-41eb-b8cb-8481d7d2de3c) - ) - (label "UP_SW" (at 34.036 170.815 180) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify right bottom)) - (uuid 67905607-21a5-4eaf-b78c-f358b053f32b) - ) - (label "NRST" (at 95.123 51.054 180) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify right bottom)) - (uuid 67a3c558-b00b-45be-8ff3-6645b20160c7) - ) - (label "BOOT0" (at 95.123 48.514 180) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify right bottom)) - (uuid 71588455-f8df-4f20-8070-8da158030b14) - ) - (label "HOT@On" (at 32.258 56.769 0) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid 71d25d92-d4af-4631-a579-0b6c15308624) - ) - (label "CANH" (at 274.447 58.293 180) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify right bottom)) - (uuid 76ebe9de-26f7-4085-8fb9-6f88dc8c0d09) - ) - (label "R_DOWN" (at 276.733 118.491 0) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid 779fbcf1-666c-43a7-9e5e-d4e978cd90c9) - ) - (label "DOWN_SW" (at 150.241 129.286 0) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid 84bb7c22-15d9-40e9-a94c-ac316d31593c) - ) - (label "CAN_Tx" (at 117.221 124.206 180) (fields_autoplaced) - (effects (font (size 1.524 1.524)) (justify right bottom)) - (uuid 8e922546-3e5a-468f-8f1f-940d626072bb) - ) - (label "CANL" (at 274.447 55.753 180) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify right bottom)) - (uuid 936c0335-bbc5-4634-a44e-57865c43e79d) - ) - (label "Rx" (at 91.059 29.337 180) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify right bottom)) - (uuid 95afd79d-b6b3-41bf-aeb4-3e1c2914d188) - ) - (label "VEN" (at 47.244 64.389 0) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid 95afe001-c514-431f-abdf-798adc1e500e) - ) - (label "UP_BTN" (at 70.866 176.911 180) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify right bottom)) - (uuid 9c4aae88-1d7d-40c3-b871-fec2a817169f) - ) - (label "L_UP" (at 185.928 114.681 180) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify right bottom)) - (uuid a7a42d34-e62e-42fe-82e2-0250d4134a16) - ) - (label "CANL" (at 260.604 54.356 0) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid b0b10d6a-f3b0-4b50-a699-404b5c81e0e7) - ) - (label "CANH" (at 248.158 56.896 180) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify right bottom)) - (uuid b20999f6-f5da-417a-9865-8483a60c4118) - ) - (label "Rx" (at 150.241 126.746 0) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid bd7eaaf4-f90c-4764-9959-83e010f43a8d) - ) - (label "SWDIO" (at 150.241 134.366 0) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid be3875af-ea41-4a30-8ef9-b8093bce4dd5) - ) - (label "R_UP" (at 150.241 108.966 0) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid c56e9923-6869-43e5-b6f7-666be8c87ae3) - ) - (label "Vsen" (at 178.943 97.028 180) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify right bottom)) - (uuid c63ee787-b8f9-443e-b444-c58e92f3ec0d) - ) - (label "CANL" (at 240.538 64.516 90) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid c6fec31a-0a1e-409c-a2d3-65669a0de1f0) - ) - (label "OSC_IN" (at 117.221 83.566 180) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify right bottom)) - (uuid c9213228-d0db-4791-9af3-af64e7f36f3f) - ) - (label "CANH" (at 255.524 54.356 180) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify right bottom)) - (uuid db99707d-0375-481a-a6fb-b6ca5937f888) - ) - (label "Tx" (at 150.241 124.206 0) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid e28d9989-6000-49c5-b174-6d75f2e1f996) - ) - (label "CANH" (at 275.844 34.671 0) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid e95f3f91-408b-4489-8fbf-c967eaf40c74) - ) - (label "L_DOWN" (at 150.241 119.126 0) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid ee5b3794-e44a-42ee-b5c5-8c926e3a1696) - ) - (label "CANL" (at 275.844 39.751 0) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid f27fb8fb-b694-4c08-94ce-dc16a09e4052) - ) - (label "SWCLK" (at 150.241 136.906 0) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid f9cc7d8d-e7d0-4c0c-875d-d0a6ffdb8170) - ) - (label "UP_BTN" (at 117.221 136.906 180) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify right bottom)) - (uuid fd0a902f-7e40-4380-80d5-576a791f5beb) - ) - - (symbol (lib_name "GND_3") (lib_id "power:GND") (at 261.493 119.761 0) (mirror y) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid 00fb8df9-b85e-4ad1-a7b8-3eb591fe72cb) - (property "Reference" "#PWR044" (at 261.493 126.111 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 261.493 123.706 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Footprint" "" (at 261.493 119.761 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 261.493 119.761 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 08700ad6-497d-46bf-a472-d8c76e25cf9f)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "#PWR044") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:PWR_FLAG") (at 26.162 105.918 90) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid 01785f27-eb8d-4950-9720-9eeac3e39ed2) - (property "Reference" "#FLG01" (at 24.257 105.918 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "PWR_FLAG" (at 22.217 105.918 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Footprint" "" (at 26.162 105.918 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 26.162 105.918 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 24d99fca-1c0f-49c2-9430-f25a7b1a1441)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "#FLG01") (unit 1) - ) - ) - ) - ) - - (symbol (lib_name "GND_3") (lib_id "power:GND") (at 32.512 39.878 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid 05f129b7-eb4f-471a-b7d6-637e14241795) - (property "Reference" "#PWR06" (at 32.512 46.228 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 32.512 43.823 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Footprint" "" (at 32.512 39.878 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 32.512 39.878 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid ec4dca86-6c8e-4b92-b781-c375d3f76cb2)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "#PWR06") (unit 1) - ) - ) - ) - ) - - (symbol (lib_name "GND_3") (lib_id "power:GND") (at 45.085 175.895 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid 067058ea-c24d-48d9-8d12-acd4071a16a3) - (property "Reference" "#PWR09" (at 45.085 182.245 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 45.085 179.84 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Footprint" "" (at 45.085 175.895 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 45.085 175.895 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid e4c0121d-c7f7-48d2-ba2c-fbb52601b79f)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "#PWR09") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:C") (at 57.912 92.456 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 069c60ee-3b02-4b2d-ac7e-e05693a8179c) - (property "Reference" "C6" (at 58.674 90.424 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "22" (at 58.674 94.996 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (at 58.8772 96.266 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 57.912 92.456 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 5e54560b-d301-41d6-85eb-e2d8c7dd9ab9)) - (pin "2" (uuid a44c1770-9f64-43b0-b029-b3277814bbe9)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "C6") (unit 1) - ) - ) - ) - ) - - (symbol (lib_name "GND_3") (lib_id "power:GND") (at 125.222 27.559 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid 08b1fcc2-956e-41fe-be4f-61178a24234f) - (property "Reference" "#PWR022" (at 125.222 33.909 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 125.222 31.504 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Footprint" "" (at 125.222 27.559 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 125.222 27.559 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid de636779-851b-4abf-b1f6-cf631207ee62)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "#PWR022") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R") (at 74.676 174.371 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 0b8eac93-733e-4d0c-acf8-31efe8dab991) - (property "Reference" "R8" (at 73.152 172.212 90) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "100" (at 73.152 174.371 90) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 74.676 172.593 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 74.676 174.371 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 889e9db5-3542-4420-b34a-ac16812cf4ec)) - (pin "2" (uuid 64445d28-e5f3-45d7-b1ce-c4a0466d8cbe)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "R8") (unit 1) - ) - ) - (project "stm32" - (path "/1ec6f7b4-f573-4ec7-9f09-903dcf29773c" - (reference "R23") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R") (at 211.963 98.298 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid 0c7fee8d-333c-4847-9a86-c6aaf2cd04e4) - (property "Reference" "R20" (at 213.741 97.274 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "0.05" (at 213.741 99.322 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Resistor_THT:R_Box_L14.0mm_W5.0mm_P9.00mm" (at 210.185 98.298 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 211.963 98.298 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 35dcf42d-3543-4168-9611-7aedc357d51e)) - (pin "2" (uuid e6cb5830-925e-47f3-aa56-9459d35c7257)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "R20") (unit 1) - ) - ) - ) - ) - - (symbol (lib_name "GND_3") (lib_id "power:GND") (at 126.619 187.452 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid 0f34c8cf-18d5-4cc0-97c2-91c877e69695) - (property "Reference" "#PWR023" (at 126.619 193.802 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 126.619 191.397 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Footprint" "" (at 126.619 187.452 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 126.619 187.452 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid dc9978b3-0a51-44b9-852c-de0499b41153)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "#PWR023") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R") (at 248.158 60.706 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 0fa0b0c7-7679-4ad5-959a-2982a59300e4) - (property "Reference" "R21" (at 243.205 60.706 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "120" (at 248.158 62.23 90) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Resistor_SMD:R_1210_3225Metric_Pad1.30x2.65mm_HandSolder" (at 246.38 60.706 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 248.158 60.706 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid b7d85d50-2e2f-4fec-a666-254f5d2fce91)) - (pin "2" (uuid 650d3e82-b375-404f-9af8-979fcb0e61ea)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "R21") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Connector:TestPoint") (at 51.816 42.418 180) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 10676098-9c4c-4af0-a728-3b6a6a5f1707) - (property "Reference" "TP7" (at 50.419 46.744 0) - (effects (font (size 1.27 1.27)) (justify left) hide) - ) - (property "Value" "Gnd" (at 53.848 47.625 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "TestPoint:TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded" (at 46.736 42.418 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 46.736 42.418 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 6c3b1d7b-bd2c-4b60-bf51-1d0536715f10)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "TP7") (unit 1) - ) - ) - ) - ) - - (symbol (lib_name "GND_3") (lib_id "power:GND") (at 202.438 119.761 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid 11079225-4d18-42bd-ab3c-411fbb9f212c) - (property "Reference" "#PWR032" (at 202.438 126.111 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 202.438 123.706 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Footprint" "" (at 202.438 119.761 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 202.438 119.761 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 66597b81-eb8e-4c97-9150-3db4feda02e2)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "#PWR032") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:D") (at 36.068 64.389 180) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 114a9849-5e07-4cae-81ad-420c30c66ef7) - (property "Reference" "D1" (at 37.719 59.69 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "1N5819" (at 37.846 61.595 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 36.068 64.389 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 36.068 64.389 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Sim.Device" "D" (at 36.068 64.389 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Sim.Pins" "1=K 2=A" (at 36.068 64.389 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 8db07ac3-61d2-406f-b389-66cffabdc3e2)) - (pin "2" (uuid 01d6d0f3-ece0-41c8-acdf-f55e311e02a6)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "D1") (unit 1) - ) - ) - ) - ) - - (symbol (lib_name "GND_3") (lib_id "power:GND") (at 189.611 104.648 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid 1359a728-33e8-418c-b69c-26c53b00fb34) - (property "Reference" "#PWR030" (at 189.611 110.998 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 189.611 108.593 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Footprint" "" (at 189.611 104.648 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 189.611 104.648 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 8f60cf5e-fa09-4830-9a5f-128528a347bb)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "#PWR030") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R") (at 32.258 68.199 180) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 17364d81-b838-484a-add9-55202307e226) - (property "Reference" "R2" (at 35.433 67.691 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "100k" (at 32.258 67.945 90) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 34.036 68.199 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 32.258 68.199 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 562ac199-5b94-461c-8dd9-0e86ebd10ded)) - (pin "2" (uuid 8e8721f3-0a0d-442f-8438-ae9aaa3f146d)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "R2") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:+5V") (at 263.144 27.051 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid 18a752cb-e6ec-4c82-8782-5208e5e75d21) - (property "Reference" "#PWR014" (at 263.144 30.861 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "+5V" (at 263.144 23.106 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 263.144 27.051 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 263.144 27.051 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid d2d3292e-a403-44d2-81b9-101c3b8f5dec)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "#PWR014") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Jumper:SolderJumper_2_Open") (at 244.348 64.516 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 19703c99-93cd-42bd-a514-95881437d720) - (property "Reference" "JP1" (at 244.348 67.056 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "Term" (at 244.348 62.095 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Open_TrianglePad1.0x1.5mm" (at 244.348 64.516 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 244.348 64.516 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 620b96f1-a59c-40a0-bbeb-50fef367acb3)) - (pin "2" (uuid 99788f6e-f463-4288-9e0c-dc66d4d497ba)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "JP1") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Connector:Conn_01x03_Pin") (at 96.139 29.337 180) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid 1bcf9c92-e28f-4301-aa01-20096e3417da) - (property "Reference" "J4" (at 96.8502 28.313 0) - (effects (font (size 1.27 1.27)) (justify right)) - ) - (property "Value" "UART" (at 96.8502 30.361 0) - (effects (font (size 1.27 1.27)) (justify right)) - ) - (property "Footprint" "Connector_PinSocket_2.54mm:PinSocket_1x03_P2.54mm_Vertical" (at 96.139 29.337 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 96.139 29.337 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 51f71288-4a1c-4f8e-8f04-5c1f93158a01)) - (pin "2" (uuid fb06cac1-1524-4476-ae81-faaad46f0cbd)) - (pin "3" (uuid f68e8702-67dc-44c1-b9cc-75b2007782d1)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "J4") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:C") (at 41.148 91.948 90) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 2135eb5e-a491-44ed-9e01-efbcf9715412) - (property "Reference" "C3" (at 44.323 90.297 90) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "1u" (at 43.688 93.218 90) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" (at 44.958 90.9828 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 41.148 91.948 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid a1d73ba8-8508-4417-8c70-2912b0763248)) - (pin "2" (uuid 1237e6a7-9f3f-473a-a342-9769a5f1f993)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "C3") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Connector:TestPoint") (at 46.736 131.953 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 21e8e784-612e-4640-aee1-3042d238a077) - (property "Reference" "TP5" (at 51.062 133.35 0) - (effects (font (size 1.27 1.27)) (justify left) hide) - ) - (property "Value" "3V3" (at 51.943 130.556 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "TestPoint:TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded" (at 46.736 137.033 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 46.736 137.033 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 91cab07d-ad89-46ce-a361-4bfca037f661)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "TP5") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Connector:Conn_01x04_Pin") (at 50.165 170.815 0) (mirror y) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 22803ca7-6f57-46e0-b742-ee15eb046870) - (property "Reference" "J2" (at 51.816 170.688 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "Hall" (at 50.419 177.419 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Connector_JST:JST_PH_B4B-PH-K_1x04_P2.00mm_Vertical" (at 50.165 170.815 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 50.165 170.815 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 5312ad12-b19d-40ba-a3dc-86207a8533db)) - (pin "2" (uuid cca961da-4408-4ab0-886c-3da0de10ce20)) - (pin "3" (uuid 99e35d7f-a829-4c8c-8dbe-765a32ba7d11)) - (pin "4" (uuid 98007fe8-744a-4e04-811e-2968540af691)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "J2") (unit 1) - ) - ) - (project "stm32" - (path "/1ec6f7b4-f573-4ec7-9f09-903dcf29773c" - (reference "J9") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:D") (at 225.425 119.634 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 24d6f82c-2e62-4d47-9d97-379df441a496) - (property "Reference" "D9" (at 227.457 118.2925 90) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "1N4007" (at 223.012 115.697 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Diode_SMD:D_SMA_Handsoldering" (at 225.425 119.634 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 225.425 119.634 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Sim.Device" "D" (at 225.425 119.634 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Sim.Pins" "1=K 2=A" (at 225.425 119.634 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 75792bea-d6b7-41c3-b05f-44092af4d3aa)) - (pin "2" (uuid 6fe9b3f6-bd30-43fe-9474-e47d7b1dcc78)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "D9") (unit 1) - ) - ) - ) - ) - - (symbol (lib_name "GND_3") (lib_id "power:GND") (at 50.038 113.538 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid 29f1843d-234c-4f24-bece-714c514fb403) - (property "Reference" "#PWR013" (at 50.038 119.888 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 50.038 117.483 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Footprint" "" (at 50.038 113.538 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 50.038 113.538 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 2c59e716-8b84-405e-98c5-f6aa3f117974)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "#PWR013") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Connector:Conn_01x02_Pin") (at 279.527 58.293 180) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 2aabb44e-9449-40ff-ab5f-46c9a6e225b6) - (property "Reference" "J8" (at 281.6098 52.3748 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "CAN" (at 280.67 60.198 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Connector_JST:JST_PH_B2B-PH-K_1x02_P2.00mm_Vertical" (at 279.527 58.293 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 279.527 58.293 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 3e48aabf-3b1e-454b-aee1-9ea84dfa8fe5)) - (pin "2" (uuid c27e1fee-116f-44af-8d03-808d060660d2)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "J8") (unit 1) - ) - ) - (project "stm32" - (path "/f40cbe7e-cd25-45e5-a6cb-d92457495048" - (reference "J12") (unit 1) - ) - ) - ) - ) - - (symbol (lib_name "GND_3") (lib_id "power:GND") (at 57.912 81.026 180) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid 2adb46a5-7eed-4c7a-a9c3-6619ea5332ab) - (property "Reference" "#PWR015" (at 57.912 74.676 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 57.912 77.081 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Footprint" "" (at 57.912 81.026 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 57.912 81.026 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 659bb1ae-6aa1-496a-bcf7-bb8f7bae8efd)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "#PWR015") (unit 1) - ) - ) - ) - ) - - (symbol (lib_name "GND_3") (lib_id "power:GND") (at 250.444 42.291 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid 2cd00ad1-f5c4-4755-b4a7-6ae89f22a389) - (property "Reference" "#PWR039" (at 250.444 48.641 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 250.444 46.236 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Footprint" "" (at 250.444 42.291 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 250.444 42.291 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid c391dd06-4eb4-4ad0-9c1d-01adfba01cdd)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "#PWR039") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:+12V") (at 194.818 107.315 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 2cf10a71-52e4-487e-a044-df0ff7202a65) - (property "Reference" "#PWR031" (at 194.818 111.125 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "+12V" (at 193.929 103.632 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 194.818 107.315 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 194.818 107.315 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 922b61c4-126c-427d-9dd3-80fc23ebca27)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "#PWR031") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R") (at 205.867 129.286 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 2f12e7c2-219f-416a-bbee-2bbdd41dfc34) - (property "Reference" "R19" (at 205.74 127.2286 90) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "10k" (at 205.613 129.286 90) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 205.867 127.508 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 205.867 129.286 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 82219b94-fae9-44e9-8b86-8573db6d3e7b)) - (pin "2" (uuid a5975459-a22e-4464-b2f5-c3dff2fef8b7)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "R19") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:Q_PMOS_GDS") (at 256.413 107.315 180) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 2f757bfd-4ac7-433b-ab5b-f2b0a45a23eb) - (property "Reference" "Q4" (at 251.206 108.339 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "AOD4185" (at 251.841 105.791 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Package_TO_SOT_SMD:TO-252-3_TabPin2" (at 251.333 109.855 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 256.413 107.315 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid ef5c0fda-93e3-4629-a5c3-49061c4da58b)) - (pin "2" (uuid c4e23e71-553c-4496-99cb-fd5755a87987)) - (pin "3" (uuid dd39ef96-2024-43cf-a681-e6c2b3b283c4)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "Q4") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R") (at 32.258 60.579 180) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 32429e25-097b-48cf-b4db-d64650cf837d) - (property "Reference" "R1" (at 29.21 60.579 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "300k" (at 32.258 60.325 90) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 34.036 60.579 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 32.258 60.579 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 97d2290b-a8b3-42a4-8638-a46733a6bfb7)) - (pin "2" (uuid a6e15c39-45fd-46ec-91e2-b1b3ec176546)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "R1") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "ZXCT1009:ZXCT1009") (at 201.168 97.028 180) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid 3671fd88-84f3-4f3a-909e-cde8c8f599fa) - (property "Reference" "U4" (at 201.168 87.0265 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "ZXCT1009" (at 201.168 89.0745 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Package_TO_SOT_SMD:SOT-23_Handsoldering" (at 201.168 97.028 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 201.168 97.028 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 3e39c92e-cb3d-4af3-a636-c854209601d8)) - (pin "2" (uuid ecee838c-cf71-4a10-8d75-83c5e76e072e)) - (pin "3" (uuid a12fcd24-3d3a-46e4-9a5c-8f692267cce1)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "U4") (unit 1) - ) - ) - ) - ) - - (symbol (lib_name "GND_3") (lib_id "power:GND") (at 36.83 139.573 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid 3677766e-2088-4685-9f25-5fe0d3e2adaf) - (property "Reference" "#PWR08" (at 36.83 145.923 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 36.83 143.518 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Footprint" "" (at 36.83 139.573 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 36.83 139.573 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 19fb8a47-31d9-4a03-b2a8-2f5e8a93686d)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "#PWR08") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R") (at 198.628 119.761 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 374a9243-c0ae-42b3-927b-8a62be5d5888) - (property "Reference" "R26" (at 197.612 117.729 90) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "10k" (at 198.374 119.761 90) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 198.628 117.983 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 198.628 119.761 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 2b4d2ff9-463e-4a19-ab3f-56a4d2ced759)) - (pin "2" (uuid 31c480a4-bda8-4655-bca8-6c4420e6b56c)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "R26") (unit 1) - ) - ) - ) - ) - - (symbol (lib_name "GND_3") (lib_id "power:GND") (at 122.809 173.736 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid 38ccec34-63b6-4ffb-a484-66feea6f519b) - (property "Reference" "#PWR021" (at 122.809 180.086 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 122.809 177.681 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Footprint" "" (at 122.809 173.736 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 122.809 173.736 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid dd07faf2-c1fa-4a60-8a24-9d4aac2671a6)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "#PWR021") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:Crystal") (at 130.937 19.939 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 3a4c0890-c42a-49b7-8297-824d30461a0a) - (property "Reference" "Y1" (at 130.937 13.1318 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "NX5032GA-8MHz" (at 130.937 15.4432 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Crystal:Crystal_SMD_5032-2Pin_5.0x3.2mm" (at 130.937 19.939 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 130.937 19.939 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 1d038916-3822-4f17-9831-fa6f02c73cb5)) - (pin "2" (uuid 7f15371e-920f-481f-8a4c-a5c2fe9b5467)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "Y1") (unit 1) - ) - ) - (project "Canon_manage" - (path "/56438dee-19cd-4574-afb4-194a39bf2855" - (reference "Y1") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R") (at 191.008 114.681 90) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 3abf9af0-d75b-46f1-8c44-608300f7651a) - (property "Reference" "R16" (at 191.008 112.395 90) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "100" (at 191.262 114.681 90) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 191.008 116.459 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 191.008 114.681 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 1a4260bf-9e62-4fdb-8809-388da53e5df7)) - (pin "2" (uuid 18aca343-3e4b-430b-a46f-24a548dea588)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "R16") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:+3V3") (at 46.736 131.953 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid 3b8b9707-3903-41d0-8f6a-aea6978fe1fb) - (property "Reference" "#PWR012" (at 46.736 135.763 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "+3V3" (at 46.736 128.008 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 46.736 131.953 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 46.736 131.953 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid fac6553a-a2c8-4e5a-bc8a-cc729a2a9d2d)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "#PWR012") (unit 1) - ) - ) - ) - ) - - (symbol (lib_name "GND_3") (lib_id "power:GND") (at 258.064 72.136 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid 3c6f818b-7c1b-4903-af85-191e2427fcce) - (property "Reference" "#PWR042" (at 258.064 78.486 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 258.064 76.081 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Footprint" "" (at 258.064 72.136 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 258.064 72.136 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid fe709a34-7a92-4502-8f82-481a96da661e)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "#PWR042") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:+5V") (at 257.556 22.606 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid 40625366-fca4-431a-ae6b-6e377d084962) - (property "Reference" "#PWR041" (at 257.556 26.416 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "+5V" (at 257.556 18.661 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 257.556 22.606 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 257.556 22.606 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 74c49959-e134-41c0-b3aa-7adc2b1ea75b)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "#PWR041") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:C") (at 138.049 57.531 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid 40e246c7-0204-46de-878c-c8b852fd8ab9) - (property "Reference" "C11" (at 140.97 56.507 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "0.1" (at 140.97 58.555 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 139.0142 61.341 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 138.049 57.531 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 18c73562-9be9-4142-ac55-f0029802fe01)) - (pin "2" (uuid f2eeac5f-ad1b-4e6c-a0aa-4bbf200d23f6)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "C11") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R") (at 265.303 124.206 270) (mirror x) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 40ff16c9-50c1-4217-b945-227fce8d08eb) - (property "Reference" "R24" (at 265.176 126.492 90) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "220" (at 265.049 124.206 90) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 265.303 125.984 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 265.303 124.206 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 69b7a2a3-d5f2-4e85-835f-7cfc923fe7ef)) - (pin "2" (uuid 077e479c-c25f-4c79-85c4-fe657a9ca769)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "R24") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Connector:Conn_01x03_Pin") (at 83.566 176.911 0) (mirror y) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 45b86bb5-ff85-46a7-bf12-14bf7cd69b36) - (property "Reference" "J3" (at 84.2772 177.935 0) - (effects (font (size 1.27 1.27)) (justify right)) - ) - (property "Value" "Buttons" (at 84.2772 175.887 0) - (effects (font (size 1.27 1.27)) (justify right)) - ) - (property "Footprint" "Connector_JST:JST_PH_B3B-PH-K_1x03_P2.00mm_Vertical" (at 83.566 176.911 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 83.566 176.911 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid d2b3af4d-e84f-4774-8ad0-d55263764fdc)) - (pin "2" (uuid 4907d405-a5ca-48cb-a00f-f3a7d88dbd7b)) - (pin "3" (uuid 15f4a9b0-48fd-41a2-be94-b0d64f6dfe7a)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "J3") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:+3V3") (at 129.794 53.721 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid 493f4dcd-30bf-47b1-b079-ef26e2e2fe53) - (property "Reference" "#PWR024" (at 129.794 57.531 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "+3V3" (at 129.794 49.776 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 129.794 53.721 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 129.794 53.721 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid ef70d27f-3c1e-4f5b-8916-d59b08c356b3)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "#PWR024") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:+12V") (at 229.235 108.204 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 49918dc0-f9c3-40ae-9fe9-76b6d1d8a223) - (property "Reference" "#PWR036" (at 229.235 112.014 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "+12V" (at 228.346 104.521 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 229.235 108.204 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 229.235 108.204 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 21b78d15-a521-4da7-b6df-fcbf1ec5e076)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "#PWR036") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R") (at 37.846 168.275 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 4fa462cf-38f4-4f24-a861-47c311b9ed07) - (property "Reference" "R3" (at 40.64 169.545 90) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "47" (at 36.322 168.275 90) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 37.846 166.497 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 37.846 168.275 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 71a6908a-57d2-484c-b395-dca62e9ee31c)) - (pin "2" (uuid 14174d7e-6616-498d-aba7-363ce89ae160)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "R3") (unit 1) - ) - ) - (project "stm32" - (path "/1ec6f7b4-f573-4ec7-9f09-903dcf29773c" - (reference "R22") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:+3V3") (at 178.943 89.408 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid 4ff614b1-2a15-49c9-8d06-7cbc79f2ea32) - (property "Reference" "#PWR029" (at 178.943 93.218 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "+3V3" (at 178.943 85.463 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 178.943 89.408 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 178.943 89.408 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid f1ebddcf-9531-47c8-bced-02e97aba2641)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "#PWR029") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:+12V") (at 211.963 94.488 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 51dc3774-b935-4284-85be-45f3bfb0f03f) - (property "Reference" "#PWR034" (at 211.963 98.298 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "+12V" (at 211.074 90.805 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 211.963 94.488 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 211.963 94.488 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 6a1f3671-7b04-4a63-a93a-162a71385539)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "#PWR034") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R") (at 85.979 45.974 90) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 541eb5c2-fd4d-4d27-971f-cd8ffab89be3) - (property "Reference" "R10" (at 85.979 43.942 90) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "6.8" (at 85.979 45.974 90) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 85.979 47.752 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 85.979 45.974 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid ab499bdc-bd40-4b9b-b802-e593c7d8176e)) - (pin "2" (uuid 3defac2b-7a54-47d7-9837-6d74ecfe4f37)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "R10") (unit 1) - ) - ) - (project "nitrogen" - (path "/42b977d6-a17a-4d98-adb1-b91b742d8770/6595f7bf-be90-4ec5-9ee8-68919a05962c" - (reference "R14") (unit 1) - ) - ) - ) - ) - - (symbol (lib_name "GND_3") (lib_id "power:GND") (at 91.059 31.877 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid 555ce28c-b290-40bd-b8bc-8376b6c95458) - (property "Reference" "#PWR018" (at 91.059 38.227 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 91.059 35.822 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Footprint" "" (at 91.059 31.877 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 91.059 31.877 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 8acd5aa1-7efa-40cb-b1b6-a6432309c774)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "#PWR018") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Connector:TestPoint") (at 48.768 42.418 180) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 55c584fd-c0da-4649-9b6a-7b5a08c2d9d8) - (property "Reference" "TP6" (at 47.371 46.744 0) - (effects (font (size 1.27 1.27)) (justify left) hide) - ) - (property "Value" "Gnd" (at 50.165 47.625 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "TestPoint:TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded" (at 43.688 42.418 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 43.688 42.418 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 918aba63-74b9-4421-95fa-b8eeaae62d8d)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "TP6") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:Q_NMOS_GDS") (at 207.518 124.206 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid 55d5a1fe-3dfc-404d-b0d7-7bd71fa205b5) - (property "Reference" "Q3" (at 212.725 123.182 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "IRLR7807" (at 212.725 125.23 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Package_TO_SOT_SMD:TO-252-3_TabPin2" (at 212.598 121.666 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 207.518 124.206 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid f02c3d79-8938-4f66-91d4-a3d4a44afbf1)) - (pin "2" (uuid a421eb36-326b-4b7e-be8f-efeae29f2eda)) - (pin "3" (uuid dcd106ae-0ffe-4599-84b8-33ebaca1ff61)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "Q3") (unit 1) - ) - ) - ) - ) - - (symbol (lib_name "GND_3") (lib_id "power:GND") (at 253.873 129.286 0) (mirror y) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid 56e5313a-177b-43a4-b1c7-c3261908d5d1) - (property "Reference" "#PWR040" (at 253.873 135.636 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 253.873 133.231 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Footprint" "" (at 253.873 129.286 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 253.873 129.286 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid ece21090-cbbf-4b76-9bd4-5bc920b73a1c)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "#PWR040") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:+3V3") (at 82.169 45.974 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid 59e945bd-e329-4131-ad92-d6640848835f) - (property "Reference" "#PWR017" (at 82.169 49.784 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "+3V3" (at 82.169 42.029 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 82.169 45.974 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 82.169 45.974 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid bcdcc989-c43a-488f-845c-30a82c2ecf1f)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "#PWR017") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Connector:Conn_01x02_Pin") (at 106.299 176.276 0) (mirror x) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 5aa918df-9e97-47d2-901a-eb91887a76d9) - (property "Reference" "J6" (at 106.934 171.704 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "EXT_MOT" (at 100.965 178.562 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Connector_JST:JST_PH_B2B-PH-K_1x02_P2.00mm_Vertical" (at 106.299 176.276 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 106.299 176.276 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid b4272d62-25bc-49cf-9827-f0d12e1bed3e)) - (pin "2" (uuid 6944a060-db60-4b2c-860a-1a78aae79cda)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "J6") (unit 1) - ) - ) - (project "stm32" - (path "/f40cbe7e-cd25-45e5-a6cb-d92457495048" - (reference "J12") (unit 1) - ) - ) - ) - ) - - (symbol (lib_name "GND_3") (lib_id "power:GND") (at 105.791 86.106 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid 5bb40f52-d846-4732-b224-e50e310244f8) - (property "Reference" "#PWR020" (at 105.791 92.456 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 105.791 90.051 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Footprint" "" (at 105.791 86.106 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 105.791 86.106 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid cec1bff3-08d8-42fe-8f71-e09cb4af6816)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "#PWR020") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Regulator_Linear:XC6206PxxxMR") (at 36.83 131.953 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 5c1e3040-f731-4664-a8c4-ba636e6df46a) - (property "Reference" "U1" (at 36.83 128.905 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "XC6206PxxxMR" (at 36.83 126.238 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Package_TO_SOT_SMD:SOT-23-3" (at 36.83 126.238 0) - (effects (font (size 1.27 1.27) italic) hide) - ) - (property "Datasheet" "https://www.torexsemi.com/file/xc6206/XC6206.pdf" (at 36.83 131.953 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 032d5894-27dd-42f0-813d-e63ccac52b38)) - (pin "2" (uuid 025eccc3-5da9-469e-bd18-c48069fd459a)) - (pin "3" (uuid 1d70673c-11f4-443d-b0ad-b56411fcb241)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "U1") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R") (at 272.923 114.681 270) (mirror x) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 5ca3761a-e46f-449e-88a1-dcaf240a0196) - (property "Reference" "R25" (at 272.923 112.395 90) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "100" (at 272.669 114.681 90) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 272.923 116.459 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 272.923 114.681 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 9f6ddadc-a888-4510-ad31-b15490a199f1)) - (pin "2" (uuid 573965c9-0e82-4d9c-a421-36da5bf0fe11)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "R25") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:D") (at 240.665 119.634 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 5d0ed76a-29be-4a04-94ee-7e2065dbfdf7) - (property "Reference" "D12" (at 242.697 118.2925 90) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "1N4007" (at 238.252 115.697 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Diode_SMD:D_SMA_Handsoldering" (at 240.665 119.634 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 240.665 119.634 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Sim.Device" "D" (at 240.665 119.634 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Sim.Pins" "1=K 2=A" (at 240.665 119.634 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 11631096-5682-4e41-a18f-742a1476c9da)) - (pin "2" (uuid 7f519fc3-dc59-4103-9954-29218c41cdfc)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "D12") (unit 1) - ) - ) - ) - ) - - (symbol (lib_name "GND_3") (lib_id "power:GND") (at 138.049 61.341 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid 60808d75-efc7-4ae7-806b-e430d0c82308) - (property "Reference" "#PWR028" (at 138.049 67.691 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 138.049 65.286 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Footprint" "" (at 138.049 61.341 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 138.049 61.341 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid ab176e52-214f-4d5d-8abf-2ae7b0e3ebae)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "#PWR028") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:+3V3") (at 129.921 68.326 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid 645f3f02-75af-4f2d-add1-37a70cbd3848) - (property "Reference" "#PWR025" (at 129.921 72.136 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "+3V3" (at 129.921 64.381 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 129.921 68.326 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 129.921 68.326 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 335ea0a3-ae49-465c-8f3c-759c2676926a)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "#PWR025") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Interface_CAN_LIN:MCP2551-I-SN") (at 263.144 37.211 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid 65bb247f-f2e9-463a-8d46-fb52dff8a471) - (property "Reference" "U5" (at 265.0999 26.011 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "TJA1050" (at 265.0999 28.059 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (at 263.144 49.911 0) - (effects (font (size 1.27 1.27) italic) hide) - ) - (property "Datasheet" "http://ww1.microchip.com/downloads/en/devicedoc/21667d.pdf" (at 263.144 37.211 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 9184c82d-2033-4e17-9dfe-c5da91173367)) - (pin "2" (uuid bf13d3d9-aefd-4084-b802-da3a73988448)) - (pin "3" (uuid 318b60e4-660c-45b1-a534-96927d1c07d5)) - (pin "4" (uuid a342b877-8c22-4cbc-9d69-accbf34191fc)) - (pin "5" (uuid 05874e30-e221-4652-882a-8d7128b69de2)) - (pin "6" (uuid f4db1574-4c8e-4d5b-8a02-70a0faff79be)) - (pin "7" (uuid 3525519d-067c-468d-96cd-f42fe388b1a2)) - (pin "8" (uuid 84f04384-cde9-470a-b44a-315a420d180b)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "U5") (unit 1) - ) - ) - ) - ) - - (symbol (lib_name "GND_3") (lib_id "power:GND") (at 210.058 129.286 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid 67bce3ef-11a0-4515-8ddc-97267f3094d4) - (property "Reference" "#PWR033" (at 210.058 135.636 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 210.058 133.231 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Footprint" "" (at 210.058 129.286 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 210.058 129.286 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid fa09a8ac-1bdf-48a5-bf52-c0dd677c57a0)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "#PWR033") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Connector:Conn_01x06_Socket") (at 100.203 43.434 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid 687e93fa-7aa1-4bcb-bf2d-98cd66173c09) - (property "Reference" "J5" (at 100.9142 43.68 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "Prog" (at 100.9142 45.728 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Connector_PinSocket_1.27mm:PinSocket_1x06_P1.27mm_Vertical" (at 100.203 43.434 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 100.203 43.434 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 50b2f7e7-9363-48d0-8151-3d284e129b33)) - (pin "2" (uuid 5e10c5a3-ec79-43fa-9f0b-2acbeb78d403)) - (pin "3" (uuid ac68d599-27a9-4259-a22b-0146983bc91c)) - (pin "4" (uuid e0972413-0fa4-4c32-a960-918fa0718fde)) - (pin "5" (uuid 8c779072-f408-4025-af8d-b028d6d37318)) - (pin "6" (uuid 65fb771a-b97f-463f-99e6-cae5b7c4e179)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "J5") (unit 1) - ) - ) - (project "nitrogen" - (path "/42b977d6-a17a-4d98-adb1-b91b742d8770/6595f7bf-be90-4ec5-9ee8-68919a05962c" - (reference "J7") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:Q_PMOS_GDS") (at 207.518 107.315 0) (mirror x) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 6d2ea4e2-3322-4cbc-9204-8f00ac7f21c5) - (property "Reference" "Q2" (at 212.598 105.791 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "AOD4185" (at 212.979 108.204 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Package_TO_SOT_SMD:TO-252-3_TabPin2" (at 212.598 109.855 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 207.518 107.315 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid a1d0bbc1-55e0-4069-9735-f483bee7b3e9)) - (pin "2" (uuid b06d748a-3f88-46d9-af6e-8fb06dc9676a)) - (pin "3" (uuid b73e0b97-654d-40b2-925a-f1469e37b8e9)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "Q2") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:Q_NMOS_GSD") (at 264.033 114.681 0) (mirror y) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 6e9b6f62-1be3-4436-a767-96d5cae2139e) - (property "Reference" "Q6" (at 266.192 110.871 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "2N7002" (at 258.318 118.745 90) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Package_TO_SOT_SMD:SOT-23_Handsoldering" (at 258.953 112.141 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 264.033 114.681 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 8bbbc822-8edb-48d8-a465-16261c0c0df2)) - (pin "2" (uuid 6040ec34-81a9-4c5a-952e-45b658e37acf)) - (pin "3" (uuid 4c46c0eb-6cda-413d-8716-b3068322e17a)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "Q6") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Connector:TestPoint") (at 45.466 34.798 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 6f756413-1eca-4428-bb57-f890fa54c873) - (property "Reference" "TP3" (at 49.792 36.195 0) - (effects (font (size 1.27 1.27)) (justify left) hide) - ) - (property "Value" "12V" (at 49.276 33.655 90) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "TestPoint:TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded" (at 45.466 39.878 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 45.466 39.878 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid cbc31ae3-2c8b-493f-970d-1b48c78b17b3)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "TP3") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R") (at 122.809 179.832 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 6fbe9c38-6c7f-4ddc-9fa9-a035e87037b4) - (property "Reference" "R13" (at 121.285 177.673 90) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "1k" (at 121.285 179.832 90) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 122.809 178.054 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 122.809 179.832 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid ec8f4323-f030-46e8-bb35-f3a61a6a3d52)) - (pin "2" (uuid cc42cfca-62bf-48ab-a0af-7e4739c25baf)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "R13") (unit 1) - ) - ) - (project "stm32" - (path "/1ec6f7b4-f573-4ec7-9f09-903dcf29773c" - (reference "R23") (unit 1) - ) - ) - ) - ) - - (symbol (lib_name "GND_3") (lib_id "power:GND") (at 133.731 144.526 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid 70bc5f66-8e33-4124-be39-056469627065) - (property "Reference" "#PWR026" (at 133.731 150.876 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 133.731 148.471 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Footprint" "" (at 133.731 144.526 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 133.731 144.526 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid da58a3c2-c5f0-4306-bf26-c38cf5f104a7)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "#PWR026") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R") (at 37.846 170.815 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 710041e4-f33e-4a35-bae8-baff7f273045) - (property "Reference" "R4" (at 40.64 172.085 90) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "100" (at 36.322 170.815 90) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 37.846 169.037 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 37.846 170.815 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid c206e4f6-aa1f-47e6-a980-4cc2c77cc794)) - (pin "2" (uuid adde8b9c-c607-46ca-acb7-c83bf0338b72)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "R4") (unit 1) - ) - ) - (project "stm32" - (path "/1ec6f7b4-f573-4ec7-9f09-903dcf29773c" - (reference "R23") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:+5V") (at 29.21 131.953 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid 7393675f-b256-440e-8e78-bd13d0cb3d50) - (property "Reference" "#PWR02" (at 29.21 135.763 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "+5V" (at 29.21 128.008 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 29.21 131.953 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 29.21 131.953 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 4605e4b2-146c-4956-9cf3-e7cb7334d753)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "#PWR02") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:C") (at 253.746 22.606 90) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid 741595fc-b20d-46fd-8301-578e7f10baa6) - (property "Reference" "C13" (at 253.746 16.867 90) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "0.1" (at 253.746 18.915 90) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 257.556 21.6408 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 253.746 22.606 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 6d6a5c93-d3b9-4762-9194-b1f7ebb48809)) - (pin "2" (uuid 8672a44c-4a60-4d2d-85a6-456fd7fa4ae8)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "C13") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R") (at 105.791 82.296 180) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 774d9764-be17-4dc4-bfa9-01848617bb4f) - (property "Reference" "R11" (at 100.584 82.169 0) - (effects (font (size 1.27 1.27)) (justify right)) - ) - (property "Value" "10k" (at 105.791 83.947 90) - (effects (font (size 1.27 1.27)) (justify right)) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 107.569 82.296 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 105.791 82.296 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 3d55d778-a22e-42f1-b067-9be2b0d37e53)) - (pin "2" (uuid 868b10d0-1178-43ec-917e-736a4950c25f)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "R11") (unit 1) - ) - ) - (project "Canon_manage" - (path "/56438dee-19cd-4574-afb4-194a39bf2855" - (reference "R1") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:D_Schottky") (at 126.619 183.642 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 784e693a-9161-41a5-8f5d-876789253060) - (property "Reference" "D7" (at 124.206 181.864 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "MM3Z3V3" (at 129.032 180.34 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Diode_SMD:D_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 126.619 183.642 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 126.619 183.642 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 8bd6c10f-6ef0-451e-81df-89a5011e08a1)) - (pin "2" (uuid 0eccf7e1-2e45-48f1-a173-f749268b28bf)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "D7") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R") (at 265.303 119.761 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 7be5c31f-b6ec-464b-b19a-700b37fc22f5) - (property "Reference" "R27" (at 266.192 117.856 90) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "10k" (at 265.049 119.761 90) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 265.303 117.983 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 265.303 119.761 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 4e162728-cf71-4941-99c3-468fc7a41a00)) - (pin "2" (uuid 0d841980-93a0-47db-a4ec-e146263b1e51)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "R27") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "elements:PESD1CAN") (at 260.604 61.976 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 7d6e4e39-c56e-426f-8fc3-a264de8848d2) - (property "Reference" "D13" (at 251.714 61.976 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "PESD1CAN" (at 264.414 63.246 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (at 260.604 61.976 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 260.604 61.976 0) - (effects (font (size 1.27 1.27))) - ) - (pin "1" (uuid af9f1af9-0c88-4d16-a56d-3dbc51b6813d)) - (pin "2" (uuid 8bb031ab-45bc-4e81-bcce-1753ad715c7a)) - (pin "3" (uuid 7d04a771-a694-4a71-9fd7-14f291280235)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "D13") (unit 1) - ) - ) - (project "stm32" - (path "/f40cbe7e-cd25-45e5-a6cb-d92457495048" - (reference "D8") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:C") (at 129.794 57.531 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid 7ead0da8-d40b-4429-8539-b98e08321c21) - (property "Reference" "C9" (at 132.715 56.507 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "0.1" (at 132.715 58.555 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 130.7592 61.341 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 129.794 57.531 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 5815313f-c4ff-4e36-a1c4-270cffa4be36)) - (pin "2" (uuid 7754de01-c47d-4648-bbdb-b9e1ae051ce2)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "C9") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R") (at 198.628 124.206 90) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 81a2ee18-ba8a-4f75-adab-378149aa102d) - (property "Reference" "R18" (at 198.755 126.365 90) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "220" (at 198.882 124.206 90) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 198.628 125.984 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 198.628 124.206 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid b678d4ca-b6d0-4201-b8d9-0f1aabd67b0f)) - (pin "2" (uuid ad0e35ac-be60-4eb2-ac37-3d08e9bde9a6)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "R18") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Connector:TestPoint") (at 46.355 88.646 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 876a0053-1bfc-4c2f-9e0b-38f2bf2e35cf) - (property "Reference" "TP4" (at 47.752 84.32 0) - (effects (font (size 1.27 1.27)) (justify left) hide) - ) - (property "Value" "5V" (at 44.958 83.439 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "TestPoint:TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded" (at 51.435 88.646 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 51.435 88.646 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 47276b0d-84db-41ff-8b26-c3c6d1705aed)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "TP4") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R") (at 182.753 97.028 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 89755849-e3e9-4e1e-b86a-8ed346a9749b) - (property "Reference" "R14" (at 182.626 94.9706 90) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "330" (at 182.499 97.028 90) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 182.753 95.25 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 182.753 97.028 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid a5376214-40d8-4715-b653-2a28f11ffc53)) - (pin "2" (uuid 64460dda-07f1-45e7-843e-4ed4b31c6b2e)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "R14") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:C") (at 44.45 135.763 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 89d9e89e-591d-4a71-9909-c085adf5350c) - (property "Reference" "C4" (at 44.831 133.731 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "47u" (at 44.958 137.922 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Capacitor_SMD:C_1206_3216Metric" (at 45.4152 139.573 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 44.45 135.763 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 55d8a26b-e761-472a-8849-2ae3a26af407)) - (pin "2" (uuid 32e11035-204d-4659-8e0e-8e2ece0e1848)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "C4") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Connector:TestPoint") (at 276.733 114.681 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 8aceb784-8188-4576-ab17-f3db7be86fb4) - (property "Reference" "TP10" (at 278.13 110.355 0) - (effects (font (size 1.27 1.27)) (justify left) hide) - ) - (property "Value" "R+" (at 275.336 109.474 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "TestPoint:TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded" (at 281.813 114.681 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 281.813 114.681 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 8fd71a46-4ab9-49de-9866-f5b1f1affa61)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "TP10") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Connector:TestPoint") (at 187.198 114.681 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 8e336b7f-02d2-422b-8109-c894c167d3c8) - (property "Reference" "TP8" (at 188.595 110.355 0) - (effects (font (size 1.27 1.27)) (justify left) hide) - ) - (property "Value" "L+" (at 185.801 109.474 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "TestPoint:TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded" (at 192.278 114.681 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 192.278 114.681 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid ced61e76-0ec1-44ff-a0b4-5e9ae67449a6)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "TP8") (unit 1) - ) - ) - ) - ) - - (symbol (lib_name "GND_3") (lib_id "power:GND") (at 249.936 22.606 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid 8ec7e845-86f3-4c21-b6b6-85f412cf3748) - (property "Reference" "#PWR038" (at 249.936 28.956 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 249.936 26.551 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Footprint" "" (at 249.936 22.606 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 249.936 22.606 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid f7e681e1-536d-4fdf-92e9-6b2b3faa7602)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "#PWR038") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:D") (at 229.235 112.014 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 8fc53933-c71d-4315-80b3-e885bef37c3a) - (property "Reference" "D10" (at 231.267 110.6725 90) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "1N4007" (at 226.822 108.077 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Diode_SMD:D_SMA_Handsoldering" (at 229.235 112.014 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 229.235 112.014 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Sim.Device" "D" (at 229.235 112.014 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Sim.Pins" "1=K 2=A" (at 229.235 112.014 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 1c64f05c-aa7f-4a97-b513-81f6880afaba)) - (pin "2" (uuid 219bac12-b760-47cb-b52e-722751ec316e)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "D10") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:PWR_FLAG") (at 57.912 88.646 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid 90e98621-2364-4057-a63b-664df5d06431) - (property "Reference" "#FLG02" (at 59.817 88.646 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "PWR_FLAG" (at 61.857 88.646 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Footprint" "" (at 57.912 88.646 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 57.912 88.646 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 3c3ae86e-9406-43b5-b60c-fadaff8a728e)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "#FLG02") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:C") (at 57.912 84.836 180) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid 97b547a0-bc92-4bcd-b116-37befccf241d) - (property "Reference" "C5" (at 60.833 83.812 0) - (effects (font (size 1.27 1.27)) (justify right)) - ) - (property "Value" "47u" (at 60.833 85.86 0) - (effects (font (size 1.27 1.27)) (justify right)) - ) - (property "Footprint" "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" (at 56.9468 81.026 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 57.912 84.836 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 23ac3523-d6a6-4440-8909-b6c61b33b9a3)) - (pin "2" (uuid 1309e30c-ffb4-46cb-8348-f5024293ede4)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "C5") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Connector:TestPoint") (at 43.307 64.389 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 98e6eead-e85d-44b4-8a5c-5b5e280c5432) - (property "Reference" "TP2" (at 44.704 60.063 0) - (effects (font (size 1.27 1.27)) (justify left) hide) - ) - (property "Value" "Ven" (at 41.91 59.182 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "TestPoint:TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded" (at 48.387 64.389 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 48.387 64.389 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid be3790e9-4340-4e9e-99d6-f73277d7e62c)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "TP2") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:+12V") (at 45.466 34.798 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 9a0b4433-f7be-43f6-9c5e-6c29f3e97674) - (property "Reference" "#PWR010" (at 45.466 38.608 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "+12V" (at 44.577 31.115 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 45.466 34.798 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 45.466 34.798 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid f8e76adc-c02d-48f2-9c4e-34a72283fd40)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "#PWR010") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:D") (at 115.189 176.276 180) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 9ef64c98-01b3-44f8-96f0-9e00ac39996f) - (property "Reference" "D5" (at 117.094 178.689 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "1N4007" (at 118.618 180.848 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Diode_SMD:D_SMA_Handsoldering" (at 115.189 176.276 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 115.189 176.276 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Sim.Device" "D" (at 115.189 176.276 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Sim.Pins" "1=K 2=A" (at 115.189 176.276 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 0ac980b8-a9e2-48e1-806a-578fdbdf829e)) - (pin "2" (uuid cb93be7f-8489-4b12-b871-ac2e285e57bb)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "D5") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:C") (at 146.431 57.531 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid a584b76a-1727-482d-b8e6-e2edaf6882d5) - (property "Reference" "C12" (at 149.352 56.507 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "0.1" (at 149.352 58.555 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 147.3962 61.341 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 146.431 57.531 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 58360c29-a4fd-4104-9a21-fd3cb377e8be)) - (pin "2" (uuid 4518ec6d-006a-47e9-8cb3-5aa7600e56f3)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "C12") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R") (at 261.493 103.505 0) (mirror x) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid ab89a8c7-b04a-4797-a8da-da67b1836164) - (property "Reference" "R23" (at 264.668 103.378 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "10k" (at 261.493 103.251 90) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 259.715 103.505 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 261.493 103.505 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 6daaa1c7-138a-450d-95e1-5b8641660e23)) - (pin "2" (uuid 2de7ddf8-570c-4fc1-8acc-369400841782)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "R23") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Connector:Screw_Terminal_01x02") (at 235.077 120.904 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid ad51aec2-9b95-449d-aad5-50795c12de48) - (property "Reference" "J7" (at 235.331 123.317 90) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "Motor" (at 232.5624 122.936 0) - (effects (font (size 1.27 1.27)) (justify left) hide) - ) - (property "Footprint" "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-2_1x02_P5.00mm_Horizontal" (at 235.077 120.904 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 235.077 120.904 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 6332c340-5d8e-4c0c-855d-db9a3c17655b)) - (pin "2" (uuid 0a9dd9f3-69c6-4dc5-90b5-54e8c1c1af46)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "J7") (unit 1) - ) - ) - (project "stm32" - (path "/f40cbe7e-cd25-45e5-a6cb-d92457495048" - (reference "J12") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Connector:Screw_Terminal_01x03") (at 27.432 37.338 0) (mirror y) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid ad6f1947-1aad-4abf-8366-5ff220f8dd79) - (property "Reference" "J1" (at 27.432 44.728 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "Power" (at 27.432 42.68 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-3-5.08_1x03_P5.08mm_Horizontal" (at 27.432 37.338 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 27.432 37.338 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid d5f12662-31e2-4f6d-823b-a9ebdf8e3336)) - (pin "2" (uuid e368d848-dbd8-4eed-9793-8806c4878412)) - (pin "3" (uuid 94a69bc0-123e-4c09-b0a3-c57e3e355bbd)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "J1") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:L") (at 39.116 88.646 90) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid adf6c8f5-8c10-4ff1-84a2-c09d6ffb3952) - (property "Reference" "L1" (at 39.116 84.5607 90) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "10u" (at 39.116 86.6087 90) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "kicad:cd43" (at 39.116 88.646 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 39.116 88.646 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 6697ab26-c888-4a32-bc2e-d990f7984ee7)) - (pin "2" (uuid 77385a56-b5ce-4f7f-8749-7b400a82ed42)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "L1") (unit 1) - ) - ) - ) - ) - - (symbol (lib_name "GND_3") (lib_id "power:GND") (at 30.988 113.538 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid ae1c6a8c-a4e8-4c49-96ab-cb3ce5fc9f5c) - (property "Reference" "#PWR04" (at 30.988 119.888 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 30.988 117.483 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Footprint" "" (at 30.988 113.538 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 30.988 113.538 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 03b0c958-ed81-4478-8435-5df51a6f26b3)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "#PWR04") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Connector:TestPoint") (at 187.198 124.206 180) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid ae370df5-d57f-43d8-bbe8-80e609ef316c) - (property "Reference" "TP9" (at 185.801 128.532 0) - (effects (font (size 1.27 1.27)) (justify left) hide) - ) - (property "Value" "L-" (at 188.595 129.413 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "TestPoint:TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded" (at 182.118 124.206 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 182.118 124.206 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 5f906ef6-18b0-4ba2-987d-95b31fc9ddbb)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "TP9") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R") (at 189.611 100.838 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid af43825a-4cd6-463e-ba5c-53cfcfa975cb) - (property "Reference" "R15" (at 187.5536 100.965 90) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "100" (at 189.611 101.092 90) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 187.833 100.838 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 189.611 100.838 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid cd0410b3-0707-4cfb-bbba-ccb834773093)) - (pin "2" (uuid 135e2a06-8a20-4458-8876-d0bab1d72a94)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "R15") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R") (at 198.628 107.315 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid b132ecea-804a-4016-9b77-f44b4264042d) - (property "Reference" "R17" (at 198.501 105.2576 90) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "10k" (at 198.374 107.315 90) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 198.628 105.537 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 198.628 107.315 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid f333a8f6-001e-4486-a5b5-a0af2b73d531)) - (pin "2" (uuid 318c7afa-f41b-43bb-be6a-1253ba2a12b6)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "R17") (unit 1) - ) - ) - ) - ) - - (symbol (lib_name "GND_3") (lib_id "power:GND") (at 225.425 123.444 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid b52628dc-c55e-4431-8773-12122cac50aa) - (property "Reference" "#PWR035" (at 225.425 129.794 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 225.425 127.389 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Footprint" "" (at 225.425 123.444 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 225.425 123.444 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 1b08e1b5-eaae-410c-b6c1-7396536d9788)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "#PWR035") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:D") (at 39.878 68.199 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid b529d259-dc19-4c86-a144-ed8e7919a707) - (property "Reference" "D2" (at 45.085 66.929 90) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "1N5819" (at 45.593 68.58 90) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 39.878 68.199 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 39.878 68.199 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Sim.Device" "D" (at 39.878 68.199 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Sim.Pins" "1=K 2=A" (at 39.878 68.199 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 88fbbccc-a4a5-4342-97f2-00d1287c002e)) - (pin "2" (uuid 7cb41003-f873-4a02-b401-02047940a42f)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "D2") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R") (at 74.676 176.911 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid b7837f1b-646b-4b94-a6fd-cdbb14dac714) - (property "Reference" "R9" (at 73.152 179.07 90) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "100" (at 73.152 176.911 90) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 74.676 175.133 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 74.676 176.911 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid fd85631d-e2f4-43b2-8483-be296891589b)) - (pin "2" (uuid 6f3f49bb-7a30-4bd9-a327-b93ed8421c50)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "R9") (unit 1) - ) - ) - (project "stm32" - (path "/1ec6f7b4-f573-4ec7-9f09-903dcf29773c" - (reference "R23") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Connector:TestPoint") (at 276.733 124.206 180) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid bc71f010-ae52-40e9-b47d-749510fd8c7c) - (property "Reference" "TP11" (at 275.336 128.532 0) - (effects (font (size 1.27 1.27)) (justify left) hide) - ) - (property "Value" "R-" (at 278.13 129.413 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "TestPoint:TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded" (at 271.653 124.206 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 271.653 124.206 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 92185398-1745-4307-8b66-d7bd211bb2b1)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "TP11") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:C") (at 136.652 23.749 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid bd219d37-90db-48ca-aa0e-ba528aa27662) - (property "Reference" "C10" (at 137.287 21.209 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "6" (at 137.287 26.289 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 137.6172 27.559 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 136.652 23.749 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid e5ca397f-3dc5-4b41-8a50-168a7ebe2e7c)) - (pin "2" (uuid b6d7f5be-a305-4b97-8e54-66b2550d5e64)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "C10") (unit 1) - ) - ) - (project "Canon_manage" - (path "/56438dee-19cd-4574-afb4-194a39bf2855" - (reference "C2") (unit 1) - ) - ) - ) - ) - - (symbol (lib_name "D_1") (lib_id "Device:D") (at 45.466 38.608 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid bf41fd65-da7d-431e-bc2d-c9c40b1e8eba) - (property "Reference" "D3" (at 47.371 38.735 90) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "SMBJ18A" (at 42.926 38.608 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Diode_SMD:D_SMB_Handsoldering" (at 45.466 38.608 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 45.466 38.608 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Sim.Device" "D" (at 45.466 38.608 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Sim.Pins" "1=K 2=A" (at 45.466 38.608 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 3aa8351c-ab43-4343-81de-7f186bf960ec)) - (pin "2" (uuid b2af8c52-aad3-4c84-8a90-a8ea72689ffe)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "D3") (unit 1) - ) - ) - ) - ) - - (symbol (lib_name "GND_3") (lib_id "power:GND") (at 78.486 179.451 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid c018bcdd-1702-4f38-8e5f-a9853d3b29e0) - (property "Reference" "#PWR016" (at 78.486 185.801 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 78.486 183.396 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Footprint" "" (at 78.486 179.451 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 78.486 179.451 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid e9b68249-1805-4790-aaf9-d3ea567a068c)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "#PWR016") (unit 1) - ) - ) - ) - ) - - (symbol (lib_name "GND_3") (lib_id "power:GND") (at 45.466 42.418 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid c2f1a68c-fc13-4f87-882e-2707719ebe43) - (property "Reference" "#PWR011" (at 45.466 48.768 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 45.466 46.363 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Footprint" "" (at 45.466 42.418 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 45.466 42.418 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 59a5fcad-7597-4f75-bf75-fe7ccd5d3312)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "#PWR011") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R") (at 118.999 166.116 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid c48298ba-cdec-44fb-840d-4ba4dc791caa) - (property "Reference" "R12" (at 117.475 163.957 90) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "1k" (at 117.475 166.116 90) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 118.999 164.338 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 118.999 166.116 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid b52f5bb4-0358-4bb4-b39f-327007435bc3)) - (pin "2" (uuid 43cdd30d-19d9-4dc4-b198-9ce8362c769c)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "R12") (unit 1) - ) - ) - (project "stm32" - (path "/1ec6f7b4-f573-4ec7-9f09-903dcf29773c" - (reference "R23") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:C") (at 29.21 135.763 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid c64d8549-8fae-4510-88f8-d4e10f074e1e) - (property "Reference" "C1" (at 25.146 133.731 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "0.1" (at 25.908 137.922 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 30.1752 139.573 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 29.21 135.763 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 596790c9-8ebb-4521-8f1b-c3bb57a4b4e3)) - (pin "2" (uuid 36430b9b-df1e-47b3-a69f-9852c73f04f9)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "C1") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:D") (at 178.943 93.218 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid c7dcb330-00fd-4b26-9116-cfce065ece6a) - (property "Reference" "D8" (at 181.737 92.583 90) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "1N5819" (at 174.244 92.964 90) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" (at 178.943 93.218 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 178.943 93.218 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Sim.Device" "D" (at 178.943 93.218 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Sim.Pins" "1=K 2=A" (at 178.943 93.218 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 8e1287a4-11fc-4d0b-8f1c-6f16efee130c)) - (pin "2" (uuid ba9cb790-d95a-4c39-ba71-e864e7afaa90)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "D8") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:D") (at 238.633 112.014 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid c899a0e9-ef4c-40c2-93f7-5ac59aaf87c6) - (property "Reference" "D11" (at 240.665 110.6725 90) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "1N4007" (at 236.22 108.077 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Diode_SMD:D_SMA_Handsoldering" (at 238.633 112.014 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 238.633 112.014 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Sim.Device" "D" (at 238.633 112.014 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Sim.Pins" "1=K 2=A" (at 238.633 112.014 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid a7e4ca22-656a-4eca-b75d-0691f1f0695a)) - (pin "2" (uuid 7837b7cb-f38a-4157-b527-99cfae11a789)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "D11") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:+12V") (at 261.493 99.695 0) (mirror y) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid caf00ddc-2276-4c9e-ae69-5f5d07a00ddd) - (property "Reference" "#PWR043" (at 261.493 103.505 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "+12V" (at 262.382 96.012 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 261.493 99.695 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 261.493 99.695 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid ad5a1729-20f4-4ef9-b7ac-4a7bd382038f)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "#PWR043") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Connector:TestPoint") (at 27.305 113.538 180) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid cbc6243a-5f74-44b4-b800-9818b40ddc47) - (property "Reference" "TP1" (at 25.908 117.864 0) - (effects (font (size 1.27 1.27)) (justify left) hide) - ) - (property "Value" "Gnd" (at 28.702 118.745 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "TestPoint:TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded" (at 22.225 113.538 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 22.225 113.538 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid bbbda377-786d-424f-8082-f70db78dceb9)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "TP1") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R") (at 37.846 173.355 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid ccb227fc-0db8-4f37-b5a8-8442ea74cce2) - (property "Reference" "R5" (at 40.64 174.625 90) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "100" (at 36.322 173.355 90) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 37.846 171.577 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 37.846 173.355 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 21faf3c2-2c17-48ff-a32e-51440805a9a1)) - (pin "2" (uuid adb31c22-782a-465a-9088-5d962dedc5a0)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "R5") (unit 1) - ) - ) - (project "stm32" - (path "/1ec6f7b4-f573-4ec7-9f09-903dcf29773c" - (reference "R24") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:+12V") (at 26.162 105.918 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid ce6bb50f-9d19-4912-bdac-d51553b7c272) - (property "Reference" "#PWR01" (at 26.162 109.728 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "+12V" (at 25.273 102.235 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 26.162 105.918 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 26.162 105.918 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid b6251c16-acdb-40ad-a3e3-212c307d8322)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "#PWR01") (unit 1) - ) - ) - ) - ) - - (symbol (lib_name "GND_3") (lib_id "power:GND") (at 263.144 47.371 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid cf0bbb4f-321e-46a2-a050-52f3dc4cf426) - (property "Reference" "#PWR046" (at 263.144 53.721 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 263.144 51.316 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Footprint" "" (at 263.144 47.371 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 263.144 47.371 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 257cbef4-c0a9-407f-a426-2b45dbf1db2f)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "#PWR046") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:C") (at 125.222 23.749 0) (mirror y) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid cff709d7-8ac5-4466-8926-25c648a7e9b1) - (property "Reference" "C8" (at 124.587 21.209 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "6" (at 124.587 26.289 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 124.2568 27.559 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 125.222 23.749 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 5f97231f-3405-4cd0-82ee-9fa6d0d0909f)) - (pin "2" (uuid e598393e-0d58-4a13-8b08-d64604b0ad82)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "C8") (unit 1) - ) - ) - (project "Canon_manage" - (path "/56438dee-19cd-4574-afb4-194a39bf2855" - (reference "C1") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "mp1584:MT1470") (at 41.148 103.378 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid d1943f25-7cb0-479a-a8e1-b95f42c712bd) - (property "Reference" "U2" (at 40.513 95.6152 0) - (effects (font (size 1.524 1.524))) - ) - (property "Value" "MT1470" (at 40.513 97.9964 0) - (effects (font (size 1.524 1.524))) - ) - (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6_Handsoldering" (at 41.148 103.378 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "Datasheet" "" (at 41.148 103.378 0) - (effects (font (size 1.524 1.524))) - ) - (pin "1" (uuid cf023413-ae46-4723-89e1-edb15a4390ec)) - (pin "2" (uuid 79cdc768-1c06-4b5e-801d-3e3c7f33ca9c)) - (pin "3" (uuid bbf1cb02-3450-40fa-afc8-e8a2fa55fc80)) - (pin "4" (uuid 5e5cd3d0-4b2e-4df1-ad28-1cfff12ddf2b)) - (pin "5" (uuid aeca1633-ed06-45da-a3ad-940b4461f728)) - (pin "6" (uuid a25b041f-c31a-4694-a198-f4aec6353c89)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "U2") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:Q_NMOS_GSD") (at 199.898 114.681 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid d37fe787-47f0-4d9d-9f4b-15cf491f1582) - (property "Reference" "Q1" (at 199.009 110.617 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "2N7002" (at 206.121 118.237 90) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Package_TO_SOT_SMD:SOT-23_Handsoldering" (at 204.978 112.141 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 199.898 114.681 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 5f9dc8fb-b8ba-4c4e-a1c4-c8925ca1c0a6)) - (pin "2" (uuid 09d22602-58d5-4c94-99f9-a1465d91a557)) - (pin "3" (uuid 361f6ac7-7f6c-4a68-af39-9b6831fd0aba)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "Q1") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:C") (at 30.988 109.728 180) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid d3f87295-91a4-48f0-b1d7-f08b2ab4b533) - (property "Reference" "C2" (at 33.909 108.704 0) - (effects (font (size 1.27 1.27)) (justify right)) - ) - (property "Value" "10u" (at 33.909 110.752 0) - (effects (font (size 1.27 1.27)) (justify right)) - ) - (property "Footprint" "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" (at 30.0228 105.918 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 30.988 109.728 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 0e5464ed-b17e-4fde-ba03-4ba4241af17b)) - (pin "2" (uuid 41ce0815-bf1b-4b7f-bf24-e5ff778eedc8)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "C2") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:PWR_FLAG") (at 32.512 39.878 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid d468978b-5471-42d1-9504-11e483c03078) - (property "Reference" "#FLG03" (at 34.417 39.878 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "PWR_FLAG" (at 36.457 39.878 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Footprint" "" (at 32.512 39.878 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 32.512 39.878 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 7b369737-1808-41bb-86bc-fb773e6e6ca6)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "#FLG03") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R") (at 50.038 109.728 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid d5ee53e9-7bd5-4534-9901-c669dd66fb12) - (property "Reference" "R6" (at 51.816 108.704 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "19k" (at 51.816 110.752 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 48.26 109.728 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 50.038 109.728 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 28bb2cba-490e-4130-ab2f-db351821bf49)) - (pin "2" (uuid 6f51b414-c717-49a3-9bc5-f958d2656df9)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "R6") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:C") (at 121.031 57.531 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid d6c47741-d7ff-410d-ae78-4e99255d7d96) - (property "Reference" "C7" (at 123.952 56.507 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "0.1" (at 123.952 58.555 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 121.9962 61.341 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 121.031 57.531 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 522cbe68-9d67-4456-bcb0-b078519733e4)) - (pin "2" (uuid f133a11f-2b22-4754-81b3-600c96b3afbf)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "C7") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:D") (at 115.189 169.926 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid d6f3faa5-25f0-413e-8caf-dac69327944f) - (property "Reference" "D4" (at 117.602 168.021 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "1N4007" (at 112.776 165.989 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Diode_SMD:D_SMA_Handsoldering" (at 115.189 169.926 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 115.189 169.926 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Sim.Device" "D" (at 115.189 169.926 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Sim.Pins" "1=K 2=A" (at 115.189 169.926 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 94f3a473-e8ec-47c7-8fe4-f6d2579e383f)) - (pin "2" (uuid fd3b5c68-914f-4454-86fb-0289d27538c2)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "D4") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:D_Schottky") (at 122.809 169.926 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid d81bbb2d-88a8-4b83-96e1-471fd82bedf8) - (property "Reference" "D6" (at 120.396 168.148 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "MM3Z3V3" (at 125.222 166.624 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Diode_SMD:D_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 122.809 169.926 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 122.809 169.926 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 1c54fb52-6240-49a7-b2bd-48509c828476)) - (pin "2" (uuid 9366f887-d43d-4969-9265-a618689a4217)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "D6") (unit 1) - ) - ) - ) - ) - - (symbol (lib_name "GND_3") (lib_id "power:GND") (at 240.665 123.444 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid e3afc7d4-975c-4236-96fe-0b54d89756dc) - (property "Reference" "#PWR037" (at 240.665 129.794 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 240.665 127.389 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Footprint" "" (at 240.665 123.444 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 240.665 123.444 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid b508d388-6318-4fec-a916-a8e0d84515af)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "#PWR037") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:+5V") (at 50.8071 88.646 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid e4cbd905-1241-4dd6-a575-50cf49954bb0) - (property "Reference" "#PWR047" (at 50.8071 92.456 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "+5V" (at 50.8071 84.701 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 50.8071 88.646 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 50.8071 88.646 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 38ca0f1b-ef39-4d78-98ff-f5e502b952b8)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "#PWR047") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "MCU_ST_STM32F1:STM32F103C6Tx") (at 135.001 106.426 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid e4f2ba4e-4d73-483b-92c6-d8ba5e2d8e24) - (property "Reference" "U3" (at 133.731 98.044 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "STM32F103C6Tx" (at 127.254 104.902 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Package_QFP:LQFP-48_7x7mm_P0.5mm" (at 119.761 141.986 0) - (effects (font (size 1.27 1.27)) (justify right) hide) - ) - (property "Datasheet" "http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/CD00210843.pdf" (at 135.001 106.426 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid f895ddf5-789d-4ab1-9e5e-04dad95dbca2)) - (pin "10" (uuid 43998fcd-91bb-4403-8536-49461f2cbcfa)) - (pin "11" (uuid 331ad201-957d-4c4d-91cd-41202d29fd65)) - (pin "12" (uuid b361ca7e-cf77-4576-94c5-2e5e2cd18ffa)) - (pin "13" (uuid 2c30a2f2-18f2-4523-a4a7-ce436916a55c)) - (pin "14" (uuid 821da943-7283-4055-a525-a09f263d547a)) - (pin "15" (uuid be388e44-1f5f-4675-8a36-bb687f9652a9)) - (pin "16" (uuid 7d35602f-06b5-4ec8-bf69-fab0ab900f67)) - (pin "17" (uuid 9d8b1cf7-98b5-4540-be02-e78037dce656)) - (pin "18" (uuid 10a2ef3b-4455-456c-8382-04162a6e9231)) - (pin "19" (uuid 3f949273-a492-40e8-b031-776c583549d5)) - (pin "2" (uuid 6ad7487e-5e2a-4be7-8686-05b38c9a63d2)) - (pin "20" (uuid 3ff0b1a9-8d2e-411f-a6ce-e557655d18b6)) - (pin "21" (uuid f04e8700-4039-4a9b-81f3-2f7a6f058ac4)) - (pin "22" (uuid 8f7c0067-7e33-4aaa-b8b2-be90111decf9)) - (pin "23" (uuid eda0f746-86ef-4f99-8f56-7d5b19d96fbd)) - (pin "24" (uuid ca0fd4e4-afca-454f-941f-b4abe4deb880)) - (pin "25" (uuid 6b5522d3-0188-4437-900b-254a2a21abd9)) - (pin "26" (uuid a9c86790-66c8-4620-bc81-16eae46a8aab)) - (pin "27" (uuid eb855f49-0277-4d27-9014-78697c011513)) - (pin "28" (uuid fef0f3ed-dff7-47fb-8740-9d2aa57f3df1)) - (pin "29" (uuid fe7a3456-1f58-4edd-9882-8dbce9f186d6)) - (pin "3" (uuid d1b6ae1e-3bc8-49e8-9ff8-84f95f821d0d)) - (pin "30" (uuid 6e05a613-03d8-4047-ba1f-1ad0fcf9a506)) - (pin "31" (uuid da90d9c5-960d-4068-9a17-6424cfeede94)) - (pin "32" (uuid b1ce93da-309b-4821-ba94-d9ddab4d2eb1)) - (pin "33" (uuid 4e417ca2-4fec-477e-b88c-28dfc994e790)) - (pin "34" (uuid e6f8eab6-44ed-4c89-b8b8-b0a5e7909eea)) - (pin "35" (uuid fe8ea76c-66d6-4e8c-9600-3f2a5f328de1)) - (pin "36" (uuid 0e576c5e-bc61-406c-85e9-6adf8d7ed635)) - (pin "37" (uuid 28a57cf6-5788-4808-8618-b53a57bd77b4)) - (pin "38" (uuid 956f8aed-cceb-40d2-89cb-2353b2aabe0f)) - (pin "39" (uuid 31f1ac30-d51b-4e2f-9ef7-d1b5ada62849)) - (pin "4" (uuid 385f19a5-301a-402e-8f94-0eadb827be00)) - (pin "40" (uuid 328ea58c-b204-40f8-ab6d-4d91ca991a37)) - (pin "41" (uuid b82b2ded-20c7-43ff-aed5-02d2ab9ecb9d)) - (pin "42" (uuid 70d99031-0b9a-4d36-835c-e9d34be5df83)) - (pin "43" (uuid 77de7879-12d2-40ab-a09e-b6fe4f8a82f3)) - (pin "44" (uuid c763f0b1-b140-46c8-bb98-de6f371ab904)) - (pin "45" (uuid 4e89aacd-0d0b-4866-8f4b-efc78e802208)) - (pin "46" (uuid 888811db-fd71-4637-a5a8-7e54764c298a)) - (pin "47" (uuid 5049576c-042b-4f2f-b674-5e3ec10483f8)) - (pin "48" (uuid b35771e5-8680-40c0-82b3-ad0dd7f4a947)) - (pin "5" (uuid 2f4a66ae-9d93-4aa7-bc92-d7246bb24845)) - (pin "6" (uuid dc6976d0-9e8f-40fe-81c6-2b2f614a79f0)) - (pin "7" (uuid c0f82b1e-2b06-4792-a757-dd472dd9ef13)) - (pin "8" (uuid 9d3a511d-ed24-46af-aa44-0d11e6db43e4)) - (pin "9" (uuid a884510c-7d2e-4d3e-bce1-ee0e09a81bc5)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "U3") (unit 1) - ) - ) - (project "Canon_manage" - (path "/56438dee-19cd-4574-afb4-194a39bf2855" - (reference "U1") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:+3V3") (at 34.036 168.275 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid e7231431-5ff6-44c0-aa1e-bd7c1257d3ee) - (property "Reference" "#PWR07" (at 34.036 172.085 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "+3V3" (at 34.036 164.33 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 34.036 168.275 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 34.036 168.275 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 9bb4e6db-e97b-4efd-abcf-20a0d07c2c65)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "#PWR07") (unit 1) - ) - ) - ) - ) - - (symbol (lib_name "GND_3") (lib_id "power:GND") (at 93.599 43.434 180) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid e9ce393e-70ec-4cd5-be41-09860babbde3) - (property "Reference" "#PWR019" (at 93.599 37.084 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 93.599 39.489 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Footprint" "" (at 93.599 43.434 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 93.599 43.434 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 561d7b04-029c-49b9-81ad-66c8b6b45b1a)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "#PWR019") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R") (at 258.953 129.286 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid ebbc8d8c-bb01-4d32-b42b-7af07ae969d2) - (property "Reference" "R22" (at 258.826 127.2286 90) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "10k" (at 258.699 129.286 90) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 258.953 127.508 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 258.953 129.286 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 2060b331-12ab-446a-b46d-cb5c231c9436)) - (pin "2" (uuid 79e862e4-fbe1-457d-907f-d14cb3766e0b)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "R22") (unit 1) - ) - ) - ) - ) - - (symbol (lib_name "GND_3") (lib_id "power:GND") (at 32.258 72.009 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid ef17a36e-1a4f-4dfb-a827-b468cc184624) - (property "Reference" "#PWR05" (at 32.258 78.359 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 32.258 75.954 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Footprint" "" (at 32.258 72.009 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 32.258 72.009 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid bf092780-de08-4ef9-82ff-eaaf43856af6)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "#PWR05") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R") (at 53.594 92.456 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid f41f8cea-c2e3-45a8-8558-a5ad445aa7cf) - (property "Reference" "R7" (at 49.53 90.424 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "100k" (at 53.594 94.742 90) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 51.816 92.456 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 53.594 92.456 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 077504a6-fbd0-4205-8e82-6a93acdc277b)) - (pin "2" (uuid f71ecb88-097b-443f-8324-7dfcf1957ca7)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "R7") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:Q_NMOS_GDS") (at 256.413 124.206 0) (mirror y) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid fad7fe14-e161-4c9f-93fd-7ab778ec54e8) - (property "Reference" "Q5" (at 251.206 123.182 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "IRLR7807" (at 253.111 127.254 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Package_TO_SOT_SMD:TO-252-3_TabPin2" (at 251.333 121.666 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 256.413 124.206 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid c3c423e2-9fb8-441b-93fb-43be3c486d23)) - (pin "2" (uuid 115d98dc-7f9e-4d59-ac22-d77fe8ba366b)) - (pin "3" (uuid ddfbc65a-be14-4388-a03d-5d9317281500)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "Q5") (unit 1) - ) - ) - ) - ) - - (symbol (lib_name "GND_3") (lib_id "power:GND") (at 30.988 100.838 180) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid fcb15a24-2a5e-4a12-a174-46b2fe51bf89) - (property "Reference" "#PWR03" (at 30.988 94.488 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 30.988 96.893 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Footprint" "" (at 30.988 100.838 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 30.988 100.838 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 0e8772f4-4d6e-4d4b-b773-fae9392bf974)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "#PWR03") (unit 1) - ) - ) - ) - ) - - (symbol (lib_name "GND_3") (lib_id "power:GND") (at 136.652 27.559 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid fe8282eb-226b-4871-823e-7a9f6ba4603c) - (property "Reference" "#PWR027" (at 136.652 33.909 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 136.652 31.504 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Footprint" "" (at 136.652 27.559 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 136.652 27.559 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid f5de6e83-a52d-46ba-bd96-02667835f673)) - (instances - (project "windshield" - (path "/07322d58-7316-46ef-93d7-29583fc10978" - (reference "#PWR027") (unit 1) - ) - ) - ) - ) - - (sheet_instances - (path "/" (page "1")) - ) -) +(kicad_sch + (version 20240101) + (generator "eeschema") + (generator_version "8.99") + (uuid "07322d58-7316-46ef-93d7-29583fc10978") + (paper "A4") + (lib_symbols + (symbol "Connector:Conn_01x02_Pin" + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at 0 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Conn_01x02_Pin" + (at 0 -5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x02, script generated" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_locked" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "ki_keywords" "connector" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Connector*:*_1x??_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Conn_01x02_Pin_1_1" + (polyline + (pts + (xy 1.27 -2.54) (xy 0.8636 -2.54) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 0) (xy 0.8636 0) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 0.8636 -2.413) + (end 0 -2.667) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start 0.8636 0.127) + (end 0 -0.127) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type outline) + ) + ) + (pin passive line + (at 5.08 0 180) + (length 3.81) + (name "Pin_1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 5.08 -2.54 180) + (length 3.81) + (name "Pin_2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Connector:Conn_01x03_Pin" + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at 0 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Conn_01x03_Pin" + (at 0 -5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x03, script generated" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_locked" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "ki_keywords" "connector" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Connector*:*_1x??_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Conn_01x03_Pin_1_1" + (polyline + (pts + (xy 1.27 -2.54) (xy 0.8636 -2.54) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 0) (xy 0.8636 0) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 2.54) (xy 0.8636 2.54) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 0.8636 -2.413) + (end 0 -2.667) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start 0.8636 0.127) + (end 0 -0.127) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start 0.8636 2.667) + (end 0 2.413) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type outline) + ) + ) + (pin passive line + (at 5.08 2.54 180) + (length 3.81) + (name "Pin_1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 5.08 0 180) + (length 3.81) + (name "Pin_2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 5.08 -2.54 180) + (length 3.81) + (name "Pin_3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Connector:Conn_01x04_Pin" + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at 0 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Conn_01x04_Pin" + (at 0 -7.62 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x04, script generated" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_locked" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "ki_keywords" "connector" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Connector*:*_1x??_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Conn_01x04_Pin_1_1" + (polyline + (pts + (xy 1.27 -5.08) (xy 0.8636 -5.08) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 -2.54) (xy 0.8636 -2.54) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 0) (xy 0.8636 0) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 2.54) (xy 0.8636 2.54) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 0.8636 -4.953) + (end 0 -5.207) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start 0.8636 -2.413) + (end 0 -2.667) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start 0.8636 0.127) + (end 0 -0.127) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start 0.8636 2.667) + (end 0 2.413) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type outline) + ) + ) + (pin passive line + (at 5.08 2.54 180) + (length 3.81) + (name "Pin_1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 5.08 0 180) + (length 3.81) + (name "Pin_2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 5.08 -2.54 180) + (length 3.81) + (name "Pin_3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 5.08 -5.08 180) + (length 3.81) + (name "Pin_4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Connector:Conn_01x06_Socket" + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at 0 7.62 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Conn_01x06_Socket" + (at 0 -10.16 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x06, script generated" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_locked" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "ki_keywords" "connector" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Connector*:*_1x??_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Conn_01x06_Socket_1_1" + (arc + (start 0 -7.112) + (mid -0.5058 -7.62) + (end 0 -8.128) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 -4.572) + (mid -0.5058 -5.08) + (end 0 -5.588) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 -2.032) + (mid -0.5058 -2.54) + (end 0 -3.048) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 -7.62) (xy -0.508 -7.62) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 -5.08) (xy -0.508 -5.08) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 -2.54) (xy -0.508 -2.54) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 0) (xy -0.508 0) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 2.54) (xy -0.508 2.54) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 5.08) (xy -0.508 5.08) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 0.508) + (mid -0.5058 0) + (end 0 -0.508) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 3.048) + (mid -0.5058 2.54) + (end 0 2.032) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 5.588) + (mid -0.5058 5.08) + (end 0 4.572) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (pin passive line + (at -5.08 5.08 0) + (length 3.81) + (name "Pin_1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 2.54 0) + (length 3.81) + (name "Pin_2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 0 0) + (length 3.81) + (name "Pin_3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -2.54 0) + (length 3.81) + (name "Pin_4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -5.08 0) + (length 3.81) + (name "Pin_5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -7.62 0) + (length 3.81) + (name "Pin_6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Connector:Screw_Terminal_01x02" + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at 0 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Screw_Terminal_01x02" + (at 0 -5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic screw terminal, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "screw terminal" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "TerminalBlock*:*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Screw_Terminal_01x02_1_1" + (rectangle + (start -1.27 1.27) + (end 1.27 -3.81) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (circle + (center 0 -2.54) + (radius 0.635) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -0.5334 -2.2098) (xy 0.3302 -3.048) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -0.5334 0.3302) (xy 0.3302 -0.508) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -0.3556 -2.032) (xy 0.508 -2.8702) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -0.3556 0.508) (xy 0.508 -0.3302) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 0 0) + (radius 0.635) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (pin passive line + (at -5.08 0 0) + (length 3.81) + (name "Pin_1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -2.54 0) + (length 3.81) + (name "Pin_2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Connector:Screw_Terminal_01x03" + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at 0 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Screw_Terminal_01x03" + (at 0 -5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic screw terminal, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "screw terminal" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "TerminalBlock*:*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Screw_Terminal_01x03_1_1" + (rectangle + (start -1.27 3.81) + (end 1.27 -3.81) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (circle + (center 0 -2.54) + (radius 0.635) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -0.5334 -2.2098) (xy 0.3302 -3.048) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -0.5334 0.3302) (xy 0.3302 -0.508) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -0.5334 2.8702) (xy 0.3302 2.032) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -0.3556 -2.032) (xy 0.508 -2.8702) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -0.3556 0.508) (xy 0.508 -0.3302) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -0.3556 3.048) (xy 0.508 2.2098) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 0 0) + (radius 0.635) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 0 2.54) + (radius 0.635) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (pin passive line + (at -5.08 2.54 0) + (length 3.81) + (name "Pin_1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 0 0) + (length 3.81) + (name "Pin_2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -2.54 0) + (length 3.81) + (name "Pin_3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Connector:TestPoint" + (pin_numbers hide) + (pin_names + (offset 0.762) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "TP" + (at 0 6.858 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "TestPoint" + (at 0 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 5.08 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 5.08 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "test point" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "test point tp" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Pin* Test*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "TestPoint_0_1" + (circle + (center 0 3.302) + (radius 0.762) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "TestPoint_1_1" + (pin passive line + (at 0 0 90) + (length 2.54) + (name "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "D_1" + (pin_numbers hide) + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "D" + (at 0 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "D" + (at 0 -2.54 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Diode" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Sim.Device" "D" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Sim.Pins" "1=K 2=A" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "diode" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "D_1_0_1" + (polyline + (pts + (xy -1.27 1.27) (xy -1.27 -1.27) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 0) (xy -1.27 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 1.27) (xy 1.27 -1.27) (xy -1.27 0) (xy 1.27 1.27) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "D_1_1_1" + (pin passive line + (at -3.81 0 0) + (length 2.54) + (name "K" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 3.81 0 180) + (length 2.54) + (name "A" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:C" + (pin_numbers hide) + (pin_names + (offset 0.254) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "C" + (at 0.635 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "C" + (at 0.635 -2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 0.9652 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "cap capacitor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "C_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "C_0_1" + (polyline + (pts + (xy -2.032 -0.762) (xy 2.032 -0.762) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.032 0.762) (xy 2.032 0.762) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "C_1_1" + (pin passive line + (at 0 3.81 270) + (length 2.794) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -3.81 90) + (length 2.794) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:Crystal" + (pin_numbers hide) + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "Y" + (at 0 3.81 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Crystal" + (at 0 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Two pin crystal" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "quartz ceramic resonator oscillator" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Crystal*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Crystal_0_1" + (rectangle + (start -1.143 2.54) + (end 1.143 -2.54) + (stroke + (width 0.3048) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 0) (xy -1.905 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.905 -1.27) (xy -1.905 1.27) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.905 -1.27) (xy 1.905 1.27) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 2.54 0) (xy 1.905 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "Crystal_1_1" + (pin passive line + (at -3.81 0 0) + (length 1.27) + (name "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 3.81 0 180) + (length 1.27) + (name "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:D" + (pin_numbers hide) + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "D" + (at 0 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "D" + (at 0 -2.54 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Diode" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Sim.Device" "D" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Sim.Pins" "1=K 2=A" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "diode" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "D_0_1" + (polyline + (pts + (xy -1.27 1.27) (xy -1.27 -1.27) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 0) (xy -1.27 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 1.27) (xy 1.27 -1.27) (xy -1.27 0) (xy 1.27 1.27) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "D_1_1" + (pin passive line + (at -3.81 0 0) + (length 2.54) + (name "K" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 3.81 0 180) + (length 2.54) + (name "A" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:D_Schottky" + (pin_numbers hide) + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "D" + (at 0 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "D_Schottky" + (at 0 -2.54 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Schottky diode" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "diode Schottky" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "D_Schottky_0_1" + (polyline + (pts + (xy 1.27 0) (xy -1.27 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 1.27) (xy 1.27 -1.27) (xy -1.27 0) (xy 1.27 1.27) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.905 0.635) (xy -1.905 1.27) (xy -1.27 1.27) (xy -1.27 -1.27) (xy -0.635 -1.27) (xy -0.635 -0.635) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "D_Schottky_1_1" + (pin passive line + (at -3.81 0 0) + (length 2.54) + (name "K" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 3.81 0 180) + (length 2.54) + (name "A" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:L" + (pin_numbers hide) + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "L" + (at -1.27 0 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "L" + (at 1.905 0 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Inductor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "inductor choke coil reactor magnetic" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Choke_* *Coil* Inductor_* L_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "L_0_1" + (arc + (start 0 -2.54) + (mid 0.6323 -1.905) + (end 0 -1.27) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 -1.27) + (mid 0.6323 -0.635) + (end 0 0) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 0) + (mid 0.6323 0.635) + (end 0 1.27) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 1.27) + (mid 0.6323 1.905) + (end 0 2.54) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "L_1_1" + (pin passive line + (at 0 3.81 270) + (length 1.27) + (name "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -3.81 90) + (length 1.27) + (name "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:Q_NMOS_GDS" + (pin_names + (offset 0) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "Q" + (at 5.08 1.27 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "Q_NMOS_GDS" + (at 5.08 -1.27 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 5.08 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "N-MOSFET transistor, gate/drain/source" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "transistor NMOS N-MOS N-MOSFET" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Q_NMOS_GDS_0_1" + (polyline + (pts + (xy 0.254 0) (xy -2.54 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.254 1.905) (xy 0.254 -1.905) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.762 -1.27) (xy 0.762 -2.286) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.762 0.508) (xy 0.762 -0.508) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.762 2.286) (xy 0.762 1.27) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 2.54 2.54) (xy 2.54 1.778) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 2.54 -2.54) (xy 2.54 0) (xy 0.762 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.762 -1.778) (xy 3.302 -1.778) (xy 3.302 1.778) (xy 0.762 1.778) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.016 0) (xy 2.032 0.381) (xy 2.032 -0.381) (xy 1.016 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (polyline + (pts + (xy 2.794 0.508) (xy 2.921 0.381) (xy 3.683 0.381) (xy 3.81 0.254) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.302 0.381) (xy 2.921 -0.254) (xy 3.683 -0.254) (xy 3.302 0.381) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 1.651 0) + (radius 2.794) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 2.54 -1.778) + (radius 0.254) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (circle + (center 2.54 1.778) + (radius 0.254) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + ) + (symbol "Q_NMOS_GDS_1_1" + (pin input line + (at -5.08 0 0) + (length 2.54) + (name "G" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 2.54 5.08 270) + (length 2.54) + (name "D" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 2.54 -5.08 90) + (length 2.54) + (name "S" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:Q_NMOS_GSD" + (pin_names + (offset 0) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "Q" + (at 5.08 1.27 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "Q_NMOS_GSD" + (at 5.08 -1.27 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 5.08 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "N-MOSFET transistor, gate/source/drain" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "transistor NMOS N-MOS N-MOSFET" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Q_NMOS_GSD_0_1" + (polyline + (pts + (xy 0.254 0) (xy -2.54 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.254 1.905) (xy 0.254 -1.905) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.762 -1.27) (xy 0.762 -2.286) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.762 0.508) (xy 0.762 -0.508) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.762 2.286) (xy 0.762 1.27) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 2.54 2.54) (xy 2.54 1.778) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 2.54 -2.54) (xy 2.54 0) (xy 0.762 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.762 -1.778) (xy 3.302 -1.778) (xy 3.302 1.778) (xy 0.762 1.778) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.016 0) (xy 2.032 0.381) (xy 2.032 -0.381) (xy 1.016 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (polyline + (pts + (xy 2.794 0.508) (xy 2.921 0.381) (xy 3.683 0.381) (xy 3.81 0.254) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.302 0.381) (xy 2.921 -0.254) (xy 3.683 -0.254) (xy 3.302 0.381) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 1.651 0) + (radius 2.794) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 2.54 -1.778) + (radius 0.254) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (circle + (center 2.54 1.778) + (radius 0.254) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + ) + (symbol "Q_NMOS_GSD_1_1" + (pin input line + (at -5.08 0 0) + (length 2.54) + (name "G" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 2.54 -5.08 90) + (length 2.54) + (name "S" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 2.54 5.08 270) + (length 2.54) + (name "D" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:Q_PMOS_GDS" + (pin_names + (offset 0) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "Q" + (at 5.08 1.27 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "Q_PMOS_GDS" + (at 5.08 -1.27 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 5.08 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "P-MOSFET transistor, gate/drain/source" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "transistor PMOS P-MOS P-MOSFET" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Q_PMOS_GDS_0_1" + (polyline + (pts + (xy 0.254 0) (xy -2.54 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.254 1.905) (xy 0.254 -1.905) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.762 -1.27) (xy 0.762 -2.286) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.762 0.508) (xy 0.762 -0.508) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.762 2.286) (xy 0.762 1.27) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 2.54 2.54) (xy 2.54 1.778) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 2.54 -2.54) (xy 2.54 0) (xy 0.762 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.762 1.778) (xy 3.302 1.778) (xy 3.302 -1.778) (xy 0.762 -1.778) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 2.286 0) (xy 1.27 0.381) (xy 1.27 -0.381) (xy 2.286 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (polyline + (pts + (xy 2.794 -0.508) (xy 2.921 -0.381) (xy 3.683 -0.381) (xy 3.81 -0.254) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.302 -0.381) (xy 2.921 0.254) (xy 3.683 0.254) (xy 3.302 -0.381) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 1.651 0) + (radius 2.794) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 2.54 -1.778) + (radius 0.254) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (circle + (center 2.54 1.778) + (radius 0.254) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + ) + (symbol "Q_PMOS_GDS_1_1" + (pin input line + (at -5.08 0 0) + (length 2.54) + (name "G" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 2.54 5.08 270) + (length 2.54) + (name "D" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 2.54 -5.08 90) + (length 2.54) + (name "S" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:R" + (pin_numbers hide) + (pin_names + (offset 0) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "R" + (at 2.032 0 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "R" + (at 0 0 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at -1.778 0 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "R res resistor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "R_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "R_0_1" + (rectangle + (start -1.016 -2.54) + (end 1.016 2.54) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "R_1_1" + (pin passive line + (at 0 3.81 270) + (length 1.27) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -3.81 90) + (length 1.27) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "GND_3" + (power) + (pin_names + (offset 0) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "#PWR" + (at 0 -6.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND_3" + (at 0 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "global power" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "GND_3_0_1" + (polyline + (pts + (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "GND_3_1_1" + (pin power_in line + (at 0 0 270) + (length 0) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Interface_CAN_LIN:MCP2551-I-SN" + (pin_names + (offset 1.016) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at -10.16 8.89 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "MCP2551-I-SN" + (at 2.54 8.89 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" + (at 0 -12.7 0) + (effects + (font + (size 1.27 1.27) + (italic yes) + ) + (hide yes) + ) + ) + (property "Datasheet" "http://ww1.microchip.com/downloads/en/devicedoc/21667d.pdf" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "High-Speed CAN Transceiver, 1Mbps, 5V supply, SOIC-8" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "High-Speed CAN Transceiver" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "SOIC*3.9x4.9mm*P1.27mm*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "MCP2551-I-SN_0_1" + (rectangle + (start -10.16 7.62) + (end 10.16 -7.62) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + ) + (symbol "MCP2551-I-SN_1_1" + (pin input line + (at -12.7 5.08 0) + (length 2.54) + (name "TXD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 0 -10.16 90) + (length 2.54) + (name "VSS" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 0 10.16 270) + (length 2.54) + (name "VDD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at -12.7 2.54 0) + (length 2.54) + (name "RXD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_out line + (at -12.7 -2.54 0) + (length 2.54) + (name "Vref" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 12.7 -2.54 180) + (length 2.54) + (name "CANL" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 12.7 2.54 180) + (length 2.54) + (name "CANH" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -12.7 -5.08 0) + (length 2.54) + (name "Rs" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Jumper:SolderJumper_2_Open" + (pin_names + (offset 0) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "JP" + (at 0 2.032 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "SolderJumper_2_Open" + (at 0 -2.54 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Solder Jumper, 2-pole, open" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "solder jumper SPST" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "SolderJumper*Open*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "SolderJumper_2_Open_0_1" + (arc + (start -0.254 1.016) + (mid -1.2656 0) + (end -0.254 -1.016) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -0.254 1.016) + (mid -1.2656 0) + (end -0.254 -1.016) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (polyline + (pts + (xy -0.254 1.016) (xy -0.254 -1.016) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.254 1.016) (xy 0.254 -1.016) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0.254 -1.016) + (mid 1.2656 0) + (end 0.254 1.016) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0.254 -1.016) + (mid 1.2656 0) + (end 0.254 1.016) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + ) + (symbol "SolderJumper_2_Open_1_1" + (pin passive line + (at -3.81 0 0) + (length 2.54) + (name "A" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 3.81 0 180) + (length 2.54) + (name "B" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "MCU_ST_STM32F1:STM32F103C6Tx" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at -15.24 36.83 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "STM32F103C6Tx" + (at 7.62 36.83 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_QFP:LQFP-48_7x7mm_P0.5mm" + (at -15.24 -35.56 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + (property "Datasheet" "http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/CD00210843.pdf" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "ARM Cortex-M3 MCU, 32KB flash, 10KB RAM, 72MHz, 2-3.6V, 37 GPIO, LQFP-48" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "ARM Cortex-M3 STM32F1 STM32F103" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "LQFP*7x7mm*P0.5mm*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "STM32F103C6Tx_0_1" + (rectangle + (start -15.24 -35.56) + (end 12.7 35.56) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + ) + (symbol "STM32F103C6Tx_1_1" + (pin power_in line + (at -5.08 38.1 270) + (length 2.54) + (name "VBAT" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 5.08 180) + (length 2.54) + (name "PA0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 2.54 180) + (length 2.54) + (name "PA1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 0 180) + (length 2.54) + (name "PA2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 -2.54 180) + (length 2.54) + (name "PA3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 -5.08 180) + (length 2.54) + (name "PA4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 -7.62 180) + (length 2.54) + (name "PA5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "15" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 -10.16 180) + (length 2.54) + (name "PA6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "16" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 -12.7 180) + (length 2.54) + (name "PA7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "17" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -17.78 5.08 0) + (length 2.54) + (name "PB0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "18" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -17.78 2.54 0) + (length 2.54) + (name "PB1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "19" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -17.78 15.24 0) + (length 2.54) + (name "PC13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -17.78 0 0) + (length 2.54) + (name "PB2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "20" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -17.78 -20.32 0) + (length 2.54) + (name "PB10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "21" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -17.78 -22.86 0) + (length 2.54) + (name "PB11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "22" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -5.08 -38.1 90) + (length 2.54) + (name "VSS" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "23" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -2.54 38.1 270) + (length 2.54) + (name "VDD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "24" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -17.78 -25.4 0) + (length 2.54) + (name "PB12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "25" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -17.78 -27.94 0) + (length 2.54) + (name "PB13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "26" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -17.78 -30.48 0) + (length 2.54) + (name "PB14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "27" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -17.78 -33.02 0) + (length 2.54) + (name "PB15" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "28" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 -15.24 180) + (length 2.54) + (name "PA8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "29" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -17.78 12.7 0) + (length 2.54) + (name "PC14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 -17.78 180) + (length 2.54) + (name "PA9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "30" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 -20.32 180) + (length 2.54) + (name "PA10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "31" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 -22.86 180) + (length 2.54) + (name "PA11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "32" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 -25.4 180) + (length 2.54) + (name "PA12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "33" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 -27.94 180) + (length 2.54) + (name "PA13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "34" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -2.54 -38.1 90) + (length 2.54) + (name "VSS" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "35" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 0 38.1 270) + (length 2.54) + (name "VDD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "36" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 -30.48 180) + (length 2.54) + (name "PA14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "37" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 -33.02 180) + (length 2.54) + (name "PA15" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "38" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -17.78 -2.54 0) + (length 2.54) + (name "PB3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "39" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -17.78 10.16 0) + (length 2.54) + (name "PC15" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -17.78 -5.08 0) + (length 2.54) + (name "PB4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "40" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -17.78 -7.62 0) + (length 2.54) + (name "PB5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "41" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -17.78 -10.16 0) + (length 2.54) + (name "PB6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "42" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -17.78 -12.7 0) + (length 2.54) + (name "PB7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "43" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -17.78 27.94 0) + (length 2.54) + (name "BOOT0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "44" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -17.78 -15.24 0) + (length 2.54) + (name "PB8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "45" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -17.78 -17.78 0) + (length 2.54) + (name "PB9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "46" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 0 -38.1 90) + (length 2.54) + (name "VSS" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "47" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 2.54 38.1 270) + (length 2.54) + (name "VDD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "48" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -17.78 22.86 0) + (length 2.54) + (name "PD0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -17.78 20.32 0) + (length 2.54) + (name "PD1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -17.78 33.02 0) + (length 2.54) + (name "NRST" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 2.54 -38.1 90) + (length 2.54) + (name "VSSA" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 5.08 38.1 270) + (length 2.54) + (name "VDDA" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Regulator_Linear:XC6206PxxxMR" + (pin_names + (offset 0.254) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at -3.81 3.175 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "XC6206PxxxMR" + (at 0 3.175 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23-3" + (at 0 5.715 0) + (effects + (font + (size 1.27 1.27) + (italic yes) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.torexsemi.com/file/xc6206/XC6206.pdf" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Positive 60-250mA Low Dropout Regulator, Fixed Output, SOT-23" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "Torex LDO Voltage Regulator Fixed Positive" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "SOT?23?3*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "XC6206PxxxMR_0_1" + (rectangle + (start -5.08 1.905) + (end 5.08 -5.08) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + ) + (symbol "XC6206PxxxMR_1_1" + (pin power_in line + (at 0 -7.62 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_out line + (at 7.62 0 180) + (length 2.54) + (name "VO" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -7.62 0 0) + (length 2.54) + (name "VI" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "ZXCT1009:ZXCT1009" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at 0 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "ZXCT1009" + (at 0 -5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23_Handsoldering" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "High side current sensor 1mA/100mV" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "ZXCT1009_0_0" + (text "" + (at 0 -6.35 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (symbol "ZXCT1009_0_1" + (rectangle + (start -3.81 3.81) + (end 3.81 -3.81) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "ZXCT1009_1_1" + (pin passive line + (at -8.89 2.54 0) + (length 5.08) + (name "-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -8.89 -2.54 0) + (length 5.08) + (name "+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 8.89 0 180) + (length 5.08) + (name "sense" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "elements:PESD1CAN" + (pin_names + (offset 0.762) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "D" + (at 0 -8.89 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "PESD1CAN" + (at 1.27 3.81 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "CAN bus ESD protection" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "diode" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "SOT23" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "PESD1CAN_0_1" + (rectangle + (start -5.08 2.54) + (end 7.62 -7.62) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -3.556 -5.08) (xy 3.81 -5.08) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -3.556 0) (xy 3.81 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -3.81 -3.81) (xy -3.81 -6.35) (xy -3.81 -6.35) + ) + (stroke + (width 0.2032) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -3.81 1.27) (xy -3.81 -1.27) (xy -3.81 -1.27) + ) + (stroke + (width 0.2032) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 -3.81) (xy 3.81 -6.35) (xy 3.81 -6.35) + ) + (stroke + (width 0.2032) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 1.27) (xy 3.81 -1.27) (xy 3.81 -1.27) + ) + (stroke + (width 0.2032) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -3.81 -3.81) (xy -4.318 -3.81) (xy -4.318 -4.064) (xy -4.318 -4.064) + ) + (stroke + (width 0.2032) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -3.81 1.27) (xy -4.318 1.27) (xy -4.318 1.016) (xy -4.318 1.016) + ) + (stroke + (width 0.2032) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 -6.35) (xy 4.318 -6.35) (xy 4.318 -6.096) (xy 4.318 -6.096) + ) + (stroke + (width 0.2032) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 -3.81) (xy 3.302 -3.81) (xy 3.302 -4.064) (xy 3.302 -4.064) + ) + (stroke + (width 0.2032) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 -1.27) (xy 4.318 -1.27) (xy 4.318 -1.016) (xy 4.318 -1.016) + ) + (stroke + (width 0.2032) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 0) (xy 6.35 0) (xy 6.35 -5.08) (xy 3.81 -5.08) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 1.27) (xy 3.302 1.27) (xy 3.302 1.016) (xy 3.302 1.016) + ) + (stroke + (width 0.2032) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -3.302 -6.096) (xy -3.302 -6.35) (xy -3.81 -6.35) (xy -3.81 -6.35) (xy -3.81 -6.35) + ) + (stroke + (width 0.2032) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -3.302 -1.016) (xy -3.302 -1.27) (xy -3.81 -1.27) (xy -3.81 -1.27) (xy -3.81 -1.27) + ) + (stroke + (width 0.2032) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 -6.35) (xy -3.81 -5.08) (xy -1.27 -3.81) (xy -1.27 -6.35) (xy -1.27 -6.35) (xy -1.27 -6.35) + ) + (stroke + (width 0.2032) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 -1.27) (xy -3.81 0) (xy -1.27 1.27) (xy -1.27 -1.27) (xy -1.27 -1.27) (xy -1.27 -1.27) + ) + (stroke + (width 0.2032) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 -3.81) (xy 3.81 -5.08) (xy 1.27 -6.35) (xy 1.27 -3.81) (xy 1.27 -3.81) (xy 1.27 -3.81) + ) + (stroke + (width 0.2032) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 1.27) (xy 3.81 0) (xy 1.27 -1.27) (xy 1.27 1.27) (xy 1.27 1.27) (xy 1.27 1.27) + ) + (stroke + (width 0.2032) + (type default) + ) + (fill + (type none) + ) + ) + (pin passive line + (at -7.62 0 0) + (length 3.81) + (name "K" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -7.62 -5.08 0) + (length 3.81) + (name "K" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 10.16 -2.54 180) + (length 3.81) + (name "O" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "mp1584:MT1470" + (pin_names + (offset 1.016) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at -2.54 5.08 0) + (effects + (font + (size 1.524 1.524) + ) + ) + ) + (property "Value" "MT1470" + (at 0 -5.08 0) + (effects + (font + (size 1.524 1.524) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.524 1.524) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.524 1.524) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "MT1470_0_1" + (rectangle + (start -5.08 3.81) + (end 3.81 -3.81) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "MT1470_1_1" + (pin input line + (at -10.16 2.54 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -10.16 0 0) + (length 5.08) + (name "SW" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -10.16 -2.54 0) + (length 5.08) + (name "VIN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 8.89 -2.54 180) + (length 5.08) + (name "FB" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 8.89 0 180) + (length 5.08) + (name "EN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 8.89 2.54 180) + (length 5.08) + (name "BS" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "power:+12V" + (power) + (pin_names + (offset 0) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "#PWR" + (at 0 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+12V" + (at 0 3.556 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+12V\"" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "global power" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "+12V_0_1" + (polyline + (pts + (xy -0.762 1.27) (xy 0 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 0) (xy 0 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 2.54) (xy 0.762 1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "+12V_1_1" + (pin power_in line + (at 0 0 90) + (length 0) hide + (name "+12V" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "power:+3V3" + (power) + (pin_names + (offset 0) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "#PWR" + (at 0 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+3V3" + (at 0 3.556 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+3V3\"" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "global power" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "+3V3_0_1" + (polyline + (pts + (xy -0.762 1.27) (xy 0 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 0) (xy 0 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 2.54) (xy 0.762 1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "+3V3_1_1" + (pin power_in line + (at 0 0 90) + (length 0) hide + (name "+3V3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "power:+5V" + (power) + (pin_names + (offset 0) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "#PWR" + (at 0 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+5V" + (at 0 3.556 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+5V\"" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "global power" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "+5V_0_1" + (polyline + (pts + (xy -0.762 1.27) (xy 0 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 0) (xy 0 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 2.54) (xy 0.762 1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "+5V_1_1" + (pin power_in line + (at 0 0 90) + (length 0) hide + (name "+5V" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "power:PWR_FLAG" + (power) + (pin_numbers hide) + (pin_names + (offset 0) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "#FLG" + (at 0 1.905 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "PWR_FLAG" + (at 0 3.81 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Special symbol for telling ERC where power comes from" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "flag power" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "PWR_FLAG_0_0" + (pin power_out line + (at 0 0 90) + (length 0) + (name "pwr" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (symbol "PWR_FLAG_0_1" + (polyline + (pts + (xy 0 0) (xy 0 1.27) (xy -1.016 1.905) (xy 0 2.54) (xy 1.016 1.905) (xy 0 1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + ) + ) + (junction + (at 46.736 131.953) + (diameter 0) + (color 0 0 0 0) + (uuid "04a83578-a55f-4580-96f3-61057dbedfed") + ) + (junction + (at 135.001 68.326) + (diameter 0) + (color 0 0 0 0) + (uuid "04b5ccf0-675d-4bc1-a7d0-6782b714c016") + ) + (junction + (at 253.873 102.108) + (diameter 0) + (color 0 0 0 0) + (uuid "0e618310-2e7e-440c-8e76-751b1ee0f953") + ) + (junction + (at 53.594 88.646) + (diameter 0) + (color 0 0 0 0) + (uuid "11ecb61e-87a2-43b6-a070-8585268ffba1") + ) + (junction + (at 30.988 105.918) + (diameter 0) + (color 0 0 0 0) + (uuid "14214c0a-7fec-4231-adcf-cde97aabb67a") + ) + (junction + (at 261.493 119.761) + (diameter 0) + (color 0 0 0 0) + (uuid "1db461ad-03e9-432c-9f2c-347de611387a") + ) + (junction + (at 229.235 115.824) + (diameter 0) + (color 0 0 0 0) + (uuid "2be67728-ec70-49e8-bbfa-abf5ec4d977a") + ) + (junction + (at 211.963 94.488) + (diameter 0) + (color 0 0 0 0) + (uuid "3234f340-43e5-493b-a07c-74a94506335c") + ) + (junction + (at 276.733 114.681) + (diameter 0) + (color 0 0 0 0) + (uuid "35c0c0a5-3e52-41c7-950a-f30080e0af6c") + ) + (junction + (at 50.8071 88.646) + (diameter 0) + (color 0 0 0 0) + (uuid "38787313-cecc-4c84-96d7-09057bce0655") + ) + (junction + (at 39.878 64.389) + (diameter 0) + (color 0 0 0 0) + (uuid "39413802-93ed-4e1e-bb18-cc6b2021382f") + ) + (junction + (at 43.307 64.389) + (diameter 0) + (color 0 0 0 0) + (uuid "3d1e81d7-2d2d-471f-a713-8c94c4cf1ab4") + ) + (junction + (at 132.461 144.526) + (diameter 0) + (color 0 0 0 0) + (uuid "455ea53d-7b60-4e69-a0db-f87c85ec9568") + ) + (junction + (at 30.988 113.538) + (diameter 0) + (color 0 0 0 0) + (uuid "4b219aa1-1fc9-4039-b8ce-d6a403f27bda") + ) + (junction + (at 46.355 88.646) + (diameter 0) + (color 0 0 0 0) + (uuid "4dafc3e9-bb15-4849-b167-2ce518e17a61") + ) + (junction + (at 129.794 53.721) + (diameter 0) + (color 0 0 0 0) + (uuid "512d2776-dce2-4c71-ba85-4e727bda1d50") + ) + (junction + (at 187.198 114.681) + (diameter 0) + (color 0 0 0 0) + (uuid "53cfd96d-d4a7-44c0-98ea-4afe39dd6be1") + ) + (junction + (at 238.633 115.824) + (diameter 0) + (color 0 0 0 0) + (uuid "57989eff-3b78-4838-bb0e-557e3d8f8442") + ) + (junction + (at 202.438 119.761) + (diameter 0) + (color 0 0 0 0) + (uuid "5d492663-2764-4232-8c8c-88700c22bf0d") + ) + (junction + (at 253.873 115.824) + (diameter 0) + (color 0 0 0 0) + (uuid "614675c8-a980-400f-803d-24720c6b3581") + ) + (junction + (at 135.001 144.526) + (diameter 0) + (color 0 0 0 0) + (uuid "62eac716-4df5-44b3-9de4-cda8a911fa89") + ) + (junction + (at 240.665 115.824) + (diameter 0) + (color 0 0 0 0) + (uuid "68016f29-dfa2-4cea-8f8d-399f760f65cc") + ) + (junction + (at 45.466 34.798) + (diameter 0) + (color 0 0 0 0) + (uuid "68c3a4fc-6335-4d03-9b7c-43c6d8907813") + ) + (junction + (at 50.038 105.918) + (diameter 0) + (color 0 0 0 0) + (uuid "6c3e5452-5e97-4702-b80f-465156cc0523") + ) + (junction + (at 45.466 42.418) + (diameter 0) + (color 0 0 0 0) + (uuid "755dead6-1ecf-4996-8076-7d36eb05d770") + ) + (junction + (at 26.162 105.918) + (diameter 0) + (color 0 0 0 0) + (uuid "78c7cf04-cfc9-4b74-bf26-b44b53476696") + ) + (junction + (at 202.438 107.315) + (diameter 0) + (color 0 0 0 0) + (uuid "841f754b-9fa0-4200-bee7-235e5c7f7a8d") + ) + (junction + (at 36.83 139.573) + (diameter 0) + (color 0 0 0 0) + (uuid "8f465ff5-7247-4690-be90-da64bf941923") + ) + (junction + (at 229.235 108.204) + (diameter 0) + (color 0 0 0 0) + (uuid "8f724349-f694-44ed-8d9c-e0cda61f11e4") + ) + (junction + (at 129.794 61.341) + (diameter 0) + (color 0 0 0 0) + (uuid "919037aa-be87-430c-9a1f-f5d08491b9b4") + ) + (junction + (at 132.461 68.326) + (diameter 0) + (color 0 0 0 0) + (uuid "92d49134-2523-4b52-a64d-a8f259d65d33") + ) + (junction + (at 210.058 115.824) + (diameter 0) + (color 0 0 0 0) + (uuid "945d0b04-2a66-4f10-9cfc-3a3fbf5954e7") + ) + (junction + (at 32.258 64.389) + (diameter 0) + (color 0 0 0 0) + (uuid "94a8a855-818f-4a60-837f-b46d08470f3b") + ) + (junction + (at 44.45 131.953) + (diameter 0) + (color 0 0 0 0) + (uuid "95de10a3-8395-4be0-88f7-9e7b6e463543") + ) + (junction + (at 137.541 68.326) + (diameter 0) + (color 0 0 0 0) + (uuid "a1061cfb-4aa1-4dd7-a1ef-7b377d5dbdc9") + ) + (junction + (at 35.306 91.948) + (diameter 0) + (color 0 0 0 0) + (uuid "a1ecd3cc-6560-49d2-98d4-5dcb348cbac1") + ) + (junction + (at 269.113 124.206) + (diameter 0) + (color 0 0 0 0) + (uuid "a542f058-4cec-4529-a80d-0ffb720e7f96") + ) + (junction + (at 194.818 124.206) + (diameter 0) + (color 0 0 0 0) + (uuid "a8dd4f46-fbd3-4699-9fa4-6e69f3724105") + ) + (junction + (at 276.733 124.206) + (diameter 0) + (color 0 0 0 0) + (uuid "b0939354-3ca3-412b-9380-d9560afdf94d") + ) + (junction + (at 253.873 129.286) + (diameter 0) + (color 0 0 0 0) + (uuid "b15f23a6-ce6b-4ac5-ae8a-8d53d0b544fc") + ) + (junction + (at 138.049 53.721) + (diameter 0) + (color 0 0 0 0) + (uuid "be06a359-e3aa-4c99-b7b2-72ce9b79acaf") + ) + (junction + (at 29.21 131.953) + (diameter 0) + (color 0 0 0 0) + (uuid "bf5382bb-cec6-4308-b804-be4dcf2ac377") + ) + (junction + (at 225.425 115.824) + (diameter 0) + (color 0 0 0 0) + (uuid "c0fc507c-0599-481d-ac28-0565e5b670b5") + ) + (junction + (at 129.921 68.326) + (diameter 0) + (color 0 0 0 0) + (uuid "cad9296b-c0fc-4011-a597-f561a8812f8c") + ) + (junction + (at 261.493 107.315) + (diameter 0) + (color 0 0 0 0) + (uuid "ce0451f1-4534-4806-b104-4ced52d273eb") + ) + (junction + (at 48.768 42.418) + (diameter 0) + (color 0 0 0 0) + (uuid "d279cb62-5026-45c9-91ab-35ea685e8122") + ) + (junction + (at 189.611 97.028) + (diameter 0) + (color 0 0 0 0) + (uuid "db1002bd-49f2-4ec6-b301-2e4aedac98b4") + ) + (junction + (at 187.198 124.206) + (diameter 0) + (color 0 0 0 0) + (uuid "de5b929b-4a6c-44d1-ae06-8d9f1bec4fe8") + ) + (junction + (at 211.963 102.108) + (diameter 0) + (color 0 0 0 0) + (uuid "e206810b-879a-48c2-93a7-453ab28d1dd6") + ) + (junction + (at 53.594 96.266) + (diameter 0) + (color 0 0 0 0) + (uuid "e81c3ee8-3240-49e7-823a-2822235c184c") + ) + (junction + (at 210.058 102.108) + (diameter 0) + (color 0 0 0 0) + (uuid "e8ae2c37-1d22-4e4f-84ac-8e1360bed333") + ) + (junction + (at 57.912 88.646) + (diameter 0) + (color 0 0 0 0) + (uuid "e9e2cd99-5be1-4306-aff8-7abf9c487738") + ) + (junction + (at 138.049 61.341) + (diameter 0) + (color 0 0 0 0) + (uuid "edc0cac8-fb78-4e00-a675-7998c1060781") + ) + (junction + (at 210.058 129.286) + (diameter 0) + (color 0 0 0 0) + (uuid "f7e852da-adad-46e3-a1ba-2cca78c2f910") + ) + (junction + (at 32.512 39.878) + (diameter 0) + (color 0 0 0 0) + (uuid "faeaaffc-336c-48bb-b2c2-d5e1c50238e7") + ) + (junction + (at 133.731 144.526) + (diameter 0) + (color 0 0 0 0) + (uuid "fb719421-8f6a-4259-a1d3-1b26b66ea299") + ) + (no_connect + (at 250.444 39.751) + (uuid "06b76f45-c04e-4722-98a2-713c33e2c2dc") + ) + (no_connect + (at 117.221 103.886) + (uuid "11fd59f3-d31e-4cbf-a6fa-69d401922ec6") + ) + (no_connect + (at 117.221 96.266) + (uuid "284a0ee7-da16-43ab-84d1-eaa22b5bf7e1") + ) + (no_connect + (at 117.221 108.966) + (uuid "350d36c4-e684-4307-a078-2d14e88d92fc") + ) + (no_connect + (at 150.241 114.046) + (uuid "54611337-fc3a-41ca-a37b-d97c37d8aa4b") + ) + (no_connect + (at 117.221 119.126) + (uuid "67c7a72a-ea7a-4c56-844a-62c7257a317a") + ) + (no_connect + (at 150.241 121.666) + (uuid "6ac0d355-8ab8-477d-a446-d7f7bd6a19bc") + ) + (no_connect + (at 117.221 111.506) + (uuid "6b1749e8-eb78-431c-a797-91b137d64476") + ) + (no_connect + (at 117.221 126.746) + (uuid "733e0d28-8fca-4ed4-9ddb-27a52caf2a90") + ) + (no_connect + (at 117.221 93.726) + (uuid "86bd9976-0639-407d-a51b-73058f4a1983") + ) + (no_connect + (at 117.221 101.346) + (uuid "8dcb6ba8-ca3a-4a28-82fe-c8278f4a27f8") + ) + (no_connect + (at 117.221 129.286) + (uuid "a23eee45-778a-4851-ab87-7c37f8452f09") + ) + (no_connect + (at 150.241 139.446) + (uuid "aaf8f740-8042-40e7-9e8c-f870d4531d3a") + ) + (no_connect + (at 117.221 106.426) + (uuid "acd137e9-588c-4174-a218-005f9b8c20b4") + ) + (no_connect + (at 150.241 111.506) + (uuid "ca1bc797-8799-4b8d-abd5-07ed7ab7bf65") + ) + (no_connect + (at 117.221 91.186) + (uuid "ed00d6ce-ba2f-498d-a4f9-d31ea334e44e") + ) + (no_connect + (at 117.221 116.586) + (uuid "f2eeed21-545d-4b4d-a8f7-0c74a52be954") + ) + (no_connect + (at 117.221 114.046) + (uuid "f54998f2-8bed-4551-9912-3dda0df67cf7") + ) + (wire + (pts + (xy 50.038 91.948) (xy 50.038 100.838) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0875b0c0-a586-435e-aee8-9deaf5a2335c") + ) + (wire + (pts + (xy 276.733 114.681) (xy 276.733 116.459) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0d858a6a-d82c-4479-adb1-197b30bf84ae") + ) + (wire + (pts + (xy 187.198 114.681) (xy 187.198 116.459) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0f0fa712-65f5-4e5d-8c85-0233e686837c") + ) + (wire + (pts + (xy 50.038 105.918) (xy 53.594 105.918) + ) + (stroke + (width 0) + (type default) + ) + (uuid "10b379e9-fb61-4975-95b8-65a497adceb4") + ) + (wire + (pts + (xy 45.466 42.418) (xy 48.768 42.418) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1151df19-e3de-495f-b1ec-a47de2421c34") + ) + (wire + (pts + (xy 262.763 129.286) (xy 269.113 129.286) + ) + (stroke + (width 0) + (type default) + ) + (uuid "134fb925-aef7-49bc-8346-491c123b1859") + ) + (wire + (pts + (xy 135.001 68.326) (xy 137.541 68.326) + ) + (stroke + (width 0) + (type default) + ) + (uuid "14861fa0-1060-4e8e-bcf0-05b0bfc6566c") + ) + (wire + (pts + (xy 210.058 115.824) (xy 210.058 119.126) + ) + (stroke + (width 0) + (type default) + ) + (uuid "167fa0bf-4b54-47b7-9d57-ee66d31cb734") + ) + (wire + (pts + (xy 46.736 131.953) (xy 44.45 131.953) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1803955e-a18e-4ca6-8be6-06fd8837fc7e") + ) + (wire + (pts + (xy 269.113 124.206) (xy 276.733 124.206) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1b57ca45-2af8-4f41-8482-d3ff117df5b6") + ) + (wire + (pts + (xy 133.731 144.526) (xy 135.001 144.526) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1b9af7a5-eb43-4b7a-aabd-f60400dd32e0") + ) + (wire + (pts + (xy 253.873 99.695) (xy 253.873 102.108) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1f4be369-65ca-42e6-99a3-b4914bad4fc4") + ) + (wire + (pts + (xy 129.921 144.526) (xy 132.461 144.526) + ) + (stroke + (width 0) + (type default) + ) + (uuid "265d56d8-a4eb-4d75-a989-b4465779efad") + ) + (wire + (pts + (xy 47.244 64.389) (xy 43.307 64.389) + ) + (stroke + (width 0) + (type default) + ) + (uuid "27ab7309-6476-4052-b0e9-50081cbaa4c0") + ) + (wire + (pts + (xy 210.058 99.568) (xy 210.058 102.108) + ) + (stroke + (width 0) + (type default) + ) + (uuid "282c3294-b80e-4ef0-ab22-e32038113fbf") + ) + (wire + (pts + (xy 210.058 102.108) (xy 211.963 102.108) + ) + (stroke + (width 0) + (type default) + ) + (uuid "29940ae5-2ad5-4751-9d78-baf85f4f3c2c") + ) + (wire + (pts + (xy 53.594 105.918) (xy 53.594 96.266) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2aeb2385-ee9a-4bac-99a1-b50eaa6bf17a") + ) + (wire + (pts + (xy 137.541 68.326) (xy 140.081 68.326) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2c511560-bd86-4951-8a5b-d00bb210434a") + ) + (wire + (pts + (xy 129.921 68.326) (xy 132.461 68.326) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2ec56d4f-7218-41a4-ae8b-54e44968c656") + ) + (wire + (pts + (xy 211.963 102.108) (xy 253.873 102.108) + ) + (stroke + (width 0) + (type default) + ) + (uuid "318fb948-91bf-4a49-9618-a35c427e6357") + ) + (wire + (pts + (xy 132.461 68.326) (xy 135.001 68.326) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3472c12c-066f-4cd9-a5f5-a1816e7efa69") + ) + (wire + (pts + (xy 26.162 105.918) (xy 30.988 105.918) + ) + (stroke + (width 0) + (type default) + ) + (uuid "362ba119-08f7-4b5f-81e3-db41859a6d68") + ) + (wire + (pts + (xy 185.928 114.681) (xy 187.198 114.681) + ) + (stroke + (width 0) + (type default) + ) + (uuid "368b68cc-9389-44d3-9361-decbf727a475") + ) + (wire + (pts + (xy 138.049 53.721) (xy 146.431 53.721) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3f5f7246-8f22-4dc4-8b03-6d000dd693f5") + ) + (wire + (pts + (xy 121.031 61.341) (xy 129.794 61.341) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3ffb71dd-92aa-491c-b044-6132987e0d8f") + ) + (wire + (pts + (xy 194.818 124.206) (xy 187.198 124.206) + ) + (stroke + (width 0) + (type default) + ) + (uuid "40bd4aac-eb13-4d74-870a-8635c859180c") + ) + (wire + (pts + (xy 129.794 61.341) (xy 138.049 61.341) + ) + (stroke + (width 0) + (type default) + ) + (uuid "44ba091f-522c-4d6d-9beb-ce52494b667d") + ) + (wire + (pts + (xy 48.768 42.418) (xy 51.816 42.418) + ) + (stroke + (width 0) + (type default) + ) + (uuid "45501a32-9f44-4757-ad53-c3d78f22fec1") + ) + (wire + (pts + (xy 225.425 115.824) (xy 229.235 115.824) + ) + (stroke + (width 0) + (type default) + ) + (uuid "459e3da3-2b52-4dab-b4cd-d907f66d4528") + ) + (wire + (pts + (xy 45.085 168.275) (xy 41.656 168.275) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4a1f53ee-7ad7-4df1-9f05-678a48aaaa04") + ) + (wire + (pts + (xy 240.665 115.824) (xy 253.873 115.824) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4b5afb41-295c-42cd-bf7f-4f366ca16c22") + ) + (wire + (pts + (xy 35.306 88.646) (xy 35.306 91.948) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4e21e834-0dbd-402d-ada0-5331cb655e4d") + ) + (wire + (pts + (xy 136.652 19.939) (xy 134.747 19.939) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4f0f3b35-56ce-49ac-bc9a-cb47197be91b") + ) + (wire + (pts + (xy 41.656 173.355) (xy 45.085 173.355) + ) + (stroke + (width 0) + (type default) + ) + (uuid "580223b0-a299-4081-9c4e-937d084eeb87") + ) + (wire + (pts + (xy 202.057 129.286) (xy 194.818 129.286) + ) + (stroke + (width 0) + (type default) + ) + (uuid "59ccd0c5-a35c-45dc-9bc2-eba23f15622e") + ) + (wire + (pts + (xy 253.873 112.395) (xy 253.873 115.824) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5efcab19-a6ed-442b-8ed6-6e3ffcbdda84") + ) + (wire + (pts + (xy 229.235 108.204) (xy 238.633 108.204) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5f1f924f-790d-43e9-ba6a-74d8136e7c19") + ) + (wire + (pts + (xy 186.563 97.028) (xy 189.611 97.028) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6048650a-37fa-4862-ad7a-133c46216dbd") + ) + (wire + (pts + (xy 105.791 78.486) (xy 117.221 78.486) + ) + (stroke + (width 0) + (type default) + ) + (uuid "625f5351-dce7-4449-a6f6-9b5eb192ed13") + ) + (wire + (pts + (xy 210.058 112.395) (xy 210.058 115.824) + ) + (stroke + (width 0) + (type default) + ) + (uuid "632a6ad0-aecd-408b-a4ab-45770c2c0c27") + ) + (wire + (pts + (xy 43.307 64.389) (xy 39.878 64.389) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6bf20f87-15f1-48e0-a06e-53b5b98e4af7") + ) + (wire + (pts + (xy 44.958 91.948) (xy 50.038 91.948) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6cab717a-6c3c-4306-9a8c-8c3296b8b522") + ) + (wire + (pts + (xy 229.235 115.824) (xy 232.537 115.824) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6d15cd5f-cbb5-4017-b8c5-c7a6cd597535") + ) + (wire + (pts + (xy 41.656 170.815) (xy 45.085 170.815) + ) + (stroke + (width 0) + (type default) + ) + (uuid "73e0b0c9-26aa-4912-8ff5-24ea6e0264b4") + ) + (wire + (pts + (xy 89.789 45.974) (xy 95.123 45.974) + ) + (stroke + (width 0) + (type default) + ) + (uuid "7b1f69ab-3309-407c-b7bb-5dc28196f54c") + ) + (wire + (pts + (xy 261.493 109.601) (xy 261.493 107.315) + ) + (stroke + (width 0) + (type default) + ) + (uuid "7b6dc3c7-3977-4534-a0fa-0f542e14cd7d") + ) + (wire + (pts + (xy 37.338 91.948) (xy 35.306 91.948) + ) + (stroke + (width 0) + (type default) + ) + (uuid "7c060d77-5709-47bf-8d6b-d1213b30daf7") + ) + (wire + (pts + (xy 209.677 129.286) (xy 210.058 129.286) + ) + (stroke + (width 0) + (type default) + ) + (uuid "7c67c6d6-0d82-45b5-b6d0-1ef4f776776d") + ) + (wire + (pts + (xy 276.733 114.681) (xy 277.749 114.681) + ) + (stroke + (width 0) + (type default) + ) + (uuid "813bbe41-0503-4e7c-b898-7c09dfb757ab") + ) + (wire + (pts + (xy 32.512 34.798) (xy 45.466 34.798) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8b5d68ba-ae4b-432a-9bb2-906df32448e1") + ) + (wire + (pts + (xy 202.438 109.601) (xy 202.438 107.315) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8d23173d-d262-48b2-99c3-0eaf30f158d0") + ) + (wire + (pts + (xy 210.058 94.488) (xy 211.963 94.488) + ) + (stroke + (width 0) + (type default) + ) + (uuid "926c3073-9beb-4274-81ee-84b6f2ff1f9a") + ) + (wire + (pts + (xy 121.031 53.721) (xy 129.794 53.721) + ) + (stroke + (width 0) + (type default) + ) + (uuid "94f1444a-3ef0-4de3-a233-d6de4c3189e3") + ) + (wire + (pts + (xy 194.818 116.459) (xy 194.818 119.761) + ) + (stroke + (width 0) + (type default) + ) + (uuid "955842a7-7717-42dd-be70-7239b05c90a1") + ) + (wire + (pts + (xy 138.049 61.341) (xy 146.431 61.341) + ) + (stroke + (width 0) + (type default) + ) + (uuid "958e84cc-805b-46d4-a90a-eab59fc95524") + ) + (wire + (pts + (xy 28.448 103.378) (xy 30.988 103.378) + ) + (stroke + (width 0) + (type default) + ) + (uuid "95ee444b-9c5f-4571-9ceb-cbed842b698d") + ) + (wire + (pts + (xy 42.926 88.646) (xy 46.355 88.646) + ) + (stroke + (width 0) + (type default) + ) + (uuid "96d28969-40e1-44d8-98c6-1d2b56517da4") + ) + (wire + (pts + (xy 111.379 176.276) (xy 118.999 176.276) + ) + (stroke + (width 0) + (type default) + ) + (uuid "970b2561-3bee-4b73-9e1d-5f819dc3e045") + ) + (wire + (pts + (xy 129.794 53.721) (xy 138.049 53.721) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9853ddef-49eb-442b-b6b3-17e8c34e5560") + ) + (wire + (pts + (xy 255.143 129.286) (xy 253.873 129.286) + ) + (stroke + (width 0) + (type default) + ) + (uuid "99ef87db-4c39-480a-be31-93d70438d996") + ) + (wire + (pts + (xy 50.8071 88.646) (xy 53.594 88.646) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9a13ff8a-4218-42d1-9fcf-710692c05916") + ) + (wire + (pts + (xy 118.999 176.276) (xy 118.999 179.832) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ac2a53a2-9a5c-471e-9ecb-044856058cc5") + ) + (wire + (pts + (xy 235.077 115.824) (xy 238.633 115.824) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b0805483-704f-4988-a120-327ad892d71b") + ) + (wire + (pts + (xy 29.21 139.573) (xy 36.83 139.573) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b2e6b54b-4ab4-4076-a76c-d208a324b5bd") + ) + (wire + (pts + (xy 276.733 116.459) (xy 269.113 116.459) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b3fb4a8e-9e04-444b-a89a-3134d3de06e2") + ) + (wire + (pts + (xy 269.113 129.286) (xy 269.113 124.206) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b58648f9-208a-4756-a3d8-5d9f08dd2f4e") + ) + (wire + (pts + (xy 253.873 102.108) (xy 253.873 102.235) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b5ae1fb2-b41f-4529-8118-8f6de9577ab3") + ) + (wire + (pts + (xy 187.198 118.491) (xy 187.198 124.206) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b7345348-87ea-4f67-a259-0a5c53f5f776") + ) + (wire + (pts + (xy 210.058 102.108) (xy 210.058 102.235) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b7645524-bd05-4ad8-98f2-1b8f78cd8efb") + ) + (wire + (pts + (xy 53.594 96.266) (xy 57.912 96.266) + ) + (stroke + (width 0) + (type default) + ) + (uuid "bc3eba17-ae75-4ac5-a7b2-afccd5693c4b") + ) + (wire + (pts + (xy 28.448 91.948) (xy 28.448 103.378) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c31d0199-4938-4dec-95fc-83bd318a1609") + ) + (wire + (pts + (xy 269.113 116.459) (xy 269.113 119.761) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c5256a31-8e7a-4aff-a99f-270dc2d3ffdd") + ) + (wire + (pts + (xy 53.594 88.646) (xy 57.912 88.646) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c539c5e9-040d-409c-b9ee-cf5ef2e59c54") + ) + (wire + (pts + (xy 135.001 144.526) (xy 137.541 144.526) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c8d743c5-694b-46d0-8350-ae354c476cfb") + ) + (wire + (pts + (xy 115.189 166.116) (xy 115.189 173.736) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c9d78894-6b3a-4b72-bc55-614d1f2b8bf0") + ) + (wire + (pts + (xy 46.355 88.646) (xy 50.8071 88.646) + ) + (stroke + (width 0) + (type default) + ) + (uuid "cd9cf484-8ddd-41b2-9854-bf507882524e") + ) + (wire + (pts + (xy 261.493 99.695) (xy 253.873 99.695) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ce8a033f-f3d4-4d96-a516-cd06fd53c080") + ) + (wire + (pts + (xy 194.818 129.286) (xy 194.818 124.206) + ) + (stroke + (width 0) + (type default) + ) + (uuid "cfa0def0-c6c9-41dd-aa08-5ca9a44d34ef") + ) + (wire + (pts + (xy 93.599 43.434) (xy 95.123 43.434) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d41a0c64-40eb-42e2-9173-9b40915bc1ad") + ) + (wire + (pts + (xy 253.873 115.824) (xy 253.873 119.126) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d5e11bbc-c581-4173-b74d-4a829150ca0f") + ) + (wire + (pts + (xy 238.633 115.824) (xy 240.665 115.824) + ) + (stroke + (width 0) + (type default) + ) + (uuid "db7af0bb-f02d-41b4-9eda-981f26e759b0") + ) + (wire + (pts + (xy 210.058 115.824) (xy 225.425 115.824) + ) + (stroke + (width 0) + (type default) + ) + (uuid "dc3eeaff-3306-45da-9be5-ea79ec0da308") + ) + (wire + (pts + (xy 36.83 139.573) (xy 44.45 139.573) + ) + (stroke + (width 0) + (type default) + ) + (uuid "de6a9bac-3162-4761-876c-1076649ac160") + ) + (wire + (pts + (xy 132.461 144.526) (xy 133.731 144.526) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e4be9c35-1408-4407-8c13-f70a96661b95") + ) + (wire + (pts + (xy 35.306 91.948) (xy 28.448 91.948) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e75b9d6c-a134-4ba5-89e9-29a59ae4ec80") + ) + (wire + (pts + (xy 125.222 19.939) (xy 127.127 19.939) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ec5475ad-f6f4-46bb-8167-8fa12a84165c") + ) + (wire + (pts + (xy 187.198 116.459) (xy 194.818 116.459) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ed3f42a3-72c1-4631-8403-445a05910c37") + ) + (wire + (pts + (xy 27.305 113.538) (xy 30.988 113.538) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f0e4c757-5463-4f1f-9469-6f752add662a") + ) + (wire + (pts + (xy 115.189 173.736) (xy 111.379 173.736) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f10a3685-30d1-4dd2-b8f1-e760a41efb85") + ) + (wire + (pts + (xy 276.733 118.491) (xy 276.733 124.206) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f133d506-295f-4826-a3ab-8f4509a3a42d") + ) + (wire + (pts + (xy 189.611 97.028) (xy 192.278 97.028) + ) + (stroke + (width 0) + (type default) + ) + (uuid "fc9c41a5-74f9-46f5-96a1-b0ae78e27752") + ) + (rectangle + (start 20.701 18.796) + (end 67.056 144.653) + (stroke + (width 0) + (type dash) + ) + (fill + (type none) + ) + (uuid 4abc0973-8f80-494e-83d9-6e69ac14bd71) + ) + (rectangle + (start 76.835 14.478) + (end 106.426 54.483) + (stroke + (width 0) + (type dash) + ) + (fill + (type none) + ) + (uuid 6a6ed6df-6d29-4536-8291-f8c58ec1fa01) + ) + (rectangle + (start 99.06 155.321) + (end 139.319 192.405) + (stroke + (width 0) + (type dash) + ) + (fill + (type none) + ) + (uuid 898c0133-ff64-420d-a0c8-29f7988e993f) + ) + (rectangle + (start 59.69 163.322) + (end 92.583 183.388) + (stroke + (width 0) + (type dash) + ) + (fill + (type none) + ) + (uuid 96c5d968-2217-476f-861a-adfcfedb6724) + ) + (rectangle + (start 24.638 160.02) + (end 53.721 181.737) + (stroke + (width 0) + (type dash) + ) + (fill + (type none) + ) + (uuid bc2df5f4-07d8-4282-ae74-82ff9e507e14) + ) + (text "Control by car windows\nmanage system" + (exclude_from_sim no) + (at 102.235 162.941 0) + (effects + (font + (size 2 2) + ) + (justify left bottom) + ) + (uuid "1a53cc86-b271-4497-8366-fa9d4cc73612") + ) + (text "Hall sensors" + (exclude_from_sim no) + (at 27.94 163.576 0) + (effects + (font + (size 2.0066 2.0066) + ) + (justify left bottom) + ) + (uuid "2bf6369f-95ca-40c6-97dc-a61363567f08") + ) + (text "Connect motor so that (2) of J3\nis positive when window goes up!!!" + (exclude_from_sim no) + (at 212.344 143.764 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "40d8ae1a-7fbd-4c92-8fdf-b445af79940b") + ) + (text "Control by simplest\nbuttons" + (exclude_from_sim no) + (at 61.214 171.069 0) + (effects + (font + (size 2 2) + ) + (justify left bottom) + ) + (uuid "6cf216b7-527a-4af8-bdbd-a380149893b0") + ) + (text "Terminal on/off" + (exclude_from_sim no) + (at 236.093 69.977 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "7963bcba-8242-4c88-8d4a-dd202dc15c50") + ) + (text "Program &\nconfigure" + (exclude_from_sim no) + (at 83.947 23.114 0) + (effects + (font + (size 2 2) + ) + (justify left bottom) + ) + (uuid "8ba6f5d6-7ee2-4f05-89eb-8daf5035b1a3") + ) + (text "Power" + (exclude_from_sim no) + (at 37.084 23.876 0) + (effects + (font + (size 2.54 2.54) + ) + (justify left bottom) + ) + (uuid "b1ba27dd-6b6c-4680-a1f6-5f75707304fa") + ) + (text "Заменить на HC-49" + (exclude_from_sim no) + (at 141.859 14.859 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "ba1d8e43-d20d-4764-b862-fc86b0c11716") + ) + (text "5W" + (exclude_from_sim no) + (at 212.725 99.695 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "c4faca53-b5af-4472-a929-8850ef49c2a2") + ) + (label "OSC_OUT" + (at 117.221 86.106 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "00b86c96-cd43-4a87-8d08-911400ca7e2f") + ) + (label "OSC_IN" + (at 125.222 19.939 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "04f9e798-8a06-419d-bc1a-02a359ee3695") + ) + (label "HOT@On" + (at 32.512 37.338 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "0b5ec417-7880-4cd6-9766-94f52f9b56a5") + ) + (label "DOWN_DIR" + (at 126.619 179.832 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "0fb8d8eb-15b4-49f8-9e3f-96ce80a7c940") + ) + (label "DOWN_SW" + (at 34.036 173.355 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "116455d0-3885-44d9-9d77-a32013b8ea2f") + ) + (label "SWCLK" + (at 95.123 38.354 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "141c720d-bee6-4fb1-ae61-01469c119d97") + ) + (label "UP_SW" + (at 150.241 131.826 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "1734a881-eb44-4b57-ae5f-8b2719d95863") + ) + (label "BOOT0" + (at 117.221 78.486 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "1ef0c2ce-6722-44bd-bb5f-688434289722") + ) + (label "CAN_Rx" + (at 250.444 34.671 180) + (fields_autoplaced yes) + (effects + (font + (size 1.524 1.524) + ) + (justify right bottom) + ) + (uuid "1fb8aabd-e4f0-4697-b1f3-145062eb7313") + ) + (label "SWDIO" + (at 95.123 40.894 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "23931abb-751d-4dc9-8a52-d0a8c7d9cf05") + ) + (label "UP_DIR" + (at 122.809 166.116 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "26717b99-6e3b-4899-b8f6-e77036e6fb46") + ) + (label "OSC_OUT" + (at 136.652 19.939 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "27ae4202-4266-41d1-b46e-d6ef1b11e6fa") + ) + (label "Power_EN" + (at 150.241 103.886 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "2bc925ac-08f7-472c-94d3-e81cf43e6fdd") + ) + (label "NRST" + (at 117.221 73.406 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "2db2c245-6481-4e0f-a4a9-d307f8eb4cdd") + ) + (label "CAN_Tx" + (at 250.444 32.131 180) + (fields_autoplaced yes) + (effects + (font + (size 1.524 1.524) + ) + (justify right bottom) + ) + (uuid "37194176-570d-4c7e-a46c-d82d0e2ecd2e") + ) + (label "UP_DIR" + (at 117.221 131.826 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "37ac4294-be85-4536-ae1d-0a3b3f7fdfe6") + ) + (label "Power_EN" + (at 39.878 72.009 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "3c2af804-d8d8-44e8-bcdb-1b26ba24d06b") + ) + (label "HOT@Always" + (at 32.512 34.798 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "3c924bcd-eb78-447c-87e1-39945b16997d") + ) + (label "L_DOWN" + (at 187.198 118.491 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "3f127e0c-635f-4f3e-8c6f-9c37814dc8c7") + ) + (label "CAN_Rx" + (at 117.221 121.666 180) + (fields_autoplaced yes) + (effects + (font + (size 1.524 1.524) + ) + (justify right bottom) + ) + (uuid "4b3125ce-b71e-4e2a-ad73-d55d9252fe10") + ) + (label "L_UP" + (at 150.241 106.426 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "4da5b4db-93bb-4b76-8d8a-5d75f2e6f6a6") + ) + (label "Vsen" + (at 150.241 101.346 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "5015a96b-8b02-4670-b224-fa3a8484fd13") + ) + (label "Tx" + (at 91.059 26.797 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "523e051e-184b-40b7-a047-f869d1c87b66") + ) + (label "DOWN_BTN" + (at 117.221 139.446 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "54d2631a-8fcd-49ff-aac0-6b7d7779a92b") + ) + (label "R_UP" + (at 277.749 114.681 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "55d865af-37ad-4c70-9d61-9290eb2e0589") + ) + (label "DOWN_DIR" + (at 117.221 134.366 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "5b36a0ca-bf92-476d-a14f-6feaf255eeb4") + ) + (label "R_DOWN" + (at 150.241 116.586 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "5c32ac0e-8dda-4674-a86b-5e5e186a30e5") + ) + (label "VEN" + (at 50.038 103.378 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "5c909ea7-220f-4c72-aa97-9e6af46260b2") + ) + (label "DOWN_BTN" + (at 70.866 174.371 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "637928a8-4add-41eb-b8cb-8481d7d2de3c") + ) + (label "UP_SW" + (at 34.036 170.815 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "67905607-21a5-4eaf-b78c-f358b053f32b") + ) + (label "NRST" + (at 95.123 51.054 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "67a3c558-b00b-45be-8ff3-6645b20160c7") + ) + (label "BOOT0" + (at 95.123 48.514 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "71588455-f8df-4f20-8070-8da158030b14") + ) + (label "HOT@On" + (at 32.258 56.769 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "71d25d92-d4af-4631-a579-0b6c15308624") + ) + (label "CANH" + (at 274.447 58.293 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "76ebe9de-26f7-4085-8fb9-6f88dc8c0d09") + ) + (label "R_DOWN" + (at 276.733 118.491 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "779fbcf1-666c-43a7-9e5e-d4e978cd90c9") + ) + (label "DOWN_SW" + (at 150.241 129.286 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "84bb7c22-15d9-40e9-a94c-ac316d31593c") + ) + (label "CAN_Tx" + (at 117.221 124.206 180) + (fields_autoplaced yes) + (effects + (font + (size 1.524 1.524) + ) + (justify right bottom) + ) + (uuid "8e922546-3e5a-468f-8f1f-940d626072bb") + ) + (label "CANL" + (at 274.447 55.753 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "936c0335-bbc5-4634-a44e-57865c43e79d") + ) + (label "Rx" + (at 91.059 29.337 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "95afd79d-b6b3-41bf-aeb4-3e1c2914d188") + ) + (label "VEN" + (at 47.244 64.389 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "95afe001-c514-431f-abdf-798adc1e500e") + ) + (label "UP_BTN" + (at 70.866 176.911 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "9c4aae88-1d7d-40c3-b871-fec2a817169f") + ) + (label "L_UP" + (at 185.928 114.681 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "a7a42d34-e62e-42fe-82e2-0250d4134a16") + ) + (label "CANL" + (at 260.604 54.356 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "b0b10d6a-f3b0-4b50-a699-404b5c81e0e7") + ) + (label "CANH" + (at 248.158 56.896 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "b20999f6-f5da-417a-9865-8483a60c4118") + ) + (label "Rx" + (at 150.241 126.746 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "bd7eaaf4-f90c-4764-9959-83e010f43a8d") + ) + (label "SWDIO" + (at 150.241 134.366 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "be3875af-ea41-4a30-8ef9-b8093bce4dd5") + ) + (label "R_UP" + (at 150.241 108.966 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "c56e9923-6869-43e5-b6f7-666be8c87ae3") + ) + (label "Vsen" + (at 178.943 97.028 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "c63ee787-b8f9-443e-b444-c58e92f3ec0d") + ) + (label "CANL" + (at 240.538 64.516 90) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "c6fec31a-0a1e-409c-a2d3-65669a0de1f0") + ) + (label "OSC_IN" + (at 117.221 83.566 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "c9213228-d0db-4791-9af3-af64e7f36f3f") + ) + (label "CANH" + (at 255.524 54.356 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "db99707d-0375-481a-a6fb-b6ca5937f888") + ) + (label "Tx" + (at 150.241 124.206 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "e28d9989-6000-49c5-b174-6d75f2e1f996") + ) + (label "CANH" + (at 275.844 34.671 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "e95f3f91-408b-4489-8fbf-c967eaf40c74") + ) + (label "L_DOWN" + (at 150.241 119.126 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "ee5b3794-e44a-42ee-b5c5-8c926e3a1696") + ) + (label "CANL" + (at 275.844 39.751 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "f27fb8fb-b694-4c08-94ce-dc16a09e4052") + ) + (label "SWCLK" + (at 150.241 136.906 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "f9cc7d8d-e7d0-4c0c-875d-d0a6ffdb8170") + ) + (label "UP_BTN" + (at 117.221 136.906 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "fd0a902f-7e40-4380-80d5-576a791f5beb") + ) + (symbol + (lib_name "GND_3") + (lib_id "power:GND") + (at 261.493 119.761 0) + (mirror y) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "00fb8df9-b85e-4ad1-a7b8-3eb591fe72cb") + (property "Reference" "#PWR044" + (at 261.493 126.111 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 261.493 123.706 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 261.493 119.761 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 261.493 119.761 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 261.493 119.761 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "08700ad6-497d-46bf-a472-d8c76e25cf9f") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "#PWR044") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:PWR_FLAG") + (at 26.162 105.918 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "01785f27-eb8d-4950-9720-9eeac3e39ed2") + (property "Reference" "#FLG01" + (at 24.257 105.918 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "PWR_FLAG" + (at 22.217 105.918 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 26.162 105.918 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 26.162 105.918 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 26.162 105.918 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "24d99fca-1c0f-49c2-9430-f25a7b1a1441") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "#FLG01") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_name "GND_3") + (lib_id "power:GND") + (at 32.512 39.878 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "05f129b7-eb4f-471a-b7d6-637e14241795") + (property "Reference" "#PWR06" + (at 32.512 46.228 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 32.512 43.823 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 32.512 39.878 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 32.512 39.878 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 32.512 39.878 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "ec4dca86-6c8e-4b92-b781-c375d3f76cb2") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "#PWR06") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_name "GND_3") + (lib_id "power:GND") + (at 45.085 175.895 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "067058ea-c24d-48d9-8d12-acd4071a16a3") + (property "Reference" "#PWR09" + (at 45.085 182.245 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 45.085 179.84 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 45.085 175.895 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 45.085 175.895 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 45.085 175.895 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "e4c0121d-c7f7-48d2-ba2c-fbb52601b79f") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "#PWR09") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 57.912 92.456 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "069c60ee-3b02-4b2d-ac7e-e05693a8179c") + (property "Reference" "C6" + (at 58.674 90.424 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "22" + (at 58.674 94.996 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" + (at 58.8772 96.266 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 57.912 92.456 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 57.912 92.456 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "5e54560b-d301-41d6-85eb-e2d8c7dd9ab9") + ) + (pin "2" + (uuid "a44c1770-9f64-43b0-b029-b3277814bbe9") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "C6") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_name "GND_3") + (lib_id "power:GND") + (at 125.222 27.559 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "08b1fcc2-956e-41fe-be4f-61178a24234f") + (property "Reference" "#PWR022" + (at 125.222 33.909 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 125.222 31.504 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 125.222 27.559 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 125.222 27.559 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 125.222 27.559 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "de636779-851b-4abf-b1f6-cf631207ee62") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "#PWR022") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 74.676 174.371 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "0b8eac93-733e-4d0c-acf8-31efe8dab991") + (property "Reference" "R8" + (at 73.152 172.212 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100" + (at 73.152 174.371 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (at 74.676 172.593 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 74.676 174.371 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 74.676 174.371 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "889e9db5-3542-4420-b34a-ac16812cf4ec") + ) + (pin "2" + (uuid "64445d28-e5f3-45d7-b1ce-c4a0466d8cbe") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "R8") + (unit 1) + ) + ) + (project "stm32" + (path "/1ec6f7b4-f573-4ec7-9f09-903dcf29773c" + (reference "R23") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 211.963 98.298 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "0c7fee8d-333c-4847-9a86-c6aaf2cd04e4") + (property "Reference" "R20" + (at 213.741 97.274 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "0.05" + (at 213.741 99.322 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_THT:R_Box_L14.0mm_W5.0mm_P9.00mm" + (at 210.185 98.298 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 211.963 98.298 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 211.963 98.298 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "35dcf42d-3543-4168-9611-7aedc357d51e") + ) + (pin "2" + (uuid "e6cb5830-925e-47f3-aa56-9459d35c7257") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "R20") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_name "GND_3") + (lib_id "power:GND") + (at 126.619 187.452 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "0f34c8cf-18d5-4cc0-97c2-91c877e69695") + (property "Reference" "#PWR023" + (at 126.619 193.802 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 126.619 191.397 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 126.619 187.452 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 126.619 187.452 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 126.619 187.452 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "dc9978b3-0a51-44b9-852c-de0499b41153") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "#PWR023") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 248.158 60.706 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "0fa0b0c7-7679-4ad5-959a-2982a59300e4") + (property "Reference" "R21" + (at 243.205 60.706 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "120" + (at 248.158 62.23 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_1210_3225Metric_Pad1.30x2.65mm_HandSolder" + (at 246.38 60.706 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 248.158 60.706 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 248.158 60.706 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "b7d85d50-2e2f-4fec-a666-254f5d2fce91") + ) + (pin "2" + (uuid "650d3e82-b375-404f-9af8-979fcb0e61ea") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "R21") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:TestPoint") + (at 51.816 42.418 180) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "10676098-9c4c-4af0-a728-3b6a6a5f1707") + (property "Reference" "TP7" + (at 50.419 46.744 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Value" "Gnd" + (at 53.848 47.625 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "TestPoint:TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded" + (at 46.736 42.418 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 46.736 42.418 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 51.816 42.418 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "6c3b1d7b-bd2c-4b60-bf51-1d0536715f10") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "TP7") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_name "GND_3") + (lib_id "power:GND") + (at 202.438 119.761 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "11079225-4d18-42bd-ab3c-411fbb9f212c") + (property "Reference" "#PWR032" + (at 202.438 126.111 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 202.438 123.706 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 202.438 119.761 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 202.438 119.761 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 202.438 119.761 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "66597b81-eb8e-4c97-9150-3db4feda02e2") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "#PWR032") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:D") + (at 36.068 64.389 180) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "114a9849-5e07-4cae-81ad-420c30c66ef7") + (property "Reference" "D1" + (at 37.719 59.69 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "1N5819" + (at 37.846 61.595 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" + (at 36.068 64.389 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 36.068 64.389 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 36.068 64.389 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Sim.Device" "D" + (at 36.068 64.389 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Sim.Pins" "1=K 2=A" + (at 36.068 64.389 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "8db07ac3-61d2-406f-b389-66cffabdc3e2") + ) + (pin "2" + (uuid "01d6d0f3-ece0-41c8-acdf-f55e311e02a6") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "D1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_name "GND_3") + (lib_id "power:GND") + (at 189.611 104.648 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "1359a728-33e8-418c-b69c-26c53b00fb34") + (property "Reference" "#PWR030" + (at 189.611 110.998 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 189.611 108.593 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 189.611 104.648 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 189.611 104.648 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 189.611 104.648 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "8f60cf5e-fa09-4830-9a5f-128528a347bb") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "#PWR030") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 32.258 68.199 180) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "17364d81-b838-484a-add9-55202307e226") + (property "Reference" "R2" + (at 35.433 67.691 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "100k" + (at 32.258 67.945 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (at 34.036 68.199 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 32.258 68.199 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 32.258 68.199 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "562ac199-5b94-461c-8dd9-0e86ebd10ded") + ) + (pin "2" + (uuid "8e8721f3-0a0d-442f-8438-ae9aaa3f146d") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "R2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+5V") + (at 263.144 27.051 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "18a752cb-e6ec-4c82-8782-5208e5e75d21") + (property "Reference" "#PWR014" + (at 263.144 30.861 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+5V" + (at 263.144 23.106 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 263.144 27.051 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 263.144 27.051 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 263.144 27.051 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "d2d3292e-a403-44d2-81b9-101c3b8f5dec") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "#PWR014") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Jumper:SolderJumper_2_Open") + (at 244.348 64.516 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "19703c99-93cd-42bd-a514-95881437d720") + (property "Reference" "JP1" + (at 244.348 67.056 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Term" + (at 244.348 62.095 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Open_TrianglePad1.0x1.5mm" + (at 244.348 64.516 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 244.348 64.516 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 244.348 64.516 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "620b96f1-a59c-40a0-bbeb-50fef367acb3") + ) + (pin "2" + (uuid "99788f6e-f463-4288-9e0c-dc66d4d497ba") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "JP1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:Conn_01x03_Pin") + (at 96.139 29.337 180) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "1bcf9c92-e28f-4301-aa01-20096e3417da") + (property "Reference" "J4" + (at 96.8502 28.313 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "UART" + (at 96.8502 30.361 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "Connector_PinSocket_2.54mm:PinSocket_1x03_P2.54mm_Vertical" + (at 96.139 29.337 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 96.139 29.337 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 96.139 29.337 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "51f71288-4a1c-4f8e-8f04-5c1f93158a01") + ) + (pin "2" + (uuid "fb06cac1-1524-4476-ae81-faaad46f0cbd") + ) + (pin "3" + (uuid "f68e8702-67dc-44c1-b9cc-75b2007782d1") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "J4") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 41.148 91.948 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "2135eb5e-a491-44ed-9e01-efbcf9715412") + (property "Reference" "C3" + (at 44.323 90.297 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "1u" + (at 43.688 93.218 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" + (at 44.958 90.9828 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 41.148 91.948 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 41.148 91.948 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "a1d73ba8-8508-4417-8c70-2912b0763248") + ) + (pin "2" + (uuid "1237e6a7-9f3f-473a-a342-9769a5f1f993") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "C3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:TestPoint") + (at 46.736 131.953 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "21e8e784-612e-4640-aee1-3042d238a077") + (property "Reference" "TP5" + (at 51.062 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Value" "3V3" + (at 51.943 130.556 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "TestPoint:TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded" + (at 46.736 137.033 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 46.736 137.033 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 46.736 131.953 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "91cab07d-ad89-46ce-a361-4bfca037f661") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "TP5") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:Conn_01x04_Pin") + (at 50.165 170.815 0) + (mirror y) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "22803ca7-6f57-46e0-b742-ee15eb046870") + (property "Reference" "J2" + (at 51.816 170.688 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Hall" + (at 50.419 177.419 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Connector_JST:JST_PH_B4B-PH-K_1x04_P2.00mm_Vertical" + (at 50.165 170.815 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 50.165 170.815 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 50.165 170.815 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "5312ad12-b19d-40ba-a3dc-86207a8533db") + ) + (pin "2" + (uuid "cca961da-4408-4ab0-886c-3da0de10ce20") + ) + (pin "3" + (uuid "99e35d7f-a829-4c8c-8dbe-765a32ba7d11") + ) + (pin "4" + (uuid "98007fe8-744a-4e04-811e-2968540af691") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "J2") + (unit 1) + ) + ) + (project "stm32" + (path "/1ec6f7b4-f573-4ec7-9f09-903dcf29773c" + (reference "J9") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:D") + (at 225.425 119.634 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "24d6f82c-2e62-4d47-9d97-379df441a496") + (property "Reference" "D9" + (at 227.457 118.2925 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "1N4007" + (at 223.012 115.697 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Diode_SMD:D_SMA_Handsoldering" + (at 225.425 119.634 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 225.425 119.634 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 225.425 119.634 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Sim.Device" "D" + (at 225.425 119.634 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Sim.Pins" "1=K 2=A" + (at 225.425 119.634 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "75792bea-d6b7-41c3-b05f-44092af4d3aa") + ) + (pin "2" + (uuid "6fe9b3f6-bd30-43fe-9474-e47d7b1dcc78") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "D9") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_name "GND_3") + (lib_id "power:GND") + (at 50.038 113.538 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "29f1843d-234c-4f24-bece-714c514fb403") + (property "Reference" "#PWR013" + (at 50.038 119.888 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 50.038 117.483 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 50.038 113.538 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 50.038 113.538 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 50.038 113.538 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "2c59e716-8b84-405e-98c5-f6aa3f117974") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "#PWR013") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:Conn_01x02_Pin") + (at 279.527 58.293 180) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "2aabb44e-9449-40ff-ab5f-46c9a6e225b6") + (property "Reference" "J8" + (at 281.6098 52.3748 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "CAN" + (at 280.67 60.198 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Connector_JST:JST_PH_B2B-PH-K_1x02_P2.00mm_Vertical" + (at 279.527 58.293 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 279.527 58.293 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 279.527 58.293 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "3e48aabf-3b1e-454b-aee1-9ea84dfa8fe5") + ) + (pin "2" + (uuid "c27e1fee-116f-44af-8d03-808d060660d2") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "J8") + (unit 1) + ) + ) + (project "stm32" + (path "/f40cbe7e-cd25-45e5-a6cb-d92457495048" + (reference "J12") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_name "GND_3") + (lib_id "power:GND") + (at 57.912 81.026 180) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "2adb46a5-7eed-4c7a-a9c3-6619ea5332ab") + (property "Reference" "#PWR015" + (at 57.912 74.676 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 57.912 77.081 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 57.912 81.026 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 57.912 81.026 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 57.912 81.026 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "659bb1ae-6aa1-496a-bcf7-bb8f7bae8efd") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "#PWR015") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_name "GND_3") + (lib_id "power:GND") + (at 250.444 42.291 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "2cd00ad1-f5c4-4755-b4a7-6ae89f22a389") + (property "Reference" "#PWR039" + (at 250.444 48.641 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 250.444 46.236 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 250.444 42.291 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 250.444 42.291 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 250.444 42.291 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "c391dd06-4eb4-4ad0-9c1d-01adfba01cdd") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "#PWR039") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+12V") + (at 194.818 107.315 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "2cf10a71-52e4-487e-a044-df0ff7202a65") + (property "Reference" "#PWR031" + (at 194.818 111.125 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+12V" + (at 193.929 103.632 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 194.818 107.315 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 194.818 107.315 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 194.818 107.315 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "922b61c4-126c-427d-9dd3-80fc23ebca27") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "#PWR031") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 205.867 129.286 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "2f12e7c2-219f-416a-bbee-2bbdd41dfc34") + (property "Reference" "R19" + (at 205.74 127.2286 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "10k" + (at 205.613 129.286 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (at 205.867 127.508 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 205.867 129.286 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 205.867 129.286 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "82219b94-fae9-44e9-8b86-8573db6d3e7b") + ) + (pin "2" + (uuid "a5975459-a22e-4464-b2f5-c3dff2fef8b7") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "R19") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:Q_PMOS_GDS") + (at 256.413 107.315 180) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "2f757bfd-4ac7-433b-ab5b-f2b0a45a23eb") + (property "Reference" "Q4" + (at 251.206 108.339 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "AOD4185" + (at 251.841 105.791 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:TO-252-3_TabPin2" + (at 251.333 109.855 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 256.413 107.315 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 256.413 107.315 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "ef5c0fda-93e3-4629-a5c3-49061c4da58b") + ) + (pin "2" + (uuid "c4e23e71-553c-4496-99cb-fd5755a87987") + ) + (pin "3" + (uuid "dd39ef96-2024-43cf-a681-e6c2b3b283c4") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "Q4") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 32.258 60.579 180) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "32429e25-097b-48cf-b4db-d64650cf837d") + (property "Reference" "R1" + (at 29.21 60.579 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "300k" + (at 32.258 60.325 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (at 34.036 60.579 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 32.258 60.579 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 32.258 60.579 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "97d2290b-a8b3-42a4-8638-a46733a6bfb7") + ) + (pin "2" + (uuid "a6e15c39-45fd-46ec-91e2-b1b3ec176546") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "R1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "ZXCT1009:ZXCT1009") + (at 201.168 97.028 180) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "3671fd88-84f3-4f3a-909e-cde8c8f599fa") + (property "Reference" "U4" + (at 201.168 87.0265 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "ZXCT1009" + (at 201.168 89.0745 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23_Handsoldering" + (at 201.168 97.028 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 201.168 97.028 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 201.168 97.028 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "3e39c92e-cb3d-4af3-a636-c854209601d8") + ) + (pin "2" + (uuid "ecee838c-cf71-4a10-8d75-83c5e76e072e") + ) + (pin "3" + (uuid "a12fcd24-3d3a-46e4-9a5c-8f692267cce1") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "U4") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_name "GND_3") + (lib_id "power:GND") + (at 36.83 139.573 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "3677766e-2088-4685-9f25-5fe0d3e2adaf") + (property "Reference" "#PWR08" + (at 36.83 145.923 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 36.83 143.518 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 36.83 139.573 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 36.83 139.573 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 36.83 139.573 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "19fb8a47-31d9-4a03-b2a8-2f5e8a93686d") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "#PWR08") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 198.628 119.761 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "374a9243-c0ae-42b3-927b-8a62be5d5888") + (property "Reference" "R26" + (at 197.612 117.729 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "10k" + (at 198.374 119.761 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (at 198.628 117.983 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 198.628 119.761 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 198.628 119.761 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "2b4d2ff9-463e-4a19-ab3f-56a4d2ced759") + ) + (pin "2" + (uuid "31c480a4-bda8-4655-bca8-6c4420e6b56c") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "R26") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_name "GND_3") + (lib_id "power:GND") + (at 122.809 173.736 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "38ccec34-63b6-4ffb-a484-66feea6f519b") + (property "Reference" "#PWR021" + (at 122.809 180.086 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 122.809 177.681 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 122.809 173.736 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 122.809 173.736 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 122.809 173.736 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "dd07faf2-c1fa-4a60-8a24-9d4aac2671a6") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "#PWR021") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:Crystal") + (at 130.937 19.939 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "3a4c0890-c42a-49b7-8297-824d30461a0a") + (property "Reference" "Y1" + (at 130.937 13.1318 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "NX5032GA-8MHz" + (at 130.937 15.4432 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Crystal:Crystal_SMD_5032-2Pin_5.0x3.2mm" + (at 130.937 19.939 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 130.937 19.939 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 130.937 19.939 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "1d038916-3822-4f17-9831-fa6f02c73cb5") + ) + (pin "2" + (uuid "7f15371e-920f-481f-8a4c-a5c2fe9b5467") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "Y1") + (unit 1) + ) + ) + (project "Canon_manage" + (path "/56438dee-19cd-4574-afb4-194a39bf2855" + (reference "Y1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 191.008 114.681 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "3abf9af0-d75b-46f1-8c44-608300f7651a") + (property "Reference" "R16" + (at 191.008 112.395 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "100" + (at 191.262 114.681 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (at 191.008 116.459 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 191.008 114.681 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 191.008 114.681 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "1a4260bf-9e62-4fdb-8809-388da53e5df7") + ) + (pin "2" + (uuid "18aca343-3e4b-430b-a46f-24a548dea588") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "R16") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+3V3") + (at 46.736 131.953 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "3b8b9707-3903-41d0-8f6a-aea6978fe1fb") + (property "Reference" "#PWR012" + (at 46.736 135.763 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+3V3" + (at 46.736 128.008 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 46.736 131.953 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 46.736 131.953 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 46.736 131.953 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "fac6553a-a2c8-4e5a-bc8a-cc729a2a9d2d") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "#PWR012") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_name "GND_3") + (lib_id "power:GND") + (at 258.064 72.136 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "3c6f818b-7c1b-4903-af85-191e2427fcce") + (property "Reference" "#PWR042" + (at 258.064 78.486 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 258.064 76.081 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 258.064 72.136 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 258.064 72.136 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 258.064 72.136 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "fe709a34-7a92-4502-8f82-481a96da661e") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "#PWR042") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+5V") + (at 257.556 22.606 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "40625366-fca4-431a-ae6b-6e377d084962") + (property "Reference" "#PWR041" + (at 257.556 26.416 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+5V" + (at 257.556 18.661 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 257.556 22.606 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 257.556 22.606 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 257.556 22.606 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "74c49959-e134-41c0-b3aa-7adc2b1ea75b") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "#PWR041") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 138.049 57.531 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "40e246c7-0204-46de-878c-c8b852fd8ab9") + (property "Reference" "C11" + (at 140.97 56.507 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "0.1" + (at 140.97 58.555 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" + (at 139.0142 61.341 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 138.049 57.531 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 138.049 57.531 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "18c73562-9be9-4142-ac55-f0029802fe01") + ) + (pin "2" + (uuid "f2eeac5f-ad1b-4e6c-a0aa-4bbf200d23f6") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "C11") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 265.303 124.206 270) + (mirror x) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "40ff16c9-50c1-4217-b945-227fce8d08eb") + (property "Reference" "R24" + (at 265.176 126.492 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "220" + (at 265.049 124.206 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (at 265.303 125.984 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 265.303 124.206 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 265.303 124.206 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "69b7a2a3-d5f2-4e85-835f-7cfc923fe7ef") + ) + (pin "2" + (uuid "077e479c-c25f-4c79-85c4-fe657a9ca769") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "R24") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:Conn_01x03_Pin") + (at 83.566 176.911 0) + (mirror y) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "45b86bb5-ff85-46a7-bf12-14bf7cd69b36") + (property "Reference" "J3" + (at 84.2772 177.935 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "Buttons" + (at 84.2772 175.887 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "Connector_JST:JST_PH_B3B-PH-K_1x03_P2.00mm_Vertical" + (at 83.566 176.911 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 83.566 176.911 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 83.566 176.911 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "d2b3af4d-e84f-4774-8ad0-d55263764fdc") + ) + (pin "2" + (uuid "4907d405-a5ca-48cb-a00f-f3a7d88dbd7b") + ) + (pin "3" + (uuid "15f4a9b0-48fd-41a2-be94-b0d64f6dfe7a") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "J3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+3V3") + (at 129.794 53.721 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "493f4dcd-30bf-47b1-b079-ef26e2e2fe53") + (property "Reference" "#PWR024" + (at 129.794 57.531 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+3V3" + (at 129.794 49.776 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 129.794 53.721 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 129.794 53.721 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 129.794 53.721 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "ef70d27f-3c1e-4f5b-8916-d59b08c356b3") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "#PWR024") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+12V") + (at 229.235 108.204 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "49918dc0-f9c3-40ae-9fe9-76b6d1d8a223") + (property "Reference" "#PWR036" + (at 229.235 112.014 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+12V" + (at 228.346 104.521 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 229.235 108.204 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 229.235 108.204 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 229.235 108.204 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "21b78d15-a521-4da7-b6df-fcbf1ec5e076") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "#PWR036") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 37.846 168.275 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "4fa462cf-38f4-4f24-a861-47c311b9ed07") + (property "Reference" "R3" + (at 40.64 169.545 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "47" + (at 36.322 168.275 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (at 37.846 166.497 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 37.846 168.275 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 37.846 168.275 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "71a6908a-57d2-484c-b395-dca62e9ee31c") + ) + (pin "2" + (uuid "14174d7e-6616-498d-aba7-363ce89ae160") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "R3") + (unit 1) + ) + ) + (project "stm32" + (path "/1ec6f7b4-f573-4ec7-9f09-903dcf29773c" + (reference "R22") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+3V3") + (at 178.943 89.408 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "4ff614b1-2a15-49c9-8d06-7cbc79f2ea32") + (property "Reference" "#PWR029" + (at 178.943 93.218 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+3V3" + (at 178.943 85.463 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 178.943 89.408 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 178.943 89.408 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 178.943 89.408 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "f1ebddcf-9531-47c8-bced-02e97aba2641") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "#PWR029") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+12V") + (at 211.963 94.488 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "51dc3774-b935-4284-85be-45f3bfb0f03f") + (property "Reference" "#PWR034" + (at 211.963 98.298 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+12V" + (at 211.074 90.805 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 211.963 94.488 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 211.963 94.488 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 211.963 94.488 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "6a1f3671-7b04-4a63-a93a-162a71385539") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "#PWR034") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 85.979 45.974 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "541eb5c2-fd4d-4d27-971f-cd8ffab89be3") + (property "Reference" "R10" + (at 85.979 43.942 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "6.8" + (at 85.979 45.974 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (at 85.979 47.752 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 85.979 45.974 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 85.979 45.974 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "ab499bdc-bd40-4b9b-b802-e593c7d8176e") + ) + (pin "2" + (uuid "3defac2b-7a54-47d7-9837-6d74ecfe4f37") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "R10") + (unit 1) + ) + ) + (project "nitrogen" + (path "/42b977d6-a17a-4d98-adb1-b91b742d8770/6595f7bf-be90-4ec5-9ee8-68919a05962c" + (reference "R14") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_name "GND_3") + (lib_id "power:GND") + (at 91.059 31.877 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "555ce28c-b290-40bd-b8bc-8376b6c95458") + (property "Reference" "#PWR018" + (at 91.059 38.227 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 91.059 35.822 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 91.059 31.877 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 91.059 31.877 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 91.059 31.877 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "8acd5aa1-7efa-40cb-b1b6-a6432309c774") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "#PWR018") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:TestPoint") + (at 48.768 42.418 180) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "55c584fd-c0da-4649-9b6a-7b5a08c2d9d8") + (property "Reference" "TP6" + (at 47.371 46.744 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Value" "Gnd" + (at 50.165 47.625 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "TestPoint:TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded" + (at 43.688 42.418 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 43.688 42.418 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 48.768 42.418 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "918aba63-74b9-4421-95fa-b8eeaae62d8d") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "TP6") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:Q_NMOS_GDS") + (at 207.518 124.206 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "55d5a1fe-3dfc-404d-b0d7-7bd71fa205b5") + (property "Reference" "Q3" + (at 212.725 123.182 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "IRLR7807" + (at 212.725 125.23 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:TO-252-3_TabPin2" + (at 212.598 121.666 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 207.518 124.206 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 207.518 124.206 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "f02c3d79-8938-4f66-91d4-a3d4a44afbf1") + ) + (pin "2" + (uuid "a421eb36-326b-4b7e-be8f-efeae29f2eda") + ) + (pin "3" + (uuid "dcd106ae-0ffe-4599-84b8-33ebaca1ff61") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "Q3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_name "GND_3") + (lib_id "power:GND") + (at 253.873 129.286 0) + (mirror y) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "56e5313a-177b-43a4-b1c7-c3261908d5d1") + (property "Reference" "#PWR040" + (at 253.873 135.636 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 253.873 133.231 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 253.873 129.286 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 253.873 129.286 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 253.873 129.286 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "ece21090-cbbf-4b76-9bd4-5bc920b73a1c") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "#PWR040") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+3V3") + (at 82.169 45.974 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "59e945bd-e329-4131-ad92-d6640848835f") + (property "Reference" "#PWR017" + (at 82.169 49.784 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+3V3" + (at 82.169 42.029 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 82.169 45.974 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 82.169 45.974 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 82.169 45.974 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "bcdcc989-c43a-488f-845c-30a82c2ecf1f") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "#PWR017") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:Conn_01x02_Pin") + (at 106.299 176.276 0) + (mirror x) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "5aa918df-9e97-47d2-901a-eb91887a76d9") + (property "Reference" "J6" + (at 106.934 171.704 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "EXT_MOT" + (at 100.965 178.562 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Connector_JST:JST_PH_B2B-PH-K_1x02_P2.00mm_Vertical" + (at 106.299 176.276 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 106.299 176.276 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 106.299 176.276 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "b4272d62-25bc-49cf-9827-f0d12e1bed3e") + ) + (pin "2" + (uuid "6944a060-db60-4b2c-860a-1a78aae79cda") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "J6") + (unit 1) + ) + ) + (project "stm32" + (path "/f40cbe7e-cd25-45e5-a6cb-d92457495048" + (reference "J12") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_name "GND_3") + (lib_id "power:GND") + (at 105.791 86.106 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "5bb40f52-d846-4732-b224-e50e310244f8") + (property "Reference" "#PWR020" + (at 105.791 92.456 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 105.791 90.051 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 105.791 86.106 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 105.791 86.106 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 105.791 86.106 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "cec1bff3-08d8-42fe-8f71-e09cb4af6816") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "#PWR020") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Regulator_Linear:XC6206PxxxMR") + (at 36.83 131.953 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "5c1e3040-f731-4664-a8c4-ba636e6df46a") + (property "Reference" "U1" + (at 36.83 128.905 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "XC6206PxxxMR" + (at 36.83 126.238 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23-3" + (at 36.83 126.238 0) + (effects + (font + (size 1.27 1.27) + (italic yes) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.torexsemi.com/file/xc6206/XC6206.pdf" + (at 36.83 131.953 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 36.83 131.953 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "032d5894-27dd-42f0-813d-e63ccac52b38") + ) + (pin "2" + (uuid "025eccc3-5da9-469e-bd18-c48069fd459a") + ) + (pin "3" + (uuid "1d70673c-11f4-443d-b0ad-b56411fcb241") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "U1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 272.923 114.681 270) + (mirror x) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "5ca3761a-e46f-449e-88a1-dcaf240a0196") + (property "Reference" "R25" + (at 272.923 112.395 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "100" + (at 272.669 114.681 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (at 272.923 116.459 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 272.923 114.681 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 272.923 114.681 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "9f6ddadc-a888-4510-ad31-b15490a199f1") + ) + (pin "2" + (uuid "573965c9-0e82-4d9c-a421-36da5bf0fe11") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "R25") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:D") + (at 240.665 119.634 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "5d0ed76a-29be-4a04-94ee-7e2065dbfdf7") + (property "Reference" "D12" + (at 242.697 118.2925 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "1N4007" + (at 238.252 115.697 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Diode_SMD:D_SMA_Handsoldering" + (at 240.665 119.634 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 240.665 119.634 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 240.665 119.634 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Sim.Device" "D" + (at 240.665 119.634 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Sim.Pins" "1=K 2=A" + (at 240.665 119.634 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "11631096-5682-4e41-a18f-742a1476c9da") + ) + (pin "2" + (uuid "7f519fc3-dc59-4103-9954-29218c41cdfc") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "D12") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_name "GND_3") + (lib_id "power:GND") + (at 138.049 61.341 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "60808d75-efc7-4ae7-806b-e430d0c82308") + (property "Reference" "#PWR028" + (at 138.049 67.691 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 138.049 65.286 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 138.049 61.341 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 138.049 61.341 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 138.049 61.341 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "ab176e52-214f-4d5d-8abf-2ae7b0e3ebae") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "#PWR028") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+3V3") + (at 129.921 68.326 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "645f3f02-75af-4f2d-add1-37a70cbd3848") + (property "Reference" "#PWR025" + (at 129.921 72.136 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+3V3" + (at 129.921 64.381 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 129.921 68.326 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 129.921 68.326 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 129.921 68.326 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "335ea0a3-ae49-465c-8f3c-759c2676926a") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "#PWR025") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Interface_CAN_LIN:MCP2551-I-SN") + (at 263.144 37.211 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "65bb247f-f2e9-463a-8d46-fb52dff8a471") + (property "Reference" "U5" + (at 265.0999 26.011 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "TJA1050" + (at 265.0999 28.059 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" + (at 263.144 49.911 0) + (effects + (font + (size 1.27 1.27) + (italic yes) + ) + (hide yes) + ) + ) + (property "Datasheet" "http://ww1.microchip.com/downloads/en/devicedoc/21667d.pdf" + (at 263.144 37.211 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 263.144 37.211 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "9184c82d-2033-4e17-9dfe-c5da91173367") + ) + (pin "2" + (uuid "bf13d3d9-aefd-4084-b802-da3a73988448") + ) + (pin "3" + (uuid "318b60e4-660c-45b1-a534-96927d1c07d5") + ) + (pin "4" + (uuid "a342b877-8c22-4cbc-9d69-accbf34191fc") + ) + (pin "5" + (uuid "05874e30-e221-4652-882a-8d7128b69de2") + ) + (pin "6" + (uuid "f4db1574-4c8e-4d5b-8a02-70a0faff79be") + ) + (pin "7" + (uuid "3525519d-067c-468d-96cd-f42fe388b1a2") + ) + (pin "8" + (uuid "84f04384-cde9-470a-b44a-315a420d180b") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "U5") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_name "GND_3") + (lib_id "power:GND") + (at 210.058 129.286 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "67bce3ef-11a0-4515-8ddc-97267f3094d4") + (property "Reference" "#PWR033" + (at 210.058 135.636 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 210.058 133.231 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 210.058 129.286 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 210.058 129.286 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 210.058 129.286 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "fa09a8ac-1bdf-48a5-bf52-c0dd677c57a0") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "#PWR033") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:Conn_01x06_Socket") + (at 100.203 43.434 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "687e93fa-7aa1-4bcb-bf2d-98cd66173c09") + (property "Reference" "J5" + (at 100.9142 43.68 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "Prog" + (at 100.9142 45.728 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Connector_PinSocket_1.27mm:PinSocket_1x06_P1.27mm_Vertical" + (at 100.203 43.434 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 100.203 43.434 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 100.203 43.434 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "50b2f7e7-9363-48d0-8151-3d284e129b33") + ) + (pin "2" + (uuid "5e10c5a3-ec79-43fa-9f0b-2acbeb78d403") + ) + (pin "3" + (uuid "ac68d599-27a9-4259-a22b-0146983bc91c") + ) + (pin "4" + (uuid "e0972413-0fa4-4c32-a960-918fa0718fde") + ) + (pin "5" + (uuid "8c779072-f408-4025-af8d-b028d6d37318") + ) + (pin "6" + (uuid "65fb771a-b97f-463f-99e6-cae5b7c4e179") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "J5") + (unit 1) + ) + ) + (project "nitrogen" + (path "/42b977d6-a17a-4d98-adb1-b91b742d8770/6595f7bf-be90-4ec5-9ee8-68919a05962c" + (reference "J7") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:Q_PMOS_GDS") + (at 207.518 107.315 0) + (mirror x) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "6d2ea4e2-3322-4cbc-9204-8f00ac7f21c5") + (property "Reference" "Q2" + (at 212.598 105.791 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "AOD4185" + (at 212.979 108.204 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:TO-252-3_TabPin2" + (at 212.598 109.855 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 207.518 107.315 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 207.518 107.315 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "a1d0bbc1-55e0-4069-9735-f483bee7b3e9") + ) + (pin "2" + (uuid "b06d748a-3f88-46d9-af6e-8fb06dc9676a") + ) + (pin "3" + (uuid "b73e0b97-654d-40b2-925a-f1469e37b8e9") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "Q2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:Q_NMOS_GSD") + (at 264.033 114.681 0) + (mirror y) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "6e9b6f62-1be3-4436-a767-96d5cae2139e") + (property "Reference" "Q6" + (at 266.192 110.871 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "2N7002" + (at 258.318 118.745 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23_Handsoldering" + (at 258.953 112.141 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 264.033 114.681 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 264.033 114.681 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "8bbbc822-8edb-48d8-a465-16261c0c0df2") + ) + (pin "2" + (uuid "6040ec34-81a9-4c5a-952e-45b658e37acf") + ) + (pin "3" + (uuid "4c46c0eb-6cda-413d-8716-b3068322e17a") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "Q6") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:TestPoint") + (at 45.466 34.798 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "6f756413-1eca-4428-bb57-f890fa54c873") + (property "Reference" "TP3" + (at 49.792 36.195 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Value" "12V" + (at 49.276 33.655 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "TestPoint:TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded" + (at 45.466 39.878 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 45.466 39.878 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 45.466 34.798 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "cbc31ae3-2c8b-493f-970d-1b48c78b17b3") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "TP3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 122.809 179.832 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "6fbe9c38-6c7f-4ddc-9fa9-a035e87037b4") + (property "Reference" "R13" + (at 121.285 177.673 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "1k" + (at 121.285 179.832 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (at 122.809 178.054 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 122.809 179.832 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 122.809 179.832 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "ec8f4323-f030-46e8-bb35-f3a61a6a3d52") + ) + (pin "2" + (uuid "cc42cfca-62bf-48ab-a0af-7e4739c25baf") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "R13") + (unit 1) + ) + ) + (project "stm32" + (path "/1ec6f7b4-f573-4ec7-9f09-903dcf29773c" + (reference "R23") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_name "GND_3") + (lib_id "power:GND") + (at 133.731 144.526 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "70bc5f66-8e33-4124-be39-056469627065") + (property "Reference" "#PWR026" + (at 133.731 150.876 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 133.731 148.471 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 133.731 144.526 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 133.731 144.526 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 133.731 144.526 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "da58a3c2-c5f0-4306-bf26-c38cf5f104a7") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "#PWR026") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 37.846 170.815 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "710041e4-f33e-4a35-bae8-baff7f273045") + (property "Reference" "R4" + (at 40.64 172.085 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100" + (at 36.322 170.815 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (at 37.846 169.037 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 37.846 170.815 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 37.846 170.815 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "c206e4f6-aa1f-47e6-a980-4cc2c77cc794") + ) + (pin "2" + (uuid "adde8b9c-c607-46ca-acb7-c83bf0338b72") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "R4") + (unit 1) + ) + ) + (project "stm32" + (path "/1ec6f7b4-f573-4ec7-9f09-903dcf29773c" + (reference "R23") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+5V") + (at 29.21 131.953 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "7393675f-b256-440e-8e78-bd13d0cb3d50") + (property "Reference" "#PWR02" + (at 29.21 135.763 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+5V" + (at 29.21 128.008 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 29.21 131.953 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 29.21 131.953 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 29.21 131.953 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "4605e4b2-146c-4956-9cf3-e7cb7334d753") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "#PWR02") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 253.746 22.606 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "741595fc-b20d-46fd-8301-578e7f10baa6") + (property "Reference" "C13" + (at 253.746 16.867 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "0.1" + (at 253.746 18.915 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" + (at 257.556 21.6408 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 253.746 22.606 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 253.746 22.606 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "6d6a5c93-d3b9-4762-9194-b1f7ebb48809") + ) + (pin "2" + (uuid "8672a44c-4a60-4d2d-85a6-456fd7fa4ae8") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "C13") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 105.791 82.296 180) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "774d9764-be17-4dc4-bfa9-01848617bb4f") + (property "Reference" "R11" + (at 100.584 82.169 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "10k" + (at 105.791 83.947 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (at 107.569 82.296 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 105.791 82.296 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 105.791 82.296 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "3d55d778-a22e-42f1-b067-9be2b0d37e53") + ) + (pin "2" + (uuid "868b10d0-1178-43ec-917e-736a4950c25f") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "R11") + (unit 1) + ) + ) + (project "Canon_manage" + (path "/56438dee-19cd-4574-afb4-194a39bf2855" + (reference "R1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:D_Schottky") + (at 126.619 183.642 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "784e693a-9161-41a5-8f5d-876789253060") + (property "Reference" "D7" + (at 124.206 181.864 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "MM3Z3V3" + (at 129.032 180.34 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Diode_SMD:D_0805_2012Metric_Pad1.15x1.40mm_HandSolder" + (at 126.619 183.642 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 126.619 183.642 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 126.619 183.642 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "8bd6c10f-6ef0-451e-81df-89a5011e08a1") + ) + (pin "2" + (uuid "0eccf7e1-2e45-48f1-a173-f749268b28bf") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "D7") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 265.303 119.761 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "7be5c31f-b6ec-464b-b19a-700b37fc22f5") + (property "Reference" "R27" + (at 266.192 117.856 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "10k" + (at 265.049 119.761 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (at 265.303 117.983 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 265.303 119.761 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 265.303 119.761 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "4e162728-cf71-4941-99c3-468fc7a41a00") + ) + (pin "2" + (uuid "0d841980-93a0-47db-a4ec-e146263b1e51") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "R27") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "elements:PESD1CAN") + (at 260.604 61.976 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "7d6e4e39-c56e-426f-8fc3-a264de8848d2") + (property "Reference" "D13" + (at 251.714 61.976 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "PESD1CAN" + (at 264.414 63.246 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23" + (at 260.604 61.976 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 260.604 61.976 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 260.604 61.976 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "af9f1af9-0c88-4d16-a56d-3dbc51b6813d") + ) + (pin "2" + (uuid "8bb031ab-45bc-4e81-bcce-1753ad715c7a") + ) + (pin "3" + (uuid "7d04a771-a694-4a71-9fd7-14f291280235") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "D13") + (unit 1) + ) + ) + (project "stm32" + (path "/f40cbe7e-cd25-45e5-a6cb-d92457495048" + (reference "D8") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 129.794 57.531 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "7ead0da8-d40b-4429-8539-b98e08321c21") + (property "Reference" "C9" + (at 132.715 56.507 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "0.1" + (at 132.715 58.555 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" + (at 130.7592 61.341 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 129.794 57.531 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 129.794 57.531 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "5815313f-c4ff-4e36-a1c4-270cffa4be36") + ) + (pin "2" + (uuid "7754de01-c47d-4648-bbdb-b9e1ae051ce2") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "C9") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 198.628 124.206 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "81a2ee18-ba8a-4f75-adab-378149aa102d") + (property "Reference" "R18" + (at 198.755 126.365 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "220" + (at 198.882 124.206 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (at 198.628 125.984 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 198.628 124.206 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 198.628 124.206 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "b678d4ca-b6d0-4201-b8d9-0f1aabd67b0f") + ) + (pin "2" + (uuid "ad0e35ac-be60-4eb2-ac37-3d08e9bde9a6") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "R18") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:TestPoint") + (at 46.355 88.646 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "876a0053-1bfc-4c2f-9e0b-38f2bf2e35cf") + (property "Reference" "TP4" + (at 47.752 84.32 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Value" "5V" + (at 44.958 83.439 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "TestPoint:TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded" + (at 51.435 88.646 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 51.435 88.646 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 46.355 88.646 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "47276b0d-84db-41ff-8b26-c3c6d1705aed") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "TP4") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 182.753 97.028 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "89755849-e3e9-4e1e-b86a-8ed346a9749b") + (property "Reference" "R14" + (at 182.626 94.9706 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "330" + (at 182.499 97.028 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (at 182.753 95.25 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 182.753 97.028 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 182.753 97.028 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "a5376214-40d8-4715-b653-2a28f11ffc53") + ) + (pin "2" + (uuid "64460dda-07f1-45e7-843e-4ed4b31c6b2e") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "R14") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 44.45 135.763 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "89d9e89e-591d-4a71-9909-c085adf5350c") + (property "Reference" "C4" + (at 44.831 133.731 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "47u" + (at 44.958 137.922 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_1206_3216Metric" + (at 45.4152 139.573 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 44.45 135.763 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 44.45 135.763 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "55d8a26b-e761-472a-8849-2ae3a26af407") + ) + (pin "2" + (uuid "32e11035-204d-4659-8e0e-8e2ece0e1848") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "C4") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:TestPoint") + (at 276.733 114.681 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "8aceb784-8188-4576-ab17-f3db7be86fb4") + (property "Reference" "TP10" + (at 278.13 110.355 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Value" "R+" + (at 275.336 109.474 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "TestPoint:TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded" + (at 281.813 114.681 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 281.813 114.681 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 276.733 114.681 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "8fd71a46-4ab9-49de-9866-f5b1f1affa61") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "TP10") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:TestPoint") + (at 187.198 114.681 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "8e336b7f-02d2-422b-8109-c894c167d3c8") + (property "Reference" "TP8" + (at 188.595 110.355 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Value" "L+" + (at 185.801 109.474 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "TestPoint:TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded" + (at 192.278 114.681 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 192.278 114.681 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 187.198 114.681 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "ced61e76-0ec1-44ff-a0b4-5e9ae67449a6") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "TP8") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_name "GND_3") + (lib_id "power:GND") + (at 249.936 22.606 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "8ec7e845-86f3-4c21-b6b6-85f412cf3748") + (property "Reference" "#PWR038" + (at 249.936 28.956 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 249.936 26.551 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 249.936 22.606 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 249.936 22.606 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 249.936 22.606 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "f7e681e1-536d-4fdf-92e9-6b2b3faa7602") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "#PWR038") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:D") + (at 229.235 112.014 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "8fc53933-c71d-4315-80b3-e885bef37c3a") + (property "Reference" "D10" + (at 231.267 110.6725 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "1N4007" + (at 226.822 108.077 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Diode_SMD:D_SMA_Handsoldering" + (at 229.235 112.014 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 229.235 112.014 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 229.235 112.014 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Sim.Device" "D" + (at 229.235 112.014 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Sim.Pins" "1=K 2=A" + (at 229.235 112.014 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "1c64f05c-aa7f-4a97-b513-81f6880afaba") + ) + (pin "2" + (uuid "219bac12-b760-47cb-b52e-722751ec316e") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "D10") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:PWR_FLAG") + (at 57.912 88.646 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "90e98621-2364-4057-a63b-664df5d06431") + (property "Reference" "#FLG02" + (at 59.817 88.646 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "PWR_FLAG" + (at 61.857 88.646 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 57.912 88.646 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 57.912 88.646 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 57.912 88.646 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "3c3ae86e-9406-43b5-b60c-fadaff8a728e") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "#FLG02") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 57.912 84.836 180) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "97b547a0-bc92-4bcd-b116-37befccf241d") + (property "Reference" "C5" + (at 60.833 83.812 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "47u" + (at 60.833 85.86 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" + (at 56.9468 81.026 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 57.912 84.836 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 57.912 84.836 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "23ac3523-d6a6-4440-8909-b6c61b33b9a3") + ) + (pin "2" + (uuid "1309e30c-ffb4-46cb-8348-f5024293ede4") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "C5") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:TestPoint") + (at 43.307 64.389 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "98e6eead-e85d-44b4-8a5c-5b5e280c5432") + (property "Reference" "TP2" + (at 44.704 60.063 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Value" "Ven" + (at 41.91 59.182 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "TestPoint:TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded" + (at 48.387 64.389 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 48.387 64.389 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 43.307 64.389 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "be3790e9-4340-4e9e-99d6-f73277d7e62c") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "TP2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+12V") + (at 45.466 34.798 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "9a0b4433-f7be-43f6-9c5e-6c29f3e97674") + (property "Reference" "#PWR010" + (at 45.466 38.608 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+12V" + (at 44.577 31.115 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 45.466 34.798 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 45.466 34.798 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 45.466 34.798 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "f8e76adc-c02d-48f2-9c4e-34a72283fd40") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "#PWR010") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 146.431 57.531 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "a584b76a-1727-482d-b8e6-e2edaf6882d5") + (property "Reference" "C12" + (at 149.352 56.507 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "0.1" + (at 149.352 58.555 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" + (at 147.3962 61.341 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 146.431 57.531 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 146.431 57.531 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "58360c29-a4fd-4104-9a21-fd3cb377e8be") + ) + (pin "2" + (uuid "4518ec6d-006a-47e9-8cb3-5aa7600e56f3") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "C12") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 261.493 103.505 0) + (mirror x) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "ab89a8c7-b04a-4797-a8da-da67b1836164") + (property "Reference" "R23" + (at 264.668 103.378 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "10k" + (at 261.493 103.251 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (at 259.715 103.505 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 261.493 103.505 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 261.493 103.505 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "6daaa1c7-138a-450d-95e1-5b8641660e23") + ) + (pin "2" + (uuid "2de7ddf8-570c-4fc1-8acc-369400841782") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "R23") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:Screw_Terminal_01x02") + (at 235.077 120.904 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "ad51aec2-9b95-449d-aad5-50795c12de48") + (property "Reference" "J7" + (at 235.331 123.317 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Motor" + (at 232.5624 122.936 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Footprint" "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-2_1x02_P5.00mm_Horizontal" + (at 235.077 120.904 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 235.077 120.904 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 235.077 120.904 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "6332c340-5d8e-4c0c-855d-db9a3c17655b") + ) + (pin "2" + (uuid "0a9dd9f3-69c6-4dc5-90b5-54e8c1c1af46") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "J7") + (unit 1) + ) + ) + (project "stm32" + (path "/f40cbe7e-cd25-45e5-a6cb-d92457495048" + (reference "J12") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:Screw_Terminal_01x03") + (at 27.432 37.338 0) + (mirror y) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "ad6f1947-1aad-4abf-8366-5ff220f8dd79") + (property "Reference" "J1" + (at 27.432 44.728 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Power" + (at 27.432 42.68 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-3-5.08_1x03_P5.08mm_Horizontal" + (at 27.432 37.338 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 27.432 37.338 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 27.432 37.338 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "d5f12662-31e2-4f6d-823b-a9ebdf8e3336") + ) + (pin "2" + (uuid "e368d848-dbd8-4eed-9793-8806c4878412") + ) + (pin "3" + (uuid "94a69bc0-123e-4c09-b0a3-c57e3e355bbd") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "J1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:L") + (at 39.116 88.646 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "adf6c8f5-8c10-4ff1-84a2-c09d6ffb3952") + (property "Reference" "L1" + (at 39.116 84.5607 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "10u" + (at 39.116 86.6087 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "kicad:cd43" + (at 39.116 88.646 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 39.116 88.646 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 39.116 88.646 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "6697ab26-c888-4a32-bc2e-d990f7984ee7") + ) + (pin "2" + (uuid "77385a56-b5ce-4f7f-8749-7b400a82ed42") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "L1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_name "GND_3") + (lib_id "power:GND") + (at 30.988 113.538 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "ae1c6a8c-a4e8-4c49-96ab-cb3ce5fc9f5c") + (property "Reference" "#PWR04" + (at 30.988 119.888 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 30.988 117.483 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 30.988 113.538 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 30.988 113.538 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 30.988 113.538 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "03b0c958-ed81-4478-8435-5df51a6f26b3") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "#PWR04") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:TestPoint") + (at 187.198 124.206 180) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "ae370df5-d57f-43d8-bbe8-80e609ef316c") + (property "Reference" "TP9" + (at 185.801 128.532 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Value" "L-" + (at 188.595 129.413 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "TestPoint:TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded" + (at 182.118 124.206 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 182.118 124.206 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 187.198 124.206 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "5f906ef6-18b0-4ba2-987d-95b31fc9ddbb") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "TP9") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 189.611 100.838 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "af43825a-4cd6-463e-ba5c-53cfcfa975cb") + (property "Reference" "R15" + (at 187.5536 100.965 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "100" + (at 189.611 101.092 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (at 187.833 100.838 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 189.611 100.838 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 189.611 100.838 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "cd0410b3-0707-4cfb-bbba-ccb834773093") + ) + (pin "2" + (uuid "135e2a06-8a20-4458-8876-d0bab1d72a94") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "R15") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 198.628 107.315 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "b132ecea-804a-4016-9b77-f44b4264042d") + (property "Reference" "R17" + (at 198.501 105.2576 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "10k" + (at 198.374 107.315 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (at 198.628 105.537 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 198.628 107.315 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 198.628 107.315 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "f333a8f6-001e-4486-a5b5-a0af2b73d531") + ) + (pin "2" + (uuid "318c7afa-f41b-43bb-be6a-1253ba2a12b6") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "R17") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_name "GND_3") + (lib_id "power:GND") + (at 225.425 123.444 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "b52628dc-c55e-4431-8773-12122cac50aa") + (property "Reference" "#PWR035" + (at 225.425 129.794 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 225.425 127.389 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 225.425 123.444 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 225.425 123.444 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 225.425 123.444 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "1b08e1b5-eaae-410c-b6c1-7396536d9788") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "#PWR035") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:D") + (at 39.878 68.199 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "b529d259-dc19-4c86-a144-ed8e7919a707") + (property "Reference" "D2" + (at 45.085 66.929 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "1N5819" + (at 45.593 68.58 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" + (at 39.878 68.199 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 39.878 68.199 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 39.878 68.199 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Sim.Device" "D" + (at 39.878 68.199 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Sim.Pins" "1=K 2=A" + (at 39.878 68.199 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "88fbbccc-a4a5-4342-97f2-00d1287c002e") + ) + (pin "2" + (uuid "7cb41003-f873-4a02-b401-02047940a42f") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "D2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 74.676 176.911 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "b7837f1b-646b-4b94-a6fd-cdbb14dac714") + (property "Reference" "R9" + (at 73.152 179.07 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100" + (at 73.152 176.911 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (at 74.676 175.133 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 74.676 176.911 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 74.676 176.911 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "fd85631d-e2f4-43b2-8483-be296891589b") + ) + (pin "2" + (uuid "6f3f49bb-7a30-4bd9-a327-b93ed8421c50") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "R9") + (unit 1) + ) + ) + (project "stm32" + (path "/1ec6f7b4-f573-4ec7-9f09-903dcf29773c" + (reference "R23") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:TestPoint") + (at 276.733 124.206 180) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "bc71f010-ae52-40e9-b47d-749510fd8c7c") + (property "Reference" "TP11" + (at 275.336 128.532 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Value" "R-" + (at 278.13 129.413 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "TestPoint:TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded" + (at 271.653 124.206 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 271.653 124.206 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 276.733 124.206 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "92185398-1745-4307-8b66-d7bd211bb2b1") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "TP11") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 136.652 23.749 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "bd219d37-90db-48ca-aa0e-ba528aa27662") + (property "Reference" "C10" + (at 137.287 21.209 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "6" + (at 137.287 26.289 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" + (at 137.6172 27.559 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 136.652 23.749 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 136.652 23.749 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "e5ca397f-3dc5-4b41-8a50-168a7ebe2e7c") + ) + (pin "2" + (uuid "b6d7f5be-a305-4b97-8e54-66b2550d5e64") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "C10") + (unit 1) + ) + ) + (project "Canon_manage" + (path "/56438dee-19cd-4574-afb4-194a39bf2855" + (reference "C2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_name "D_1") + (lib_id "Device:D") + (at 45.466 38.608 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "bf41fd65-da7d-431e-bc2d-c9c40b1e8eba") + (property "Reference" "D3" + (at 47.371 38.735 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "SMBJ18A" + (at 42.926 38.608 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Diode_SMD:D_SMB_Handsoldering" + (at 45.466 38.608 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 45.466 38.608 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 45.466 38.608 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Sim.Device" "D" + (at 45.466 38.608 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Sim.Pins" "1=K 2=A" + (at 45.466 38.608 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "3aa8351c-ab43-4343-81de-7f186bf960ec") + ) + (pin "2" + (uuid "b2af8c52-aad3-4c84-8a90-a8ea72689ffe") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "D3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_name "GND_3") + (lib_id "power:GND") + (at 78.486 179.451 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "c018bcdd-1702-4f38-8e5f-a9853d3b29e0") + (property "Reference" "#PWR016" + (at 78.486 185.801 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 78.486 183.396 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 78.486 179.451 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 78.486 179.451 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 78.486 179.451 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "e9b68249-1805-4790-aaf9-d3ea567a068c") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "#PWR016") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_name "GND_3") + (lib_id "power:GND") + (at 45.466 42.418 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "c2f1a68c-fc13-4f87-882e-2707719ebe43") + (property "Reference" "#PWR011" + (at 45.466 48.768 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 45.466 46.363 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 45.466 42.418 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 45.466 42.418 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 45.466 42.418 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "59a5fcad-7597-4f75-bf75-fe7ccd5d3312") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "#PWR011") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 118.999 166.116 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "c48298ba-cdec-44fb-840d-4ba4dc791caa") + (property "Reference" "R12" + (at 117.475 163.957 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "1k" + (at 117.475 166.116 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (at 118.999 164.338 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 118.999 166.116 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 118.999 166.116 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "b52f5bb4-0358-4bb4-b39f-327007435bc3") + ) + (pin "2" + (uuid "43cdd30d-19d9-4dc4-b198-9ce8362c769c") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "R12") + (unit 1) + ) + ) + (project "stm32" + (path "/1ec6f7b4-f573-4ec7-9f09-903dcf29773c" + (reference "R23") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 29.21 135.763 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "c64d8549-8fae-4510-88f8-d4e10f074e1e") + (property "Reference" "C1" + (at 25.146 133.731 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "0.1" + (at 25.908 137.922 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" + (at 30.1752 139.573 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 29.21 135.763 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 29.21 135.763 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "596790c9-8ebb-4521-8f1b-c3bb57a4b4e3") + ) + (pin "2" + (uuid "36430b9b-df1e-47b3-a69f-9852c73f04f9") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "C1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:D") + (at 178.943 93.218 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "c7dcb330-00fd-4b26-9116-cfce065ece6a") + (property "Reference" "D8" + (at 181.737 92.583 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "1N5819" + (at 174.244 92.964 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering" + (at 178.943 93.218 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 178.943 93.218 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 178.943 93.218 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Sim.Device" "D" + (at 178.943 93.218 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Sim.Pins" "1=K 2=A" + (at 178.943 93.218 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "8e1287a4-11fc-4d0b-8f1c-6f16efee130c") + ) + (pin "2" + (uuid "ba9cb790-d95a-4c39-ba71-e864e7afaa90") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "D8") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:D") + (at 238.633 112.014 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "c899a0e9-ef4c-40c2-93f7-5ac59aaf87c6") + (property "Reference" "D11" + (at 240.665 110.6725 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "1N4007" + (at 236.22 108.077 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Diode_SMD:D_SMA_Handsoldering" + (at 238.633 112.014 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 238.633 112.014 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 238.633 112.014 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Sim.Device" "D" + (at 238.633 112.014 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Sim.Pins" "1=K 2=A" + (at 238.633 112.014 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "a7e4ca22-656a-4eca-b75d-0691f1f0695a") + ) + (pin "2" + (uuid "7837b7cb-f38a-4157-b527-99cfae11a789") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "D11") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:TestPoint") + (at 27.305 113.538 180) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "cbc6243a-5f74-44b4-b800-9818b40ddc47") + (property "Reference" "TP1" + (at 25.908 117.864 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Value" "Gnd" + (at 28.702 118.745 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "TestPoint:TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded" + (at 22.225 113.538 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 22.225 113.538 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 27.305 113.538 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "bbbda377-786d-424f-8082-f70db78dceb9") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "TP1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 37.846 173.355 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "ccb227fc-0db8-4f37-b5a8-8442ea74cce2") + (property "Reference" "R5" + (at 40.64 174.625 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100" + (at 36.322 173.355 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (at 37.846 171.577 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 37.846 173.355 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 37.846 173.355 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "21faf3c2-2c17-48ff-a32e-51440805a9a1") + ) + (pin "2" + (uuid "adb31c22-782a-465a-9088-5d962dedc5a0") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "R5") + (unit 1) + ) + ) + (project "stm32" + (path "/1ec6f7b4-f573-4ec7-9f09-903dcf29773c" + (reference "R24") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+12V") + (at 26.162 105.918 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "ce6bb50f-9d19-4912-bdac-d51553b7c272") + (property "Reference" "#PWR01" + (at 26.162 109.728 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+12V" + (at 25.273 102.235 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 26.162 105.918 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 26.162 105.918 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 26.162 105.918 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "b6251c16-acdb-40ad-a3e3-212c307d8322") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "#PWR01") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_name "GND_3") + (lib_id "power:GND") + (at 263.144 47.371 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "cf0bbb4f-321e-46a2-a050-52f3dc4cf426") + (property "Reference" "#PWR046" + (at 263.144 53.721 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 263.144 51.316 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 263.144 47.371 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 263.144 47.371 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 263.144 47.371 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "257cbef4-c0a9-407f-a426-2b45dbf1db2f") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "#PWR046") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 125.222 23.749 0) + (mirror y) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "cff709d7-8ac5-4466-8926-25c648a7e9b1") + (property "Reference" "C8" + (at 124.587 21.209 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "6" + (at 124.587 26.289 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" + (at 124.2568 27.559 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 125.222 23.749 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 125.222 23.749 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "5f97231f-3405-4cd0-82ee-9fa6d0d0909f") + ) + (pin "2" + (uuid "e598393e-0d58-4a13-8b08-d64604b0ad82") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "C8") + (unit 1) + ) + ) + (project "Canon_manage" + (path "/56438dee-19cd-4574-afb4-194a39bf2855" + (reference "C1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "mp1584:MT1470") + (at 41.148 103.378 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "d1943f25-7cb0-479a-a8e1-b95f42c712bd") + (property "Reference" "U2" + (at 40.513 95.6152 0) + (effects + (font + (size 1.524 1.524) + ) + ) + ) + (property "Value" "MT1470" + (at 40.513 97.9964 0) + (effects + (font + (size 1.524 1.524) + ) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6_Handsoldering" + (at 41.148 103.378 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 41.148 103.378 0) + (effects + (font + (size 1.524 1.524) + ) + ) + ) + (property "Description" "" + (at 41.148 103.378 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "cf023413-ae46-4723-89e1-edb15a4390ec") + ) + (pin "2" + (uuid "79cdc768-1c06-4b5e-801d-3e3c7f33ca9c") + ) + (pin "3" + (uuid "bbf1cb02-3450-40fa-afc8-e8a2fa55fc80") + ) + (pin "4" + (uuid "5e5cd3d0-4b2e-4df1-ad28-1cfff12ddf2b") + ) + (pin "5" + (uuid "aeca1633-ed06-45da-a3ad-940b4461f728") + ) + (pin "6" + (uuid "a25b041f-c31a-4694-a198-f4aec6353c89") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "U2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:Q_NMOS_GSD") + (at 199.898 114.681 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "d37fe787-47f0-4d9d-9f4b-15cf491f1582") + (property "Reference" "Q1" + (at 199.009 110.617 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "2N7002" + (at 206.121 118.237 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23_Handsoldering" + (at 204.978 112.141 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 199.898 114.681 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 199.898 114.681 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "5f9dc8fb-b8ba-4c4e-a1c4-c8925ca1c0a6") + ) + (pin "2" + (uuid "09d22602-58d5-4c94-99f9-a1465d91a557") + ) + (pin "3" + (uuid "361f6ac7-7f6c-4a68-af39-9b6831fd0aba") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "Q1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 30.988 109.728 180) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "d3f87295-91a4-48f0-b1d7-f08b2ab4b533") + (property "Reference" "C2" + (at 33.909 108.704 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "10u" + (at 33.909 110.752 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" + (at 30.0228 105.918 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 30.988 109.728 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 30.988 109.728 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "0e5464ed-b17e-4fde-ba03-4ba4241af17b") + ) + (pin "2" + (uuid "41ce0815-bf1b-4b7f-bf24-e5ff778eedc8") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "C2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:PWR_FLAG") + (at 32.512 39.878 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "d468978b-5471-42d1-9504-11e483c03078") + (property "Reference" "#FLG03" + (at 34.417 39.878 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "PWR_FLAG" + (at 36.457 39.878 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 32.512 39.878 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 32.512 39.878 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 32.512 39.878 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "7b369737-1808-41bb-86bc-fb773e6e6ca6") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "#FLG03") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 50.038 109.728 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "d5ee53e9-7bd5-4534-9901-c669dd66fb12") + (property "Reference" "R6" + (at 51.816 108.704 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "19k" + (at 51.816 110.752 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (at 48.26 109.728 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 50.038 109.728 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 50.038 109.728 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "28bb2cba-490e-4130-ab2f-db351821bf49") + ) + (pin "2" + (uuid "6f51b414-c717-49a3-9bc5-f958d2656df9") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "R6") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 121.031 57.531 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "d6c47741-d7ff-410d-ae78-4e99255d7d96") + (property "Reference" "C7" + (at 123.952 56.507 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "0.1" + (at 123.952 58.555 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" + (at 121.9962 61.341 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 121.031 57.531 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 121.031 57.531 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "522cbe68-9d67-4456-bcb0-b078519733e4") + ) + (pin "2" + (uuid "f133a11f-2b22-4754-81b3-600c96b3afbf") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "C7") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:D_Schottky") + (at 122.809 169.926 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "d81bbb2d-88a8-4b83-96e1-471fd82bedf8") + (property "Reference" "D6" + (at 120.396 168.148 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "MM3Z3V3" + (at 125.222 166.624 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Diode_SMD:D_0805_2012Metric_Pad1.15x1.40mm_HandSolder" + (at 122.809 169.926 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 122.809 169.926 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 122.809 169.926 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "1c54fb52-6240-49a7-b2bd-48509c828476") + ) + (pin "2" + (uuid "9366f887-d43d-4969-9265-a618689a4217") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "D6") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_name "GND_3") + (lib_id "power:GND") + (at 240.665 123.444 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "e3afc7d4-975c-4236-96fe-0b54d89756dc") + (property "Reference" "#PWR037" + (at 240.665 129.794 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 240.665 127.389 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 240.665 123.444 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 240.665 123.444 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 240.665 123.444 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "b508d388-6318-4fec-a916-a8e0d84515af") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "#PWR037") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+5V") + (at 50.8071 88.646 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "e4cbd905-1241-4dd6-a575-50cf49954bb0") + (property "Reference" "#PWR047" + (at 50.8071 92.456 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+5V" + (at 50.8071 84.701 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 50.8071 88.646 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 50.8071 88.646 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 50.8071 88.646 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "38ca0f1b-ef39-4d78-98ff-f5e502b952b8") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "#PWR047") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "MCU_ST_STM32F1:STM32F103C6Tx") + (at 135.001 106.426 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "e4f2ba4e-4d73-483b-92c6-d8ba5e2d8e24") + (property "Reference" "U3" + (at 133.731 98.044 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "STM32F103C6Tx" + (at 127.254 104.902 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_QFP:LQFP-48_7x7mm_P0.5mm" + (at 119.761 141.986 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + (property "Datasheet" "http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/CD00210843.pdf" + (at 135.001 106.426 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 135.001 106.426 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "f895ddf5-789d-4ab1-9e5e-04dad95dbca2") + ) + (pin "10" + (uuid "43998fcd-91bb-4403-8536-49461f2cbcfa") + ) + (pin "11" + (uuid "331ad201-957d-4c4d-91cd-41202d29fd65") + ) + (pin "12" + (uuid "b361ca7e-cf77-4576-94c5-2e5e2cd18ffa") + ) + (pin "13" + (uuid "2c30a2f2-18f2-4523-a4a7-ce436916a55c") + ) + (pin "14" + (uuid "821da943-7283-4055-a525-a09f263d547a") + ) + (pin "15" + (uuid "be388e44-1f5f-4675-8a36-bb687f9652a9") + ) + (pin "16" + (uuid "7d35602f-06b5-4ec8-bf69-fab0ab900f67") + ) + (pin "17" + (uuid "9d8b1cf7-98b5-4540-be02-e78037dce656") + ) + (pin "18" + (uuid "10a2ef3b-4455-456c-8382-04162a6e9231") + ) + (pin "19" + (uuid "3f949273-a492-40e8-b031-776c583549d5") + ) + (pin "2" + (uuid "6ad7487e-5e2a-4be7-8686-05b38c9a63d2") + ) + (pin "20" + (uuid "3ff0b1a9-8d2e-411f-a6ce-e557655d18b6") + ) + (pin "21" + (uuid "f04e8700-4039-4a9b-81f3-2f7a6f058ac4") + ) + (pin "22" + (uuid "8f7c0067-7e33-4aaa-b8b2-be90111decf9") + ) + (pin "23" + (uuid "eda0f746-86ef-4f99-8f56-7d5b19d96fbd") + ) + (pin "24" + (uuid "ca0fd4e4-afca-454f-941f-b4abe4deb880") + ) + (pin "25" + (uuid "6b5522d3-0188-4437-900b-254a2a21abd9") + ) + (pin "26" + (uuid "a9c86790-66c8-4620-bc81-16eae46a8aab") + ) + (pin "27" + (uuid "eb855f49-0277-4d27-9014-78697c011513") + ) + (pin "28" + (uuid "fef0f3ed-dff7-47fb-8740-9d2aa57f3df1") + ) + (pin "29" + (uuid "fe7a3456-1f58-4edd-9882-8dbce9f186d6") + ) + (pin "3" + (uuid "d1b6ae1e-3bc8-49e8-9ff8-84f95f821d0d") + ) + (pin "30" + (uuid "6e05a613-03d8-4047-ba1f-1ad0fcf9a506") + ) + (pin "31" + (uuid "da90d9c5-960d-4068-9a17-6424cfeede94") + ) + (pin "32" + (uuid "b1ce93da-309b-4821-ba94-d9ddab4d2eb1") + ) + (pin "33" + (uuid "4e417ca2-4fec-477e-b88c-28dfc994e790") + ) + (pin "34" + (uuid "e6f8eab6-44ed-4c89-b8b8-b0a5e7909eea") + ) + (pin "35" + (uuid "fe8ea76c-66d6-4e8c-9600-3f2a5f328de1") + ) + (pin "36" + (uuid "0e576c5e-bc61-406c-85e9-6adf8d7ed635") + ) + (pin "37" + (uuid "28a57cf6-5788-4808-8618-b53a57bd77b4") + ) + (pin "38" + (uuid "956f8aed-cceb-40d2-89cb-2353b2aabe0f") + ) + (pin "39" + (uuid "31f1ac30-d51b-4e2f-9ef7-d1b5ada62849") + ) + (pin "4" + (uuid "385f19a5-301a-402e-8f94-0eadb827be00") + ) + (pin "40" + (uuid "328ea58c-b204-40f8-ab6d-4d91ca991a37") + ) + (pin "41" + (uuid "b82b2ded-20c7-43ff-aed5-02d2ab9ecb9d") + ) + (pin "42" + (uuid "70d99031-0b9a-4d36-835c-e9d34be5df83") + ) + (pin "43" + (uuid "77de7879-12d2-40ab-a09e-b6fe4f8a82f3") + ) + (pin "44" + (uuid "c763f0b1-b140-46c8-bb98-de6f371ab904") + ) + (pin "45" + (uuid "4e89aacd-0d0b-4866-8f4b-efc78e802208") + ) + (pin "46" + (uuid "888811db-fd71-4637-a5a8-7e54764c298a") + ) + (pin "47" + (uuid "5049576c-042b-4f2f-b674-5e3ec10483f8") + ) + (pin "48" + (uuid "b35771e5-8680-40c0-82b3-ad0dd7f4a947") + ) + (pin "5" + (uuid "2f4a66ae-9d93-4aa7-bc92-d7246bb24845") + ) + (pin "6" + (uuid "dc6976d0-9e8f-40fe-81c6-2b2f614a79f0") + ) + (pin "7" + (uuid "c0f82b1e-2b06-4792-a757-dd472dd9ef13") + ) + (pin "8" + (uuid "9d3a511d-ed24-46af-aa44-0d11e6db43e4") + ) + (pin "9" + (uuid "a884510c-7d2e-4d3e-bce1-ee0e09a81bc5") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "U3") + (unit 1) + ) + ) + (project "Canon_manage" + (path "/56438dee-19cd-4574-afb4-194a39bf2855" + (reference "U1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+3V3") + (at 34.036 168.275 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "e7231431-5ff6-44c0-aa1e-bd7c1257d3ee") + (property "Reference" "#PWR07" + (at 34.036 172.085 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+3V3" + (at 34.036 164.33 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 34.036 168.275 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 34.036 168.275 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 34.036 168.275 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "9bb4e6db-e97b-4efd-abcf-20a0d07c2c65") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "#PWR07") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_name "GND_3") + (lib_id "power:GND") + (at 93.599 43.434 180) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "e9ce393e-70ec-4cd5-be41-09860babbde3") + (property "Reference" "#PWR019" + (at 93.599 37.084 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 93.599 39.489 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 93.599 43.434 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 93.599 43.434 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 93.599 43.434 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "561d7b04-029c-49b9-81ad-66c8b6b45b1a") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "#PWR019") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 258.953 129.286 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "ebbc8d8c-bb01-4d32-b42b-7af07ae969d2") + (property "Reference" "R22" + (at 258.826 127.2286 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "10k" + (at 258.699 129.286 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (at 258.953 127.508 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 258.953 129.286 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 258.953 129.286 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "2060b331-12ab-446a-b46d-cb5c231c9436") + ) + (pin "2" + (uuid "79e862e4-fbe1-457d-907f-d14cb3766e0b") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "R22") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_name "GND_3") + (lib_id "power:GND") + (at 32.258 72.009 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "ef17a36e-1a4f-4dfb-a827-b468cc184624") + (property "Reference" "#PWR05" + (at 32.258 78.359 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 32.258 75.954 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 32.258 72.009 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 32.258 72.009 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 32.258 72.009 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "bf092780-de08-4ef9-82ff-eaaf43856af6") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "#PWR05") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 53.594 92.456 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "f41f8cea-c2e3-45a8-8558-a5ad445aa7cf") + (property "Reference" "R7" + (at 49.53 90.424 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100k" + (at 53.594 94.742 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (at 51.816 92.456 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 53.594 92.456 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 53.594 92.456 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "077504a6-fbd0-4205-8e82-6a93acdc277b") + ) + (pin "2" + (uuid "f71ecb88-097b-443f-8324-7dfcf1957ca7") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "R7") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:Q_NMOS_GDS") + (at 256.413 124.206 0) + (mirror y) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "fad7fe14-e161-4c9f-93fd-7ab778ec54e8") + (property "Reference" "Q5" + (at 251.206 123.182 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "IRLR7807" + (at 253.111 127.254 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:TO-252-3_TabPin2" + (at 251.333 121.666 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 256.413 124.206 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 256.413 124.206 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "c3c423e2-9fb8-441b-93fb-43be3c486d23") + ) + (pin "2" + (uuid "115d98dc-7f9e-4d59-ac22-d77fe8ba366b") + ) + (pin "3" + (uuid "ddfbc65a-be14-4388-a03d-5d9317281500") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "Q5") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_name "GND_3") + (lib_id "power:GND") + (at 30.988 100.838 180) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "fcb15a24-2a5e-4a12-a174-46b2fe51bf89") + (property "Reference" "#PWR03" + (at 30.988 94.488 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 30.988 96.893 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 30.988 100.838 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 30.988 100.838 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 30.988 100.838 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "0e8772f4-4d6e-4d4b-b773-fae9392bf974") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "#PWR03") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_name "GND_3") + (lib_id "power:GND") + (at 136.652 27.559 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "fe8282eb-226b-4871-823e-7a9f6ba4603c") + (property "Reference" "#PWR027" + (at 136.652 33.909 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 136.652 31.504 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 136.652 27.559 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 136.652 27.559 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 136.652 27.559 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "f5de6e83-a52d-46ba-bd96-02667835f673") + ) + (instances + (project "windshield" + (path "/07322d58-7316-46ef-93d7-29583fc10978" + (reference "#PWR027") + (unit 1) + ) + ) + ) + ) + (sheet_instances + (path "/" + (page "1") + ) + ) +) \ No newline at end of file diff --git a/F1:F103/CAR_CANbus/WindShield/kicad/windshield.pdf b/F1:F103/CAR_CANbus/WindShield/kicad/windshield.pdf new file mode 100644 index 0000000..910d3d1 Binary files /dev/null and b/F1:F103/CAR_CANbus/WindShield/kicad/windshield.pdf differ diff --git a/F1:F103/CAR_CANbus/WindShield/proto.c b/F1:F103/CAR_CANbus/WindShield/proto.c index 95b3f93..8da9318 100644 --- a/F1:F103/CAR_CANbus/WindShield/proto.c +++ b/F1:F103/CAR_CANbus/WindShield/proto.c @@ -32,10 +32,12 @@ const char *helpmsg = "https://github.com/eddyem/stm32samples/tree/master/F1:F103/CAR_CANbus/WindShield build#" BUILD_NUMBER " @ " BUILD_DATE "\n" "'0' - stop PWM\n" "'1' - start PWM\n" + "'a' - RAW ADC values\n" "'b' - break motor (extremal stop)\n" + "'f' - set PWM freq (Hz)\n" "'d xx' - set dT to xx ms\n" - "'m xx' - move motor right (1), left (-1) or stop (0)\n" - "'p y xx' - set PWM y (l/r) to xx (0..100)" + "'m xx' - move motor up (1), down (2), stop (-2) or emerg stop (-1)\n" + "'p y xx' - set PWM y (l/r) to xx (0..100)\n" "'s' - get raw VSEN value\n" "'t' - get MCU temperature (*10)\n" "'u y xx' - turn on (xx==1) or off (xx==0) y (l/r) MOSFET\n" @@ -115,27 +117,38 @@ static int startPWM(){ */ void cmd_parser(char *txt){ char _1st = txt[0]; - txt = (char*)omit_spaces(txt + 1); + /* usart_send("Got: '"); + usart_send(txt); + usart_send("'\n");*/ + char *nxtsym = (char*)omit_spaces(txt + 1); + uint32_t N = 0; int proc = 1; switch(_1st){ // parse long commands here case 'd': - usetter(set_dT, txt); + usetter(set_dT, nxtsym); + break; + case 'f': + if(nxtsym != getnum(nxtsym, &N)){ + if(N < 100 || N > 100000) usart_send("100 <= F <= 100000"); + else TIM3->PSC = (TIM3FREQ/(N*PWMMAX)) - 1; + } + usart_send("TIM3->PSC="); usart_send(u2str(TIM3->PSC)); break; case 'm': - isetter(motor_ctl, txt); + isetter(motor_ctl, nxtsym); break; case 'p': - if(setdir(*txt)){ - txt = (char*)omit_spaces(txt + 1); - usetter(pwmvalsetter, txt); newline(); + if(setdir(*nxtsym)){ + nxtsym = (char*)omit_spaces(nxtsym + 1); + usetter(pwmvalsetter, nxtsym); newline(); } usart_send("PWM1="); usart_send(u2str(get_pwm(PWM_RIGHT))); usart_send("\nPWM2="); usart_send(u2str(get_pwm(PWM_LEFT))); break; case 'u': - if(setdir(*txt)){ - txt = (char*)omit_spaces(txt + 1); - usetter(upsetter, txt); newline(); + if(setdir(*nxtsym)){ + nxtsym = (char*)omit_spaces(nxtsym + 1); + usetter(upsetter, nxtsym); newline(); } usart_send("UPL="); usart_putchar('0' + read_upL()); usart_send("\nUPR="); usart_putchar('0' + read_upR()); @@ -153,6 +166,13 @@ void cmd_parser(char *txt){ case '1': printans(startPWM()); break; + case 'a': + for(int i = 0; i < NUMBER_OF_ADC_CHANNELS; ++i){ + usart_send("ADC"); usart_putchar('0' + i); + usart_putchar('='); usart_send(u2str(getADCval(i))); + newline(); + } + break; case 'b': motor_break(); printans(TRUE); break; @@ -172,11 +192,11 @@ void cmd_parser(char *txt){ else usart_send("OFF"); break; case 'R': - usart_send("Soft reset\n"); + usart_send("Soft reset\n\n"); usart_transmit(); // wait until DMA & USART done while(!usart_txrdy); - while(!(USART1->SR & USART_SR_TXE)); + while(!(USART1->SR & USART_SR_TC)); USART1->CR1 = 0; // stop USART NVIC_SystemReset(); break; diff --git a/F1:F103/CAR_CANbus/WindShield/usart.c b/F1:F103/CAR_CANbus/WindShield/usart.c index 75a342a..b4533eb 100644 --- a/F1:F103/CAR_CANbus/WindShield/usart.c +++ b/F1:F103/CAR_CANbus/WindShield/usart.c @@ -114,7 +114,7 @@ void usart_setup(){ NVIC_EnableIRQ(DMA1_Channel4_IRQn); NVIC_SetPriority(USART1_IRQn, 0); // setup usart1 - USART1->BRR = 72000000 / 921600; + USART1->BRR = 72000000 / 115200; USART1->CR1 = USART_CR1_TE | USART_CR1_RE | USART_CR1_UE; // 1start,8data,nstop; enable Rx,Tx,USART while(!(USART1->SR & USART_SR_TC)){if(--tmout == 0) break;} // polling idle frame Transmission USART1->SR = 0; // clear flags diff --git a/F1:F103/CAR_CANbus/WindShield/usart.h b/F1:F103/CAR_CANbus/WindShield/usart.h index a7a4f43..96032a1 100644 --- a/F1:F103/CAR_CANbus/WindShield/usart.h +++ b/F1:F103/CAR_CANbus/WindShield/usart.h @@ -19,8 +19,8 @@ #pragma once // input and output buffers size -#define UARTBUFSZI (256) -#define UARTBUFSZO (1024) +#define UARTBUFSZI (64) +#define UARTBUFSZO (128) #define usartrx() (usart_linerdy) #define usartovr() (usart_bufovr) diff --git a/F1:F103/CAR_CANbus/WindShield/version.inc b/F1:F103/CAR_CANbus/WindShield/version.inc index b4a39d6..76ac59d 100644 --- a/F1:F103/CAR_CANbus/WindShield/version.inc +++ b/F1:F103/CAR_CANbus/WindShield/version.inc @@ -1,2 +1,2 @@ -#define BUILD_NUMBER "10" -#define BUILD_DATE "2024-02-13" +#define BUILD_NUMBER "21" +#define BUILD_DATE "2024-03-04" diff --git a/F1:F103/CAR_CANbus/WindShield/windshield.bin b/F1:F103/CAR_CANbus/WindShield/windshield.bin index 39b9f42..3cffb78 100755 Binary files a/F1:F103/CAR_CANbus/WindShield/windshield.bin and b/F1:F103/CAR_CANbus/WindShield/windshield.bin differ diff --git a/F1:F103/CAR_CANbus/WindShield/windshield.creator.user b/F1:F103/CAR_CANbus/WindShield/windshield.creator.user index 9b8e4b5..635ea21 100644 --- a/F1:F103/CAR_CANbus/WindShield/windshield.creator.user +++ b/F1:F103/CAR_CANbus/WindShield/windshield.creator.user @@ -1,6 +1,6 @@ - + EnvironmentId diff --git a/F1:F103/CAR_CANbus/WindShield/windshield.files b/F1:F103/CAR_CANbus/WindShield/windshield.files index 57ef708..faae2e2 100644 --- a/F1:F103/CAR_CANbus/WindShield/windshield.files +++ b/F1:F103/CAR_CANbus/WindShield/windshield.files @@ -1,5 +1,7 @@ adc.c adc.h +buttons.c +buttons.h can.c can.h flash.c