From 6a54c4453508947b586cf3763e2edad624b28d44 Mon Sep 17 00:00:00 2001 From: Jamie Jones Date: Sun, 26 Mar 2023 13:35:57 +0100 Subject: [PATCH] Initial implementation --- ESP32-Chademo/Chademo.cpp | 621 ++++++++++++++++++ ESP32-Chademo/Chademo.h | 145 ++++ ESP32-Chademo/ChademoWebServer.cpp | 151 +++++ ESP32-Chademo/ChademoWebServer.h | 21 + ESP32-Chademo/ESP32-Chademo.ino | 509 ++++++++++++++ ESP32-Chademo/Globals.h | 50 ++ ESP32-Chademo/ISAShunt.cpp | 164 +++++ ESP32-Chademo/ISAShunt.h | 67 ++ ESP32-Chademo/data/gauges.js | 316 +++++++++ ESP32-Chademo/data/highcharts-more.js | 160 +++++ ESP32-Chademo/data/highcharts.js | 492 ++++++++++++++ ESP32-Chademo/data/index.html | 76 +++ ESP32-Chademo/data/index.js | 191 ++++++ ESP32-Chademo/data/settings.html | 45 ++ ESP32-Chademo/data/settings.js | 76 +++ ESP32-Chademo/data/solid-gauge.js | 17 + ESP32-Chademo/data/style.css | 123 ++++ ESP32-Chademo/data/wifi-updated.html | 32 + ESP32-Chademo/data/wifi.html | 54 ++ Hardware/1-PCB_PCB_ESP32-Chademo_2_Layer.json | 1 + Hardware/1-Schematic_ESP32-Chademo.json | 1 + ...M_PCB_ESP32-Chademo_2_Layer_2023-02-13.csv | Bin 0 -> 5026 bytes Hardware/Gerber_PCB_ESP32-Chademo_2_Layer.zip | Bin 0 -> 91986 bytes ...e_PCB_ESP32-Chademo_2_Layer_2023-02-13.csv | Bin 0 -> 10656 bytes Hardware/README.txt | 9 + ReadMe.md | 17 + 26 files changed, 3338 insertions(+) create mode 100644 ESP32-Chademo/Chademo.cpp create mode 100644 ESP32-Chademo/Chademo.h create mode 100644 ESP32-Chademo/ChademoWebServer.cpp create mode 100644 ESP32-Chademo/ChademoWebServer.h create mode 100644 ESP32-Chademo/ESP32-Chademo.ino create mode 100644 ESP32-Chademo/Globals.h create mode 100644 ESP32-Chademo/ISAShunt.cpp create mode 100644 ESP32-Chademo/ISAShunt.h create mode 100644 ESP32-Chademo/data/gauges.js create mode 100755 ESP32-Chademo/data/highcharts-more.js create mode 100755 ESP32-Chademo/data/highcharts.js create mode 100644 ESP32-Chademo/data/index.html create mode 100644 ESP32-Chademo/data/index.js create mode 100644 ESP32-Chademo/data/settings.html create mode 100644 ESP32-Chademo/data/settings.js create mode 100755 ESP32-Chademo/data/solid-gauge.js create mode 100644 ESP32-Chademo/data/style.css create mode 100644 ESP32-Chademo/data/wifi-updated.html create mode 100644 ESP32-Chademo/data/wifi.html create mode 100644 Hardware/1-PCB_PCB_ESP32-Chademo_2_Layer.json create mode 100644 Hardware/1-Schematic_ESP32-Chademo.json create mode 100644 Hardware/BOM_PCB_ESP32-Chademo_2_Layer_2023-02-13.csv create mode 100644 Hardware/Gerber_PCB_ESP32-Chademo_2_Layer.zip create mode 100644 Hardware/PickAndPlace_PCB_ESP32-Chademo_2_Layer_2023-02-13.csv create mode 100644 Hardware/README.txt create mode 100644 ReadMe.md diff --git a/ESP32-Chademo/Chademo.cpp b/ESP32-Chademo/Chademo.cpp new file mode 100644 index 0000000..f3bf451 --- /dev/null +++ b/ESP32-Chademo/Chademo.cpp @@ -0,0 +1,621 @@ +/* + chademo.cpp - Houses all chademo related functionality +*/ +#include +#include "chademo.h" +#include + +template inline Print &operator <<(Print &obj, T arg) { + obj.print(arg); //Sets up serial streaming Serial< (uint32_t)(insertionTime + 500)) + { + if (bChademoMode == 0) + { + bChademoMode = 1; + if (chademoState == STOPPED && !bStartedCharge) { + chademoState = STARTUP; + Serial.println(F("Starting Chademo process.")); + carStatus.battOverTemp = 0; + carStatus.battOverVolt = 0; + carStatus.battUnderVolt = 0; + carStatus.chargingFault = 0; + carStatus.chargingEnabled = 0; + carStatus.contactorOpen = 1; + carStatus.currDeviation = 0; + carStatus.notParked = 0; + carStatus.stopRequest = 0; + carStatus.voltDeviation = 0; + bChademo10Protocol = 0; + } + } + } + } + else + { + insertionTime = 0; + if (bChademoMode == 1) + { + Serial.println(F("Stopping chademo process.")); + bChademoMode = 0; + bStartedCharge = 0; + chademoState = STOPPED; + //maybe it would be a good idea to try to see if EVSE is still transmitting to us and providing current + //as it is not a good idea to open the contactors under load. But, IN1 shouldn't trigger + //until the EVSE is ready. Also, the EVSE should have us locked so the only way the plug should come out under + //load is if the idiot driver took off in the car. Bad move moron. + digitalWrite(CHADEMO_OUT2, LOW); + digitalWrite(CHADEMO_OUT1, LOW); + if (settings.debuggingLevel > 0) + { + Serial.println(F("CAR: Contactor open")); + Serial.println(F("CAR: Charge Enable OFF")); + } + } + } + + if (bChademoMode) + { + + if (!bDoMismatchChecks && chademoState == RUNNING) + { + if ((CurrentMillis - mismatchStart) >= mismatchDelay) bDoMismatchChecks = 1; + } + + if (chademoState == LIMBO && (CurrentMillis - stateMilli) >= stateDelay) + { + chademoState = stateHolder; + } + + if (bChademoSendRequests && bChademoRequest) + { + bChademoRequest = 0; + frameRotate++; + frameRotate %= 3; + switch (frameRotate) + { + case 0: + sendCANStatus(); + break; + case 1: + sendCANBattSpecs(); + break; + case 2: + sendCANChargingTime(); + break; + } + } + + switch (chademoState) + { + case STARTUP: + bDoMismatchChecks = 0; //reset it for now + setDelayedState(SEND_INITIAL_PARAMS, 50); + break; + case SEND_INITIAL_PARAMS: + //we could do calculations to see how long the charge should take based on SOC and + //also set a more realistic starting amperage. Options for the future. + //One problem with that is that we don't yet know the EVSE parameters so we can't know + //the max allowable amperage just yet. + bChademoSendRequests = 1; //causes chademo frames to be sent out every 100ms + setDelayedState(WAIT_FOR_EVSE_PARAMS, 50); + if (settings.debuggingLevel > 0) Serial.println(F("Sent params to EVSE. Waiting.")); + break; + case WAIT_FOR_EVSE_PARAMS: + //for now do nothing while we wait. Might want to try to resend start up messages periodically if no reply + break; + case SET_CHARGE_BEGIN: + if (settings.debuggingLevel > 0) Serial.println(F("CAR:Charge enable ON")); + digitalWrite(CHADEMO_OUT1, HIGH); //signal that we're ready to charge + carStatus.chargingEnabled = 1; //should this be enabled here??? + setDelayedState(WAIT_FOR_BEGIN_CONFIRMATION, 50); + break; + case WAIT_FOR_BEGIN_CONFIRMATION: + if (!digitalRead(CHADEMO_IN2)) //inverse logic, OPTOs + { + setDelayedState(CLOSE_CONTACTORS, 100); + } + break; + case CLOSE_CONTACTORS: + if (settings.debuggingLevel > 0) Serial.println(F("CAR:Contactor close.")); + digitalWrite(CHADEMO_OUT2, HIGH); + setDelayedState(WAIT_FOR_PRECHARGE, 50); + carStatus.contactorOpen = 0; //its closed now + carStatus.chargingEnabled = 1; //please sir, I'd like some charge + bStartedCharge = 1; + mismatchStart = millis(); + break; + case WAIT_FOR_PRECHARGE: + if (evse_status.presentVoltage > (Voltage - 50)) { + if (settings.debuggingLevel > 0) Serial.println(F("Pre-charge completed")); + setDelayedState(RUNNING, 50); + } + break; + case RUNNING: + //do processing here by taking our measured voltage, amperage, and SOC to see if we should be commanding something + //different to the EVSE. Also monitor temperatures to make sure we're not incinerating the pack. + break; + case CEASE_CURRENT: + if (settings.debuggingLevel > 0) Serial.println(F("CAR:Current req to 0")); + carStatus.targetCurrent = 0; + chademoState = WAIT_FOR_ZERO_CURRENT; + break; + case WAIT_FOR_ZERO_CURRENT: + if (evse_status.presentCurrent == 0) + { + setDelayedState(OPEN_CONTACTOR, 150); + } + break; + case OPEN_CONTACTOR: + if (settings.debuggingLevel > 0) Serial.println(F("CAR:OPEN Contacor")); + digitalWrite(CHADEMO_OUT2, LOW); + digitalWrite(CHADEMO_OUT2, LOW); + carStatus.contactorOpen = 1; + carStatus.chargingEnabled = 0; + sendCANStatus(); //we probably need to force this right now + setDelayedState(STOPPED, 100); + break; + case FAULTED: + Serial.println(F("CAR: fault!")); + chademoState = CEASE_CURRENT; + //digitalWrite(OUT2, LOW); + //digitalWrite(OUT1, LOW); + break; + case STOPPED: + if (bChademoSendRequests == 1) + { + digitalWrite(CHADEMO_OUT1, LOW); + digitalWrite(CHADEMO_OUT2, LOW); + if (settings.debuggingLevel > 0) + { + Serial.println(F("CAR:Contactor OPEN")); + Serial.println(F("CAR:Charge Enable OFF")); + } + bChademoSendRequests = 0; //don't need to keep sending anymore. + bListenEVSEStatus = 0; //don't want to pay attention to EVSE status when we're stopped + } + break; + } + } +} + +//things that are less frequently run - run on a set schedule +void CHADEMO::doProcessing() +{ + uint8_t tempCurrVal; + + if (chademoState == RUNNING && ((CurrentMillis - lastCommTime) >= lastCommTime)) + { + //this is BAD news. We can't do the normal cease current procedure because the EVSE seems to be unresponsive. + Serial.println(F("EVSE comm fault! Commencing emergency shutdown!")); + //yes, this isn't ideal - this will open the contactor and send the shutdown signal. It's better than letting the EVSE + //potentially run out of control. + chademoState = OPEN_CONTACTOR; + } + + if (chademoState == RUNNING && bDoMismatchChecks) + { + if (Voltage > settings.maxChargeVoltage && !carStatus.battOverVolt) + { + vOverFault++; + if (vOverFault > 9) + { + Serial.println(F("Over voltage fault!")); + carStatus.battOverVolt = 1; + chademoState = CEASE_CURRENT; + } + } + else vOverFault = 0; + + //Constant Current/Constant Voltage Taper checks. If minimum current is set to zero, we terminate once target voltage is reached. + //If not zero, we will adjust current up or down as needed to maintain voltage until current decreases to the minimum entered + + if (Count == 20) + { + if (evse_status.presentVoltage > settings.targetChargeVoltage - 1) //All initializations complete and we're running.We've reached charging target + { + + if (settings.minChargeAmperage == 0 || carStatus.targetCurrent < settings.minChargeAmperage) { + //putt SOC, ampHours and kiloWattHours reset in here once we actually reach the termination point. + settings.ampHours = 0; // Amp hours count up as used + settings.kiloWattHours = 0; // Kilowatt Hours count up as used. + chademoState = CEASE_CURRENT; //Terminate charging + } else + carStatus.targetCurrent--; //Taper. Actual decrease occurs in sendChademoStatus + } + else //Only adjust upward if we have previous adjusted downward and do not exceed max amps + { + if (carStatus.targetCurrent < settings.maxChargeAmperage) carStatus.targetCurrent++; + } + } + } + +} + +void CHADEMO::handleCANFrame(CANMessage &frame) +{ + uint8_t tempCurrVal; + uint16_t tempAvailCurr; + + if (frame.id == EVSE_PARAMS_ID) + { + lastCommTime = millis(); + + if (chademoState == WAIT_FOR_EVSE_PARAMS) setDelayedState(SET_CHARGE_BEGIN, 100); + evse_params.supportWeldCheck = frame.data[0]; + evse_params.availVoltage = frame.data[1] + frame.data[2] * 256; + evse_params.availCurrent = frame.data[3]; + evse_params.thresholdVoltage = frame.data[4] + frame.data[5] * 256; + + // Workaround for dunedin charger. If we ask for exactly what it + // Says is available then it packs a sad. + // So we'll stay on amp less then it says it has. - TAM + tempAvailCurr = evse_params.availCurrent > 0 ? evse_params.availCurrent - 1 : 0; + + + if (settings.debuggingLevel > 1) + { + + Serial.print(F("EVSE: MaxVoltage: ")); + Serial.print(evse_params.availVoltage); + Serial.print(F(" Max Current:")); + Serial.print(evse_params.availCurrent); + Serial.print(F(" Threshold Voltage:")); + Serial.print(evse_params.thresholdVoltage); + timestamp(); + } + + //if charger cannot provide our requested voltage then GTFO + if (evse_params.availVoltage < carStatus.targetVoltage && chademoState <= RUNNING) + { + vCapCount++; + if (vCapCount > 9) + { + Serial.print(F("EVSE can't provide needed voltage. Aborting.")); + Serial.println(evse_params.availVoltage); + chademoState = CEASE_CURRENT; + } + } + else vCapCount = 0; + + //if we want more current then it can provide then revise our request to match max output + if (tempAvailCurr < carStatus.targetCurrent) carStatus.targetCurrent = tempAvailCurr; + + //If not in running then also change our target current up to the minimum between the + //available current reported and the max charge amperage. This should fix an issue where + //the target current got wacked for some reason and left at zero. + if (chademoState != RUNNING && tempAvailCurr > carStatus.targetCurrent) + { + carStatus.targetCurrent = min(tempAvailCurr, settings.maxChargeAmperage); + } + } + + if (frame.id == EVSE_STATUS_ID) + { + + lastCommTime = millis(); + if (frame.data[0] > 1) bChademo10Protocol = 1; //JJ ignore this and stay at 0.9 + evse_status.presentVoltage = frame.data[1] + 256 * frame.data[2]; + evse_status.presentCurrent = frame.data[3]; + evse_status.status = frame.data[5]; + bConnectorLocked = (frame.data[5] >> 2) && 0x01; + + + if (frame.data[6] < 0xFF) + { + evse_status.remainingChargeSeconds = frame.data[6] * 10; + } + else + { + evse_status.remainingChargeSeconds = frame.data[7] * 60; + } + + if (chademoState == RUNNING && bDoMismatchChecks) + { + if (abs(Voltage - evse_status.presentVoltage) > (evse_status.presentVoltage >> 3) && !carStatus.voltDeviation) + { + vMismatchCount++; + if (vMismatchCount > 4) + { + Serial.print(F("Voltage mismatch! Aborting! Reported: ")); + Serial.print(evse_status.presentVoltage); + Serial.print(F(" Measured: ")); + Serial.println(Voltage); + carStatus.voltDeviation = 1; + chademoState = CEASE_CURRENT; + } + } + else vMismatchCount = 0; + + tempCurrVal = evse_status.presentCurrent >> 3; + if (tempCurrVal < 3) tempCurrVal = 3; + if (abs((Current * -1.0) - evse_status.presentCurrent) > tempCurrVal && !carStatus.currDeviation) + { + cMismatchCount++; + if (cMismatchCount > 4) + { + Serial.print(F("Current mismatch! Aborting! Reported: ")); + Serial.print(evse_status.presentCurrent); + Serial.print(F(" Measured: ")); + Serial.println(Current * -1.0); + carStatus.currDeviation = 1; + chademoState = CEASE_CURRENT; + } + } + else cMismatchCount = 0; + } + + if (settings.debuggingLevel > 1) + { + Serial.print(F("EVSE: Measured Voltage: ")); + Serial.print(evse_status.presentVoltage); + Serial.print(F(" Current: ")); + Serial.print(evse_status.presentCurrent); + Serial.print(F(" Time remaining: ")); + Serial.print(evse_status.remainingChargeSeconds); + Serial.print(F(" Status: ")); + Serial.print(evse_status.status, BIN); + timestamp(); + } + + + //on fault try to turn off current immediately and cease operation + if ((evse_status.status & 0x1A) != 0) //if bits 1, 3, or 4 are set then we have a problem. + { + faultCount++; + if (faultCount > 3) + { + Serial.print(F("EVSE:fault code ")); + Serial.print(evse_status.status,HEX); + Serial.println(F(" Abort.")); + if (chademoState == RUNNING) chademoState = CEASE_CURRENT; + } + } + else faultCount = 0; + + if (chademoState == RUNNING) + { + if (bListenEVSEStatus) + { + if ((evse_status.status & EVSE_STATUS_STOPPED) != 0) + { + Serial.println(F("EVSE:stop charging.")); + chademoState = CEASE_CURRENT; + } + + //if there is no remaining time then gracefully shut down + if (evse_status.remainingChargeSeconds == 0) + { + Serial.println(F("EVSE:time elapsed..Ending")); + chademoState = CEASE_CURRENT; + } + } + else + { + //if charger is not reporting being stopped and is reporting remaining time then enable the checks. + if ((evse_status.status & EVSE_STATUS_STOPPED) == 0 && evse_status.remainingChargeSeconds > 0) bListenEVSEStatus = 1; + } + } + } + +} + +void CHADEMO::sendCANBattSpecs() +{ + CANMessage outFrame; + outFrame.id = CARSIDE_BATT_ID; //0x100 + outFrame.len = 8; + outFrame.ext = false; + + outFrame.data[0] = 0x00; // Not Used + outFrame.data[1] = 0x00; // Not Used + outFrame.data[2] = 0x00; // Not Used + outFrame.data[3] = 0x00; // Not Used + outFrame.data[4] = lowByte(settings.maxChargeVoltage); + outFrame.data[5] = highByte(settings.maxChargeVoltage); +// #ifdef SIMPBMS +// outFrame.data[6] = (uint8_t)soc; //charged_rate_reference (change to SoC from BMS) +// #endif +// #ifndef SIMPBMS + outFrame.data[6] = (uint8_t)((settings.capacity - settings.ampHours) / settings.capacity) * 100; //charged_rate_reference ((46 - 30) / 46) * 100) + /// #endif + outFrame.data[7] = 0; //not used + + ACAN_ESP32::can.tryToSend(outFrame); + if (settings.debuggingLevel > 1) + { + Serial.print(F("CAR: Absolute MAX Voltage:")); + Serial.print(settings.maxChargeVoltage); + Serial.print(F(" Pack size: ")); + Serial.print(settings.packSizeKWH); + timestamp(); + } + + +} + +void CHADEMO::sendCANChargingTime() +{ + CANMessage outFrame; + outFrame.id = CARSIDE_CHARGETIME_ID; //0x101 + outFrame.len = 8; + outFrame.ext = false; + + outFrame.data[0] = 0x00; // Not Used + outFrame.data[1] = 0xFF; //not using 10 second increment mode + outFrame.data[2] = 90; //ask for how long of a charge? It will be forceably stopped if we hit this time + outFrame.data[3] = 60; //how long we think the charge will actually take + outFrame.data[4] = 0; //not used + outFrame.data[5] = 0; //not used + outFrame.data[6] = 0; //not used + outFrame.data[7] = 0; //not used + ACAN_ESP32::can.tryToSend(outFrame); + if (settings.debuggingLevel > 1) + { + Serial.print(F("CAR: Charging Time")); + timestamp(); + } + + +} + +void CHADEMO::setStateOfCharge(uint8_t stateofcharge) { + soc = stateofcharge; +} + +void CHADEMO::sendCANStatus() +{ + uint8_t faults = 0; + uint8_t status = 0; + CANMessage outFrame ; + + outFrame.id = CARSIDE_CONTROL_ID; //0x102 + outFrame.len = 8; + outFrame.ext = false; + + if (carStatus.battOverTemp) faults |= CARSIDE_FAULT_OVERT; + if (carStatus.battOverVolt) faults |= CARSIDE_FAULT_OVERV; + if (carStatus.battUnderVolt) faults |= CARSIDE_FAULT_UNDERV; + if (carStatus.currDeviation) faults |= CARSIDE_FAULT_CURR; + if (carStatus.voltDeviation) faults |= CARSIDE_FAULT_VOLTM; + + if (carStatus.chargingEnabled) status |= CARSIDE_STATUS_CHARGE; + if (carStatus.notParked) status |= CARSIDE_STATUS_NOTPARK; + if (carStatus.chargingFault) status |= CARSIDE_STATUS_MALFUN; + if (bChademo10Protocol) + { + if (carStatus.contactorOpen) status |= CARSIDE_STATUS_CONTOP; + if (carStatus.stopRequest) status |= CARSIDE_STATUS_CHSTOP; + } + + if (bChademo10Protocol) outFrame.data[0] = 2; //tell EVSE we are talking 1.0 protocol + else outFrame.data[0] = 1; //talking 0.9 protocol + outFrame.data[1] = lowByte(carStatus.targetVoltage); + outFrame.data[2] = highByte(carStatus.targetVoltage); + outFrame.data[3] = askingAmps; + outFrame.data[4] = faults; + outFrame.data[5] = status; + #ifdef SIMPBMS + outFrame.data[6] = 100; //charged rate (change to 100 for use with BMS SoC) + #endif + #ifndef SIMPBMS + outFrame.data[6] = (uint8_t)settings.kiloWattHours; //charged rate (change to 100 for use with BMS SoC) + #endif + outFrame.data[7] = 0; //not used + ACAN_ESP32::can.tryToSend(outFrame); + + if (settings.debuggingLevel > 1) + { + Serial.print(F("CAR: Protocol:")); + Serial.print(outFrame.data[0]); + Serial.print(F(" Target Voltage: ")); + Serial.print(carStatus.targetVoltage); + Serial.print(F(" Current Command: ")); + Serial.print(askingAmps); + Serial.print(F(" Target Amps: ")); + Serial.print(carStatus.targetCurrent); + Serial.print(F(" Faults: ")); + Serial.print(faults, BIN); + Serial.print(F(" Status: ")); + Serial.print(status, BIN); + Serial.print(F(" kWh: ")); + Serial.print(settings.kiloWattHours); + timestamp(); + } + + + if (chademoState == RUNNING && askingAmps < carStatus.targetCurrent) + { + if (askingAmps == 0) askingAmps = 3; + int offsetError = askingAmps - evse_status.presentCurrent; + if ((offsetError <= 1) || (evse_status.presentCurrent == 0)) askingAmps++; + } + //not a typo. We're allowed to change requested amps by +/- 20A per second. We send the above frame every 100ms so a single + //increment means we can ramp up 10A per second. But, we want to ramp down quickly if there is a problem so do two which + //gives us -20A per second. + if (chademoState != RUNNING && askingAmps > 0) askingAmps--; + if (askingAmps > carStatus.targetCurrent) askingAmps--; + if (askingAmps > carStatus.targetCurrent) askingAmps--; + +} + +CHADEMO chademo; diff --git a/ESP32-Chademo/Chademo.h b/ESP32-Chademo/Chademo.h new file mode 100644 index 0000000..640d473 --- /dev/null +++ b/ESP32-Chademo/Chademo.h @@ -0,0 +1,145 @@ +#ifndef CHADEMO_H_ +#define CHADEMO_H_ +#include +#include "Globals.h" +#include + +enum CHADEMOSTATE +{ + STARTUP, + SEND_INITIAL_PARAMS, + WAIT_FOR_EVSE_PARAMS, + SET_CHARGE_BEGIN, + WAIT_FOR_BEGIN_CONFIRMATION, + CLOSE_CONTACTORS, + WAIT_FOR_PRECHARGE, + RUNNING, + CEASE_CURRENT, + WAIT_FOR_ZERO_CURRENT, + OPEN_CONTACTOR, + FAULTED, + STOPPED, + LIMBO +}; + +typedef struct +{ + uint8_t supportWeldCheck; + uint16_t availVoltage; + uint8_t availCurrent; + uint16_t thresholdVoltage; //evse calculates this. It is the voltage at which it'll abort charging to save the battery pack in case we asked for something stupid +} EVSE_PARAMS; + +typedef struct +{ + uint16_t presentVoltage; + uint8_t presentCurrent; + uint8_t status; + uint16_t remainingChargeSeconds; +} EVSE_STATUS; + +typedef struct +{ + uint16_t targetVoltage; //what voltage we want the EVSE to put out + uint8_t targetCurrent; //what current we'd like the EVSE to provide + uint8_t remainingKWH; //report # of KWh in the battery pack (charge level) + uint8_t battOverVolt : 1; //we signal that battery or a cell is too high of a voltage + uint8_t battUnderVolt : 1; //we signal that battery is too low + uint8_t currDeviation : 1; //we signal that measured current is not the same as EVSE is reporting + uint8_t battOverTemp : 1; //we signal that battery is too hot + uint8_t voltDeviation : 1; //we signal that we measure a different voltage than EVSE reports + uint8_t chargingEnabled : 1; //ask EVSE to enable charging + uint8_t notParked : 1; //advise EVSE that we're not in park. + uint8_t chargingFault : 1; //signal EVSE that we found a fault + uint8_t contactorOpen : 1; //tell EVSE whether we've closed the charging contactor + uint8_t stopRequest : 1; //request that the charger cease operation before we really get going +} CARSIDE_STATUS; + +//The IDs for chademo comm - both carside and EVSE side so we know what to listen for +//as well. +#define CARSIDE_BATT_ID 0x100 +#define CARSIDE_CHARGETIME_ID 0x101 +#define CARSIDE_CONTROL_ID 0x102 + +#define EVSE_PARAMS_ID 0x108 +#define EVSE_STATUS_ID 0x109 + +#define CARSIDE_FAULT_OVERV 1 //over voltage +#define CARSIDE_FAULT_UNDERV 2 //Under voltage +#define CARSIDE_FAULT_CURR 4 //current mismatch +#define CARSIDE_FAULT_OVERT 8 //over temperature +#define CARSIDE_FAULT_VOLTM 16 //voltage mismatch + +#define CARSIDE_STATUS_CHARGE 1 //charging enabled +#define CARSIDE_STATUS_NOTPARK 2 //shifter not in safe state +#define CARSIDE_STATUS_MALFUN 4 //vehicle did something dumb +#define CARSIDE_STATUS_CONTOP 8 //main contactor open +#define CARSIDE_STATUS_CHSTOP 16 //charger stop before even charging + +#define EVSE_STATUS_CHARGE 1 //charger is active +#define EVSE_STATUS_ERR 2 //something went wrong +#define EVSE_STATUS_CONNLOCK 4 //connector is currently locked +#define EVSE_STATUS_INCOMPAT 8 //parameters between vehicle and charger not compatible +#define EVSE_STATUS_BATTERR 16 //something wrong with battery?! +#define EVSE_STATUS_STOPPED 32 //charger is stopped + +class CHADEMO +{ + public: + CHADEMO(); + void setDelayedState(int newstate, uint16_t delayTime); + CHADEMOSTATE getState(); + EVSE_PARAMS getEVSEParams(); + EVSE_STATUS getEVSEStatus(); + + void setTargetAmperage(uint8_t t_amp); + void setTargetVoltage(uint16_t t_volt); + void loop(); + void doProcessing(); + void handleCANFrame(CANMessage &frame); + void setChargingFault(); + void setBattOverTemp(); + void setStateOfCharge(uint8_t stateofcharge); + + //these need to be accessed quickly in tight spots so they're public in an attempt at efficiency + uint8_t bChademoMode; //accessed but not modified in ISR so it should be OK non-volatile + uint8_t bChademoSendRequests; //should we be sending periodic status updates? + volatile uint8_t bChademoRequest; //is it time to send one of those updates? + + protected: + private: + uint8_t bStartedCharge; //we have started a charge since the plug was inserted. Prevents attempts to restart charging if it stopped previously + uint8_t bChademo10Protocol; //can we use 1.0 protocol? + //target values are what we send with periodic frames and can be changed. + uint8_t askingAmps; //how many amps to ask for. Trends toward targetAmperage + uint8_t bListenEVSEStatus; //should we pay attention to stop requests and such yet? + uint8_t bDoMismatchChecks; //should we be checking for voltage and current mismatches? + uint8_t bConnectorLocked; //is the EVSE saying the connector is locked + uint8_t vMismatchCount; //count # of consecutive voltage mismatches. Don't trigger until we get enough + uint8_t cMismatchCount; //same but for current + uint8_t vCapCount; //# of EVSE voltage capacity checks that have failed in a row. + uint8_t vOverFault; //over volt fault counter like above. + uint8_t faultCount; //force faults to count up a bit before we actually fault. + uint32_t mismatchStart; + const uint16_t mismatchDelay = 10000; //don't start mismatch checks for 10 seconds + uint32_t stateMilli; + uint16_t stateDelay; + uint32_t insertionTime; + uint32_t lastCommTime; + const uint16_t lastCommTimeout = 1000; //allow up to 1 second of comm fault before getting angry + uint8_t soc; //BMS reported SoC + + CHADEMOSTATE chademoState; + CHADEMOSTATE stateHolder; + EVSE_PARAMS evse_params; + EVSE_STATUS evse_status; + CARSIDE_STATUS carStatus; + + void sendCANStatus(); + void sendCANBattSpecs(); + void sendCANChargingTime(); +}; + +extern CHADEMO chademo; + +#endif diff --git a/ESP32-Chademo/ChademoWebServer.cpp b/ESP32-Chademo/ChademoWebServer.cpp new file mode 100644 index 0000000..8a1135d --- /dev/null +++ b/ESP32-Chademo/ChademoWebServer.cpp @@ -0,0 +1,151 @@ +#include "ChademoWebServer.h" +#include +#include + +AsyncWebServer server(80); +AsyncWebSocket ws("/ws"); +AsyncEventSource events("/events"); + +ChademoWebServer::ChademoWebServer(EESettings& s) : settings{ s } { +} + +AsyncWebSocket& ChademoWebServer::getWebSocket() { + return ws; +} +void ChademoWebServer::execute() { + ws.cleanupClients(); +} + +void ChademoWebServer::broadcast(const char * message) { + ws.printfAll(message); +} + +void ChademoWebServer::setup() +{ + // ws.onEvent(onWsEvent); + server.addHandler(&ws); + + server.on("/wifi", [&] (AsyncWebServerRequest *request) { + bool updated = true; + if(request->hasParam("apSSID", true) && request->hasParam("apPW", true)) + { + WiFi.softAP(request->arg("apSSID").c_str(), request->arg("apPW").c_str()); + } + else if(request->hasParam("staSSID", true) && request->hasParam("staPW", true)) + { + WiFi.mode(WIFI_AP_STA); + WiFi.begin(request->arg("staSSID").c_str(), request->arg("staPW").c_str()); + } + else + { + File file = SPIFFS.open("/wifi.html", "r"); + String html = file.readString(); + file.close(); + html.replace("%staSSID%", WiFi.SSID()); + html.replace("%apSSID%", WiFi.softAPSSID()); + html.replace("%staIP%", WiFi.localIP().toString()); + request->send(200, "text/html", html); + updated = false; + } + + if (updated) + { + request->send(SPIFFS, "/wifi-updated.html"); + } + }); + + server.on("/settings", HTTP_GET, [&] (AsyncWebServerRequest *request) { + AsyncResponseStream *response = request->beginResponseStream("application/json"); + DynamicJsonDocument json(2048); + toJson(settings, json); + serializeJson(json, *response); + request->send(response); + }); + + server.on( + "/settings", + HTTP_POST, + [](AsyncWebServerRequest * request){}, + NULL, + [&](AsyncWebServerRequest * request, uint8_t *data, size_t len, size_t index, size_t total) { + Serial.println("settings POST"); + const size_t JSON_DOC_SIZE = 1024U; + DynamicJsonDocument jsonDoc(JSON_DOC_SIZE); + + if (DeserializationError::Ok == deserializeJson(jsonDoc, (const char*)data)) + { + JsonObject obj = jsonDoc.as(); + fromJson(settings, obj); + EEPROM.put(0, settings); + EEPROM.commit(); + request->send(200, "application/json", "success"); + + } else { + request->send(200, "application/json", "DeserializationError"); + } + }); + + server.on("/edit", + HTTP_POST, + [](AsyncWebServerRequest * request){}, + [&](AsyncWebServerRequest *request, const String& filename, size_t index, uint8_t *data, size_t len, bool final) { + if (!index) { + // open the file on first call and store the file handle in the request object + request->_tempFile = SPIFFS.open("/" + filename, "w"); + + } + + if (len) { + // stream the incoming chunk to the opened file + request->_tempFile.write(data, len); + } + + if (final) { + // close the file handle as the upload is now done + request->_tempFile.close(); + + if (filename.substring(filename.lastIndexOf(".")).equals("bin")) { + Serial.println("Firmware uploaded, restarting"); + request->send(200, "application/json", "restarting"); + ESP.restart(); + } + request->redirect("/"); + } + } + + ); + + server.serveStatic("/", SPIFFS, "/").setDefaultFile("index.html"); + + + // Start server + Serial.println("Starting Web Server"); + + server.begin(); +} + +void ChademoWebServer::toJson(EESettings& settings, DynamicJsonDocument &root) { + root["useBms"] = settings.useBms; + root["ampHours"] = settings.ampHours; + root["packSizeKWH"] = settings.packSizeKWH; + root["maxChargeVoltage"] = settings.maxChargeVoltage; + root["targetChargeVoltage"] = settings.targetChargeVoltage; + root["maxChargeAmperage"] = settings.maxChargeAmperage; + root["minChargeAmperage"] = settings.minChargeAmperage; + root["capacity"] = settings.capacity; + root["debuggingLevel"] = settings.debuggingLevel; +} + +void ChademoWebServer::fromJson(EESettings& settings, JsonObject &doc) { + + settings.useBms = doc["useBms"]; + settings.ampHours = doc["ampHours"]; + settings.packSizeKWH = doc["packSizeKWH"]; + settings.maxChargeVoltage = doc["maxChargeVoltage"]; + settings.targetChargeVoltage = doc["targetChargeVoltage"]; + settings.maxChargeAmperage = doc["maxChargeAmperage"]; + settings.minChargeAmperage = doc["minChargeAmperage"]; + settings.capacity = doc["capacity"]; + settings.debuggingLevel = doc["debuggingLevel"]; + +} diff --git a/ESP32-Chademo/ChademoWebServer.h b/ESP32-Chademo/ChademoWebServer.h new file mode 100644 index 0000000..fbd8329 --- /dev/null +++ b/ESP32-Chademo/ChademoWebServer.h @@ -0,0 +1,21 @@ +#ifndef CHADEMO_WEB_SERVER_H +#define CHADEMO_WEB_SERVER_H +#include +#include "Globals.h" +#include "ESPAsyncWebServer.h" +#include "ArduinoJson.h" + +class ChademoWebServer +{ + public: + ChademoWebServer(EESettings& settings); + void setup(); + void execute(); + void broadcast(const char * message); + AsyncWebSocket& getWebSocket(); + private: + void toJson(EESettings& settings, DynamicJsonDocument &root); + void fromJson(EESettings& settings, JsonObject &doc); + EESettings& settings; +}; +#endif diff --git a/ESP32-Chademo/ESP32-Chademo.ino b/ESP32-Chademo/ESP32-Chademo.ino new file mode 100644 index 0000000..b988078 --- /dev/null +++ b/ESP32-Chademo/ESP32-Chademo.ino @@ -0,0 +1,509 @@ +#include "Globals.h" +#include "Chademo.h" +#include "ISAShunt.h" +#include "ChademoWebServer.h" +#include +#include +#include +#include +#include +#include +#include + +#define LED_PIN 2 +#define HOSTNAME "ESP32-Chademo" + +const unsigned long Interval = 10; +unsigned long Time = 0; +unsigned long ChargeTimeRefSecs = 0; // reference time for charging. +unsigned long PreviousMillis = 0; +unsigned long CurrentMillis = 0; +float Voltage = 0; +float Current = 0; +float Power = 0; +float lastSavedAH = 0; +int Count = 0; +int socketMessage = 0; + +ISA Sensor; +ACAN2515 can1 (MCP2515_CS, SPI, MCP2515_INT) ; +EESettings settings; +ChademoWebServer chademoWebServer(settings); +String cmdStr; +byte Command = 0; // "z" will reset the AmpHours and KiloWattHours counters + +uint16_t uint16Val; +uint16_t uint16Val2; +uint8_t uint8Val; +uint8_t print8Val; +uint8_t help8Val; + +volatile uint8_t timerIntCounter = 0; +volatile uint8_t timerFastCounter = 0; +volatile uint8_t timerChademoCounter = 0; + +hw_timer_t * timer = NULL; +portMUX_TYPE timerMux = portMUX_INITIALIZER_UNLOCKED; + +// +void IRAM_ATTR onTimer() { + portENTER_CRITICAL_ISR(&timerMux); + + timerFastCounter++; + timerChademoCounter++; + if (timerChademoCounter >= 3) + { + timerChademoCounter = 0; + if (chademo.bChademoMode && chademo.bChademoSendRequests) chademo.bChademoRequest = 1; + } + + if (timerFastCounter == 8) + { + timerFastCounter = 0; + timerIntCounter++; + if (timerIntCounter == 18) + { + timerIntCounter = 0; + } + } + portEXIT_CRITICAL_ISR(&timerMux); + +} + +void setup() { + Serial.begin(115200); + delay(4000); + + Serial.println("ESP32-CHADEMO"); + + pinMode(CHADEMO_IN2, INPUT); + pinMode(CHADEMO_IN1, INPUT); + pinMode(LED_PIN, OUTPUT); + digitalWrite(LED_PIN, HIGH); + + //onboard can + // Initialize SPIFFS + if(!SPIFFS.begin(true)){ + Serial.println("An Error has occurred while mounting SPIFFS"); + return; + } + + ACAN_ESP32_Settings canSettings(CAN_BAUD); + canSettings.mRxPin = GPIO_NUM_16; + canSettings.mTxPin = GPIO_NUM_17; + uint16_t errorCode = ACAN_ESP32::can.begin(canSettings); + if (errorCode > 0) { + Serial.print ("Can0 Configuration error 0x") ; + Serial.println (errorCode, HEX) ; + } + SPI.begin(MCP2515_SCK, MCP2515_MISO, MCP2515_MOSI, MCP2515_CS) ; + ACAN2515Settings settings2515 (MCP2515_QUARTZ_FREQUENCY, CAN_BAUD); + errorCode = can1.begin(settings2515, [] { can1.isr () ; }); + if (errorCode > 0) { + Serial.print ("Can1 Configuration error 0x") ; + Serial.println (errorCode, HEX) ; + } + EEPROM.begin(sizeof(settings)); + EEPROM.get(0, settings); + + if (settings.valid != EEPROM_VALID) //not proper version so reset to defaults + { + settings.packSizeKWH = 33.0; //just a random guess. Maybe it should default to zero though? + settings.valid = EEPROM_VALID; + settings.ampHours = 0.0; + settings.kiloWattHours = 0.0; // Is empty kiloWattHours count up + settings.maxChargeAmperage = MAX_CHARGE_A; + settings.maxChargeVoltage = MAX_CHARGE_V; + settings.targetChargeVoltage = TARGET_CHARGE_V; + settings.minChargeAmperage = MIN_CHARGE_A; + settings.capacity = CAPACITY; + settings.debuggingLevel = 1; + Save(); + } + help8Val = 1; + print8Val = 1; + + updateTargetAV(); + + WiFi.mode(WIFI_AP); + WiFi.hostname(HOSTNAME); + WiFi.begin(); + + chademoWebServer.setup(); + + /* 1 tick take 1/(80MHZ/80) = 1us so we set divider 80 and count up */ + timer = timerBegin(0, 80, true); + /* Attach onTimer function to our timer */ + timerAttachInterrupt(timer, &onTimer, true); + + /* Set alarm to call onTimer function every second 1 tick is 1us + => 1 second is 1000000us */ + /* Repeat the alarm (third parameter) */ + timerAlarmWrite(timer, 25000, true); + timerAlarmEnable(timer); +} + +void updateTargetAV() +{ + chademo.setTargetAmperage(settings.maxChargeAmperage); + chademo.setTargetVoltage(settings.targetChargeVoltage); +} + + +void Save() +{ + Serial.println("Saving EEPROM"); + noInterrupts(); + EEPROM.put(0, settings); + EEPROM.commit(); + lastSavedAH = settings.ampHours; + Serial.println (F("SAVED")); + interrupts(); + delay(1000); +} + +void sendStatusToVCU() +{ + CANMessage outFrame; + outFrame.id = 0x354; + outFrame.len = 8; + + outFrame.data[0] = 0x01; //Tell VCU Chademo Active + outFrame.data[1] = chademo.getState(); + outFrame.data[2] = chademo.getEVSEStatus().presentCurrent; + outFrame.data[3] = chademo.getEVSEStatus().presentVoltage; + outFrame.data[4] = 0; //not used + outFrame.data[5] = 0; //not used + outFrame.data[6] = 0; //not used + outFrame.data[7] = 0; //not used + bool sent = can1.tryToSend(outFrame); + if (settings.debuggingLevel > 1) + { + Serial.print(F("CAR: VCU Wake Up: ")); + Serial.println(sent); + + timestamp(); + } + +} + +void timestamp() +{ + int milliseconds = (int) (millis() / 1) % 1000 ; + int seconds = (int) (millis() / 1000) % 60 ; + int minutes = (int) ((millis() / (1000 * 60)) % 60); + int hours = (int) ((millis() / (1000 * 60 * 60)) % 24); + + Serial.print(F(" Time:")); + Serial.print(hours); + Serial.print(F(":")); + Serial.print(minutes); + Serial.print(F(":")); + Serial.print(seconds); + Serial.print(F(".")); + Serial.println(milliseconds); +} + +void RngErr() { + Serial.println(F("Range Error")); +} + +void printHelp() { + help8Val = 0; + Serial.println(F("Commands")); + Serial.println(F("h - prints this message")); + Serial.println(F("z - resets AH/KWH readings")); + Serial.println(F("p - shows settings")); + Serial.println(F("u - updates CHAdeMO settings")); + Serial.println(F("AMIN - Sets min CHAdeMO current")); + Serial.println(F("AMAX - Sets max CHAdeMO current")); + Serial.println(F("V - Sets CHAdeMO voltage target")); + Serial.println(F("VMAX - Sets CHAdeMO max voltage (for protocol reasons)")); + Serial.println(F("CAPAH - Sets pack amp-hours, shunt provides AmpHours consumed")); + Serial.println(F("CAPKWH - Sets pack kilowatt-hours")); + Serial.println(F("DBG - Sets debugging level")); + Serial.println(F("BMS - Sets use to 0 - No BMS, 1 - ESP32 BMS for SoC and cell voltage and temeratures")); + + Serial.println(F("Example: V=395 - sets CHAdeMO voltage target to 395")); +} + +void ParseCommand() { + float fltVal = 0; + if (cmdStr == "V") { + uint16Val = Serial.parseInt(); + if (uint16Val > 0 && uint16Val < 1000) { + settings.targetChargeVoltage = uint16Val; + Save(); + print8Val = 1; + } else { + RngErr(); + } + } + else if (cmdStr == "VMAX") { + uint16Val = Serial.parseInt(); + if (uint16Val > 0 && uint16Val < 1000) { + settings.maxChargeVoltage = uint16Val; + Save(); + print8Val = 1; + } else { + RngErr(); + } + } + else if (cmdStr == "AMIN") { + uint8Val = Serial.parseInt(); + if (uint8Val > 0 && uint8Val < 256) { + settings.minChargeAmperage = uint8Val; + Save(); + print8Val = 1; + } else { + RngErr(); + } + } + else if (cmdStr == "AMAX") { + uint8Val = Serial.parseInt(); + if (uint8Val > 0 && uint8Val < 256) { + settings.maxChargeAmperage = uint8Val; + Save(); + print8Val = 1; + } else { + RngErr(); + } + } + else if (cmdStr == "CAPAH") { + uint8Val = Serial.parseInt(); + if (uint8Val > 0 && uint8Val < 256) { + settings.capacity = uint8Val; + Save(); + print8Val = 1; + } else { + RngErr(); + } + } + else if (cmdStr == "BMS") { + uint8Val = Serial.parseInt(); + if (uint8Val >= 0 && uint8Val < 2) { + settings.useBms = uint8Val == 1; + Save(); + print8Val = 1; + } else { + RngErr(); + } + } + else if (cmdStr == "CAPKWH") { + fltVal = Serial.parseFloat(); + if (fltVal > 0 && fltVal < 100) { + settings.packSizeKWH = fltVal; + Save(); + print8Val = 1; + } else { + RngErr(); + } + } + else if (cmdStr == "DBG") { + uint8Val = Serial.parseInt(); + if (uint8Val >= 0 && uint8Val < 4) { + settings.debuggingLevel = uint8Val; + Save(); + print8Val = 1; + } else { + RngErr(); + } + } + else if (cmdStr == "SAVE") { + Save(); + } + else if (cmdStr == "FULLRESET") { + Serial.println(F("Resetting EEPROM")); + settings.valid = 0; + Save(); + } + else { + help8Val = 1; + } +} + + +void SerialCommand() +{ + int available = Serial.available(); + if (available > 0) + { + Command = Serial.peek(); + + if (Command == 'p') + { + print8Val = 1; + } + else if (Command == 'u') + { + updateTargetAV(); + } + else if (Command == 'h') { + help8Val = 1; + } + else { + cmdStr = Serial.readStringUntil('='); + ParseCommand(); + } + while (Serial.available() > 0) Serial.read(); + } +} + +void printSettings() { + print8Val = 0; + Serial.println (F("-")); + Serial.print (F("AH ")); + Serial.println (settings.ampHours); + Serial.print (F("KWH ")); + Serial.println (settings.kiloWattHours); + Serial.print (F("AMIN ")); + Serial.println (settings.minChargeAmperage, 1); + Serial.print (F("AMAX ")); + Serial.println (settings.maxChargeAmperage, 1); + Serial.print (F("V ")); + Serial.println (settings.targetChargeVoltage, 1); + Serial.print (F("VMAX ")); + Serial.println (settings.maxChargeVoltage, 1); + Serial.print (F("CAPAH ")); + Serial.println (settings.capacity, 1); + Serial.print (F("CAPKWH ")); + Serial.println (settings.packSizeKWH, 2); + Serial.print (F("BMS ")); + Serial.println (settings.useBms, 1); + Serial.print (F("DBG ")); + Serial.println (settings.debuggingLevel, 1); + Serial.println (F("-")); +} + +void outputState() { + + Serial.print (F("ESP32: ")); + Serial.print (Voltage, 3); + Serial.print (F("v ")); + Serial.print (Current, 2); + Serial.print (F("A ")); + Serial.print (settings.ampHours, 1); + Serial.print (F("Ah ")); + Serial.print (Power, 1); + Serial.print (F("kW ")); + Serial.print (settings.kiloWattHours, 1); + Serial.print (F("kWh ")); + Serial.print (F("OUT1")); + Serial.print (digitalRead(CHADEMO_OUT1) > 0 ? F(":1 ") : F(":0 ")); + Serial.print (F("OUT2")); + Serial.print (digitalRead(CHADEMO_OUT2) > 0 ? F(":1 ") : F(":0 ")); + Serial.print (F("IN1")); + Serial.print (!digitalRead(CHADEMO_IN1) > 0 ? F(":1 ") : F(":0 ")); + Serial.print (F("IN2")); + Serial.print (!digitalRead(CHADEMO_IN2) > 0 ? F(":1 ") : F(":0 ")); + Serial.print (F("CHG T: ")); + Serial.println (CurrentMillis / 1000 - ChargeTimeRefSecs); +} + +void broadcastMessage() { + DynamicJsonDocument json(1024); + char buffer[1024]; // create temp buffer + switch(socketMessage) { + case 0: { + json["voltage"] = Sensor.Voltage; + json["amperage"] = Sensor.Amperes; + json["power"] = Sensor.KW; + json["ampHours"] = Sensor.AH; + + size_t len = serializeJson(json, buffer); // serialize to buffe + chademoWebServer.getWebSocket().textAll(buffer, len); + } + case 1: { + //chademo status + json["chademoState"] = chademo.getState(); + json["EVSEAvailableVoltage"] = chademo.getEVSEParams().availVoltage; + json["EVSEAvailableCurrent"] = chademo.getEVSEParams().availCurrent; + json["EVSEThresholdVoltage"] = chademo.getEVSEParams().thresholdVoltage; + + size_t len = serializeJson(json, buffer); // serialize to buffe + chademoWebServer.getWebSocket().textAll(buffer, len); + } + case 2: { + //car status + json["OUT1"] = digitalRead(CHADEMO_OUT1); + json["OUT2"] = digitalRead(CHADEMO_OUT2); + json["IN1"] = !digitalRead(CHADEMO_IN1); + json["IN2"] =!digitalRead(CHADEMO_IN2); + + size_t len = serializeJson(json, buffer); // serialize to buffe + chademoWebServer.getWebSocket().textAll(buffer, len); + } + } + socketMessage++; + if (socketMessage > 2) { + socketMessage = 0; + } +} + +void loop() { + + uint8_t pos; + CurrentMillis = millis(); + uint8_t len; + CANMessage inFrame; + float tempReading; + +#ifdef DEBUG_TIMING + if (debugTick == 1) + { + debugTick = 0; + Serial.println(millis()); + } +#endif + chademo.loop(); + chademoWebServer.execute(); + if (CurrentMillis - PreviousMillis >= Interval) + { + Time = CurrentMillis - PreviousMillis; + PreviousMillis = CurrentMillis; + + Count++; + Voltage = Sensor.Voltage; + Current = Sensor.Amperes; + settings.ampHours = Sensor.AH; + Power = Sensor.KW; + + //Count down kiloWattHours when drawing current. + //Count up when charging (Current/Power is negative) + settings.kiloWattHours = Sensor.KWH; + + chademo.doProcessing(); + + if (Count >= 50) + { + digitalWrite(LED_PIN, !digitalRead(LED_PIN)); + Count = 0; + SerialCommand(); +// #ifdef SIMPBMS +// chademo.setStateOfCharge(simpbms.getStateOfCharge()); +// #endif + sendStatusToVCU(); + broadcastMessage(); + + if (print8Val > 0) + printSettings(); + else + outputState(); + if (help8Val > 0) + printHelp(); + if (chademo.bChademoMode) + { + if (settings.debuggingLevel > 0) { + Serial.print(F("Chademo Mode: ")); + Serial.println(chademo.getState()); + } + } + } + } + if (ACAN_ESP32::can.receive(inFrame)) { + chademo.handleCANFrame(inFrame); + } + if (can1.receive(inFrame)) { + Sensor.handleCANFrame(inFrame); + } +} diff --git a/ESP32-Chademo/Globals.h b/ESP32-Chademo/Globals.h new file mode 100644 index 0000000..301dba9 --- /dev/null +++ b/ESP32-Chademo/Globals.h @@ -0,0 +1,50 @@ +#ifndef GLOBALS_H_ +#define GLOBALS_H_ + +#define CHADEMO_IN1 34 +#define CHADEMO_IN2 35 + +#define CHADEMO_OUT1 32//?? +#define CHADEMO_OUT2 33//?? + +#define MCP2515_CS 5// CS input of MCP2515 +#define MCP2515_INT 27 // INT output of MCP2515 +#define MCP2515_SCK 18 +#define MCP2515_QUARTZ_FREQUENCY 16000000 +#define MCP2515_MISO 19 +#define MCP2515_MOSI 23 + +#define CAN_BAUD 500000 +#define min(a, b) (((a) < (b)) ? (a) : (b)) +#define EEPROM_VALID 0xEE + +//These have been moved to eeprom. After initial compile the values will be read from EEPROM. +//These thus set the default value to write to eeprom upon first start up +#define MAX_CHARGE_V 158 +#define MAX_CHARGE_A 130 +#define TARGET_CHARGE_V 160 +#define MIN_CHARGE_A 20 +#define CAPACITY 180 + +typedef struct +{ + uint8_t valid; //a token to store EEPROM version and validity. If it matches expected value then EEPROM is not reset to defaults //0 + float ampHours; //floats are 4 bytes //1 + float kiloWattHours; //5 + float packSizeKWH; //9 + uint16_t maxChargeVoltage; //21 + uint16_t targetChargeVoltage; //23 + uint8_t maxChargeAmperage; //25 + uint8_t minChargeAmperage; //26 + uint8_t capacity; //27 + uint8_t debuggingLevel; //29 + bool useBms; +} EESettings; + +extern EESettings settings; +extern float Voltage; +extern float Current; +extern unsigned long CurrentMillis; +extern int Count; + +#endif diff --git a/ESP32-Chademo/ISAShunt.cpp b/ESP32-Chademo/ISAShunt.cpp new file mode 100644 index 0000000..43cb956 --- /dev/null +++ b/ESP32-Chademo/ISAShunt.cpp @@ -0,0 +1,164 @@ +#include "ISAShunt.h" + +ISA::ISA() // Define the constructor. +{ + + timestamp = millis(); + debug=false; + debug2=false; + framecount=0; + firstframe=true; +} + + +ISA::~ISA() //Define destructor +{ +} + +void ISA::handle521(CANMessage &frame) //AMperes + +{ + framecount++; + long current=0; + current = (long)((frame.data[5] << 24) | (frame.data[4] << 16) | (frame.data[3] << 8) | (frame.data[2])); + + milliamps=current; + Amperes=current/1000.0f; +} + +void ISA::handle522(CANMessage &frame) //Voltage + +{ + framecount++; + long volt=0; + volt = (long)((frame.data[5] << 24) | (frame.data[4] << 16) | (frame.data[3] << 8) | (frame.data[2])); + + Voltage=volt/1000.0f; + Voltage1=Voltage-(Voltage2+Voltage3); + if(framecount<150) + { + VoltageLO=Voltage; + Voltage1LO=Voltage1; + } + if(Voltage150)VoltageLO=Voltage; + if(Voltage>VoltageHI && framecount>150)VoltageHI=Voltage; + if(Voltage1150)Voltage1LO=Voltage1; + if(Voltage1>Voltage1HI && framecount>150)Voltage1HI=Voltage1; + +} + +void ISA::handle523(CANMessage &frame) //Voltage2 + +{ + framecount++; + long volt=0; + volt = (long)((frame.data[5] << 24) | (frame.data[4] << 16) | (frame.data[3] << 8) | (frame.data[2])); + + Voltage2=volt/1000.0f; + if(Voltage2>3)Voltage2-=Voltage3; + if(framecount<150)Voltage2LO=Voltage2; + if(Voltage2150)Voltage2LO=Voltage2; + if(Voltage2>Voltage2HI&& framecount>150)Voltage2HI=Voltage2; + +} + +void ISA::handle524(CANMessage &frame) //Voltage3 +{ + framecount++; + long volt=0; + volt = (long)((frame.data[5] << 24) | (frame.data[4] << 16) | (frame.data[3] << 8) | (frame.data[2])); + + Voltage3=volt/1000.0f; + if(framecount<150)Voltage3LO=Voltage3; + if(Voltage3150 && Voltage3>10)Voltage3LO=Voltage3; + if(Voltage3>Voltage3HI && framecount>150)Voltage3HI=Voltage3; +} + +void ISA::handle525(CANMessage &frame) //Temperature + +{ + framecount++; + long temp=0; + temp = (long)((frame.data[5] << 24) | (frame.data[4] << 16) | (frame.data[3] << 8) | (frame.data[2])); + + Temperature=temp/10; + +} + + + +void ISA::handle526(CANMessage &frame) //Kilowatts +{ + framecount++; + watt=0; + watt = (long)((frame.data[5] << 24) | (frame.data[4] << 16) | (frame.data[3] << 8) | (frame.data[2])); + + KW=watt/1000.0f; + +} + + +void ISA::handle527(CANMessage &frame) //Ampere-Hours +{ + framecount++; + As=0; + As = (frame.data[5] << 24) | (frame.data[4] << 16) | (frame.data[3] << 8) | (frame.data[2]); + + AH+=(As-lastAs)/3600.0f; + lastAs=As; + +} + +void ISA::handle528(CANMessage &frame) //kiloWatt-hours +{ + framecount++; + + wh = (long)((frame.data[5] << 24) | (frame.data[4] << 16) | (frame.data[3] << 8) | (frame.data[2])); + KWH+=(wh-lastWh)/1000.0f; + lastWh=wh; + +} + + + +void ISA::handleCANFrame(CANMessage &frame) { + + switch (frame.id) + { + case 0x511: + + break; + + case 0x521: + handle521(frame); + break; + + case 0x522: + handle522(frame); + break; + + case 0x523: + handle523(frame); + break; + + case 0x524: + handle524(frame); + break; + + case 0x525: + handle525(frame); + break; + + case 0x526: + handle526(frame); + break; + + case 0x527: + handle527(frame); + break; + + case 0x528: + handle528(frame); + break; + } +} diff --git a/ESP32-Chademo/ISAShunt.h b/ESP32-Chademo/ISAShunt.h new file mode 100644 index 0000000..6fb017e --- /dev/null +++ b/ESP32-Chademo/ISAShunt.h @@ -0,0 +1,67 @@ +#ifndef ISAShunt_h +#define ISAShunt_h + +#include + +class ISA +{ + + public: + ISA(); + ~ISA(); + void handleCANFrame(CANMessage &frame); + + float Amperes; // Floating point with current in Amperes + double AH; //Floating point with accumulated ampere-hours + double KW; + double KWH; + + + double Voltage; + double Voltage1; + double Voltage2; + double Voltage3; + double VoltageHI; + double Voltage1HI; + double Voltage2HI; + double Voltage3HI; + double VoltageLO; + double Voltage1LO; + double Voltage2LO; + double Voltage3LO; + + double Temperature; + + bool debug; + bool debug2; + bool firstframe; + int framecount; + unsigned long timestamp; + double milliamps; + long watt; + long As; + long lastAs; + long wh; + long lastWh; + uint8_t canEnPin; + int canSpeed; + uint8_t page; + + private: + unsigned long elapsedtime; + double ampseconds; + int milliseconds ; + int seconds; + int minutes; + int hours; + void handle521(CANMessage &frame); + void handle522(CANMessage &frame); + void handle523(CANMessage &frame); + void handle524(CANMessage &frame); + void handle525(CANMessage &frame); + void handle526(CANMessage &frame); + void handle527(CANMessage &frame); + void handle528(CANMessage &frame); +}; + +#endif diff --git a/ESP32-Chademo/data/gauges.js b/ESP32-Chademo/data/gauges.js new file mode 100644 index 0000000..445c172 --- /dev/null +++ b/ESP32-Chademo/data/gauges.js @@ -0,0 +1,316 @@ +var chartSoc, chartTemp, chartCurrent, chartChargerCurrent, chartChargerTemp, chartChargerVolts + +var updateGauge = function(key, value) { + + if (key == 'voltage') { + updateVoltage(value) + } else if (key == 'amperage') { + updateCurrent(value) + } else if (key == 'power') { + updatePower(value) + } + +}; + +var updateCurrent = function(newVal) { + if (chartCurrent) { + point = chartCurrent.series[0].points[0]; + point.update(Math.round(newVal * -1)); + } +} + +var updatePower = function(newVal) { + if (chartPower) { + point = chartPower.series[0].points[0]; + point.update(Math.round(newVal * -1)); + } +} + +var updateVoltage = function(newVal) { + if (chartVoltage) { + point = chartVoltage.series[0].points[0]; + point.update(Math.round(newVal)); + } +} + +var initGauges = function() { + + + var initCurrentGauge = function() { + var gaugeOptions = { + chart: { + type: 'solidgauge' + }, + + title: null, + + pane: { + center: ['50%', '85%'], + size: '140%', + startAngle: -90, + endAngle: 90, + background: { + backgroundColor: + Highcharts.defaultOptions.legend.backgroundColor || '#EEE', + innerRadius: '60%', + outerRadius: '100%', + shape: 'arc' + } + }, + + exporting: { + enabled: false + }, + + tooltip: { + enabled: false + }, + + // the value axis + yAxis: { + stops: [ + [0.9, '#55BF3B'], // green + [0.8, '#DDDF0D'], // yellow + [0.1, '#DF5353'] // red + ], + lineWidth: 0, + tickWidth: 0, + minorTickInterval: null, + tickAmount: 2, + title: { + y: -70 + }, + labels: { + y: 16 + } + }, + + plotOptions: { + solidgauge: { + dataLabels: { + y: 5, + borderWidth: 0, + useHTML: true + } + } + } + }; + + chartCurrent = Highcharts.chart('container-current', Highcharts.merge(gaugeOptions, { + yAxis: { + min: 0, + max: 100, + title: { + text: 'Current' + } + }, + + credits: { + enabled: false + }, + + series: [{ + name: 'Current', + data: [0], + dataLabels: { + format: + '
' + + '{y}
' + + 'A' + + '
' + }, + tooltip: { + valueSuffix: ' A' + } + }] + + })); + } + + var initVoltageGauge = function() { + var gaugeOptions = { + chart: { + type: 'solidgauge' + }, + + title: null, + + pane: { + center: ['50%', '85%'], + size: '140%', + startAngle: -90, + endAngle: 90, + background: { + backgroundColor: + Highcharts.defaultOptions.legend.backgroundColor || '#EEE', + innerRadius: '60%', + outerRadius: '100%', + shape: 'arc' + } + }, + + exporting: { + enabled: false + }, + + tooltip: { + enabled: false + }, + + // the value axis + yAxis: { + stops: [ + [0.1, '#DF5353'], // red + [0.3, '#DDDF0D'], // yellow + [0.4, '#55BF3B'] // green + ], + lineWidth: 0, + tickWidth: 0, + minorTickInterval: null, + tickAmount: 2, + title: { + y: -70 + }, + labels: { + y: 16 + } + }, + + plotOptions: { + solidgauge: { + dataLabels: { + y: 5, + borderWidth: 0, + useHTML: true + } + } + } + }; + + chartVoltage = Highcharts.chart('container-voltage', Highcharts.merge(gaugeOptions, { + yAxis: { + min: 0, + max: 100, + title: { + text: 'Voltage' + } + }, + + credits: { + enabled: false + }, + + series: [{ + name: 'Voltage', + data: [10], + dataLabels: { + format: + '
' + + '{y}
' + + 'V' + + '
' + }, + tooltip: { + valueSuffix: 'V' + } + }] + + })); + } + + var initPowerGauge = function() { + var gaugeOptions = { + chart: { + type: 'solidgauge' + }, + + title: null, + + pane: { + center: ['50%', '85%'], + size: '140%', + startAngle: -90, + endAngle: 90, + background: { + backgroundColor: + Highcharts.defaultOptions.legend.backgroundColor || '#EEE', + innerRadius: '60%', + outerRadius: '100%', + shape: 'arc' + } + }, + + exporting: { + enabled: false + }, + + tooltip: { + enabled: false + }, + + // the value axis + yAxis: { + stops: [ + [0.9, '#55BF3B'], // green + [0.8, '#DDDF0D'], // yellow + [0.1, '#DF5353'] // red + ], + lineWidth: 0, + tickWidth: 0, + minorTickInterval: null, + tickAmount: 2, + title: { + y: -70 + }, + labels: { + y: 16 + } + }, + + plotOptions: { + solidgauge: { + dataLabels: { + y: 5, + borderWidth: 0, + useHTML: true + } + } + } + }; + + chartPower = Highcharts.chart('container-power', Highcharts.merge(gaugeOptions, { + yAxis: { + min: 0, + max: 100, + title: { + text: 'Power' + } + }, + + credits: { + enabled: false + }, + + series: [{ + name: 'Power', + data: [0], + dataLabels: { + format: + '
' + + '{y}
' + + 'KW' + + '
' + }, + tooltip: { + valueSuffix: ' KW' + } + }] + + })); + } + + initVoltageGauge(); + initCurrentGauge(); + initPowerGauge(); + +} \ No newline at end of file diff --git a/ESP32-Chademo/data/highcharts-more.js b/ESP32-Chademo/data/highcharts-more.js new file mode 100755 index 0000000..3718c35 --- /dev/null +++ b/ESP32-Chademo/data/highcharts-more.js @@ -0,0 +1,160 @@ +/* + Highcharts JS v8.0.0 (2019-12-10) + + (c) 2009-2018 Torstein Honsi + + License: www.highcharts.com/license +*/ +(function(t){"object"===typeof module&&module.exports?(t["default"]=t,module.exports=t):"function"===typeof define&&define.amd?define("highcharts/highcharts-more",["highcharts"],function(A){t(A);t.Highcharts=A;return t}):t("undefined"!==typeof Highcharts?Highcharts:void 0)})(function(t){function A(b,a,r,g){b.hasOwnProperty(a)||(b[a]=g.apply(null,r))}t=t?t._modules:{};A(t,"parts-more/Pane.js",[t["parts/Globals.js"],t["parts/Utilities.js"]],function(b,a){function r(a,e){this.init(a,e)}var g=a.extend, +m=a.splat,k=b.CenteredSeriesMixin,w=b.merge;b.Chart.prototype.collectionsWithUpdate.push("pane");g(r.prototype,{coll:"pane",init:function(a,e){this.chart=e;this.background=[];e.pane.push(this);this.setOptions(a)},setOptions:function(a){this.options=w(this.defaultOptions,this.chart.angular?{background:{}}:void 0,a)},render:function(){var a=this.options,e=this.options.background,l=this.chart.renderer;this.group||(this.group=l.g("pane-group").attr({zIndex:a.zIndex||0}).add());this.updateCenter();if(e)for(e= +m(e),a=Math.max(e.length,this.background.length||0),l=0;lc?0:c,this.center[2]/2)-this.offset)},postTranslate:function(c,f){var q=this.chart,p=this.center;c=this.startAngleRad+c;return{x:q.plotLeft+p[0]+Math.cos(c)*f,y:q.plotTop+p[1]+Math.sin(c)*f}},getPlotBandPath:function(c,f,q){var p=this.center, +d=this.startAngleRad,h=p[2]/2,v=[k(q.outerRadius,"100%"),q.innerRadius,k(q.thickness,10)],a=Math.min(this.offset,0),n=/%$/;var e=this.isCircular;if("polygon"===this.options.gridLineInterpolation)v=this.getPlotLinePath({value:c}).concat(this.getPlotLinePath({value:f,reverse:!0}));else{c=Math.max(c,this.min);f=Math.min(f,this.max);e||(v[0]=this.translate(c),v[1]=this.translate(f));v=v.map(function(f){n.test(f)&&(f=w(f,10)*h/100);return f});if("circle"!==q.shape&&e)c=d+this.translate(c),f=d+this.translate(f); +else{c=-Math.PI/2;f=1.5*Math.PI;var g=!0}v[0]-=a;v[2]-=a;v=this.chart.renderer.symbols.arc(this.left+p[0],this.top+p[1],v[0],v[0],{start:Math.min(c,f),end:Math.max(c,f),innerR:k(v[1],v[0]-v[2]),open:g});e&&(e=(f+c)/2,a=this.left+p[0]+p[2]/2*Math.cos(e),v.xBounds=e>-Math.PI/2&&e-Math.PI&&0>e||e>Math.PI?-10:10)}return v},getCrosshairPosition:function(c,f,q){var p=c.value;if(this.isCircular){if(g(p))c.point&& +(d=c.point.shapeArgs||{},d.start&&(p=this.translate(c.point.rectPlotY,!0)));else{var d=c.chartX||0;var a=c.chartY||0;p=this.translate(Math.atan2(a-q,d-f)-this.startAngleRad,!0)}c=this.getPosition(p);d=c.x;a=c.y}else g(p)||(d=c.chartX,a=c.chartY),g(d)&&g(a)&&(p=this.translate(Math.min(Math.sqrt(Math.pow(d-f,2)+Math.pow(a-q,2)),this.len),!0));return[p,d||0,a||0]},getPlotLinePath:function(c){var f=this,q=f.center,p=f.chart,d=p.inverted,a=c.value,e=c.reverse,h=f.getPosition(a),n=f.pane.options.background? +f.pane.options.background[0]||f.pane.options.background:{},g=n.innerRadius||"0%",l=n.outerRadius||"100%";n=q[0]+p.plotLeft;q=q[1]+p.plotTop;var b=h.x;h=h.y;var u,m;c.isCrosshair&&(h=this.getCrosshairPosition(c,n,q),a=h[0],b=h[1],h=h[2]);if(f.isCircular){e="string"===typeof g?z(g,1):g/Math.sqrt(Math.pow(b-n,2)+Math.pow(h-q,2));c="string"===typeof l?z(l,1):l/Math.sqrt(Math.pow(b-n,2)+Math.pow(h-q,2));var r=["M",n+e*(b-n),q-e*(q-h),"L",b-(1-c)*(b-n),h+(1-c)*(q-h)]}else a=f.translate(a),!c.isCrosshair&& +(0>a||a>f.height)&&d&&(a=0),"circle"===f.options.gridLineInterpolation?r=f.getLinePath(0,a):(p[d?"yAxis":"xAxis"].forEach(function(c){c.pane===f.pane&&(u=c)}),r=[],n=u.tickPositions,u.autoConnect&&(n=n.concat([n[0]])),e&&(n=[].concat(n).reverse()),n.forEach(function(f,c){m=u.getPosition(f,a);r.push(c?"L":"M",m.x,m.y)}));return r},getTitlePosition:function(){var c=this.center,f=this.chart,q=this.options.title;return{x:f.plotLeft+c[0]+(q.x||0),y:f.plotTop+c[1]-{high:.5,middle:.25,low:0}[q.align]*c[2]+ +(q.y||0)}},createLabelCollector:function(){var c=this;return function(){if(c.isRadial&&c.tickPositions&&!0!==c.options.labels.allowOverlap)return c.tickPositions.map(function(f){return c.ticks[f]&&c.ticks[f].label}).filter(function(f){return!!f})}}};e(l,"init",function(c){var f=this.chart,q=f.inverted,d=f.angular,a=f.polar,h=this.isXAxis,e=this.coll,g=d&&h,l,b=f.options;c=c.userOptions.pane||0;c=this.pane=f.pane&&f.pane[c];if("colorAxis"===e)this.isRadial=!1;else{if(d){if(m(this,g?n:p),l=!h)this.defaultPolarOptions= +this.defaultRadialGaugeOptions}else a&&(m(this,p),this.defaultPolarOptions=(l=this.horiz)?this.defaultCircularOptions:u("xAxis"===e?this.defaultOptions:this.defaultYAxisOptions,this.defaultRadialOptions),q&&"yAxis"===e&&(this.defaultPolarOptions.stackLabels=this.defaultYAxisOptions.stackLabels));d||a?(this.isRadial=!0,b.chart.zoomType=null,this.labelCollector||(this.labelCollector=this.createLabelCollector()),this.labelCollector&&f.labelCollectors.push(this.labelCollector)):this.isRadial=!1;c&&l&& +(c.axis=this);this.isCircular=l}});e(l,"afterInit",function(){var c=this.chart,f=this.options,q=this.pane,p=q&&q.options;c.angular&&this.isXAxis||!q||!c.angular&&!c.polar||(this.angleRad=(f.angle||0)*Math.PI/180,this.startAngleRad=(p.startAngle-90)*Math.PI/180,this.endAngleRad=(k(p.endAngle,p.startAngle+360)-90)*Math.PI/180,this.offset=f.offset||0)});e(l,"autoLabelAlign",function(c){this.isRadial&&(c.align=void 0,c.preventDefault())});e(l,"destroy",function(){if(this.chart&&this.chart.labelCollectors){var c= +this.chart.labelCollectors.indexOf(this.labelCollector);0<=c&&this.chart.labelCollectors.splice(c,1)}});e(d,"afterGetPosition",function(c){this.axis.getPosition&&m(c.pos,this.axis.getPosition(this.pos))});e(d,"afterGetLabelPosition",function(c){var f=this.axis,q=this.label,p=q.getBBox(),d=f.options.labels,a=d.y,h=20,n=d.align,e=(f.translate(this.pos)+f.startAngleRad+Math.PI/2)/Math.PI*180%360,l=Math.round(e),g="end",b=0>l?l+360:l,u=b,m=0,r=0,B=null===d.y?.3*-p.height:0;if(f.isRadial){var x=f.getPosition(this.pos, +f.center[2]/2+z(k(d.distance,-25),f.center[2]/2,-f.center[2]/2));"auto"===d.rotation?q.attr({rotation:e}):null===a&&(a=f.chart.renderer.fontMetrics(q.styles&&q.styles.fontSize).b-p.height/2);null===n&&(f.isCircular?(p.width>f.len*f.tickInterval/(f.max-f.min)&&(h=0),n=e>h&&e<180-h?"left":e>180+h&&e<360-h?"right":"center"):n="center",q.attr({align:n}));if("auto"===n&&2===f.tickPositions.length&&f.isCircular){90b?b=180-b:270=b&&(b=540-b);180=u&&(u=360-u);if(f.pane.options.startAngle=== +l||f.pane.options.startAngle===l+360||f.pane.options.startAngle===l-360)g="start";n=-90<=l&&90>=l||-360<=l&&-270>=l||270<=l&&360>=l?"start"===g?"right":"left":"start"===g?"left":"right";70u&&(n="center");15>b||180<=b&&195>b?m=.3*p.height:15<=b&&35>=b?m="start"===g?0:.75*p.height:195<=b&&215>=b?m="start"===g?.75*p.height:0:35=b?m="start"===g?.25*-p.height:p.height:215=b&&(m="start"===g?p.height:.25*-p.height);15>u?r="start"===g?.15*-p.height:.15*p.height:165=u&&(r="start"=== +g?.15*p.height:.15*-p.height);q.attr({align:n});q.translate(r,m+B)}c.pos.x=x.x+d.x;c.pos.y=x.y+a}});a(x,"getMarkPath",function(c,f,q,p,d,a,h){var n=this.axis;n.isRadial?(c=n.getPosition(this.pos,n.center[2]/2+p),f=["M",f,q,"L",c.x,c.y]):f=c.call(this,f,q,p,d,a,h);return f})});A(t,"parts-more/AreaRangeSeries.js",[t["parts/Globals.js"],t["parts/Utilities.js"]],function(b,a){var r=a.defined,g=a.extend,m=a.isArray,k=a.isNumber,w=a.pick;a=b.seriesType;var z=b.seriesTypes,e=b.Series.prototype,l=b.Point.prototype; +a("arearange","area",{lineWidth:1,threshold:null,tooltip:{pointFormat:'\u25cf {series.name}: {point.low} - {point.high}
'},trackByArea:!0,dataLabels:{align:null,verticalAlign:null,xLow:0,xHigh:0,yLow:0,yHigh:0}},{pointArrayMap:["low","high"],pointValKey:"low",deferTranslatePolar:!0,toYData:function(a){return[a.low,a.high]},highToXY:function(a){var h=this.chart,d=this.xAxis.postTranslate(a.rectPlotX,this.yAxis.len-a.plotHigh);a.plotHighX= +d.x-h.plotLeft;a.plotHigh=d.y-h.plotTop;a.plotLowX=a.plotX},translate:function(){var a=this,h=a.yAxis,d=!!a.modifyValue;z.area.prototype.translate.apply(a);a.points.forEach(function(e){var b=e.high,n=e.plotY;e.isNull?e.plotY=null:(e.plotLow=n,e.plotHigh=h.translate(d?a.modifyValue(b,e):b,0,1,0,1),d&&(e.yBottom=e.plotHigh))});this.chart.polar&&this.points.forEach(function(d){a.highToXY(d);d.tooltipPos=[(d.plotHighX+d.plotLowX)/2,(d.plotHigh+d.plotLow)/2]})},getGraphPath:function(a){var e=[],d=[],b, +l=z.area.prototype.getGraphPath;var n=this.options;var p=this.chart.polar&&!1!==n.connectEnds,c=n.connectNulls,f=n.step;a=a||this.points;for(b=a.length;b--;){var q=a[b];q.isNull||p||c||a[b+1]&&!a[b+1].isNull||d.push({plotX:q.plotX,plotY:q.plotY,doCurve:!1});var F={polarPlotY:q.polarPlotY,rectPlotX:q.rectPlotX,yBottom:q.yBottom,plotX:w(q.plotHighX,q.plotX),plotY:q.plotHigh,isNull:q.isNull};d.push(F);e.push(F);q.isNull||p||c||a[b-1]&&!a[b-1].isNull||d.push({plotX:q.plotX,plotY:q.plotY,doCurve:!1})}a= +l.call(this,a);f&&(!0===f&&(f="left"),n.step={left:"right",center:"center",right:"left"}[f]);e=l.call(this,e);d=l.call(this,d);n.step=f;n=[].concat(a,e);this.chart.polar||"M"!==d[0]||(d[0]="L");this.graphPath=n;this.areaPath=a.concat(d);n.isArea=!0;n.xMap=a.xMap;this.areaPath.xMap=a.xMap;return n},drawDataLabels:function(){var a=this.points,h=a.length,d,b=[],l=this.options.dataLabels,n,p=this.chart.inverted;if(m(l))if(1n.plotLow;n.y=n.high;n._plotY=n.plotY;n.plotY=n.plotHigh;b[d]=n.dataLabel;n.dataLabel=n.dataLabelUpper;n.below=q;p?c.align||(c.align=q?"right":"left"):c.verticalAlign||(c.verticalAlign=q?"top":"bottom")}this.options.dataLabels=c;e.drawDataLabels&&e.drawDataLabels.apply(this,arguments);for(d=h;d--;)if(n=a[d])n.dataLabelUpper=n.dataLabel,n.dataLabel= +b[d],delete n.dataLabels,n.y=n.low,n.plotY=n._plotY}if(f.enabled||this._hasPointLabels){for(d=h;d--;)if(n=a[d])q=f.inside?n.plotHighn.plotLow,n.below=!q,p?f.align||(f.align=q?"left":"right"):f.verticalAlign||(f.verticalAlign=q?"bottom":"top");this.options.dataLabels=f;e.drawDataLabels&&e.drawDataLabels.apply(this,arguments)}if(c.enabled)for(d=h;d--;)if(n=a[d])n.dataLabels=[n.dataLabelUpper,n.dataLabel].filter(function(f){return!!f});this.options.dataLabels=l},alignDataLabel:function(){z.column.prototype.alignDataLabel.apply(this, +arguments)},drawPoints:function(){var a=this.points.length,h;e.drawPoints.apply(this,arguments);for(h=0;hC&&(C*=-1,e-=C);k?(d=c.barX+h,c.shapeType="path",c.shapeArgs={d:a.polarArc(e+C,e,d,d+c.pointWidth)}):(f.height=C,f.y=e,c.tooltipPos=m.inverted? +[l.len+l.pos-m.plotLeft-e-C/2,b.len+b.pos-m.plotTop-f.x-f.width/2,C]:[b.left-m.plotLeft+f.x+f.width/2,l.pos-m.plotTop+e+C/2,C])})},directTouch:!0,trackerGroups:["group","dataLabelsGroup"],drawGraph:k,getSymbol:k,crispCol:function(){return z.crispCol.apply(this,arguments)},drawPoints:function(){return z.drawPoints.apply(this,arguments)},drawTracker:function(){return z.drawTracker.apply(this,arguments)},getColumnMetrics:function(){return z.getColumnMetrics.apply(this,arguments)},pointAttribs:function(){return z.pointAttribs.apply(this, +arguments)},animate:function(){return z.animate.apply(this,arguments)},polarArc:function(){return z.polarArc.apply(this,arguments)},translate3dPoints:function(){return z.translate3dPoints.apply(this,arguments)},translate3dShapes:function(){return z.translate3dShapes.apply(this,arguments)}},{setState:z.pointClass.prototype.setState});""});A(t,"parts-more/ColumnPyramidSeries.js",[t["parts/Globals.js"],t["parts/Utilities.js"]],function(b,a){var r=a.clamp,g=a.pick;a=b.seriesType;var m=b.seriesTypes.column.prototype; +a("columnpyramid","column",{},{translate:function(){var a=this,b=a.chart,z=a.options,e=a.dense=2>a.closestPointRange*a.xAxis.transA;e=a.borderWidth=g(z.borderWidth,e?0:1);var l=a.yAxis,u=z.threshold,h=a.translatedThreshold=l.getThreshold(u),d=g(z.minPointLength,5),B=a.getColumnMetrics(),x=B.width,n=a.barW=Math.max(x,1+2*e),p=a.pointXOffset=B.offset;b.inverted&&(h-=.5);z.pointPadding&&(n=Math.ceil(n));m.translate.apply(a);a.points.forEach(function(c){var f=g(c.yBottom,h),q=999+Math.abs(f),e=r(c.plotY, +-q,l.len+q);q=c.plotX+p;var C=n/2,E=Math.min(e,f);f=Math.max(e,f)-E;c.barX=q;c.pointWidth=x;c.tooltipPos=b.inverted?[l.len+l.pos-b.plotLeft-e,a.xAxis.len-q-C,f]:[q+C,e+l.pos-b.plotTop,f];e=u+(c.total||c.y);"percent"===z.stacking&&(e=u+(0>c.y)?-100:100);e=l.toPixels(e,!0);var v=b.plotHeight-e-(b.plotHeight-h);var m=C*(E-e)/v;var k=C*(E+f-e)/v;v=q-m+C;m=q+m+C;var w=q+k+C;k=q-k+C;var B=E-d;var y=E+f;0>c.y&&(B=E,y=E+f+d);b.inverted&&(w=b.plotWidth-E,v=e-(b.plotWidth-h),m=C*(e-w)/v,k=C*(e-(w-f))/v,v=q+ +C+m,m=v-2*m,w=q-k+C,k=q+k+C,B=E,y=E+f-d,0>c.y&&(y=E+f+d));c.shapeType="path";c.shapeArgs={x:v,y:B,width:m-v,height:f,d:["M",v,B,"L",m,B,w,y,k,y,"Z"]}})}});""});A(t,"parts-more/GaugeSeries.js",[t["parts/Globals.js"],t["parts/Utilities.js"]],function(b,a){var r=a.clamp,g=a.isNumber,m=a.pick,k=a.pInt,w=b.merge,z=b.Series;a=b.seriesType;var e=b.TrackerMixin;a("gauge","line",{dataLabels:{borderColor:"#cccccc",borderRadius:3,borderWidth:1,crop:!1,defer:!1,enabled:!0,verticalAlign:"top",y:15,zIndex:2},dial:{}, +pivot:{},tooltip:{headerFormat:""},showInLegend:!1},{angular:!0,directTouch:!0,drawGraph:b.noop,fixedBox:!0,forceDL:!0,noSharedTooltip:!0,trackerGroups:["group","dataLabelsGroup"],translate:function(){var a=this.yAxis,e=this.options,h=a.center;this.generatePoints();this.points.forEach(function(d){var b=w(e.dial,d.dial),l=k(m(b.radius,"80%"))*h[2]/200,n=k(m(b.baseLength,"70%"))*l/100,p=k(m(b.rearLength,"10%"))*l/100,c=b.baseWidth||3,f=b.topWidth||1,q=e.overshoot,F=a.startAngleRad+a.translate(d.y,null, +null,null,!0);if(g(q)||!1===e.wrap)q=g(q)?q/180*Math.PI:0,F=r(F,a.startAngleRad-q,a.endAngleRad+q);F=180*F/Math.PI;d.shapeType="path";d.shapeArgs={d:b.path||["M",-p,-c/2,"L",n,-c/2,l,-f/2,l,f/2,n,c/2,-p,c/2,"z"],translateX:h[0],translateY:h[1],rotation:F};d.plotX=h[0];d.plotY=h[1]})},drawPoints:function(){var a=this,e=a.chart,h=a.yAxis.center,d=a.pivot,b=a.options,g=b.pivot,n=e.renderer;a.points.forEach(function(p){var c=p.graphic,f=p.shapeArgs,q=f.d,d=w(b.dial,p.dial);c?(c.animate(f),f.d=q):p.graphic= +n[p.shapeType](f).attr({rotation:f.rotation,zIndex:1}).addClass("highcharts-dial").add(a.group);if(!e.styledMode)p.graphic[c?"animate":"attr"]({stroke:d.borderColor||"none","stroke-width":d.borderWidth||0,fill:d.backgroundColor||"#000000"})});d?d.animate({translateX:h[0],translateY:h[1]}):(a.pivot=n.circle(0,0,m(g.radius,5)).attr({zIndex:2}).addClass("highcharts-pivot").translate(h[0],h[1]).add(a.group),e.styledMode||a.pivot.attr({"stroke-width":g.borderWidth||0,stroke:g.borderColor||"#cccccc",fill:g.backgroundColor|| +"#000000"}))},animate:function(a){var e=this;a||(e.points.forEach(function(a){var d=a.graphic;d&&(d.attr({rotation:180*e.yAxis.startAngleRad/Math.PI}),d.animate({rotation:a.shapeArgs.rotation},e.options.animation))}),e.animate=null)},render:function(){this.group=this.plotGroup("group","series",this.visible?"visible":"hidden",this.options.zIndex,this.chart.seriesGroup);z.prototype.render.call(this);this.group.clip(this.chart.clipRect)},setData:function(a,e){z.prototype.setData.call(this,a,!1);this.processData(); +this.generatePoints();m(e,!0)&&this.chart.redraw()},hasData:function(){return!!this.points.length},drawTracker:e&&e.drawTrackerPoint},{setState:function(a){this.state=a}});""});A(t,"parts-more/BoxPlotSeries.js",[t["parts/Globals.js"],t["parts/Utilities.js"]],function(b,a){var r=a.pick;a=b.noop;var g=b.seriesType,m=b.seriesTypes;g("boxplot","column",{threshold:null,tooltip:{pointFormat:'\u25cf {series.name}
Maximum: {point.high}
Upper quartile: {point.q3}
Median: {point.median}
Lower quartile: {point.q1}
Minimum: {point.low}
'}, +whiskerLength:"50%",fillColor:"#ffffff",lineWidth:1,medianWidth:2,whiskerWidth:2},{pointArrayMap:["low","q1","median","q3","high"],toYData:function(a){return[a.low,a.q1,a.median,a.q3,a.high]},pointValKey:"high",pointAttribs:function(){return{}},drawDataLabels:a,translate:function(){var a=this.yAxis,b=this.pointArrayMap;m.column.prototype.translate.apply(this);this.points.forEach(function(g){b.forEach(function(e){null!==g[e]&&(g[e+"Plot"]=a.translate(g[e],0,1,0,1))})})},drawPoints:function(){var a= +this,b=a.options,g=a.chart,e=g.renderer,l,m,h,d,B,x,n=0,p,c,f,q,F=!1!==a.doQuartiles,C,E=a.options.whiskerLength;a.points.forEach(function(v){var G=v.graphic,k=G?"animate":"attr",w=v.shapeArgs,u={},y={},D={},J={},t=v.color||a.color;"undefined"!==typeof v.plotY&&(p=w.width,c=Math.floor(w.x),f=c+p,q=Math.round(p/2),l=Math.floor(F?v.q1Plot:v.lowPlot),m=Math.floor(F?v.q3Plot:v.lowPlot),h=Math.floor(v.highPlot),d=Math.floor(v.lowPlot),G||(v.graphic=G=e.g("point").add(a.group),v.stem=e.path().addClass("highcharts-boxplot-stem").add(G), +E&&(v.whiskers=e.path().addClass("highcharts-boxplot-whisker").add(G)),F&&(v.box=e.path(void 0).addClass("highcharts-boxplot-box").add(G)),v.medianShape=e.path(void 0).addClass("highcharts-boxplot-median").add(G)),g.styledMode||(y.stroke=v.stemColor||b.stemColor||t,y["stroke-width"]=r(v.stemWidth,b.stemWidth,b.lineWidth),y.dashstyle=v.stemDashStyle||b.stemDashStyle,v.stem.attr(y),E&&(D.stroke=v.whiskerColor||b.whiskerColor||t,D["stroke-width"]=r(v.whiskerWidth,b.whiskerWidth,b.lineWidth),v.whiskers.attr(D)), +F&&(u.fill=v.fillColor||b.fillColor||t,u.stroke=b.lineColor||t,u["stroke-width"]=b.lineWidth||0,v.box.attr(u)),J.stroke=v.medianColor||b.medianColor||t,J["stroke-width"]=r(v.medianWidth,b.medianWidth,b.lineWidth),v.medianShape.attr(J)),x=v.stem.strokeWidth()%2/2,n=c+q+x,v.stem[k]({d:["M",n,m,"L",n,h,"M",n,l,"L",n,d]}),F&&(x=v.box.strokeWidth()%2/2,l=Math.floor(l)+x,m=Math.floor(m)+x,c+=x,f+=x,v.box[k]({d:["M",c,m,"L",c,l,"L",f,l,"L",f,m,"L",c,m,"z"]})),E&&(x=v.whiskers.strokeWidth()%2/2,h+=x,d+=x, +C=/%$/.test(E)?q*parseFloat(E)/100:E/2,v.whiskers[k]({d:["M",n-C,h,"L",n+C,h,"M",n-C,d,"L",n+C,d]})),B=Math.round(v.medianPlot),x=v.medianShape.strokeWidth()%2/2,B+=x,v.medianShape[k]({d:["M",c,B,"L",f,B]}))})},setStackedPoints:a});""});A(t,"parts-more/ErrorBarSeries.js",[t["parts/Globals.js"]],function(b){var a=b.noop,r=b.seriesType,g=b.seriesTypes;r("errorbar","boxplot",{color:"#000000",grouping:!1,linkedTo:":previous",tooltip:{pointFormat:'\u25cf {series.name}: {point.low} - {point.high}
'}, +whiskerWidth:null},{type:"errorbar",pointArrayMap:["low","high"],toYData:function(a){return[a.low,a.high]},pointValKey:"high",doQuartiles:!1,drawDataLabels:g.arearange?function(){var a=this.pointValKey;g.arearange.prototype.drawDataLabels.call(this);this.data.forEach(function(b){b.y=b[a]})}:a,getColumnMetrics:function(){return this.linkedParent&&this.linkedParent.columnMetrics||g.column.prototype.getColumnMetrics.call(this)}});""});A(t,"parts-more/WaterfallSeries.js",[t["parts/Globals.js"],t["parts/Utilities.js"]], +function(b,a){var r=a.arrayMax,g=a.arrayMin,m=a.correctFloat,k=a.isNumber,w=a.objectEach,t=a.pick;a=b.addEvent;var e=b.Axis,l=b.Chart,u=b.Point,h=b.Series,d=b.StackItem,B=b.seriesType,x=b.seriesTypes;a(e,"afterInit",function(){this.isXAxis||(this.waterfallStacks={changed:!1})});a(e,"afterBuildStacks",function(){this.waterfallStacks.changed=!1;delete this.waterfallStacks.alreadyChanged});a(l,"beforeRedraw",function(){for(var a=this.axes,p=this.series,c=p.length;c--;)p[c].options.stacking&&(a.forEach(function(f){f.isXAxis|| +(f.waterfallStacks.changed=!0)}),c=0)});a(e,"afterRender",function(){var a=this.options.stackLabels;a&&a.enabled&&this.waterfallStacks&&this.renderWaterfallStackTotals()});e.prototype.renderWaterfallStackTotals=function(){var a=this.waterfallStacks,p=this.stackTotalGroup,c=new d(this,this.options.stackLabels,!1,0,void 0);this.dummyStackItem=c;w(a,function(f){w(f,function(f){c.total=f.stackTotal;f.label&&(c.label=f.label);d.prototype.render.call(c,p);f.label=c.label;delete c.label})});c.total=null}; +B("waterfall","column",{dataLabels:{inside:!0},lineWidth:1,lineColor:"#333333",dashStyle:"Dot",borderColor:"#333333",states:{hover:{lineWidthPlus:0}}},{pointValKey:"y",showLine:!0,generatePoints:function(){var a;x.column.prototype.generatePoints.apply(this);var p=0;for(a=this.points.length;py.height&&(y.y+=y.height,y.height*=-1);m.plotY=y.y=Math.round(y.y)-this.borderWidth%2/2;y.height=Math.max(Math.round(y.height),.001);m.yBottom=y.y+y.height;y.height<=f&&!m.isNull?(y.height=f,y.y-=q,m.plotY=y.y,m.minPointLengthOffset=0>m.y?-q:q):(m.isNull&&(y.width=0),m.minPointLengthOffset=0);y=m.plotY+(m.negative?y.height:0);this.chart.inverted?m.tooltipPos[0]=p.len-y:m.tooltipPos[1]=y}},processData:function(a){var p=this.options,c=this.yData,f=p.data,q=c.length,e=p.threshold||0,d,b,n,g,l;for(l= +b=d=n=g=0;lm.y&&!d||0l.indexOf(d)&&(k=!0);c[d]||(c[d]={});l=c[d];for(var u=0;u=c&&this.renderRange(f)},this);this.legendSymbol.add(this.legendItem);this.legendItem.add(this.legendGroup);this.hideOverlappingLabels()},renderRange:function(a){var c=this.options,f=c.labels,e=this.chart.renderer,d=this.symbols,p=d.labels,b=a.center,h=Math.abs(a.radius),l=c.connectorDistance,n=f.align,g= +f.style.fontSize;l=this.legend.options.rtl||"left"===n?-l:l;f=c.connectorWidth;var m=this.ranges[0].radius,r=b-h-c.borderWidth/2+f/2;g=g/2-(this.fontMetrics.h-g)/2;var k=e.styledMode;"center"===n&&(l=0,c.connectorDistance=0,a.labelStyle.align="center");n=r+c.labels.y;var u=m+l+c.labels.x;d.bubbleItems.push(e.circle(m,b+((r%1?1:.5)-(f%2?0:.5)),h).attr(k?{}:a.bubbleStyle).addClass((k?"highcharts-color-"+this.options.seriesIndex+" ":"")+"highcharts-bubble-legend-symbol "+(c.className||"")).add(this.legendSymbol)); +d.connectors.push(e.path(e.crispLine(["M",m,r,"L",m+l,r],c.connectorWidth)).attr(k?{}:a.connectorStyle).addClass((k?"highcharts-color-"+this.options.seriesIndex+" ":"")+"highcharts-bubble-legend-connectors "+(c.connectorClassName||"")).add(this.legendSymbol));a=e.text(this.formatLabel(a),u,n+g).attr(k?{}:a.labelStyle).addClass("highcharts-bubble-legend-labels "+(c.labels.className||"")).add(this.legendSymbol);p.push(a);a.placed=!0;a.alignAttr={x:u,y:n+g}},getMaxLabelSize:function(){var a,c;this.symbols.labels.forEach(function(f){c= +f.getBBox(!0);a=a?c.width>a.width?c:a:c});return a||{}},formatLabel:function(a){var c=this.options,f=c.labels.formatter;c=c.labels.format;var e=this.chart.numberFormatter;return c?b.format(c,a):f?f.call(a):e(a.value,1)},hideOverlappingLabels:function(){var a=this.chart,c=this.symbols;!this.options.labels.allowOverlap&&c&&(a.hideOverlappingLabels(c.labels),c.labels.forEach(function(f,a){f.newOpacity?f.newOpacity!==f.oldOpacity&&c.connectors[a].show():c.connectors[a].hide()}))},getRanges:function(){var a= +this.legend.bubbleLegend,c=a.options.ranges,f,e=Number.MAX_VALUE,b=-Number.MAX_VALUE;a.chart.series.forEach(function(a){a.isBubble&&!a.ignoreSeries&&(f=a.zData.filter(m),f.length&&(e=w(a.options.zMin,Math.min(e,Math.max(g(f),!1===a.options.displayNegative?a.options.zThreshold:-Number.MAX_VALUE))),b=w(a.options.zMax,Math.max(b,r(f)))))});var h=e===b?[{value:b}]:[{value:e},{value:(e+b)/2},{value:b,autoRanges:!0}];c.length&&c[0].radius&&h.reverse();h.forEach(function(a,f){c&&c[f]&&(h[f]=d(!1,c[f],a))}); +return h},predictBubbleSizes:function(){var a=this.chart,c=this.fontMetrics,f=a.legend.options,e="horizontal"===f.layout,d=e?a.legend.lastLineHeight:0,b=a.plotSizeX,h=a.plotSizeY,l=a.series[this.options.seriesIndex];a=Math.ceil(l.minPxSize);var n=Math.ceil(l.maxPxSize);l=l.options.maxSize;var g=Math.min(h,b);if(f.floating||!/%$/.test(l))c=n;else if(l=parseFloat(l),c=(g+d-c.h/2)*l/100/(l/100+1),e&&h-c>=b||!e&&b-c>=h)c=n;return[a,Math.ceil(c)]},updateRanges:function(a,c){var f=this.legend.options.bubbleLegend; +f.minSize=a;f.maxSize=c;f.ranges=this.getRanges()},correctSizes:function(){var a=this.legend,c=this.chart.series[this.options.seriesIndex];1b.height&&(b.height=a[d].itemHeight);b.step=e}return c};e.prototype.retranslateItems=function(a){var c,f,e,d=this.options.rtl,b=0;this.allItems.forEach(function(q,h){c=q.legendGroup.translateX;f=q._legendItemPos[1];if((e=q.movementX)||d&&q.ranges)e=d?c-q.options.maxSize/2:c+e,q.legendGroup.attr({translateX:e});h>a[b].step&&b++;q.legendGroup.attr({translateY:Math.round(f+a[b].height/2)});q._legendItemPos[1]= +f+a[b].height/2})};u(t,"legendItemClick",function(){var a=this.chart,c=this.visible,f=this.chart.legend;f&&f.bubbleLegend&&(this.visible=!c,this.ignoreSeries=c,a=0<=a.getVisibleBubbleSeriesIndex(),f.bubbleLegend.visible!==a&&(f.update({bubbleLegend:{enabled:a}}),f.bubbleLegend.visible=a),this.visible=c)});a(l.prototype,"drawChartBox",function(a,c,f){var e=this.legend,d=0<=this.getVisibleBubbleSeriesIndex();if(e&&e.options.enabled&&e.bubbleLegend&&e.options.bubbleLegend.autoRanges&&d){var b=e.bubbleLegend.options; +d=e.bubbleLegend.predictBubbleSizes();e.bubbleLegend.updateRanges(d[0],d[1]);b.placed||(e.group.placed=!1,e.allItems.forEach(function(a){a.legendGroup.translateY=null}));e.render();this.getMargins();this.axes.forEach(function(a){a.visible&&a.render();b.placed||(a.setScale(),a.updateNames(),k(a.ticks,function(a){a.isNew=!0;a.isNewLabel=!0}))});b.placed=!0;this.getMargins();a.call(this,c,f);e.bubbleLegend.correctSizes();e.retranslateItems(e.getLinesHeights())}else a.call(this,c,f),e&&e.options.enabled&& +e.bubbleLegend&&(e.render(),e.retranslateItems(e.getLinesHeights()))})});A(t,"parts-more/BubbleSeries.js",[t["parts/Globals.js"],t["parts/Utilities.js"]],function(b,a){var r=a.arrayMax,g=a.arrayMin,m=a.clamp,k=a.extend,w=a.isNumber,t=a.pick,e=a.pInt;a=b.Axis;var l=b.color,u=b.noop,h=b.Point,d=b.Series,B=b.seriesType,x=b.seriesTypes;B("bubble","scatter",{dataLabels:{formatter:function(){return this.point.z},inside:!0,verticalAlign:"middle"},animationLimit:250,marker:{lineColor:null,lineWidth:1,fillOpacity:.5, +radius:null,states:{hover:{radiusPlus:0}},symbol:"circle"},minSize:8,maxSize:"20%",softThreshold:!1,states:{hover:{halo:{size:5}}},tooltip:{pointFormat:"({point.x}, {point.y}), Size: {point.z}"},turboThreshold:0,zThreshold:0,zoneAxis:"z"},{pointArrayMap:["y","z"],parallelArrays:["x","y","z"],trackerGroups:["group","dataLabelsGroup"],specialGroup:"group",bubblePadding:!0,zoneAxis:"z",directTouch:!0,isBubble:!0,pointAttribs:function(a,e){var c=this.options.marker.fillOpacity;a=d.prototype.pointAttribs.call(this, +a,e);1!==c&&(a.fill=l(a.fill).setOpacity(c).get("rgba"));return a},getRadii:function(a,e,c){var f=this.zData,d=this.yData,b=c.minPxSize,h=c.maxPxSize,l=[];var g=0;for(c=f.length;g=this.minPxSize/2?(f.marker=k(f.marker,{radius:d,width:2*d,height:2*d}),f.dlBox={x:f.plotX-d,y:f.plotY-d,width:2*d,height:2*d}):f.shapeArgs=f.plotY=f.dlBox=void 0}},alignDataLabel:x.column.prototype.alignDataLabel,buildKDTree:u,applyZones:u},{haloPath:function(a){return h.prototype.haloPath.call(this,0===a?0:(this.marker?this.marker.radius||0:0)+a)},ttBelow:!1});a.prototype.beforePadding=function(){var a=this,d=this.len,c=this.chart,f=0,b=d,h= +this.isXAxis,l=h?"xData":"yData",k=this.min,v={},u=Math.min(c.plotWidth,c.plotHeight),x=Number.MAX_VALUE,B=-Number.MAX_VALUE,z=this.max-k,y=d/z,D=[];this.series.forEach(function(f){var d=f.options;!f.bubblePadding||!f.visible&&c.options.chart.ignoreHiddenSeries||(a.allowZoomOutside=!0,D.push(f),h&&(["minSize","maxSize"].forEach(function(a){var f=d[a],c=/%$/.test(f);f=e(f);v[a]=c?u*f/100:f}),f.minPxSize=v.minSize,f.maxPxSize=Math.max(v.maxSize,v.minSize),f=f.zData.filter(w),f.length&&(x=t(d.zMin,m(g(f), +!1===d.displayNegative?d.zThreshold:-Number.MAX_VALUE,x)),B=t(d.zMax,Math.max(B,r(f))))))});D.forEach(function(e){var c=e[l],d=c.length;h&&e.getRadii(x,B,e);if(0a?1:0)},barycenter:function(){var a=this.options.gravitationalConstant,b=this.barycenter.xFactor,g=this.barycenter.yFactor;b=(b-(this.box.left+this.box.width)/2)*a;g=(g-(this.box.top+this.box.height)/2)*a;this.nodes.forEach(function(a){a.fixedPosition||(a.plotX-=b/a.mass/a.degree, +a.plotY-=g/a.mass/a.degree)})},repulsive:function(a,b,g){b=b*this.diffTemperature/a.mass/a.degree;a.fixedPosition||(a.plotX+=g.x*b,a.plotY+=g.y*b)},attractive:function(a,b,g){var m=a.getMass(),k=-g.x*b*this.diffTemperature;b=-g.y*b*this.diffTemperature;a.fromNode.fixedPosition||(a.fromNode.plotX-=k*m.fromNode/a.fromNode.degree,a.fromNode.plotY-=b*m.fromNode/a.fromNode.degree);a.toNode.fixedPosition||(a.toNode.plotX+=k*m.toNode/a.toNode.degree,a.toNode.plotY+=b*m.toNode/a.toNode.degree)},integrate:function(a, +b){var g=-a.options.friction,m=a.options.maxSpeed,k=(b.plotX+b.dispX-b.prevX)*g;g*=b.plotY+b.dispY-b.prevY;var r=Math.abs,t=r(k)/(k||1);r=r(g)/(g||1);k=t*Math.min(m,Math.abs(k));g=r*Math.min(m,Math.abs(g));b.prevX=b.plotX+b.dispX;b.prevY=b.plotY+b.dispY;b.plotX+=k;b.plotY+=g;b.temperature=a.vectorLength({x:k,y:g})},getK:function(a){return Math.pow(a.box.width*a.box.height/a.nodes.length,.5)}},euler:{attractiveForceFunction:function(a,b){return a*a/b},repulsiveForceFunction:function(a,b){return b* +b/a},barycenter:function(){var a=this.options.gravitationalConstant,b=this.barycenter.xFactor,g=this.barycenter.yFactor;this.nodes.forEach(function(m){if(!m.fixedPosition){var k=m.getDegree();k*=1+k/2;m.dispX+=(b-m.plotX)*a*k/m.degree;m.dispY+=(g-m.plotY)*a*k/m.degree}})},repulsive:function(a,b,g,m){a.dispX+=g.x/m*b/a.degree;a.dispY+=g.y/m*b/a.degree},attractive:function(a,b,g,m){var k=a.getMass(),r=g.x/m*b;b*=g.y/m;a.fromNode.fixedPosition||(a.fromNode.dispX-=r*k.fromNode/a.fromNode.degree,a.fromNode.dispY-= +b*k.fromNode/a.fromNode.degree);a.toNode.fixedPosition||(a.toNode.dispX+=r*k.toNode/a.toNode.degree,a.toNode.dispY+=b*k.toNode/a.toNode.degree)},integrate:function(a,b){b.dispX+=b.dispX*a.options.friction;b.dispY+=b.dispY*a.options.friction;var g=b.temperature=a.vectorLength({x:b.dispX,y:b.dispY});0!==g&&(b.plotX+=b.dispX/g*Math.min(Math.abs(b.dispX),a.temperature),b.plotY+=b.dispY/g*Math.min(Math.abs(b.dispY),a.temperature))},getK:function(a){return Math.pow(a.box.width*a.box.height/a.nodes.length, +.3)}}}});A(t,"modules/networkgraph/QuadTree.js",[t["parts/Globals.js"],t["parts/Utilities.js"]],function(b,a){a=a.extend;var r=b.QuadTreeNode=function(a){this.box=a;this.boxSize=Math.min(a.width,a.height);this.nodes=[];this.body=this.isInternal=!1;this.isEmpty=!0};a(r.prototype,{insert:function(a,b){this.isInternal?this.nodes[this.getBoxPosition(a)].insert(a,b-1):(this.isEmpty=!1,this.body?b?(this.isInternal=!0,this.divideBox(),!0!==this.body&&(this.nodes[this.getBoxPosition(this.body)].insert(this.body, +b-1),this.body=!0),this.nodes[this.getBoxPosition(a)].insert(a,b-1)):(b=new r({top:a.plotX,left:a.plotY,width:.1,height:.1}),b.body=a,b.isInternal=!1,this.nodes.push(b)):(this.isInternal=!1,this.body=a))},updateMassAndCenter:function(){var a=0,b=0,k=0;this.isInternal?(this.nodes.forEach(function(g){g.isEmpty||(a+=g.mass,b+=g.plotX*g.mass,k+=g.plotY*g.mass)}),b/=a,k/=a):this.body&&(a=this.body.mass,b=this.body.plotX,k=this.body.plotY);this.mass=a;this.plotX=b;this.plotY=k},divideBox:function(){var a= +this.box.width/2,b=this.box.height/2;this.nodes[0]=new r({left:this.box.left,top:this.box.top,width:a,height:b});this.nodes[1]=new r({left:this.box.left+a,top:this.box.top,width:a,height:b});this.nodes[2]=new r({left:this.box.left+a,top:this.box.top+b,width:a,height:b});this.nodes[3]=new r({left:this.box.left,top:this.box.top+b,width:a,height:b})},getBoxPosition:function(a){var b=a.plotYMath.abs(this.systemTemperature- +this.prevSystemTemperature)||0>=this.temperature},getSystemTemperature:function(){return this.nodes.reduce(function(a,b){return a+b.temperature},0)},vectorLength:function(a){return Math.sqrt(a.x*a.x+a.y*a.y)},getDistR:function(a,b){a=this.getDistXY(a,b);return this.vectorLength(a)},getDistXY:function(a,b){var e=a.plotX-b.plotX;a=a.plotY-b.plotY;return{x:e,y:a,absX:Math.abs(e),absY:Math.abs(a)}}});a(t,"predraw",function(){this.graphLayoutsLookup&&this.graphLayoutsLookup.forEach(function(a){a.stop()})}); +a(t,"render",function(){function a(a){a.maxIterations--&&isFinite(a.temperature)&&!a.isStable()&&!a.options.enableSimulation&&(a.beforeStep&&a.beforeStep(),a.step(),g=!1,b=!0)}var b=!1;if(this.graphLayoutsLookup){w(!1,this);for(this.graphLayoutsLookup.forEach(function(a){a.start()});!g;){var g=!0;this.graphLayoutsLookup.forEach(a)}b&&this.series.forEach(function(a){a&&a.layout&&a.render()})}})});A(t,"modules/networkgraph/draggable-nodes.js",[t["parts/Globals.js"]],function(b){var a=b.Chart,r=b.addEvent; +b.dragNodesMixin={onMouseDown:function(a,b){b=this.chart.pointer.normalize(b);a.fixedPosition={chartX:b.chartX,chartY:b.chartY,plotX:a.plotX,plotY:a.plotY};a.inDragMode=!0},onMouseMove:function(a,b){if(a.fixedPosition&&a.inDragMode){var g=this.chart,m=g.pointer.normalize(b);b=a.fixedPosition.chartX-m.chartX;m=a.fixedPosition.chartY-m.chartY;if(5c&&(f.degree+=.01,f.neighbours++,b=a.repulsiveForce(-c/Math.sqrt(f.neighbours),a.k,f,q)),a.force("repulsive",f,b*q.mass,d,q,c))})})},applyLimitBox:function(a){if(this.options.splitSeries&& +!a.isParentNode&&this.options.parentNodeLimit){var f=this.getDistXY(a,a.series.parentNode);var b=a.series.parentNodeRadius-a.marker.radius-this.vectorLength(f);0>b&&b>-2*a.marker.radius&&(a.plotX-=.01*f.x,a.plotY-=.01*f.y)}n.prototype.applyLimitBox.apply(this,arguments)},isStable:function(){return.00001>Math.abs(this.systemTemperature-this.prevSystemTemperature)||0>=this.temperature||0this.systemTemperature/this.nodes.length&&this.enableSimulation}});a("packedbubble", +"bubble",{minSize:"10%",maxSize:"50%",sizeBy:"area",zoneAxis:"y",tooltip:{pointFormat:"Value: {point.value}"},draggable:!0,useSimulation:!0,dataLabels:{formatter:function(){return this.point.value},parentNodeFormatter:function(){return this.name},parentNodeTextPath:{enabled:!0},padding:0},layoutAlgorithm:{initialPositions:"circle",initialPositionRadius:20,bubblePadding:5,parentNodeLimit:!1,seriesInteraction:!0,dragBetweenSeries:!1,parentNodeOptions:{maxIterations:400,gravitationalConstant:.03,maxSpeed:50, +initialPositionRadius:100,seriesInteraction:!0,marker:{fillColor:null,fillOpacity:1,lineWidth:1,lineColor:null,symbol:"circle"}},enableSimulation:!0,type:"packedbubble",integration:"packedbubble",maxIterations:1E3,splitSeries:!1,maxSpeed:5,gravitationalConstant:.01,friction:-.981}},{hasDraggableNodes:!0,forces:["barycenter","repulsive"],pointArrayMap:["value"],pointValKey:"value",isCartesian:!1,requireSorting:!1,directTouch:!0,axisTypes:[],noSharedTooltip:!0,searchPoint:b.noop,accumulateAllPoints:function(a){var f= +a.chart,b=[],c,d;for(c=0;cMath.sqrt(f*f+c*c)-Math.abs(a[2]+b[2])},positionBubble:function(a,b,c){var f=Math.sqrt,d=Math.asin,e=Math.acos,h=Math.pow,g=Math.abs;f=f(h(a[0]-b[0],2)+h(a[1]-b[1],2));e=e((h(f, +2)+h(c[2]+b[2],2)-h(c[2]+a[2],2))/(2*(c[2]+b[2])*f));d=d(g(a[0]-b[0])/f);a=(0>a[1]-b[1]?0:Math.PI)+e+d*(0>(a[0]-b[0])*(a[1]-b[1])?1:-1);return[b[0]+(b[2]+c[2])*Math.sin(a),b[1]-(b[2]+c[2])*Math.cos(a),c[2],c[3],c[4]]},placeBubbles:function(a){var b=this.checkOverlap,c=this.positionBubble,d=[],f=1,e=0,h=0;var g=[];var n;a=a.sort(function(a,b){return b[2]-a[2]});if(a.length){d.push([[0,0,a[0][2],a[0][3],a[0][4]]]);if(1d&&(d=a),af&&(c.series.addPoint(b.merge(a.options,{plotX:a.plotX,plotY:a.plotY}), +!1),e.removeElementFromCollection(a,e.nodes),a.remove()))});c.onMouseUp.apply(this,arguments)}},destroy:function(){this.chart.graphLayoutsLookup&&this.chart.graphLayoutsLookup.forEach(function(a){a.removeElementFromCollection(this,a.series)},this);this.parentNode&&(this.parentNodeLayout.removeElementFromCollection(this.parentNode,this.parentNodeLayout.nodes),this.parentNode.dataLabel&&(this.parentNode.dataLabel=this.parentNode.dataLabel.destroy()));b.Series.prototype.destroy.apply(this,arguments)}, +alignDataLabel:b.Series.prototype.alignDataLabel},{destroy:function(){this.series.layout&&this.series.layout.removeElementFromCollection(this,this.series.layout.nodes);return u.prototype.destroy.apply(this,arguments)}});h(B,"beforeRedraw",function(){this.allDataPoints&&delete this.allDataPoints});""});A(t,"parts-more/Polar.js",[t["parts/Globals.js"],t["parts/Utilities.js"]],function(b,a){var r=a.defined,g=a.pick,m=a.splat,k=a.wrap,t=b.Series,z=b.seriesTypes,e=t.prototype,l=b.Pointer.prototype;e.searchPointByAngle= +function(a){var b=this.chart,e=this.xAxis.pane.center;return this.searchKDTree({clientX:180+-180/Math.PI*Math.atan2(a.chartX-e[0]-b.plotLeft,a.chartY-e[1]-b.plotTop)})};e.getConnectors=function(a,b,e,g){var d=g?1:0;var h=0<=b&&b<=a.length-1?b:0>b?a.length-1+b:0;b=0>h-1?a.length-(1+d):h-1;d=h+1>a.length-1?d:h+1;var c=a[b];d=a[d];var f=c.plotX;c=c.plotY;var l=d.plotX;var k=d.plotY;d=a[h].plotX;h=a[h].plotY;f=(1.5*d+f)/2.5;c=(1.5*h+c)/2.5;l=(1.5*d+l)/2.5;var m=(1.5*h+k)/2.5;k=Math.sqrt(Math.pow(f-d, +2)+Math.pow(c-h,2));var x=Math.sqrt(Math.pow(l-d,2)+Math.pow(m-h,2));f=Math.atan2(c-h,f-d);m=Math.PI/2+(f+Math.atan2(m-h,l-d))/2;Math.abs(f-m)>Math.PI/2&&(m-=Math.PI);f=d+Math.cos(m)*k;c=h+Math.sin(m)*k;l=d+Math.cos(Math.PI+m)*x;m=h+Math.sin(Math.PI+m)*x;d={rightContX:l,rightContY:m,leftContX:f,leftContY:c,plotX:d,plotY:h};e&&(d.prevPointCont=this.getConnectors(a,b,!1,g));return d};e.toXY=function(a){var b=this.chart,e=this.xAxis;var h=this.yAxis;var g=a.plotX,l=a.plotY,c=a.series,f=b.inverted,k= +a.y;f&&c&&!c.isRadialBar&&(a.plotY=l="number"===typeof k?h.translate(k)||0:0);a.rectPlotX=g;a.rectPlotY=l;h=f?e.postTranslate(l,g):e.postTranslate(g,h.len-l);a.plotX=a.polarPlotX=h.x-b.plotLeft;a.plotY=a.polarPlotY=h.y-b.plotTop;this.kdByAngle?(b=(g/Math.PI*180+e.pane.options.startAngle)%360,0>b&&(b+=360),a.clientX=b):a.clientX=a.plotX};z.spline&&(k(z.spline.prototype,"getPointSpline",function(a,b,e,g){this.chart.polar?g?(a=this.getConnectors(b,g,!0,this.connectEnds),a=["C",a.prevPointCont.rightContX, +a.prevPointCont.rightContY,a.leftContX,a.leftContY,a.plotX,a.plotY]):a=["M",e.plotX,e.plotY]:a=a.call(this,b,e,g);return a}),z.areasplinerange&&(z.areasplinerange.prototype.getPointSpline=z.spline.prototype.getPointSpline));b.addEvent(t,"afterTranslate",function(){var a=this.chart;if(a.polar&&this.xAxis){(this.kdByAngle=a.tooltip&&a.tooltip.shared)?this.searchPoint=this.searchPointByAngle:this.options.findNearestPointBy="xy";if(!this.preventPostTranslate)for(var d=this.points,e=d.length;e--;)this.toXY(d[e]), +!a.hasParallelCoordinates&&!this.yAxis.reversed&&d[e].yz?z=0:z>t&&(z=t),this.translatedThreshold=z+m)}for(;u--;){d=e[u]; +var A=d.barX;var I=d.x;var H=d.y;if(g.inverted){d.shapeType="arc";d.plotY=k.translate(H);if(h){if(H=k.stacks[(0>H?"-":"")+this.stackKey],this.visible&&H&&H[I]&&!d.isNull){var y=H[I].points[this.getStackIndicator(void 0,I,this.index).key];var D=k.translate(y[0]);y=k.translate(y[1]);r(D)&&(D=a.clamp(D,0,t))}}else D=z,y=d.plotY;D>y&&(y=[D,D=y][0]);if(!c)if(Dv)y=v;else{if(yv)D=y=0}else if(y>w)y=w;else if(Dw||yk.max&&(D=y=c?t:0);D+=m;y+=m;I=Math.max(A, +0);A=Math.max(A+d.pointWidth,0);d.shapeArgs={x:f[0],y:f[1],r:A,innerR:I,start:D,end:y};d.opacity=D===y?0:void 0;d.plotY=(r(this.translatedThreshold)&&(Df[1]}}}),t.findAlignments=function(a,b){null=== +b.align&&(b.align=20a?"left":200a?"right":"center");null===b.verticalAlign&&(b.verticalAlign=45>a||315a?"top":"middle");return b},k(t,"alignDataLabel",function(a,b,l,k,m,p){var c=this.chart,d=g(k.inside,!!this.options.stacking);c.polar?(a=b.rectPlotX/Math.PI*180,c.inverted?(this.forceDL=c.isInsidePlot(b.plotX,Math.round(b.plotY),!1),d&&b.shapeArgs?(m=b.shapeArgs,m=this.xAxis.postTranslate((m.start+m.end)/2-this.xAxis.startAngleRad,b.barX+b.pointWidth/2),m={x:m.x- +c.plotLeft,y:m.y-c.plotTop}):b.tooltipPos&&(m={x:b.tooltipPos[0],y:b.tooltipPos[1]}),k.align=g(k.align,"center"),k.verticalAlign=g(k.verticalAlign,"middle")):k=this.findAlignments(a,k),e.alignDataLabel.call(this,b,l,k,m,p),this.isRadialBar&&b.shapeArgs&&b.shapeArgs.start===b.shapeArgs.end&&l.hide(!0)):a.call(this,b,l,k,m,p)}));k(l,"getCoordinates",function(a,b){var d=this.chart,e={xAxis:[],yAxis:[]};d.polar?d.axes.forEach(function(a){var h=a.isXAxis,c=a.center;if("colorAxis"!==a.coll){var f=b.chartX- +c[0]-d.plotLeft;c=b.chartY-c[1]-d.plotTop;e[h?"xAxis":"yAxis"].push({axis:a,value:a.translate(h?Math.PI-Math.atan2(f,c):Math.sqrt(Math.pow(f,2)+Math.pow(c,2)),!0)})}}):e=a.call(this,b);return e});b.SVGRenderer.prototype.clipCircle=function(a,d,e){var h=b.uniqueKey(),g=this.createElement("clipPath").attr({id:h}).add(this.defs);a=this.circle(a,d,e).add(g);a.id=h;a.clipPath=g;return a};b.addEvent(b.Chart,"getAxes",function(){this.pane||(this.pane=[]);m(this.options.pane).forEach(function(a){new b.Pane(a, +this)},this)});b.addEvent(b.Chart,"afterDrawChartBox",function(){this.pane.forEach(function(a){a.render()})});b.addEvent(b.Series,"afterInit",function(){var a=this.chart;a.inverted&&a.polar&&(this.isRadialSeries=!0,this instanceof z.column&&(this.isRadialBar=!0))});k(b.Chart.prototype,"get",function(a,d){return b.find(this.pane,function(a){return a.options.id===d})||a.call(this,d)})});A(t,"masters/highcharts-more.src.js",[],function(){})}); +//# sourceMappingURL=highcharts-more.js.map \ No newline at end of file diff --git a/ESP32-Chademo/data/highcharts.js b/ESP32-Chademo/data/highcharts.js new file mode 100755 index 0000000..5fa007d --- /dev/null +++ b/ESP32-Chademo/data/highcharts.js @@ -0,0 +1,492 @@ +/* + Highcharts JS v8.0.0 (2019-12-10) + + (c) 2009-2018 Torstein Honsi + + License: www.highcharts.com/license +*/ +(function(S,M){"object"===typeof module&&module.exports?(M["default"]=M,module.exports=S.document?M(S):M):"function"===typeof define&&define.amd?define("highcharts/highcharts",function(){return M(S)}):(S.Highcharts&&S.Highcharts.error(16,!0),S.Highcharts=M(S))})("undefined"!==typeof window?window:this,function(S){function M(c,e,F,I){c.hasOwnProperty(e)||(c[e]=I.apply(null,F))}var J={};M(J,"parts/Globals.js",[],function(){var c="undefined"!==typeof S?S:"undefined"!==typeof window?window:{},e=c.document, +F=c.navigator&&c.navigator.userAgent||"",I=e&&e.createElementNS&&!!e.createElementNS("http://www.w3.org/2000/svg","svg").createSVGRect,G=/(edge|msie|trident)/i.test(F)&&!c.opera,H=-1!==F.indexOf("Firefox"),v=-1!==F.indexOf("Chrome"),q=H&&4>parseInt(F.split("Firefox/")[1],10);return{product:"Highcharts",version:"8.0.0",deg2rad:2*Math.PI/360,doc:e,hasBidiBug:q,hasTouch:!!c.TouchEvent,isMS:G,isWebKit:-1!==F.indexOf("AppleWebKit"),isFirefox:H,isChrome:v,isSafari:!v&&-1!==F.indexOf("Safari"),isTouchDevice:/(Mobile|Android|Windows Phone)/.test(F), +SVG_NS:"http://www.w3.org/2000/svg",chartCount:0,seriesTypes:{},symbolSizes:{},svg:I,win:c,marginNames:["plotTop","marginRight","marginBottom","plotLeft"],noop:function(){},charts:[],dateFormats:{}}});M(J,"parts/Utilities.js",[J["parts/Globals.js"]],function(c){function e(d,a){return parseInt(d,a||10)}function F(d){return"string"===typeof d}function I(d){d=Object.prototype.toString.call(d);return"[object Array]"===d||"[object Array Iterator]"===d}function G(d,a){return!!d&&"object"===typeof d&&(!a|| +!I(d))}function H(d){return G(d)&&"number"===typeof d.nodeType}function v(d){var a=d&&d.constructor;return!(!G(d,!0)||H(d)||!a||!a.name||"Object"===a.name)}function q(d){return"number"===typeof d&&!isNaN(d)&&Infinity>d&&-Infinityg[1]){var t= +a+ +g[1];0<=t?(g[0]=(+g[0]).toExponential(t).split("e")[0],a=t):(g[0]=g[0].split(".")[0]||0,d=20>a?(g[0]*Math.pow(10,g[1])).toFixed(a):0,g[1]=0)}var x=(Math.abs(g[1]?g[0]:d)+Math.pow(10,-Math.max(a,k)-1)).toFixed(a);k=String(e(x));t=3d?"-":"")+(t?k.substr(0,t)+l:"");d+=k.substr(t).replace(/(\d{3})(?=\d)/g,"$1"+l);a&&(d+=b+x.slice(-a));g[1]&&0!==+d&&(d+="e"+g[1]);return d}function A(d,a,b){for(var h in d)Object.hasOwnProperty.call(d, +h)&&a.call(b||d[h],d[h],h,d)}c.timers=[];var f=c.charts,b=c.doc,a=c.win;c.error=function(d,b,k,l){var h=q(d),f=h?"Highcharts error #"+d+": www.highcharts.com/errors/"+d+"/":d.toString(),g=function(){if(b)throw Error(f);a.console&&console.log(f)};if("undefined"!==typeof l){var t="";h&&(f+="?");c.objectEach(l,function(d,a){t+="\n"+a+": "+d;h&&(f+=encodeURI(a)+"="+encodeURI(d))});f+=t}k?c.fireEvent(k,"displayError",{code:d,message:f,params:l},g):g()};c.Fx=function(d,a,b){this.options=a;this.elem=d;this.prop= +b};c.Fx.prototype={dSetter:function(){var d=this.paths[0],a=this.paths[1],b=[],l=this.now,f=d.length;if(1===l)b=this.toD;else if(f===a.length&&1>l)for(;f--;){var p=parseFloat(d[f]);b[f]=isNaN(p)||"A"===a[f-4]||"A"===a[f-5]?a[f]:l*parseFloat(""+(a[f]-p))+p}else b=a;this.elem.attr("d",b,null,!0)},update:function(){var d=this.elem,a=this.prop,b=this.now,l=this.options.step;if(this[a+"Setter"])this[a+"Setter"]();else d.attr?d.element&&d.attr(a,b,null,!0):d.style[a]=b+this.unit;l&&l.call(d,b,this)},run:function(d, +b,k){var h=this,f=h.options,p=function(d){return p.stopped?!1:h.step(d)},g=a.requestAnimationFrame||function(d){setTimeout(d,13)},t=function(){for(var d=0;d=p+this.startTime){this.now=this.end;this.pos=1;this.update();var t=g[this.prop]=!0;A(g,function(d){!0!==d&&(t=!1)});t&&f&&f.call(l);d=!1}else this.pos=b.easing((a-this.startTime)/p),this.now=this.start+(this.end-this.start)*this.pos,this.update(),d=!0;return d},initPath:function(d,a,b){function h(d){for(n=d.length;n--;){var a="M"=== +d[n]||"L"===d[n];var b=/[a-zA-Z]/.test(d[n+3]);a&&b&&d.splice(n+1,0,d[n+1],d[n+2],d[n+1],d[n+2])}}function f(d,a){for(;d.length=b&&(a=[1/b])));for(l=0;l=d||!f&&g<=(a[l]+(a[l+1]||a[l]))/2);l++);return h=r(h*b,-Math.round(Math.log(.001)/Math.LN10))};c.stableSort=function(d,a){var b=d.length,h,f;for(f=0;f=b-1&&(b=Math.floor(f)),Math.max(0,b-c.getStyle(d,"padding-left")-c.getStyle(d,"padding-right"));if("height"===b)return Math.max(0,Math.min(d.offsetHeight,d.scrollHeight)- +c.getStyle(d,"padding-top")-c.getStyle(d,"padding-bottom"));a.getComputedStyle||c.error(27,!0);if(d=a.getComputedStyle(d,void 0))d=d.getPropertyValue(b),w(f,"opacity"!==b)&&(d=e(d));return d};c.inArray=function(d,a,b){return a.indexOf(d,b)};c.find=Array.prototype.find?function(d,a){return d.find(a)}:function(d,a){var b,h=d.length;for(b=0;bb&&(b=a[d]);return b},arrayMin:function(a){for(var d=a.length, +b=a[0];d--;)a[d]b?a>16,(e&65280)>>8,e&255,1]:4===C&&(v=[(e&3840)>>4|(e&3840)>>8,(e&240)>>4|e&240,(e&15)<<4|e&15,1])}if(!v)for(q=this.parsers.length;q--&&!v;){var H=this.parsers[q];(C=H.regex.exec(e))&&(v=H.parse(C))}}this.rgba=v||[]},get:function(c){var e=this.input,q=this.rgba;if(this.stops){var C=G(e);C.stops= +[].concat(C.stops);this.stops.forEach(function(e,q){C.stops[q]=[C.stops[q][0],e.get(c)]})}else C=q&&F(q[0])?"rgb"===c||!c&&1===q[3]?"rgb("+q[0]+","+q[1]+","+q[2]+")":"a"===c?q[3]:"rgba("+q.join(",")+")":e;return C},brighten:function(c){var e,q=this.rgba;if(this.stops)this.stops.forEach(function(e){e.brighten(c)});else if(F(c)&&0!==c)for(e=0;3>e;e++)q[e]+=I(255*c),0>q[e]&&(q[e]=0),255d.width)d={width:0,height:0}}else d=this.htmlGetBBox();n.isSVG&&(a=d.width,n=d.height,Q&&(d.height=n={"11px,17":14,"13px,20":16}[z&&z.fontSize+","+Math.round(n)]||n),b&&(z=b*l,d.width=Math.abs(n*Math.sin(z))+Math.abs(a*Math.cos(z)), +d.height=Math.abs(n*Math.cos(z))+Math.abs(a*Math.sin(z))));if(c&&0]*>/g,"").replace(/</g,"<").replace(/>/g,">")))},textSetter:function(a){a!==this.textStr&&(delete this.bBox,delete this.textPxLength,this.textStr=a,this.added&&this.renderer.buildText(this))},setTextPath:function(a,b){var d=this.element,n={textAnchor:"text-anchor"},g=!1,z=this.textPathWrapper,f=!z;b=L(!0,{enabled:!0,attributes:{dy:-5,startOffset:"50%",textAnchor:"middle"}},b);var h=b.attributes;if(a&&b&&b.enabled){z&&null===z.element.parentNode?(f=!0,z=z.destroy()):z&&this.removeTextOutline.call(z.parentGroup, +[].slice.call(d.getElementsByTagName("tspan")));this.options&&this.options.padding&&(h.dx=-this.options.padding);z||(this.textPathWrapper=z=this.renderer.createElement("textPath"),g=!0);var t=z.element;(b=a.element.getAttribute("id"))||a.element.setAttribute("id",b=c.uniqueKey());if(f)for(a=d.getElementsByTagName("tspan");a.length;)a[0].setAttribute("y",0),B(h.dx)&&a[0].setAttribute("x",-h.dx),t.appendChild(a[0]);g&&z.add({element:this.text?this.text.element:d});t.setAttributeNS("http://www.w3.org/1999/xlink", +"href",this.renderer.url+"#"+b);G(h.dy)&&(t.parentNode.setAttribute("dy",h.dy),delete h.dy);G(h.dx)&&(t.parentNode.setAttribute("dx",h.dx),delete h.dx);m(h,function(a,b){t.setAttribute(n[b]||b,a)});d.removeAttribute("transform");this.removeTextOutline.call(z,[].slice.call(d.getElementsByTagName("tspan")));this.text&&!this.renderer.styledMode&&this.attr({fill:"none","stroke-width":0});this.applyTextOutline=this.updateTransform=E}else z&&(delete this.updateTransform,delete this.applyTextOutline,this.destroyTextPath(d, +a),this.updateTransform(),this.options.rotation&&this.applyTextOutline(this.options.style.textOutline));return this},destroyTextPath:function(a,b){var d=a.getElementsByTagName("text")[0];if(d){if(d.removeAttribute("dx"),d.removeAttribute("dy"),b.element.setAttribute("id",""),d.getElementsByTagName("textPath").length){for(a=this.textPathWrapper.element.childNodes;a.length;)d.appendChild(a[0]);d.removeChild(this.textPathWrapper.element)}}else if(a.getAttribute("dx")||a.getAttribute("dy"))a.removeAttribute("dx"), +a.removeAttribute("dy");this.textPathWrapper=this.textPathWrapper.destroy()},fillSetter:function(a,b,d){"string"===typeof a?d.setAttribute(b,a):a&&this.complexColor(a,b,d)},visibilitySetter:function(a,b,d){"inherit"===a?d.removeAttribute(b):this[b]!==a&&d.setAttribute(b,a);this[b]=a},zIndexSetter:function(a,b){var d=this.renderer,n=this.parentGroup,g=(n||d).element||d.box,z=this.element,f=!1;d=g===d.box;var h=this.added;var t;G(a)?(z.setAttribute("data-z-index",a),a=+a,this[b]===a&&(h=!1)):G(this[b])&& +z.removeAttribute("data-z-index");this[b]=a;if(h){(a=this.zIndex)&&n&&(n.handleZ=!0);b=g.childNodes;for(t=b.length-1;0<=t&&!f;t--){n=b[t];h=n.getAttribute("data-z-index");var l=!G(h);if(n!==z)if(0>a&&l&&!d&&!t)g.insertBefore(z,b[t]),f=!0;else if(D(h)<=a||l&&(!G(a)||0<=a))g.insertBefore(z,b[t+1]||null),f=!0}f||(g.insertBefore(z,b[d?3:0]||null),f=!0)}return f},_defaultSetter:function(a,b,d){d.setAttribute(b,a)}});P.prototype.yGetter=P.prototype.xGetter;P.prototype.translateXSetter=P.prototype.translateYSetter= +P.prototype.rotationSetter=P.prototype.verticalAlignSetter=P.prototype.rotationOriginXSetter=P.prototype.rotationOriginYSetter=P.prototype.scaleXSetter=P.prototype.scaleYSetter=P.prototype.matrixSetter=function(a,b){this[b]=a;this.doTransform=!0};P.prototype["stroke-widthSetter"]=P.prototype.strokeSetter=function(a,b,d){this[b]=a;this.stroke&&this["stroke-width"]?(P.prototype.fillSetter.call(this,this.stroke,"stroke",d),d.setAttribute("stroke-width",this["stroke-width"]),this.hasStroke=!0):"stroke-width"=== +b&&0===a&&this.hasStroke?(d.removeAttribute("stroke"),this.hasStroke=!1):this.renderer.styledMode&&this["stroke-width"]&&(d.setAttribute("stroke-width",this["stroke-width"]),this.hasStroke=!0)};e=c.SVGRenderer=function(){this.init.apply(this,arguments)};q(e.prototype,{Element:P,SVG_NS:O,init:function(a,b,d,n,z,t,l){var K=this.createElement("svg").attr({version:"1.1","class":"highcharts-root"});l||K.css(this.getStyle(n));n=K.element;a.appendChild(n);I(a,"dir","ltr");-1===a.innerHTML.indexOf("xmlns")&& +I(n,"xmlns",this.SVG_NS);this.isSVG=!0;this.box=n;this.boxWrapper=K;this.alignedObjects=[];this.url=(g||x)&&y.getElementsByTagName("base").length?T.location.href.split("#")[0].replace(/<[^>]*>/g,"").replace(/([\('\)])/g,"\\$1").replace(/ /g,"%20"):"";this.createElement("desc").add().element.appendChild(y.createTextNode("Created with Highcharts 8.0.0"));this.defs=this.createElement("defs").add();this.allowHTML=t;this.forExport=z;this.styledMode=l;this.gradients={};this.cache={};this.cacheKeys=[];this.imgCount= +0;this.setSize(b,d,!1);var c;g&&a.getBoundingClientRect&&(b=function(){h(a,{left:0,top:0});c=a.getBoundingClientRect();h(a,{left:Math.ceil(c.left)-c.left+"px",top:Math.ceil(c.top)-c.top+"px"})},b(),this.unSubPixelFix=f(T,"resize",b))},definition:function(a){function b(a,n){var g;A(a).forEach(function(a){var z=d.createElement(a.tagName),f={};m(a,function(a,b){"tagName"!==b&&"children"!==b&&"textContent"!==b&&(f[b]=a)});z.attr(f);z.add(n||d.defs);a.textContent&&z.element.appendChild(y.createTextNode(a.textContent)); +b(a.children||[],z);g=z});return g}var d=this;return b(a)},getStyle:function(a){return this.style=q({fontFamily:'"Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, sans-serif',fontSize:"12px"},a)},setStyle:function(a){this.boxWrapper.css(this.getStyle(a))},isHidden:function(){return!this.boxWrapper.getBBox().width},destroy:function(){var a=this.defs;this.box=null;this.boxWrapper=this.boxWrapper.destroy();H(this.gradients||{});this.gradients=null;a&&(this.defs=a.destroy());this.unSubPixelFix&& +this.unSubPixelFix();return this.alignedObjects=null},createElement:function(a){var b=new this.Element;b.init(this,a);return b},draw:E,getRadialAttr:function(a,b){return{cx:a[0]-a[2]/2+b.cx*a[2],cy:a[1]-a[2]/2+b.cy*a[2],r:b.r*a[2]}},truncate:function(a,b,d,n,g,z,f){var h=this,t=a.rotation,l,K=n?1:0,x=(d||n).length,c=x,k=[],N=function(a){b.firstChild&&b.removeChild(b.firstChild);a&&b.appendChild(y.createTextNode(a))},p=function(z,t){t=t||z;if("undefined"===typeof k[t])if(b.getSubStringLength)try{k[t]= +g+b.getSubStringLength(0,n?t+1:t)}catch(ea){""}else h.getSpanWidth&&(N(f(d||n,z)),k[t]=g+h.getSpanWidth(a,b));return k[t]},R;a.rotation=0;var O=p(b.textContent.length);if(R=g+O>z){for(;K<=x;)c=Math.ceil((K+x)/2),n&&(l=f(n,c)),O=p(c,l&&l.length-1),K===x?K=x+1:O>z?x=c-1:K=c;0===x?N(""):d&&x===d.length-1||N(l||f(d||n,c))}n&&n.splice(0,c);a.actualWidth=O;a.rotation=t;return R},escapes:{"&":"&","<":"<",">":">","'":"'",'"':"""},buildText:function(a){var b=a.element,d=this,n=d.forExport, +g=r(a.textStr,"").toString(),z=-1!==g.indexOf("<"),f=b.childNodes,t,l=I(b,"x"),x=a.styles,c=a.textWidth,k=x&&x.lineHeight,p=x&&x.textOutline,L=x&&"ellipsis"===x.textOverflow,E=x&&"nowrap"===x.whiteSpace,A=x&&x.fontSize,Q,e=f.length;x=c&&!a.added&&this.box;var V=function(a){var n;d.styledMode||(n=/(px|em)$/.test(a&&a.style.fontSize)?a.style.fontSize:A||d.style.fontSize||12);return k?D(k):d.fontMetrics(n,a.getAttribute("style")?a:b).h},q=function(a,b){m(d.escapes,function(d,n){b&&-1!==b.indexOf(d)|| +(a=a.toString().replace(new RegExp(d,"g"),n))});return a},P=function(a,b){var d=a.indexOf("<");a=a.substring(d,a.indexOf(">")-d);d=a.indexOf(b+"=");if(-1!==d&&(d=d+b.length+1,b=a.charAt(d),'"'===b||"'"===b))return a=a.substring(d+1),a.substring(0,a.indexOf(b))},T=//g;var u=[g,L,E,k,p,A,c].join();if(u!==a.textCache){for(a.textCache=u;e--;)b.removeChild(f[e]);z||p||L||c||-1!==g.indexOf(" ")&&(!E||T.test(g))?(x&&x.appendChild(b),z?(g=d.styledMode?g.replace(/<(b|strong)>/g,'').replace(/<(i|em)>/g, +''):g.replace(/<(b|strong)>/g,'').replace(/<(i|em)>/g,''),g=g.replace(//g,"").split(T)):g=[g],g=g.filter(function(a){return""!==a}),g.forEach(function(g,z){var f=0,x=0;g=g.replace(/^\s+|\s+$/g,"").replace(//g,"|||");var K=g.split("|||");K.forEach(function(g){if(""!==g||1===K.length){var k={},p=y.createElementNS(d.SVG_NS, +"tspan"),R,r;(R=P(g,"class"))&&I(p,"class",R);if(R=P(g,"style"))R=R.replace(/(;| |^)color([ :])/,"$1fill$2"),I(p,"style",R);(r=P(g,"href"))&&!n&&(I(p,"onclick",'location.href="'+r+'"'),I(p,"class","highcharts-anchor"),d.styledMode||h(p,{cursor:"pointer"}));g=q(g.replace(/<[a-zA-Z\/](.|\n)*?>/g,"")||" ");if(" "!==g){p.appendChild(y.createTextNode(g));f?k.dx=0:z&&null!==l&&(k.x=l);I(p,k);b.appendChild(p);!f&&Q&&(!N&&n&&h(p,{display:"block"}),I(p,"dy",V(p)));if(c){var m=g.replace(/([^\^])-/g,"$1- ").split(" "); +k=!E&&(1Math.abs(g.end-g.start-2*Math.PI));var l=Math.cos(z),x=Math.sin(z),c=Math.cos(t);t=Math.sin(t);z=r(g.longArc,.001>g.end-z-Math.PI?0:1);f=["M",a+f*l,b+h*x,"A",f,h,0,z, +r(g.clockwise,1),a+f*c,b+h*t];G(d)&&f.push(n?"M":"L",a+d*c,b+d*t,"A",d,d,0,z,G(g.clockwise)?1-g.clockwise:0,a+d*l,b+d*x);f.push(n?"":"Z");return f},callout:function(a,b,d,n,g){var z=Math.min(g&&g.r||0,d,n),f=z+6,h=g&&g.anchorX;g=g&&g.anchorY;var t=["M",a+z,b,"L",a+d-z,b,"C",a+d,b,a+d,b,a+d,b+z,"L",a+d,b+n-z,"C",a+d,b+n,a+d,b+n,a+d-z,b+n,"L",a+z,b+n,"C",a,b+n,a,b+n,a,b+n-z,"L",a,b+z,"C",a,b,a,b,a+z,b];h&&h>d?g>b+f&&gh?g>b+f&&gn&&h>a+f&&hg&&h>a+f&&ha?a+3:Math.round(1.2*a);return{h:b,b:Math.round(.8*b),f:a}},rotCorr:function(a,b,d){var n=a;b&&d&&(n=Math.max(n*Math.cos(b*l),4));return{x:-a/3*Math.sin(b*l),y:n}},label:function(a,b,d,g,z,f,h,t,l){var x=this,c=x.styledMode,k=x.g("button"!==l&&"label"),p=k.text=x.text("",0,0,h).attr({zIndex:1}),N,K,O=0,E=3,r=0,A,y,m,R,e,D={},V,T,da=/^url\((.*?)\)$/.test(g),u=c||da,v=function(){return c?N.strokeWidth()%2/2:(V?parseInt(V,10):0)% +2/2};l&&k.addClass("highcharts-"+l);var w=function(){var a=p.element.style,b={};K=("undefined"===typeof A||"undefined"===typeof y||e)&&G(p.textStr)&&p.getBBox();k.width=(A||K.width||0)+2*E+r;k.height=(y||K.height||0)+2*E;T=E+Math.min(x.fontMetrics(a&&a.fontSize,p).b,K?K.height:Infinity);u&&(N||(k.box=N=x.symbols[g]||da?x.symbol(g):x.rect(),N.addClass(("button"===l?"":"highcharts-label-box")+(l?" highcharts-"+l+"-box":"")),N.add(k),a=v(),b.x=a,b.y=(t?-T:0)+a),b.width=Math.round(k.width),b.height=Math.round(k.height), +N.attr(q(b,D)),D={})};var Q=function(){var a=r+E;var b=t?0:T;G(A)&&K&&("center"===e||"right"===e)&&(a+={center:.5,right:1}[e]*(A-K.width));if(a!==p.x||b!==p.y)p.attr("x",a),p.hasBoxWidthChanged&&(K=p.getBBox(!0),w()),"undefined"!==typeof b&&p.attr("y",b);p.x=a;p.y=b};var U=function(a,b){N?N.attr(a,b):D[a]=b};k.onAdd=function(){p.add(k);k.attr({text:a||0===a?a:"",x:b,y:d});N&&G(z)&&k.attr({anchorX:z,anchorY:f})};k.widthSetter=function(a){A=B(a)?a:null};k.heightSetter=function(a){y=a};k["text-alignSetter"]= +function(a){e=a};k.paddingSetter=function(a){G(a)&&a!==E&&(E=k.padding=a,Q())};k.paddingLeftSetter=function(a){G(a)&&a!==r&&(r=a,Q())};k.alignSetter=function(a){a={left:0,center:.5,right:1}[a];a!==O&&(O=a,K&&k.attr({x:m}))};k.textSetter=function(a){"undefined"!==typeof a&&p.attr({text:a});w();Q()};k["stroke-widthSetter"]=function(a,b){a&&(u=!0);V=this["stroke-width"]=a;U(b,a)};c?k.rSetter=function(a,b){U(b,a)}:k.strokeSetter=k.fillSetter=k.rSetter=function(a,b){"r"!==b&&("fill"===b&&a&&(u=!0),k[b]= +a);U(b,a)};k.anchorXSetter=function(a,b){z=k.anchorX=a;U(b,Math.round(a)-v()-m)};k.anchorYSetter=function(a,b){f=k.anchorY=a;U(b,a-R)};k.xSetter=function(a){k.x=a;O&&(a-=O*((A||K.width)+2*E),k["forceAnimate:x"]=!0);m=Math.round(a);k.attr("translateX",m)};k.ySetter=function(a){R=k.y=Math.round(a);k.attr("translateY",R)};var C=k.css;h={css:function(a){if(a){var b={};a=L(a);k.textProps.forEach(function(d){"undefined"!==typeof a[d]&&(b[d]=a[d],delete a[d])});p.css(b);"width"in b&&w();"fontSize"in b&& +(w(),Q())}return C.call(k,a)},getBBox:function(){return{width:K.width+2*E,height:K.height+2*E,x:K.x-E,y:K.y-E}},destroy:function(){n(k.element,"mouseenter");n(k.element,"mouseleave");p&&(p=p.destroy());N&&(N=N.destroy());P.prototype.destroy.call(k);k=x=w=Q=U=null}};c||(h.shadow=function(a){a&&(w(),N&&N.shadow(a));return k});return q(k,h)}});c.Renderer=e});M(J,"parts/Html.js",[J["parts/Globals.js"],J["parts/Utilities.js"]],function(c,e){var F=e.attr,I=e.defined,G=e.extend,H=e.pick,v=e.pInt,q=c.createElement, +C=c.css,B=c.isFirefox,u=c.isMS,w=c.isWebKit,m=c.SVGElement;e=c.SVGRenderer;var r=c.win;G(m.prototype,{htmlCss:function(c){var r="SPAN"===this.element.tagName&&c&&"width"in c,f=H(r&&c.width,void 0);if(r){delete c.width;this.textWidth=f;var b=!0}c&&"ellipsis"===c.textOverflow&&(c.whiteSpace="nowrap",c.overflow="hidden");this.styles=G(this.styles,c);C(this.element,c);b&&this.htmlUpdateTransform();return this},htmlGetBBox:function(){var c=this.element;return{x:c.offsetLeft,y:c.offsetTop,width:c.offsetWidth, +height:c.offsetHeight}},htmlUpdateTransform:function(){if(this.added){var c=this.renderer,r=this.element,f=this.translateX||0,b=this.translateY||0,a=this.x||0,d=this.y||0,h=this.textAlign||"left",k={left:0,center:.5,right:1}[h],l=this.styles,y=l&&l.whiteSpace;C(r,{marginLeft:f,marginTop:b});!c.styledMode&&this.shadows&&this.shadows.forEach(function(a){C(a,{marginLeft:f+1,marginTop:b+1})});this.inverted&&[].forEach.call(r.childNodes,function(a){c.invertChild(a,r)});if("SPAN"===r.tagName){l=this.rotation; +var p=this.textWidth&&v(this.textWidth),g=[l,h,r.innerHTML,this.textWidth,this.textAlign].join(),t;(t=p!==this.oldTextWidth)&&!(t=p>this.oldTextWidth)&&((t=this.textPxLength)||(C(r,{width:"",whiteSpace:y||"nowrap"}),t=r.offsetWidth),t=t>p);t&&(/[ \-]/.test(r.textContent||r.innerText)||"ellipsis"===r.style.textOverflow)?(C(r,{width:p+"px",display:"block",whiteSpace:y||"normal"}),this.oldTextWidth=p,this.hasBoxWidthChanged=!0):this.hasBoxWidthChanged=!1;g!==this.cTT&&(y=c.fontMetrics(r.style.fontSize, +r).b,!I(l)||l===(this.oldRotation||0)&&h===this.oldAlign||this.setSpanRotation(l,k,y),this.getSpanCorrection(!I(l)&&this.textPxLength||r.offsetWidth,y,k,l,h));C(r,{left:a+(this.xCorr||0)+"px",top:d+(this.yCorr||0)+"px"});this.cTT=g;this.oldRotation=l;this.oldAlign=h}}else this.alignOnAdd=!0},setSpanRotation:function(c,r,f){var b={},a=this.renderer.getTransformKey();b[a]=b.transform="rotate("+c+"deg)";b[a+(B?"Origin":"-origin")]=b.transformOrigin=100*r+"% "+f+"px";C(this.element,b)},getSpanCorrection:function(c, +r,f){this.xCorr=-c*f;this.yCorr=-r}});G(e.prototype,{getTransformKey:function(){return u&&!/Edge/.test(r.navigator.userAgent)?"-ms-transform":w?"-webkit-transform":B?"MozTransform":r.opera?"-o-transform":""},html:function(c,r,f){var b=this.createElement("span"),a=b.element,d=b.renderer,h=d.isSVG,k=function(a,b){["opacity","visibility"].forEach(function(d){a[d+"Setter"]=function(g,f,h){var t=a.div?a.div.style:b;m.prototype[d+"Setter"].call(this,g,f,h);t&&(t[f]=g)}});a.addedSetters=!0};b.textSetter= +function(d){d!==a.innerHTML&&(delete this.bBox,delete this.oldTextWidth);this.textStr=d;a.innerHTML=H(d,"");b.doTransform=!0};h&&k(b,b.element.style);b.xSetter=b.ySetter=b.alignSetter=b.rotationSetter=function(a,d){"align"===d&&(d="textAlign");b[d]=a;b.doTransform=!0};b.afterSetters=function(){this.doTransform&&(this.htmlUpdateTransform(),this.doTransform=!1)};b.attr({text:c,x:Math.round(r),y:Math.round(f)}).css({position:"absolute"});d.styledMode||b.css({fontFamily:this.style.fontFamily,fontSize:this.style.fontSize}); +a.style.whiteSpace="nowrap";b.css=b.htmlCss;h&&(b.add=function(f){var h=d.box.parentNode,l=[];if(this.parentGroup=f){var g=f.div;if(!g){for(;f;)l.push(f),f=f.parentGroup;l.reverse().forEach(function(a){function d(b,d){a[d]=b;"translateX"===d?t.left=b+"px":t.top=b+"px";a.doTransform=!0}var f=F(a.element,"class");g=a.div=a.div||q("div",f?{className:f}:void 0,{position:"absolute",left:(a.translateX||0)+"px",top:(a.translateY||0)+"px",display:a.display,opacity:a.opacity,pointerEvents:a.styles&&a.styles.pointerEvents}, +g||h);var t=g.style;G(a,{classSetter:function(a){return function(b){this.element.setAttribute("class",b);a.className=b}}(g),on:function(){l[0].div&&b.on.apply({element:l[0].div},arguments);return a},translateXSetter:d,translateYSetter:d});a.addedSetters||k(a)})}}else g=h;g.appendChild(a);b.added=!0;b.alignOnAdd&&b.htmlUpdateTransform();return b});return b}})});M(J,"parts/Time.js",[J["parts/Globals.js"],J["parts/Utilities.js"]],function(c,e){var F=e.defined,I=e.extend,G=e.isObject,H=e.objectEach,v= +e.pad,q=e.pick,C=e.splat,B=c.merge,u=c.timeUnits,w=c.win;c.Time=function(c){this.update(c,!1)};c.Time.prototype={defaultOptions:{Date:void 0,getTimezoneOffset:void 0,timezone:void 0,timezoneOffset:0,useUTC:!0},update:function(c){var r=q(c&&c.useUTC,!0),m=this;this.options=c=B(!0,this.options||{},c);this.Date=c.Date||w.Date||Date;this.timezoneOffset=(this.useUTC=r)&&c.timezoneOffset;this.getTimezoneOffset=this.timezoneOffsetFunction();(this.variableTimezone=!(r&&!c.getTimezoneOffset&&!c.timezone))|| +this.timezoneOffset?(this.get=function(c,f){var b=f.getTime(),a=b-m.getTimezoneOffset(f);f.setTime(a);c=f["getUTC"+c]();f.setTime(b);return c},this.set=function(c,f,b){if("Milliseconds"===c||"Seconds"===c||"Minutes"===c&&0===f.getTimezoneOffset()%60)f["set"+c](b);else{var a=m.getTimezoneOffset(f);a=f.getTime()-a;f.setTime(a);f["setUTC"+c](b);c=m.getTimezoneOffset(f);a=f.getTime()+c;f.setTime(a)}}):r?(this.get=function(c,f){return f["getUTC"+c]()},this.set=function(c,f,b){return f["setUTC"+c](b)}): +(this.get=function(c,f){return f["get"+c]()},this.set=function(c,f,b){return f["set"+c](b)})},makeTime:function(m,r,e,A,f,b){if(this.useUTC){var a=this.Date.UTC.apply(0,arguments);var d=this.getTimezoneOffset(a);a+=d;var h=this.getTimezoneOffset(a);d!==h?a+=h-d:d-36E5!==this.getTimezoneOffset(a-36E5)||c.isSafari||(a-=36E5)}else a=(new this.Date(m,r,q(e,1),q(A,0),q(f,0),q(b,0))).getTime();return a},timezoneOffsetFunction:function(){var m=this,r=this.options,e=w.moment;if(!this.useUTC)return function(c){return 6E4* +(new Date(c)).getTimezoneOffset()};if(r.timezone){if(e)return function(c){return 6E4*-e.tz(c,r.timezone).utcOffset()};c.error(25)}return this.useUTC&&r.getTimezoneOffset?function(c){return 6E4*r.getTimezoneOffset(c)}:function(){return 6E4*(m.timezoneOffset||0)}},dateFormat:function(m,r,e){if(!F(r)||isNaN(r))return c.defaultOptions.lang.invalidDate||"";m=q(m,"%Y-%m-%d %H:%M:%S");var A=this,f=new this.Date(r),b=this.get("Hours",f),a=this.get("Day",f),d=this.get("Date",f),h=this.get("Month",f),k=this.get("FullYear", +f),l=c.defaultOptions.lang,y=l.weekdays,p=l.shortWeekdays;f=I({a:p?p[a]:y[a].substr(0,3),A:y[a],d:v(d),e:v(d,2," "),w:a,b:l.shortMonths[h],B:l.months[h],m:v(h+1),o:h+1,y:k.toString().substr(2,2),Y:k,H:v(b),k:b,I:v(b%12||12),l:b%12||12,M:v(A.get("Minutes",f)),p:12>b?"AM":"PM",P:12>b?"am":"pm",S:v(f.getSeconds()),L:v(Math.floor(r%1E3),3)},c.dateFormats);H(f,function(a,b){for(;-1!==m.indexOf("%"+b);)m=m.replace("%"+b,"function"===typeof a?a.call(A,r):a)});return e?m.substr(0,1).toUpperCase()+m.substr(1): +m},resolveDTLFormat:function(c){return G(c,!0)?c:(c=C(c),{main:c[0],from:c[1],to:c[2]})},getTimeTicks:function(c,r,e,A){var f=this,b=[],a={};var d=new f.Date(r);var h=c.unitRange,k=c.count||1,l;A=q(A,1);if(F(r)){f.set("Milliseconds",d,h>=u.second?0:k*Math.floor(f.get("Milliseconds",d)/k));h>=u.second&&f.set("Seconds",d,h>=u.minute?0:k*Math.floor(f.get("Seconds",d)/k));h>=u.minute&&f.set("Minutes",d,h>=u.hour?0:k*Math.floor(f.get("Minutes",d)/k));h>=u.hour&&f.set("Hours",d,h>=u.day?0:k*Math.floor(f.get("Hours", +d)/k));h>=u.day&&f.set("Date",d,h>=u.month?1:Math.max(1,k*Math.floor(f.get("Date",d)/k)));if(h>=u.month){f.set("Month",d,h>=u.year?0:k*Math.floor(f.get("Month",d)/k));var y=f.get("FullYear",d)}h>=u.year&&f.set("FullYear",d,y-y%k);h===u.week&&(y=f.get("Day",d),f.set("Date",d,f.get("Date",d)-y+A+(y4*u.month||f.getTimezoneOffset(r)!==f.getTimezoneOffset(e));r=d.getTime(); +for(d=1;rb.length&&b.forEach(function(b){0===b%18E5&&"000000000"===f.dateFormat("%H%M%S%L",b)&&(a[b]="day")})}b.info=I(c,{higherRanks:a,totalRange:h*k});return b}}});M(J,"parts/Options.js",[J["parts/Globals.js"]],function(c){var e=c.color,F=c.merge;c.defaultOptions={colors:"#7cb5ec #434348 #90ed7d #f7a35c #8085e9 #f15c80 #e4d354 #2b908f #f45b5b #91e8e1".split(" "), +symbols:["circle","diamond","square","triangle","triangle-down"],lang:{loading:"Loading...",months:"January February March April May June July August September October November December".split(" "),shortMonths:"Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec".split(" "),weekdays:"Sunday Monday Tuesday Wednesday Thursday Friday Saturday".split(" "),decimalPoint:".",numericSymbols:"kMGTPE".split(""),resetZoom:"Reset zoom",resetZoomTitle:"Reset zoom level 1:1",thousandsSep:" "},global:{},time:c.Time.prototype.defaultOptions, +chart:{styledMode:!1,borderRadius:0,colorCount:10,defaultSeriesType:"line",ignoreHiddenSeries:!0,spacing:[10,10,15,10],resetZoomButton:{theme:{zIndex:6},position:{align:"right",x:-10,y:10}},width:null,height:null,borderColor:"#335cad",backgroundColor:"#ffffff",plotBorderColor:"#cccccc"},title:{text:"Chart title",align:"center",margin:15,widthAdjust:-44},subtitle:{text:"",align:"center",widthAdjust:-44},caption:{margin:15,text:"",align:"left",verticalAlign:"bottom"},plotOptions:{},labels:{style:{position:"absolute", +color:"#333333"}},legend:{enabled:!0,align:"center",alignColumns:!0,layout:"horizontal",labelFormatter:function(){return this.name},borderColor:"#999999",borderRadius:0,navigation:{activeColor:"#003399",inactiveColor:"#cccccc"},itemStyle:{color:"#333333",cursor:"pointer",fontSize:"12px",fontWeight:"bold",textOverflow:"ellipsis"},itemHoverStyle:{color:"#000000"},itemHiddenStyle:{color:"#cccccc"},shadow:!1,itemCheckboxStyle:{position:"absolute",width:"13px",height:"13px"},squareSymbol:!0,symbolPadding:5, +verticalAlign:"bottom",x:0,y:0,title:{style:{fontWeight:"bold"}}},loading:{labelStyle:{fontWeight:"bold",position:"relative",top:"45%"},style:{position:"absolute",backgroundColor:"#ffffff",opacity:.5,textAlign:"center"}},tooltip:{enabled:!0,animation:c.svg,borderRadius:3,dateTimeLabelFormats:{millisecond:"%A, %b %e, %H:%M:%S.%L",second:"%A, %b %e, %H:%M:%S",minute:"%A, %b %e, %H:%M",hour:"%A, %b %e, %H:%M",day:"%A, %b %e, %Y",week:"Week from %A, %b %e, %Y",month:"%B %Y",year:"%Y"},footerFormat:"", +padding:8,snap:c.isTouchDevice?25:10,headerFormat:'{point.key}
',pointFormat:'\u25cf {series.name}: {point.y}
',backgroundColor:e("#f7f7f7").setOpacity(.85).get(),borderWidth:1,shadow:!0,style:{color:"#333333",cursor:"default",fontSize:"12px",pointerEvents:"none",whiteSpace:"nowrap"}},credits:{enabled:!0,href:"https://www.highcharts.com?credits",position:{align:"right",x:-10,verticalAlign:"bottom",y:-5},style:{cursor:"pointer", +color:"#999999",fontSize:"9px"},text:"Highcharts.com"}};c.setOptions=function(e){c.defaultOptions=F(!0,c.defaultOptions,e);(e.time||e.global)&&c.time.update(F(c.defaultOptions.global,c.defaultOptions.time,e.global,e.time));return c.defaultOptions};c.getOptions=function(){return c.defaultOptions};c.defaultPlotOptions=c.defaultOptions.plotOptions;c.time=new c.Time(F(c.defaultOptions.global,c.defaultOptions.time));c.dateFormat=function(e,G,H){return c.time.dateFormat(e,G,H)};""});M(J,"parts/Tick.js", +[J["parts/Globals.js"],J["parts/Utilities.js"]],function(c,e){var F=e.clamp,I=e.correctFloat,G=e.defined,H=e.destroyObjectProperties,v=e.extend,q=e.isNumber,C=e.objectEach,B=e.pick,u=c.fireEvent,w=c.merge,m=c.deg2rad;c.Tick=function(c,e,m,f,b){this.axis=c;this.pos=e;this.type=m||"";this.isNewLabel=this.isNew=!0;this.parameters=b||{};this.tickmarkOffset=this.parameters.tickmarkOffset;this.options=this.parameters.options;m||f||this.addLabel()};c.Tick.prototype={addLabel:function(){var c=this,e=c.axis, +m=e.options,f=e.chart,b=e.categories,a=e.names,d=c.pos,h=B(c.options&&c.options.labels,m.labels),k=e.tickPositions,l=d===k[0],y=d===k[k.length-1];a=this.parameters.category||(b?B(b[d],a[d],d):d);var p=c.label;b=(!h.step||1===h.step)&&1===e.tickInterval;k=k.info;var g,t;if(e.isDatetimeAxis&&k){var x=f.time.resolveDTLFormat(m.dateTimeLabelFormats[!m.grid&&k.higherRanks[d]||k.unitName]);var L=x.main}c.isFirst=l;c.isLast=y;c.formatCtx={axis:e,chart:f,isFirst:l,isLast:y,dateTimeLabelFormat:L,tickPositionInfo:k, +value:e.isLog?I(e.lin2log(a)):a,pos:d};m=e.labelFormatter.call(c.formatCtx,this.formatCtx);if(t=x&&x.list)c.shortenLabel=function(){for(g=0;gk&&f-l*ya&&(x=Math.round((b-f)/Math.cos(k*m)));else if(b=f+(1-l)*y,f-l*ya&&(g=a-c.x+g*l,t=-1),g=Math.min(p,g),gg||e.autoRotation&&(h.styles||{}).width)x=g;x&&(this.shortenLabel?this.shortenLabel():(L.width=Math.floor(x),(r.style||{}).textOverflow||(L.textOverflow="ellipsis"),h.css(L)))},getPosition:function(c,e,m, +f){var b=this.axis,a=b.chart,d=f&&a.oldChartHeight||a.chartHeight;c={x:c?I(b.translate(e+m,null,null,f)+b.transB):b.left+b.offset+(b.opposite?(f&&a.oldChartWidth||a.chartWidth)-b.right-b.left:0),y:c?d-b.bottom+b.offset-(b.opposite?b.height:0):I(d-b.translate(e+m,null,null,f)-b.transB)};c.y=F(c.y,-1E5,1E5);u(this,"afterGetPosition",{pos:c});return c},getLabelPosition:function(c,e,A,f,b,a,d,h){var k=this.axis,l=k.transA,r=k.isLinked&&k.linkedParent?k.linkedParent.reversed:k.reversed,p=k.staggerLines, +g=k.tickRotCorr||{x:0,y:0},t=b.y,x=f||k.reserveSpaceDefault?0:-k.labelOffset*("center"===k.labelAlign?.5:1),L={};G(t)||(t=0===k.side?A.rotation?-8:-A.getBBox().height:2===k.side?g.y+8:Math.cos(A.rotation*m)*(g.y-A.getBBox(!1,0).height/2));c=c+b.x+x+g.x-(a&&f?a*l*(r?-1:1):0);e=e+t-(a&&!f?a*l*(r?1:-1):0);p&&(A=d/(h||1)%p,k.opposite&&(A=p-A-1),e+=k.labelOffset/p*A);L.x=c;L.y=Math.round(e);u(this,"afterGetLabelPosition",{pos:L,tickmarkOffset:a,index:d});return L},getMarkPath:function(c,e,m,f,b,a){return a.crispLine(["M", +c,e,"L",c+(b?0:-m),e+(b?m:0)],f)},renderGridLine:function(c,e,m){var f=this.axis,b=f.options,a=this.gridLine,d={},h=this.pos,k=this.type,l=B(this.tickmarkOffset,f.tickmarkOffset),r=f.chart.renderer,p=k?k+"Grid":"grid",g=b[p+"LineWidth"],t=b[p+"LineColor"];b=b[p+"LineDashStyle"];a||(f.chart.styledMode||(d.stroke=t,d["stroke-width"]=g,b&&(d.dashstyle=b)),k||(d.zIndex=1),c&&(e=0),this.gridLine=a=r.path().attr(d).addClass("highcharts-"+(k?k+"-":"")+"grid-line").add(f.gridGroup));if(a&&(m=f.getPlotLinePath({value:h+ +l,lineWidth:a.strokeWidth()*m,force:"pass",old:c})))a[c||this.isNew?"attr":"animate"]({d:m,opacity:e})},renderMark:function(c,e,m){var f=this.axis,b=f.options,a=f.chart.renderer,d=this.type,h=d?d+"Tick":"tick",k=f.tickSize(h),l=this.mark,r=!l,p=c.x;c=c.y;var g=B(b[h+"Width"],!d&&f.isXAxis?1:0);b=b[h+"Color"];k&&(f.opposite&&(k[0]=-k[0]),r&&(this.mark=l=a.path().addClass("highcharts-"+(d?d+"-":"")+"tick").add(f.axisGroup),f.chart.styledMode||l.attr({stroke:b,"stroke-width":g})),l[r?"attr":"animate"]({d:this.getMarkPath(p, +c,k[0],l.strokeWidth()*m,f.horiz,a),opacity:e}))},renderLabel:function(c,e,m,f){var b=this.axis,a=b.horiz,d=b.options,h=this.label,k=d.labels,l=k.step;b=B(this.tickmarkOffset,b.tickmarkOffset);var y=!0,p=c.x;c=c.y;h&&q(p)&&(h.xy=c=this.getLabelPosition(p,c,h,a,k,b,f,l),this.isFirst&&!this.isLast&&!B(d.showFirstLabel,1)||this.isLast&&!this.isFirst&&!B(d.showLastLabel,1)?y=!1:!a||k.step||k.rotation||e||0===m||this.handleOverflow(c),l&&f%l&&(y=!1),y&&q(c.y)?(c.opacity=m,h[this.isNewLabel?"attr":"animate"](c), +this.isNewLabel=!1):(h.attr("y",-9999),this.isNewLabel=!0))},render:function(e,m,q){var f=this.axis,b=f.horiz,a=this.pos,d=B(this.tickmarkOffset,f.tickmarkOffset);a=this.getPosition(b,a,d,m);d=a.x;var h=a.y;f=b&&d===f.pos+f.len||!b&&h===f.pos?-1:1;q=B(q,1);this.isActive=!0;this.renderGridLine(m,q,f);this.renderMark(a,q,f);this.renderLabel(a,m,q,e);this.isNew=!1;c.fireEvent(this,"afterRender")},destroy:function(){H(this,this.axis)}}});M(J,"parts/Axis.js",[J["parts/Globals.js"],J["parts/Utilities.js"]], +function(c,e){var F=e.animObject,I=e.arrayMax,G=e.arrayMin,H=e.clamp,v=e.correctFloat,q=e.defined,C=e.destroyObjectProperties,B=e.extend,u=e.isArray,w=e.isNumber,m=e.isString,r=e.objectEach,D=e.pick,A=e.relativeLength,f=e.splat,b=e.syncTimeout,a=c.addEvent,d=c.color,h=c.defaultOptions,k=c.deg2rad,l=c.fireEvent,y=c.format,p=c.getMagnitude,g=c.merge,t=c.normalizeTickInterval,x=c.removeEvent,L=c.seriesTypes,E=c.Tick;e=function(){this.init.apply(this,arguments)};B(e.prototype,{defaultOptions:{dateTimeLabelFormats:{millisecond:{main:"%H:%M:%S.%L", +range:!1},second:{main:"%H:%M:%S",range:!1},minute:{main:"%H:%M",range:!1},hour:{main:"%H:%M",range:!1},day:{main:"%e. %b"},week:{main:"%e. %b"},month:{main:"%b '%y"},year:{main:"%Y"}},endOnTick:!1,labels:{enabled:!0,indentation:10,x:0,style:{color:"#666666",cursor:"default",fontSize:"11px"}},maxPadding:.01,minorTickLength:2,minorTickPosition:"outside",minPadding:.01,showEmpty:!0,startOfWeek:1,startOnTick:!1,tickLength:10,tickPixelInterval:100,tickmarkPlacement:"between",tickPosition:"outside",title:{align:"middle", +style:{color:"#666666"}},type:"linear",minorGridLineColor:"#f2f2f2",minorGridLineWidth:1,minorTickColor:"#999999",lineColor:"#ccd6eb",lineWidth:1,gridLineColor:"#e6e6e6",tickColor:"#ccd6eb"},defaultYAxisOptions:{endOnTick:!0,maxPadding:.05,minPadding:.05,tickPixelInterval:72,showLastLabel:!0,labels:{x:-8},startOnTick:!0,title:{rotation:270,text:"Values"},stackLabels:{allowOverlap:!1,enabled:!1,crop:!0,overflow:"justify",formatter:function(){var a=this.axis.chart.numberFormatter;return a(this.total, +-1)},style:{color:"#000000",fontSize:"11px",fontWeight:"bold",textOutline:"1px contrast"}},gridLineWidth:1,lineWidth:0},defaultLeftAxisOptions:{labels:{x:-15},title:{rotation:270}},defaultRightAxisOptions:{labels:{x:15},title:{rotation:90}},defaultBottomAxisOptions:{labels:{autoRotation:[-45],x:0},margin:15,title:{rotation:0}},defaultTopAxisOptions:{labels:{autoRotation:[-45],x:0},margin:15,title:{rotation:0}},init:function(b,d){var n=d.isX,g=this;g.chart=b;g.horiz=b.inverted&&!g.isZAxis?!n:n;g.isXAxis= +n;g.coll=g.coll||(n?"xAxis":"yAxis");l(this,"init",{userOptions:d});g.opposite=d.opposite;g.side=d.side||(g.horiz?g.opposite?0:2:g.opposite?1:3);g.setOptions(d);var z=this.options,h=z.type;g.labelFormatter=z.labels.formatter||g.defaultLabelFormatter;g.userOptions=d;g.minPixelPadding=0;g.reversed=z.reversed;g.visible=!1!==z.visible;g.zoomEnabled=!1!==z.zoomEnabled;g.hasNames="category"===h||!0===z.categories;g.categories=z.categories||g.hasNames;g.names||(g.names=[],g.names.keys={});g.plotLinesAndBandsGroups= +{};g.isLog="logarithmic"===h;g.isDatetimeAxis="datetime"===h;g.positiveValuesOnly=g.isLog&&!g.allowNegativeLog;g.isLinked=q(z.linkedTo);g.ticks={};g.labelEdge=[];g.minorTicks={};g.plotLinesAndBands=[];g.alternateBands={};g.len=0;g.minRange=g.userMinRange=z.minRange||z.maxZoom;g.range=z.range;g.offset=z.offset||0;g.stacks={};g.oldStacks={};g.stacksTouched=0;g.max=null;g.min=null;g.crosshair=D(z.crosshair,f(b.options.tooltip.crosshairs)[n?0:1],!1);d=g.options.events;-1===b.axes.indexOf(g)&&(n?b.axes.splice(b.xAxis.length, +0,g):b.axes.push(g),b[g.coll].push(g));g.series=g.series||[];b.inverted&&!g.isZAxis&&n&&"undefined"===typeof g.reversed&&(g.reversed=!0);r(d,function(b,d){c.isFunction(b)&&a(g,d,b)});g.lin2log=z.linearToLogConverter||g.lin2log;g.isLog&&(g.val2lin=g.log2lin,g.lin2val=g.lin2log);l(this,"afterInit")},setOptions:function(a){this.options=g(this.defaultOptions,"yAxis"===this.coll&&this.defaultYAxisOptions,[this.defaultTopAxisOptions,this.defaultRightAxisOptions,this.defaultBottomAxisOptions,this.defaultLeftAxisOptions][this.side], +g(h[this.coll],a));l(this,"afterSetOptions",{userOptions:a})},defaultLabelFormatter:function(){var a=this.axis,b=this.value,d=a.chart.time,g=a.categories,f=this.dateTimeLabelFormat,c=h.lang,t=c.numericSymbols;c=c.numericSymbolMagnitude||1E3;var l=t&&t.length,x=a.options.labels.format;a=a.isLog?Math.abs(b):a.tickInterval;var k=this.chart,p=k.numberFormatter;if(x)var e=y(x,this,k);else if(g)e=b;else if(f)e=d.dateFormat(f,b);else if(l&&1E3<=a)for(;l--&&"undefined"===typeof e;)d=Math.pow(c,l+1),a>=d&& +0===10*b%d&&null!==t[l]&&0!==b&&(e=p(b/d,-1)+t[l]);"undefined"===typeof e&&(e=1E4<=Math.abs(b)?p(b,-1):p(b,-1,void 0,""));return e},getSeriesExtremes:function(){var a=this,b=a.chart,d;l(this,"getSeriesExtremes",null,function(){a.hasVisibleSeries=!1;a.dataMin=a.dataMax=a.threshold=null;a.softThreshold=!a.isXAxis;a.buildStacks&&a.buildStacks();a.series.forEach(function(g){if(g.visible||!b.options.chart.ignoreHiddenSeries){var n=g.options,z=n.threshold;a.hasVisibleSeries=!0;a.positiveValuesOnly&&0>= +z&&(z=null);if(a.isXAxis){if(n=g.xData,n.length){d=g.getXExtremes(n);var f=d.min;var h=d.max;w(f)||f instanceof Date||(n=n.filter(w),d=g.getXExtremes(n),f=d.min,h=d.max);n.length&&(a.dataMin=Math.min(D(a.dataMin,f),f),a.dataMax=Math.max(D(a.dataMax,h),h))}}else if(g.getExtremes(),h=g.dataMax,f=g.dataMin,q(f)&&q(h)&&(a.dataMin=Math.min(D(a.dataMin,f),f),a.dataMax=Math.max(D(a.dataMax,h),h)),q(z)&&(a.threshold=z),!n.softThreshold||a.positiveValuesOnly)a.softThreshold=!1}})});l(this,"afterGetSeriesExtremes")}, +translate:function(a,b,d,g,f,h){var n=this.linkedParent||this,z=1,c=0,t=g?n.oldTransA:n.transA;g=g?n.oldMin:n.min;var l=n.minPixelPadding;f=(n.isOrdinal||n.isBroken||n.isLog&&f)&&n.lin2val;t||(t=n.transA);d&&(z*=-1,c=n.len);n.reversed&&(z*=-1,c-=z*(n.sector||n.len));b?(a=(a*z+c-l)/t+g,f&&(a=n.lin2val(a))):(f&&(a=n.val2lin(a)),a=w(g)?z*(a-g)*t+c+z*l+(w(h)?t*h:0):void 0);return a},toPixels:function(a,b){return this.translate(a,!1,!this.horiz,null,!0)+(b?0:this.pos)},toValue:function(a,b){return this.translate(a- +(b?0:this.pos),!0,!this.horiz,null,!0)},getPlotLinePath:function(a){var b=this,d=b.chart,g=b.left,n=b.top,f=a.old,h=a.value,c=a.translatedValue,t=a.lineWidth,x=a.force,k,p,e,E,m=f&&d.oldChartHeight||d.chartHeight,L=f&&d.oldChartWidth||d.chartWidth,y,r=b.transB,q=function(a,b,d){if("pass"!==x&&ad)x?a=H(a,b,d):y=!0;return a};a={value:h,lineWidth:t,old:f,force:x,acrossPanes:a.acrossPanes,translatedValue:c};l(this,"getPlotLinePath",a,function(a){c=D(c,b.translate(h,null,null,f));c=H(c,-1E5,1E5); +k=e=Math.round(c+r);p=E=Math.round(m-c-r);w(c)?b.horiz?(p=n,E=m-b.bottom,k=e=q(k,g,g+b.width)):(k=g,e=L-b.right,p=E=q(p,n,n+b.height)):(y=!0,x=!1);a.path=y&&!x?null:d.renderer.crispLine(["M",k,p,"L",e,E],t||1)});return a.path},getLinearTickPositions:function(a,b,d){var g=v(Math.floor(b/a)*a);d=v(Math.ceil(d/a)*a);var n=[],f;v(g+a)===g&&(f=20);if(this.single)return[b];for(b=g;b<=d;){n.push(b);b=v(b+a,f);if(b===z)break;var z=b}return n},getMinorTickInterval:function(){var a=this.options;return!0=== +a.minorTicks?D(a.minorTickInterval,"auto"):!1===a.minorTicks?null:a.minorTickInterval},getMinorTickPositions:function(){var a=this,b=a.options,d=a.tickPositions,g=a.minorTickInterval,f=[],h=a.pointRangePadding||0,c=a.min-h;h=a.max+h;var t=h-c;if(t&&t/g=this.minRange;var x=this.minRange;var k=(x-d+b)/2;k=[b-k,D(a.min,b-k)];l&&(k[2]=this.isLog?this.log2lin(this.dataMin):this.dataMin);b=I(k);d=[b+x,D(a.max,b+x)];l&&(d[2]=this.isLog?this.log2lin(this.dataMax):this.dataMax);d=G(d);d-b=y)C=y,e=0;else if(b.dataMax<=y){var B=y;k=0}b.min=D(A,C,b.dataMin);b.max=D(u,B,b.dataMax)}n&&(b.positiveValuesOnly&&!a&&0>=Math.min(b.min,D(b.dataMin,b.min))&&c.error(10,1,d),b.min=v(b.log2lin(b.min),16),b.max=v(b.log2lin(b.max),16));b.range&&q(b.max)&&(b.userMin=b.min=A=Math.max(b.dataMin, +b.minFromRange()),b.userMax=u=b.max,b.range=null);l(b,"foundExtremes");b.beforePadding&&b.beforePadding();b.adjustForMinRange();!(L||b.axisPointRange||b.usePercentage||x)&&q(b.min)&&q(b.max)&&(d=b.max-b.min)&&(!q(A)&&e&&(b.min-=d*e),!q(u)&&k&&(b.max+=d*k));w(b.userMin)||(w(g.softMin)&&g.softMinb.max&&(b.max=u=g.softMax),w(g.ceiling)&&(b.max=Math.min(b.max,g.ceiling)));r&&q(b.dataMin)&&(y= +y||0,!q(A)&&b.min=y?b.min=b.options.minRange?Math.min(y,b.max-b.minRange):y:!q(u)&&b.max>y&&b.dataMax<=y&&(b.max=b.options.minRange?Math.max(y,b.min+b.minRange):y));b.tickInterval=b.min===b.max||"undefined"===typeof b.min||"undefined"===typeof b.max?1:x&&!E&&m===b.linkedParent.options.tickPixelInterval?E=b.linkedParent.tickInterval:D(E,this.tickAmount?(b.max-b.min)/Math.max(this.tickAmount-1,1):void 0,L?1:(b.max-b.min)*m/Math.max(b.len,m));h&&!a&&b.series.forEach(function(a){a.processData(b.min!== +b.oldMin||b.max!==b.oldMax)});b.setAxisTranslation(!0);b.beforeSetTickPositions&&b.beforeSetTickPositions();b.postProcessTickInterval&&(b.tickInterval=b.postProcessTickInterval(b.tickInterval));b.pointRange&&!E&&(b.tickInterval=Math.max(b.pointRange,b.tickInterval));a=D(g.minTickInterval,b.isDatetimeAxis&&b.closestPointRange);!E&&b.tickIntervalb.tickInterval&&1E3b.max)),!!this.tickAmount));this.tickAmount||(b.tickInterval=b.unsquish());this.setTickPositions()},setTickPositions:function(){var a=this.options,b=a.tickPositions;var d=this.getMinorTickInterval();var g=a.tickPositioner,f=a.startOnTick,h=a.endOnTick;this.tickmarkOffset=this.categories&&"between"===a.tickmarkPlacement&&1===this.tickInterval?.5:0;this.minorTickInterval="auto"===d&&this.tickInterval?this.tickInterval/5:d;this.single=this.min===this.max&&q(this.min)&&!this.tickAmount&&(parseInt(this.min, +10)===this.min||!1!==a.allowDecimals);this.tickPositions=d=b&&b.slice();!d&&(!this.ordinalPositions&&(this.max-this.min)/this.tickInterval>Math.max(2*this.len,200)?(d=[this.min,this.max],c.error(19,!1,this.chart)):d=this.isDatetimeAxis?this.getTimeTicks(this.normalizeTimeTickInterval(this.tickInterval,a.units),this.min,this.max,a.startOfWeek,this.ordinalPositions,this.closestPointRange,!0):this.isLog?this.getLogTickPositions(this.tickInterval,this.min,this.max):this.getLinearTickPositions(this.tickInterval, +this.min,this.max),d.length>this.len&&(d=[d[0],d.pop()],d[0]===d[1]&&(d.length=1)),this.tickPositions=d,g&&(g=g.apply(this,[this.min,this.max])))&&(this.tickPositions=d=g);this.paddedTicks=d.slice(0);this.trimTicks(d,f,h);this.isLinked||(this.single&&2>d.length&&!this.categories&&(this.min-=.5,this.max+=.5),b||g||this.adjustTickAmount());l(this,"afterSetTickPositions")},trimTicks:function(a,b,d){var g=a[0],n=a[a.length-1],f=this.minPointOffset||0;l(this,"trimTicks");if(!this.isLinked){if(b&&-Infinity!== +g)this.min=g;else for(;this.min-f>a[0];)a.shift();if(d)this.max=n;else for(;this.max+fb&&(this.finalTickAmt=b,b=5);this.tickAmount=b},adjustTickAmount:function(){var a=this.options,b=this.tickInterval,d=this.tickPositions,g=this.tickAmount,f=this.finalTickAmt,h=d&&d.length,c=D(this.threshold,this.softThreshold?0:null),t;if(this.hasData()){if(hg&&(this.tickInterval*=2,this.setTickPositions());if(q(f)){for(b=a=d.length;b--;)(3===f&&1===b%2||2>=f&&0h&&(b=h)),q(g)&&(nh&&(n=h))),this.displayBtn="undefined"!==typeof b||"undefined"!==typeof n,this.setExtremes(b,n,!1,void 0,{trigger:"zoom"});a.zoomed=!0});return a.zoomed},setAxisSize:function(){var a=this.chart,b=this.options,d=b.offsets||[0,0,0,0],g=this.horiz,f=this.width=Math.round(A(D(b.width,a.plotWidth-d[3]+d[1]),a.plotWidth)),h=this.height=Math.round(A(D(b.height,a.plotHeight-d[0]+d[2]),a.plotHeight)),c=this.top=Math.round(A(D(b.top,a.plotTop+d[0]),a.plotHeight, +a.plotTop));b=this.left=Math.round(A(D(b.left,a.plotLeft+d[3]),a.plotWidth,a.plotLeft));this.bottom=a.chartHeight-h-c;this.right=a.chartWidth-f-b;this.len=Math.max(g?f:h,0);this.pos=g?b:c},getExtremes:function(){var a=this.isLog;return{min:a?v(this.lin2log(this.min)):this.min,max:a?v(this.lin2log(this.max)):this.max,dataMin:this.dataMin,dataMax:this.dataMax,userMin:this.userMin,userMax:this.userMax}},getThreshold:function(a){var b=this.isLog,d=b?this.lin2log(this.min):this.min;b=b?this.lin2log(this.max): +this.max;null===a||-Infinity===a?a=d:Infinity===a?a=b:d>a?a=d:bb?a.align="right":195b&&(a.align="left")});return a.align},tickSize:function(a){var b=this.options,d=b[a+"Length"],g=D(b[a+"Width"],"tick"===a&&this.isXAxis&&!this.categories?1:0);if(g&&d){"inside"===b[a+"Position"]&&(d=-d);var f=[d,g]}a={tickSize:f};l(this, +"afterTickSize",a);return a.tickSize},labelMetrics:function(){var a=this.tickPositions&&this.tickPositions[0]||0;return this.chart.renderer.fontMetrics(this.options.labels.style&&this.options.labels.style.fontSize,this.ticks[a]&&this.ticks[a].label)},unsquish:function(){var a=this.options.labels,b=this.horiz,d=this.tickInterval,g=d,f=this.len/(((this.categories?1:0)+this.max-this.min)/d),h,c=a.rotation,t=this.labelMetrics(),l,x=Number.MAX_VALUE,p,e=this.max-this.min,E=function(a){var b=a/(f||1);b= +1e&&Infinity!==a&&Infinity!==f&&e&&(b=Math.ceil(e/d));return v(b*d)};b?(p=!a.staggerLines&&!a.step&&(q(c)?[c]:f=a){l=E(Math.abs(t.h/Math.sin(k*a)));var b=l+Math.abs(a/360);b(g.step||0)&&!g.rotation&&(this.staggerLines||1)*this.len/f||!d&&(g.style&&parseInt(g.style.width,10)||n&&n-b.spacing[3]||.33*b.chartWidth)},renderUnsquish:function(){var a=this.chart,b=a.renderer,d=this.tickPositions,g=this.ticks,f=this.options.labels,h=f&&f.style||{},c=this.horiz,t=this.getSlotWidth(),l=Math.max(1,Math.round(t-2*(f.padding||5))),x={},k=this.labelMetrics(),p=f.style&&f.style.textOverflow,e=0;m(f.rotation)||(x.rotation=f.rotation|| +0);d.forEach(function(a){a=g[a];a.movedLabel&&a.replaceMovedLabel();a&&a.label&&a.label.textPxLength>e&&(e=a.label.textPxLength)});this.maxLabelLength=e;if(this.autoRotation)e>l&&e>k.h?x.rotation=this.labelRotation:this.labelRotation=0;else if(t){var E=l;if(!p){var L="clip";for(l=d.length;!c&&l--;){var y=d[l];if(y=g[y].label)y.styles&&"ellipsis"===y.styles.textOverflow?y.css({textOverflow:"clip"}):y.textPxLength>t&&y.css({width:t+"px"}),y.getBBox().height>this.len/d.length-(k.h-k.f)&&(y.specificTextOverflow= +"ellipsis")}}}x.rotation&&(E=e>.5*a.chartHeight?.33*a.chartHeight:e,p||(L="ellipsis"));if(this.labelAlign=f.align||this.autoLabelAlign(this.labelRotation))x.align=this.labelAlign;d.forEach(function(a){var b=(a=g[a])&&a.label,d=h.width,f={};b&&(b.attr(x),a.shortenLabel?a.shortenLabel():E&&!d&&"nowrap"!==h.whiteSpace&&(E=this.min&&a<=this.max)g[a]||(g[a]=new E(this,a)),f&&g[a].isNew&&g[a].render(b,!0,-1),g[a].render(b)},render:function(){var a=this,d=a.chart,g=a.options,f=a.isLog,h=a.isLinked,t=a.tickPositions,x=a.axisTitle,k=a.ticks,p=a.minorTicks,e=a.alternateBands,m=g.stackLabels,L=g.alternateGridColor,y=a.tickmarkOffset,q=a.axisLine,A=a.showAxis,u=F(d.renderer.globalAnimation),D,v;a.labelEdge.length= +0;a.overlap=!1;[k,p,e].forEach(function(a){r(a,function(a){a.isActive=!1})});if(a.hasData()||h)a.minorTickInterval&&!a.categories&&a.getMinorTickPositions().forEach(function(b){a.renderMinorTick(b)}),t.length&&(t.forEach(function(b,d){a.renderTick(b,d)}),y&&(0===a.min||a.single)&&(k[-1]||(k[-1]=new E(a,-1,null,!0)),k[-1].render(-1))),L&&t.forEach(function(b,g){v="undefined"!==typeof t[g+1]?t[g+1]+y:a.max-y;0===g%2&&be&&(!C||f<=q)&&"undefined"!==typeof f&&w.push(f); +f>q&&(r=!0);var f=A}}}else e=this.lin2log(e),q=this.lin2log(q),c=C?this.getMinorTickInterval():v.tickInterval,c=F("auto"===c?null:c,this._minorAutoInterval,v.tickPixelInterval/(C?5:1)*(q-e)/((C?u/this.tickPositions.length:u)||1)),c=G(c,null,I(c)),w=this.getLinearTickPositions(c,e,q).map(this.log2lin),C||(this._minorAutoInterval=c/5);C||(this.tickInterval=c);return w};e.prototype.log2lin=function(c){return Math.log(c)/Math.LN10};e.prototype.lin2log=function(c){return Math.pow(10,c)}});M(J,"parts/PlotLineOrBand.js", +[J["parts/Globals.js"],J["parts/Axis.js"],J["parts/Utilities.js"]],function(c,e,F){var I=F.arrayMax,G=F.arrayMin,H=F.defined,v=F.destroyObjectProperties,q=F.erase,C=F.extend,B=F.objectEach,u=F.pick,w=c.merge;c.PlotLineOrBand=function(c,e){this.axis=c;e&&(this.options=e,this.id=e.id)};c.PlotLineOrBand.prototype={render:function(){c.fireEvent(this,"render");var e=this,r=e.axis,q=r.horiz,A=e.options,f=A.label,b=e.label,a=A.to,d=A.from,h=A.value,k=H(d)&&H(a),l=H(h),y=e.svgElem,p=!y,g=[],t=A.color,x=u(A.zIndex, +0),L=A.events;g={"class":"highcharts-plot-"+(k?"band ":"line ")+(A.className||"")};var E={},n=r.chart.renderer,z=k?"bands":"lines";r.isLog&&(d=r.log2lin(d),a=r.log2lin(a),h=r.log2lin(h));r.chart.styledMode||(l?(g.stroke=t||"#999999",g["stroke-width"]=u(A.width,1),A.dashStyle&&(g.dashstyle=A.dashStyle)):k&&(g.fill=t||"#e6ebf5",A.borderWidth&&(g.stroke=A.borderColor,g["stroke-width"]=A.borderWidth)));E.zIndex=x;z+="-"+x;(t=r.plotLinesAndBandsGroups[z])||(r.plotLinesAndBandsGroups[z]=t=n.g("plot-"+z).attr(E).add()); +p&&(e.svgElem=y=n.path().attr(g).add(t));if(l)g=r.getPlotLinePath({value:h,lineWidth:y.strokeWidth(),acrossPanes:A.acrossPanes});else if(k)g=r.getPlotBandPath(d,a,A);else return;(p||!y.d)&&g&&g.length?(y.attr({d:g}),L&&B(L,function(a,b){y.on(b,function(a){L[b].apply(e,[a])})})):y&&(g?(y.show(!0),y.animate({d:g})):y.d&&(y.hide(),b&&(e.label=b=b.destroy())));f&&(H(f.text)||H(f.formatter))&&g&&g.length&&0this.max&&e> +this.max;if(r&&m){if(c){var d=r.toString()===m.toString();a=0}for(c=0;cz-k?z:z-k);else if(p)h[a]=Math.max(t,c+k+g>b?c:c+k);else return!1},A=function(a,b,g,f,c){var t;cb-d?t=!1:h[a]=cb-f/2?b-f-2:c-g/2;return t},u=function(a){var b=z;z=m;m=b;l=a},v=function(){!1!==q.apply(0,z)?!1!==A.apply(0,m)||l||(u(!0),v()):l?h.x=h.y=0:(u(!0),v())};(a.inverted||1a.x})&&(e=e.map(function(a){var d=b(a.anchorX,a.anchorY,a.point.isHeader,a.boxWidth,!1);return H(a,{target:d.y,x:d.x})}));a.cleanSplit();c.distribute(e,I,void 0);e.forEach(function(a){var b=a.pos;a.tt.attr({visibility:"undefined"===typeof b?"hidden":"inherit",x:a.x,y:b+B,anchorX:a.anchorX,anchorY:a.anchorY})});e=a.container;d=a.renderer;a.outside&&e&&d&&(h=R.getBBox(),d.setSize(h.width+ +h.x,h.height+h.y,!1),x=x.getChartPosition(),e.style.left=x.left+"px",e.style.top=x.top+"px")},updatePosition:function(e){var f=this.chart,b=f.pointer,a=this.getLabel(),d=e.plotX+f.plotLeft,h=e.plotY+f.plotTop;b=b.getChartPosition();e=(this.options.positioner||this.getPosition).call(this,a.width,a.height,e);if(this.outside){var k=(this.options.borderWidth||0)+2*this.distance;this.renderer.setSize(a.width+k,a.height+k,!1);if(f=f.containerScaling)c.css(this.container,{transform:"scale("+f.scaleX+", "+ +f.scaleY+")"}),d*=f.scaleX,h*=f.scaleY;d+=b.left-e.x;h+=b.top-e.y}this.move(Math.round(e.x),Math.round(e.y||0),d,h)},getDateFormat:function(c,f,b,a){var d=this.chart.time,h=d.dateFormat("%m-%d %H:%M:%S.%L",f),e={millisecond:15,second:12,minute:9,hour:6,day:3},l="millisecond";for(y in D){if(c===D.week&&+d.dateFormat("%w",f)===b&&"00:00:00.000"===h.substr(6)){var y="week";break}if(D[y]>c){y=l;break}if(e[y]&&h.substr(e[y])!=="01-01 00:00:00.000".substr(e[y]))break;"week"!==y&&(l=y)}if(y)var p=d.resolveDTLFormat(a[y]).main; +return p},getXDateFormat:function(c,f,b){f=f.dateTimeLabelFormats;var a=b&&b.closestPointRange;return(a?this.getDateFormat(a,c.x,b.options.startOfWeek,f):f.day)||f.year},tooltipFooterHeaderFormatter:function(e,f){var b=f?"footer":"header",a=e.series,d=a.tooltipOptions,h=d.xDateFormat,k=a.xAxis,l=k&&"datetime"===k.options.type&&v(e.key),y=d[b+"Format"];f={isFooter:f,labelConfig:e};c.fireEvent(this,"headerFormatter",f,function(b){l&&!h&&(h=this.getXDateFormat(e,d,k));l&&h&&(e.point&&e.point.tooltipDateKeys|| +["key"]).forEach(function(a){y=y.replace("{point."+a+"}","{point."+a+":"+h+"}")});a.chart.styledMode&&(y=this.styledModeFormat(y));b.text=m(y,{point:e,series:a},this.chart)});return f.text},bodyFormatter:function(c){return c.map(function(c){var b=c.series.tooltipOptions;return(b[(c.point.formatPrefix||"point")+"Formatter"]||c.point.tooltipFormatter).call(c.point,b[(c.point.formatPrefix||"point")+"Format"]||"")})},styledModeFormat:function(c){return c.replace('style="font-size: 10px"','class="highcharts-header"').replace(/style="color:{(point|series)\.color}"/g, +'class="highcharts-color-{$1.colorIndex}"')}}});M(J,"parts/Pointer.js",[J["parts/Globals.js"],J["parts/Utilities.js"]],function(c,e){var F=e.attr,I=e.defined,G=e.extend,H=e.isNumber,v=e.isObject,q=e.objectEach,C=e.offset,B=e.pick,u=e.splat,w=c.addEvent,m=c.charts,r=c.color,D=c.css,A=c.find,f=c.fireEvent,b=c.Tooltip;c.Pointer=function(a,b){this.init(a,b)};c.Pointer.prototype={init:function(a,d){this.options=d;this.chart=a;this.runChartClick=d.chart.events&&!!d.chart.events.click;this.pinchDown=[]; +this.lastValidTouch={};b&&(a.tooltip=new b(a,d.tooltip),this.followTouchMove=B(d.tooltip.followTouchMove,!0));this.setDOMEvents()},zoomOption:function(a){var b=this.chart,c=b.options.chart,f=c.zoomType||"";b=b.inverted;/touch/.test(a.type)&&(f=B(c.pinchType,f));this.zoomX=a=/x/.test(f);this.zoomY=f=/y/.test(f);this.zoomHor=a&&!b||f&&b;this.zoomVert=f&&!b||a&&b;this.hasZoom=a||f},getChartPosition:function(){var a=this.chart;a=a.scrollingContainer||a.container;return this.chartPosition||(this.chartPosition= +C(a))},normalize:function(a,b){var d=a.touches?a.touches.length?a.touches.item(0):a.changedTouches[0]:a;b||(b=this.getChartPosition());var c=d.pageX-b.left;b=d.pageY-b.top;if(d=this.chart.containerScaling)c/=d.scaleX,b/=d.scaleY;return G(a,{chartX:Math.round(c),chartY:Math.round(b)})},getCoordinates:function(a){var b={xAxis:[],yAxis:[]};this.chart.axes.forEach(function(d){b[d.isXAxis?"xAxis":"yAxis"].push({axis:d,value:d.toValue(a[d.horiz?"chartX":"chartY"])})});return b},findNearestKDPoint:function(a, +b,c){var d;a.forEach(function(a){var f=!(a.noSharedTooltip&&b)&&0>a.options.findNearestPointBy.indexOf("y");a=a.searchPoint(c,f);if((f=v(a,!0))&&!(f=!v(d,!0))){f=d.distX-a.distX;var h=d.dist-a.dist,g=(a.series.group&&a.series.group.zIndex)-(d.series.group&&d.series.group.zIndex);f=0<(0!==f&&b?f:0!==h?h:0!==g?g:d.series.index>a.series.index?-1:1)}f&&(d=a)});return d},getPointFromEvent:function(a){a=a.target;for(var b;a&&!b;)b=a.point,a=a.parentNode;return b},getChartCoordinatesFromPoint:function(a, +b){var d=a.series,c=d.xAxis;d=d.yAxis;var f=B(a.clientX,a.plotX),e=a.shapeArgs;if(c&&d)return b?{chartX:c.len+c.pos-f,chartY:d.len+d.pos-a.plotY}:{chartX:f+c.pos,chartY:a.plotY+d.pos};if(e&&e.x&&e.y)return{chartX:e.x,chartY:e.y}},getHoverData:function(a,b,c,f,e,y){var d,g=[];f=!(!f||!a);var h=b&&!b.stickyTracking?[b]:c.filter(function(a){return a.visible&&!(!e&&a.directTouch)&&B(a.options.enableMouseTracking,!0)&&a.stickyTracking});b=(d=f||!y?a:this.findNearestKDPoint(h,e,y))&&d.series;d&&(e&&!b.noSharedTooltip? +(h=c.filter(function(a){return a.visible&&!(!e&&a.directTouch)&&B(a.options.enableMouseTracking,!0)&&!a.noSharedTooltip}),h.forEach(function(a){var b=A(a.points,function(a){return a.x===d.x&&!a.isNull});v(b)&&(a.chart.isBoosting&&(b=a.getPoint(b)),g.push(b))})):g.push(d));return{hoverPoint:d,hoverSeries:b,hoverPoints:g}},runPointActions:function(a,b){var d=this.chart,f=d.tooltip&&d.tooltip.options.enabled?d.tooltip:void 0,e=f?f.shared:!1,y=b||d.hoverPoint,p=y&&y.series||d.hoverSeries;p=this.getHoverData(y, +p,d.series,(!a||"touchmove"!==a.type)&&(!!b||p&&p.directTouch&&this.isDirectTouch),e,a);y=p.hoverPoint;var g=p.hoverPoints;b=(p=p.hoverSeries)&&p.tooltipOptions.followPointer;e=e&&p&&!p.noSharedTooltip;if(y&&(y!==d.hoverPoint||f&&f.isHidden)){(d.hoverPoints||[]).forEach(function(a){-1===g.indexOf(a)&&a.setState()});if(d.hoverSeries!==p)p.onMouseOver();this.applyInactiveState(g);(g||[]).forEach(function(a){a.setState("hover")});d.hoverPoint&&d.hoverPoint.firePointEvent("mouseOut");if(!y.series)return; +y.firePointEvent("mouseOver");d.hoverPoints=g;d.hoverPoint=y;f&&f.refresh(e?g:y,a)}else b&&f&&!f.isHidden&&(y=f.getAnchor([{}],a),f.updatePosition({plotX:y[0],plotY:y[1]}));this.unDocMouseMove||(this.unDocMouseMove=w(d.container.ownerDocument,"mousemove",function(a){var b=m[c.hoverChartIndex];if(b)b.pointer.onDocumentMouseMove(a)}));d.axes.forEach(function(b){var d=B(b.crosshair.snap,!0),f=d?c.find(g,function(a){return a.series[b.coll]===b}):void 0;f||!d?b.drawCrosshair(a,f):b.hideCrosshair()})}, +applyInactiveState:function(a){var b=[],c;(a||[]).forEach(function(a){c=a.series;b.push(c);c.linkedParent&&b.push(c.linkedParent);c.linkedSeries&&(b=b.concat(c.linkedSeries));c.navigatorSeries&&b.push(c.navigatorSeries)});this.chart.series.forEach(function(a){-1===b.indexOf(a)?a.setState("inactive",!0):a.options.inactiveOtherPoints&&a.setAllPointsToState("inactive")})},reset:function(a,b){var d=this.chart,c=d.hoverSeries,f=d.hoverPoint,e=d.hoverPoints,p=d.tooltip,g=p&&p.shared?e:f;a&&g&&u(g).forEach(function(b){b.series.isCartesian&& +"undefined"===typeof b.plotX&&(a=!1)});if(a)p&&g&&u(g).length&&(p.refresh(g),p.shared&&e?e.forEach(function(a){a.setState(a.state,!0);a.series.isCartesian&&(a.series.xAxis.crosshair&&a.series.xAxis.drawCrosshair(null,a),a.series.yAxis.crosshair&&a.series.yAxis.drawCrosshair(null,a))}):f&&(f.setState(f.state,!0),d.axes.forEach(function(a){a.crosshair&&f.series[a.coll]===a&&a.drawCrosshair(null,f)})));else{if(f)f.onMouseOut();e&&e.forEach(function(a){a.setState()});if(c)c.onMouseOut();p&&p.hide(b); +this.unDocMouseMove&&(this.unDocMouseMove=this.unDocMouseMove());d.axes.forEach(function(a){a.hideCrosshair()});this.hoverX=d.hoverPoints=d.hoverPoint=null}},scaleGroups:function(a,b){var d=this.chart,c;d.series.forEach(function(f){c=a||f.getPlotBox();f.xAxis&&f.xAxis.zoomEnabled&&f.group&&(f.group.attr(c),f.markerGroup&&(f.markerGroup.attr(c),f.markerGroup.clip(b?d.clipRect:null)),f.dataLabelsGroup&&f.dataLabelsGroup.attr(c))});d.clipRect.attr(b||d.clipBox)},dragStart:function(a){var b=this.chart; +b.mouseIsDown=a.type;b.cancelClick=!1;b.mouseDownX=this.mouseDownX=a.chartX;b.mouseDownY=this.mouseDownY=a.chartY},drag:function(a){var b=this.chart,c=b.options.chart,f=a.chartX,e=a.chartY,m=this.zoomHor,p=this.zoomVert,g=b.plotLeft,t=b.plotTop,x=b.plotWidth,L=b.plotHeight,E=this.selectionMarker,n=this.mouseDownX,z=this.mouseDownY,q=v(c.panning)?c.panning&&c.panning.enabled:c.panning,u=c.panKey&&a[c.panKey+"Key"];if(!E||!E.touch)if(fg+x&&(f=g+x),et+L&&(e=t+L),this.hasDragged=Math.sqrt(Math.pow(n- +f,2)+Math.pow(z-e,2)),10p.max&&(e=p.max-h,n=!0);n?(x-=.8*(x-m[v][0]),g||(E-=.8*(E-m[v][1])),C()):m[v]=[x,E];y||(w[v]=k-d,w[a]=h);w=y?1/l:l;u[a]=h;u[v]=e;B[y?c?"scaleY":"scaleX":"scale"+f]=l;B["translate"+f]=w*d+(x-w*t)},pinch:function(c){var e=this,v=e.chart,B=e.pinchDown,u=c.touches,w=u.length,m=e.lastValidTouch,r=e.hasZoom,D=e.selectionMarker,A={},f=1===w&&(e.inClass(c.target, +"highcharts-tracker")&&v.runTrackerClick||e.runChartClick),b={};1c-6&&hg?this.maxItemWidth:b.itemWidth;c&&this.itemX-d+a>g&&(this.itemX=d,this.lastLineHeight&&(this.itemY+=m+this.lastLineHeight+e),this.lastLineHeight=0); +this.lastItemY=m+this.itemY+e;this.lastLineHeight=Math.max(f,this.lastLineHeight);b._legendItemPos=[this.itemX,this.itemY];c?this.itemX+=a:(this.itemY+=m+f+e,this.lastLineHeight=f);this.offsetWidth=this.widthOption||Math.max((c?this.itemX-d-(b.checkbox?0:p):a)+d,this.offsetWidth)},getAllItems:function(){var b=[];this.chart.series.forEach(function(a){var d=a&&a.options;a&&H(d.showInLegend,F(d.linkedTo)?!1:void 0,!0)&&(b=b.concat(a.legendItems||("point"===d.legendType?a.data:a)))});w(this,"afterGetAllItems", +{allItems:b});return b},getAlignment:function(){var b=this.options;return this.proximate?b.align.charAt(0)+"tv":b.floating?"":b.align.charAt(0)+b.verticalAlign.charAt(0)+b.layout.charAt(0)},adjustMargins:function(b,a){var d=this.chart,c=this.options,f=this.getAlignment();f&&[/(lth|ct|rth)/,/(rtv|rm|rbv)/,/(rbh|cb|lbh)/,/(lbv|lm|ltv)/].forEach(function(e,h){e.test(f)&&!F(b[h])&&(d[r[h]]=Math.max(d[r[h]],d.legend[(h+1)%2?"legendHeight":"legendWidth"]+[1,-1,-1,1][h]*c[h%2?"x":"y"]+H(c.margin,12)+a[h]+ +(d.titleOffset[h]||0)))})},proximatePositions:function(){var b=this.chart,a=[],d="left"===this.options.align;this.allItems.forEach(function(f){var e=d;if(f.yAxis&&f.points){f.xAxis.options.reversed&&(e=!e);var h=c.find(e?f.points:f.points.slice(0).reverse(),function(a){return G(a.plotY)});e=this.itemMarginTop+f.legendItem.getBBox().height+this.itemMarginBottom;var m=f.yAxis.top-b.plotTop;f.visible?(h=h?h.plotY:f.yAxis.height,h+=m-.3*e):h=m+f.yAxis.height;a.push({target:h,size:e,item:f})}},this);c.distribute(a, +b.plotHeight);a.forEach(function(a){a.item._legendItemPos[1]=b.plotTop-b.spacing[0]+a.pos})},render:function(){var b=this.chart,a=b.renderer,d=this.group,c,f=this.box,e=this.options,m=this.padding;this.itemX=m;this.itemY=this.initialItemY;this.lastItemY=this.offsetWidth=0;this.widthOption=v(e.width,b.spacingBox.width-m);var p=b.spacingBox.width-2*m-e.x;-1<["rm","lm"].indexOf(this.getAlignment().substring(0,2))&&(p/=2);this.maxLegendWidth=this.widthOption||p;d||(this.group=d=a.g("legend").attr({zIndex:7}).add(), +this.contentGroup=a.g().attr({zIndex:1}).add(d),this.scrollGroup=a.g().add(this.contentGroup));this.renderTitle();p=this.getAllItems();A(p,function(a,b){return(a.options&&a.options.legendIndex||0)-(b.options&&b.options.legendIndex||0)});e.reversed&&p.reverse();this.allItems=p;this.display=c=!!p.length;this.itemHeight=this.totalItemWidth=this.maxItemWidth=this.lastLineHeight=0;p.forEach(this.renderItem,this);p.forEach(this.layoutItem,this);p=(this.widthOption||this.offsetWidth)+m;var g=this.lastItemY+ +this.lastLineHeight+this.titleHeight;g=this.handleOverflow(g);g+=m;f||(this.box=f=a.rect().addClass("highcharts-legend-box").attr({r:e.borderRadius}).add(d),f.isNew=!0);b.styledMode||f.attr({stroke:e.borderColor,"stroke-width":e.borderWidth||0,fill:e.backgroundColor||"none"}).shadow(e.shadow);0e&&!1!==x.enabled?(this.clipHeight=g=Math.max(e-20-this.titleHeight-m,0),this.currentPage=H(this.currentPage,1),this.fullHeight=b,q.forEach(function(a,b){var d=a._legendItemPos[1],c=Math.round(a.legendItem.getBBox().height),f=z.length;if(!f||d-z[f-1]>g&&(r||d)!==z[f-1])z.push(r||d),f++;a.pageIx=f-1;r&&(q[b-1].pageIx=f-1);b===q.length-1&&d+c-z[f-1]>g&&d!==r&&(z.push(d),a.pageIx=f);d!==r&&(r=d)}),t||(t=a.clipRect=c.clipRect(0,m,9999, +0),a.contentGroup.clip(t)),u(g),n||(this.nav=n=c.g().attr({zIndex:1}).add(this.group),this.up=c.symbol("triangle",0,0,E,E).add(n),w("upTracker").on("click",function(){a.scroll(-1,L)}),this.pager=c.text("",15,10).addClass("highcharts-legend-navigation"),d.styledMode||this.pager.css(x.style),this.pager.add(n),this.down=c.symbol("triangle-down",0,0,E,E).add(n),w("downTracker").on("click",function(){a.scroll(1,L)})),a.scroll(0),b=e):n&&(u(),this.nav=n.destroy(),this.scrollGroup.attr({translateY:1}),this.clipHeight= +0);return b},scroll:function(b,a){var d=this,f=this.chart,e=this.pages,l=e.length,m=this.currentPage+b;b=this.clipHeight;var p=this.options.navigation,g=this.pager,t=this.padding;m>l&&(m=l);0k&&(a=typeof f[0],"string"===a?b.name=f[0]:"number"===a&&(b.x=f[0]),l++);m=d.value;)d=b[++a];this.nonZonedColor||(this.nonZonedColor=this.color); +this.color=d&&d.color&&!this.options.color?d.color:this.nonZonedColor;return d},hasNewShapeType:function(){return(this.graphic&&(this.graphic.symbolName||this.graphic.element.nodeName))!==this.shapeType},destroy:function(){function c(){e&&(b.setState(),G(e,b),e.length||(d.hoverPoints=null));if(b===d.hoverPoint)b.onMouseOut();if(b.graphic||b.dataLabel||b.dataLabels)A(b),b.destroyElements();for(l in b)b[l]=null}var b=this,a=b.series,d=a.chart;a=a.options.dataSorting;var e=d.hoverPoints,k=F(b.series.chart.renderer.globalAnimation), +l;a&&a.enabled?(this.animateBeforeDestroy(),B(c,k.duration)):c();d.pointCount--;b.legendItem&&d.legend.destroyItem(b)},animateBeforeDestroy:function(){var c=this,b={x:c.startXPos,opacity:0},a,d=c.getGraphicalProps();d.singular.forEach(function(d){a="dataLabel"===d;c[d]=c[d].animate(a?{x:c[d].startXPos,y:c[d].startYPos,opacity:0}:b)});d.plural.forEach(function(a){c[a].forEach(function(a){a.element&&a.animate(H({x:c.startXPos},a.startYPos?{x:a.startXPos,y:a.startYPos}:{}))})})},destroyElements:function(c){var b= +this;c=b.getGraphicalProps(c);c.singular.forEach(function(a){b[a]=b[a].destroy()});c.plural.forEach(function(a){b[a].forEach(function(a){a.element&&a.destroy()});delete b[a]})},getGraphicalProps:function(c){var b=this,a=[],d,f={singular:[],plural:[]};c=c||{graphic:1,dataLabel:1};c.graphic&&a.push("graphic","shadowGroup");c.dataLabel&&a.push("dataLabel","dataLabelUpper","connector");for(d=a.length;d--;){var e=a[d];b[e]&&f.singular.push(e)}["dataLabel","connector"].forEach(function(a){var d=a+"s";c[a]&& +b[d]&&f.plural.push(d)});return f},getLabelConfig:function(){return{x:this.category,y:this.y,color:this.color,colorIndex:this.colorIndex,key:this.name||this.category,series:this.series,point:this,percentage:this.percentage,total:this.total||this.stackTotal}},tooltipFormatter:function(c){var b=this.series,a=b.tooltipOptions,d=u(a.valueDecimals,""),f=a.valuePrefix||"",e=a.valueSuffix||"";b.chart.styledMode&&(c=b.chart.tooltip.styledModeFormat(c));(b.pointArrayMap||["y"]).forEach(function(a){a="{point."+ +a;if(f||e)c=c.replace(RegExp(a+"}","g"),f+a+"}"+e);c=c.replace(RegExp(a+"}","g"),a+":,."+d+"f}")});return r(c,{point:this,series:this.series},b.chart)},firePointEvent:function(c,b,a){var d=this,f=this.series.options;(f.point.events[c]||d.options&&d.options.events&&d.options.events[c])&&this.importEvents();"click"===c&&f.allowPointSelect&&(a=function(a){d.select&&d.select(null,a.ctrlKey||a.metaKey||a.shiftKey)});m(this,c,b,a)},visible:!0}});M(J,"parts/Series.js",[J["parts/Globals.js"],J["parts/Utilities.js"]], +function(c,e){var F=e.animObject,I=e.arrayMax,G=e.arrayMin,H=e.clamp,v=e.correctFloat,q=e.defined,C=e.erase,B=e.extend,u=e.isArray,w=e.isNumber,m=e.isString,r=e.objectEach,D=e.pick,A=e.splat,f=e.syncTimeout,b=c.addEvent,a=c.defaultOptions,d=c.defaultPlotOptions,h=c.fireEvent,k=c.merge,l=c.removeEvent,y=c.SVGElement,p=c.win;c.Series=c.seriesType("line",null,{lineWidth:2,allowPointSelect:!1,showCheckbox:!1,animation:{duration:1E3},events:{},marker:{enabledThreshold:2,lineColor:"#ffffff",lineWidth:0, +radius:4,states:{normal:{animation:!0},hover:{animation:{duration:50},enabled:!0,radiusPlus:2,lineWidthPlus:1},select:{fillColor:"#cccccc",lineColor:"#000000",lineWidth:2}}},point:{events:{}},dataLabels:{align:"center",formatter:function(){var a=this.series.chart.numberFormatter;return null===this.y?"":a(this.y,-1)},padding:5,style:{fontSize:"11px",fontWeight:"bold",color:"contrast",textOutline:"1px contrast"},verticalAlign:"bottom",x:0,y:0},cropThreshold:300,opacity:1,pointRange:0,softThreshold:!0, +states:{normal:{animation:!0},hover:{animation:{duration:50},lineWidthPlus:1,marker:{},halo:{size:10,opacity:.25}},select:{animation:{duration:0}},inactive:{animation:{duration:50},opacity:.2}},stickyTracking:!0,turboThreshold:1E3,findNearestPointBy:"x"},{axisTypes:["xAxis","yAxis"],coll:"series",colorCounter:0,cropShoulder:1,directTouch:!1,eventsToUnbind:[],isCartesian:!0,parallelArrays:["x","y"],pointClass:c.Point,requireSorting:!0,sorted:!0,init:function(a,d){h(this,"init",{options:d});var g=this, +f=a.series,e;this.eventOptions=this.eventOptions||{};g.chart=a;g.options=d=g.setOptions(d);g.linkedSeries=[];g.bindAxes();B(g,{name:d.name,state:"",visible:!1!==d.visible,selected:!0===d.selected});var t=d.events;r(t,function(a,d){c.isFunction(a)&&g.eventOptions[d]!==a&&(c.isFunction(g.eventOptions[d])&&l(g,d,g.eventOptions[d]),g.eventOptions[d]=a,b(g,d,a))});if(t&&t.click||d.point&&d.point.events&&d.point.events.click||d.allowPointSelect)a.runTrackerClick=!0;g.getColor();g.getSymbol();g.parallelArrays.forEach(function(a){g[a+ +"Data"]||(g[a+"Data"]=[])});g.isCartesian&&(a.hasCartesianSeries=!0);f.length&&(e=f[f.length-1]);g._i=D(e&&e._i,-1)+1;a.orderSeries(this.insert(f));d.dataSorting&&d.dataSorting.enabled?g.setDataSortingOptions():g.points||g.data||g.setData(d.data,!1);h(this,"afterInit")},insert:function(a){var b=this.options.index,d;if(w(b)){for(d=a.length;d--;)if(b>=D(a[d].options.index,a[d]._i)){a.splice(d+1,0,this);break}-1===d&&a.unshift(this);d+=1}else a.push(this);return D(d,a.length-1)},bindAxes:function(){var a= +this,b=a.options,d=a.chart,f;h(this,"bindAxes",null,function(){(a.axisTypes||[]).forEach(function(g){d[g].forEach(function(d){f=d.options;if(b[g]===f.index||"undefined"!==typeof b[g]&&b[g]===f.id||"undefined"===typeof b[g]&&0===f.index)a.insert(d.series),a[g]=d,d.isDirty=!0});a[g]||a.optionalAxis===g||c.error(18,!0,d)})})},updateParallelArrays:function(a,b){var d=a.series,c=arguments,g=w(b)?function(c){var g="y"===c&&d.toYData?d.toYData(a):a[c];d[c+"Data"][b]=g}:function(a){Array.prototype[b].apply(d[a+ +"Data"],Array.prototype.slice.call(c,2))};d.parallelArrays.forEach(g)},hasData:function(){return this.visible&&"undefined"!==typeof this.dataMax&&"undefined"!==typeof this.dataMin||this.visible&&this.yData&&0=this.cropStart? +p-this.cropStart:p);!e&&f[p]&&f[p].touched&&(p=void 0);return p},drawLegendSymbol:c.LegendSymbolMixin.drawLineMarker,updateData:function(a,b){var d=this.options,c=d.dataSorting,g=this.points,f=[],e,h,t,l=this.requireSorting,p=a.length===g.length,m=!0;this.xIncrement=null;a.forEach(function(a,b){var h=q(a)&&this.pointClass.prototype.optionsToObject.call({series:this},a)||{};var n=h.x;if(h.id||w(n)){if(n=this.findPointIndex(h,t),-1===n||"undefined"===typeof n?f.push(a):g[n]&&a!==d.data[n]?(g[n].update(a, +!1,null,!1),g[n].touched=!0,l&&(t=n+1)):g[n]&&(g[n].touched=!0),!p||b!==n||c&&c.enabled||this.hasDerivedData)e=!0}else f.push(a)},this);if(e)for(a=g.length;a--;)(h=g[a])&&!h.touched&&h.remove&&h.remove(!1,b);else!p||c&&c.enabled?m=!1:(a.forEach(function(a,b){g[b].update&&a!==g[b].y&&g[b].update(a,!1,null,!1)}),f.length=0);g.forEach(function(a){a&&(a.touched=!1)});if(!m)return!1;f.forEach(function(a){this.addPoint(a,!1,null,null,!1)},this);null===this.xIncrement&&this.xData&&this.xData.length&&(this.xIncrement= +I(this.xData),this.autoIncrement());return!0},setData:function(a,b,d,f){var g=this,e=g.points,h=e&&e.length||0,t,l=g.options,p=g.chart,x=l.dataSorting,k=null,r=g.xAxis;k=l.turboThreshold;var L=this.xData,q=this.yData,y=(t=g.pointArrayMap)&&t.length,v=l.keys,A=0,B=1,C;a=a||[];t=a.length;b=D(b,!0);x&&x.enabled&&(a=this.sortData(a));!1!==f&&t&&h&&!g.cropped&&!g.hasGroupedData&&g.visible&&!g.isSeriesBoosting&&(C=this.updateData(a,d));if(!C){g.xIncrement=null;g.colorCounter=0;this.parallelArrays.forEach(function(a){g[a+ +"Data"].length=0});if(k&&t>k)if(k=g.getFirstValidPoint(a),w(k))for(d=0;dl||this.forceCrop))if(b[g-1]y)b=[],d=[];else if(this.yData&&(b[0]y)){f=this.cropData(this.xData,this.yData,q,y);b=f.xData;d=f.yData;f=f.start;var u=!0}for(l=b.length||1;--l;)if(g=k?h(b[l])-h(b[l-1]):b[l]-b[l-1],0g&&r&&(c.error(15,!1,this.chart),r=!1);this.cropped=u;this.cropStart=f;this.processedXData= +b;this.processedYData=d;this.closestPointRange=this.basePointRange=w},cropData:function(a,b,d,c,f){var g=a.length,e=0,h=g,t;f=D(f,this.cropShoulder);for(t=0;t=d){e=Math.max(0,t-f);break}for(d=t;dc){h=d+f;break}return{xData:a.slice(e,h),yData:b.slice(e,h),start:e,end:h}},generatePoints:function(){var a=this.options,b=a.data,d=this.data,c,f=this.processedXData,e=this.processedYData,l=this.pointClass,p=f.length,m=this.cropStart||0,k=this.hasGroupedData;a=a.keys;var r=[], +q;d||k||(d=[],d.length=b.length,d=this.data=d);a&&k&&(this.options.keys=!1);for(q=0;q=e&&(c[k-p]||r)<=l;if(y&&r)if(y=q.length)for(;y--;)w(q[y])&&(g[f++]=q[y]);else g[f++]=q}this.dataMin=G(g);this.dataMax=I(g);h(this,"afterGetExtremes")},getFirstValidPoint:function(a){for(var b=null,d=a.length,c=0;null===b&&c=W&&(F.isNull=!0);F.plotX=C=v(H(d.translate(J,0,0,0,1,r,"flags"===this.type),-1E5,1E5));if(b&&this.visible&&Z&&Z[J]){var S=this.getStackIndicator(S,J,this.index);if(!F.isNull){var Y=Z[J];var ba= +Y.points[S.key]}}u(ba)&&(M=ba[0],W=ba[1],M===B&&S.key===Z[J].base&&(M=D(w(A)&&A,e.min)),e.positiveValuesOnly&&0>=M&&(M=null),F.total=F.stackTotal=Y.total,F.percentage=Y.total&&F.y/Y.total*100,F.stackY=W,this.irregularWidths||Y.setOffset(this.pointXOffset||0,this.barW||0));F.yBottom=q(M)?H(e.translate(M,0,1,0,1),-1E5,1E5):null;k&&(W=this.modifyValue(W,F));F.plotY=W="number"===typeof W&&Infinity!==W?H(e.translate(W,0,1,0,1),-1E5,1E5):void 0;F.isInside="undefined"!==typeof W&&0<=W&&W<=e.len&&0<=C&&C<= +d.len;F.clientX=y?v(d.translate(J,0,0,0,1,r)):C;F.negative=F[G]<(a[G+"Threshold"]||A||0);F.category=c&&"undefined"!==typeof c[F.x]?c[F.x]:F.x;if(!F.isNull&&!1!==F.visible){"undefined"!==typeof ca&&(I=Math.min(I,Math.abs(C-ca)));var ca=C}F.zone=this.zones.length&&F.getZone();!F.graphic&&this.group&&f&&(F.isNew=!0)}this.closestPointRangePx=I;h(this,"afterTranslate")},getValidPoints:function(a,b,d){var c=this.chart;return(a||this.points||[]).filter(function(a){return b&&!c.isInsidePlot(a.plotX,a.plotY, +c.inverted)?!1:!1!==a.visible&&(d||!a.isNull)})},getClipBox:function(a,b){var d=this.options,c=this.chart,g=c.inverted,f=this.xAxis,e=f&&this.yAxis;a&&!1===d.clip&&e?a=g?{y:-c.chartWidth+e.len+e.pos,height:c.chartWidth,width:c.chartHeight,x:-c.chartHeight+f.len+f.pos}:{y:-e.pos,height:c.chartHeight,width:c.chartWidth,x:-f.pos}:(a=this.clipBox||c.clipBox,b&&(a.width=c.plotSizeX,a.x=0));return b?{width:a.width,x:a.x}:a},setClip:function(a){var b=this.chart,d=this.options,c=b.renderer,g=b.inverted,f= +this.clipBox,e=this.getClipBox(a),h=this.sharedClipKey||["_sharedClip",a&&a.duration,a&&a.easing,e.height,d.xAxis,d.yAxis].join(),l=b[h],p=b[h+"m"];l||(a&&(e.width=0,g&&(e.x=b.plotSizeX+(!1!==d.clip?0:b.plotTop)),b[h+"m"]=p=c.clipRect(g?b.plotSizeX+99:-99,g?-b.plotLeft:-b.plotTop,99,g?b.chartWidth:b.chartHeight)),b[h]=l=c.clipRect(e),l.count={length:0});a&&!l.count[this.index]&&(l.count[this.index]=!0,l.count.length+=1);if(!1!==d.clip||a)this.group.clip(a||f?l:b.clipRect),this.markerGroup.clip(p), +this.sharedClipKey=h;a||(l.count[this.index]&&(delete l.count[this.index],--l.count.length),0===l.count.length&&h&&b[h]&&(f||(b[h]=b[h].destroy()),b[h+"m"]&&(b[h+"m"]=b[h+"m"].destroy())))},animate:function(a){var b=this.chart,d=F(this.options.animation);if(a)this.setClip(d);else{var c=this.sharedClipKey;a=b[c];var g=this.getClipBox(d,!0);a&&a.animate(g,d);b[c+"m"]&&b[c+"m"].animate({width:g.width+99,x:g.x-(b.inverted?0:99)},d);this.animate=null}},afterAnimate:function(){this.setClip();h(this,"afterAnimate"); +this.finishedAnimating=!0},drawPoints:function(){var a=this.points,b=this.chart,d,c,f=this.options.marker,e=this[this.specialGroup]||this.markerGroup,h=this.xAxis,l=D(f.enabled,!h||h.isRadial?!0:null,this.closestPointRangePx>=f.enabledThreshold*f.radius);if(!1!==f.enabled||this._hasPointMarkers)for(d=0;dg&&b.shadow));h&&(h.startX=d.xMap,h.isArea=d.isArea)})},getZonesGraphs:function(a){this.zones.forEach(function(b,d){d=["zone-graph-"+d,"highcharts-graph highcharts-zone-graph-"+d+" "+(b.className|| +"")];this.chart.styledMode||d.push(b.color||this.color,b.dashStyle||this.options.dashStyle);a.push(d)},this);return a},applyZones:function(){var a=this,b=this.chart,d=b.renderer,c=this.zones,f,e,h=this.clips||[],l,p=this.graph,k=this.area,m=Math.max(b.chartWidth,b.chartHeight),r=this[(this.zoneAxis||"y")+"Axis"],q=b.inverted,y,u,w,v=!1;if(c.length&&(p||k)&&r&&"undefined"!==typeof r.min){var A=r.reversed;var C=r.horiz;p&&!this.showLine&&p.hide();k&&k.hide();var B=r.getExtremes();c.forEach(function(c, +g){f=A?C?b.plotWidth:0:C?0:r.toPixels(B.min)||0;f=H(D(e,f),0,m);e=H(Math.round(r.toPixels(D(c.value,B.max),!0)||0),0,m);v&&(f=e=r.toPixels(B.max));y=Math.abs(f-e);u=Math.min(f,e);w=Math.max(f,e);r.isXAxis?(l={x:q?w:u,y:0,width:y,height:m},C||(l.x=b.plotHeight-l.x)):(l={x:0,y:q?w:u,width:m,height:y},C&&(l.y=b.plotWidth-l.y));q&&d.isVML&&(l=r.isXAxis?{x:0,y:A?u:w,height:l.width,width:b.chartWidth}:{x:l.y-b.plotLeft-b.spacingBox.x,y:0,width:l.height,height:b.chartHeight});h[g]?h[g].animate(l):h[g]=d.clipRect(l); +p&&a["zone-graph-"+g].clip(h[g]);k&&a["zone-area-"+g].clip(h[g]);v=c.value>B.max;a.resetZones&&0===e&&(e=void 0)});this.clips=h}else a.visible&&(p&&p.show(!0),k&&k.show(!0))},invertGroups:function(a){function d(){["group","markerGroup"].forEach(function(b){c[b]&&(f.renderer.isVML&&c[b].attr({width:c.yAxis.len,height:c.xAxis.len}),c[b].width=c.yAxis.len,c[b].height=c.xAxis.len,c[b].invert(c.isRadialSeries?!1:a))})}var c=this,f=c.chart;c.xAxis&&(c.eventsToUnbind.push(b(f,"resize",d)),d(),c.invertGroups= +d)},plotGroup:function(a,b,d,c,f){var g=this[a],e=!g;e&&(this[a]=g=this.chart.renderer.g().attr({zIndex:c||.1}).add(f));g.addClass("highcharts-"+b+" highcharts-series-"+this.index+" highcharts-"+this.type+"-series "+(q(this.colorIndex)?"highcharts-color-"+this.colorIndex+" ":"")+(this.options.className||"")+(g.hasClass("highcharts-tracker")?" highcharts-tracker":""),!0);g.attr({visibility:d})[e?"attr":"animate"](this.getPlotBox());return g},getPlotBox:function(){var a=this.chart,b=this.xAxis,d=this.yAxis; +a.inverted&&(b=d,d=this.xAxis);return{translateX:b?b.left:a.plotLeft,translateY:d?d.top:a.plotTop,scaleX:1,scaleY:1}},removeEvents:function(a){a?this.eventsToUnbind.length&&(this.eventsToUnbind.forEach(function(a){a()}),this.eventsToUnbind.length=0):l(this)},render:function(){var a=this,b=a.chart,d=a.options,c=!!a.animate&&b.renderer.isSVG&&F(d.animation).duration,e=a.visible?"inherit":"hidden",l=d.zIndex,p=a.hasRendered,k=b.seriesGroup,m=b.inverted;h(this,"render");var r=a.plotGroup("group","series", +e,l,k);a.markerGroup=a.plotGroup("markerGroup","markers",e,l,k);c&&a.animate(!0);r.inverted=a.isCartesian||a.invertable?m:!1;a.drawGraph&&(a.drawGraph(),a.applyZones());a.visible&&a.drawPoints();a.drawDataLabels&&a.drawDataLabels();a.redrawPoints&&a.redrawPoints();a.drawTracker&&!1!==a.options.enableMouseTracking&&a.drawTracker();a.invertGroups(m);!1===d.clip||a.sharedClipKey||p||r.clip(b.clipRect);c&&a.animate();p||(a.animationTimeout=f(function(){a.afterAnimate()},c||0));a.isDirty=!1;a.hasRendered= +!0;h(a,"afterRender")},redraw:function(){var a=this.chart,b=this.isDirty||this.isDirtyData,d=this.group,c=this.xAxis,f=this.yAxis;d&&(a.inverted&&d.attr({width:a.plotWidth,height:a.plotHeight}),d.animate({translateX:D(c&&c.left,a.plotLeft),translateY:D(f&&f.top,a.plotTop)}));this.translate();this.render();b&&delete this.kdTree},kdAxisArray:["clientX","plotY"],searchPoint:function(a,b){var d=this.xAxis,c=this.yAxis,f=this.chart.inverted;return this.searchKDTree({clientX:f?d.len-a.chartY+d.pos:a.chartX- +d.pos,plotY:f?c.len-a.chartX+c.pos:a.chartY-c.pos},b,a)},buildKDTree:function(a){function b(a,c,f){var g;if(g=a&&a.length){var e=d.kdAxisArray[c%f];a.sort(function(a,b){return a[e]-b[e]});g=Math.floor(g/2);return{point:a[g],left:b(a.slice(0,g),c+1,f),right:b(a.slice(g+1),c+1,f)}}}this.buildingKdTree=!0;var d=this,c=-1n?"left":"right";k=0>n?"right":"left";b[m]&&(m=c(a,b[m],d+1,l),t=m[h]q;)x--;this.updateParallelArrays(r,"splice",x,0,0);this.updateParallelArrays(r,x);p&&r.name&&(p[q]=r.name);k.splice(x,0,a);t&&(this.data.splice(x,0,null),this.processData());"point"===g.legendType&&this.generatePoints();c&&(h[0]&&h[0].remove?h[0].remove(!1):(h.shift(),this.updateParallelArrays(r,"shift"),k.shift()));!1!==e&&d(this, +"addPoint",{point:r});this.isDirtyData=this.isDirty=!0;b&&l.redraw(f)},removePoint:function(a,b,d){var c=this,f=c.data,g=f[a],e=c.points,h=c.chart,l=function(){e&&e.length===f.length&&e.splice(a,1);f.splice(a,1);c.options.data.splice(a,1);c.updateParallelArrays(g||{series:c},"splice",a,1);g&&g.destroy();c.isDirty=!0;c.isDirtyData=!0;b&&h.redraw()};m(d,h);b=u(b,!0);g?g.firePointEvent("remove",null,l):l()},remove:function(a,b,c,f){function g(){e.destroy(f);e.remove=null;h.isDirtyLegend=h.isDirtyBox= +!0;h.linkSeries();u(a,!0)&&h.redraw(b)}var e=this,h=e.chart;!1!==c?d(e,"remove",null,g):g()},update:function(a,b){a=c.cleanRecursively(a,this.userOptions);d(this,"update",{options:a});var f=this,g=f.chart,e=f.userOptions,l=f.initialType||f.type,p=a.type||e.type||g.options.chart.type,k=!(this.hasDerivedData||a.dataGrouping||p&&p!==this.type||"undefined"!==typeof a.pointStart||a.pointInterval||a.pointIntervalUnit||a.keys),m=y[l].prototype,r,q=["group","markerGroup","dataLabelsGroup","transformGroup"], +v=["eventOptions","navigatorSeries","baseSeries"],w=f.finishedAnimating&&{animation:!1},A={};k&&(v.push("data","isDirtyData","points","processedXData","processedYData","xIncrement","_hasPointMarkers","_hasPointLabels","mapMap","mapData","minY","maxY","minX","maxX"),!1!==a.visible&&v.push("area","graph"),f.parallelArrays.forEach(function(a){v.push(a+"Data")}),a.data&&(a.dataSorting&&G(f.options.dataSorting,a.dataSorting),this.setData(a.data,!1)));a=h(e,w,{index:"undefined"===typeof e.index?f.index: +e.index,pointStart:u(e.pointStart,f.xData[0])},!k&&{data:f.options.data},a);k&&a.data&&(a.data=f.options.data);v=q.concat(v);v.forEach(function(a){v[a]=f[a];delete f[a]});f.remove(!1,null,!1,!0);for(r in m)f[r]=void 0;y[p||l]?G(f,y[p||l].prototype):c.error(17,!0,g,{missingModuleFor:p||l});v.forEach(function(a){f[a]=v[a]});f.init(g,a);if(k&&this.points){var D=f.options;!1===D.visible?(A.graphic=1,A.dataLabel=1):f._hasPointLabels||(p=D.marker,m=D.dataLabels,p&&(!1===p.enabled||"symbol"in p)&&(A.graphic= +1),m&&!1===m.enabled&&(A.dataLabel=1));this.points.forEach(function(a){a&&a.series&&(a.resolveColor(),Object.keys(A).length&&a.destroyElements(A),!1===D.showInLegend&&a.legendItem&&g.legend.destroyItem(a))},this)}a.zIndex!==e.zIndex&&q.forEach(function(b){f[b]&&f[b].attr({zIndex:a.zIndex})});f.initialType=l;g.linkSeries();d(this,"afterUpdate");u(b,!0)&&g.redraw(k?void 0:!1)},setName:function(a){this.name=this.options.name=this.userOptions.name=a;this.chart.isDirtyLegend=!0}});G(f.prototype,{update:function(a, +b){var d=this.chart,c=a&&a.events||{};a=h(this.userOptions,a);d.options[this.coll].indexOf&&(d.options[this.coll][d.options[this.coll].indexOf(this.userOptions)]=a);B(d.options[this.coll].events,function(a,b){"undefined"===typeof c[b]&&(c[b]=void 0)});this.destroy(!0);this.init(d,G(a,{events:c}));d.isDirtyBox=!0;u(b,!0)&&d.redraw()},remove:function(a){for(var b=this.chart,d=this.coll,c=this.series,f=c.length;f--;)c[f]&&c[f].remove(!1);I(b.axes,this);I(b[d],this);H(b.options[d])?b.options[d].splice(this.options.index, +1):delete b.options[d];b[d].forEach(function(a,b){a.options.index=a.userOptions.index=b});this.destroy();b.isDirtyBox=!0;u(a,!0)&&b.redraw()},setTitle:function(a,b){this.update({title:a},b)},setCategories:function(a,b){this.update({categories:a},b)}})});M(J,"parts/AreaSeries.js",[J["parts/Globals.js"],J["parts/Utilities.js"]],function(c,e){var F=e.objectEach,I=e.pick,G=c.color,H=c.Series;e=c.seriesType;e("area","line",{softThreshold:!1,threshold:0},{singleStacks:!1,getStackPoints:function(c){var e= +[],v=[],B=this.xAxis,u=this.yAxis,w=u.stacks[this.stackKey],m={},r=this.index,D=u.series,A=D.length,f=I(u.options.reversedStacks,!0)?1:-1,b;c=c||this.points;if(this.options.stacking){for(b=0;bc&&m>q?(m=Math.max(c,q),r=2*q-m):mH&&r>q?(r=Math.max(H,q),m=2*q-r):r=Math.abs(e)&& +.5c.closestPointRange*c.xAxis.transA;w=c.borderWidth=q(v.borderWidth,w?0:1);var f=c.yAxis,b=v.threshold,a=c.translatedThreshold=f.getThreshold(b),d=q(v.minPointLength,5),h=c.getColumnMetrics(),k=h.width,l=c.barW=Math.max(k,1+2*w),y=c.pointXOffset=h.offset,p=c.dataMin,g=c.dataMax;e.inverted&&(a-=.5);v.pointPadding&&(l=Math.ceil(l));u.prototype.translate.apply(c); +c.points.forEach(function(h){var m=q(h.yBottom,a),t=999+Math.abs(m),r=k;t=I(h.plotY,-t,f.len+t);var n=h.plotX+y,z=l,v=Math.min(t,m),u=Math.max(t,m)-v;if(d&&Math.abs(u)d?m-d:a-(w?d:0)}G(h.options.pointWidth)&&(r=z=Math.ceil(h.options.pointWidth),n-=Math.round((r-k)/2));h.barX=n;h.pointWidth=r;h.tooltipPos=e.inverted?[f.len+f.pos-e.plotLeft-t,c.xAxis.len-n-z/2,u]:[n+z/2,t+f.pos- +e.plotTop,u];h.shapeType=c.pointClass.prototype.shapeType||"rect";h.shapeArgs=c.crispCol.apply(c,h.isNull?[n,a,z,0]:[n,v,z,u])})},getSymbol:c.noop,drawLegendSymbol:c.LegendSymbolMixin.drawRectangle,drawGraph:function(){this.group[this.dense?"addClass":"removeClass"]("highcharts-dense-data")},pointAttribs:function(c,e){var m=this.options,r=this.pointAttrToOptions||{};var f=r.stroke||"borderColor";var b=r["stroke-width"]||"borderWidth",a=c&&c.color||this.color,d=c&&c[f]||m[f]||this.color||a,h=c&&c[b]|| +m[b]||this[b]||0;r=c&&c.options.dashStyle||m.dashStyle;var k=q(c&&c.opacity,m.opacity,1);if(c&&this.zones.length){var l=c.getZone();a=c.options.color||l&&(l.color||c.nonZonedColor)||this.color;l&&(d=l.borderColor||d,r=l.dashStyle||r,h=l.borderWidth||h)}e&&c&&(c=B(m.states[e],c.options.states&&c.options.states[e]||{}),e=c.brightness,a=c.color||"undefined"!==typeof e&&C(a).brighten(c.brightness).get()||a,d=c[f]||d,h=c[b]||h,r=c.dashStyle||r,k=q(c.opacity,k));f={fill:a,stroke:d,"stroke-width":h,opacity:k}; +r&&(f.dashstyle=r);return f},drawPoints:function(){var c=this,e=this.chart,q=c.options,u=e.renderer,f=q.animationLimit||250,b;c.points.forEach(function(a){var d=a.graphic,h=!!d,k=d&&e.pointCount\u25cf
{series.name}
',pointFormat:"x: {point.x}
y: {point.y}
"}},{sorted:!1,requireSorting:!1,noSharedTooltip:!0,trackerGroups:["group","markerGroup","dataLabelsGroup"],takeOrdinalPosition:!1,drawGraph:function(){this.options.lineWidth&& +e.prototype.drawGraph.call(this)},applyJitter:function(){var c=this,e=this.options.jitter,F=this.points.length;e&&this.points.forEach(function(v,q){["x","y"].forEach(function(C,B){var u="plot"+C.toUpperCase();if(e[C]&&!v.isNull){var w=c[C+"Axis"];var m=e[C]*w.transA;if(w&&!w.isLog){var r=Math.max(0,v[u]-m);w=Math.min(w.len,v[u]+m);B=1E4*Math.sin(q+B*F);v[u]=r+(w-r)*(B-Math.floor(B));"x"===C&&(v.clientX=v.plotX)}}})})}});c.addEvent(e,"afterTranslate",function(){this.applyJitter&&this.applyJitter()}); +""});M(J,"mixins/centered-series.js",[J["parts/Globals.js"],J["parts/Utilities.js"]],function(c,e){var F=e.isNumber,I=e.pick,G=e.relativeLength,H=c.deg2rad;c.CenteredSeriesMixin={getCenter:function(){var c=this.options,e=this.chart,C=2*(c.slicedOffset||0),B=e.plotWidth-2*C;e=e.plotHeight-2*C;var u=c.center;u=[I(u[0],"50%"),I(u[1],"50%"),c.size||"100%",c.innerSize||0];var w=Math.min(B,e),m;for(m=0;4>m;++m){var r=u[m];c=2>m||2===m&&/%$/.test(r);u[m]=G(r,[B,e,w,u[2]][m])+(c?C:0)}u[3]>u[2]&&(u[3]=u[2]); +return u},getStartAndEndRadians:function(c,e){c=F(c)?c:0;e=F(e)&&e>c&&360>e-c?e:c+360;return{start:H*(c+-90),end:H*(e+-90)}}}});M(J,"parts/PieSeries.js",[J["parts/Globals.js"],J["parts/Utilities.js"]],function(c,e){var F=e.clamp,I=e.defined,G=e.isNumber,H=e.pick,v=e.relativeLength,q=e.setAnimation,C=c.addEvent;e=c.CenteredSeriesMixin;var B=e.getStartAndEndRadians,u=c.merge,w=c.noop,m=c.Point,r=c.Series,D=c.seriesType,A=c.fireEvent;D("pie","line",{center:[null,null],clip:!1,colorByPoint:!0,dataLabels:{allowOverlap:!0, +connectorPadding:5,connectorShape:"fixedOffset",crookDistance:"70%",distance:30,enabled:!0,formatter:function(){return this.point.isNull?void 0:this.point.name},softConnector:!0,x:0},fillColor:void 0,ignoreHiddenPoint:!0,inactiveOtherPoints:!0,legendType:"point",marker:null,size:null,showInLegend:!1,slicedOffset:10,stickyTracking:!1,tooltip:{followPointer:!0},borderColor:"#ffffff",borderWidth:1,lineWidth:void 0,states:{hover:{brightness:.1}}},{isCartesian:!1,requireSorting:!1,directTouch:!0,noSharedTooltip:!0, +trackerGroups:["group","dataLabelsGroup"],axisTypes:[],pointAttribs:c.seriesTypes.column.prototype.pointAttribs,animate:function(c){var b=this,a=b.points,d=b.startAngleRad;c||(a.forEach(function(a){var c=a.graphic,f=a.shapeArgs;c&&f&&(c.attr({r:H(a.startR,b.center&&b.center[3]/2),start:d,end:d}),c.animate({r:f.r,start:f.start,end:f.end},b.options.animation))}),b.animate=null)},hasData:function(){return!!this.processedXData.length},updateTotals:function(){var c,b=0,a=this.points,d=a.length,e=this.options.ignoreHiddenPoint; +for(c=0;c1.5*Math.PI?u-=2*Math.PI:u<-Math.PI/2&&(u+=2*Math.PI);q.slicedTranslation={translateX:Math.round(Math.cos(u)*d),translateY:Math.round(Math.sin(u)*d)};var n=Math.cos(u)*c[2]/2;var z=Math.sin(u)*c[2]/2;q.tooltipPos=[c[0]+.7*n,c[1]+.7*z];q.half=u<-Math.PI/2||u>Math.PI/2?1:0;q.angle=u;r=Math.min(f,q.labelDistance/5);q.labelPosition={natural:{x:c[0]+ +n+Math.cos(u)*q.labelDistance,y:c[1]+z+Math.sin(u)*q.labelDistance},"final":{},alignment:0>q.labelDistance?"center":q.half?"right":"left",connectorPosition:{breakAt:{x:c[0]+n+Math.cos(u)*r,y:c[1]+z+Math.sin(u)*r},touchingSliceAt:{x:c[0]+n,y:c[1]+z}}}}A(this,"afterTranslate")},drawEmpty:function(){var c=this.options;if(0===this.total){var b=this.center[0];var a=this.center[1];this.graph||(this.graph=this.chart.renderer.circle(b,a,0).addClass("highcharts-graph").add(this.group));this.graph.animate({"stroke-width":c.borderWidth, +cx:b,cy:a,r:this.center[2]/2,fill:c.fillColor||"none",stroke:c.color||"#cccccc"})}else this.graph&&(this.graph=this.graph.destroy())},redrawPoints:function(){var c=this,b=c.chart,a=b.renderer,d,e,k,l,m=c.options.shadow;this.drawEmpty();!m||c.shadowGroup||b.styledMode||(c.shadowGroup=a.g("shadow").attr({zIndex:-1}).add(c.group));c.points.forEach(function(f){var g={};e=f.graphic;if(!f.isNull&&e){l=f.shapeArgs;d=f.getTranslate();if(!b.styledMode){var h=f.shadowGroup;m&&!h&&(h=f.shadowGroup=a.g("shadow").add(c.shadowGroup)); +h&&h.attr(d);k=c.pointAttribs(f,f.selected&&"select")}f.delayedRendering?(e.setRadialReference(c.center).attr(l).attr(d),b.styledMode||e.attr(k).attr({"stroke-linejoin":"round"}).shadow(m,h),f.delayedRendering=!1):(e.setRadialReference(c.center),b.styledMode||u(!0,g,k),u(!0,g,l,d),e.animate(g));e.attr({visibility:f.visible?"inherit":"hidden"});e.addClass(f.getClassName())}else e&&(f.graphic=e.destroy())})},drawPoints:function(){var c=this.chart.renderer;this.points.forEach(function(b){b.graphic|| +(b.graphic=c[b.shapeType](b.shapeArgs).add(b.series.group),b.delayedRendering=!0)})},searchPoint:w,sortByAngle:function(c,b){c.sort(function(a,d){return"undefined"!==typeof a.angle&&(d.angle-a.angle)*b})},drawLegendSymbol:c.LegendSymbolMixin.drawRectangle,getCenter:e.getCenter,getSymbol:w,drawGraph:null},{init:function(){m.prototype.init.apply(this,arguments);var c=this;c.name=H(c.name,"Slice");var b=function(a){c.slice("select"===a.type)};C(c,"select",b);C(c,"unselect",b);return c},isValid:function(){return G(this.y)&& +0<=this.y},setVisible:function(c,b){var a=this,d=a.series,f=d.chart,e=d.options.ignoreHiddenPoint;b=H(b,e);c!==a.visible&&(a.visible=a.options.visible=c="undefined"===typeof c?!a.visible:c,d.options.data[d.data.indexOf(a)]=a.options,["graphic","dataLabel","connector","shadowGroup"].forEach(function(b){if(a[b])a[b][c?"show":"hide"](!0)}),a.legendItem&&f.legend.colorizeItem(a,c),c||"hover"!==a.state||a.setState(""),e&&(d.isDirty=!0),b&&f.redraw())},slice:function(c,b,a){var d=this.series;q(a,d.chart); +H(b,!0);this.sliced=this.options.sliced=I(c)?c:!this.sliced;d.options.data[d.data.indexOf(this)]=this.options;this.graphic.animate(this.getTranslate());this.shadowGroup&&this.shadowGroup.animate(this.getTranslate())},getTranslate:function(){return this.sliced?this.slicedTranslation:{translateX:0,translateY:0}},haloPath:function(c){var b=this.shapeArgs;return this.sliced||!this.visible?[]:this.series.chart.renderer.symbols.arc(b.x,b.y,b.r+c,b.r+c,{innerR:b.r-1,start:b.start,end:b.end})},connectorShapes:{fixedOffset:function(c, +b,a){var d=b.breakAt;b=b.touchingSliceAt;return["M",c.x,c.y].concat(a.softConnector?["C",c.x+("left"===c.alignment?-5:5),c.y,2*d.x-b.x,2*d.y-b.y,d.x,d.y]:["L",d.x,d.y]).concat(["L",b.x,b.y])},straight:function(c,b){b=b.touchingSliceAt;return["M",c.x,c.y,"L",b.x,b.y]},crookedLine:function(c,b,a){b=b.touchingSliceAt;var d=this.series,e=d.center[0],f=d.chart.plotWidth,l=d.chart.plotLeft;d=c.alignment;var m=this.shapeArgs.r;a=v(a.crookDistance,1);a="left"===d?e+m+(f+l-e-m)*(1-a):l+(e-m)*a;e=["L",a,c.y]; +if("left"===d?a>c.x||ab.x)e=[];return["M",c.x,c.y].concat(e).concat(["L",b.x,b.y])}},getConnectorPath:function(){var c=this.labelPosition,b=this.series.options.dataLabels,a=b.connectorShape,d=this.connectorShapes;d[a]&&(a=d[a]);return a.call(this,{x:c.final.x,y:c.final.y,alignment:c.alignment},c.connectorPosition,b)}});""});M(J,"parts/DataLabels.js",[J["parts/Globals.js"],J["parts/Utilities.js"]],function(c,e){var F=e.animObject,I=e.arrayMax,G=e.clamp,H=e.defined,v=e.extend,q=e.isArray, +C=e.objectEach,B=e.pick,u=e.relativeLength,w=e.splat,m=c.format,r=c.merge;e=c.noop;var D=c.Series,A=c.seriesTypes,f=c.stableSort;c.distribute=function(b,a,d){function e(a,b){return a.target-b.target}var k,l=!0,m=b,p=[];var g=0;var t=m.reducedLen||a;for(k=b.length;k--;)g+=b[k].size;if(g>t){f(b,function(a,b){return(b.rank||0)-(a.rank||0)});for(g=k=0;g<=t;)g+=b[k].size,k++;p=b.splice(k-1,b.length)}f(b,e);for(b=b.map(function(a){return{size:a.size,targets:[a.target],align:B(a.align,.5)}});l;){for(k=b.length;k--;)l= +b[k],g=(Math.min.apply(0,l.targets)+Math.max.apply(0,l.targets))/2,l.pos=G(g-l.size*l.align,0,a-l.size);k=b.length;for(l=!1;k--;)0b[k].pos&&(b[k-1].size+=b[k].size,b[k-1].targets=b[k-1].targets.concat(b[k].targets),b[k-1].align=.5,b[k-1].pos+b[k-1].size>a&&(b[k-1].pos=a-b[k-1].size),b.splice(k,1),l=!0)}m.push.apply(m,p);k=0;b.some(function(b){var e=0;if(b.targets.some(function(){m[k].pos=b.pos+e;if(Math.abs(m[k].pos-m[k].target)>d)return m.slice(0,k+1).forEach(function(a){delete a.pos}), +m.reducedLen=(m.reducedLen||a)-.1*a,m.reducedLen>.1*a&&c.distribute(m,a,d),!0;e+=m[k].size;k++}))return!0});f(m,e)};D.prototype.drawDataLabels=function(){function b(a,b){var d=b.filter;return d?(b=d.operator,a=a[d.property],d=d.value,">"===b&&a>d||"<"===b&&a="===b&&a>=d||"<="===b&&a<=d||"=="===b&&a==d||"==="===b&&a===d?!0:!1):!0}function a(a,b){var d=[],c;if(q(a)&&!q(b))d=a.map(function(a){return r(a,b)});else if(q(b)&&!q(a))d=b.map(function(b){return r(a,b)});else if(q(a)||q(b))for(c=Math.max(a.length, +b.length);c--;)d[c]=r(a[c],b[c]);else d=r(a,b);return d}var d=this,e=d.chart,f=d.options,l=f.dataLabels,y=d.points,p,g=d.hasRendered||0,t=F(f.animation).duration,x=Math.min(t,200),u=!e.renderer.forExport&&B(l.defer,0k||f.stacking?c.contrastColor:"#000000"):delete c.contrastColor,f.cursor&&(r.cursor=f.cursor));var x={r:a.borderRadius||0,rotation:y,padding:a.padding, +zIndex:1};e.styledMode||(x.fill=a.backgroundColor,x.stroke=a.borderColor,x["stroke-width"]=a.borderWidth);C(x,function(a,b){"undefined"===typeof a&&delete x[b]})}!l||h&&H(q)?h&&H(q)&&(l?x.text=q:(c.dataLabels=c.dataLabels||[],l=c.dataLabels[g]=y?v.text(q,0,-9999).addClass("highcharts-data-label"):v.label(q,0,-9999,a.shape,null,null,a.useHTML,null,"data-label"),g||(c.dataLabel=l),l.addClass(" highcharts-data-label-color-"+c.colorIndex+" "+(a.className||"")+(a.useHTML?" highcharts-tracker":""))),l.options= +a,l.attr(x),e.styledMode||l.css(r).shadow(a.shadow),l.added||l.add(n),a.textPath&&!a.useHTML&&(l.setTextPath(c.getDataLabelPath&&c.getDataLabelPath(l)||c.graphic,a.textPath),c.dataLabelPath&&!a.textPath.enabled&&(c.dataLabelPath=c.dataLabelPath.destroy())),d.alignDataLabel(c,l,a,null,t)):(c.dataLabel=c.dataLabel&&c.dataLabel.destroy(),c.dataLabels&&(1===c.dataLabels.length?delete c.dataLabels:delete c.dataLabels[g]),g||delete c.dataLabel,p&&(c.connector=c.connector.destroy(),c.connectors&&(1===c.connectors.length? +delete c.connectors:delete c.connectors[g])))})})}c.fireEvent(this,"afterDrawDataLabels")};D.prototype.alignDataLabel=function(b,a,c,e,f){var d=this,h=this.chart,p=this.isCartesian&&h.inverted,g=this.enabledDataSorting,k=B(b.dlBox&&b.dlBox.centerX,b.plotX,-9999),m=B(b.plotY,-9999),q=a.getBBox(),r=c.rotation,n=c.align,u=h.isInsidePlot(k,Math.round(m),p),w="justify"===B(c.overflow,g?"none":"justify"),A=this.visible&&(b.series.forceDL||g&&!w||u||e&&h.isInsidePlot(k,p?e.x+1:e.y+e.height-1,p));var C=function(c){g&& +d.xAxis&&!w&&d.setDataLabelStartPos(b,a,f,u,c)};if(A){var D=h.renderer.fontMetrics(h.styledMode?void 0:c.style.fontSize,a).b;e=v({x:p?this.yAxis.len-m:k,y:Math.round(p?this.xAxis.len-k:m),width:0,height:0},e);v(c,{width:q.width,height:q.height});r?(w=!1,k=h.renderer.rotCorr(D,r),k={x:e.x+c.x+e.width/2+k.x,y:e.y+c.y+{top:0,middle:.5,bottom:1}[c.verticalAlign]*e.height},C(k),a[f?"attr":"animate"](k).attr({align:n}),C=(r+720)%360,C=180C,"left"===n?k.y-=C?q.height:0:"center"===n?(k.x-=q.width/ +2,k.y-=q.height/2):"right"===n&&(k.x-=q.width,k.y-=C?0:q.height),a.placed=!0,a.alignAttr=k):(C(e),a.align(c,null,e),k=a.alignAttr);w&&0<=e.height?this.justifyDataLabel(a,c,k,q,e,f):B(c.crop,!0)&&(A=h.isInsidePlot(k.x,k.y)&&h.isInsidePlot(k.x+q.width,k.y+q.height));if(c.shape&&!r)a[f?"attr":"animate"]({anchorX:p?h.plotWidth-b.plotY:b.plotX,anchorY:p?h.plotHeight-b.plotX:b.plotY})}f&&g&&(a.placed=!1);A||g&&!w||(a.hide(!0),a.placed=!1)};D.prototype.setDataLabelStartPos=function(b,a,c,e,f){var d=this.chart, +h=d.inverted,p=this.xAxis,g=p.reversed,k=h?a.height/2:a.width/2;b=(b=b.pointWidth)?b/2:0;p=h?f.x:g?-k-b:p.width-k+b;f=h?g?this.yAxis.height-k+b:-k-b:f.y;a.startXPos=p;a.startYPos=f;e?"hidden"===a.visibility&&(a.show(),a.attr({opacity:0}).animate({opacity:1})):a.attr({opacity:1}).animate({opacity:0},void 0,a.hide);d.hasRendered&&(c&&a.attr({x:a.startXPos,y:a.startYPos}),a.placed=!0)};D.prototype.justifyDataLabel=function(b,a,c,e,f,l){var d=this.chart,h=a.align,g=a.verticalAlign,k=b.box?0:b.padding|| +0;var m=c.x+k;if(0>m){"right"===h?(a.align="left",a.inside=!0):a.x=-m;var q=!0}m=c.x+e.width-k;m>d.plotWidth&&("left"===h?(a.align="right",a.inside=!0):a.x=d.plotWidth-m,q=!0);m=c.y+k;0>m&&("bottom"===g?(a.verticalAlign="top",a.inside=!0):a.y=-m,q=!0);m=c.y+e.height-k;m>d.plotHeight&&("top"===g?(a.verticalAlign="bottom",a.inside=!0):a.y=d.plotHeight-m,q=!0);q&&(b.placed=!l,b.align(a,null,f));return q};A.pie&&(A.pie.prototype.dataLabelPositioners={radialDistributionY:function(b){return b.top+b.distributeBox.pos}, +radialDistributionX:function(b,a,c,e){return b.getX(ca.bottom-2?e:c,a.half,a)},justify:function(b,a,c){return c[0]+(b.half?-1:1)*(a+b.labelDistance)},alignToPlotEdges:function(b,a,c,e){b=b.getBBox().width;return a?b+e:c-b-e},alignToConnectors:function(b,a,c,e){var d=0,f;b.forEach(function(a){f=a.dataLabel.getBBox().width;f>d&&(d=f)});return a?d+e:c-d-e}},A.pie.prototype.drawDataLabels=function(){var b=this,a=b.data,d,e=b.chart,f=b.options.dataLabels,l=f.connectorPadding,m,p=e.plotWidth, +g=e.plotHeight,q=e.plotLeft,x=Math.round(e.chartWidth/3),u,v=b.center,n=v[2]/2,z=v[1],w,A,C,F,G=[[],[]],J,K,M,S,U=[0,0,0,0],X=b.dataLabelPositioners,aa;b.visible&&(f.enabled||b._hasPointLabels)&&(a.forEach(function(a){a.dataLabel&&a.visible&&a.dataLabel.shortened&&(a.dataLabel.attr({width:"auto"}).css({width:"auto",textOverflow:"clip"}),a.dataLabel.shortened=!1)}),D.prototype.drawDataLabels.apply(b),a.forEach(function(a){a.dataLabel&&(a.visible?(G[a.half].push(a),a.dataLabel._pos=null,!H(f.style.width)&& +!H(a.options.dataLabels&&a.options.dataLabels.style&&a.options.dataLabels.style.width)&&a.dataLabel.getBBox().width>x&&(a.dataLabel.css({width:.7*x}),a.dataLabel.shortened=!0)):(a.dataLabel=a.dataLabel.destroy(),a.dataLabels&&1===a.dataLabels.length&&delete a.dataLabels))}),G.forEach(function(a,h){var k=a.length,m=[],r;if(k){b.sortByAngle(a,h-.5);if(0p-l&&0===h&&(t=Math.round(J+A-p+l),U[1]=Math.max(t, +U[1])),0>K-F/2?U[0]=Math.max(Math.round(-K+F/2),U[0]):K+F/2>g&&(U[2]=Math.max(Math.round(K+F/2-g),U[2])),w.sideOverflow=t)}}}),0===I(U)||this.verifyDataLabelOverflow(U))&&(this.placeDataLabels(),this.points.forEach(function(a){aa=r(f,a.options.dataLabels);if(m=B(aa.connectorWidth,1)){var c;u=a.connector;if((w=a.dataLabel)&&w._pos&&a.visible&&0B(this.translatedThreshold,h.yAxis.len)),k=B(c.inside,!!this.options.stacking);p&&(e=r(p),0>e.y&&(e.height+=e.y,e.y=0),p=e.y+e.height-h.yAxis.len,0=e.height&&e.y===this.chart.plotHeight||0>=e.width&&0===e.x)&&(a.hide(!0),a.placed=!1);c.inside&&b.contrastColor&&a.css({color:b.contrastColor})})});M(J,"modules/overlapping-datalabels.src.js",[J["parts/Globals.js"], +J["parts/Utilities.js"]],function(c,e){var F=e.isArray,I=e.objectEach,G=e.pick;e=c.Chart;var H=c.addEvent,v=c.fireEvent;H(e,"render",function(){var c=[];(this.labelCollectors||[]).forEach(function(e){c=c.concat(e())});(this.yAxis||[]).forEach(function(e){e.options.stackLabels&&!e.options.stackLabels.allowOverlap&&I(e.stacks,function(e){I(e,function(e){c.push(e.label)})})});(this.series||[]).forEach(function(e){var q=e.options.dataLabels;e.visible&&(!1!==q.enabled||e._hasPointLabels)&&e.points.forEach(function(e){e.visible&& +(F(e.dataLabels)?e.dataLabels:e.dataLabel?[e.dataLabel]:[]).forEach(function(q){var m=q.options;q.labelrank=G(m.labelrank,e.labelrank,e.shapeArgs&&e.shapeArgs.height);m.allowOverlap||c.push(q)})})});this.hideOverlappingLabels(c)});e.prototype.hideOverlappingLabels=function(c){var e=this,q=c.length,u=e.renderer,w,m,r,D=!1;var A=function(a){var b=a.box?0:a.padding||0;var c=0;if(a&&(!a.alignAttr||a.placed)){var e=a.alignAttr||{x:a.attr("x"),y:a.attr("y")};var f=a.parentGroup;a.width||(c=a.getBBox(), +a.width=c.width,a.height=c.height,c=u.fontMetrics(null,a.element).h);return{x:e.x+(f.translateX||0)+b,y:e.y+(f.translateY||0)+b-c,width:a.width-2*b,height:a.height-2*b}}};for(m=0;mf.x+f.width||b.x+b.width +f.y+f.height||b.y+b.height=h&&f<=l||p||!F(f))k=!0;d[p?"zoomX":"zoomY"]&&k&&(c=g.zoom(a.min,a.max),g.displayBtn&&(e=!0))});var h=b.resetZoomButton;e&&!h?b.showResetZoom():!e&&H(h)&&(b.resetZoomButton=h.destroy());c&&b.redraw(q(b.options.chart.animation,a&&a.animation,100>b.pointCount))},pan:function(a,b){var c=this,d=c.hoverPoints,e=c.options.chart,f;b="object"===typeof b?b:{enabled:b,type:"x"};e&&e.panning&&(e.panning=b);var h=b.type;r(this,"pan",{originalEvent:a},function(){d&& +d.forEach(function(a){a.setState()});var b=[1];"xy"===h?b=[1,0]:"y"===h&&(b=[0]);b.forEach(function(b){var d=c[b?"xAxis":"yAxis"][0],e=d.options,g=d.horiz,h=a[g?"chartX":"chartY"];g=g?"mouseDownX":"mouseDownY";var l=c[g],k=(d.pointRange||0)/2,p=d.reversed&&!c.inverted||!d.reversed&&c.inverted?-1:1,m=d.getExtremes(),n=d.toValue(l-h,!0)+k*p;p=d.toValue(l+d.len-h,!0)-k*p;var q=p=d.panningState.startMin&&n<=d.panningState.startMax)d.setExtremes(l,n,!1,!1,{trigger:"pan"}),f=!0;c[g]=h}});f&&c.redraw(!1);u(c.container,{cursor:"move"})})}});I(b.prototype,{select:function(a,b){var c=this,d=c.series,e=d.chart;this.selectedStaging=a=q(a,!c.selected);c.firePointEvent(a?"select":"unselect",{accumulate:b},function(){c.selected= +c.options.selected=a;d.options.data[d.data.indexOf(c)]=c.options;c.setState(a&&"select");b||e.getSelectedPoints().forEach(function(a){var b=a.series;a.selected&&a!==c&&(a.selected=a.options.selected=!1,b.options.data[b.data.indexOf(a)]=a.options,a.setState(e.hoverPoints&&b.options.inactiveOtherPoints?"inactive":""),a.firePointEvent("unselect"))})});delete this.selectedStaging},onMouseOver:function(a){var b=this.series.chart,c=b.pointer;a=a?c.normalize(a):c.getChartCoordinatesFromPoint(this,b.inverted); +c.runPointActions(a,this)},onMouseOut:function(){var a=this.series.chart;this.firePointEvent("mouseOut");this.series.options.inactiveOtherPoints||(a.hoverPoints||[]).forEach(function(a){a.setState()});a.hoverPoints=a.hoverPoint=null},importEvents:function(){if(!this.hasImportedEvents){var a=this,b=f(a.series.options.point,a.options).events;a.events=b;v(b,function(b,d){c.isFunction(b)&&C(a,d,b)});this.hasImportedEvents=!0}},setState:function(a,b){var c=this.series,d=this.state,e=c.options.states[a|| +"normal"]||{},f=m[c.type].marker&&c.options.marker,h=f&&!1===f.enabled,l=f&&f.states&&f.states[a||"normal"]||{},k=!1===l.enabled,u=c.stateMarkerGraphic,v=this.marker||{},y=c.chart,w=c.halo,A,B=f&&c.markerAttribs;a=a||"";if(!(a===this.state&&!b||this.selected&&"select"!==a||!1===e.enabled||a&&(k||h&&!1===l.enabled)||a&&v.states&&v.states[a]&&!1===v.states[a].enabled)){this.state=a;B&&(A=c.markerAttribs(this,a));if(this.graphic){d&&this.graphic.removeClass("highcharts-point-"+d);a&&this.graphic.addClass("highcharts-point-"+ +a);if(!y.styledMode){var C=c.pointAttribs(this,a);var D=q(y.options.chart.animation,e.animation);c.options.inactiveOtherPoints&&((this.dataLabels||[]).forEach(function(a){a&&a.animate({opacity:C.opacity},D)}),this.connector&&this.connector.animate({opacity:C.opacity},D));this.graphic.animate(C,D)}A&&this.graphic.animate(A,q(y.options.chart.animation,l.animation,f.animation));u&&u.hide()}else{if(a&&l){d=v.symbol||c.symbol;u&&u.currentSymbol!==d&&(u=u.destroy());if(A)if(u)u[b?"animate":"attr"]({x:A.x, +y:A.y});else d&&(c.stateMarkerGraphic=u=y.renderer.symbol(d,A.x,A.y,A.width,A.height).add(c.markerGroup),u.currentSymbol=d);!y.styledMode&&u&&u.attr(c.pointAttribs(this,a))}u&&(u[a&&this.isInside?"show":"hide"](),u.element.point=this)}a=e.halo;e=(u=this.graphic||u)&&u.visibility||"inherit";a&&a.size&&u&&"hidden"!==e&&!this.isCluster?(w||(c.halo=w=y.renderer.path().add(u.parentGroup)),w.show()[b?"animate":"attr"]({d:this.haloPath(a.size)}),w.attr({"class":"highcharts-halo highcharts-color-"+q(this.colorIndex, +c.colorIndex)+(this.className?" "+this.className:""),visibility:e,zIndex:-1}),w.point=this,y.styledMode||w.attr(I({fill:this.color||c.color,"fill-opacity":a.opacity},a.attributes))):w&&w.point&&w.point.haloPath&&w.animate({d:w.point.haloPath(0)},null,w.hide);r(this,"afterSetState")}},haloPath:function(a){return this.series.chart.renderer.symbols.circle(Math.floor(this.plotX)-a,this.plotY-a,2*a,2*a)}});I(a.prototype,{onMouseOver:function(){var a=this.chart,b=a.hoverSeries;if(b&&b!==this)b.onMouseOut(); +this.options.events.mouseOver&&r(this,"mouseOver");this.setState("hover");a.hoverSeries=this},onMouseOut:function(){var a=this.options,b=this.chart,c=b.tooltip,d=b.hoverPoint;b.hoverSeries=null;if(d)d.onMouseOut();this&&a.events.mouseOut&&r(this,"mouseOut");!c||this.stickyTracking||c.shared&&!this.noSharedTooltip||c.hide();b.series.forEach(function(a){a.setState("",!0)})},setState:function(a,b){var c=this,d=c.options,e=c.graph,f=d.inactiveOtherPoints,h=d.states,l=d.lineWidth,k=d.opacity,m=q(h[a|| +"normal"]&&h[a||"normal"].animation,c.chart.options.chart.animation);d=0;a=a||"";if(c.state!==a&&([c.group,c.markerGroup,c.dataLabelsGroup].forEach(function(b){b&&(c.state&&b.removeClass("highcharts-series-"+c.state),a&&b.addClass("highcharts-series-"+a))}),c.state=a,!c.chart.styledMode)){if(h[a]&&!1===h[a].enabled)return;a&&(l=h[a].lineWidth||l+(h[a].lineWidthPlus||0),k=q(h[a].opacity,k));if(e&&!e.dashstyle)for(h={"stroke-width":l},e.animate(h,m);c["zone-graph-"+d];)c["zone-graph-"+d].attr(h),d+= +1;f||[c.group,c.markerGroup,c.dataLabelsGroup,c.labelBySeries].forEach(function(a){a&&a.animate({opacity:k},m)})}b&&f&&c.points&&c.setAllPointsToState(a)},setAllPointsToState:function(a){this.points.forEach(function(b){b.setState&&b.setState(a)})},setVisible:function(a,b){var c=this,d=c.chart,e=c.legendItem,f=d.options.chart.ignoreHiddenSeries,h=c.visible;var k=(c.visible=a=c.options.visible=c.userOptions.visible="undefined"===typeof a?!h:a)?"show":"hide";["group","dataLabelsGroup","markerGroup", +"tracker","tt"].forEach(function(a){if(c[a])c[a][k]()});if(d.hoverSeries===c||(d.hoverPoint&&d.hoverPoint.series)===c)c.onMouseOut();e&&d.legend.colorizeItem(c,a);c.isDirty=!0;c.options.stacking&&d.series.forEach(function(a){a.options.stacking&&a.visible&&(a.isDirty=!0)});c.linkedSeries.forEach(function(b){b.setVisible(a,!1)});f&&(d.isDirtyBox=!0);r(c,k);!1!==b&&d.redraw()},show:function(){this.setVisible(!0)},hide:function(){this.setVisible(!1)},select:function(a){this.selected=a=this.options.selected= +"undefined"===typeof a?!this.selected:a;this.checkbox&&(this.checkbox.checked=a);r(this,a?"select":"unselect")},drawTracker:k.drawTrackerGraph})});M(J,"parts/Responsive.js",[J["parts/Globals.js"],J["parts/Utilities.js"]],function(c,e){var F=e.isArray,I=e.isObject,G=e.objectEach,H=e.pick,v=e.splat;e=c.Chart;e.prototype.setResponsive=function(e,v){var q=this.options.responsive,u=[],w=this.currentResponsive;!v&&q&&q.rules&&q.rules.forEach(function(e){"undefined"===typeof e._id&&(e._id=c.uniqueKey()); +this.matchResponsiveRule(e,u)},this);v=c.merge.apply(0,u.map(function(e){return c.find(q.rules,function(c){return c._id===e}).chartOptions}));v.isResponsiveOptions=!0;u=u.toString()||void 0;u!==(w&&w.ruleIds)&&(w&&this.update(w.undoOptions,e,!0),u?(w=this.currentOptions(v),w.isResponsiveOptions=!0,this.currentResponsive={ruleIds:u,mergedOptions:v,undoOptions:w},this.update(v,e,!0)):this.currentResponsive=void 0)};e.prototype.matchResponsiveRule=function(c,e){var q=c.condition;(q.callback||function(){return this.chartWidth<= +H(q.maxWidth,Number.MAX_VALUE)&&this.chartHeight<=H(q.maxHeight,Number.MAX_VALUE)&&this.chartWidth>=H(q.minWidth,0)&&this.chartHeight>=H(q.minHeight,0)}).call(this)&&e.push(c._id)};e.prototype.currentOptions=function(c){function e(c,m,r,u){var w;G(c,function(c,b){if(!u&&-1 + + + +ESP32-BMS + + + + + + + + + +
+
+
+

Chademo Status

+
Waiting
+
+
+

EVSE Max Voltage

+
-V
+
+
+

EVSE Threshold Voltage

+
-V
+
+
+

EVSE Max Current

+
-A
+
+
+ +
+
+
+
+
+
+
+

IN 1

+
-
+
+
+

IN 2

+
-
+
+
+

OUT 1

+
-
+
+
+

OUT 2

+
-
+
+
+ +
+ +

Wifi Settings +

Upload Update +

Settings + +

+ + + + diff --git a/ESP32-Chademo/data/index.js b/ESP32-Chademo/data/index.js new file mode 100644 index 0000000..643f96f --- /dev/null +++ b/ESP32-Chademo/data/index.js @@ -0,0 +1,191 @@ +/** @brief excutes when page finished loading. Creates tables and chart */ +var output, websocket,chartSpeed + +function toggleHidden(id) { + const element = document.getElementById(id); + if (element.classList.contains('hidden')) { + element.classList.remove('hidden'); + + } else { + element.classList.add('hidden'); + + } + + return false +} +function show(id) { + const element = document.getElementById(id); + if (element.classList.contains('hidden')) { + element.classList.remove('hidden'); + + } + +} + +function hide(id) { + const element = document.getElementById(id); + if (!element.classList.contains('hidden')) { + element.classList.add('hidden'); + + } + +} +function setValue(id, value) { + const element = document.getElementById(id); + element.innerHTML = value +} + +// STARTUP, +SEND_INITIAL_PARAMS, +WAIT_FOR_EVSE_PARAMS, +SET_CHARGE_BEGIN, +WAIT_FOR_BEGIN_CONFIRMATION, +CLOSE_CONTACTORS, +WAIT_FOR_PRECHARGE, +RUNNING, +CEASE_CURRENT, +WAIT_FOR_ZERO_CURRENT, +OPEN_CONTACTOR, +FAULTED, +STOPPED, +LIMBO +// +function updateText(key, data) { + if (key == 'status') { + if (data == 0) { + setValue('mode', "Waiting"); + } else if (data == 1) { + setValue('mode', "Sending Params"); + } else if (data == 2) { + setValue('mode', "Wait for Params"); + } else if (data == 3) { + setValue('mode', "Giving Permission"); + } else if (data == 4) { + setValue('mode', "Wait for Confirmation"); + } else if (data == 5) { + setValue('mode', "Close Contactors"); + } else if (data == 6) { + setValue('mode', "Precharge"); + } else if (data == 7) { + setValue('mode', "Running"); + } else if (data == 8) { + setValue('mode', "Sending Stop"); + } else if (data == 9) { + setValue('mode', "Wait for Stop"); + } else if (data == 10) { + setValue('mode', "Open Contactors"); + } else if (data == 11) { + setValue('mode', "Fault"); + } else if (data == 12) { + setValue('mode', "Stopped"); + } else if (data == 13) { + setValue('mode', "Limbo"); + } else { + setValue('mode', "Unknown"); + } + } else if (key == 'EVSEThresholdVoltage') { + setValue('evseThreshold', data); + } else if (key == 'EVSEAvailableVoltage') { + setValue('evseVoltage', data); + } else if (key == 'EVSEAvailableCurrent') { + setValue('evseAmps', data) + } else if (key == 'IN1') { + setValue('in1', data) + } else if (key == 'IN2') { + setValue('in2', data) + } else if (key == 'OUT1') { + setValue('out1', data) + } else if (key == 'OUT2') { + setValue('out2', data) + } +} +function initHandlers() { + +} + + +function onLoad() { + chargerWebSocket("ws://"+ location.host +"/ws"); + + // output = document.getElementById("output"); + initGauges(); + // initHandlers(); +} + +function onOpen(evt) { + console.log("Socket Connected"); +} + +function onMessage(json) { + Object.keys(json).forEach(function(key) { + updateGauge(key, json[key]); + updateText(key, json[key]); + }); + + + } + + function onError(evt) { + console.log("Socket Error") + } + + function doSend(message) { + websocket.send(message); + } + + function writeToScreen(message) { + var pre = document.createElement("p"); + pre.style.wordWrap = "break-word"; + pre.innerHTML = message; output.appendChild(pre); + } + + function chargerWebSocket(wsUri) { + websocket = new WebSocket(wsUri); + + websocket.onopen = function(evt) { + onOpen(evt) + }; + + websocket.onclose = function(evt) { + console.log(evt) + }; + + websocket.onmessage = function(evt) { + onMessage(JSON.parse(evt.data)) + }; + + websocket.onerror = function(evt) { + onError(evt) + }; + } + + function fileSelected() +{ +} + +/** @brief uploads file to web server, if bin-file uploaded, starts a firmware upgrade */ +function uploadFile() +{ + var xmlhttp = new XMLHttpRequest(); + var form = document.getElementById('uploadform'); + + if (form.getFormData) + var fd = form.getFormData(); + else + var fd = new FormData(form); + var file = document.getElementById('updatefile').files[0].name; + + xmlhttp.onload = function() + { + document.getElementById("bar").innerHTML = "

Upload complete

"; + if (file.endsWith(".hex")) + { + runUpdate(-1, "/" + file); + } else { + setTimeout(function() { document.getElementById("bar").innerHTML = "" }, 5000); + } + } + + xmlhttp.open("POST", "/edit"); + xmlhttp.send(fd); +} \ No newline at end of file diff --git a/ESP32-Chademo/data/settings.html b/ESP32-Chademo/data/settings.html new file mode 100644 index 0000000..d0db632 --- /dev/null +++ b/ESP32-Chademo/data/settings.html @@ -0,0 +1,45 @@ + + + + + +ESP32-Chadmeo Settings + + + + + + +
+
+

Chademo Settings

+

Below settings are used for calculating SoC, if not using the from BMS setting.

+
+ +
+
+ +
+
+ +
+ +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+ + diff --git a/ESP32-Chademo/data/settings.js b/ESP32-Chademo/data/settings.js new file mode 100644 index 0000000..6af9c8b --- /dev/null +++ b/ESP32-Chademo/data/settings.js @@ -0,0 +1,76 @@ +function fetchSettings() { + + const xhr = new XMLHttpRequest(); + + // listen for `load` event + xhr.onload = () => { + + // print JSON response + if (xhr.status >= 200 && xhr.status < 300) { + // parse JSON + const response = JSON.parse(xhr.responseText); + this.settings = response + loadSettings(response) + } + }; + + xhr.open('GET', '/settings'); + xhr.send() +} + +function postSettings() { + + const xhr = new XMLHttpRequest(); + + // listen for `load` event + xhr.onload = () => { + + // print JSON response + if (xhr.status >= 200 && xhr.status < 300) { + // parse JSON + const response = JSON.parse(xhr.responseText); + this.settings = response + loadSettings(response) + } + }; + + xhr.open('POST', '/settings'); + xhr.setRequestHeader("Content-Type", "application/json;charset=UTF-8"); + xhr.send(JSON.stringify(this.settings)) + xhr.send() +} + +function save() { + const keys = Object.keys(this.settings) + keys.forEach(function(k) { + var fields = document.getElementsByName(k); + if (fields.length > 0) { + const field = fields[0]; + this.settings[k] = parseInt(field.value) + } + + }) + + postSettings(); +} + +function loadSettings(settings) { + const keys = Object.keys(settings) + keys.forEach(function(k) { + var fields = document.getElementsByName(k); + if (fields.length > 0) { + const field = fields[0]; + if (field.type == "checkbox") { + field.checked = settings[k]; + } else { + field.value = settings[k]; + } + } + + }) +} + +function onLoad() { + // const timer = setInterval(updateVoltages, 5000); + fetchSettings(); +} \ No newline at end of file diff --git a/ESP32-Chademo/data/solid-gauge.js b/ESP32-Chademo/data/solid-gauge.js new file mode 100755 index 0000000..da0b1ed --- /dev/null +++ b/ESP32-Chademo/data/solid-gauge.js @@ -0,0 +1,17 @@ +/* + Highcharts JS v8.0.0 (2019-12-10) + + Solid angular gauge module + + (c) 2010-2019 Torstein Honsi + + License: www.highcharts.com/license +*/ +(function(b){"object"===typeof module&&module.exports?(b["default"]=b,module.exports=b):"function"===typeof define&&define.amd?define("highcharts/modules/solid-gauge",["highcharts","highcharts/highcharts-more"],function(k){b(k);b.Highcharts=k;return b}):b("undefined"!==typeof Highcharts?Highcharts:void 0)})(function(b){function k(b,e,k,t){b.hasOwnProperty(e)||(b[e]=t.apply(null,k))}b=b?b._modules:{};k(b,"modules/solid-gauge.src.js",[b["parts/Globals.js"],b["parts/Utilities.js"]],function(b,e){var k= +e.clamp,t=e.extend,v=e.isNumber,u=e.pick,w=e.pInt;e=e.wrap;e(b.Renderer.prototype.symbols,"arc",function(a,b,f,d,g,c){a=a(b,f,d,g,c);c.rounded&&(d=((c.r||d)-c.innerR)/2,c=["A",d,d,0,1,1,a[12],a[13]],a.splice.apply(a,[a.length-1,0].concat(["A",d,d,0,1,1,a[1],a[2]])),a.splice.apply(a,[11,3].concat(c)));return a});var x={initDataClasses:function(a){var m=this.chart,f,d=0,g=this.options;this.dataClasses=f=[];a.dataClasses.forEach(function(c,h){c=b.merge(c);f.push(c);c.color||("category"===g.dataClassColor? +(h=m.options.colors,c.color=h[d++],d===h.length&&(d=0)):c.color=b.color(g.minColor).tweenTo(b.color(g.maxColor),h/(a.dataClasses.length-1)))})},initStops:function(a){this.stops=a.stops||[[0,this.options.minColor],[1,this.options.maxColor]];this.stops.forEach(function(a){a.color=b.color(a[1])})},toColor:function(a,b){var f=this.stops,d=this.dataClasses,g;if(d)for(g=d.length;g--;){var c=d[g];var h=c.from;f=c.to;if(("undefined"===typeof h||a>=h)&&("undefined"===typeof f||a<=f)){var m=c.color;b&&(b.dataClass= +g);break}}else{this.isLog&&(a=this.val2lin(a));a=1-(this.max-a)/(this.max-this.min);for(g=f.length;g--&&!(a>f[g][0]););h=f[g]||f[g+1];f=f[g+1]||h;a=1-(f[0]-a)/(f[0]-h[0]||1);m=h.color.tweenTo(f.color,a)}return m}};b.seriesType("solidgauge","gauge",{colorByPoint:!0,dataLabels:{y:0}},{drawLegendSymbol:b.LegendSymbolMixin.drawRectangle,translate:function(){var a=this.yAxis;t(a,x);!a.dataClasses&&a.options.dataClasses&&a.initDataClasses(a.options);a.initStops(a.options);b.seriesTypes.gauge.prototype.translate.call(this)}, +drawPoints:function(){var a=this,b=a.yAxis,f=b.center,d=a.options,g=a.chart.renderer,c=d.overshoot,h=v(c)?c/180*Math.PI:0,e;v(d.threshold)&&(e=b.startAngleRad+b.translate(d.threshold,null,null,null,!0));this.thresholdAngleRad=u(e,b.startAngleRad);a.points.forEach(function(c){if(!c.isNull){var e=c.graphic,l=b.startAngleRad+b.translate(c.y,null,null,null,!0),r=w(u(c.options.radius,d.radius,100))*f[2]/200,n=w(u(c.options.innerRadius,d.innerRadius,60))*f[2]/200,p=b.toColor(c.y,c),q=Math.min(b.startAngleRad, +b.endAngleRad),m=Math.max(b.startAngleRad,b.endAngleRad);"none"===p&&(p=c.color||a.color||"none");"none"!==p&&(c.color=p);l=k(l,q-h,m+h);!1===d.wrap&&(l=k(l,q,m));q=Math.min(l,a.thresholdAngleRad);l=Math.max(l,a.thresholdAngleRad);l-q>2*Math.PI&&(l=q+2*Math.PI);c.shapeArgs=n={x:f[0],y:f[1],r:r,innerR:n,start:q,end:l,rounded:d.rounded};c.startR=r;e?(r=n.d,e.animate(t({fill:p},n)),r&&(n.d=r)):c.graphic=e=g.arc(n).attr({fill:p,"sweep-flag":0}).add(a.group);a.chart.styledMode||("square"!==d.linecap&& +e.attr({"stroke-linecap":"round","stroke-linejoin":"round"}),e.attr({stroke:d.borderColor||"none","stroke-width":d.borderWidth||0}));e&&e.addClass(c.getClassName(),!0)}})},animate:function(a){a||(this.startAngleRad=this.thresholdAngleRad,b.seriesTypes.pie.prototype.animate.call(this,a))}});""});k(b,"masters/modules/solid-gauge.src.js",[],function(){})}); +//# sourceMappingURL=solid-gauge.js.map \ No newline at end of file diff --git a/ESP32-Chademo/data/style.css b/ESP32-Chademo/data/style.css new file mode 100644 index 0000000..f4ce83e --- /dev/null +++ b/ESP32-Chademo/data/style.css @@ -0,0 +1,123 @@ +div.navbar { + position: fixed; + background: #aaaaaa; + top: 0; + padding-top: 0.7em; + padding-bottom: 1em; + padding-right: 1em; + z-index: 100; + white-space: nowrap; +} +input[type=number]{ + width: 6em; +} + +body { + font-family: sans-serif; + font-size: 12pt; + -webkit-text-size-adjust: none; + -moz-text-size-adjust: none; + -ms-text-size-adjust: none; +} + +/*label { display: inline-block; width: 12em; }*/ + +button, input[type=file], input[type=button] { + font-size: 100%; + padding: 5px 24px; + border-radius: 8px; + background-color: #e7e7e7; + color: black; + -webkit-transition-duration: 0.4s; /* Safari */ + transition-duration: 0.4s; +} + +button:hover,input[type=file]:hover,input[type=button]:hover { + background-color: #efefef; +} + +table { + border-collapse: collapse; +} + +th, td { + padding: 8px; + text-align: left; + border-bottom: 1px solid #ddd; +} + +th { background-color:#e5e5e5; } + +tr:hover {background-color:#f5f5f5;} + +#config label { + width: 250px; + display: inline-block; +} + +#config > div { + padding: 5px 0; +} +#config > div > span { + display: inline-block; + width:180px; +} + +.highcharts-figure .chart-container { + width: 300px; + height: 200px; +} + +.flex-block { + display: flex; + margin-block-start: 1em; + margin-block-end: 1em; + margin-inline-start: 40px; + margin-inline-end: 40px; + justify-content: center; +} + +.info-block { + text-align: center; + width: 300px; + font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, sans-serif; + font-size: 12px; + padding-bottom: 30px; +} + +.info-block h3 { + color: #666666; + font-weight: 100; +} + +.info-block .data { + font-size: 4em; + font-weight: bold; +} +.hidden { + display: none; +} + +.module { + background-color: #d1d1d1; + padding: 20px; + margin-bottom: 10px; +} + +.module .module-summary span, +.module .temperature-summary span { + display: inline-block; + padding: 10px; +} + +.module .module-cells span { + display: inline-block; + padding: 10px; +} + +form div { + margin-top: 10px +} +label input { + margin-left: 20px; +} \ No newline at end of file diff --git a/ESP32-Chademo/data/wifi-updated.html b/ESP32-Chademo/data/wifi-updated.html new file mode 100644 index 0000000..0b4321e --- /dev/null +++ b/ESP32-Chademo/data/wifi-updated.html @@ -0,0 +1,32 @@ + + + + + + +Modify Wifi settings + + + +Wifi Settings updated. Return to main page. + + + diff --git a/ESP32-Chademo/data/wifi.html b/ESP32-Chademo/data/wifi.html new file mode 100644 index 0000000..38d121d --- /dev/null +++ b/ESP32-Chademo/data/wifi.html @@ -0,0 +1,54 @@ + + + + + +Modify Wifi settings + + + + +

Access Point Settings

+Here you can specify SSID and password of the access point that +is created by the inverter. +
+

+


+

+

+
+

Station Settings

+Here you can specify a Wifi network that the inverter joins. +
+

+

+

Current IP Address: %staIP% +

+

+ + + + diff --git a/Hardware/1-PCB_PCB_ESP32-Chademo_2_Layer.json b/Hardware/1-PCB_PCB_ESP32-Chademo_2_Layer.json new file mode 100644 index 0000000..cb56250 --- /dev/null +++ b/Hardware/1-PCB_PCB_ESP32-Chademo_2_Layer.json @@ -0,0 +1 @@ +{"head":{"docType":"3","editorVersion":"6.5.22","newgId":true,"c_para":[],"x":4622.8434,"y":3268.9427,"hasIdFlag":true,"importFlag":0,"transformList":""},"canvas":"CA~1000~1000~#000000~yes~#FFFFFF~10~1000~1000~line~0.5~mm~2.7559~45~visible~0.5~4622.8434~3268.9427~1~yes","shape":["TRACK~1.1811~2~START1~4713.3434 3182.9427 4710.3434 3179.9427 4710.3434 3173.9427~gge20176~0","TRACK~1.1811~2~SPI_SCK~4582.84 3129.44 4591.84 3138.44 4591.84 3150.94 4593.34 3152.44 4734.34 3152.44 4735.34 3153.44 4735.34 3162.47 4740.47 3167.59~gge20040~0","TRACK~1.1811~2~SPI_SCK~4750.314 3167.595 4740.471 3167.595~gge20043~0","TRACK~1.1811~2~SPI_MOSI~4720.786 3157.753 4730.629 3157.753~gge20037~0","TRACK~1.1811~2~SPI_MOSI~4582.8434 3139.4427 4589.3434 3145.9427 4589.3434 3152.9427 4590.8434 3154.4427 4717.4757 3154.4427 4720.786 3157.753~gge20034~0","TRACK~1.1811~2~SPI_MISO~4730.629 3167.595 4720.786 3167.595~gge20031~0","TRACK~1.1811~2~SPI_MISO~4720.786 3167.595 4709.6337 3156.4427 4588.3434 3156.4427 4582.8434 3150.9427 4582.8434 3149.4427~gge20028~0","TRACK~1.1811~2~OUT_CONTACTORS~4613.84 3162.94 4598.1 3162.94 4580 3181 4576 3181~gge7203~0","TRACK~1.1811~2~GPIO39~4740.471 3197.123 4750.314 3197.123~gge20019~0","TRACK~1.1811~2~GPIO39~4738.343 3244.443 4735.8433 3241.9433 4735.8433 3201.7505 4740.4712 3197.123~gge20016~0","TRACK~1.1811~2~GPIO39~4622.8434 3268.9427 4627.8434 3263.9427 4689.3434 3263.9427 4691.3434 3265.9427 4691.3434 3266.9427~gge19962~0","TRACK~1.1811~2~GPIO25~4592.84 3268.94 4603.84 3257.94 4690.84 3257.94 4690.84 3256.94~gge19850~0","TRACK~1.1811~2~GPIO36~4740.471 3206.965 4750.314 3206.965~gge19959~0","TRACK~1.1811~2~GPIO36~4612.8434 3268.9427 4619.8434 3261.9427 4691.8434 3261.9427 4693.8434 3263.9427 4697.3434 3263.9427~gge19916~0","TRACK~1.1811~2~GPIO27~4602.84 3268.94 4611.84 3259.94 4694.84 3259.94~gge19886~0","TRACK~1.1811~2~GPIO27~4740.471 3216.808 4750.314 3216.808~gge19883~0","TRACK~1.1811~2~GPIO25~4740.471 3226.65 4750.314 3226.65~gge19880~0","TRACK~1.1811~2~SDA~4468.314 3239.0359 4472.7207 3243.4426 4544.8433 3243.4426 4562.8433 3261.4426 4562.8428 3291.1499 4567.6782 3295.9426 4744.343 3295.9426 4744.343 3292.943~gge19820~0","TRACK~1.1811~2~RX~4468.31 3249.04 4478.34 3248.94 4481.84 3245.44 4543.84 3245.44 4560.84 3262.44 4560.84 3291.94 4566.84 3297.94 4746.83 3297.94 4748.84 3295.93 4748.84 3292.94~gge19787~0","TRACK~1.1811~2~TX~4468.31 3259.04 4471.41 3255.94 4475.04 3255.94 4483.54 3247.44 4542.34 3247.44 4558.84 3263.94 4558.84 3292.94 4566.34 3300.44 4750.84 3300.44 4762.34 3288.94 4762.34 3192.44 4761.84 3191.94 4737.84 3191.94 4733.18 3187.28 4730.63 3187.28~gge19781~0","TRACK~1.1811~2~SCL~4468.31 3269.04 4474.84 3262.51 4474.84 3258.94 4484.34 3249.44 4540.84 3249.44 4556.84 3265.44 4556.84 3293.94 4565.34 3302.44 4751.84 3302.44 4764.34 3289.94 4764.34 3190.44 4761.18 3187.28 4740.47 3187.28~gge19778~0","TRACK~1.1811~2~TX~4730.629 3187.28 4720.786 3187.28~gge19784~0","TRACK~1.1811~2~SPI_MOSI~4559.3434 3138.9427 4564.8434 3144.4427 4574.8434 3144.4427 4579.8434 3139.4427 4582.8434 3139.4427~gge19772~0","TRACK~1.1811~2~SPI_MOSI~4505.34 3148.44 4508.3373 3145.4427 4513.3434 3145.4427~gge19718~0","TRACK~1.1811~2~SPI_MOSI~4503.34 3189.44 4505.34 3187.44 4505.34 3148.44~gge19715~0","TRACK~1.1811~2~SPI_MISO~4506.84 3191.94 4508.84 3189.94 4508.84 3149.94 4514.34 3149.94~gge19628~0","TRACK~1.1811~2~SPI_SCK~4500.3428 3186.9431 4503.3433 3183.9424 4503.3433 3141.943 4510.843 3141.943~gge19571~0","TRACK~1.1811~2~GPIO25~4552.8398 3230.4399 4552.843 3230.4431 4552.843 3244.943~gge19411~0","TRACK~1.1811~2~GPIO27~4548.8428 3230.4431 4548.8428 3242.943 4548.843 3242.943~gge19336~0","TRACK~1.1811~2~GPIO39~4580.5363 3259.036 4568.314 3259.036~gge19454~0","TRACK~1.1811~2~SDA~4468.31 3239.04 4448.41 3258.94 4439.84 3258.94~gge18570~0","TRACK~1.1811~2~START1~4702.3433 3127.4426 4702.343 3127.4429 4702.343 3146.443~gge18474~0","TRACK~1.1811~2~START2~4692.34 3127.44 4692.34 3124.45 4695.85 3120.94 4708.34 3120.94 4720.79 3133.39 4720.79 3138.07~gge18468~0","TRACK~1.1811~2~START2~4720.786 3138.068 4730.629 3138.068~gge18471~0","TRACK~1.1811~2~OUT1~4720.786 3124.288 4714.4407 3117.9427 4704.3434 3117.9427~gge18462~0","TRACK~1.1811~2~CAN0_H~4659.843 3236.443 4659.8428 3236.4428 4659.8428 3225.9431~gge18270~0","TRACK~1.1811~2~CAN1_H~4720.7861 3206.9651 4715.3082 3212.443 4703.843 3212.443~gge18239~0","TRACK~3.937~2~+3.3V~4578.84 3236.44 4578.84 3212.45 4602.85 3188.44 4606.84 3188.44~gge13627~0","TRACK~1.1811~2~+3.3V~4634.3434 3187.4427 4629.8434 3182.9427 4625.8434 3182.9427~gge13889~0","TRACK~3.937~2~+3.3V~4487.3428 3169.9431 4487.3434 3130.4427~gge13026~0","TRACK~3.937~2~+3.3V~4591.6638 3113.2638 4561.84 3083.44~gge13695~0","TRACK~3.937~2~+3.3V~4480.3434 3229.9427 4480.3434 3184.9427 4487.3434 3177.9427 4487.3434 3169.9427~gge13585~0","TRACK~1.1811~2~IN1~4645.343 3245.443 4645.3428 3245.4428 4645.3428 3230.4431~gge7386~0","TRACK~1.1811~2~IN2~4650.8428 3230.4431 4650.8428 3245.4428 4650.843 3245.443~gge7665~0","TRACK~1.1811~2~IN2~4560 3244 4560 3239.072 4559.9639 3239.0359 4568.314 3239.0359~gge7719~0","TRACK~1.1811~2~OUT_CHARGE_EN~4556.5 3243 4556.5 3233.072 4560.5361 3229.0359 4568.314 3229.0359~gge7758~0","COPPERAREA~1~2~GND~M 4401.5 3019 L 4407 3013.5 L 4782 3013.5 L 4800.5 3032 L 4800.5 3323.5 L 4799.5 3322.5 L 4556 3323.5 L 4576.5 3318 L 4556 3294 L 4556 3262.5 L 4543 3250 L 4485.5 3250 L 4475 3259 L 4475 3295 L 4457.5 3316 L 4475 3322.5 L 4399.5 3322.5 Z~1.181~solid~gge8049~spoke~none~[[\"M 4753.40932 3304.37 L 4753.25625 3304.33955 4753.12648 3304.25284 4753.03977 3304.12307 4753.00932 3303.97 4753.03977 3303.81693 4753.12648 3303.68716 4765.60355 3291.21008 4765.6543 3291.15693 4765.86175 3290.88223 4766.00897 3290.58656 4766.09936 3290.26888 4766.13155 3289.92151 4766.13155 3190.44462 4766.12985 3190.37115 4766.08229 3190.03022 4765.97733 3189.71705 4765.81661 3189.4285 4765.59374 3189.16011 4762.45008 3186.01645 4762.39693 3185.9657 4762.12223 3185.75825 4761.82656 3185.61103 4761.50888 3185.52064 4761.16151 3185.48845 4754.35061 3185.48845 4754.20564 3185.46125 4754.08038 3185.38336 4753.99186 3185.26537 4753.94993 3185.18033 4753.6447 3184.72352 4753.28245 3184.31045 4752.86938 3183.9482 4752.41257 3183.64297 4751.91982 3183.39998 4751.39958 3183.22337 4750.86073 3183.11619 4750.3125 3183.08026 4749.76427 3183.11619 4749.22542 3183.22337 4748.70518 3183.39998 4748.21243 3183.64297 4747.75562 3183.9482 4747.34255 3184.31045 4746.9803 3184.72352 4746.67507 3185.18033 4746.63314 3185.26537 4746.54462 3185.38336 4746.41936 3185.46125 4746.27439 3185.48845 4744.50881 3185.48845 4744.36384 3185.46125 4744.23858 3185.38336 4744.15006 3185.26537 4744.10813 3185.18033 4743.8029 3184.72352 4743.44065 3184.31045 4743.02758 3183.9482 4742.57077 3183.64297 4742.07802 3183.39998 4741.55778 3183.22337 4741.01893 3183.11619 4740.4707 3183.08026 4739.92247 3183.11619 4739.38362 3183.22337 4738.86338 3183.39998 4738.37063 3183.64297 4737.91382 3183.9482 4737.50075 3184.31045 4737.1385 3184.72352 4736.83327 3185.18033 4736.59028 3185.67308 4736.41367 3186.19332 4736.30649 3186.73217 4736.29406 3186.92176 4736.25558 3187.06859 4736.16516 3187.19051 4736.03582 3187.26996 4735.8862 3187.29551 4735.73783 3187.26346 4735.61208 3187.17844 4734.78168 3186.34804 4734.68575 3186.19377 4734.50892 3185.67288 4734.26593 3185.18013 4733.9607 3184.72332 4733.59845 3184.31025 4733.18538 3183.948 4732.72857 3183.64277 4732.23582 3183.39978 4731.71558 3183.22317 4731.17673 3183.11599 4730.6285 3183.08006 4730.08027 3183.11599 4729.54142 3183.22317 4729.02118 3183.39978 4728.52843 3183.64277 4728.07162 3183.948 4727.65855 3184.31025 4727.2963 3184.72332 4726.99107 3185.18013 4726.94904 3185.26537 4726.86052 3185.38336 4726.73526 3185.46125 4726.59029 3185.48845 4724.82421 3185.48845 4724.67924 3185.46125 4724.55398 3185.38336 4724.46546 3185.26537 4724.42343 3185.18013 4724.1182 3184.72332 4723.75595 3184.31025 4723.34288 3183.948 4722.88607 3183.64277 4722.39332 3183.39978 4721.87308 3183.22317 4721.33423 3183.11599 4720.786 3183.08006 4720.23777 3183.11599 4719.69892 3183.22317 4719.17868 3183.39978 4718.68593 3183.64277 4718.22912 3183.948 4717.81605 3184.31025 4717.4538 3184.72332 4717.14857 3185.18013 4716.90558 3185.67288 4716.72897 3186.19312 4716.62179 3186.73197 4716.58586 3187.2802 4716.62179 3187.82843 4716.72897 3188.36728 4716.90558 3188.88752 4717.14857 3189.38027 4717.4538 3189.83708 4717.81605 3190.25015 4718.22912 3190.6124 4718.68593 3190.91763 4719.17868 3191.16062 4719.69892 3191.33723 4720.23777 3191.44441 4720.786 3191.48034 4721.33423 3191.44441 4721.87308 3191.33723 4722.39332 3191.16062 4722.88607 3190.91763 4723.34288 3190.6124 4723.75595 3190.25015 4724.1182 3189.83708 4724.42343 3189.38027 4724.46566 3189.29463 4724.55417 3189.17664 4724.67943 3189.09875 4724.82441 3189.07155 4726.59009 3189.07155 4726.73507 3189.09875 4726.86033 3189.17664 4726.94884 3189.29463 4726.99107 3189.38027 4727.2963 3189.83708 4727.65855 3190.25015 4728.07162 3190.6124 4728.52843 3190.91763 4729.02118 3191.16062 4729.54142 3191.33723 4730.08027 3191.44441 4730.6285 3191.48034 4731.17673 3191.44441 4731.71558 3191.33723 4732.23582 3191.16062 4732.72857 3190.91763 4733.18538 3190.6124 4733.3264 3190.48873 4733.45539 3190.41284 4733.60323 3190.38968 4733.74924 3190.42246 4733.87298 3190.50662 4736.56992 3193.20355 4736.62307 3193.2543 4736.89777 3193.46175 4737.35499 3193.68821 4737.45678 3193.81165 4737.50205 3193.96511 4737.48355 3194.12404 4737.40424 3194.263 4737.1385 3194.56602 4736.83327 3195.02283 4736.59028 3195.51558 4736.41367 3196.03582 4736.30649 3196.57467 4736.27056 3197.1229 4736.30649 3197.67113 4736.41367 3198.20998 4736.44438 3198.30045 4736.46523 3198.44647 4736.43173 3198.59013 4736.34844 3198.71188 4734.57981 3200.48036 4734.52899 3200.53357 4734.32155 3200.80827 4734.17433 3201.10394 4734.08394 3201.42162 4734.05175 3201.76899 4734.05175 3203.50997 4734.02295 3203.659 4733.9407 3203.78657 4733.81683 3203.87431 4733.6692 3203.90959 4733.51905 3203.88731 4733.38801 3203.8107 4733.18538 3203.633 4732.72857 3203.32777 4732.23582 3203.08478 4731.71558 3202.90817 4731.17673 3202.80099 4730.6285 3202.76506 4730.08027 3202.80099 4729.54142 3202.90817 4729.02118 3203.08478 4728.52843 3203.32777 4728.07162 3203.633 4727.65855 3203.99525 4727.2963 3204.40832 4726.99107 3204.86513 4726.74808 3205.35788 4726.57147 3205.87812 4726.46429 3206.41697 4726.42836 3206.9652 4726.46429 3207.51343 4726.57147 3208.05228 4726.74808 3208.57252 4726.99107 3209.06527 4727.2963 3209.52208 4727.65855 3209.93515 4728.07162 3210.2974 4728.52843 3210.60263 4729.02118 3210.84562 4729.54142 3211.02223 4730.08027 3211.12941 4730.6285 3211.16534 4731.17673 3211.12941 4731.71558 3211.02223 4732.23582 3210.84562 4732.72857 3210.60263 4733.18538 3210.2974 4733.38801 3210.1197 4733.51905 3210.04309 4733.6692 3210.02081 4733.81683 3210.05609 4733.9407 3210.14383 4734.02295 3210.2714 4734.05175 3210.42043 4734.05175 3213.35257 4734.02295 3213.5016 4733.9407 3213.62917 4733.81683 3213.71691 4733.6692 3213.75219 4733.51905 3213.72991 4733.38801 3213.6533 4733.18538 3213.4756 4732.72857 3213.17037 4732.23582 3212.92738 4731.71558 3212.75077 4731.17673 3212.64359 4730.6285 3212.60766 4730.08027 3212.64359 4729.54142 3212.75077 4729.02118 3212.92738 4728.52843 3213.17037 4728.07162 3213.4756 4727.65855 3213.83785 4727.2963 3214.25092 4726.99107 3214.70773 4726.74808 3215.20048 4726.57147 3215.72072 4726.46429 3216.25957 4726.42836 3216.8078 4726.46429 3217.35603 4726.57147 3217.89488 4726.74808 3218.41512 4726.99107 3218.90787 4727.2963 3219.36468 4727.65855 3219.77775 4728.07162 3220.14 4728.52843 3220.44523 4729.02118 3220.68822 4729.54142 3220.86483 4730.08027 3220.97201 4730.6285 3221.00794 4731.17673 3220.97201 4731.71558 3220.86483 4732.23582 3220.68822 4732.72857 3220.44523 4733.18538 3220.14 4733.38801 3219.9623 4733.51905 3219.88569 4733.6692 3219.86341 4733.81683 3219.89869 4733.9407 3219.98643 4734.02295 3220.114 4734.05175 3220.26303 4734.05175 3223.19507 4734.02295 3223.3441 4733.9407 3223.47167 4733.81683 3223.55941 4733.6692 3223.59469 4733.51905 3223.57241 4733.38801 3223.4958 4733.18538 3223.3181 4732.72857 3223.01287 4732.23582 3222.76988 4731.71558 3222.59327 4731.17673 3222.48609 4730.6285 3222.45016 4730.08027 3222.48609 4729.54142 3222.59327 4729.02118 3222.76988 4728.52843 3223.01287 4728.07162 3223.3181 4727.65855 3223.68035 4727.2963 3224.09342 4726.99107 3224.55023 4726.74808 3225.04298 4726.57147 3225.56322 4726.46429 3226.10207 4726.42836 3226.6503 4726.46429 3227.19853 4726.57147 3227.73738 4726.74808 3228.25762 4726.99107 3228.75037 4727.2963 3229.20718 4727.65855 3229.62025 4728.07162 3229.9825 4728.52843 3230.28773 4729.02118 3230.53072 4729.54142 3230.70733 4730.08027 3230.81451 4730.6285 3230.85044 4731.17673 3230.81451 4731.71558 3230.70733 4732.23582 3230.53072 4732.72857 3230.28773 4733.18538 3229.9825 4733.38801 3229.8048 4733.51905 3229.72819 4733.6692 3229.70591 4733.81683 3229.74119 4733.9407 3229.82893 4734.02295 3229.9565 4734.05175 3230.10553 4734.05175 3241.93868 4734.05345 3242.01215 4734.10101 3242.35308 4734.20597 3242.66625 4734.36669 3242.9548 4734.58956 3243.22319 4735.85226 3244.48589 4735.93233 3244.60052 4735.96805 3244.7357 4735.9765 3244.83767 4736.07379 3245.22186 4736.23299 3245.5848 4736.44976 3245.91658 4736.71818 3246.20816 4737.03093 3246.45159 4737.37948 3246.64022 4737.75433 3246.7689 4738.14524 3246.83413 4738.54156 3246.83413 4738.93247 3246.7689 4739.30732 3246.64022 4739.65587 3246.45159 4739.96862 3246.20816 4740.23704 3245.91658 4740.45381 3245.5848 4740.61301 3245.22186 4740.7103 3244.83767 4740.74303 3244.4427 4740.7103 3244.04773 4740.61301 3243.66354 4740.45381 3243.3006 4740.23704 3242.96882 4739.96862 3242.67724 4739.65587 3242.43381 4739.30732 3242.24518 4738.93247 3242.1165 4738.59995 3242.06101 4738.48272 3242.02211 4738.38294 3241.94931 4737.75201 3241.31837 4737.6653 3241.1886 4737.63485 3241.03553 4737.63485 3230.54464 4737.67159 3230.37718 4737.77507 3230.24048 4737.92627 3230.15966 4738.09742 3230.14957 4738.25708 3230.21206 4738.37063 3230.28793 4738.86338 3230.53092 4739.38362 3230.70753 4739.92247 3230.81471 4740.4707 3230.85064 4741.01893 3230.81471 4741.55778 3230.70753 4742.07802 3230.53092 4742.57077 3230.28793 4743.02758 3229.9827 4743.44065 3229.62045 4743.8029 3229.20738 4744.10813 3228.75057 4744.15051 3228.66463 4744.23902 3228.54664 4744.36428 3228.46875 4744.50926 3228.44155 4746.27394 3228.44155 4746.41892 3228.46875 4746.54418 3228.54664 4746.63269 3228.66463 4746.67507 3228.75057 4746.9803 3229.20738 4747.34255 3229.62045 4747.75562 3229.9827 4748.21243 3230.28793 4748.70518 3230.53092 4749.22542 3230.70753 4749.76427 3230.81471 4750.3125 3230.85064 4750.86073 3230.81471 4751.39958 3230.70753 4751.91982 3230.53092 4752.41257 3230.28793 4752.86938 3229.9827 4753.28245 3229.62045 4753.6447 3229.20738 4753.94993 3228.75057 4754.19292 3228.25782 4754.36953 3227.73758 4754.47671 3227.19873 4754.51264 3226.6505 4754.47671 3226.10227 4754.36953 3225.56342 4754.19292 3225.04318 4753.94993 3224.55043 4753.6447 3224.09362 4753.28245 3223.68055 4752.86938 3223.3183 4752.41257 3223.01307 4751.91982 3222.77008 4751.39958 3222.59347 4750.86073 3222.48629 4750.3125 3222.45036 4749.76427 3222.48629 4749.22542 3222.59347 4748.70518 3222.77008 4748.21243 3223.01307 4747.75562 3223.3183 4747.34255 3223.68055 4746.9803 3224.09362 4746.67507 3224.55043 4746.63318 3224.63537 4746.54467 3224.75336 4746.41941 3224.83125 4746.27444 3224.85845 4744.50876 3224.85845 4744.36379 3224.83125 4744.23853 3224.75336 4744.15002 3224.63537 4744.10813 3224.55043 4743.8029 3224.09362 4743.44065 3223.68055 4743.02758 3223.3183 4742.57077 3223.01307 4742.07802 3222.77008 4741.55778 3222.59347 4741.01893 3222.48629 4740.4707 3222.45036 4739.92247 3222.48629 4739.38362 3222.59347 4738.86338 3222.77008 4738.37063 3223.01307 4738.25708 3223.08894 4738.09742 3223.15143 4737.92627 3223.14134 4737.77507 3223.06052 4737.67159 3222.92382 4737.63485 3222.75636 4737.63485 3220.70214 4737.67159 3220.53468 4737.77507 3220.39798 4737.92627 3220.31716 4738.09742 3220.30707 4738.25708 3220.36956 4738.37063 3220.44543 4738.86338 3220.68842 4739.38362 3220.86503 4739.92247 3220.97221 4740.4707 3221.00814 4741.01893 3220.97221 4741.55778 3220.86503 4742.07802 3220.68842 4742.57077 3220.44543 4743.02758 3220.1402 4743.44065 3219.77795 4743.8029 3219.36488 4744.10813 3218.90807 4744.15026 3218.82263 4744.23877 3218.70464 4744.36404 3218.62675 4744.50901 3218.59955 4746.27419 3218.59955 4746.41916 3218.62675 4746.54443 3218.70464 4746.63294 3218.82263 4746.67507 3218.90807 4746.9803 3219.36488 4747.34255 3219.77795 4747.75562 3220.1402 4748.21243 3220.44543 4748.70518 3220.68842 4749.22542 3220.86503 4749.76427 3220.97221 4750.3125 3221.00814 4750.86073 3220.97221 4751.39958 3220.86503 4751.91982 3220.68842 4752.41257 3220.44543 4752.86938 3220.1402 4753.28245 3219.77795 4753.6447 3219.36488 4753.94993 3218.90807 4754.19292 3218.41532 4754.36953 3217.89508 4754.47671 3217.35623 4754.51264 3216.808 4754.47671 3216.25977 4754.36953 3215.72092 4754.19292 3215.20068 4753.94993 3214.70793 4753.6447 3214.25112 4753.28245 3213.83805 4752.86938 3213.4758 4752.41257 3213.17057 4751.91982 3212.92758 4751.39958 3212.75097 4750.86073 3212.64379 4750.3125 3212.60786 4749.76427 3212.64379 4749.22542 3212.75097 4748.70518 3212.92758 4748.21243 3213.17057 4747.75562 3213.4758 4747.34255 3213.83805 4746.9803 3214.25112 4746.67507 3214.70793 4746.63294 3214.79337 4746.54443 3214.91136 4746.41916 3214.98925 4746.27419 3215.01645 4744.50901 3215.01645 4744.36404 3214.98925 4744.23877 3214.91136 4744.15026 3214.79337 4744.10813 3214.70793 4743.8029 3214.25112 4743.44065 3213.83805 4743.02758 3213.4758 4742.57077 3213.17057 4742.07802 3212.92758 4741.55778 3212.75097 4741.01893 3212.64379 4740.4707 3212.60786 4739.92247 3212.64379 4739.38362 3212.75097 4738.86338 3212.92758 4738.37063 3213.17057 4738.25708 3213.24644 4738.09742 3213.30893 4737.92627 3213.29884 4737.77507 3213.21802 4737.67159 3213.08132 4737.63485 3212.91386 4737.63485 3210.85954 4737.67159 3210.69208 4737.77507 3210.55538 4737.92627 3210.47456 4738.09742 3210.46447 4738.25708 3210.52696 4738.37063 3210.60283 4738.86338 3210.84582 4739.38362 3211.02243 4739.92247 3211.12961 4740.4707 3211.16554 4741.01893 3211.12961 4741.55778 3211.02243 4742.07802 3210.84582 4742.57077 3210.60283 4743.02758 3210.2976 4743.44065 3209.93535 4743.8029 3209.52228 4744.10813 3209.06547 4744.15046 3208.97963 4744.23897 3208.86164 4744.36423 3208.78375 4744.50921 3208.75655 4746.27399 3208.75655 4746.41897 3208.78375 4746.54423 3208.86164 4746.63274 3208.97963 4746.67507 3209.06547 4746.9803 3209.52228 4747.34255 3209.93535 4747.75562 3210.2976 4748.21243 3210.60283 4748.70518 3210.84582 4749.22542 3211.02243 4749.76427 3211.12961 4750.3125 3211.16554 4750.86073 3211.12961 4751.39958 3211.02243 4751.91982 3210.84582 4752.41257 3210.60283 4752.86938 3210.2976 4753.28245 3209.93535 4753.6447 3209.52228 4753.94993 3209.06547 4754.19292 3208.57272 4754.36953 3208.05248 4754.47671 3207.51363 4754.51264 3206.9654 4754.47671 3206.41717 4754.36953 3205.87832 4754.19292 3205.35808 4753.94993 3204.86533 4753.6447 3204.40852 4753.28245 3203.99545 4752.86938 3203.6332 4752.41257 3203.32797 4751.91982 3203.08498 4751.39958 3202.90837 4750.86073 3202.80119 4750.3125 3202.76526 4749.76427 3202.80119 4749.22542 3202.90837 4748.70518 3203.08498 4748.21243 3203.32797 4747.75562 3203.6332 4747.34255 3203.99545 4746.9803 3204.40852 4746.67507 3204.86533 4746.63314 3204.95037 4746.54462 3205.06836 4746.41936 3205.14625 4746.27439 3205.17345 4744.50881 3205.17345 4744.36384 3205.14625 4744.23858 3205.06836 4744.15006 3204.95037 4744.10813 3204.86533 4743.8029 3204.40852 4743.44065 3203.99545 4743.02758 3203.6332 4742.57077 3203.32797 4742.07802 3203.08498 4741.55778 3202.90837 4741.01893 3202.80119 4740.4707 3202.76526 4739.92247 3202.80119 4739.38362 3202.90837 4738.86338 3203.08498 4738.37063 3203.32797 4738.25708 3203.40384 4738.09742 3203.46633 4737.92627 3203.45624 4737.77507 3203.37542 4737.67159 3203.23872 4737.63485 3203.07126 4737.63485 3202.65833 4737.6653 3202.50524 4737.75202 3202.37547 4738.88228 3201.24531 4739.00402 3201.16204 4739.14766 3201.12855 4739.29368 3201.14939 4739.38362 3201.17993 4739.92247 3201.28711 4740.4707 3201.32304 4741.01893 3201.28711 4741.55778 3201.17993 4742.07802 3201.00332 4742.57077 3200.76033 4743.02758 3200.4551 4743.44065 3200.09285 4743.8029 3199.67978 4744.10813 3199.22297 4744.15021 3199.13763 4744.23873 3199.01964 4744.36399 3198.94175 4744.50896 3198.91455 4746.27424 3198.91455 4746.41921 3198.94175 4746.54447 3199.01964 4746.63299 3199.13763 4746.67507 3199.22297 4746.9803 3199.67978 4747.34255 3200.09285 4747.75562 3200.4551 4748.21243 3200.76033 4748.70518 3201.00332 4749.22542 3201.17993 4749.76427 3201.28711 4750.3125 3201.32304 4750.86073 3201.28711 4751.39958 3201.17993 4751.91982 3201.00332 4752.41257 3200.76033 4752.86938 3200.4551 4753.28245 3200.09285 4753.6447 3199.67978 4753.94993 3199.22297 4754.19292 3198.73022 4754.36953 3198.20998 4754.47671 3197.67113 4754.51264 3197.1229 4754.47671 3196.57467 4754.36953 3196.03582 4754.19292 3195.51558 4753.94993 3195.02283 4753.6447 3194.56602 4753.49497 3194.39529 4753.41836 3194.26425 4753.39609 3194.1141 4753.43136 3193.96647 4753.5191 3193.8426 4753.64668 3193.76035 4753.79571 3193.73155 4760.14845 3193.73155 4760.30152 3193.762 4760.43129 3193.84871 4760.518 3193.97848 4760.54845 3194.13155 4760.54845 3288.03223 4760.518 3288.1853 4760.43129 3288.31507 4750.21507 3298.53129 4750.0853 3298.618 4749.93223 3298.64845 4749.62087 3298.64845 4749.4678 3298.618 4749.33803 3298.53129 4749.25132 3298.40152 4749.22087 3298.24845 4749.25132 3298.09538 4749.33803 3297.96561 4750.1543 3297.14693 4750.36175 3296.87223 4750.50897 3296.57656 4750.59936 3296.25888 4750.63155 3295.91151 4750.63155 3294.68726 4750.65886 3294.54201 4750.95381 3294.0848 4751.11301 3293.72186 4751.2103 3293.33767 4751.24303 3292.9427 4751.2103 3292.54773 4751.11301 3292.16354 4750.95381 3291.8006 4750.73704 3291.46882 4750.46862 3291.17724 4750.15587 3290.93381 4749.80732 3290.74518 4749.43247 3290.6165 4749.04156 3290.55127 4748.64524 3290.55127 4748.25433 3290.6165 4747.87948 3290.74518 4747.53093 3290.93381 4747.21818 3291.17724 4746.94976 3291.46882 4746.81769 3291.61413 4746.67225 3291.67508 4746.51455 3291.67508 4746.36911 3291.61413 4745.96862 3291.17724 4745.65587 3290.93381 4745.30732 3290.74518 4744.93247 3290.6165 4744.54156 3290.55127 4744.14524 3290.55127 4743.75433 3290.6165 4743.37948 3290.74518 4743.03093 3290.93381 4742.71818 3291.17724 4742.44976 3291.46882 4742.23299 3291.8006 4742.07379 3292.16354 4741.9765 3292.54773 4741.94377 3292.9427 4741.9765 3293.33767 4742.05632 3293.65286 4742.06588 3293.79724 4742.02344 3293.93559 4741.93457 3294.04978 4741.81087 3294.12488 4741.66856 3294.15105 4568.58028 3294.15105 4568.42803 3294.12094 4568.2987 3294.03514 4567.67918 3293.42109 4567.59178 3293.29144 4567.56076 3293.13818 4567.59087 3292.98475 4567.6775 3292.85458 4567.80741 3292.76756 4567.96076 3292.737 4569.30034 3292.737 4569.81783 3292.7016 4570.31227 3292.59886 4570.78811 3292.42974 4571.23649 3292.19741 4571.64907 3291.90618 4572.01814 3291.56149 4572.33684 3291.16975 4572.59923 3290.73827 4572.80043 3290.27508 4572.93668 3289.7888 4573.00544 3289.2885 4573.00544 3288.7835 4572.93668 3288.2832 4572.80043 3287.79692 4572.59923 3287.33373 4572.33684 3286.90225 4572.01814 3286.51051 4571.64907 3286.16582 4571.23649 3285.87459 4570.78811 3285.64226 4570.31227 3285.47314 4569.81783 3285.3704 4569.30034 3285.335 4567.32766 3285.335 4566.81017 3285.3704 4566.31573 3285.47314 4565.83989 3285.64226 4565.39151 3285.87459 4565.26511 3285.96381 4565.1051 3286.03073 4564.93179 3286.02362 4564.77779 3285.94383 4564.67205 3285.80634 4564.63444 3285.63701 4564.6345 3282.43501 4564.6721 3282.26569 4564.77785 3282.12821 4564.93185 3282.04841 4565.10515 3282.04131 4565.26517 3282.10823 4565.39151 3282.19741 4565.83989 3282.42974 4566.31573 3282.59886 4566.81017 3282.7016 4567.32766 3282.737 4569.30034 3282.737 4569.81783 3282.7016 4570.31227 3282.59886 4570.78811 3282.42974 4571.23649 3282.19741 4571.64907 3281.90618 4572.01814 3281.56149 4572.33684 3281.16975 4572.59923 3280.73827 4572.80043 3280.27508 4572.93668 3279.7888 4573.00544 3279.2885 4573.00544 3278.7835 4572.93668 3278.2832 4572.80043 3277.79692 4572.59923 3277.33373 4572.33684 3276.90225 4572.01814 3276.51051 4571.64907 3276.16582 4571.23649 3275.87459 4570.78811 3275.64226 4570.31227 3275.47314 4569.81783 3275.3704 4569.30034 3275.335 4567.32766 3275.335 4566.81017 3275.3704 4566.31573 3275.47314 4565.83989 3275.64226 4565.39151 3275.87459 4565.26528 3275.96369 4565.10526 3276.03061 4564.93196 3276.02351 4564.77796 3275.94371 4564.67221 3275.80622 4564.63461 3275.6369 4564.63466 3272.43513 4564.67227 3272.26581 4564.77802 3272.12833 4564.93202 3272.04853 4565.10532 3272.04143 4565.26534 3272.10835 4565.39151 3272.19741 4565.83989 3272.42974 4566.31573 3272.59886 4566.81017 3272.7016 4567.32766 3272.737 4569.30034 3272.737 4569.81783 3272.7016 4570.31227 3272.59886 4570.78811 3272.42974 4571.23649 3272.19741 4571.64907 3271.90618 4572.01814 3271.56149 4572.33684 3271.16975 4572.59923 3270.73827 4572.80043 3270.27508 4572.93668 3269.7888 4573.00544 3269.2885 4573.00544 3268.7835 4572.93668 3268.2832 4572.80043 3267.79692 4572.59923 3267.33373 4572.33684 3266.90225 4572.01814 3266.51051 4571.64907 3266.16582 4571.23649 3265.87459 4570.78811 3265.64226 4570.31227 3265.47314 4569.81783 3265.3704 4569.30034 3265.335 4567.32766 3265.335 4566.81017 3265.3704 4566.31573 3265.47314 4565.83989 3265.64226 4565.39151 3265.87459 4565.26545 3265.96357 4565.10543 3266.03049 4564.93213 3266.02339 4564.77813 3265.94359 4564.67238 3265.8061 4564.63478 3265.63678 4564.63483 3262.43525 4564.67244 3262.26593 4564.77819 3262.12844 4564.93219 3262.04865 4565.10549 3262.04154 4565.26551 3262.10847 4565.39151 3262.19741 4565.83989 3262.42974 4566.31573 3262.59886 4566.81017 3262.7016 4567.32766 3262.737 4569.30034 3262.737 4569.81783 3262.7016 4570.31227 3262.59886 4570.78811 3262.42974 4571.23649 3262.19741 4571.64907 3261.90618 4572.01814 3261.56149 4572.33684 3261.16975 4572.42808 3261.01972 4572.51741 3260.91727 4572.6359 3260.85065 4572.76985 3260.82755 4578.80727 3260.82755 4578.93715 3260.84922 4579.05295 3260.91189 4579.22383 3261.04489 4579.57238 3261.23352 4579.94723 3261.3622 4580.33814 3261.42743 4580.73446 3261.42743 4581.12537 3261.3622 4581.50022 3261.23352 4581.84877 3261.04489 4582.16152 3260.80146 4582.42994 3260.50988 4582.64671 3260.1781 4582.80591 3259.81516 4582.9032 3259.43097 4582.93593 3259.036 4582.9032 3258.64103 4582.80591 3258.25684 4582.64671 3257.8939 4582.42994 3257.56212 4582.16152 3257.27054 4581.84877 3257.02711 4581.50022 3256.83848 4581.12537 3256.7098 4580.73446 3256.64457 4580.33814 3256.64457 4579.94723 3256.7098 4579.57238 3256.83848 4579.22383 3257.02711 4579.05295 3257.16011 4578.93715 3257.22278 4578.80727 3257.24445 4572.76985 3257.24445 4572.6359 3257.22135 4572.51741 3257.15473 4572.42808 3257.05228 4572.33684 3256.90225 4572.01814 3256.51051 4571.64907 3256.16582 4571.23649 3255.87459 4570.78811 3255.64226 4570.31227 3255.47314 4569.81783 3255.3704 4569.30034 3255.335 4567.32766 3255.335 4566.81017 3255.3704 4566.31573 3255.47314 4565.83989 3255.64226 4565.39151 3255.87459 4564.97893 3256.16582 4564.60986 3256.51051 4564.29116 3256.90225 4564.02877 3257.33373 4563.82757 3257.79692 4563.69132 3258.2832 4563.62289 3258.78107 4563.56109 3258.94598 4563.43445 3259.06837 4563.26753 3259.1245 4563.09267 3259.1035 4562.94378 3259.00944 4551.87561 3247.94128 4551.78482 3247.80127 4551.75906 3247.6364 4551.8028 3247.47537 4551.90844 3247.34619 4552.05759 3247.27136 4552.22429 3247.26389 4552.64524 3247.33413 4553.04156 3247.33413 4553.43247 3247.2689 4553.80732 3247.14022 4554.15587 3246.95159 4554.46862 3246.70816 4554.73704 3246.41658 4554.95381 3246.0848 4555.11301 3245.72186 4555.16234 3245.52705 4555.23445 3245.37956 4555.35972 3245.27346 4555.51707 3245.22661 4555.67998 3245.24692 4555.91093 3245.3262 4556.30184 3245.39143 4556.69816 3245.39143 4557.08907 3245.3262 4557.62221 3245.14297 4557.76988 3245.15214 4557.90411 3245.21436 4558.00655 3245.32112 4558.10636 3245.47388 4558.37478 3245.76546 4558.68753 3246.00889 4559.03608 3246.19752 4559.41093 3246.3262 4559.80184 3246.39143 4560.19816 3246.39143 4560.58907 3246.3262 4560.96392 3246.19752 4561.31247 3246.00889 4561.62522 3245.76546 4561.89364 3245.47388 4562.11041 3245.1421 4562.26961 3244.77916 4562.3669 3244.39497 4562.39963 3244 4562.3669 3243.60503 4562.26961 3243.22084 4562.11041 3242.8579 4561.81791 3242.40194 4561.79155 3242.25913 4561.79155 3241.22745 4561.822 3241.07438 4561.90871 3240.94461 4562.03848 3240.8579 4562.19155 3240.82745 4563.85809 3240.82745 4563.99204 3240.85055 4564.11052 3240.91717 4564.19986 3241.01962 4564.29116 3241.16975 4564.60986 3241.56149 4564.97893 3241.90618 4565.39151 3242.19741 4565.83989 3242.42974 4566.31573 3242.59886 4566.81017 3242.7016 4567.32766 3242.737 4569.30034 3242.737 4569.81783 3242.7016 4570.31227 3242.59886 4570.78811 3242.42974 4571.23649 3242.19741 4571.64907 3241.90618 4572.01814 3241.56149 4572.33684 3241.16975 4572.59923 3240.73827 4572.80043 3240.27508 4572.93668 3239.7888 4573.00544 3239.2885 4573.00544 3238.7835 4572.93668 3238.2832 4572.80043 3237.79692 4572.59923 3237.33373 4572.33684 3236.90225 4572.01814 3236.51051 4571.64907 3236.16582 4571.23649 3235.87459 4570.78811 3235.64226 4570.31227 3235.47314 4569.81783 3235.3704 4569.30034 3235.335 4567.32766 3235.335 4566.81017 3235.3704 4566.31573 3235.47314 4565.83989 3235.64226 4565.39151 3235.87459 4564.97893 3236.16582 4564.60986 3236.51051 4564.29116 3236.90225 4564.19998 3237.05218 4564.11065 3237.15463 4563.99216 3237.22125 4563.85821 3237.24435 4559.98239 3237.24435 4559.63502 3237.27654 4559.31734 3237.36693 4559.02167 3237.51415 4558.9326 3237.58141 4558.7723 3237.65397 4558.59638 3237.65072 4558.43887 3237.57229 4558.33025 3237.43385 4558.29155 3237.26221 4558.29155 3233.97977 4558.322 3233.8267 4558.40871 3233.69693 4561.16103 3230.94461 4561.2908 3230.8579 4561.44387 3230.82745 4563.85809 3230.82745 4563.99204 3230.85055 4564.11052 3230.91717 4564.19986 3231.01962 4564.29116 3231.16975 4564.60986 3231.56149 4564.97893 3231.90618 4565.39151 3232.19741 4565.83989 3232.42974 4566.31573 3232.59886 4566.81017 3232.7016 4567.32766 3232.737 4569.30034 3232.737 4569.81783 3232.7016 4570.31227 3232.59886 4570.78811 3232.42974 4571.23649 3232.19741 4571.64907 3231.90618 4572.01814 3231.56149 4572.33684 3231.16975 4572.59923 3230.73827 4572.80043 3230.27508 4572.93668 3229.7888 4573.00544 3229.2885 4573.00544 3228.7835 4572.93668 3228.2832 4572.80043 3227.79692 4572.59923 3227.33373 4572.33684 3226.90225 4572.01814 3226.51051 4571.64907 3226.16582 4571.23649 3225.87459 4570.78811 3225.64226 4570.31227 3225.47314 4569.81783 3225.3704 4569.30034 3225.335 4567.32766 3225.335 4566.81017 3225.3704 4566.31573 3225.47314 4565.83989 3225.64226 4565.39151 3225.87459 4564.97893 3226.16582 4564.60986 3226.51051 4564.29116 3226.90225 4564.19998 3227.05218 4564.11065 3227.15463 4563.99216 3227.22125 4563.85821 3227.24435 4560.54072 3227.24435 4560.46725 3227.24605 4560.12632 3227.29361 4559.81315 3227.39857 4559.5246 3227.55929 4559.25621 3227.78216 4555.88845 3231.14991 4555.75358 3231.23869 4555.59459 3231.26692 4555.4374 3231.22998 4555.30762 3231.1339 4555.2264 3230.99434 4555.20698 3230.83404 4555.23963 3230.44 4555.2069 3230.04503 4555.10961 3229.66084 4554.95041 3229.2979 4554.73364 3228.96612 4554.46522 3228.67454 4554.15247 3228.43111 4553.80392 3228.24248 4553.42907 3228.1138 4553.03816 3228.04857 4552.64184 3228.04857 4552.25093 3228.1138 4551.87608 3228.24248 4551.52753 3228.43111 4551.21478 3228.67454 4551.13475 3228.76147 4551.00114 3228.85687 4550.84046 3228.89056 4550.67978 3228.85687 4550.54617 3228.76147 4550.46862 3228.67724 4550.15587 3228.43381 4549.80732 3228.24518 4549.43247 3228.1165 4549.04156 3228.05127 4548.64524 3228.05127 4548.25433 3228.1165 4547.87948 3228.24518 4547.53093 3228.43381 4547.21818 3228.67724 4546.94976 3228.96882 4546.73299 3229.3006 4546.57379 3229.66354 4546.4765 3230.04773 4546.44377 3230.4427 4546.4765 3230.83767 4546.57379 3231.22186 4546.73299 3231.5848 4547.02506 3232.04057 4547.05125 3232.18292 4547.05125 3241.20248 4547.02506 3241.34483 4546.73299 3241.8006 4546.66098 3241.96477 4546.58066 3242.08376 4546.4635 3242.16672 4546.3246 3242.20297 4546.18184 3242.18785 4546.05361 3242.1233 4545.78553 3241.92085 4545.48986 3241.77363 4545.17218 3241.68324 4544.82481 3241.65105 4473.62847 3241.65105 4473.4754 3241.6206 4473.34563 3241.53389 4472.77683 3240.96509 4472.68925 3240.83322 4472.6597 3240.6777 4472.69279 3240.52289 4472.80043 3240.27508 4472.93668 3239.7888 4473.00544 3239.2885 4473.00544 3238.7835 4472.93668 3238.2832 4472.80043 3237.79692 4472.59923 3237.33373 4472.33684 3236.90225 4472.01814 3236.51051 4471.64907 3236.16582 4471.23649 3235.87459 4470.78811 3235.64226 4470.31227 3235.47314 4469.81783 3235.3704 4469.30034 3235.335 4467.32766 3235.335 4466.81017 3235.3704 4466.31573 3235.47314 4465.83989 3235.64226 4465.39151 3235.87459 4464.97893 3236.16582 4464.60986 3236.51051 4464.29116 3236.90225 4464.02877 3237.33373 4463.82757 3237.79692 4463.69132 3238.2832 4463.62256 3238.7835 4463.62256 3239.2885 4463.69132 3239.7888 4463.82757 3240.27508 4463.93524 3240.52296 4463.96833 3240.67777 4463.93878 3240.83329 4463.8512 3240.96516 4447.78507 3257.03129 4447.6553 3257.118 4447.50223 3257.14845 4444.27176 3257.14845 4444.13233 3257.12336 4444.01039 3257.05125 4443.92123 3256.94115 4443.68227 3256.50648 4443.34666 3256.04455 4442.9558 3255.62833 4442.51586 3255.26438 4442.03377 3254.95843 4441.51714 3254.71532 4440.97411 3254.53888 4440.41325 3254.43189 4439.8434 3254.39604 4439.27355 3254.43189 4438.71269 3254.53888 4438.16966 3254.71532 4437.65303 3254.95843 4437.17094 3255.26438 4436.731 3255.62833 4436.34014 3256.04455 4436.00453 3256.50648 4435.72946 3257.00683 4435.51927 3257.53771 4435.37727 3258.09074 4435.30571 3258.65721 4435.30571 3259.22819 4435.37727 3259.79466 4435.51927 3260.34769 4435.72946 3260.87857 4436.00453 3261.37892 4436.34014 3261.84085 4436.731 3262.25707 4437.17094 3262.62102 4437.65303 3262.92697 4438.16966 3263.17008 4438.71269 3263.34652 4439.27355 3263.45351 4439.8434 3263.48936 4440.41325 3263.45351 4440.97411 3263.34652 4441.51714 3263.17008 4442.03377 3262.92697 4442.51586 3262.62102 4442.9558 3262.25707 4443.34666 3261.84085 4443.68227 3261.37892 4443.9242 3260.93885 4444.01336 3260.82875 4444.1353 3260.75664 4444.27473 3260.73155 4448.40538 3260.73155 4448.47885 3260.72985 4448.81978 3260.68229 4449.13295 3260.57733 4449.4215 3260.41661 4449.68989 3260.19374 4467.02958 3242.85405 4467.15935 3242.76734 4467.31243 3242.73689 4469.31567 3242.73689 4469.46874 3242.76733 4469.59851 3242.85404 4471.45062 3244.70615 4471.50377 3244.7569 4471.77847 3244.96435 4472.07414 3245.11157 4472.39182 3245.20196 4472.73919 3245.23415 4478.54653 3245.23415 4478.6996 3245.2646 4478.82937 3245.35131 4478.91608 3245.48108 4478.94653 3245.63415 4478.91608 3245.78722 4478.82937 3245.91699 4477.70604 3247.04032 4477.57811 3247.12627 4477.42719 3247.15746 4472.74931 3247.2041 4472.61388 3247.18191 4472.49392 3247.11524 4472.40356 3247.01195 4472.33684 3246.90225 4472.01814 3246.51051 4471.64907 3246.16582 4471.23649 3245.87459 4470.78811 3245.64226 4470.31227 3245.47314 4469.81783 3245.3704 4469.30034 3245.335 4467.32766 3245.335 4466.81017 3245.3704 4466.31573 3245.47314 4465.83989 3245.64226 4465.39151 3245.87459 4464.97893 3246.16582 4464.60986 3246.51051 4464.29116 3246.90225 4464.02877 3247.33373 4463.82757 3247.79692 4463.69132 3248.2832 4463.62256 3248.7835 4463.62256 3249.2885 4463.69132 3249.7888 4463.82757 3250.27508 4464.02877 3250.73827 4464.29116 3251.16975 4464.60986 3251.56149 4464.97893 3251.90618 4465.39151 3252.19741 4465.83989 3252.42974 4466.31573 3252.59886 4466.81017 3252.7016 4467.32766 3252.737 4469.30034 3252.737 4469.81783 3252.7016 4470.31227 3252.59886 4470.78811 3252.42974 4471.23649 3252.19741 4471.64907 3251.90618 4472.01814 3251.56149 4472.33684 3251.16975 4472.45277 3250.97911 4472.54108 3250.8775 4472.65809 3250.81094 4472.79055 3250.78697 4476.72901 3250.7477 4476.883 3250.77687 4477.01396 3250.86296 4477.10178 3250.99277 4477.133 3251.14635 4477.10281 3251.30014 4477.01584 3251.43052 4474.41507 3254.03129 4474.2853 3254.118 4474.13223 3254.14845 4471.41462 3254.14845 4471.34115 3254.15015 4471.00022 3254.19771 4470.68705 3254.30267 4470.3985 3254.46339 4470.13011 3254.68626 4469.59842 3255.21795 4469.46864 3255.30466 4469.31555 3255.33511 4467.32765 3255.335 4466.81017 3255.3704 4466.31573 3255.47314 4465.83989 3255.64226 4465.39151 3255.87459 4464.97893 3256.16582 4464.60986 3256.51051 4464.29116 3256.90225 4464.02877 3257.33373 4463.82757 3257.79692 4463.69132 3258.2832 4463.62256 3258.7835 4463.62256 3259.2885 4463.69132 3259.7888 4463.82757 3260.27508 4464.02877 3260.73827 4464.29116 3261.16975 4464.60986 3261.56149 4464.97893 3261.90618 4465.39151 3262.19741 4465.83989 3262.42974 4466.31573 3262.59886 4466.81017 3262.7016 4467.32766 3262.737 4469.30034 3262.737 4469.81783 3262.7016 4470.31227 3262.59886 4470.78811 3262.42974 4471.23649 3262.19741 4471.64907 3261.90618 4472.01814 3261.56149 4472.33817 3261.16813 4472.46442 3261.06541 4472.62115 3261.0215 4472.7824 3261.04366 4472.92147 3261.12823 4473.01533 3261.2612 4473.04845 3261.42056 4473.04845 3261.60223 4473.018 3261.7553 4472.93129 3261.88507 4469.59842 3265.21795 4469.46864 3265.30466 4469.31555 3265.33511 4467.32765 3265.335 4466.81017 3265.3704 4466.31573 3265.47314 4465.83989 3265.64226 4465.39151 3265.87459 4464.97893 3266.16582 4464.60986 3266.51051 4464.29116 3266.90225 4464.02877 3267.33373 4463.82757 3267.79692 4463.69132 3268.2832 4463.62256 3268.7835 4463.62256 3269.2885 4463.69132 3269.7888 4463.82757 3270.27508 4464.02877 3270.73827 4464.29116 3271.16975 4464.60986 3271.56149 4464.97893 3271.90618 4465.39151 3272.19741 4465.83989 3272.42974 4466.31573 3272.59886 4466.81017 3272.7016 4467.32766 3272.737 4469.30034 3272.737 4469.81783 3272.7016 4470.31227 3272.59886 4470.78811 3272.42974 4471.23649 3272.19741 4471.64907 3271.90618 4472.01814 3271.56149 4472.33684 3271.16975 4472.59923 3270.73827 4472.80043 3270.27508 4472.93668 3269.7888 4473.00544 3269.2885 4473.00544 3268.7835 4472.93668 3268.2832 4472.80043 3267.79692 4472.69276 3267.54904 4472.65967 3267.39423 4472.68922 3267.23871 4472.7768 3267.10684 4474.31716 3265.56648 4474.44693 3265.47977 4474.6 3265.44932 4474.75307 3265.47977 4474.88284 3265.56648 4474.96955 3265.69625 4475 3265.84932 4475 3294.85518 4474.97611 3294.99135 4474.90729 3295.11125 4467.31161 3304.22607 4467.17398 3304.33224 4467.00432 3304.37 4415.12 3304.37 4414.96693 3304.33955 4414.83716 3304.25284 4414.75045 3304.12307 4414.72 3303.97 4414.72 3031.22 4414.75045 3031.06693 4414.83716 3030.93716 4414.96693 3030.85045 4415.12 3030.82 4766.61 3030.82 4766.76307 3030.85045 4766.89284 3030.93716 4766.97955 3031.06693 4767.01 3031.22 4767.01 3303.97 4766.97955 3304.12307 4766.89284 3304.25284 4766.76307 3304.33955 4766.61 3304.37 4753.40932 3304.37 Z M 4740.4707 3171.79554 L 4741.01893 3171.75961 4741.55778 3171.65243 4742.07802 3171.47582 4742.57077 3171.23283 4743.02758 3170.9276 4743.44065 3170.56535 4743.8029 3170.15228 4744.10813 3169.69547 4744.15046 3169.60963 4744.23897 3169.49164 4744.36423 3169.41375 4744.50921 3169.38655 4746.27399 3169.38655 4746.41897 3169.41375 4746.54423 3169.49164 4746.63274 3169.60963 4746.67507 3169.69547 4746.9803 3170.15228 4747.34255 3170.56535 4747.75562 3170.9276 4748.21243 3171.23283 4748.70518 3171.47582 4749.22542 3171.65243 4749.76427 3171.75961 4750.3125 3171.79554 4750.86073 3171.75961 4751.39958 3171.65243 4751.91982 3171.47582 4752.41257 3171.23283 4752.86938 3170.9276 4753.28245 3170.56535 4753.6447 3170.15228 4753.94993 3169.69547 4754.19292 3169.20272 4754.36953 3168.68248 4754.47671 3168.14363 4754.51264 3167.5954 4754.47671 3167.04717 4754.36953 3166.50832 4754.19292 3165.98808 4753.94993 3165.49533 4753.6447 3165.03852 4753.28245 3164.62545 4752.86938 3164.2632 4752.41257 3163.95797 4751.91982 3163.71498 4751.39958 3163.53837 4750.86073 3163.43119 4750.3125 3163.39526 4749.76427 3163.43119 4749.22542 3163.53837 4748.70518 3163.71498 4748.21243 3163.95797 4747.75562 3164.2632 4747.34255 3164.62545 4746.9803 3165.03852 4746.67507 3165.49533 4746.63314 3165.58037 4746.54462 3165.69836 4746.41936 3165.77625 4746.27439 3165.80345 4744.50881 3165.80345 4744.36384 3165.77625 4744.23858 3165.69836 4744.15006 3165.58037 4744.10813 3165.49533 4743.8029 3165.03852 4743.44065 3164.62545 4743.02758 3164.2632 4742.57077 3163.95797 4742.07802 3163.71498 4741.55778 3163.53837 4741.01893 3163.43119 4740.4707 3163.39526 4739.92247 3163.43119 4739.38362 3163.53837 4739.29277 3163.56921 4739.14688 3163.59007 4739.00334 3163.55667 4738.88163 3163.47356 4737.24898 3161.8441 4737.16207 3161.71423 4737.13155 3161.56098 4737.13155 3161.28179 4737.16035 3161.13275 4737.2426 3161.00518 4737.36647 3160.91744 4737.5141 3160.88217 4737.66425 3160.90444 4737.79529 3160.98105 4737.91382 3161.085 4738.37063 3161.39023 4738.86338 3161.63322 4739.38362 3161.80983 4739.92247 3161.91701 4740.4707 3161.95294 4741.01893 3161.91701 4741.55778 3161.80983 4742.07802 3161.63322 4742.57077 3161.39023 4743.02758 3161.085 4743.44065 3160.72275 4743.8029 3160.30968 4744.10813 3159.85287 4744.35112 3159.36012 4744.52773 3158.83988 4744.63491 3158.30103 4744.67084 3157.7528 4744.63491 3157.20457 4744.52773 3156.66572 4744.35112 3156.14548 4744.10813 3155.65273 4743.8029 3155.19592 4743.44065 3154.78285 4743.02758 3154.4206 4742.57077 3154.11537 4742.07802 3153.87238 4741.55778 3153.69577 4741.01893 3153.58859 4740.4707 3153.55266 4739.92247 3153.58859 4739.38362 3153.69577 4738.86338 3153.87238 4738.37063 3154.11537 4737.91382 3154.4206 4737.79529 3154.52455 4737.66442 3154.6011 4737.51445 3154.62345 4737.36695 3154.58838 4737.24309 3154.50093 4737.16068 3154.37366 4737.13155 3154.22487 4737.12928 3153.36708 4737.08229 3153.03022 4736.97733 3152.71705 4736.81661 3152.4285 4736.59374 3152.16011 4735.61008 3151.17645 4735.55693 3151.1257 4735.28223 3150.91825 4734.98656 3150.77103 4734.66888 3150.68064 4734.53644 3150.66837 4734.37951 3150.61997 4734.25525 3150.5126 4734.18461 3150.36435 4734.17949 3150.20021 4734.26593 3150.01017 4734.50892 3149.51742 4734.68553 3148.99718 4734.79271 3148.45833 4734.82864 3147.9101 4734.79271 3147.36187 4734.68553 3146.82302 4734.50892 3146.30278 4734.26593 3145.81003 4733.9607 3145.35322 4733.59845 3144.94015 4733.18538 3144.5779 4732.72857 3144.27267 4732.23582 3144.02968 4731.71558 3143.85307 4731.17673 3143.74589 4730.6285 3143.70996 4730.08027 3143.74589 4729.54142 3143.85307 4729.02118 3144.02968 4728.52843 3144.27267 4728.07162 3144.5779 4727.65855 3144.94015 4727.2963 3145.35322 4726.99107 3145.81003 4726.74808 3146.30278 4726.57147 3146.82302 4726.46429 3147.36187 4726.42836 3147.9101 4726.46429 3148.45833 4726.57147 3148.99718 4726.74808 3149.51742 4727.0018 3150.02622 4727.06428 3150.18588 4727.05419 3150.35703 4726.97337 3150.50823 4726.83667 3150.61171 4726.66921 3150.64845 4724.74529 3150.64845 4724.57783 3150.61171 4724.44113 3150.50823 4724.36031 3150.35703 4724.35022 3150.18588 4724.42343 3150.01017 4724.66642 3149.51742 4724.84303 3148.99718 4724.95021 3148.45833 4724.98614 3147.9101 4724.95021 3147.36187 4724.84303 3146.82302 4724.66642 3146.30278 4724.42343 3145.81003 4724.1182 3145.35322 4723.75595 3144.94015 4723.34288 3144.5779 4722.88607 3144.27267 4722.39332 3144.02968 4721.87308 3143.85307 4721.33423 3143.74589 4720.786 3143.70996 4720.23777 3143.74589 4719.69892 3143.85307 4719.17868 3144.02968 4718.68593 3144.27267 4718.22912 3144.5779 4717.81605 3144.94015 4717.4538 3145.35322 4717.14857 3145.81003 4716.90558 3146.30278 4716.72897 3146.82302 4716.62179 3147.36187 4716.58586 3147.9101 4716.62179 3148.45833 4716.72897 3148.99718 4716.90558 3149.51742 4717.1593 3150.02622 4717.22178 3150.18588 4717.21169 3150.35703 4717.13087 3150.50823 4716.99417 3150.61171 4716.82671 3150.64845 4594.24777 3150.64845 4594.0947 3150.618 4593.96493 3150.53129 4593.74871 3150.31507 4593.662 3150.1853 4593.63155 3150.03223 4593.63155 3138.44462 4593.62985 3138.37115 4593.58229 3138.03022 4593.47733 3137.71705 4593.31661 3137.4285 4593.09374 3137.16011 4587.24378 3131.31015 4587.15788 3131.18231 4587.12665 3131.0315 4587.16753 3130.84769 4587.30953 3130.29466 4587.38109 3129.72819 4587.38109 3129.15721 4587.30953 3128.59074 4587.16753 3128.03771 4586.95734 3127.50683 4586.68227 3127.00648 4586.34666 3126.54455 4585.9558 3126.12833 4585.51586 3125.76438 4585.03377 3125.45843 4584.51714 3125.21532 4583.97411 3125.03888 4583.41325 3124.93189 4582.8434 3124.89604 4582.27355 3124.93189 4581.71269 3125.03888 4581.16966 3125.21532 4580.65303 3125.45843 4580.17094 3125.76438 4579.731 3126.12833 4579.34014 3126.54455 4579.00453 3127.00648 4578.72946 3127.50683 4578.51927 3128.03771 4578.37727 3128.59074 4578.30571 3129.15721 4578.30571 3129.72819 4578.37727 3130.29466 4578.51927 3130.84769 4578.72946 3131.37857 4579.00453 3131.87892 4579.34014 3132.34085 4579.731 3132.75707 4580.17094 3133.12102 4580.65303 3133.42697 4581.16966 3133.67008 4581.71269 3133.84652 4582.27355 3133.95351 4582.8434 3133.98936 4583.41325 3133.95351 4583.97411 3133.84652 4584.29858 3133.74109 4584.44313 3133.72206 4584.58489 3133.75609 4584.70503 3133.83867 4586.00519 3135.13882 4586.09557 3135.27776 4586.12186 3135.44141 4586.07956 3135.60166 4585.97593 3135.73101 4585.82876 3135.80725 4585.66332 3135.81729 4585.50802 3135.7594 4585.03377 3135.45843 4584.51714 3135.21532 4583.97411 3135.03888 4583.41325 3134.93189 4582.8434 3134.89604 4582.27355 3134.93189 4581.71269 3135.03888 4581.16966 3135.21532 4580.65303 3135.45843 4580.17094 3135.76438 4579.731 3136.12833 4579.34014 3136.54455 4579.00453 3137.00648 4578.72946 3137.50683 4578.51927 3138.03771 4578.47895 3138.19474 4578.43897 3138.29345 4578.37436 3138.37811 4574.21847 3142.53399 4574.0887 3142.6207 4573.93563 3142.65115 4571.85398 3142.65115 4571.69046 3142.6162 4571.55551 3142.51745 4571.47273 3142.37216 4571.45657 3142.20572 4571.50987 3142.04722 4571.64907 3141.90618 4572.01814 3141.56149 4572.33684 3141.16975 4572.59923 3140.73827 4572.80043 3140.27508 4572.93668 3139.7888 4573.00544 3139.2885 4573.00544 3138.7835 4572.93668 3138.2832 4572.80043 3137.79692 4572.59923 3137.33373 4572.33684 3136.90225 4572.01814 3136.51051 4571.64907 3136.16582 4571.23649 3135.87459 4570.78811 3135.64226 4570.31227 3135.47314 4569.81783 3135.3704 4569.30034 3135.335 4567.32766 3135.335 4566.81017 3135.3704 4566.31573 3135.47314 4565.83989 3135.64226 4565.39151 3135.87459 4564.97893 3136.16582 4564.60986 3136.51051 4564.29116 3136.90225 4564.02877 3137.33373 4563.82757 3137.79692 4563.69132 3138.2832 4563.62256 3138.7835 4563.62256 3139.2885 4563.68364 3139.73288 4563.67191 3139.89745 4563.59476 3140.04329 4563.4653 3140.14559 4563.30557 3140.18693 4563.14274 3140.16028 4563.00452 3140.07019 4561.8346 3138.90027 4561.75454 3138.78564 4561.71881 3138.65046 4561.7103 3138.54773 4561.61301 3138.16354 4561.45381 3137.8006 4561.23704 3137.46882 4560.96862 3137.17724 4560.65587 3136.93381 4560.30732 3136.74518 4559.93247 3136.6165 4559.54156 3136.55127 4559.14524 3136.55127 4558.75433 3136.6165 4558.37948 3136.74518 4558.03093 3136.93381 4557.71818 3137.17724 4557.44976 3137.46882 4557.23299 3137.8006 4557.07379 3138.16354 4556.9765 3138.54773 4556.94377 3138.9427 4556.9765 3139.33767 4557.07379 3139.72186 4557.23299 3140.0848 4557.44976 3140.41658 4557.71818 3140.70816 4558.03093 3140.95159 4558.37948 3141.14022 4558.75433 3141.2689 4559.08601 3141.32425 4559.20324 3141.36315 4559.30302 3141.43595 4563.57332 3145.70625 4563.62647 3145.757 4563.90117 3145.96445 4564.35142 3146.18773 4564.4527 3146.30782 4564.49992 3146.45765 4564.4858 3146.61411 4564.41252 3146.75307 4564.29116 3146.90225 4564.02877 3147.33373 4563.82757 3147.79692 4563.69132 3148.2832 4563.62256 3148.7835 4563.62256 3149.2885 4563.69132 3149.7888 4563.82757 3150.27508 4564.02877 3150.73827 4564.29116 3151.16975 4564.60986 3151.56149 4564.97893 3151.90618 4565.39151 3152.19741 4565.83989 3152.42974 4566.31573 3152.59886 4566.81017 3152.7016 4567.32766 3152.737 4569.30034 3152.737 4569.81783 3152.7016 4570.31227 3152.59886 4570.78811 3152.42974 4571.23649 3152.19741 4571.64907 3151.90618 4572.01814 3151.56149 4572.33684 3151.16975 4572.59923 3150.73827 4572.80043 3150.27508 4572.93668 3149.7888 4573.00544 3149.2885 4573.00544 3148.7835 4572.93668 3148.2832 4572.80043 3147.79692 4572.59923 3147.33373 4572.32418 3146.88669 4572.25321 3146.75526 4572.2354 3146.60695 4572.27324 3146.46246 4572.36145 3146.34192 4572.48773 3146.26214 4572.63447 3146.23425 4574.83878 3146.23425 4574.91225 3146.23255 4575.25318 3146.18499 4575.56635 3146.08003 4575.8549 3145.91931 4576.12329 3145.69644 4579.11546 3142.70427 4579.24814 3142.61637 4579.40459 3142.58717 4579.56004 3142.62127 4579.731 3142.75707 4580.17094 3143.12102 4580.65303 3143.42697 4581.16966 3143.67008 4581.71269 3143.84652 4582.27355 3143.95351 4582.8434 3143.98936 4583.41325 3143.95351 4583.97411 3143.84652 4584.29911 3143.74092 4584.44365 3143.72189 4584.58541 3143.75592 4584.70556 3143.8385 4585.07947 3144.21241 4585.16618 3144.34218 4585.19663 3144.49525 4585.16618 3144.64832 4585.07947 3144.77809 4584.9497 3144.8648 4584.79663 3144.89525 4579.5166 3144.89525 4579.26302 3144.92023 4579.03809 3144.98846 4578.83079 3145.09926 4578.64908 3145.24838 4578.49996 3145.43009 4578.38916 3145.63739 4578.32093 3145.86232 4578.29595 3146.1159 4578.29595 3152.7695 4578.32093 3153.02308 4578.38916 3153.24801 4578.49996 3153.45531 4578.64908 3153.63702 4578.83079 3153.78614 4579.03809 3153.89694 4579.26302 3153.96517 4579.5166 3153.99015 4583.19153 3153.99015 4583.3446 3154.0206 4583.47437 3154.10731 4587.07332 3157.70625 4587.12647 3157.757 4587.40117 3157.96445 4587.69684 3158.11167 4588.01452 3158.20206 4588.36189 3158.23425 4708.72593 3158.23425 4708.879 3158.2647 4709.00877 3158.35141 4716.66372 3166.00635 4716.747 3166.12809 4716.78049 3166.27175 4716.75965 3166.41777 4716.72897 3166.50812 4716.62179 3167.04697 4716.58586 3167.5952 4716.62179 3168.14343 4716.72897 3168.68228 4716.90558 3169.20252 4717.14857 3169.69527 4717.4538 3170.15208 4717.81605 3170.56515 4718.22912 3170.9274 4718.68593 3171.23263 4719.17868 3171.47562 4719.69892 3171.65223 4720.23777 3171.75941 4720.786 3171.79534 4721.33423 3171.75941 4721.87308 3171.65223 4722.39332 3171.47562 4722.88607 3171.23263 4723.34288 3170.9274 4723.75595 3170.56515 4724.1182 3170.15208 4724.42343 3169.69527 4724.46566 3169.60963 4724.55417 3169.49164 4724.67943 3169.41375 4724.82441 3169.38655 4726.59009 3169.38655 4726.73507 3169.41375 4726.86033 3169.49164 4726.94884 3169.60963 4726.99107 3169.69527 4727.2963 3170.15208 4727.65855 3170.56515 4728.07162 3170.9274 4728.52843 3171.23263 4729.02118 3171.47562 4729.54142 3171.65223 4730.08027 3171.75941 4730.6285 3171.79534 4731.17673 3171.75941 4731.71558 3171.65223 4732.23582 3171.47562 4732.72857 3171.23263 4733.18538 3170.9274 4733.59845 3170.56515 4733.9607 3170.15208 4734.26593 3169.69527 4734.50892 3169.20252 4734.68553 3168.68228 4734.79271 3168.14343 4734.82864 3167.5952 4734.79271 3167.04697 4734.68553 3166.50812 4734.50892 3165.98788 4734.26593 3165.49513 4733.9607 3165.03832 4733.59845 3164.62525 4733.18538 3164.263 4732.72857 3163.95777 4732.23582 3163.71478 4731.71558 3163.53817 4731.17673 3163.43099 4730.6285 3163.39506 4730.08027 3163.43099 4729.54142 3163.53817 4729.02118 3163.71478 4728.52843 3163.95777 4728.07162 3164.263 4727.65855 3164.62525 4727.2963 3165.03832 4726.99107 3165.49513 4726.94904 3165.58037 4726.86052 3165.69836 4726.73526 3165.77625 4726.59029 3165.80345 4724.82421 3165.80345 4724.67924 3165.77625 4724.55398 3165.69836 4724.46546 3165.58037 4724.42343 3165.49513 4724.1182 3165.03832 4723.75595 3164.62525 4723.34288 3164.263 4722.88607 3163.95777 4722.39332 3163.71478 4721.87308 3163.53817 4721.33423 3163.43099 4720.786 3163.39506 4720.23777 3163.43099 4719.69892 3163.53817 4719.60887 3163.56874 4719.46284 3163.58959 4719.31919 3163.5561 4719.19745 3163.47282 4712.64173 3156.91709 4712.55502 3156.78732 4712.52457 3156.63425 4712.55502 3156.48118 4712.64173 3156.35141 4712.7715 3156.2647 4712.92457 3156.23425 4716.32736 3156.23425 4716.49838 3156.27265 4716.63656 3156.38049 4716.71537 3156.53706 4716.71967 3156.71229 4716.62179 3157.20437 4716.58586 3157.7526 4716.62179 3158.30083 4716.72897 3158.83968 4716.90558 3159.35992 4717.14857 3159.85267 4717.4538 3160.30948 4717.81605 3160.72255 4718.22912 3161.0848 4718.68593 3161.39003 4719.17868 3161.63302 4719.69892 3161.80963 4720.23777 3161.91681 4720.786 3161.95274 4721.33423 3161.91681 4721.87308 3161.80963 4722.39332 3161.63302 4722.88607 3161.39003 4723.34288 3161.0848 4723.75595 3160.72255 4724.1182 3160.30948 4724.42343 3159.85267 4724.46536 3159.76763 4724.55388 3159.64964 4724.67914 3159.57175 4724.82411 3159.54455 4726.59039 3159.54455 4726.73536 3159.57175 4726.86062 3159.64964 4726.94914 3159.76763 4726.99107 3159.85267 4727.2963 3160.30948 4727.65855 3160.72255 4728.07162 3161.0848 4728.52843 3161.39003 4729.02118 3161.63302 4729.54142 3161.80963 4730.08027 3161.91681 4730.6285 3161.95274 4731.17673 3161.91681 4731.71558 3161.80963 4732.23582 3161.63302 4732.72857 3161.39003 4732.92622 3161.25796 4733.08588 3161.19548 4733.25703 3161.20557 4733.40823 3161.28639 4733.51171 3161.42309 4733.54845 3161.59055 4733.55023 3162.5407 4733.59811 3162.88148 4733.70337 3163.19455 4733.86438 3163.48294 4734.08751 3163.75112 4736.34787 3166.00707 4736.43132 3166.12885 4736.46492 3166.27261 4736.44408 3166.41877 4736.41367 3166.50832 4736.30649 3167.04717 4736.27056 3167.5954 4736.30649 3168.14363 4736.41367 3168.68248 4736.59028 3169.20272 4736.83327 3169.69547 4737.1385 3170.15228 4737.50075 3170.56535 4737.91382 3170.9276 4738.37063 3171.23283 4738.86338 3171.47582 4739.38362 3171.65243 4739.92247 3171.75961 4740.4707 3171.79554 Z M 4596.1702 3273.49015 L 4596.42378 3273.46517 4596.64871 3273.39694 4596.85601 3273.28614 4597.03772 3273.13702 4597.18684 3272.95531 4597.29764 3272.74801 4597.36587 3272.52308 4597.39085 3272.2695 4597.39085 3267.08847 4597.4213 3266.9354 4597.50801 3266.80563 4598.55134 3265.7623 4598.69027 3265.67192 4598.85392 3265.64563 4599.01417 3265.68793 4599.14352 3265.79156 4599.21976 3265.93873 4599.2298 3266.10417 4599.17191 3266.25947 4598.85913 3266.75233 4598.61602 3267.26896 4598.43958 3267.81199 4598.33259 3268.37285 4598.29674 3268.9427 4598.33259 3269.51255 4598.43958 3270.07341 4598.61602 3270.61644 4598.85913 3271.13307 4599.16508 3271.61516 4599.52903 3272.0551 4599.94525 3272.44596 4600.40718 3272.78157 4600.90753 3273.05664 4601.43841 3273.26683 4601.99144 3273.40883 4602.55791 3273.48039 4603.12889 3273.48039 4603.69536 3273.40883 4604.24839 3273.26683 4604.77927 3273.05664 4605.27962 3272.78157 4605.74155 3272.44596 4606.15777 3272.0551 4606.52172 3271.61516 4606.82767 3271.13307 4607.07078 3270.61644 4607.24722 3270.07341 4607.35421 3269.51255 4607.39006 3268.9427 4607.35421 3268.37285 4607.24722 3267.81199 4607.14012 3267.48238 4607.12109 3267.33784 4607.15513 3267.19608 4607.2377 3267.07593 4608.55134 3265.7623 4608.69027 3265.67192 4608.85392 3265.64563 4609.01417 3265.68793 4609.14352 3265.79156 4609.21976 3265.93873 4609.2298 3266.10417 4609.17191 3266.25947 4608.85913 3266.75233 4608.61602 3267.26896 4608.43958 3267.81199 4608.33259 3268.37285 4608.29674 3268.9427 4608.33259 3269.51255 4608.43958 3270.07341 4608.61602 3270.61644 4608.85913 3271.13307 4609.16508 3271.61516 4609.52903 3272.0551 4609.94525 3272.44596 4610.40718 3272.78157 4610.90753 3273.05664 4611.43841 3273.26683 4611.99144 3273.40883 4612.55791 3273.48039 4613.12889 3273.48039 4613.69536 3273.40883 4614.24839 3273.26683 4614.77927 3273.05664 4615.27962 3272.78157 4615.74155 3272.44596 4616.15777 3272.0551 4616.52172 3271.61516 4616.82767 3271.13307 4617.07078 3270.61644 4617.24722 3270.07341 4617.35421 3269.51255 4617.39006 3268.9427 4617.35421 3268.37285 4617.24722 3267.81199 4617.14162 3267.48699 4617.12259 3267.34245 4617.15662 3267.20069 4617.2392 3267.08054 4618.54074 3265.77899 4618.67968 3265.68862 4618.84332 3265.66232 4619.00358 3265.70462 4619.13293 3265.80825 4619.20917 3265.95542 4619.2192 3266.12086 4619.16131 3266.27617 4618.85913 3266.75233 4618.61602 3267.26896 4618.43958 3267.81199 4618.33259 3268.37285 4618.29674 3268.9427 4618.33259 3269.51255 4618.43958 3270.07341 4618.61602 3270.61644 4618.85913 3271.13307 4619.16508 3271.61516 4619.52903 3272.0551 4619.94525 3272.44596 4620.40718 3272.78157 4620.90753 3273.05664 4621.43841 3273.26683 4621.99144 3273.40883 4622.55791 3273.48039 4623.12889 3273.48039 4623.69536 3273.40883 4624.24839 3273.26683 4624.77927 3273.05664 4625.27962 3272.78157 4625.74155 3272.44596 4626.15777 3272.0551 4626.52172 3271.61516 4626.82767 3271.13307 4627.07078 3270.61644 4627.24722 3270.07341 4627.35421 3269.51255 4627.39006 3268.9427 4627.35421 3268.37285 4627.24722 3267.81199 4627.14162 3267.48699 4627.12259 3267.34245 4627.15662 3267.20069 4627.2392 3267.08054 4628.46833 3265.85141 4628.5981 3265.7647 4628.75117 3265.73425 4688.43563 3265.73425 4688.5887 3265.7647 4688.71847 3265.85141 4688.90435 3266.03729 4688.98325 3266.14942 4689.01965 3266.28161 4689.00927 3266.41832 4688.9765 3266.54773 4688.94377 3266.9427 4688.9765 3267.33767 4689.07379 3267.72186 4689.23299 3268.0848 4689.44976 3268.41658 4689.71818 3268.70816 4690.03093 3268.95159 4690.37948 3269.14022 4690.75433 3269.2689 4691.14524 3269.33413 4691.54156 3269.33413 4691.93247 3269.2689 4692.30732 3269.14022 4692.65587 3268.95159 4692.96862 3268.70816 4693.23704 3268.41658 4693.45381 3268.0848 4693.61301 3267.72186 4693.7103 3267.33767 4693.74303 3266.9427 4693.7103 3266.54773 4693.63046 3266.23244 4693.6209 3266.08806 4693.66333 3265.94971 4693.75221 3265.83552 4693.8759 3265.76042 4694.01822 3265.73425 4695.61437 3265.73425 4695.74425 3265.75592 4695.86005 3265.81859 4696.03093 3265.95159 4696.37948 3266.14022 4696.75433 3266.2689 4697.14524 3266.33413 4697.54156 3266.33413 4697.93247 3266.2689 4698.30732 3266.14022 4698.65587 3265.95159 4698.96862 3265.70816 4699.23704 3265.41658 4699.45381 3265.0848 4699.61301 3264.72186 4699.7103 3264.33767 4699.74303 3263.9427 4699.7103 3263.54773 4699.61301 3263.16354 4699.45381 3262.8006 4699.23704 3262.46882 4698.96862 3262.17724 4698.65587 3261.93381 4698.30732 3261.74518 4697.93247 3261.6165 4697.54156 3261.55127 4697.36144 3261.55127 4697.20684 3261.52018 4697.07627 3261.43176 4696.99002 3261.29975 4696.9615 3261.14465 4696.99513 3260.99059 4697.11301 3260.72186 4697.2103 3260.33767 4697.24303 3259.9427 4697.2103 3259.54773 4697.11301 3259.16354 4696.95381 3258.8006 4696.73704 3258.46882 4696.46862 3258.17724 4696.15587 3257.93381 4695.80732 3257.74518 4695.43247 3257.6165 4695.04156 3257.55127 4694.64524 3257.55127 4694.25433 3257.6165 4693.87948 3257.74518 4693.78644 3257.79553 4693.64007 3257.84131 4693.48722 3257.82865 4693.35038 3257.7594 4693.24966 3257.64374 4693.19986 3257.49868 4693.24303 3256.9427 4693.2103 3256.54773 4693.11301 3256.16354 4692.95381 3255.8006 4692.73704 3255.46882 4692.46862 3255.17724 4692.15587 3254.93381 4691.80732 3254.74518 4691.43247 3254.6165 4691.04156 3254.55127 4690.64524 3254.55127 4690.25433 3254.6165 4689.87948 3254.74518 4689.53093 3254.93381 4689.21818 3255.17724 4688.94976 3255.46882 4688.73299 3255.8006 4688.68539 3255.90913 4688.59799 3256.03516 4688.4696 3256.11905 4688.31908 3256.14845 4603.84462 3256.14845 4603.77115 3256.15015 4603.43022 3256.19771 4603.11705 3256.30267 4602.8285 3256.46339 4602.56011 3256.68626 4594.96827 3264.27809 4594.8385 3264.3648 4594.68543 3264.39525 4589.5166 3264.39525 4589.26302 3264.42023 4589.03809 3264.48846 4588.83079 3264.59926 4588.64908 3264.74838 4588.49996 3264.93009 4588.38916 3265.13739 4588.32093 3265.36232 4588.29595 3265.6159 4588.29595 3272.2695 4588.32093 3272.52308 4588.38916 3272.74801 4588.49996 3272.95531 4588.64908 3273.13702 4588.83079 3273.28614 4589.03809 3273.39694 4589.26302 3273.46517 4589.5166 3273.49015 4596.1702 3273.49015 Z M 4579.07677 3239.59952 L 4579.54503 3239.52894 4579.99754 3239.38936 4580.42419 3239.1839 4580.81545 3238.91714 4581.16259 3238.59504 4581.45784 3238.22481 4581.69461 3237.81471 4581.86762 3237.3739 4581.97299 3236.91222 4582.0095 3236.42503 4582.0095 3213.92854 4582.03995 3213.77546 4582.12666 3213.64569 4604.04569 3191.72666 4604.17546 3191.63995 4604.32854 3191.6095 4606.82503 3191.6095 4607.31222 3191.57299 4607.7739 3191.46762 4608.21471 3191.29461 4608.62481 3191.05784 4608.99504 3190.76259 4609.31714 3190.41545 4609.5839 3190.02419 4609.78936 3189.59754 4609.92894 3189.14503 4609.99952 3188.67677 4609.99952 3188.20323 4609.92894 3187.73497 4609.78936 3187.28246 4609.5839 3186.85581 4609.31714 3186.46455 4608.99504 3186.11741 4608.62481 3185.82216 4608.21471 3185.58539 4607.7739 3185.41238 4607.31222 3185.30701 4606.82503 3185.2705 4602.85374 3185.2705 4602.73898 3185.27265 4602.37024 3185.30722 4602.26815 3185.32457 4601.90868 3185.41372 4601.81031 3185.44609 4601.46815 3185.58782 4601.37571 3185.63448 4601.05849 3185.82563 4600.97403 3185.88555 4600.68885 3186.12184 4600.60618 3186.20147 4576.60147 3210.20618 4576.52184 3210.28885 4576.28555 3210.57403 4576.22563 3210.65849 4576.03448 3210.97571 4575.98782 3211.06815 4575.84609 3211.41031 4575.81372 3211.50868 4575.72457 3211.86815 4575.70722 3211.97024 4575.67265 3212.33898 4575.6705 3212.45374 4575.6705 3236.42503 4575.70701 3236.91222 4575.81238 3237.3739 4575.98539 3237.81471 4576.22216 3238.22481 4576.51741 3238.59504 4576.86455 3238.91714 4577.25581 3239.1839 4577.68246 3239.38936 4578.13497 3239.52894 4578.60323 3239.59952 4579.07677 3239.59952 Z M 4702.54156 3148.83413 L 4702.93247 3148.7689 4703.30732 3148.64022 4703.65587 3148.45159 4703.96862 3148.20816 4704.23704 3147.91658 4704.45381 3147.5848 4704.61301 3147.22186 4704.7103 3146.83767 4704.74303 3146.4427 4704.7103 3146.04773 4704.61301 3145.66354 4704.45381 3145.3006 4704.16102 3144.8445 4704.13455 3144.7014 4704.13455 3132.39015 4704.165 3132.23708 4704.25171 3132.10731 4704.38148 3132.0206 4704.53455 3131.99015 4705.6702 3131.99015 4705.92378 3131.96517 4706.14871 3131.89694 4706.35601 3131.78614 4706.53772 3131.63702 4706.68684 3131.45531 4706.79764 3131.24801 4706.86587 3131.02308 4706.89085 3130.7695 4706.89085 3124.1159 4706.86587 3123.86232 4706.79764 3123.63739 4706.68684 3123.43009 4706.57847 3123.25391 4706.56015 3123.10539 4706.5977 3122.96053 4706.68585 3122.8396 4706.81229 3122.75954 4706.95929 3122.73155 4707.43223 3122.73155 4707.5853 3122.762 4707.71507 3122.84871 4718.70732 3133.84095 4718.80109 3133.98904 4718.82255 3134.163 4718.76757 3134.32943 4718.6467 3134.45638 4718.22912 3134.7354 4717.81605 3135.09765 4717.4538 3135.51072 4717.14857 3135.96753 4716.90558 3136.46028 4716.72897 3136.98052 4716.62179 3137.51937 4716.58586 3138.0676 4716.62179 3138.61583 4716.72897 3139.15468 4716.90558 3139.67492 4717.14857 3140.16767 4717.4538 3140.62448 4717.81605 3141.03755 4718.22912 3141.3998 4718.68593 3141.70503 4719.17868 3141.94802 4719.69892 3142.12463 4720.23777 3142.23181 4720.786 3142.26774 4721.33423 3142.23181 4721.87308 3142.12463 4722.39332 3141.94802 4722.88607 3141.70503 4723.34288 3141.3998 4723.75595 3141.03755 4724.1182 3140.62448 4724.42343 3140.16767 4724.46536 3140.08263 4724.55388 3139.96464 4724.67914 3139.88675 4724.82411 3139.85955 4726.59039 3139.85955 4726.73536 3139.88675 4726.86062 3139.96464 4726.94914 3140.08263 4726.99107 3140.16767 4727.2963 3140.62448 4727.65855 3141.03755 4728.07162 3141.3998 4728.52843 3141.70503 4729.02118 3141.94802 4729.54142 3142.12463 4730.08027 3142.23181 4730.6285 3142.26774 4731.17673 3142.23181 4731.71558 3142.12463 4732.23582 3141.94802 4732.72857 3141.70503 4733.18538 3141.3998 4733.59845 3141.03755 4733.9607 3140.62448 4734.26593 3140.16767 4734.50892 3139.67492 4734.68553 3139.15468 4734.79271 3138.61583 4734.82864 3138.0676 4734.79271 3137.51937 4734.68553 3136.98052 4734.50892 3136.46028 4734.26593 3135.96753 4733.9607 3135.51072 4733.59845 3135.09765 4733.18538 3134.7354 4732.72857 3134.43017 4732.23582 3134.18718 4731.71558 3134.01057 4731.17673 3133.90339 4730.6285 3133.86746 4730.08027 3133.90339 4729.54142 3134.01057 4729.02118 3134.18718 4728.52843 3134.43017 4728.07162 3134.7354 4727.65855 3135.09765 4727.2963 3135.51072 4726.99107 3135.96753 4726.94874 3136.05337 4726.86023 3136.17136 4726.73497 3136.24925 4726.58999 3136.27645 4724.82451 3136.27645 4724.67953 3136.24925 4724.55427 3136.17136 4724.46576 3136.05337 4724.42343 3135.96753 4724.1182 3135.51072 4723.75595 3135.09765 4723.34288 3134.7354 4722.88607 3134.43017 4722.80463 3134.39001 4722.68692 3134.30181 4722.60905 3134.17702 4722.58155 3134.03252 4722.5793 3133.31718 4722.53229 3132.98022 4722.42733 3132.66705 4722.26661 3132.3785 4722.04374 3132.11011 4718.76198 3128.82835 4718.66748 3128.67821 4718.6472 3128.50196 4718.70515 3128.33428 4718.82991 3128.20815 4718.99695 3128.14838 4719.1734 3128.16674 4719.69892 3128.34513 4720.23777 3128.45231 4720.786 3128.48824 4721.33423 3128.45231 4721.87308 3128.34513 4722.39332 3128.16852 4722.88607 3127.92553 4723.34288 3127.6203 4723.75595 3127.25805 4724.1182 3126.84498 4724.42343 3126.38817 4724.66642 3125.89542 4724.84303 3125.37518 4724.95021 3124.83633 4724.98614 3124.2881 4724.95021 3123.73987 4724.84303 3123.20102 4724.66642 3122.68078 4724.42343 3122.18803 4724.1182 3121.73122 4723.75595 3121.31815 4723.34288 3120.9559 4722.88607 3120.65067 4722.39332 3120.40768 4721.87308 3120.23107 4721.33423 3120.12389 4720.786 3120.08796 4720.23777 3120.12389 4719.69892 3120.23107 4719.60879 3120.26167 4719.46277 3120.28252 4719.31912 3120.24902 4719.19737 3120.16574 4715.71078 3116.67915 4715.65763 3116.6284 4715.38293 3116.42095 4715.08726 3116.27373 4714.76958 3116.18334 4714.42221 3116.15115 4706.07243 3116.15115 4705.94255 3116.12948 4705.82675 3116.06681 4705.65587 3115.93381 4705.30732 3115.74518 4704.93247 3115.6165 4704.54156 3115.55127 4704.14524 3115.55127 4703.75433 3115.6165 4703.37948 3115.74518 4703.03093 3115.93381 4702.71818 3116.17724 4702.44976 3116.46882 4702.23299 3116.8006 4702.07379 3117.16354 4701.9765 3117.54773 4701.94377 3117.9427 4701.9765 3118.33767 4702.05566 3118.65026 4702.06522 3118.79464 4702.02279 3118.93299 4701.93391 3119.04718 4701.81021 3119.12228 4701.6679 3119.14845 4695.85462 3119.14845 4695.78115 3119.15015 4695.44022 3119.19771 4695.12705 3119.30267 4694.8385 3119.46339 4694.57011 3119.68626 4691.28405 3122.97231 4691.19939 3123.03692 4691.10069 3123.0769 4690.93841 3123.11857 4690.40753 3123.32876 4689.90718 3123.60383 4689.44525 3123.93944 4689.02903 3124.3303 4688.66508 3124.77024 4688.35913 3125.25233 4688.11602 3125.76896 4687.93958 3126.31199 4687.83259 3126.87285 4687.79674 3127.4427 4687.83259 3128.01255 4687.93958 3128.57341 4688.11602 3129.11644 4688.35913 3129.63307 4688.66508 3130.11516 4689.02903 3130.5551 4689.44525 3130.94596 4689.90718 3131.28157 4690.40753 3131.55664 4690.93841 3131.76683 4691.49144 3131.90883 4692.05791 3131.98039 4692.62889 3131.98039 4693.19536 3131.90883 4693.74839 3131.76683 4694.27927 3131.55664 4694.77962 3131.28157 4695.24155 3130.94596 4695.65777 3130.5551 4696.02172 3130.11516 4696.32767 3129.63307 4696.57078 3129.11644 4696.74722 3128.57341 4696.85421 3128.01255 4696.89006 3127.4427 4696.85421 3126.87285 4696.74722 3126.31199 4696.57078 3125.76896 4696.32767 3125.25233 4696.02172 3124.77024 4695.65777 3124.3303 4695.52398 3124.16123 4695.48988 3124.00578 4695.51909 3123.84933 4695.60698 3123.71665 4696.47493 3122.84871 4696.6047 3122.762 4696.75777 3122.73155 4697.72751 3122.73155 4697.87451 3122.75954 4698.00095 3122.8396 4698.0891 3122.96053 4698.12665 3123.10539 4698.10833 3123.25391 4697.99996 3123.43009 4697.88916 3123.63739 4697.82093 3123.86232 4697.79595 3124.1159 4697.79595 3130.7695 4697.82093 3131.02308 4697.88916 3131.24801 4697.99996 3131.45531 4698.14908 3131.63702 4698.33079 3131.78614 4698.53809 3131.89694 4698.76302 3131.96517 4699.0166 3131.99015 4700.15145 3131.99015 4700.30452 3132.0206 4700.43429 3132.10731 4700.521 3132.23708 4700.55145 3132.39015 4700.55145 3144.70227 4700.52521 3144.84477 4700.23299 3145.3006 4700.07379 3145.66354 4699.9765 3146.04773 4699.94377 3146.4427 4699.9765 3146.83767 4700.07379 3147.22186 4700.23299 3147.5848 4700.44976 3147.91658 4700.71818 3148.20816 4701.03093 3148.45159 4701.37948 3148.64022 4701.75433 3148.7689 4702.14524 3148.83413 4702.54156 3148.83413 Z M 4480.58017 3233.10222 L 4481.04843 3233.03164 4481.50094 3232.89206 4481.92759 3232.6866 4482.31885 3232.41984 4482.66599 3232.09774 4482.96124 3231.72751 4483.19801 3231.31741 4483.37102 3230.8766 4483.47639 3230.41492 4483.5129 3229.92773 4483.5129 3186.42124 4483.54335 3186.26816 4483.63006 3186.13839 4489.58193 3180.18652 4489.66156 3180.10385 4489.89785 3179.81867 4489.95777 3179.73421 4490.14892 3179.41699 4490.19558 3179.32455 4490.33731 3178.98239 4490.36968 3178.88402 4490.45883 3178.52455 4490.47618 3178.42246 4490.51075 3178.05372 4490.5129 3177.93896 4490.5129 3169.95659 4490.5123 3169.93469 4490.5129 3130.45772 4490.4764 3129.97053 4490.37103 3129.50885 4490.19803 3129.06804 4489.96126 3128.65793 4489.66602 3128.28769 4489.31889 3127.96559 4488.92763 3127.69883 4488.50098 3127.49336 4488.04848 3127.35377 4487.58022 3127.28318 4487.10667 3127.28318 4486.63842 3127.35375 4486.18591 3127.49332 4485.75925 3127.69878 4485.36799 3127.96553 4485.02085 3128.28762 4484.72559 3128.65785 4484.48881 3129.06795 4484.3158 3129.50876 4484.21042 3129.97043 4484.1739 3130.45762 4484.1733 3169.92916 4484.1739 3169.95105 4484.1739 3176.46416 4484.14345 3176.61724 4484.05674 3176.74701 4478.10487 3182.69888 4478.02524 3182.78155 4477.78895 3183.06673 4477.72903 3183.15119 4477.53788 3183.46841 4477.49122 3183.56085 4477.34949 3183.90301 4477.31712 3184.00138 4477.22797 3184.36085 4477.21062 3184.46294 4477.17605 3184.83168 4477.1739 3184.94644 4477.1739 3229.92773 4477.21041 3230.41492 4477.31578 3230.8766 4477.48879 3231.31741 4477.72556 3231.72751 4478.02081 3232.09774 4478.36795 3232.41984 4478.75921 3232.6866 4479.18586 3232.89206 4479.63837 3233.03164 4480.10663 3233.10222 4480.58017 3233.10222 Z M 4591.54533 3116.42996 L 4592.01855 3116.41226 4592.48384 3116.32422 4592.93081 3116.16782 4593.34948 3115.94654 4593.73049 3115.66534 4594.06534 3115.33049 4594.34654 3114.94948 4594.56782 3114.53081 4594.72422 3114.08384 4594.81226 3113.61855 4594.82996 3113.14533 4594.77694 3112.67476 4594.65438 3112.21735 4594.46501 3111.78332 4594.21307 3111.38235 4593.89439 3111.01204 4564.09176 3081.20941 4563.72145 3080.89073 4563.32048 3080.63879 4562.88645 3080.44942 4562.42904 3080.32686 4561.95847 3080.27384 4561.48525 3080.29154 4561.01996 3080.37958 4560.57299 3080.53598 4560.15432 3080.75726 4559.77331 3081.03846 4559.43846 3081.37331 4559.15726 3081.75432 4558.93598 3082.17299 4558.77958 3082.61996 4558.69154 3083.08525 4558.67384 3083.55847 4558.72686 3084.02904 4558.84942 3084.48645 4559.03879 3084.92048 4559.29073 3085.32145 4559.60941 3085.69176 4589.41204 3115.49439 4589.78235 3115.81307 4590.18332 3116.06501 4590.61735 3116.25438 4591.07476 3116.37694 4591.54533 3116.42996 Z M 4506.25093 3194.2662 L 4506.64184 3194.33143 4507.03816 3194.33143 4507.42907 3194.2662 4507.80392 3194.13752 4508.15247 3193.94889 4508.46522 3193.70546 4508.73364 3193.41388 4508.95041 3193.0821 4509.10961 3192.71916 4509.2069 3192.33497 4509.21541 3192.23224 4509.25114 3192.09706 4509.3312 3191.98243 4510.1543 3191.15693 4510.36175 3190.88223 4510.50897 3190.58656 4510.59936 3190.26888 4510.63155 3189.92151 4510.63155 3152.13155 4510.662 3151.97848 4510.74871 3151.84871 4510.87848 3151.762 4511.03155 3151.73155 4512.61097 3151.73155 4512.74085 3151.75322 4512.85665 3151.81589 4513.02753 3151.94889 4513.37608 3152.13752 4513.75093 3152.2662 4514.14184 3152.33143 4514.53816 3152.33143 4514.92907 3152.2662 4515.30392 3152.13752 4515.65247 3151.94889 4515.96522 3151.70546 4516.23364 3151.41388 4516.45041 3151.0821 4516.60961 3150.71916 4516.7069 3150.33497 4516.73963 3149.94 4516.7069 3149.54503 4516.60961 3149.16084 4516.45041 3148.7979 4516.23364 3148.46612 4515.96522 3148.17454 4515.65247 3147.93111 4515.30392 3147.74248 4515.11833 3147.6459 4515.02354 3147.51988 4514.98483 3147.36701 4515.00821 3147.21106 4515.09005 3147.07626 4515.23704 3146.91658 4515.45381 3146.5848 4515.61301 3146.22186 4515.7103 3145.83767 4515.74303 3145.4427 4515.7103 3145.04773 4515.61301 3144.66354 4515.45381 3144.3006 4515.23704 3143.96882 4514.96862 3143.67724 4514.65587 3143.43381 4514.30732 3143.24518 4513.93247 3143.1165 4513.39971 3143.02453 4513.27662 3142.9492 4513.18826 3142.8351 4513.14614 3142.69707 4513.15575 3142.55307 4513.2103 3142.33767 4513.24303 3141.9427 4513.2103 3141.54773 4513.11301 3141.16354 4512.95381 3140.8006 4512.73704 3140.46882 4512.46862 3140.17724 4512.15587 3139.93381 4511.80732 3139.74518 4511.43247 3139.6165 4511.04156 3139.55127 4510.64524 3139.55127 4510.25433 3139.6165 4509.87948 3139.74518 4509.53093 3139.93381 4509.35967 3140.06711 4509.24386 3140.12978 4509.11398 3140.15145 4503.35254 3140.15145 4503.17804 3140.15952 4503.01418 3140.18237 4502.85314 3140.22025 4502.69627 3140.27283 4502.54493 3140.33965 4502.4004 3140.42016 4502.26391 3140.51365 4502.13663 3140.61934 4502.01964 3140.73633 4501.91395 3140.86361 4501.82046 3141.0001 4501.73995 3141.14463 4501.67313 3141.29597 4501.62055 3141.45284 4501.58267 3141.61388 4501.55982 3141.77774 4501.55175 3141.95224 4501.55175 3183.03467 4501.5213 3183.18774 4501.4346 3183.31751 4500.30269 3184.4495 4500.20291 3184.52231 4500.08567 3184.56121 4499.75433 3184.6165 4499.37948 3184.74518 4499.03093 3184.93381 4498.71818 3185.17724 4498.44976 3185.46882 4498.23299 3185.8006 4498.07379 3186.16354 4497.9765 3186.54773 4497.94377 3186.9427 4497.9765 3187.33767 4498.07379 3187.72186 4498.23299 3188.0848 4498.44976 3188.41658 4498.71818 3188.70816 4499.03093 3188.95159 4499.37948 3189.14022 4499.75433 3189.2689 4500.14524 3189.33413 4500.56655 3189.33413 4500.71195 3189.3615 4500.83746 3189.43984 4500.92591 3189.55845 4500.96518 3189.7011 4500.9765 3189.83767 4501.07379 3190.22186 4501.23299 3190.5848 4501.44976 3190.91658 4501.71818 3191.20816 4502.03093 3191.45159 4502.37948 3191.64022 4502.75433 3191.7689 4503.14524 3191.83413 4503.54156 3191.83413 4504.07492 3191.74972 4504.21464 3191.78195 4504.33402 3191.86137 4504.41771 3191.9778 4504.45498 3192.11626 4504.4731 3192.33497 4504.57039 3192.71916 4504.72959 3193.0821 4504.94636 3193.41388 4505.21478 3193.70546 4505.52753 3193.94889 4505.87608 3194.13752 4506.25093 3194.2662 Z M 4575.41093 3183.3262 L 4575.80184 3183.39143 4576.19816 3183.39143 4576.58907 3183.3262 4576.96392 3183.19752 4577.31247 3183.00889 4577.48335 3182.87589 4577.59915 3182.81322 4577.72903 3182.79155 4579.99549 3182.79155 4580.06676 3182.78994 4580.40786 3182.74275 4580.72114 3182.63813 4581.00987 3182.47773 4581.27851 3182.25516 4598.72382 3164.84839 4598.85348 3164.76191 4599.00635 3164.73155 4612.1109 3164.73155 4612.24078 3164.75322 4612.35659 3164.81589 4612.53093 3164.95159 4612.87948 3165.14022 4613.25433 3165.2689 4613.64524 3165.33413 4614.04156 3165.33413 4614.43247 3165.2689 4614.80732 3165.14022 4615.15587 3164.95159 4615.46862 3164.70816 4615.73704 3164.41658 4615.95381 3164.0848 4616.11301 3163.72186 4616.2103 3163.33767 4616.24303 3162.9427 4616.2103 3162.54773 4616.11301 3162.16354 4615.95381 3161.8006 4615.73704 3161.46882 4615.46862 3161.17724 4615.15587 3160.93381 4614.80732 3160.74518 4614.43247 3160.6165 4614.04156 3160.55127 4613.64524 3160.55127 4613.25433 3160.6165 4612.87948 3160.74518 4612.53093 3160.93381 4612.36352 3161.06411 4612.24772 3161.12678 4612.11784 3161.14845 4598.10451 3161.14845 4598.03324 3161.15006 4597.69214 3161.19725 4597.37886 3161.30187 4597.09013 3161.46227 4596.82149 3161.68484 4579.37618 3179.09161 4579.24652 3179.17809 4579.09365 3179.20845 4577.72903 3179.20845 4577.59915 3179.18678 4577.48335 3179.12411 4577.31247 3178.99111 4576.96392 3178.80248 4576.58907 3178.6738 4576.19816 3178.60857 4575.80184 3178.60857 4575.41093 3178.6738 4575.03608 3178.80248 4574.68753 3178.99111 4574.37478 3179.23454 4574.10636 3179.52612 4573.88959 3179.8579 4573.73039 3180.22084 4573.6331 3180.60503 4573.60037 3181 4573.6331 3181.39497 4573.73039 3181.77916 4573.88959 3182.1421 4574.10636 3182.47388 4574.37478 3182.76546 4574.68753 3183.00889 4575.03608 3183.19752 4575.41093 3183.3262 Z M 4732.21357 3277.25823 L 4733.03769 3277.20186 4733.85328 3277.07078 4734.65357 3276.86608 4735.43192 3276.58945 4736.1819 3276.24319 4736.89728 3275.83016 4737.57214 3275.3538 4738.20089 3274.81803 4738.77831 3274.22732 4739.29962 3273.58654 4739.7605 3272.90101 4740.15714 3272.17641 4740.48624 3271.41875 4740.74507 3270.63429 4740.93151 3269.82955 4741.04399 3269.0112 4741.08159 3268.186 4741.04399 3267.3608 4740.93151 3266.54245 4740.74507 3265.73771 4740.48624 3264.95325 4740.15714 3264.19559 4739.7605 3263.47099 4739.29962 3262.78546 4738.77831 3262.14468 4738.20089 3261.55397 4737.57214 3261.0182 4736.89728 3260.54184 4736.1819 3260.12881 4735.43192 3259.78255 4734.65357 3259.50592 4733.85328 3259.30122 4733.03769 3259.17014 4732.21357 3259.11377 4731.38773 3259.13257 4730.56702 3259.22639 4729.75825 3259.39446 4728.96811 3259.63537 4728.20315 3259.94714 4727.46971 3260.32718 4726.77387 3260.77234 4726.12139 3261.27893 4725.51768 3261.84275 4724.96774 3262.45914 4724.47614 3263.12298 4724.04693 3263.82878 4723.68369 3264.57068 4723.38941 3265.34253 4723.16655 3266.13795 4723.01694 3266.95034 4722.94182 3267.77297 4722.94182 3268.59903 4723.01694 3269.42166 4723.16655 3270.23405 4723.38941 3271.02947 4723.68369 3271.80132 4724.04693 3272.54322 4724.47614 3273.24902 4724.96774 3273.91286 4725.51768 3274.52925 4726.12139 3275.09307 4726.77387 3275.59966 4727.46971 3276.04482 4728.20315 3276.42486 4728.96811 3276.73663 4729.75825 3276.97754 4730.56702 3277.14561 4731.38773 3277.23943 4732.21357 3277.25823 Z M 4732.21157 3077.25823 L 4733.03569 3077.20186 4733.85128 3077.07078 4734.65157 3076.86608 4735.42992 3076.58945 4736.1799 3076.24319 4736.89528 3075.83016 4737.57014 3075.3538 4738.19889 3074.81803 4738.77631 3074.22732 4739.29762 3073.58654 4739.7585 3072.90101 4740.15514 3072.17641 4740.48424 3071.41875 4740.74307 3070.63429 4740.92951 3069.82955 4741.04199 3069.0112 4741.07959 3068.186 4741.04199 3067.3608 4740.92951 3066.54245 4740.74307 3065.73771 4740.48424 3064.95325 4740.15514 3064.19559 4739.7585 3063.47099 4739.29762 3062.78546 4738.77631 3062.14468 4738.19889 3061.55397 4737.57014 3061.0182 4736.89528 3060.54184 4736.1799 3060.12881 4735.42992 3059.78255 4734.65157 3059.50592 4733.85128 3059.30122 4733.03569 3059.17014 4732.21157 3059.11377 4731.38573 3059.13257 4730.56502 3059.22639 4729.75625 3059.39446 4728.96611 3059.63537 4728.20115 3059.94714 4727.46771 3060.32718 4726.77187 3060.77234 4726.11939 3061.27893 4725.51568 3061.84275 4724.96574 3062.45914 4724.47414 3063.12298 4724.04493 3063.82878 4723.68169 3064.57068 4723.38741 3065.34253 4723.16455 3066.13795 4723.01494 3066.95034 4722.93982 3067.77297 4722.93982 3068.59903 4723.01494 3069.42166 4723.16455 3070.23405 4723.38741 3071.02947 4723.68169 3071.80132 4724.04493 3072.54322 4724.47414 3073.24902 4724.96574 3073.91286 4725.51568 3074.52925 4726.11939 3075.09307 4726.77187 3075.59966 4727.46771 3076.04482 4728.20115 3076.42486 4728.96611 3076.73663 4729.75625 3076.97754 4730.56502 3077.14561 4731.38573 3077.23943 4732.21157 3077.25823 Z M 4704.04156 3214.83413 L 4704.43247 3214.7689 4704.80732 3214.64022 4705.15587 3214.45159 4705.32636 3214.31889 4705.44216 3214.25622 4705.57204 3214.23455 4715.30358 3214.23455 4715.37705 3214.23285 4715.71798 3214.18529 4716.03115 3214.08033 4716.3197 3213.91961 4716.58809 3213.69674 4719.1973 3211.08753 4719.31904 3211.00425 4719.46269 3210.97076 4719.60872 3210.9916 4719.69892 3211.02223 4720.23777 3211.12941 4720.786 3211.16534 4721.33423 3211.12941 4721.87308 3211.02223 4722.39332 3210.84562 4722.88607 3210.60263 4723.34288 3210.2974 4723.75595 3209.93515 4724.1182 3209.52208 4724.42343 3209.06527 4724.66642 3208.57252 4724.84303 3208.05228 4724.95021 3207.51343 4724.98614 3206.9652 4724.95021 3206.41697 4724.84303 3205.87812 4724.66642 3205.35788 4724.42343 3204.86513 4724.1182 3204.40832 4723.75595 3203.99525 4723.34288 3203.633 4722.88607 3203.32777 4722.39332 3203.08478 4721.87308 3202.90817 4721.33423 3202.80099 4720.786 3202.76506 4720.23777 3202.80099 4719.69892 3202.90817 4719.17868 3203.08478 4718.68593 3203.32777 4718.22912 3203.633 4717.81605 3203.99525 4717.4538 3204.40832 4717.14857 3204.86513 4716.90558 3205.35788 4716.72897 3205.87812 4716.62179 3206.41697 4716.58586 3206.9652 4716.62179 3207.51343 4716.72897 3208.05228 4716.7596 3208.14248 4716.78044 3208.28851 4716.74695 3208.43216 4716.66367 3208.5539 4714.68327 3210.53429 4714.5535 3210.621 4714.40043 3210.65145 4705.57282 3210.65145 4705.44294 3210.62978 4705.32713 3210.56711 4705.15587 3210.43381 4704.80732 3210.24518 4704.43247 3210.1165 4704.04156 3210.05127 4703.64524 3210.05127 4703.25433 3210.1165 4702.87948 3210.24518 4702.53093 3210.43381 4702.21818 3210.67724 4701.94976 3210.96882 4701.73299 3211.3006 4701.57379 3211.66354 4701.4765 3212.04773 4701.44377 3212.4427 4701.4765 3212.83767 4701.57379 3213.22186 4701.73299 3213.5848 4701.94976 3213.91658 4702.21818 3214.20816 4702.53093 3214.45159 4702.87948 3214.64022 4703.25433 3214.7689 4703.64524 3214.83413 4704.04156 3214.83413 Z M 4428.26862 3297.8448 L 4429.05368 3297.91976 4429.84232 3297.91976 4430.62738 3297.8448 4431.40177 3297.69554 4432.15846 3297.47336 4432.89061 3297.18025 4433.59157 3296.81888 4434.25502 3296.39251 4434.87493 3295.90501 4435.44569 3295.36079 4435.96214 3294.76477 4436.41959 3294.12237 4436.81391 3293.43939 4437.14152 3292.72202 4437.39946 3291.97676 4437.58539 3291.21035 4437.69762 3290.42974 4437.73515 3289.642 4437.69762 3288.85426 4437.58539 3288.07365 4437.39946 3287.30724 4437.14152 3286.56198 4436.81391 3285.84461 4436.41959 3285.16163 4435.96214 3284.51923 4435.44569 3283.92321 4434.87493 3283.37899 4434.25502 3282.89149 4433.59157 3282.46512 4432.89061 3282.10375 4432.15846 3281.81064 4431.40177 3281.58846 4430.62738 3281.4392 4429.84232 3281.36424 4429.05368 3281.36424 4428.26862 3281.4392 4427.49423 3281.58846 4426.73754 3281.81064 4426.00539 3282.10375 4425.30443 3282.46512 4424.64098 3282.89149 4424.02107 3283.37899 4423.45031 3283.92321 4422.93386 3284.51923 4422.47641 3285.16163 4422.08209 3285.84461 4421.75448 3286.56198 4421.49654 3287.30724 4421.31061 3288.07365 4421.19838 3288.85426 4421.16085 3289.642 4421.19838 3290.42974 4421.31061 3291.21035 4421.49654 3291.97676 4421.75448 3292.72202 4422.08209 3293.43939 4422.47641 3294.12237 4422.93386 3294.76477 4423.45031 3295.36079 4424.02107 3295.90501 4424.64098 3296.39251 4425.30443 3296.81888 4426.00539 3297.18025 4426.73754 3297.47336 4427.49423 3297.69554 4428.26862 3297.8448 Z M 4428.26862 3053.7508 L 4429.05368 3053.82576 4429.84232 3053.82576 4430.62738 3053.7508 4431.40177 3053.60154 4432.15846 3053.37936 4432.89061 3053.08625 4433.59157 3052.72488 4434.25502 3052.29851 4434.87493 3051.81101 4435.44569 3051.26679 4435.96214 3050.67077 4436.41959 3050.02837 4436.81391 3049.34539 4437.14152 3048.62802 4437.39946 3047.88276 4437.58539 3047.11635 4437.69762 3046.33574 4437.73515 3045.548 4437.69762 3044.76026 4437.58539 3043.97965 4437.39946 3043.21324 4437.14152 3042.46798 4436.81391 3041.75061 4436.41959 3041.06763 4435.96214 3040.42523 4435.44569 3039.82921 4434.87493 3039.28499 4434.25502 3038.79749 4433.59157 3038.37112 4432.89061 3038.00975 4432.15846 3037.71664 4431.40177 3037.49446 4430.62738 3037.3452 4429.84232 3037.27024 4429.05368 3037.27024 4428.26862 3037.3452 4427.49423 3037.49446 4426.73754 3037.71664 4426.00539 3038.00975 4425.30443 3038.37112 4424.64098 3038.79749 4424.02107 3039.28499 4423.45031 3039.82921 4422.93386 3040.42523 4422.47641 3041.06763 4422.08209 3041.75061 4421.75448 3042.46798 4421.49654 3043.21324 4421.31061 3043.97965 4421.19838 3044.76026 4421.16085 3045.548 4421.19838 3046.33574 4421.31061 3047.11635 4421.49654 3047.88276 4421.75448 3048.62802 4422.08209 3049.34539 4422.47641 3050.02837 4422.93386 3050.67077 4423.45031 3051.26679 4424.02107 3051.81101 4424.64098 3052.29851 4425.30443 3052.72488 4426.00539 3053.08625 4426.73754 3053.37936 4427.49423 3053.60154 4428.26862 3053.7508 Z M 4644.75433 3247.7689 L 4645.14524 3247.83413 4645.54156 3247.83413 4645.93247 3247.7689 4646.30732 3247.64022 4646.65587 3247.45159 4646.96862 3247.20816 4647.23704 3246.91658 4647.45381 3246.5848 4647.61301 3246.22186 4647.70564 3245.85607 4647.78463 3245.69998 4647.92269 3245.59252 4648.0934 3245.55427 4648.26411 3245.59252 4648.40217 3245.69998 4648.48116 3245.85607 4648.57379 3246.22186 4648.73299 3246.5848 4648.94976 3246.91658 4649.21818 3247.20816 4649.53093 3247.45159 4649.87948 3247.64022 4650.25433 3247.7689 4650.64524 3247.83413 4651.04156 3247.83413 4651.43247 3247.7689 4651.80732 3247.64022 4652.15587 3247.45159 4652.46862 3247.20816 4652.73704 3246.91658 4652.95381 3246.5848 4653.11301 3246.22186 4653.2103 3245.83767 4653.24303 3245.4427 4653.2103 3245.04773 4653.11301 3244.66354 4652.95381 3244.3006 4652.66088 3243.84443 4652.63435 3243.70118 4652.63435 3232.18408 4652.66077 3232.04113 4652.95341 3231.5851 4653.11261 3231.22216 4653.2099 3230.83797 4653.24263 3230.443 4653.2099 3230.04803 4653.11261 3229.66384 4652.95341 3229.3009 4652.73664 3228.96912 4652.46822 3228.67754 4652.15547 3228.43411 4651.80692 3228.24548 4651.43207 3228.1168 4651.04116 3228.05157 4650.64484 3228.05157 4650.25393 3228.1168 4649.87908 3228.24548 4649.53053 3228.43411 4649.21778 3228.67754 4648.94936 3228.96912 4648.73259 3229.3009 4648.57339 3229.66384 4648.48076 3230.02963 4648.40177 3230.18572 4648.26371 3230.29318 4648.093 3230.33143 4647.92229 3230.29318 4647.78423 3230.18572 4647.70524 3230.02963 4647.61261 3229.66384 4647.45341 3229.3009 4647.23664 3228.96912 4646.96822 3228.67754 4646.65547 3228.43411 4646.30692 3228.24548 4645.93207 3228.1168 4645.54116 3228.05157 4645.14484 3228.05157 4644.75393 3228.1168 4644.37908 3228.24548 4644.03053 3228.43411 4643.71778 3228.67754 4643.44936 3228.96912 4643.23259 3229.3009 4643.07339 3229.66384 4642.9761 3230.04803 4642.94337 3230.443 4642.9761 3230.83797 4643.07339 3231.22216 4643.23259 3231.5851 4643.52495 3232.041 4643.55125 3232.18365 4643.55125 3243.70248 4643.52506 3243.84483 4643.23299 3244.3006 4643.07379 3244.66354 4642.9765 3245.04773 4642.94377 3245.4427 4642.9765 3245.83767 4643.07379 3246.22186 4643.23299 3246.5848 4643.44976 3246.91658 4643.71818 3247.20816 4644.03093 3247.45159 4644.37948 3247.64022 4644.75433 3247.7689 Z M 4659.25433 3238.7689 L 4659.64524 3238.83413 4660.04156 3238.83413 4660.43247 3238.7689 4660.80732 3238.64022 4661.15587 3238.45159 4661.46862 3238.20816 4661.73704 3237.91658 4661.95381 3237.5848 4662.11301 3237.22186 4662.2103 3236.83767 4662.24303 3236.4427 4662.2103 3236.04773 4662.11301 3235.66354 4661.95381 3235.3006 4661.66088 3234.84443 4661.63435 3234.70118 4661.63435 3230.89015 4661.6648 3230.73708 4661.75151 3230.60731 4661.88128 3230.5206 4662.03435 3230.49015 4663.1702 3230.49015 4663.42378 3230.46517 4663.64871 3230.39694 4663.85601 3230.28614 4664.03772 3230.13702 4664.18684 3229.95531 4664.29764 3229.74801 4664.36587 3229.52308 4664.39085 3229.2695 4664.39085 3222.6159 4664.36587 3222.36232 4664.29764 3222.13739 4664.18684 3221.93009 4664.03772 3221.74838 4663.85601 3221.59926 4663.64871 3221.48846 4663.42378 3221.42023 4663.1702 3221.39525 4656.5166 3221.39525 4656.26302 3221.42023 4656.03809 3221.48846 4655.83079 3221.59926 4655.64908 3221.74838 4655.49996 3221.93009 4655.38916 3222.13739 4655.32093 3222.36232 4655.29595 3222.6159 4655.29595 3229.2695 4655.32093 3229.52308 4655.38916 3229.74801 4655.49996 3229.95531 4655.64908 3230.13702 4655.83079 3230.28614 4656.03809 3230.39694 4656.26302 3230.46517 4656.5166 3230.49015 4657.65125 3230.49015 4657.80432 3230.5206 4657.93409 3230.60731 4658.0208 3230.73708 4658.05125 3230.89015 4658.05125 3234.70248 4658.02506 3234.84483 4657.73299 3235.3006 4657.57379 3235.66354 4657.4765 3236.04773 4657.44377 3236.4427 4657.4765 3236.83767 4657.57379 3237.22186 4657.73299 3237.5848 4657.94976 3237.91658 4658.21818 3238.20816 4658.53093 3238.45159 4658.87948 3238.64022 4659.25433 3238.7689 Z M 4633.75433 3189.7689 L 4634.14524 3189.83413 4634.54156 3189.83413 4634.93247 3189.7689 4635.30732 3189.64022 4635.65587 3189.45159 4635.96862 3189.20816 4636.23704 3188.91658 4636.45381 3188.5848 4636.61301 3188.22186 4636.7103 3187.83767 4636.74303 3187.4427 4636.7103 3187.04773 4636.61301 3186.66354 4636.45381 3186.3006 4636.23704 3185.96882 4635.96862 3185.67724 4635.65587 3185.43381 4635.30732 3185.24518 4634.93247 3185.1165 4634.60079 3185.06115 4634.48356 3185.02225 4634.38378 3184.94945 4631.11348 3181.67915 4631.06033 3181.6284 4630.78563 3181.42095 4630.48996 3181.27373 4630.17228 3181.18334 4629.82491 3181.15115 4627.57243 3181.15115 4627.44255 3181.12948 4627.32675 3181.06681 4627.15587 3180.93381 4626.80732 3180.74518 4626.43247 3180.6165 4626.04156 3180.55127 4625.64524 3180.55127 4625.25433 3180.6165 4624.87948 3180.74518 4624.53093 3180.93381 4624.21818 3181.17724 4623.94976 3181.46882 4623.73299 3181.8006 4623.57379 3182.16354 4623.4765 3182.54773 4623.44377 3182.9427 4623.4765 3183.33767 4623.57379 3183.72186 4623.73299 3184.0848 4623.94976 3184.41658 4624.21818 3184.70816 4624.53093 3184.95159 4624.87948 3185.14022 4625.25433 3185.2689 4625.64524 3185.33413 4626.04156 3185.33413 4626.43247 3185.2689 4626.80732 3185.14022 4627.15587 3184.95159 4627.32675 3184.81859 4627.44255 3184.75592 4627.57243 3184.73425 4628.93563 3184.73425 4629.0887 3184.7647 4629.21847 3184.85141 4631.8522 3187.48513 4631.93226 3187.59976 4631.96799 3187.73494 4631.9765 3187.83767 4632.07379 3188.22186 4632.23299 3188.5848 4632.44976 3188.91658 4632.71818 3189.20816 4633.03093 3189.45159 4633.37948 3189.64022 4633.75433 3189.7689 Z M 4716.69006 3089.85579 L 4717.32132 3089.83776 4717.94641 3089.74788 4718.55719 3089.58734 4719.14568 3089.35822 4719.70422 3089.06351 4720.22552 3088.70705 4720.70279 3088.29349 4721.12981 3087.82822 4721.50101 3087.31731 4721.81155 3086.76741 4722.05739 3086.1857 4722.23531 3085.57976 4722.34299 3084.95749 4722.37905 3084.327 4722.34299 3083.69651 4722.23531 3083.07424 4722.05739 3082.4683 4721.81155 3081.88659 4721.50101 3081.33669 4721.12981 3080.82578 4720.70279 3080.36051 4720.22552 3079.94695 4719.70422 3079.59049 4719.14568 3079.29578 4718.55719 3079.06666 4717.94641 3078.90612 4717.32132 3078.81624 4716.69006 3078.79821 4716.06085 3078.85225 4715.44191 3078.97767 4714.84129 3079.17282 4714.26684 3079.43516 4713.72604 3079.76128 4713.22593 3080.14691 4712.77305 3080.58705 4712.37329 3081.07593 4712.03186 3081.6072 4711.75322 3082.17393 4711.541 3082.76872 4711.39796 3083.38383 4711.32597 3084.01124 4711.32597 3084.64276 4711.39796 3085.27017 4711.541 3085.88528 4711.75322 3086.48007 4712.03186 3087.0468 4712.37329 3087.57807 4712.77305 3088.06695 4713.22593 3088.50709 4713.72604 3088.89272 4714.26684 3089.21884 4714.84129 3089.48118 4715.44191 3089.67633 4716.06085 3089.80175 4716.69006 3089.85579 Z M 4716.69106 3257.57279 L 4717.32232 3257.55476 4717.94741 3257.46488 4718.55819 3257.30434 4719.14668 3257.07522 4719.70522 3256.78051 4720.22652 3256.42405 4720.70379 3256.01049 4721.13081 3255.54522 4721.50201 3255.03431 4721.81255 3254.48441 4722.05839 3253.9027 4722.23631 3253.29676 4722.34399 3252.67449 4722.38005 3252.044 4722.34399 3251.41351 4722.23631 3250.79124 4722.05839 3250.1853 4721.81255 3249.60359 4721.50201 3249.05369 4721.13081 3248.54278 4720.70379 3248.07751 4720.22652 3247.66395 4719.70522 3247.30749 4719.14668 3247.01278 4718.55819 3246.78366 4717.94741 3246.62312 4717.32232 3246.53324 4716.69106 3246.51521 4716.06185 3246.56925 4715.44291 3246.69467 4714.84229 3246.88982 4714.26784 3247.15216 4713.72704 3247.47828 4713.22693 3247.86391 4712.77405 3248.30405 4712.37429 3248.79293 4712.03286 3249.3242 4711.75422 3249.89093 4711.542 3250.48572 4711.39896 3251.10083 4711.32697 3251.72824 4711.32697 3252.35976 4711.39896 3252.98717 4711.542 3253.60228 4711.75422 3254.19707 4712.03286 3254.7638 4712.37429 3255.29507 4712.77405 3255.78395 4713.22693 3256.22409 4713.72704 3256.60972 4714.26784 3256.93584 4714.84229 3257.19818 4715.44291 3257.39333 4716.06185 3257.51875 4716.69106 3257.57279 Z M 4712.75433 3185.2689 L 4713.14524 3185.33413 4713.54156 3185.33413 4713.93247 3185.2689 4714.30732 3185.14022 4714.65587 3184.95159 4714.96862 3184.70816 4715.23704 3184.41658 4715.45381 3184.0848 4715.61301 3183.72186 4715.7103 3183.33767 4715.74303 3182.9427 4715.7103 3182.54773 4715.61301 3182.16354 4715.45381 3181.8006 4715.23704 3181.46882 4714.96862 3181.17724 4714.65587 3180.93381 4714.30732 3180.74518 4713.93247 3180.6165 4713.60079 3180.56115 4713.48356 3180.52225 4713.38378 3180.44945 4712.25211 3179.31777 4712.1654 3179.188 4712.13495 3179.03493 4712.13495 3175.68357 4712.16131 3175.54076 4712.45381 3175.0848 4712.61301 3174.72186 4712.7103 3174.33767 4712.74303 3173.9427 4712.7103 3173.54773 4712.61301 3173.16354 4712.45381 3172.8006 4712.23704 3172.46882 4711.96862 3172.17724 4711.65587 3171.93381 4711.30732 3171.74518 4710.93247 3171.6165 4710.54156 3171.55127 4710.14524 3171.55127 4709.75433 3171.6165 4709.37948 3171.74518 4709.03093 3171.93381 4708.71818 3172.17724 4708.44976 3172.46882 4708.23299 3172.8006 4708.07379 3173.16354 4707.9765 3173.54773 4707.94377 3173.9427 4707.9765 3174.33767 4708.07379 3174.72186 4708.23299 3175.0848 4708.52549 3175.54076 4708.55185 3175.68357 4708.55185 3179.93808 4708.55355 3180.01155 4708.60111 3180.35248 4708.70607 3180.66565 4708.86679 3180.9542 4709.08966 3181.22259 4710.8522 3182.98513 4710.93226 3183.09976 4710.96799 3183.23494 4710.9765 3183.33767 4711.07379 3183.72186 4711.23299 3184.0848 4711.44976 3184.41658 4711.71818 3184.70816 4712.03093 3184.95159 4712.37948 3185.14022 4712.75433 3185.2689 Z M 4443.1702 3233.49015 L 4443.42378 3233.46517 4443.64871 3233.39694 4443.85601 3233.28614 4444.03772 3233.13702 4444.18684 3232.95531 4444.29764 3232.74801 4444.36587 3232.52308 4444.39085 3232.2695 4444.39085 3225.6159 4444.36587 3225.36232 4444.29764 3225.13739 4444.18684 3224.93009 4444.03772 3224.74838 4443.85601 3224.59926 4443.64871 3224.48846 4443.42378 3224.42023 4443.1702 3224.39525 4436.5166 3224.39525 4436.26302 3224.42023 4436.03809 3224.48846 4435.83079 3224.59926 4435.64908 3224.74838 4435.49996 3224.93009 4435.38916 3225.13739 4435.32093 3225.36232 4435.29595 3225.6159 4435.29595 3232.2695 4435.32093 3232.52308 4435.38916 3232.74801 4435.49996 3232.95531 4435.64908 3233.13702 4435.83079 3233.28614 4436.03809 3233.39694 4436.26302 3233.46517 4436.5166 3233.49015 4443.1702 3233.49015 Z M 4560.1702 3040.99015 L 4560.42378 3040.96517 4560.64871 3040.89694 4560.85601 3040.78614 4561.03772 3040.63702 4561.18684 3040.45531 4561.29764 3040.24801 4561.36587 3040.02308 4561.39085 3039.7695 4561.39085 3033.1159 4561.36587 3032.86232 4561.29764 3032.63739 4561.18684 3032.43009 4561.03772 3032.24838 4560.85601 3032.09926 4560.64871 3031.98846 4560.42378 3031.92023 4560.1702 3031.89525 4553.5166 3031.89525 4553.26302 3031.92023 4553.03809 3031.98846 4552.83079 3032.09926 4552.64908 3032.24838 4552.49996 3032.43009 4552.38916 3032.63739 4552.32093 3032.86232 4552.29595 3033.1159 4552.29595 3039.7695 4552.32093 3040.02308 4552.38916 3040.24801 4552.49996 3040.45531 4552.64908 3040.63702 4552.83079 3040.78614 4553.03809 3040.89694 4553.26302 3040.96517 4553.5166 3040.99015 4560.1702 3040.99015 Z M 4439.8434 3253.48936 L 4440.41325 3253.45351 4440.97411 3253.34652 4441.51714 3253.17008 4442.03377 3252.92697 4442.51586 3252.62102 4442.9558 3252.25707 4443.34666 3251.84085 4443.68227 3251.37892 4443.95734 3250.87857 4444.16753 3250.34769 4444.30953 3249.79466 4444.38109 3249.22819 4444.38109 3248.65721 4444.30953 3248.09074 4444.16753 3247.53771 4443.95734 3247.00683 4443.68227 3246.50648 4443.34666 3246.04455 4442.9558 3245.62833 4442.51586 3245.26438 4442.03377 3244.95843 4441.51714 3244.71532 4440.97411 3244.53888 4440.41325 3244.43189 4439.8434 3244.39604 4439.27355 3244.43189 4438.71269 3244.53888 4438.16966 3244.71532 4437.65303 3244.95843 4437.17094 3245.26438 4436.731 3245.62833 4436.34014 3246.04455 4436.00453 3246.50648 4435.72946 3247.00683 4435.51927 3247.53771 4435.37727 3248.09074 4435.30571 3248.65721 4435.30571 3249.22819 4435.37727 3249.79466 4435.51927 3250.34769 4435.72946 3250.87857 4436.00453 3251.37892 4436.34014 3251.84085 4436.731 3252.25707 4437.17094 3252.62102 4437.65303 3252.92697 4438.16966 3253.17008 4438.71269 3253.34652 4439.27355 3253.45351 4439.8434 3253.48936 Z M 4556.8434 3060.98936 L 4557.41325 3060.95351 4557.97411 3060.84652 4558.51714 3060.67008 4559.03377 3060.42697 4559.51586 3060.12102 4559.9558 3059.75707 4560.34666 3059.34085 4560.68227 3058.87892 4560.95734 3058.37857 4561.16753 3057.84769 4561.30953 3057.29466 4561.38109 3056.72819 4561.38109 3056.15721 4561.30953 3055.59074 4561.16753 3055.03771 4560.95734 3054.50683 4560.68227 3054.00648 4560.34666 3053.54455 4559.9558 3053.12833 4559.51586 3052.76438 4559.03377 3052.45843 4558.51714 3052.21532 4557.97411 3052.03888 4557.41325 3051.93189 4556.8434 3051.89604 4556.27355 3051.93189 4555.71269 3052.03888 4555.16966 3052.21532 4554.65303 3052.45843 4554.17094 3052.76438 4553.731 3053.12833 4553.34014 3053.54455 4553.00453 3054.00648 4552.72946 3054.50683 4552.51927 3055.03771 4552.37727 3055.59074 4552.30571 3056.15721 4552.30571 3056.72819 4552.37727 3057.29466 4552.51927 3057.84769 4552.72946 3058.37857 4553.00453 3058.87892 4553.34014 3059.34085 4553.731 3059.75707 4554.17094 3060.12102 4554.65303 3060.42697 4555.16966 3060.67008 4555.71269 3060.84652 4556.27355 3060.95351 4556.8434 3060.98936 Z M 4439.8434 3243.48936 L 4440.41325 3243.45351 4440.97411 3243.34652 4441.51714 3243.17008 4442.03377 3242.92697 4442.51586 3242.62102 4442.9558 3242.25707 4443.34666 3241.84085 4443.68227 3241.37892 4443.95734 3240.87857 4444.16753 3240.34769 4444.30953 3239.79466 4444.38109 3239.22819 4444.38109 3238.65721 4444.30953 3238.09074 4444.16753 3237.53771 4443.95734 3237.00683 4443.68227 3236.50648 4443.34666 3236.04455 4442.9558 3235.62833 4442.51586 3235.26438 4442.03377 3234.95843 4441.51714 3234.71532 4440.97411 3234.53888 4440.41325 3234.43189 4439.8434 3234.39604 4439.27355 3234.43189 4438.71269 3234.53888 4438.16966 3234.71532 4437.65303 3234.95843 4437.17094 3235.26438 4436.731 3235.62833 4436.34014 3236.04455 4436.00453 3236.50648 4435.72946 3237.00683 4435.51927 3237.53771 4435.37727 3238.09074 4435.30571 3238.65721 4435.30571 3239.22819 4435.37727 3239.79466 4435.51927 3240.34769 4435.72946 3240.87857 4436.00453 3241.37892 4436.34014 3241.84085 4436.731 3242.25707 4437.17094 3242.62102 4437.65303 3242.92697 4438.16966 3243.17008 4438.71269 3243.34652 4439.27355 3243.45351 4439.8434 3243.48936 Z M 4556.8434 3070.98936 L 4557.41325 3070.95351 4557.97411 3070.84652 4558.51714 3070.67008 4559.03377 3070.42697 4559.51586 3070.12102 4559.9558 3069.75707 4560.34666 3069.34085 4560.68227 3068.87892 4560.95734 3068.37857 4561.16753 3067.84769 4561.30953 3067.29466 4561.38109 3066.72819 4561.38109 3066.15721 4561.30953 3065.59074 4561.16753 3065.03771 4560.95734 3064.50683 4560.68227 3064.00648 4560.34666 3063.54455 4559.9558 3063.12833 4559.51586 3062.76438 4559.03377 3062.45843 4558.51714 3062.21532 4557.97411 3062.03888 4557.41325 3061.93189 4556.8434 3061.89604 4556.27355 3061.93189 4555.71269 3062.03888 4555.16966 3062.21532 4554.65303 3062.45843 4554.17094 3062.76438 4553.731 3063.12833 4553.34014 3063.54455 4553.00453 3064.00648 4552.72946 3064.50683 4552.51927 3065.03771 4552.37727 3065.59074 4552.30571 3066.15721 4552.30571 3066.72819 4552.37727 3067.29466 4552.51927 3067.84769 4552.72946 3068.37857 4553.00453 3068.87892 4553.34014 3069.34085 4553.731 3069.75707 4554.17094 3070.12102 4554.65303 3070.42697 4555.16966 3070.67008 4555.71269 3070.84652 4556.27355 3070.95351 4556.8434 3070.98936 Z M 4582.8434 3123.98936 L 4583.41325 3123.95351 4583.97411 3123.84652 4584.51714 3123.67008 4585.03377 3123.42697 4585.51586 3123.12102 4585.9558 3122.75707 4586.34666 3122.34085 4586.68227 3121.87892 4586.95734 3121.37857 4587.16753 3120.84769 4587.30953 3120.29466 4587.38109 3119.72819 4587.38109 3119.15721 4587.30953 3118.59074 4587.16753 3118.03771 4586.95734 3117.50683 4586.68227 3117.00648 4586.34666 3116.54455 4585.9558 3116.12833 4585.51586 3115.76438 4585.03377 3115.45843 4584.51714 3115.21532 4583.97411 3115.03888 4583.41325 3114.93189 4582.8434 3114.89604 4582.27355 3114.93189 4581.71269 3115.03888 4581.16966 3115.21532 4580.65303 3115.45843 4580.17094 3115.76438 4579.731 3116.12833 4579.34014 3116.54455 4579.00453 3117.00648 4578.72946 3117.50683 4578.51927 3118.03771 4578.37727 3118.59074 4578.30571 3119.15721 4578.30571 3119.72819 4578.37727 3120.29466 4578.51927 3120.84769 4578.72946 3121.37857 4579.00453 3121.87892 4579.34014 3122.34085 4579.731 3122.75707 4580.17094 3123.12102 4580.65303 3123.42697 4581.16966 3123.67008 4581.71269 3123.84652 4582.27355 3123.95351 4582.8434 3123.98936 Z M 4671.49144 3131.90883 L 4672.05791 3131.98039 4672.62889 3131.98039 4673.19536 3131.90883 4673.74839 3131.76683 4674.27927 3131.55664 4674.77962 3131.28157 4675.24155 3130.94596 4675.65777 3130.5551 4676.02172 3130.11516 4676.32767 3129.63307 4676.57078 3129.11644 4676.74722 3128.57341 4676.85421 3128.01255 4676.89006 3127.4427 4676.85421 3126.87285 4676.74722 3126.31199 4676.57078 3125.76896 4676.32767 3125.25233 4676.02172 3124.77024 4675.65777 3124.3303 4675.24155 3123.93944 4674.77962 3123.60383 4674.27927 3123.32876 4673.74839 3123.11857 4673.19536 3122.97657 4672.62889 3122.90501 4672.05791 3122.90501 4671.49144 3122.97657 4670.93841 3123.11857 4670.40753 3123.32876 4669.90718 3123.60383 4669.44525 3123.93944 4669.02903 3124.3303 4668.66508 3124.77024 4668.35913 3125.25233 4668.11602 3125.76896 4667.93958 3126.31199 4667.83259 3126.87285 4667.79674 3127.4427 4667.83259 3128.01255 4667.93958 3128.57341 4668.11602 3129.11644 4668.35913 3129.63307 4668.66508 3130.11516 4669.02903 3130.5551 4669.44525 3130.94596 4669.90718 3131.28157 4670.40753 3131.55664 4670.93841 3131.76683 4671.49144 3131.90883 Z M 4681.49144 3131.90883 L 4682.05791 3131.98039 4682.62889 3131.98039 4683.19536 3131.90883 4683.74839 3131.76683 4684.27927 3131.55664 4684.77962 3131.28157 4685.24155 3130.94596 4685.65777 3130.5551 4686.02172 3130.11516 4686.32767 3129.63307 4686.57078 3129.11644 4686.74722 3128.57341 4686.85421 3128.01255 4686.89006 3127.4427 4686.85421 3126.87285 4686.74722 3126.31199 4686.57078 3125.76896 4686.32767 3125.25233 4686.02172 3124.77024 4685.65777 3124.3303 4685.24155 3123.93944 4684.77962 3123.60383 4684.27927 3123.32876 4683.74839 3123.11857 4683.19536 3122.97657 4682.62889 3122.90501 4682.05791 3122.90501 4681.49144 3122.97657 4680.93841 3123.11857 4680.40753 3123.32876 4679.90718 3123.60383 4679.44525 3123.93944 4679.02903 3124.3303 4678.66508 3124.77024 4678.35913 3125.25233 4678.11602 3125.76896 4677.93958 3126.31199 4677.83259 3126.87285 4677.79674 3127.4427 4677.83259 3128.01255 4677.93958 3128.57341 4678.11602 3129.11644 4678.35913 3129.63307 4678.66508 3130.11516 4679.02903 3130.5551 4679.44525 3130.94596 4679.90718 3131.28157 4680.40753 3131.55664 4680.93841 3131.76683 4681.49144 3131.90883 Z M 4688.99144 3230.40883 L 4689.55791 3230.48039 4690.12889 3230.48039 4690.69536 3230.40883 4691.24839 3230.26683 4691.77927 3230.05664 4692.27962 3229.78157 4692.74155 3229.44596 4693.15777 3229.0551 4693.52172 3228.61516 4693.82767 3228.13307 4694.07078 3227.61644 4694.24722 3227.07341 4694.35421 3226.51255 4694.39006 3225.9427 4694.35421 3225.37285 4694.24722 3224.81199 4694.07078 3224.26896 4693.82767 3223.75233 4693.52172 3223.27024 4693.15777 3222.8303 4692.74155 3222.43944 4692.27962 3222.10383 4691.77927 3221.82876 4691.24839 3221.61857 4690.69536 3221.47657 4690.12889 3221.40501 4689.55791 3221.40501 4688.99144 3221.47657 4688.43841 3221.61857 4687.90753 3221.82876 4687.40718 3222.10383 4686.94525 3222.43944 4686.52903 3222.8303 4686.16508 3223.27024 4685.85913 3223.75233 4685.61602 3224.26896 4685.43958 3224.81199 4685.33259 3225.37285 4685.29674 3225.9427 4685.33259 3226.51255 4685.43958 3227.07341 4685.61602 3227.61644 4685.85913 3228.13307 4686.16508 3228.61516 4686.52903 3229.0551 4686.94525 3229.44596 4687.40718 3229.78157 4687.90753 3230.05664 4688.43841 3230.26683 4688.99144 3230.40883 Z M 4668.99144 3230.40883 L 4669.55791 3230.48039 4670.12889 3230.48039 4670.69536 3230.40883 4671.24839 3230.26683 4671.77927 3230.05664 4672.27962 3229.78157 4672.74155 3229.44596 4673.15777 3229.0551 4673.52172 3228.61516 4673.82767 3228.13307 4674.07078 3227.61644 4674.24722 3227.07341 4674.35421 3226.51255 4674.39006 3225.9427 4674.35421 3225.37285 4674.24722 3224.81199 4674.07078 3224.26896 4673.82767 3223.75233 4673.52172 3223.27024 4673.15777 3222.8303 4672.74155 3222.43944 4672.27962 3222.10383 4671.77927 3221.82876 4671.24839 3221.61857 4670.69536 3221.47657 4670.12889 3221.40501 4669.55791 3221.40501 4668.99144 3221.47657 4668.43841 3221.61857 4667.90753 3221.82876 4667.40718 3222.10383 4666.94525 3222.43944 4666.52903 3222.8303 4666.16508 3223.27024 4665.85913 3223.75233 4665.61602 3224.26896 4665.43958 3224.81199 4665.33259 3225.37285 4665.29674 3225.9427 4665.33259 3226.51255 4665.43958 3227.07341 4665.61602 3227.61644 4665.85913 3228.13307 4666.16508 3228.61516 4666.52903 3229.0551 4666.94525 3229.44596 4667.40718 3229.78157 4667.90753 3230.05664 4668.43841 3230.26683 4668.99144 3230.40883 Z M 4680.12889 3230.48039 L 4680.69536 3230.40883 4681.24839 3230.26683 4681.77927 3230.05664 4682.27962 3229.78157 4682.74155 3229.44596 4683.15777 3229.0551 4683.52172 3228.61516 4683.82767 3228.13307 4684.07078 3227.61644 4684.24722 3227.07341 4684.35421 3226.51255 4684.39006 3225.9427 4684.35421 3225.37285 4684.24722 3224.81199 4684.07078 3224.26896 4683.82767 3223.75233 4683.52172 3223.27024 4683.15777 3222.8303 4682.74155 3222.43944 4682.27962 3222.10383 4681.77927 3221.82876 4681.24839 3221.61857 4680.69536 3221.47657 4680.12889 3221.40501 4679.55791 3221.40501 4678.99144 3221.47657 4678.43841 3221.61857 4677.90753 3221.82876 4677.40718 3222.10383 4676.94525 3222.43944 4676.52903 3222.8303 4676.16508 3223.27024 4675.85913 3223.75233 4675.61602 3224.26896 4675.43958 3224.81199 4675.33259 3225.37285 4675.29674 3225.9427 4675.33259 3226.51255 4675.43958 3227.07341 4675.61602 3227.61644 4675.85913 3228.13307 4676.16508 3228.61516 4676.52903 3229.0551 4676.94525 3229.44596 4677.40718 3229.78157 4677.90753 3230.05664 4678.43841 3230.26683 4678.99144 3230.40883 4679.55791 3230.48039 4680.12889 3230.48039 Z M 4720.786 3221.00794 L 4721.33423 3220.97201 4721.87308 3220.86483 4722.39332 3220.68822 4722.88607 3220.44523 4723.34288 3220.14 4723.75595 3219.77775 4724.1182 3219.36468 4724.42343 3218.90787 4724.66642 3218.41512 4724.84303 3217.89488 4724.95021 3217.35603 4724.98614 3216.8078 4724.95021 3216.25957 4724.84303 3215.72072 4724.66642 3215.20048 4724.42343 3214.70773 4724.1182 3214.25092 4723.75595 3213.83785 4723.34288 3213.4756 4722.88607 3213.17037 4722.39332 3212.92738 4721.87308 3212.75077 4721.33423 3212.64359 4720.786 3212.60766 4720.23777 3212.64359 4719.69892 3212.75077 4719.17868 3212.92738 4718.68593 3213.17037 4718.22912 3213.4756 4717.81605 3213.83785 4717.4538 3214.25092 4717.14857 3214.70773 4716.90558 3215.20048 4716.72897 3215.72072 4716.62179 3216.25957 4716.58586 3216.8078 4716.62179 3217.35603 4716.72897 3217.89488 4716.90558 3218.41512 4717.14857 3218.90787 4717.4538 3219.36468 4717.81605 3219.77775 4718.22912 3220.14 4718.68593 3220.44523 4719.17868 3220.68822 4719.69892 3220.86483 4720.23777 3220.97201 4720.786 3221.00794 Z M 4720.786 3113.92134 L 4721.33423 3113.88541 4721.87308 3113.77823 4722.39332 3113.60162 4722.88607 3113.35863 4723.34288 3113.0534 4723.75595 3112.69115 4724.1182 3112.27808 4724.42343 3111.82127 4724.66642 3111.32852 4724.84303 3110.80828 4724.95021 3110.26943 4724.98614 3109.7212 4724.95021 3109.17297 4724.84303 3108.63412 4724.66642 3108.11388 4724.42343 3107.62113 4724.1182 3107.16432 4723.75595 3106.75125 4723.34288 3106.389 4722.88607 3106.08377 4722.39332 3105.84078 4721.87308 3105.66417 4721.33423 3105.55699 4720.786 3105.52106 4720.23777 3105.55699 4719.69892 3105.66417 4719.17868 3105.84078 4718.68593 3106.08377 4718.22912 3106.389 4717.81605 3106.75125 4717.4538 3107.16432 4717.14857 3107.62113 4716.90558 3108.11388 4716.72897 3108.63412 4716.62179 3109.17297 4716.58586 3109.7212 4716.62179 3110.26943 4716.72897 3110.80828 4716.90558 3111.32852 4717.14857 3111.82127 4717.4538 3112.27808 4717.81605 3112.69115 4718.22912 3113.0534 4718.68593 3113.35863 4719.17868 3113.60162 4719.69892 3113.77823 4720.23777 3113.88541 4720.786 3113.92134 Z M 4730.6285 3201.32284 L 4731.17673 3201.28691 4731.71558 3201.17973 4732.23582 3201.00312 4732.72857 3200.76013 4733.18538 3200.4549 4733.59845 3200.09265 4733.9607 3199.67958 4734.26593 3199.22277 4734.50892 3198.73002 4734.68553 3198.20978 4734.79271 3197.67093 4734.82864 3197.1227 4734.79271 3196.57447 4734.68553 3196.03562 4734.50892 3195.51538 4734.26593 3195.02263 4733.9607 3194.56582 4733.59845 3194.15275 4733.18538 3193.7905 4732.72857 3193.48527 4732.23582 3193.24228 4731.71558 3193.06567 4731.17673 3192.95849 4730.6285 3192.92256 4730.08027 3192.95849 4729.54142 3193.06567 4729.02118 3193.24228 4728.52843 3193.48527 4728.07162 3193.7905 4727.65855 3194.15275 4727.2963 3194.56582 4726.99107 3195.02263 4726.74808 3195.51538 4726.57147 3196.03562 4726.46429 3196.57447 4726.42836 3197.1227 4726.46429 3197.67093 4726.57147 3198.20978 4726.74808 3198.73002 4726.99107 3199.22277 4727.2963 3199.67958 4727.65855 3200.09265 4728.07162 3200.4549 4728.52843 3200.76013 4729.02118 3201.00312 4729.54142 3201.17973 4730.08027 3201.28691 4730.6285 3201.32284 Z M 4730.6285 3181.63784 L 4731.17673 3181.60191 4731.71558 3181.49473 4732.23582 3181.31812 4732.72857 3181.07513 4733.18538 3180.7699 4733.59845 3180.40765 4733.9607 3179.99458 4734.26593 3179.53777 4734.50892 3179.04502 4734.68553 3178.52478 4734.79271 3177.98593 4734.82864 3177.4377 4734.79271 3176.88947 4734.68553 3176.35062 4734.50892 3175.83038 4734.26593 3175.33763 4733.9607 3174.88082 4733.59845 3174.46775 4733.18538 3174.1055 4732.72857 3173.80027 4732.23582 3173.55728 4731.71558 3173.38067 4731.17673 3173.27349 4730.6285 3173.23756 4730.08027 3173.27349 4729.54142 3173.38067 4729.02118 3173.55728 4728.52843 3173.80027 4728.07162 3174.1055 4727.65855 3174.46775 4727.2963 3174.88082 4726.99107 3175.33763 4726.74808 3175.83038 4726.57147 3176.35062 4726.46429 3176.88947 4726.42836 3177.4377 4726.46429 3177.98593 4726.57147 3178.52478 4726.74808 3179.04502 4726.99107 3179.53777 4727.2963 3179.99458 4727.65855 3180.40765 4728.07162 3180.7699 4728.52843 3181.07513 4729.02118 3181.31812 4729.54142 3181.49473 4730.08027 3181.60191 4730.6285 3181.63784 Z M 4730.6285 3113.92134 L 4731.17673 3113.88541 4731.71558 3113.77823 4732.23582 3113.60162 4732.72857 3113.35863 4733.18538 3113.0534 4733.59845 3112.69115 4733.9607 3112.27808 4734.26593 3111.82127 4734.50892 3111.32852 4734.68553 3110.80828 4734.79271 3110.26943 4734.82864 3109.7212 4734.79271 3109.17297 4734.68553 3108.63412 4734.50892 3108.11388 4734.26593 3107.62113 4733.9607 3107.16432 4733.59845 3106.75125 4733.18538 3106.389 4732.72857 3106.08377 4732.23582 3105.84078 4731.71558 3105.66417 4731.17673 3105.55699 4730.6285 3105.52106 4730.08027 3105.55699 4729.54142 3105.66417 4729.02118 3105.84078 4728.52843 3106.08377 4728.07162 3106.389 4727.65855 3106.75125 4727.2963 3107.16432 4726.99107 3107.62113 4726.74808 3108.11388 4726.57147 3108.63412 4726.46429 3109.17297 4726.42836 3109.7212 4726.46429 3110.26943 4726.57147 3110.80828 4726.74808 3111.32852 4726.99107 3111.82127 4727.2963 3112.27808 4727.65855 3112.69115 4728.07162 3113.0534 4728.52843 3113.35863 4729.02118 3113.60162 4729.54142 3113.77823 4730.08027 3113.88541 4730.6285 3113.92134 Z M 4740.4707 3152.11044 L 4741.01893 3152.07451 4741.55778 3151.96733 4742.07802 3151.79072 4742.57077 3151.54773 4743.02758 3151.2425 4743.44065 3150.88025 4743.8029 3150.46718 4744.10813 3150.01037 4744.35112 3149.51762 4744.52773 3148.99738 4744.63491 3148.45853 4744.67084 3147.9103 4744.63491 3147.36207 4744.52773 3146.82322 4744.35112 3146.30298 4744.10813 3145.81023 4743.8029 3145.35342 4743.44065 3144.94035 4743.02758 3144.5781 4742.57077 3144.27287 4742.07802 3144.02988 4741.55778 3143.85327 4741.01893 3143.74609 4740.4707 3143.71016 4739.92247 3143.74609 4739.38362 3143.85327 4738.86338 3144.02988 4738.37063 3144.27287 4737.91382 3144.5781 4737.50075 3144.94035 4737.1385 3145.35342 4736.83327 3145.81023 4736.59028 3146.30298 4736.41367 3146.82322 4736.30649 3147.36207 4736.27056 3147.9103 4736.30649 3148.45853 4736.41367 3148.99738 4736.59028 3149.51762 4736.83327 3150.01037 4737.1385 3150.46718 4737.50075 3150.88025 4737.91382 3151.2425 4738.37063 3151.54773 4738.86338 3151.79072 4739.38362 3151.96733 4739.92247 3152.07451 4740.4707 3152.11044 Z M 4750.3125 3142.26794 L 4750.86073 3142.23201 4751.39958 3142.12483 4751.91982 3141.94822 4752.41257 3141.70523 4752.86938 3141.4 4753.28245 3141.03775 4753.6447 3140.62468 4753.94993 3140.16787 4754.19292 3139.67512 4754.36953 3139.15488 4754.47671 3138.61603 4754.51264 3138.0678 4754.47671 3137.51957 4754.36953 3136.98072 4754.19292 3136.46048 4753.94993 3135.96773 4753.6447 3135.51092 4753.28245 3135.09785 4752.86938 3134.7356 4752.41257 3134.43037 4751.91982 3134.18738 4751.39958 3134.01077 4750.86073 3133.90359 4750.3125 3133.86766 4749.76427 3133.90359 4749.22542 3134.01077 4748.70518 3134.18738 4748.21243 3134.43037 4747.75562 3134.7356 4747.34255 3135.09785 4746.9803 3135.51092 4746.67507 3135.96773 4746.43208 3136.46048 4746.25547 3136.98072 4746.14829 3137.51957 4746.11236 3138.0678 4746.14829 3138.61603 4746.25547 3139.15488 4746.43208 3139.67512 4746.67507 3140.16787 4746.9803 3140.62468 4747.34255 3141.03775 4747.75562 3141.4 4748.21243 3141.70523 4748.70518 3141.94822 4749.22542 3142.12483 4749.76427 3142.23201 4750.3125 3142.26794 Z M 4720.786 3201.32284 L 4721.33423 3201.28691 4721.87308 3201.17973 4722.39332 3201.00312 4722.88607 3200.76013 4723.34288 3200.4549 4723.75595 3200.09265 4724.1182 3199.67958 4724.42343 3199.22277 4724.66642 3198.73002 4724.84303 3198.20978 4724.95021 3197.67093 4724.98614 3197.1227 4724.95021 3196.57447 4724.84303 3196.03562 4724.66642 3195.51538 4724.42343 3195.02263 4724.1182 3194.56582 4723.75595 3194.15275 4723.34288 3193.7905 4722.88607 3193.48527 4722.39332 3193.24228 4721.87308 3193.06567 4721.33423 3192.95849 4720.786 3192.92256 4720.23777 3192.95849 4719.69892 3193.06567 4719.17868 3193.24228 4718.68593 3193.48527 4718.22912 3193.7905 4717.81605 3194.15275 4717.4538 3194.56582 4717.14857 3195.02263 4716.90558 3195.51538 4716.72897 3196.03562 4716.62179 3196.57447 4716.58586 3197.1227 4716.62179 3197.67093 4716.72897 3198.20978 4716.90558 3198.73002 4717.14857 3199.22277 4717.4538 3199.67958 4717.81605 3200.09265 4718.22912 3200.4549 4718.68593 3200.76013 4719.17868 3201.00312 4719.69892 3201.17973 4720.23777 3201.28691 4720.786 3201.32284 Z M 4720.786 3230.85044 L 4721.33423 3230.81451 4721.87308 3230.70733 4722.39332 3230.53072 4722.88607 3230.28773 4723.34288 3229.9825 4723.75595 3229.62025 4724.1182 3229.20718 4724.42343 3228.75037 4724.66642 3228.25762 4724.84303 3227.73738 4724.95021 3227.19853 4724.98614 3226.6503 4724.95021 3226.10207 4724.84303 3225.56322 4724.66642 3225.04298 4724.42343 3224.55023 4724.1182 3224.09342 4723.75595 3223.68035 4723.34288 3223.3181 4722.88607 3223.01287 4722.39332 3222.76988 4721.87308 3222.59327 4721.33423 3222.48609 4720.786 3222.45016 4720.23777 3222.48609 4719.69892 3222.59327 4719.17868 3222.76988 4718.68593 3223.01287 4718.22912 3223.3181 4717.81605 3223.68035 4717.4538 3224.09342 4717.14857 3224.55023 4716.90558 3225.04298 4716.72897 3225.56322 4716.62179 3226.10207 4716.58586 3226.6503 4716.62179 3227.19853 4716.72897 3227.73738 4716.90558 3228.25762 4717.14857 3228.75037 4717.4538 3229.20718 4717.81605 3229.62025 4718.22912 3229.9825 4718.68593 3230.28773 4719.17868 3230.53072 4719.69892 3230.70733 4720.23777 3230.81451 4720.786 3230.85044 Z M 4740.4707 3142.26794 L 4741.01893 3142.23201 4741.55778 3142.12483 4742.07802 3141.94822 4742.57077 3141.70523 4743.02758 3141.4 4743.44065 3141.03775 4743.8029 3140.62468 4744.10813 3140.16787 4744.35112 3139.67512 4744.52773 3139.15488 4744.63491 3138.61603 4744.67084 3138.0678 4744.63491 3137.51957 4744.52773 3136.98072 4744.35112 3136.46048 4744.10813 3135.96773 4743.8029 3135.51092 4743.44065 3135.09785 4743.02758 3134.7356 4742.57077 3134.43037 4742.07802 3134.18738 4741.55778 3134.01077 4741.01893 3133.90359 4740.4707 3133.86766 4739.92247 3133.90359 4739.38362 3134.01077 4738.86338 3134.18738 4738.37063 3134.43037 4737.91382 3134.7356 4737.50075 3135.09785 4737.1385 3135.51092 4736.83327 3135.96773 4736.59028 3136.46048 4736.41367 3136.98072 4736.30649 3137.51957 4736.27056 3138.0678 4736.30649 3138.61603 4736.41367 3139.15488 4736.59028 3139.67512 4736.83327 3140.16787 4737.1385 3140.62468 4737.50075 3141.03775 4737.91382 3141.4 4738.37063 3141.70523 4738.86338 3141.94822 4739.38362 3142.12483 4739.92247 3142.23201 4740.4707 3142.26794 Z M 4750.3125 3128.48844 L 4750.86073 3128.45251 4751.39958 3128.34533 4751.91982 3128.16872 4752.41257 3127.92573 4752.86938 3127.6205 4753.28245 3127.25825 4753.6447 3126.84518 4753.94993 3126.38837 4754.19292 3125.89562 4754.36953 3125.37538 4754.47671 3124.83653 4754.51264 3124.2883 4754.47671 3123.74007 4754.36953 3123.20122 4754.19292 3122.68098 4753.94993 3122.18823 4753.6447 3121.73142 4753.28245 3121.31835 4752.86938 3120.9561 4752.41257 3120.65087 4751.91982 3120.40788 4751.39958 3120.23127 4750.86073 3120.12409 4750.3125 3120.08816 4749.76427 3120.12409 4749.22542 3120.23127 4748.70518 3120.40788 4748.21243 3120.65087 4747.75562 3120.9561 4747.34255 3121.31835 4746.9803 3121.73142 4746.67507 3122.18823 4746.43208 3122.68098 4746.25547 3123.20122 4746.14829 3123.74007 4746.11236 3124.2883 4746.14829 3124.83653 4746.25547 3125.37538 4746.43208 3125.89562 4746.67507 3126.38837 4746.9803 3126.84518 4747.34255 3127.25825 4747.75562 3127.6205 4748.21243 3127.92573 4748.70518 3128.16872 4749.22542 3128.34533 4749.76427 3128.45251 4750.3125 3128.48844 Z M 4739.92247 3181.60211 L 4740.4707 3181.63804 4741.01893 3181.60211 4741.55778 3181.49493 4742.07802 3181.31832 4742.57077 3181.07533 4743.02758 3180.7701 4743.44065 3180.40785 4743.8029 3179.99478 4744.10813 3179.53797 4744.35112 3179.04522 4744.52773 3178.52498 4744.63491 3177.98613 4744.67084 3177.4379 4744.63491 3176.88967 4744.52773 3176.35082 4744.35112 3175.83058 4744.10813 3175.33783 4743.8029 3174.88102 4743.44065 3174.46795 4743.02758 3174.1057 4742.57077 3173.80047 4742.07802 3173.55748 4741.55778 3173.38087 4741.01893 3173.27369 4740.4707 3173.23776 4739.92247 3173.27369 4739.38362 3173.38087 4738.86338 3173.55748 4738.37063 3173.80047 4737.91382 3174.1057 4737.50075 3174.46795 4737.1385 3174.88102 4736.83327 3175.33783 4736.59028 3175.83058 4736.41367 3176.35082 4736.30649 3176.88967 4736.27056 3177.4379 4736.30649 3177.98613 4736.41367 3178.52498 4736.59028 3179.04522 4736.83327 3179.53797 4737.1385 3179.99478 4737.50075 3180.40785 4737.91382 3180.7701 4738.37063 3181.07533 4738.86338 3181.31832 4739.38362 3181.49493 4739.92247 3181.60211 Z M 4750.3125 3181.63804 L 4750.86073 3181.60211 4751.39958 3181.49493 4751.91982 3181.31832 4752.41257 3181.07533 4752.86938 3180.7701 4753.28245 3180.40785 4753.6447 3179.99478 4753.94993 3179.53797 4754.19292 3179.04522 4754.36953 3178.52498 4754.47671 3177.98613 4754.51264 3177.4379 4754.47671 3176.88967 4754.36953 3176.35082 4754.19292 3175.83058 4753.94993 3175.33783 4753.6447 3174.88102 4753.28245 3174.46795 4752.86938 3174.1057 4752.41257 3173.80047 4751.91982 3173.55748 4751.39958 3173.38087 4750.86073 3173.27369 4750.3125 3173.23776 4749.76427 3173.27369 4749.22542 3173.38087 4748.70518 3173.55748 4748.21243 3173.80047 4747.75562 3174.1057 4747.34255 3174.46795 4746.9803 3174.88102 4746.67507 3175.33783 4746.43208 3175.83058 4746.25547 3176.35082 4746.14829 3176.88967 4746.11236 3177.4379 4746.14829 3177.98613 4746.25547 3178.52498 4746.43208 3179.04522 4746.67507 3179.53797 4746.9803 3179.99478 4747.34255 3180.40785 4747.75562 3180.7701 4748.21243 3181.07533 4748.70518 3181.31832 4749.22542 3181.49493 4749.76427 3181.60211 4750.3125 3181.63804 Z M 4720.786 3181.63784 L 4721.33423 3181.60191 4721.87308 3181.49473 4722.39332 3181.31812 4722.88607 3181.07513 4723.34288 3180.7699 4723.75595 3180.40765 4724.1182 3179.99458 4724.42343 3179.53777 4724.66642 3179.04502 4724.84303 3178.52478 4724.95021 3177.98593 4724.98614 3177.4377 4724.95021 3176.88947 4724.84303 3176.35062 4724.66642 3175.83038 4724.42343 3175.33763 4724.1182 3174.88082 4723.75595 3174.46775 4723.34288 3174.1055 4722.88607 3173.80027 4722.39332 3173.55728 4721.87308 3173.38067 4721.33423 3173.27349 4720.786 3173.23756 4720.23777 3173.27349 4719.69892 3173.38067 4719.17868 3173.55728 4718.68593 3173.80027 4718.22912 3174.1055 4717.81605 3174.46775 4717.4538 3174.88082 4717.14857 3175.33763 4716.90558 3175.83038 4716.72897 3176.35062 4716.62179 3176.88947 4716.58586 3177.4377 4716.62179 3177.98593 4716.72897 3178.52478 4716.90558 3179.04502 4717.14857 3179.53777 4717.4538 3179.99458 4717.81605 3180.40765 4718.22912 3180.7699 4718.68593 3181.07513 4719.17868 3181.31812 4719.69892 3181.49473 4720.23777 3181.60191 4720.786 3181.63784 Z M 4750.3125 3152.11044 L 4750.86073 3152.07451 4751.39958 3151.96733 4751.91982 3151.79072 4752.41257 3151.54773 4752.86938 3151.2425 4753.28245 3150.88025 4753.6447 3150.46718 4753.94993 3150.01037 4754.19292 3149.51762 4754.36953 3148.99738 4754.47671 3148.45853 4754.51264 3147.9103 4754.47671 3147.36207 4754.36953 3146.82322 4754.19292 3146.30298 4753.94993 3145.81023 4753.6447 3145.35342 4753.28245 3144.94035 4752.86938 3144.5781 4752.41257 3144.27287 4751.91982 3144.02988 4751.39958 3143.85327 4750.86073 3143.74609 4750.3125 3143.71016 4749.76427 3143.74609 4749.22542 3143.85327 4748.70518 3144.02988 4748.21243 3144.27287 4747.75562 3144.5781 4747.34255 3144.94035 4746.9803 3145.35342 4746.67507 3145.81023 4746.43208 3146.30298 4746.25547 3146.82322 4746.14829 3147.36207 4746.11236 3147.9103 4746.14829 3148.45853 4746.25547 3148.99738 4746.43208 3149.51762 4746.67507 3150.01037 4746.9803 3150.46718 4747.34255 3150.88025 4747.75562 3151.2425 4748.21243 3151.54773 4748.70518 3151.79072 4749.22542 3151.96733 4749.76427 3152.07451 4750.3125 3152.11044 Z M 4730.08027 3128.45231 L 4730.6285 3128.48824 4731.17673 3128.45231 4731.71558 3128.34513 4732.23582 3128.16852 4732.72857 3127.92553 4733.18538 3127.6203 4733.59845 3127.25805 4733.9607 3126.84498 4734.26593 3126.38817 4734.50892 3125.89542 4734.68553 3125.37518 4734.79271 3124.83633 4734.82864 3124.2881 4734.79271 3123.73987 4734.68553 3123.20102 4734.50892 3122.68078 4734.26593 3122.18803 4733.9607 3121.73122 4733.59845 3121.31815 4733.18538 3120.9559 4732.72857 3120.65067 4732.23582 3120.40768 4731.71558 3120.23107 4731.17673 3120.12389 4730.6285 3120.08796 4730.08027 3120.12389 4729.54142 3120.23107 4729.02118 3120.40768 4728.52843 3120.65067 4728.07162 3120.9559 4727.65855 3121.31815 4727.2963 3121.73122 4726.99107 3122.18803 4726.74808 3122.68078 4726.57147 3123.20102 4726.46429 3123.73987 4726.42836 3124.2881 4726.46429 3124.83633 4726.57147 3125.37518 4726.74808 3125.89542 4726.99107 3126.38817 4727.2963 3126.84498 4727.65855 3127.25805 4728.07162 3127.6203 4728.52843 3127.92553 4729.02118 3128.16852 4729.54142 3128.34513 4730.08027 3128.45231 Z M 4750.3125 3161.95294 L 4750.86073 3161.91701 4751.39958 3161.80983 4751.91982 3161.63322 4752.41257 3161.39023 4752.86938 3161.085 4753.28245 3160.72275 4753.6447 3160.30968 4753.94993 3159.85287 4754.19292 3159.36012 4754.36953 3158.83988 4754.47671 3158.30103 4754.51264 3157.7528 4754.47671 3157.20457 4754.36953 3156.66572 4754.19292 3156.14548 4753.94993 3155.65273 4753.6447 3155.19592 4753.28245 3154.78285 4752.86938 3154.4206 4752.41257 3154.11537 4751.91982 3153.87238 4751.39958 3153.69577 4750.86073 3153.58859 4750.3125 3153.55266 4749.76427 3153.58859 4749.22542 3153.69577 4748.70518 3153.87238 4748.21243 3154.11537 4747.75562 3154.4206 4747.34255 3154.78285 4746.9803 3155.19592 4746.67507 3155.65273 4746.43208 3156.14548 4746.25547 3156.66572 4746.14829 3157.20457 4746.11236 3157.7528 4746.14829 3158.30103 4746.25547 3158.83988 4746.43208 3159.36012 4746.67507 3159.85287 4746.9803 3160.30968 4747.34255 3160.72275 4747.75562 3161.085 4748.21243 3161.39023 4748.70518 3161.63322 4749.22542 3161.80983 4749.76427 3161.91701 4750.3125 3161.95294 Z M 4740.4707 3128.48844 L 4741.01893 3128.45251 4741.55778 3128.34533 4742.07802 3128.16872 4742.57077 3127.92573 4743.02758 3127.6205 4743.44065 3127.25825 4743.8029 3126.84518 4744.10813 3126.38837 4744.35112 3125.89562 4744.52773 3125.37538 4744.63491 3124.83653 4744.67084 3124.2883 4744.63491 3123.74007 4744.52773 3123.20122 4744.35112 3122.68098 4744.10813 3122.18823 4743.8029 3121.73142 4743.44065 3121.31835 4743.02758 3120.9561 4742.57077 3120.65087 4742.07802 3120.40788 4741.55778 3120.23127 4741.01893 3120.12409 4740.4707 3120.08816 4739.92247 3120.12409 4739.38362 3120.23127 4738.86338 3120.40788 4738.37063 3120.65087 4737.91382 3120.9561 4737.50075 3121.31835 4737.1385 3121.73142 4736.83327 3122.18823 4736.59028 3122.68098 4736.41367 3123.20122 4736.30649 3123.74007 4736.27056 3124.2883 4736.30649 3124.83653 4736.41367 3125.37538 4736.59028 3125.89562 4736.83327 3126.38837 4737.1385 3126.84518 4737.50075 3127.25825 4737.91382 3127.6205 4738.37063 3127.92573 4738.86338 3128.16872 4739.38362 3128.34533 4739.92247 3128.45251 4740.4707 3128.48844 Z M 4466.81017 3162.7016 L 4467.32766 3162.737 4469.30034 3162.737 4469.81783 3162.7016 4470.31227 3162.59886 4470.78811 3162.42974 4471.23649 3162.19741 4471.64907 3161.90618 4472.01814 3161.56149 4472.33684 3161.16975 4472.59923 3160.73827 4472.80043 3160.27508 4472.93668 3159.7888 4473.00544 3159.2885 4473.00544 3158.7835 4472.93668 3158.2832 4472.80043 3157.79692 4472.59923 3157.33373 4472.33684 3156.90225 4472.01814 3156.51051 4471.64907 3156.16582 4471.23649 3155.87459 4470.78811 3155.64226 4470.31227 3155.47314 4469.81783 3155.3704 4469.30034 3155.335 4467.32766 3155.335 4466.81017 3155.3704 4466.31573 3155.47314 4465.83989 3155.64226 4465.39151 3155.87459 4464.97893 3156.16582 4464.60986 3156.51051 4464.29116 3156.90225 4464.02877 3157.33373 4463.82757 3157.79692 4463.69132 3158.2832 4463.62256 3158.7835 4463.62256 3159.2885 4463.69132 3159.7888 4463.82757 3160.27508 4464.02877 3160.73827 4464.29116 3161.16975 4464.60986 3161.56149 4464.97893 3161.90618 4465.39151 3162.19741 4465.83989 3162.42974 4466.31573 3162.59886 4466.81017 3162.7016 Z M 4569.30034 3122.737 L 4569.81783 3122.7016 4570.31227 3122.59886 4570.78811 3122.42974 4571.23649 3122.19741 4571.64907 3121.90618 4572.01814 3121.56149 4572.33684 3121.16975 4572.59923 3120.73827 4572.80043 3120.27508 4572.93668 3119.7888 4573.00544 3119.2885 4573.00544 3118.7835 4572.93668 3118.2832 4572.80043 3117.79692 4572.59923 3117.33373 4572.33684 3116.90225 4572.01814 3116.51051 4571.64907 3116.16582 4571.23649 3115.87459 4570.78811 3115.64226 4570.31227 3115.47314 4569.81783 3115.3704 4569.30034 3115.335 4567.32766 3115.335 4566.81017 3115.3704 4566.31573 3115.47314 4565.83989 3115.64226 4565.39151 3115.87459 4564.97893 3116.16582 4564.60986 3116.51051 4564.29116 3116.90225 4564.02877 3117.33373 4563.82757 3117.79692 4563.69132 3118.2832 4563.62256 3118.7835 4563.62256 3119.2885 4563.69132 3119.7888 4563.82757 3120.27508 4564.02877 3120.73827 4564.29116 3121.16975 4564.60986 3121.56149 4564.97893 3121.90618 4565.39151 3122.19741 4565.83989 3122.42974 4566.31573 3122.59886 4566.81017 3122.7016 4567.32766 3122.737 4569.30034 3122.737 Z M 4466.81017 3282.7016 L 4467.32766 3282.737 4469.30034 3282.737 4469.81783 3282.7016 4470.31227 3282.59886 4470.78811 3282.42974 4471.23649 3282.19741 4471.64907 3281.90618 4472.01814 3281.56149 4472.33684 3281.16975 4472.59923 3280.73827 4472.80043 3280.27508 4472.93668 3279.7888 4473.00544 3279.2885 4473.00544 3278.7835 4472.93668 3278.2832 4472.80043 3277.79692 4472.59923 3277.33373 4472.33684 3276.90225 4472.01814 3276.51051 4471.64907 3276.16582 4471.23649 3275.87459 4470.78811 3275.64226 4470.31227 3275.47314 4469.81783 3275.3704 4469.30034 3275.335 4467.32766 3275.335 4466.81017 3275.3704 4466.31573 3275.47314 4465.83989 3275.64226 4465.39151 3275.87459 4464.97893 3276.16582 4464.60986 3276.51051 4464.29116 3276.90225 4464.02877 3277.33373 4463.82757 3277.79692 4463.69132 3278.2832 4463.62256 3278.7835 4463.62256 3279.2885 4463.69132 3279.7888 4463.82757 3280.27508 4464.02877 3280.73827 4464.29116 3281.16975 4464.60986 3281.56149 4464.97893 3281.90618 4465.39151 3282.19741 4465.83989 3282.42974 4466.31573 3282.59886 4466.81017 3282.7016 Z M 4566.81017 3112.7016 L 4567.32766 3112.737 4569.30034 3112.737 4569.81783 3112.7016 4570.31227 3112.59886 4570.78811 3112.42974 4571.23649 3112.19741 4571.64907 3111.90618 4572.01814 3111.56149 4572.33684 3111.16975 4572.59923 3110.73827 4572.80043 3110.27508 4572.93668 3109.7888 4573.00544 3109.2885 4573.00544 3108.7835 4572.93668 3108.2832 4572.80043 3107.79692 4572.59923 3107.33373 4572.33684 3106.90225 4572.01814 3106.51051 4571.64907 3106.16582 4571.23649 3105.87459 4570.78811 3105.64226 4570.31227 3105.47314 4569.81783 3105.3704 4569.30034 3105.335 4567.32766 3105.335 4566.81017 3105.3704 4566.31573 3105.47314 4565.83989 3105.64226 4565.39151 3105.87459 4564.97893 3106.16582 4564.60986 3106.51051 4564.29116 3106.90225 4564.02877 3107.33373 4563.82757 3107.79692 4563.69132 3108.2832 4563.62256 3108.7835 4563.62256 3109.2885 4563.69132 3109.7888 4563.82757 3110.27508 4564.02877 3110.73827 4564.29116 3111.16975 4564.60986 3111.56149 4564.97893 3111.90618 4565.39151 3112.19741 4565.83989 3112.42974 4566.31573 3112.59886 4566.81017 3112.7016 Z M 4466.81017 3152.7016 L 4467.32766 3152.737 4469.30034 3152.737 4469.81783 3152.7016 4470.31227 3152.59886 4470.78811 3152.42974 4471.23649 3152.19741 4471.64907 3151.90618 4472.01814 3151.56149 4472.33684 3151.16975 4472.59923 3150.73827 4472.80043 3150.27508 4472.93668 3149.7888 4473.00544 3149.2885 4473.00544 3148.7835 4472.93668 3148.2832 4472.80043 3147.79692 4472.59923 3147.33373 4472.33684 3146.90225 4472.01814 3146.51051 4471.64907 3146.16582 4471.23649 3145.87459 4470.78811 3145.64226 4470.31227 3145.47314 4469.81783 3145.3704 4469.30034 3145.335 4467.32766 3145.335 4466.81017 3145.3704 4466.31573 3145.47314 4465.83989 3145.64226 4465.39151 3145.87459 4464.97893 3146.16582 4464.60986 3146.51051 4464.29116 3146.90225 4464.02877 3147.33373 4463.82757 3147.79692 4463.69132 3148.2832 4463.62256 3148.7835 4463.62256 3149.2885 4463.69132 3149.7888 4463.82757 3150.27508 4464.02877 3150.73827 4464.29116 3151.16975 4464.60986 3151.56149 4464.97893 3151.90618 4465.39151 3152.19741 4465.83989 3152.42974 4466.31573 3152.59886 4466.81017 3152.7016 Z M 4566.81017 3132.7016 L 4567.32766 3132.737 4569.30034 3132.737 4569.81783 3132.7016 4570.31227 3132.59886 4570.78811 3132.42974 4571.23649 3132.19741 4571.64907 3131.90618 4572.01814 3131.56149 4572.33684 3131.16975 4572.59923 3130.73827 4572.80043 3130.27508 4572.93668 3129.7888 4573.00544 3129.2885 4573.00544 3128.7835 4572.93668 3128.2832 4572.80043 3127.79692 4572.59923 3127.33373 4572.33684 3126.90225 4572.01814 3126.51051 4571.64907 3126.16582 4571.23649 3125.87459 4570.78811 3125.64226 4570.31227 3125.47314 4569.81783 3125.3704 4569.30034 3125.335 4567.32766 3125.335 4566.81017 3125.3704 4566.31573 3125.47314 4565.83989 3125.64226 4565.39151 3125.87459 4564.97893 3126.16582 4564.60986 3126.51051 4564.29116 3126.90225 4564.02877 3127.33373 4563.82757 3127.79692 4563.69132 3128.2832 4563.62256 3128.7835 4563.62256 3129.2885 4563.69132 3129.7888 4563.82757 3130.27508 4564.02877 3130.73827 4564.29116 3131.16975 4564.60986 3131.56149 4564.97893 3131.90618 4565.39151 3132.19741 4565.83989 3132.42974 4566.31573 3132.59886 4566.81017 3132.7016 Z M 4469.30034 3172.737 L 4469.81783 3172.7016 4470.31227 3172.59886 4470.78811 3172.42974 4471.23649 3172.19741 4471.64907 3171.90618 4472.01814 3171.56149 4472.33684 3171.16975 4472.59923 3170.73827 4472.80043 3170.27508 4472.93668 3169.7888 4473.00544 3169.2885 4473.00544 3168.7835 4472.93668 3168.2832 4472.80043 3167.79692 4472.59923 3167.33373 4472.33684 3166.90225 4472.01814 3166.51051 4471.64907 3166.16582 4471.23649 3165.87459 4470.78811 3165.64226 4470.31227 3165.47314 4469.81783 3165.3704 4469.30034 3165.335 4467.32766 3165.335 4466.81017 3165.3704 4466.31573 3165.47314 4465.83989 3165.64226 4465.39151 3165.87459 4464.97893 3166.16582 4464.60986 3166.51051 4464.29116 3166.90225 4464.02877 3167.33373 4463.82757 3167.79692 4463.69132 3168.2832 4463.62256 3168.7835 4463.62256 3169.2885 4463.69132 3169.7888 4463.82757 3170.27508 4464.02877 3170.73827 4464.29116 3171.16975 4464.60986 3171.56149 4464.97893 3171.90618 4465.39151 3172.19741 4465.83989 3172.42974 4466.31573 3172.59886 4466.81017 3172.7016 4467.32766 3172.737 4469.30034 3172.737 Z M 4566.81017 3182.7016 L 4567.32766 3182.737 4569.30034 3182.737 4569.81783 3182.7016 4570.31227 3182.59886 4570.78811 3182.42974 4571.23649 3182.19741 4571.64907 3181.90618 4572.01814 3181.56149 4572.33684 3181.16975 4572.59923 3180.73827 4572.80043 3180.27508 4572.93668 3179.7888 4573.00544 3179.2885 4573.00544 3178.7835 4572.93668 3178.2832 4572.80043 3177.79692 4572.59923 3177.33373 4572.33684 3176.90225 4572.01814 3176.51051 4571.64907 3176.16582 4571.23649 3175.87459 4570.78811 3175.64226 4570.31227 3175.47314 4569.81783 3175.3704 4569.30034 3175.335 4567.32766 3175.335 4566.81017 3175.3704 4566.31573 3175.47314 4565.83989 3175.64226 4565.39151 3175.87459 4564.97893 3176.16582 4564.60986 3176.51051 4564.29116 3176.90225 4564.02877 3177.33373 4563.82757 3177.79692 4563.69132 3178.2832 4563.62256 3178.7835 4563.62256 3179.2885 4563.69132 3179.7888 4563.82757 3180.27508 4564.02877 3180.73827 4564.29116 3181.16975 4564.60986 3181.56149 4564.97893 3181.90618 4565.39151 3182.19741 4565.83989 3182.42974 4566.31573 3182.59886 4566.81017 3182.7016 Z M 4469.30034 3182.737 L 4469.81783 3182.7016 4470.31227 3182.59886 4470.78811 3182.42974 4471.23649 3182.19741 4471.64907 3181.90618 4472.01814 3181.56149 4472.33684 3181.16975 4472.59923 3180.73827 4472.80043 3180.27508 4472.93668 3179.7888 4473.00544 3179.2885 4473.00544 3178.7835 4472.93668 3178.2832 4472.80043 3177.79692 4472.59923 3177.33373 4472.33684 3176.90225 4472.01814 3176.51051 4471.64907 3176.16582 4471.23649 3175.87459 4470.78811 3175.64226 4470.31227 3175.47314 4469.81783 3175.3704 4469.30034 3175.335 4467.32766 3175.335 4466.81017 3175.3704 4466.31573 3175.47314 4465.83989 3175.64226 4465.39151 3175.87459 4464.97893 3176.16582 4464.60986 3176.51051 4464.29116 3176.90225 4464.02877 3177.33373 4463.82757 3177.79692 4463.69132 3178.2832 4463.62256 3178.7835 4463.62256 3179.2885 4463.69132 3179.7888 4463.82757 3180.27508 4464.02877 3180.73827 4464.29116 3181.16975 4464.60986 3181.56149 4464.97893 3181.90618 4465.39151 3182.19741 4465.83989 3182.42974 4466.31573 3182.59886 4466.81017 3182.7016 4467.32766 3182.737 4469.30034 3182.737 Z M 4566.81017 3172.7016 L 4567.32766 3172.737 4569.30034 3172.737 4569.81783 3172.7016 4570.31227 3172.59886 4570.78811 3172.42974 4571.23649 3172.19741 4571.64907 3171.90618 4572.01814 3171.56149 4572.33684 3171.16975 4572.59923 3170.73827 4572.80043 3170.27508 4572.93668 3169.7888 4573.00544 3169.2885 4573.00544 3168.7835 4572.93668 3168.2832 4572.80043 3167.79692 4572.59923 3167.33373 4572.33684 3166.90225 4572.01814 3166.51051 4571.64907 3166.16582 4571.23649 3165.87459 4570.78811 3165.64226 4570.31227 3165.47314 4569.81783 3165.3704 4569.30034 3165.335 4567.32766 3165.335 4566.81017 3165.3704 4566.31573 3165.47314 4565.83989 3165.64226 4565.39151 3165.87459 4564.97893 3166.16582 4564.60986 3166.51051 4564.29116 3166.90225 4564.02877 3167.33373 4563.82757 3167.79692 4563.69132 3168.2832 4563.62256 3168.7835 4563.62256 3169.2885 4563.69132 3169.7888 4563.82757 3170.27508 4564.02877 3170.73827 4564.29116 3171.16975 4564.60986 3171.56149 4564.97893 3171.90618 4565.39151 3172.19741 4565.83989 3172.42974 4566.31573 3172.59886 4566.81017 3172.7016 Z M 4466.81017 3142.7016 L 4467.32766 3142.737 4469.30034 3142.737 4469.81783 3142.7016 4470.31227 3142.59886 4470.78811 3142.42974 4471.23649 3142.19741 4471.64907 3141.90618 4472.01814 3141.56149 4472.33684 3141.16975 4472.59923 3140.73827 4472.80043 3140.27508 4472.93668 3139.7888 4473.00544 3139.2885 4473.00544 3138.7835 4472.93668 3138.2832 4472.80043 3137.79692 4472.59923 3137.33373 4472.33684 3136.90225 4472.01814 3136.51051 4471.64907 3136.16582 4471.23649 3135.87459 4470.78811 3135.64226 4470.31227 3135.47314 4469.81783 3135.3704 4469.30034 3135.335 4467.32766 3135.335 4466.81017 3135.3704 4466.31573 3135.47314 4465.83989 3135.64226 4465.39151 3135.87459 4464.97893 3136.16582 4464.60986 3136.51051 4464.29116 3136.90225 4464.02877 3137.33373 4463.82757 3137.79692 4463.69132 3138.2832 4463.62256 3138.7835 4463.62256 3139.2885 4463.69132 3139.7888 4463.82757 3140.27508 4464.02877 3140.73827 4464.29116 3141.16975 4464.60986 3141.56149 4464.97893 3141.90618 4465.39151 3142.19741 4465.83989 3142.42974 4466.31573 3142.59886 4466.81017 3142.7016 Z M 4569.30034 3222.737 L 4569.81783 3222.7016 4570.31227 3222.59886 4570.78811 3222.42974 4571.23649 3222.19741 4571.64907 3221.90618 4572.01814 3221.56149 4572.33684 3221.16975 4572.59923 3220.73827 4572.80043 3220.27508 4572.93668 3219.7888 4573.00544 3219.2885 4573.00544 3218.7835 4572.93668 3218.2832 4572.80043 3217.79692 4572.59923 3217.33373 4572.33684 3216.90225 4572.01814 3216.51051 4571.64907 3216.16582 4571.23649 3215.87459 4570.78811 3215.64226 4570.31227 3215.47314 4569.81783 3215.3704 4569.30034 3215.335 4567.32766 3215.335 4566.81017 3215.3704 4566.31573 3215.47314 4565.83989 3215.64226 4565.39151 3215.87459 4564.97893 3216.16582 4564.60986 3216.51051 4564.29116 3216.90225 4564.02877 3217.33373 4563.82757 3217.79692 4563.69132 3218.2832 4563.62256 3218.7835 4563.62256 3219.2885 4563.69132 3219.7888 4563.82757 3220.27508 4564.02877 3220.73827 4564.29116 3221.16975 4564.60986 3221.56149 4564.97893 3221.90618 4565.39151 3222.19741 4565.83989 3222.42974 4566.31573 3222.59886 4566.81017 3222.7016 4567.32766 3222.737 4569.30034 3222.737 Z M 4469.30034 3202.737 L 4469.81783 3202.7016 4470.31227 3202.59886 4470.78811 3202.42974 4471.23649 3202.19741 4471.64907 3201.90618 4472.01814 3201.56149 4472.33684 3201.16975 4472.59923 3200.73827 4472.80043 3200.27508 4472.93668 3199.7888 4473.00544 3199.2885 4473.00544 3198.7835 4472.93668 3198.2832 4472.80043 3197.79692 4472.59923 3197.33373 4472.33684 3196.90225 4472.01814 3196.51051 4471.64907 3196.16582 4471.23649 3195.87459 4470.78811 3195.64226 4470.31227 3195.47314 4469.81783 3195.3704 4469.30034 3195.335 4467.32766 3195.335 4466.81017 3195.3704 4466.31573 3195.47314 4465.83989 3195.64226 4465.39151 3195.87459 4464.97893 3196.16582 4464.60986 3196.51051 4464.29116 3196.90225 4464.02877 3197.33373 4463.82757 3197.79692 4463.69132 3198.2832 4463.62256 3198.7835 4463.62256 3199.2885 4463.69132 3199.7888 4463.82757 3200.27508 4464.02877 3200.73827 4464.29116 3201.16975 4464.60986 3201.56149 4464.97893 3201.90618 4465.39151 3202.19741 4465.83989 3202.42974 4466.31573 3202.59886 4466.81017 3202.7016 4467.32766 3202.737 4469.30034 3202.737 Z M 4566.81017 3192.7016 L 4567.32766 3192.737 4569.30034 3192.737 4569.81783 3192.7016 4570.31227 3192.59886 4570.78811 3192.42974 4571.23649 3192.19741 4571.64907 3191.90618 4572.01814 3191.56149 4572.33684 3191.16975 4572.59923 3190.73827 4572.80043 3190.27508 4572.93668 3189.7888 4573.00544 3189.2885 4573.00544 3188.7835 4572.93668 3188.2832 4572.80043 3187.79692 4572.59923 3187.33373 4572.33684 3186.90225 4572.01814 3186.51051 4571.64907 3186.16582 4571.23649 3185.87459 4570.78811 3185.64226 4570.31227 3185.47314 4569.81783 3185.3704 4569.30034 3185.335 4567.32766 3185.335 4566.81017 3185.3704 4566.31573 3185.47314 4565.83989 3185.64226 4565.39151 3185.87459 4564.97893 3186.16582 4564.60986 3186.51051 4564.29116 3186.90225 4564.02877 3187.33373 4563.82757 3187.79692 4563.69132 3188.2832 4563.62256 3188.7835 4563.62256 3189.2885 4563.69132 3189.7888 4563.82757 3190.27508 4564.02877 3190.73827 4564.29116 3191.16975 4564.60986 3191.56149 4564.97893 3191.90618 4565.39151 3192.19741 4565.83989 3192.42974 4566.31573 3192.59886 4566.81017 3192.7016 Z M 4466.81017 3132.7016 L 4467.32766 3132.737 4469.30034 3132.737 4469.81783 3132.7016 4470.31227 3132.59886 4470.78811 3132.42974 4471.23649 3132.19741 4471.64907 3131.90618 4472.01814 3131.56149 4472.33684 3131.16975 4472.59923 3130.73827 4472.80043 3130.27508 4472.93668 3129.7888 4473.00544 3129.2885 4473.00544 3128.7835 4472.93668 3128.2832 4472.80043 3127.79692 4472.59923 3127.33373 4472.33684 3126.90225 4472.01814 3126.51051 4471.64907 3126.16582 4471.23649 3125.87459 4470.78811 3125.64226 4470.31227 3125.47314 4469.81783 3125.3704 4469.30034 3125.335 4467.32766 3125.335 4466.81017 3125.3704 4466.31573 3125.47314 4465.83989 3125.64226 4465.39151 3125.87459 4464.97893 3126.16582 4464.60986 3126.51051 4464.29116 3126.90225 4464.02877 3127.33373 4463.82757 3127.79692 4463.69132 3128.2832 4463.62256 3128.7835 4463.62256 3129.2885 4463.69132 3129.7888 4463.82757 3130.27508 4464.02877 3130.73827 4464.29116 3131.16975 4464.60986 3131.56149 4464.97893 3131.90618 4465.39151 3132.19741 4465.83989 3132.42974 4466.31573 3132.59886 4466.81017 3132.7016 Z M 4569.30034 3212.737 L 4569.81783 3212.7016 4570.31227 3212.59886 4570.78811 3212.42974 4571.23649 3212.19741 4571.64907 3211.90618 4572.01814 3211.56149 4572.33684 3211.16975 4572.59923 3210.73827 4572.80043 3210.27508 4572.93668 3209.7888 4573.00544 3209.2885 4573.00544 3208.7835 4572.93668 3208.2832 4572.80043 3207.79692 4572.59923 3207.33373 4572.33684 3206.90225 4572.01814 3206.51051 4571.64907 3206.16582 4571.23649 3205.87459 4570.78811 3205.64226 4570.31227 3205.47314 4569.81783 3205.3704 4569.30034 3205.335 4567.32766 3205.335 4566.81017 3205.3704 4566.31573 3205.47314 4565.83989 3205.64226 4565.39151 3205.87459 4564.97893 3206.16582 4564.60986 3206.51051 4564.29116 3206.90225 4564.02877 3207.33373 4563.82757 3207.79692 4563.69132 3208.2832 4563.62256 3208.7835 4563.62256 3209.2885 4563.69132 3209.7888 4563.82757 3210.27508 4564.02877 3210.73827 4564.29116 3211.16975 4564.60986 3211.56149 4564.97893 3211.90618 4565.39151 3212.19741 4565.83989 3212.42974 4566.31573 3212.59886 4566.81017 3212.7016 4567.32766 3212.737 4569.30034 3212.737 Z M 4466.81017 3212.7016 L 4467.32766 3212.737 4469.30034 3212.737 4469.81783 3212.7016 4470.31227 3212.59886 4470.78811 3212.42974 4471.23649 3212.19741 4471.64907 3211.90618 4472.01814 3211.56149 4472.33684 3211.16975 4472.59923 3210.73827 4472.80043 3210.27508 4472.93668 3209.7888 4473.00544 3209.2885 4473.00544 3208.7835 4472.93668 3208.2832 4472.80043 3207.79692 4472.59923 3207.33373 4472.33684 3206.90225 4472.01814 3206.51051 4471.64907 3206.16582 4471.23649 3205.87459 4470.78811 3205.64226 4470.31227 3205.47314 4469.81783 3205.3704 4469.30034 3205.335 4467.32766 3205.335 4466.81017 3205.3704 4466.31573 3205.47314 4465.83989 3205.64226 4465.39151 3205.87459 4464.97893 3206.16582 4464.60986 3206.51051 4464.29116 3206.90225 4464.02877 3207.33373 4463.82757 3207.79692 4463.69132 3208.2832 4463.62256 3208.7835 4463.62256 3209.2885 4463.69132 3209.7888 4463.82757 3210.27508 4464.02877 3210.73827 4464.29116 3211.16975 4464.60986 3211.56149 4464.97893 3211.90618 4465.39151 3212.19741 4465.83989 3212.42974 4466.31573 3212.59886 4466.81017 3212.7016 Z M 4566.81017 3202.7016 L 4567.32766 3202.737 4569.30034 3202.737 4569.81783 3202.7016 4570.31227 3202.59886 4570.78811 3202.42974 4571.23649 3202.19741 4571.64907 3201.90618 4572.01814 3201.56149 4572.33684 3201.16975 4572.59923 3200.73827 4572.80043 3200.27508 4572.93668 3199.7888 4573.00544 3199.2885 4573.00544 3198.7835 4572.93668 3198.2832 4572.80043 3197.79692 4572.59923 3197.33373 4572.33684 3196.90225 4572.01814 3196.51051 4571.64907 3196.16582 4571.23649 3195.87459 4570.78811 3195.64226 4570.31227 3195.47314 4569.81783 3195.3704 4569.30034 3195.335 4567.32766 3195.335 4566.81017 3195.3704 4566.31573 3195.47314 4565.83989 3195.64226 4565.39151 3195.87459 4564.97893 3196.16582 4564.60986 3196.51051 4564.29116 3196.90225 4564.02877 3197.33373 4563.82757 3197.79692 4563.69132 3198.2832 4563.62256 3198.7835 4563.62256 3199.2885 4563.69132 3199.7888 4563.82757 3200.27508 4564.02877 3200.73827 4564.29116 3201.16975 4564.60986 3201.56149 4564.97893 3201.90618 4565.39151 3202.19741 4565.83989 3202.42974 4566.31573 3202.59886 4566.81017 3202.7016 Z M 4466.81017 3192.7016 L 4467.32766 3192.737 4469.30034 3192.737 4469.81783 3192.7016 4470.31227 3192.59886 4470.78811 3192.42974 4471.23649 3192.19741 4471.64907 3191.90618 4472.01814 3191.56149 4472.33684 3191.16975 4472.59923 3190.73827 4472.80043 3190.27508 4472.93668 3189.7888 4473.00544 3189.2885 4473.00544 3188.7835 4472.93668 3188.2832 4472.80043 3187.79692 4472.59923 3187.33373 4472.33684 3186.90225 4472.01814 3186.51051 4471.64907 3186.16582 4471.23649 3185.87459 4470.78811 3185.64226 4470.31227 3185.47314 4469.81783 3185.3704 4469.30034 3185.335 4467.32766 3185.335 4466.81017 3185.3704 4466.31573 3185.47314 4465.83989 3185.64226 4465.39151 3185.87459 4464.97893 3186.16582 4464.60986 3186.51051 4464.29116 3186.90225 4464.02877 3187.33373 4463.82757 3187.79692 4463.69132 3188.2832 4463.62256 3188.7835 4463.62256 3189.2885 4463.69132 3189.7888 4463.82757 3190.27508 4464.02877 3190.73827 4464.29116 3191.16975 4464.60986 3191.56149 4464.97893 3191.90618 4465.39151 3192.19741 4465.83989 3192.42974 4466.31573 3192.59886 4466.81017 3192.7016 Z M 4469.30034 3222.737 L 4469.81783 3222.7016 4470.31227 3222.59886 4470.78811 3222.42974 4471.23649 3222.19741 4471.64907 3221.90618 4472.01814 3221.56149 4472.33684 3221.16975 4472.59923 3220.73827 4472.80043 3220.27508 4472.93668 3219.7888 4473.00544 3219.2885 4473.00544 3218.7835 4472.93668 3218.2832 4472.80043 3217.79692 4472.59923 3217.33373 4472.33684 3216.90225 4472.01814 3216.51051 4471.64907 3216.16582 4471.23649 3215.87459 4470.78811 3215.64226 4470.31227 3215.47314 4469.81783 3215.3704 4469.30034 3215.335 4467.32766 3215.335 4466.81017 3215.3704 4466.31573 3215.47314 4465.83989 3215.64226 4465.39151 3215.87459 4464.97893 3216.16582 4464.60986 3216.51051 4464.29116 3216.90225 4464.02877 3217.33373 4463.82757 3217.79692 4463.69132 3218.2832 4463.62256 3218.7835 4463.62256 3219.2885 4463.69132 3219.7888 4463.82757 3220.27508 4464.02877 3220.73827 4464.29116 3221.16975 4464.60986 3221.56149 4464.97893 3221.90618 4465.39151 3222.19741 4465.83989 3222.42974 4466.31573 3222.59886 4466.81017 3222.7016 4467.32766 3222.737 4469.30034 3222.737 Z M 4466.81017 3122.7016 L 4467.32766 3122.737 4469.30034 3122.737 4469.81783 3122.7016 4470.31227 3122.59886 4470.78811 3122.42974 4471.23649 3122.19741 4471.64907 3121.90618 4472.01814 3121.56149 4472.33684 3121.16975 4472.59923 3120.73827 4472.80043 3120.27508 4472.93668 3119.7888 4473.00544 3119.2885 4473.00544 3118.7835 4472.93668 3118.2832 4472.80043 3117.79692 4472.59923 3117.33373 4472.33684 3116.90225 4472.01814 3116.51051 4471.64907 3116.16582 4471.23649 3115.87459 4470.78811 3115.64226 4470.31227 3115.47314 4469.81783 3115.3704 4469.30034 3115.335 4467.32766 3115.335 4466.81017 3115.3704 4466.31573 3115.47314 4465.83989 3115.64226 4465.39151 3115.87459 4464.97893 3116.16582 4464.60986 3116.51051 4464.29116 3116.90225 4464.02877 3117.33373 4463.82757 3117.79692 4463.69132 3118.2832 4463.62256 3118.7835 4463.62256 3119.2885 4463.69132 3119.7888 4463.82757 3120.27508 4464.02877 3120.73827 4464.29116 3121.16975 4464.60986 3121.56149 4464.97893 3121.90618 4465.39151 3122.19741 4465.83989 3122.42974 4466.31573 3122.59886 4466.81017 3122.7016 Z M 4566.81017 3252.7016 L 4567.32766 3252.737 4569.30034 3252.737 4569.81783 3252.7016 4570.31227 3252.59886 4570.78811 3252.42974 4571.23649 3252.19741 4571.64907 3251.90618 4572.01814 3251.56149 4572.33684 3251.16975 4572.59923 3250.73827 4572.80043 3250.27508 4572.93668 3249.7888 4573.00544 3249.2885 4573.00544 3248.7835 4572.93668 3248.2832 4572.80043 3247.79692 4572.59923 3247.33373 4572.33684 3246.90225 4572.01814 3246.51051 4571.64907 3246.16582 4571.23649 3245.87459 4570.78811 3245.64226 4570.31227 3245.47314 4569.81783 3245.3704 4569.30034 3245.335 4567.32766 3245.335 4566.81017 3245.3704 4566.31573 3245.47314 4565.83989 3245.64226 4565.39151 3245.87459 4564.97893 3246.16582 4564.60986 3246.51051 4564.29116 3246.90225 4564.02877 3247.33373 4563.82757 3247.79692 4563.69132 3248.2832 4563.62256 3248.7835 4563.62256 3249.2885 4563.69132 3249.7888 4563.82757 3250.27508 4564.02877 3250.73827 4564.29116 3251.16975 4564.60986 3251.56149 4564.97893 3251.90618 4565.39151 3252.19741 4565.83989 3252.42974 4566.31573 3252.59886 4566.81017 3252.7016 Z M 4469.30034 3112.737 L 4469.81783 3112.7016 4470.31227 3112.59886 4470.78811 3112.42974 4471.23649 3112.19741 4471.64907 3111.90618 4472.01814 3111.56149 4472.33684 3111.16975 4472.59923 3110.73827 4472.80043 3110.27508 4472.93668 3109.7888 4473.00544 3109.2885 4473.00544 3108.7835 4472.93668 3108.2832 4472.80043 3107.79692 4472.59923 3107.33373 4472.33684 3106.90225 4472.01814 3106.51051 4471.64907 3106.16582 4471.23649 3105.87459 4470.78811 3105.64226 4470.31227 3105.47314 4469.81783 3105.3704 4469.30034 3105.335 4467.32766 3105.335 4466.81017 3105.3704 4466.31573 3105.47314 4465.83989 3105.64226 4465.39151 3105.87459 4464.97893 3106.16582 4464.60986 3106.51051 4464.29116 3106.90225 4464.02877 3107.33373 4463.82757 3107.79692 4463.69132 3108.2832 4463.62256 3108.7835 4463.62256 3109.2885 4463.69132 3109.7888 4463.82757 3110.27508 4464.02877 3110.73827 4464.29116 3111.16975 4464.60986 3111.56149 4464.97893 3111.90618 4465.39151 3112.19741 4465.83989 3112.42974 4466.31573 3112.59886 4466.81017 3112.7016 4467.32766 3112.737 4469.30034 3112.737 Z M 4486.04156 3082.83413 L 4486.43247 3082.7689 4486.80732 3082.64022 4487.15587 3082.45159 4487.46862 3082.20816 4487.73704 3081.91658 4487.95381 3081.5848 4488.11301 3081.22186 4488.2103 3080.83767 4488.24303 3080.4427 4488.2103 3080.04773 4488.11301 3079.66354 4487.95381 3079.3006 4487.73704 3078.96882 4487.46862 3078.67724 4487.15587 3078.43381 4486.80732 3078.24518 4486.43247 3078.1165 4486.04156 3078.05127 4485.64524 3078.05127 4485.25433 3078.1165 4484.87948 3078.24518 4484.53093 3078.43381 4484.21818 3078.67724 4483.94976 3078.96882 4483.73299 3079.3006 4483.57379 3079.66354 4483.4765 3080.04773 4483.44377 3080.4427 4483.4765 3080.83767 4483.57379 3081.22186 4483.73299 3081.5848 4483.94976 3081.91658 4484.21818 3082.20816 4484.53093 3082.45159 4484.87948 3082.64022 4485.25433 3082.7689 4485.64524 3082.83413 4486.04156 3082.83413 Z M 4472.68709 3287.536 L 4472.59923 3287.33373 4472.33684 3286.90225 4472.01814 3286.51051 4471.64907 3286.16582 4471.23649 3285.87459 4470.78811 3285.64226 4470.314 3285.47376 4470.314 3287.536 4472.68709 3287.536 Z M 4572.68709 3157.536 L 4572.59923 3157.33373 4572.33684 3156.90225 4572.01814 3156.51051 4571.64907 3156.16582 4571.23649 3155.87459 4570.78811 3155.64226 4570.314 3155.47376 4570.314 3157.536 4572.68709 3157.536 Z M 4470.314 3292.59824 L 4470.78811 3292.42974 4471.23649 3292.19741 4471.64907 3291.90618 4472.01814 3291.56149 4472.33684 3291.16975 4472.59923 3290.73827 4472.68709 3290.536 4470.314 3290.536 4470.314 3292.59824 Z M 4470.314 3225.47376 L 4470.314 3227.536 4472.68709 3227.536 4472.59923 3227.33373 4472.33684 3226.90225 4472.01814 3226.51051 4471.64907 3226.16582 4471.23649 3225.87459 4470.78811 3225.64226 4470.314 3225.47376 Z M 4470.314 3232.59824 L 4470.78811 3232.42974 4471.23649 3232.19741 4471.64907 3231.90618 4472.01814 3231.56149 4472.33684 3231.16975 4472.59923 3230.73827 4472.68709 3230.536 4470.314 3230.536 4470.314 3232.59824 Z M 4464.02877 3227.33373 L 4463.94091 3227.536 4466.314 3227.536 4466.314 3225.47376 4465.83989 3225.64226 4465.39151 3225.87459 4464.97893 3226.16582 4464.60986 3226.51051 4464.29116 3226.90225 4464.02877 3227.33373 Z M 4466.314 3232.59824 L 4466.314 3230.536 4463.94091 3230.536 4464.02877 3230.73827 4464.29116 3231.16975 4464.60986 3231.56149 4464.97893 3231.90618 4465.39151 3232.19741 4465.83989 3232.42974 4466.314 3232.59824 Z M 4466.314 3287.536 L 4466.314 3285.47376 4465.83989 3285.64226 4465.39151 3285.87459 4464.97893 3286.16582 4464.60986 3286.51051 4464.29116 3286.90225 4464.02877 3287.33373 4463.94091 3287.536 4466.314 3287.536 Z M 4566.314 3162.59824 L 4566.314 3160.536 4563.94091 3160.536 4564.02877 3160.73827 4564.29116 3161.16975 4564.60986 3161.56149 4564.97893 3161.90618 4565.39151 3162.19741 4565.83989 3162.42974 4566.314 3162.59824 Z M 4570.314 3162.59824 L 4570.78811 3162.42974 4571.23649 3162.19741 4571.64907 3161.90618 4572.01814 3161.56149 4572.33684 3161.16975 4572.59923 3160.73827 4572.68709 3160.536 4570.314 3160.536 4570.314 3162.59824 Z M 4466.314 3292.59824 L 4466.314 3290.536 4463.94091 3290.536 4464.02877 3290.73827 4464.29116 3291.16975 4464.60986 3291.56149 4464.97893 3291.90618 4465.39151 3292.19741 4465.83989 3292.42974 4466.314 3292.59824 Z M 4566.314 3157.536 L 4566.314 3155.47376 4565.83989 3155.64226 4565.39151 3155.87459 4564.97893 3156.16582 4564.60986 3156.51051 4564.29116 3156.90225 4564.02877 3157.33373 4563.94091 3157.536 4566.314 3157.536 Z M 4554.92018 3044.51948 L 4554.92018 3042.33272 4554.65303 3042.45843 4554.17094 3042.76438 4553.731 3043.12833 4553.34014 3043.54455 4553.00453 3044.00648 4552.72445 3044.51948 4554.92018 3044.51948 Z M 4554.65303 3050.42697 L 4554.92018 3050.55268 4554.92018 3048.36593 4552.7245 3048.36593 4553.00453 3048.87892 4553.34014 3049.34085 4553.731 3049.75707 4554.17094 3050.12102 4554.65303 3050.42697 Z M 4558.76663 3050.55268 L 4559.03377 3050.42697 4559.51586 3050.12102 4559.9558 3049.75707 4560.34666 3049.34085 4560.68227 3048.87892 4560.9623 3048.36593 4558.76663 3048.36593 4558.76663 3050.55268 Z M 4558.76663 3042.33272 L 4558.76663 3044.51948 4560.9623 3044.51948 4560.68227 3044.00648 4560.34666 3043.54455 4559.9558 3043.12833 4559.51586 3042.76438 4559.03377 3042.45843 4558.76663 3042.33272 Z M 4754.12257 3107.9714 L 4753.94993 3107.62133 4753.6447 3107.16452 4753.28245 3106.75145 4752.86938 3106.3892 4752.41257 3106.08397 4752.0625 3105.91133 4752.0625 3107.9714 4754.12257 3107.9714 Z M 4748.5625 3113.53147 L 4748.5625 3111.4714 4746.50243 3111.4714 4746.67507 3111.82147 4746.9803 3112.27828 4747.34255 3112.69135 4747.75562 3113.0536 4748.21243 3113.35883 4748.5625 3113.53147 Z M 4738.7207 3113.53147 L 4738.7207 3111.4714 4736.66063 3111.4714 4736.83327 3111.82147 4737.1385 3112.27828 4737.50075 3112.69135 4737.91382 3113.0536 4738.37063 3113.35883 4738.7207 3113.53147 Z M 4744.28077 3107.9714 L 4744.10813 3107.62133 4743.8029 3107.16452 4743.44065 3106.75145 4743.02758 3106.3892 4742.57077 3106.08397 4742.2207 3105.91133 4742.2207 3107.9714 4744.28077 3107.9714 Z M 4752.0625 3111.4714 L 4752.0625 3113.53147 4752.41257 3113.35883 4752.86938 3113.0536 4753.28245 3112.69135 4753.6447 3112.27828 4753.94993 3111.82147 4754.12257 3111.4714 4752.0625 3111.4714 Z M 4738.7207 3107.9714 L 4738.7207 3105.91133 4738.37063 3106.08397 4737.91382 3106.3892 4737.50075 3106.75145 4737.1385 3107.16452 4736.83327 3107.62133 4736.66063 3107.9714 4738.7207 3107.9714 Z M 4742.2207 3111.4714 L 4742.2207 3113.53147 4742.57077 3113.35883 4743.02758 3113.0536 4743.44065 3112.69135 4743.8029 3112.27828 4744.10813 3111.82147 4744.28077 3111.4714 4742.2207 3111.4714 Z M 4748.5625 3107.9714 L 4748.5625 3105.91133 4748.21243 3106.08397 4747.75562 3106.3892 4747.34255 3106.75145 4746.9803 3107.16452 4746.67507 3107.62133 4746.50243 3107.9714 4748.5625 3107.9714 Z \"]]~0~GND~1~1~2~1~yes~0","TRACK~1~10~~4413.7 3029.8 4768.03 3029.8 4768.03 3305.39 4413.7 3305.39 4413.7 3029.8~gge6309~0","TRACK~1.1811~1~SPI_CS~4468.31 3199.04 4481.25 3199.04 4496.34 3183.94 4503.34 3183.94 4509.84 3190.44 4509.84 3217.94 4498.29 3229.5 4490.1 3229.5~gge19568~0","TRACK~2.7559~1~+3.3V~4513.021 3166.158 4504.8434 3166.158 4501.0644 3169.937 4495 3169.937~gge13014~0","TRACK~1.1811~1~START1~4710.34 3173.94 4710.43 3151.85~gge20203~0","TRACK~1.1811~1~START1~4703.281 3204.443 4713.3434 3194.3806 4713.3434 3182.9427~gge20149~0","TRACK~1.1811~1~START2~4730.63 3138.07 4735.84 3143.28 4735.84 3170.94 4733.84 3172.94 4716.84 3172.94 4708.84 3180.94 4694.34 3180.94 4683.65 3191.64 4683.65 3194.44~gge20146~0","TRACK~3.937~1~GND~4683.975 3166.532 4683.8434 3166.4004 4683.8434 3147.9427~gge20119~0","TRACK~7.874~1~GND~4591.8434 3160.9427 4596.8434 3155.9427 4596.8434 3147.4427~gge20092~0","TRACK~3.937~1~GND~4623.84 3146.94 4623.84 3149.5 4635.15 3149.5~gge14102~0","TRACK~1.1811~1~GPIO39~4691.34 3266.94 4698.84 3266.94 4700.84 3264.94 4700.84 3248.44 4707.84 3241.44 4735.34 3241.44 4738.34 3244.44~gge19989~0","TRACK~1.1811~1~GPIO36~4697.34 3263.94 4697.84 3263.44 4697.84 3247.94 4706.34 3239.44 4755.84 3239.44 4757.34 3237.94 4757.34 3213.99 4750.31 3206.97~gge19956~0","TRACK~1.1811~1~GPIO27~4694.84 3259.94 4694.84 3247.44 4704.84 3237.44 4754.34 3237.44 4755.34 3236.44 4755.34 3221.84 4750.31 3216.81~gge19913~0","TRACK~1.1811~1~GPIO25~4690.84 3256.94 4690.84 3247.94 4703.34 3235.44 4748.42 3235.44 4750.3434 3233.4427 4750.31 3226.65~gge19877~0","TRACK~1.1811~1~CAN1_L~4683.6 3241.94 4693.85 3241.94 4702.34 3233.44 4743.35 3233.44 4745.5 3231.29 4745.5 3204 4743.5 3202 4734.5 3202 4730.63 3198.13 4730.63 3197.12~gge19941~0","TRACK~1.1811~1~CAN1_H~4610.42 3224.5 4626 3224.5 4640.94 3239.44 4693.35 3239.44 4701.34 3231.44 4732.34 3231.44 4735.5 3228.29 4735.5 3213 4730.63 3208.13 4730.63 3206.97~gge6879~0","TRACK~1.1811~1~CAN0_H~4720.79 3226.65 4702.14 3226.65 4692.34 3236.44 4659.84 3236.44~gge6873~0","TRACK~1.1811~1~CAN0_L~4720.79 3216.81 4708.48 3216.81 4691.84 3233.44 4642.34 3233.44 4626.9 3218 4623.9 3218 4622.84 3216.94 4622.84 3212.44 4588.34 3177.94 4588.34 3171.94 4570.4 3154 4565.9 3154 4560.9 3149 4529.5 3149 4527.84 3150.66 4527.84 3164.34 4529.66 3166.16 4534.85 3166.16~gge6876~0","TRACK~1.1811~1~CAN1_L~4720.79 3197.12 4715.84 3202.07 4715.84 3205.94 4695.84 3225.94 4689.84 3225.94~gge18209~0","TRACK~1.1811~1~CAN0_L~4669.84 3225.94 4669.84 3231.44 4671.84 3233.44 4676.84 3233.44~gge18242~0","TRACK~1.1811~1~CAN1_L~4610.42 3229.5 4610.92 3229 4626.5 3229 4639.44 3241.94 4683.6016 3241.94~gge6885~0","TRACK~1.1811~1~SDA~4744.343 3292.943 4747.8434 3289.4426 4749.3433 3289.4426 4759.3433 3279.4424 4759.3433 3178.9426 4757.8389 3177.438 4740.4712 3177.438~gge19847~0","TRACK~1.1811~1~RX~4730.629 3177.438 4720.786 3177.438~gge19817~0","TRACK~1.1811~1~RX~4748.843 3292.943 4761.3433 3280.4427 4761.3433 3176.4426 4757.3433 3172.4426 4738.8433 3172.4426 4733.8481 3177.438 4730.6289 3177.438~gge19814~0","TRACK~1.1811~1~OUT1~4669.94 3298 4749.5 3298 4763.34 3284.16 4763.34 3140.34 4754 3131 4737.4 3131 4730.69 3124.29 4720.79 3124.29~gge7728~0","TRACK~3.937~1~GND~4480.34 3247.38 4482.28 3245.44 4501.84 3245.44 4501.8434 3239.4427~gge13528~0","TRACK~1.1811~1~SPI_MOSI~4513.3434 3145.4427 4519.8434 3138.9427 4559.3434 3138.9427~gge19745~0","TRACK~1.1811~1~SPI_SCK~4490.1 3214.5 4494.79 3214.5 4500.34 3208.94 4500.34 3186.94~gge19502~0","TRACK~1.1811~1~SPI_MOSI~4490.1021 3219.5 4494.7861 3219.5 4503.343 3210.9431 4503.343 3189.443~gge19685~0","TRACK~1.1811~1~SPI_MISO~4582.8434 3149.4427 4577.8434 3144.4427 4556.8434 3144.4427 4556.3434 3144.9427 4521.3434 3144.9427 4516.3461 3149.94 4514.34 3149.94~gge19679~0","TRACK~1.1811~1~SPI_SCK~4510.843 3141.943 4518.8434 3133.9426 4571.3433 3133.9426 4575.8433 3129.4426 4582.8433 3129.4426~gge19673~0","TRACK~1.1811~1~SPI_MISO~4490.1 3224.5 4494.29 3224.5 4506.84 3211.94 4506.84 3191.94~gge19529~0","TRACK~1.1811~1~GPIO39~4622.8434 3268.9427 4612.9367 3259.036 4580.5363 3259.036~gge19317~0","TRACK~1.1811~1~OUT_CHARGE_EN~4663.06 3254.5 4663.06 3252.44 4577.34 3252.44 4575.84 3253.94 4575.84 3261.66 4573.5 3264 4565.5 3264 4562.5 3261 4562.5 3255 4556.5 3249 4556.5 3243~gge7731~0","TRACK~1.1811~1~GPIO36~4568.314 3269.036 4579.2501 3269.036 4586.8434 3261.4427 4605.8434 3261.4427 4612.8434 3268.4427 4612.8434 3268.9427~gge19441~0","TRACK~1.1811~1~GPIO25~4552.843 3244.943 4552.843 3249.4424 4560.3433 3256.9426 4560.3433 3270.9426 4563.3433 3273.9426 4571.8433 3273.9426 4572.3433 3273.4426 4586.3433 3273.4426 4590.8433 3268.9426 4592.8433 3268.9426~gge19438~0","TRACK~1.1811~1~GPIO25~4568.31 3209.04 4561.84 3208.94 4552.84 3217.94 4552.84 3230.44~gge19384~0","TRACK~1.1811~1~GPIO27~4548.843 3242.943 4548.843 3248.9426 4557.8433 3257.9429 4557.8433 3283.4426 4582.3433 3283.4426 4582.3433 3277.9426~gge19375~0","TRACK~1.1811~1~GPIO27~4602.8434 3268.9427 4593.8434 3277.9427 4582.3434 3277.9427~gge19381~0","TRACK~1.1811~1~GPIO27~4568.314 3199.0359 4548.843 3218.5069 4548.843 3230.443~gge19323~0","TRACK~1.1811~1~SPI_MOSI~4490.1 3219.5 4481.84 3219.44 4476.84 3214.44 4431.34 3214.44 4427.84 3217.94 4427.84 3259.44 4435.84 3267.44 4446.34 3267.44 4457.94 3279.04 4468.31 3279.04~gge18600~0","TRACK~1.1811~1~RX~4439.8434 3238.9427 4431.8434 3230.9427 4431.8434 3221.9427 4433.8434 3219.9427 4446.8434 3219.9427 4451.8434 3224.9427 4451.8434 3249.4427 4454.8434 3252.4427 4461.3434 3252.4427 4464.7501 3249.036 4468.314 3249.036~gge18585~0","TRACK~1.1811~1~TX~4468.31 3259.04 4450.34 3258.94 4448.84 3257.44 4448.84 3237.94 4439.84 3228.94~gge18582~0","TRACK~1.1811~1~SCL~4468.31 3269.04 4452.34 3268.94 4446.84 3263.44 4446.84 3254.94 4440.84 3248.94 4439.84 3248.94~gge18579~0","TRACK~1.1811~1~START1~4720.786 3147.91 4730.629 3147.91~gge18504~0","TRACK~1.1811~1~START1~4702.343 3146.443 4702.343 3151.761 4702.2539 3151.8501~gge18501~0","TRACK~1.1811~1~OUT1~4682.3434 3127.4427 4691.8434 3117.9427 4704.3434 3117.9427~gge18435~0","TRACK~1.1811~1~OUT2~4672.34 3127.44 4672.37 3138.44~gge18432~0","TRACK~3.937~1~OUT2~4658.54 3140.44 4658.54 3138.44 4712.84 3138.44 4712.84 3109.7 4730.63 3109.7~gge7173~0","TRACK~1.1811~1~OUT_CONTACTORS~4635.1499 3131.3879 4618.8433 3131.3879 4618.8433 3162.943 4613.843 3162.943~gge13811~0","TRACK~1.1811~1~CAN1_H~4679.8428 3225.9431 4693.3429 3212.443 4703.843 3212.443~gge18212~0","TRACK~3.937~1~+12V~4556.8434 3036.4427 4558.8434 3034.4427 4672.3434 3034.4427 4699.3434 3061.4427 4699.3434 3081.9427 4693.7006 3087.5855 4693.7006 3087.8~gge18206~0","TRACK~3.937~1~+5V~4556.8434 3056.4427 4567.8168 3067.4161 4567.8168 3098.94~gge18203~0","TRACK~3.937~1~+5V~4582.84 3102.5 4582.84 3098.94 4499.34 3098.94 4494.65 3094.25 4494.65 3089.5~gge13363~0","TRACK~3.937~1~+3.3V~4494.651 3080.443 4518.036 3080.443~gge18200~0","TRACK~3.937~1~+3.3V~4561.84 3083.44 4556.8434 3078.4434 4556.8434 3066.4427~gge18179~0","TRACK~1.1811~1~CAN1_H~4609.4064 3241.4427 4603.8434 3235.8797 4603.8434 3225.9427 4605.2861 3224.5 4610.415 3224.5~gge14081~0","TRACK~1.1811~1~CAN1_T_1~4625.59 3241.43 4617.28 3241.44~gge14078~0","TRACK~1.1811~1~CAN1_L~4631.1031 3241.4323 4634.4303 3238.1051 4634.4303 3236.9303~gge14075~0","TRACK~1.1811~1~CAN1_U1_1~4588.58 3219.5 4589.08 3219 4594 3219 4596 3221 4596 3226 4597.84 3227.84 4597.84 3243.72 4597.8434 3245.9427 4574.94 3245.94 4573 3244 4565.5 3244 4561 3239.5 4528.8 3239.5 4527.9 3240.4 4527.9 3239.5~gge6378~0","TRACK~3.937~1~GND~4568.31 3159.04 4561.84 3158.94 4557.34 3154.44 4554.28 3154.44~gge14057~0","TRACK~1.1811~1~CAN0_H~4547.406 3167.943 4547.2729 3167.8099 4547.2729 3161.9399~gge14054~0","TRACK~1.1811~1~CAN0_T_1~4553.0928 3174.9526 4555.281 3172.7644 4555.281 3167.943~gge14051~0","TRACK~1.1811~1~CAN0_L~4547.58 3174.95 4543.34 3174.94 4541.34 3172.94 4541.34 3169.44 4538.06 3166.16 4534.85 3166.16~gge14048~0","TRACK~1.1811~1~CAN0_H~4659.843 3236.443 4641.8429 3236.443 4625.8999 3220.5 4622.3999 3220.5 4620.3398 3218.4399 4620.3398 3213.4399 4585.3398 3178.4399 4585.3398 3173.9399 4581.6802 3170.28 4581.6802 3168.78 4577.3999 3164.5 4561.3901 3164.5 4558.8301 3161.9399 4540.4399 3161.9399 4539.6602 3161.1599 4534.8501 3161.1599~gge18255~0","TRACK~1.1811~1~CAN1_U2_8~4535.8434 3186.9427 4535.3431 3187.443 4528.281 3187.443~gge14018~0","TRACK~1.1811~1~SPI_INT~4515.843 3179.443 4488 3179.5 4473.5 3194 4463.5 3194 4460.5 3197 4460.5 3201.5 4463.5 3204.5 4479.5 3204.5 4484.5 3209.5 4490.1 3209.5~gge11448~0","TRACK~1.1811~1~CAN1_U2_7~4542.8434 3210.5057 4541.8377 3209.5 4527.898 3209.5~gge14012~0","TRACK~1.1811~1~CAN1_U2_7~4542.8434 3210.5057 4543.227 3210.1221 4543.227 3198.6~gge14009~0","TRACK~3.937~1~GND~4542.8434 3225.9427 4542.8434 3218.3797~gge14006~0","TRACK~3.937~1~GND~4579 3221.56 4579 3217.29 4584.84 3211.44 4587.84 3211.44~gge8295~0","TRACK~1.1811~1~GND~4429.01 3098.44 4422.84 3098.44~gge13964~0","TRACK~1.1811~1~PSULED1_2~4448.406 3097.943 4447.907 3098.442 4437.674 3098.442~gge13961~0","TRACK~1.1811~1~+3.3V~4467.843 3081.002 4456.281 3092.564 4456.281 3097.943~gge13958~0","TRACK~3.937~1~GND~4703.9 3189.94 4703.84 3184.94~gge13931~0","TRACK~1.1811~1~OPTO1_1~4683.98 3176.53 4695.08 3176.53 4695.08 3175.47~gge7347~0","TRACK~1.1811~1~R2_1~4695.4058 3204.4431 4695.788 3204.0609 4695.788 3189.943~gge13928~0","TRACK~1.1811~1~+3.3V~4625.84 3182.94 4606.84 3182.98~gge13919~0","TRACK~1.1811~1~+3.3V~4634.1719 3193.1851 4634.343 3193.0139 4634.343 3187.443~gge13862~0","TRACK~3.937~1~GND~4647.0366 3194.4434 4646.843 3194.2497 4646.843 3188.943~gge13835~0","TRACK~1.1811~1~IN2~4647.0368 3204.4434 4639.8434 3204.4427 4636.4607 3201.06 4634.172 3201.06~gge13832~0","TRACK~1.1811~1~IN2~4650.843 3230.443 4650.8434 3225.9427 4647.0368 3222.1361 4647.0368 3204.4434~gge13829~0","TRACK~1.1811~1~R2_1~4683.6508 3204.4434 4695.406 3204.443~gge13826~0","TRACK~1.1811~1~+3.3V~4634.17 3167.59 4606.84 3167.57~gge13808~0","TRACK~1.1811~1~CAN1_U2_8~4527.898 3204.5 4532.7861 3204.5 4535.8434 3201.4427 4535.8434 3186.9427 4540.3434 3182.4427 4548.3434 3182.4427 4551.889 3185.9883 4551.889 3191.71~gge13784~0","TRACK~3.937~1~+3.3V~4487.3433 3130.4426 4485.843 3128.9424 4485.843 3080.443~gge13053~0","TRACK~3.937~1~+3.3V~4606.84 3188.4358 4606.84 3128.44 4591.6638 3113.2638~gge13670~0","TRACK~3.937~1~+3.3V~4518.036 3080.443 4558.8429 3080.443 4561.8398 3083.4399~gge13654~0","TRACK~3.937~1~+3.3V~4588.58 3229.5 4579 3229.44~gge13624~0","TRACK~3.937~1~+3.3V~4579 3229.437 4578.8434 3229.5936 4578.8434 3236.4427~gge13597~0","TRACK~1.1811~1~CAN1_U1_4~4527.9 3234.5 4574.34 3234.44 4574.34 3241.45 4583.34 3241.45 4583.34 3235.44 4584.28 3234.5 4588.58 3234.5~gge6375~0","TRACK~1.1811~1~+3.3V~4457.3434 3245.3797 4458.7804 3243.9427 4473.8434 3243.9427 4475.3434 3242.4427 4475.3434 3239.9427 4475.7804 3239.5057 4480.3434 3239.5057~gge13594~0","TRACK~1.1811~1~CAN1_U2_17~4490.1 3234.5 4485.34 3234.44 4484.34 3233.44 4484.34 3227.94 4482.87 3226.47 4477.31 3226.47 4474.84 3228.94 4474.84 3233.94 4474.34 3234.44 4464.34 3234.44 4461.28 3237.51 4457.34 3237.51~gge13591~0","TRACK~3.937~1~+3.3V~4480.3434 3239.5057 4480.3434 3229.9427~gge13558~0","TRACK~3.937~1~+3.3V~4490.1021 3239.5 4490.0961 3239.506 4480.343 3239.506~gge13555~0","TRACK~3.937~1~U3_1~4568.314 3289.0359 4576.3433 3288.9426 4577.3436 3289.943 4595.784 3289.943~gge13366~0","TRACK~3.937~1~+5V~4582.843 3102.502 4584.902 3100.443 4604.458 3100.443~gge13360~0","TRACK~3.937~1~+5V~4662.89 3111.04 4658.75 3111.04 4655.84 3113.94 4655.84 3117.94 4653.84 3119.94 4623.96 3119.94 4604.46 3100.44~gge13357~0","TRACK~3.937~1~GND~4543.227 3191.71 4543.227 3186.4427~gge13216~0","TRACK~1.1811~1~IN2~4650.843 3245.443 4650.843 3247.657 4648.5601 3249.9399 4576.5601 3249.9399 4572.5 3254 4565 3254 4560 3249 4560 3244~gge7692~0","TRACK~1.1811~1~IN1~4568.3101 3249.04 4568.3101 3247.9399 4645.0601 3247.9399 4645.343 3247.657 4645.343 3245.443~gge7359~0","TRACK~3.937~1~PSU_D1_2~4662.89 3101.04 4656.84 3094.99 4656.84 3077.94 4641.94 3063.04 4641.94 3053.44 4634.65 3053.44~gge6321~0","TRACK~3.937~1~PSU_D1_2~4683.8433 3068.0857 4669.2006 3053.443 4634.646 3053.443~gge11115~0","TRACK~3.937~1~PSU_D2_2~4574.843 3061.3 4574.843 3070.4399 4623.8398 3070.4399 4623.8398 3092.4399 4631.8398 3100.4399 4645.23 3100.4399~gge11842~0","TRACK~3.937~1~PSU_D2_2~4662.8921 3106.04 4650.826 3106.04 4645.229 3100.443~gge11848~0","TRACK~3.937~1~GND~4582.8428 3082.384 4575.902 3082.384 4575.843 3082.443~gge11815~0","TRACK~3.937~1~+12V~4750.314 3124.2881 4758.8433 3115.7585 4758.8433 3101.9426 4755.3433 3098.4426 4704.3433 3098.4426 4693.7006 3087.8 4683.843 3087.8~gge11088~0","TRACK~3.937~1~+12V~4740.471 3124.288 4750.314 3124.288~gge11085~0","TRACK~1.1811~1~IN1~4645.34 3230.44 4643.34 3230.44 4626.5 3213.6 4626.5 3189.5 4633.5 3182.5 4645.5 3182.5 4647.36 3180.64 4647.36 3176.53~gge7467~0","TRACK~1.1811~1~OPTO3_1~4678.15 3280.943 4685.557 3280.943 4686 3280.5 4686 3256 4684.5 3254.5 4670.9399 3254.5~gge7722~0","TRACK~1.1811~1~OPTO3_4~4662.063 3298 4656.4995 3298 4641.536 3283.0365 4641.536 3280.943~gge7725~0","TRACK~1.1811~1~SPI_SCK~4490.102 3214.5 4481.928 3214.5 4476.4639 3209.0359 4468.314 3209.0359~gge6351~0","TRACK~1.1811~1~SPI_INT~4568.3101 3189.04 4558.713 3179.443 4515.843 3179.443~gge6366~0","TRACK~1.1811~1~CAN1_H~4730.629 3206.965 4720.786 3206.965~gge6882~0","TRACK~1.1811~1~CAN1_L~4730.629 3197.123 4720.786 3197.123~gge6888~0","TRACK~1.1811~1~CAN0_L~4720.786 3216.808 4730.629 3216.808~gge6891~0","TRACK~1.1811~1~CAN0_H~4730.629 3226.65 4720.786 3226.65~gge6894~0","TRACK~1.1811~1~SPI_MISO~4490.1 3224.5 4483 3224.5 4477.54 3219.04 4468.31 3219.04~gge6354~0","TRACK~1.1811~1~CAN1_U1_8~4610.415 3219.5 4602 3211.085 4602 3204 4597 3199 4593.437 3199~gge6963~0","TRACK~1.1811~1~OUT_CONTACTORS~4576 3181 4576 3214.4998 4571.4639 3219.0359 4568.314 3219.0359~gge7230~0","TRACK~1.1811~1~CAN0_U2_8~4534.8511 3156.158 4536.566 3154.443 4546.406 3154.443~gge7233~0","TRACK~1.1811~1~OPTO1_1~4695.08 3175.47 4695 3167 4697.16 3164.84 4697.16 3159.72~gge7350~0","TRACK~1.1811~1~IN1~4647.3606 3176.5327 4646.2969 3175.469 4634.172 3175.469~gge7356~0","TRACK~1.1811~1~START1~4720.79 3147.91 4715.59 3147.91 4711.65 3151.85 4697.16 3151.85~gge7353~0","TRACK~3.937~1~GND~4527.8979 3199.5 4527.843 3199.4451 4527.843 3196.443~gge8122~0","TRACK~1.1811~1~GND~4585.56 3199 4585.5 3192.5~gge8322~0","TRACK~3.937~1~GND~4641.5361 3270.9431 4650.3429 3270.9431 4650.343 3270.943~gge8418~0","TRACK~3.937~1~GND~4678.1499 3270.9431 4669.3431 3270.9431 4669.343 3270.943~gge8445~0","TRACK~3.937~1~GND~4647.3599 3166.53 4647.343 3166.5132 4647.343 3160.443~gge8499~0","TRACK~3.937~1~GND~4683.98 3166.53 4675 3166.5~gge8526~0","TRACK~3.937~1~GND~4684.192 3103.4344 4684.192 3101.04~gge8646~0","TRACK~3.937~1~GND~4684.192 3108.5058 4684.192 3103.4344~gge8633~0","TRACK~3.937~1~GND~4684.192 3113.5772 4684.192 3108.5058~gge8620~0","TRACK~3.937~1~GND~4684.192 3116.04 4684.192 3113.5772~gge8592~0","TRACK~3.937~1~GND~4662.892 3116.04 4669.46 3116.04 4671 3114.5~gge8595~0","TRACK~3.937~1~GND~4703.1875 3175.469 4703 3175.2815 4703 3170~gge8661~0","TRACK~3.937~1~GND~4600.04 3053.443 4620.3427 3053.443 4620.3428 3053.4431~gge8688~0","TRACK~3.937~1~GND~4574.8428 3041.585 4574.8428 3049.943 4574.843 3049.943~gge8728~0","TRACK~1.1811~1~GND~4588.585 3224.5 4581.937 3224.5 4579 3221.563~gge8840~0","TRACK~1.1811~1~CANTX~4468.31 3189.04 4463.04 3189.04 4461 3187 4461 3178 4465 3174 4481 3174 4481 3161 4486.14 3156.16 4513.02 3156.16~gge6372~0","TRACK~3.937~1~+3.3V~4485.8428 3080.4431 4492.3428 3080.4431 4494.6509 3080.4431 4494.651 3080.443~gge12963~0","TRACK~3.937~1~+3.3V~4467.8433 3081.0017 4468.402 3080.443 4485.843 3080.443~gge12527~0","TRACK~3.937~1~GND~4467.8434 3060.8837 4467.8434 3050.4427~gge12530~0","TRACK~3.937~1~GND~4494.6509 3071.3879 4494.6509 3066.7509 4494.343 3066.443~gge12557~0","TRACK~3.937~1~GND~4615.9019 3289.9431 4624.8429 3289.9431 4624.843 3289.943~gge12818~0","TRACK~3.937~1~GND~4551.889 3198.599 4551.9997 3198.599 4556.8434 3203.4427~gge12857~0","TRACK~1.1811~1~CANRX~4513.02 3171.16 4506.63 3171.16 4500.79 3177 4468.31 3177 4468.31 3179.04~gge6369~0","TRACK~3.937~1~GND~4520.4058 3187.4431 4511.8431 3187.4431 4511.843 3187.443~gge12902~0","TRACK~3.937~1~GND~4500.343 3161.443 4512.736 3161.443 4513.021 3161.158~gge8080~0","TRACK~3.937~1~GND~4495 3162.063 4495.62 3161.443 4500.343 3161.443~gge13020~0","TRACK~3.937~1~+3.3V~4495 3169.937 4487.349 3169.937 4487.343 3169.943~gge13056~0","CIRCLE~4429.448~3045.548~14.173~3.937~3~gge9258~0~~","CIRCLE~4429.448~3289.642~14.173~3.937~3~gge9279~0~~","TEXT~L~4523.3434~3040.4427~0.8~0~0~3~~8~+12V~M 4526.62 3033.46L4526.62 3040.01 M 4523.34 3036.73L4529.89 3036.73 M 4532.29 3033.82L4533.02 3033.46 L4534.11 3032.37 L4534.11 3040.01 M 4536.87 3034.19L4536.87 3033.82 L4537.23 3033.1 L4537.6 3032.73 L4538.33 3032.37 L4539.78 3032.37 L4540.51 3032.73 L4540.87 3033.1 L4541.23 3033.82 L4541.23 3034.55 L4540.87 3035.28 L4540.14 3036.37 L4536.51 3040.01 L4541.6 3040.01 M 4544 3032.37L4546.91 3040.01 M 4549.82 3032.37L4546.91 3040.01 ~~gge18119~~0~pinpart","TEXT~L~4528.8434~3050.9427~0.8~0~0~3~~8~GND~M 4534.3 3044.69 L 4533.93 3043.96 L 4533.21 3043.23 L 4532.48 3042.87 L 4531.03 3042.87 L 4530.3 3043.23 L 4529.57 3043.96 L 4529.21 3044.69 L 4528.84 3045.78 L 4528.84 3047.6 L 4529.21 3048.69 L 4529.57 3049.42 L 4530.3 3050.14 L 4531.03 3050.51 L 4532.48 3050.51 L 4533.21 3050.14 L 4533.93 3049.42 L 4534.3 3048.69 L 4534.3 3047.6 M 4532.48 3047.6 L 4534.3 3047.6 M 4536.7 3042.87 L 4536.7 3050.51 M 4536.7 3042.87 L 4541.79 3050.51 M 4541.79 3042.87 L 4541.79 3050.51 M 4544.19 3042.87 L 4544.19 3050.51 M 4544.19 3042.87 L 4546.73 3042.87 L 4547.83 3043.23 L 4548.55 3043.96 L 4548.92 3044.69 L 4549.28 3045.78 L 4549.28 3047.6 L 4548.92 3048.69 L 4548.55 3049.42 L 4547.83 3050.14 L 4546.73 3050.51 L 4544.19 3050.51~~gge18140~~0~pinpart","TEXT~L~4526.8434~3061.4427~0.8~0~0~3~~8~+5V~M 4530.12 3054.46 L 4530.12 3061.01 M 4526.84 3057.73 L 4533.39 3057.73 M 4540.15 3053.37 L 4536.52 3053.37 L 4536.15 3056.64 L 4536.52 3056.28 L 4537.61 3055.92 L 4538.7 3055.92 L 4539.79 3056.28 L 4540.52 3057.01 L 4540.88 3058.1 L 4540.88 3058.82 L 4540.52 3059.92 L 4539.79 3060.64 L 4538.7 3061.01 L 4537.61 3061.01 L 4536.52 3060.64 L 4536.15 3060.28 L 4535.79 3059.55 M 4543.28 3053.37 L 4546.19 3061.01 M 4549.1 3053.37 L 4546.19 3061.01~~gge18152~~0~pinpart","TEXT~L~4516.8434~3072.4427~0.8~0~0~3~~8~+3.3V~M 4520.12 3065.46 L 4520.12 3072.01 M 4516.84 3068.73 L 4523.39 3068.73 M 4526.52 3064.37 L 4530.52 3064.37 L 4528.33 3067.28 L 4529.43 3067.28 L 4530.15 3067.64 L 4530.52 3068.01 L 4530.88 3069.1 L 4530.88 3069.82 L 4530.52 3070.92 L 4529.79 3071.64 L 4528.7 3072.01 L 4527.61 3072.01 L 4526.52 3071.64 L 4526.15 3071.28 L 4525.79 3070.55 M 4533.64 3070.19 L 4533.28 3070.55 L 4533.64 3070.92 L 4534.01 3070.55 L 4533.64 3070.19 M 4537.13 3064.37 L 4541.13 3064.37 L 4538.95 3067.28 L 4540.04 3067.28 L 4540.77 3067.64 L 4541.13 3068.01 L 4541.5 3069.1 L 4541.5 3069.82 L 4541.13 3070.92 L 4540.41 3071.64 L 4539.32 3072.01 L 4538.23 3072.01 L 4537.13 3071.64 L 4536.77 3071.28 L 4536.41 3070.55 M 4543.9 3064.37 L 4546.81 3072.01 M 4549.72 3064.37 L 4546.81 3072.01~~gge18191~~0~pinpart","TEXT~L~4652.3434~3218.9427~0.3937~0~0~3~~3.937~C0H C0L C1H C1L~M 4655.03 3215.86 L 4654.85 3215.51 L 4654.49 3215.15 L 4654.13 3214.97 L 4653.42 3214.97 L 4653.06 3215.15 L 4652.7 3215.51 L 4652.52 3215.86 L 4652.34 3216.4 L 4652.34 3217.3 L 4652.52 3217.83 L 4652.7 3218.19 L 4653.06 3218.55 L 4653.42 3218.73 L 4654.13 3218.73 L 4654.49 3218.55 L 4654.85 3218.19 L 4655.03 3217.83 M 4657.28 3214.97 L 4656.75 3215.15 L 4656.39 3215.69 L 4656.21 3216.58 L 4656.21 3217.12 L 4656.39 3218.01 L 4656.75 3218.55 L 4657.28 3218.73 L 4657.64 3218.73 L 4658.18 3218.55 L 4658.54 3218.01 L 4658.71 3217.12 L 4658.71 3216.58 L 4658.54 3215.69 L 4658.18 3215.15 L 4657.64 3214.97 L 4657.28 3214.97 M 4659.9 3214.97 L 4659.9 3218.73 M 4662.4 3214.97 L 4662.4 3218.73 M 4659.9 3216.76 L 4662.4 3216.76 M 4669.02 3215.86 L 4668.84 3215.51 L 4668.49 3215.15 L 4668.13 3214.97 L 4667.41 3214.97 L 4667.05 3215.15 L 4666.7 3215.51 L 4666.52 3215.86 L 4666.34 3216.4 L 4666.34 3217.3 L 4666.52 3217.83 L 4666.7 3218.19 L 4667.05 3218.55 L 4667.41 3218.73 L 4668.13 3218.73 L 4668.49 3218.55 L 4668.84 3218.19 L 4669.02 3217.83 M 4671.28 3214.97 L 4670.74 3215.15 L 4670.38 3215.69 L 4670.2 3216.58 L 4670.2 3217.12 L 4670.38 3218.01 L 4670.74 3218.55 L 4671.28 3218.73 L 4671.63 3218.73 L 4672.17 3218.55 L 4672.53 3218.01 L 4672.71 3217.12 L 4672.71 3216.58 L 4672.53 3215.69 L 4672.17 3215.15 L 4671.63 3214.97 L 4671.28 3214.97 M 4673.89 3214.97 L 4673.89 3218.73 M 4673.89 3218.73 L 4676.04 3218.73 M 4682.66 3215.86 L 4682.48 3215.51 L 4682.12 3215.15 L 4681.76 3214.97 L 4681.05 3214.97 L 4680.69 3215.15 L 4680.33 3215.51 L 4680.15 3215.86 L 4679.97 3216.4 L 4679.97 3217.3 L 4680.15 3217.83 L 4680.33 3218.19 L 4680.69 3218.55 L 4681.05 3218.73 L 4681.76 3218.73 L 4682.12 3218.55 L 4682.48 3218.19 L 4682.66 3217.83 M 4683.84 3215.69 L 4684.2 3215.51 L 4684.73 3214.97 L 4684.73 3218.73 M 4685.92 3214.97 L 4685.92 3218.73 M 4688.42 3214.97 L 4688.42 3218.73 M 4685.92 3216.76 L 4688.42 3216.76 M 4695.04 3215.86 L 4694.86 3215.51 L 4694.51 3215.15 L 4694.15 3214.97 L 4693.43 3214.97 L 4693.07 3215.15 L 4692.72 3215.51 L 4692.54 3215.86 L 4692.36 3216.4 L 4692.36 3217.3 L 4692.54 3217.83 L 4692.72 3218.19 L 4693.07 3218.55 L 4693.43 3218.73 L 4694.15 3218.73 L 4694.51 3218.55 L 4694.86 3218.19 L 4695.04 3217.83 M 4696.22 3215.69 L 4696.58 3215.51 L 4697.12 3214.97 L 4697.12 3218.73 M 4698.3 3214.97 L 4698.3 3218.73 M 4698.3 3218.73 L 4700.45 3218.73~~gge18408~~0~pinpart","TEXT~L~4700.3434~3133.9427~0.3937~270~0~3~~3.937~ST1~M 4703.7761 3136.4493 L 4704.1361 3136.0893 L 4704.3161 3135.5493 L 4704.3161 3134.8393 L 4704.1361 3134.2993 L 4703.7761 3133.9393 L 4703.4261 3133.9393 L 4703.0661 3134.1193 L 4702.8861 3134.2993 L 4702.7061 3134.6593 L 4702.3461 3135.7293 L 4702.1661 3136.0893 L 4701.9861 3136.2693 L 4701.6361 3136.4493 L 4701.0961 3136.4493 L 4700.7361 3136.0893 L 4700.5561 3135.5493 L 4700.5561 3134.8393 L 4700.7361 3134.2993 L 4701.0961 3133.9393 M 4704.3161 3138.8793 L 4700.5561 3138.8793 M 4704.3161 3137.6293 L 4704.3161 3140.1393 M 4703.5961 3141.3193 L 4703.7761 3141.6693 L 4704.3161 3142.2093 L 4700.5561 3142.2093~~gge18519~~0~pinpart","TEXT~L~4690.3434~3133.9427~0.3937~270~0~3~~3.937~ST2~M 4693.7761 3136.4493 L 4694.1361 3136.0893 L 4694.3161 3135.5493 L 4694.3161 3134.8393 L 4694.1361 3134.2993 L 4693.7761 3133.9393 L 4693.4261 3133.9393 L 4693.0661 3134.1193 L 4692.8861 3134.2993 L 4692.7061 3134.6593 L 4692.3461 3135.7293 L 4692.1661 3136.0893 L 4691.9861 3136.2693 L 4691.6361 3136.4493 L 4691.0961 3136.4493 L 4690.7361 3136.0893 L 4690.5561 3135.5493 L 4690.5561 3134.8393 L 4690.7361 3134.2993 L 4691.0961 3133.9393 M 4694.3161 3138.8793 L 4690.5561 3138.8793 M 4694.3161 3137.6293 L 4694.3161 3140.1393 M 4693.4261 3141.4993 L 4693.5961 3141.4993 L 4693.9561 3141.6693 L 4694.1361 3141.8493 L 4694.3161 3142.2093 L 4694.3161 3142.9293 L 4694.1361 3143.2793 L 4693.9561 3143.4593 L 4693.5961 3143.6393 L 4693.2461 3143.6393 L 4692.8861 3143.4593 L 4692.3461 3143.1093 L 4690.5561 3141.3193 L 4690.5561 3143.8193~~gge18543~~0~pinpart","TEXT~L~4680.3434~3133.9427~0.3937~270~0~3~~3.937~OUT1~M 4684.3161 3135.0193 L 4684.1361 3134.6593 L 4683.7761 3134.2993 L 4683.4261 3134.1193 L 4682.8861 3133.9393 L 4681.9861 3133.9393 L 4681.4561 3134.1193 L 4681.0961 3134.2993 L 4680.7361 3134.6593 L 4680.5561 3135.0193 L 4680.5561 3135.7293 L 4680.7361 3136.0893 L 4681.0961 3136.4493 L 4681.4561 3136.6293 L 4681.9861 3136.8093 L 4682.8861 3136.8093 L 4683.4261 3136.6293 L 4683.7761 3136.4493 L 4684.1361 3136.0893 L 4684.3161 3135.7293 L 4684.3161 3135.0193 M 4684.3161 3137.9893 L 4681.6361 3137.9893 L 4681.0961 3138.1693 L 4680.7361 3138.5193 L 4680.5561 3139.0593 L 4680.5561 3139.4193 L 4680.7361 3139.9593 L 4681.0961 3140.3093 L 4681.6361 3140.4893 L 4684.3161 3140.4893 M 4684.3161 3142.9293 L 4680.5561 3142.9293 M 4684.3161 3141.6693 L 4684.3161 3144.1793 M 4683.5961 3145.3593 L 4683.7761 3145.7193 L 4684.3161 3146.2593 L 4680.5561 3146.2593~~gge18555~~0~pinpart","TEXT~L~4670.3434~3133.9427~0.3937~270~0~3~~3.937~OUT2~M 4674.3161 3135.0193L4674.1361 3134.6593 L4673.7761 3134.2993 L4673.4261 3134.1193 L4672.8861 3133.9393 L4671.9861 3133.9393 L4671.4561 3134.1193 L4671.0961 3134.2993 L4670.7361 3134.6593 L4670.5561 3135.0193 L4670.5561 3135.7293 L4670.7361 3136.0893 L4671.0961 3136.4493 L4671.4561 3136.6293 L4671.9861 3136.8093 L4672.8861 3136.8093 L4673.4261 3136.6293 L4673.7761 3136.4493 L4674.1361 3136.0893 L4674.3161 3135.7293 L4674.3161 3135.0193 M 4674.3161 3137.9893L4671.6361 3137.9893 L4671.0961 3138.1693 L4670.7361 3138.5193 L4670.5561 3139.0593 L4670.5561 3139.4193 L4670.7361 3139.9593 L4671.0961 3140.3093 L4671.6361 3140.4893 L4674.3161 3140.4893 M 4674.3161 3142.9293L4670.5561 3142.9293 M 4674.3161 3141.6693L4674.3161 3144.1793 M 4673.4261 3145.5393L4673.5961 3145.5393 L4673.9561 3145.7193 L4674.1361 3145.8993 L4674.3161 3146.2593 L4674.3161 3146.9693 L4674.1361 3147.3293 L4673.9561 3147.5093 L4673.5961 3147.6893 L4673.2461 3147.6893 L4672.8861 3147.5093 L4672.3461 3147.1493 L4670.5561 3145.3593 L4670.5561 3147.8693 ~~gge18567~~0~pinpart","TEXT~L~4431.8434~3266.9427~0.3937~90~0~3~~3.937~SDA SCL RX TX~M 4428.4107 3264.4361 L 4428.0507 3264.7961 L 4427.8707 3265.3361 L 4427.8707 3266.0461 L 4428.0507 3266.5861 L 4428.4107 3266.9461 L 4428.7607 3266.9461 L 4429.1207 3266.7661 L 4429.3007 3266.5861 L 4429.4807 3266.2261 L 4429.8407 3265.1561 L 4430.0207 3264.7961 L 4430.2007 3264.6161 L 4430.5507 3264.4361 L 4431.0907 3264.4361 L 4431.4507 3264.7961 L 4431.6307 3265.3361 L 4431.6307 3266.0461 L 4431.4507 3266.5861 L 4431.0907 3266.9461 M 4427.8707 3263.2561 L 4431.6307 3263.2561 M 4427.8707 3263.2561 L 4427.8707 3262.0061 L 4428.0507 3261.4661 L 4428.4107 3261.1061 L 4428.7607 3260.9261 L 4429.3007 3260.7461 L 4430.2007 3260.7461 L 4430.7307 3260.9261 L 4431.0907 3261.1061 L 4431.4507 3261.4661 L 4431.6307 3262.0061 L 4431.6307 3263.2561 M 4427.8707 3258.1361 L 4431.6307 3259.5661 M 4427.8707 3258.1361 L 4431.6307 3256.7061 M 4430.3807 3259.0361 L 4430.3807 3257.2461 M 4428.4107 3250.2661 L 4428.0507 3250.6261 L 4427.8707 3251.1561 L 4427.8707 3251.8761 L 4428.0507 3252.4161 L 4428.4107 3252.7661 L 4428.7607 3252.7661 L 4429.1207 3252.5861 L 4429.3007 3252.4161 L 4429.4807 3252.0561 L 4429.8407 3250.9761 L 4430.0207 3250.6261 L 4430.2007 3250.4461 L 4430.5507 3250.2661 L 4431.0907 3250.2661 L 4431.4507 3250.6261 L 4431.6307 3251.1561 L 4431.6307 3251.8761 L 4431.4507 3252.4161 L 4431.0907 3252.7661 M 4428.7607 3246.3961 L 4428.4107 3246.5761 L 4428.0507 3246.9361 L 4427.8707 3247.2961 L 4427.8707 3248.0061 L 4428.0507 3248.3661 L 4428.4107 3248.7261 L 4428.7607 3248.9061 L 4429.3007 3249.0861 L 4430.2007 3249.0861 L 4430.7307 3248.9061 L 4431.0907 3248.7261 L 4431.4507 3248.3661 L 4431.6307 3248.0061 L 4431.6307 3247.2961 L 4431.4507 3246.9361 L 4431.0907 3246.5761 L 4430.7307 3246.3961 M 4427.8707 3245.2161 L 4431.6307 3245.2161 M 4431.6307 3245.2161 L 4431.6307 3243.0661 M 4427.8707 3239.1361 L 4431.6307 3239.1361 M 4427.8707 3239.1361 L 4427.8707 3237.5261 L 4428.0507 3236.9861 L 4428.2307 3236.8061 L 4428.5907 3236.6261 L 4428.9407 3236.6261 L 4429.3007 3236.8061 L 4429.4807 3236.9861 L 4429.6607 3237.5261 L 4429.6607 3239.1361 M 4429.6607 3237.8761 L 4431.6307 3236.6261 M 4427.8707 3235.4461 L 4431.6307 3232.9461 M 4427.8707 3232.9461 L 4431.6307 3235.4461 M 4427.8707 3227.7561 L 4431.6307 3227.7561 M 4427.8707 3229.0061 L 4427.8707 3226.4961 M 4427.8707 3225.3161 L 4431.6307 3222.8161 M 4427.8707 3222.8161 L 4431.6307 3225.3161~~gge18597~~0~pinpart","TEXT~L~4584.3434~3261.4427~0.3937~0~0~3~~3.937~SDA SCL RX TX~M 4586.85 3258.01 L 4586.49 3257.65 L 4585.95 3257.47 L 4585.24 3257.47 L 4584.7 3257.65 L 4584.34 3258.01 L 4584.34 3258.36 L 4584.52 3258.72 L 4584.7 3258.9 L 4585.06 3259.08 L 4586.13 3259.44 L 4586.49 3259.62 L 4586.67 3259.8 L 4586.85 3260.15 L 4586.85 3260.69 L 4586.49 3261.05 L 4585.95 3261.23 L 4585.24 3261.23 L 4584.7 3261.05 L 4584.34 3260.69 M 4588.03 3257.47 L 4588.03 3261.23 M 4588.03 3257.47 L 4589.28 3257.47 L 4589.82 3257.65 L 4590.18 3258.01 L 4590.36 3258.36 L 4590.54 3258.9 L 4590.54 3259.8 L 4590.36 3260.33 L 4590.18 3260.69 L 4589.82 3261.05 L 4589.28 3261.23 L 4588.03 3261.23 M 4593.15 3257.47 L 4591.72 3261.23 M 4593.15 3257.47 L 4594.58 3261.23 M 4592.25 3259.98 L 4594.04 3259.98 M 4601.02 3258.01 L 4600.66 3257.65 L 4600.13 3257.47 L 4599.41 3257.47 L 4598.87 3257.65 L 4598.52 3258.01 L 4598.52 3258.36 L 4598.7 3258.72 L 4598.87 3258.9 L 4599.23 3259.08 L 4600.31 3259.44 L 4600.66 3259.62 L 4600.84 3259.8 L 4601.02 3260.15 L 4601.02 3260.69 L 4600.66 3261.05 L 4600.13 3261.23 L 4599.41 3261.23 L 4598.87 3261.05 L 4598.52 3260.69 M 4604.89 3258.36 L 4604.71 3258.01 L 4604.35 3257.65 L 4603.99 3257.47 L 4603.28 3257.47 L 4602.92 3257.65 L 4602.56 3258.01 L 4602.38 3258.36 L 4602.2 3258.9 L 4602.2 3259.8 L 4602.38 3260.33 L 4602.56 3260.69 L 4602.92 3261.05 L 4603.28 3261.23 L 4603.99 3261.23 L 4604.35 3261.05 L 4604.71 3260.69 L 4604.89 3260.33 M 4606.07 3257.47 L 4606.07 3261.23 M 4606.07 3261.23 L 4608.22 3261.23 M 4612.15 3257.47 L 4612.15 3261.23 M 4612.15 3257.47 L 4613.76 3257.47 L 4614.3 3257.65 L 4614.48 3257.83 L 4614.66 3258.19 L 4614.66 3258.54 L 4614.48 3258.9 L 4614.3 3259.08 L 4613.76 3259.26 L 4612.15 3259.26 M 4613.41 3259.26 L 4614.66 3261.23 M 4615.84 3257.47 L 4618.34 3261.23 M 4618.34 3257.47 L 4615.84 3261.23 M 4623.53 3257.47 L 4623.53 3261.23 M 4622.28 3257.47 L 4624.79 3257.47 M 4625.97 3257.47 L 4628.47 3261.23 M 4628.47 3257.47 L 4625.97 3261.23~~gge18612~~0~pinpart","TEXT~L~4425.8434~3210.9427~0.3937~90~0~3~~7.874~ESP32 Chademo~M 4417.9007 3210.9461 L 4425.4107 3210.9461 M 4417.9007 3210.9461 L 4417.9007 3206.2861 M 4421.4807 3210.9461 L 4421.4807 3208.0761 M 4425.4107 3210.9461 L 4425.4107 3206.2861 M 4418.9707 3198.9161 L 4418.2607 3199.6361 L 4417.9007 3200.7061 L 4417.9007 3202.1361 L 4418.2607 3203.2161 L 4418.9707 3203.9261 L 4419.6907 3203.9261 L 4420.4007 3203.5661 L 4420.7607 3203.2161 L 4421.1207 3202.4961 L 4421.8307 3200.3461 L 4422.1907 3199.6361 L 4422.5507 3199.2761 L 4423.2707 3198.9161 L 4424.3407 3198.9161 L 4425.0607 3199.6361 L 4425.4107 3200.7061 L 4425.4107 3202.1361 L 4425.0607 3203.2161 L 4424.3407 3203.9261 M 4417.9007 3196.5561 L 4425.4107 3196.5561 M 4417.9007 3196.5561 L 4417.9007 3193.3361 L 4418.2607 3192.2561 L 4418.6107 3191.9061 L 4419.3307 3191.5461 L 4420.4007 3191.5461 L 4421.1207 3191.9061 L 4421.4807 3192.2561 L 4421.8307 3193.3361 L 4421.8307 3196.5561 M 4417.9007 3188.4661 L 4417.9007 3184.5261 L 4420.7607 3186.6761 L 4420.7607 3185.6061 L 4421.1207 3184.8861 L 4421.4807 3184.5261 L 4422.5507 3184.1661 L 4423.2707 3184.1661 L 4424.3407 3184.5261 L 4425.0607 3185.2461 L 4425.4107 3186.3161 L 4425.4107 3187.3961 L 4425.0607 3188.4661 L 4424.7007 3188.8261 L 4423.9807 3189.1861 M 4419.6907 3181.4461 L 4419.3307 3181.4461 L 4418.6107 3181.0961 L 4418.2607 3180.7361 L 4417.9007 3180.0161 L 4417.9007 3178.5861 L 4418.2607 3177.8761 L 4418.6107 3177.5161 L 4419.3307 3177.1561 L 4420.0407 3177.1561 L 4420.7607 3177.5161 L 4421.8307 3178.2261 L 4425.4107 3181.8061 L 4425.4107 3176.7961 M 4419.6907 3163.5561 L 4418.9707 3163.9161 L 4418.2607 3164.6261 L 4417.9007 3165.3461 L 4417.9007 3166.7761 L 4418.2607 3167.4961 L 4418.9707 3168.2061 L 4419.6907 3168.5661 L 4420.7607 3168.9261 L 4422.5507 3168.9261 L 4423.6207 3168.5661 L 4424.3407 3168.2061 L 4425.0607 3167.4961 L 4425.4107 3166.7761 L 4425.4107 3165.3461 L 4425.0607 3164.6261 L 4424.3407 3163.9161 L 4423.6207 3163.5561 M 4417.9007 3161.1961 L 4425.4107 3161.1961 M 4421.8307 3161.1961 L 4420.7607 3160.1161 L 4420.4007 3159.4061 L 4420.4007 3158.3261 L 4420.7607 3157.6161 L 4421.8307 3157.2561 L 4425.4107 3157.2561 M 4420.4007 3150.5961 L 4425.4107 3150.5961 M 4421.4807 3150.5961 L 4420.7607 3151.3161 L 4420.4007 3152.0261 L 4420.4007 3153.1061 L 4420.7607 3153.8161 L 4421.4807 3154.5361 L 4422.5507 3154.8961 L 4423.2707 3154.8961 L 4424.3407 3154.5361 L 4425.0607 3153.8161 L 4425.4107 3153.1061 L 4425.4107 3152.0261 L 4425.0607 3151.3161 L 4424.3407 3150.5961 M 4417.9007 3143.9461 L 4425.4107 3143.9461 M 4421.4807 3143.9461 L 4420.7607 3144.6561 L 4420.4007 3145.3761 L 4420.4007 3146.4461 L 4420.7607 3147.1661 L 4421.4807 3147.8761 L 4422.5507 3148.2361 L 4423.2707 3148.2361 L 4424.3407 3147.8761 L 4425.0607 3147.1661 L 4425.4107 3146.4461 L 4425.4107 3145.3761 L 4425.0607 3144.6561 L 4424.3407 3143.9461 M 4422.5507 3141.5761 L 4422.5507 3137.2861 L 4421.8307 3137.2861 L 4421.1207 3137.6461 L 4420.7607 3137.9961 L 4420.4007 3138.7161 L 4420.4007 3139.7861 L 4420.7607 3140.5061 L 4421.4807 3141.2261 L 4422.5507 3141.5761 L 4423.2707 3141.5761 L 4424.3407 3141.2261 L 4425.0607 3140.5061 L 4425.4107 3139.7861 L 4425.4107 3138.7161 L 4425.0607 3137.9961 L 4424.3407 3137.2861 M 4420.4007 3134.9261 L 4425.4107 3134.9261 M 4421.8307 3134.9261 L 4420.7607 3133.8461 L 4420.4007 3133.1361 L 4420.4007 3132.0561 L 4420.7607 3131.3461 L 4421.8307 3130.9861 L 4425.4107 3130.9861 M 4421.8307 3130.9861 L 4420.7607 3129.9161 L 4420.4007 3129.1961 L 4420.4007 3128.1261 L 4420.7607 3127.4061 L 4421.8307 3127.0461 L 4425.4107 3127.0461 M 4420.4007 3122.8961 L 4420.7607 3123.6161 L 4421.4807 3124.3261 L 4422.5507 3124.6861 L 4423.2707 3124.6861 L 4424.3407 3124.3261 L 4425.0607 3123.6161 L 4425.4107 3122.8961 L 4425.4107 3121.8261 L 4425.0607 3121.1061 L 4424.3407 3120.3961 L 4423.2707 3120.0361 L 4422.5507 3120.0361 L 4421.4807 3120.3961 L 4420.7607 3121.1061 L 4420.4007 3121.8261 L 4420.4007 3122.8961~~gge19254~~0~pinpart","TEXT~L~4441.3434~3210.9427~0.3937~90~0~3~~3.937~(C) 2023 J.Jones R Stevens~M 4436.6507 3209.6861 L 4437.0107 3210.0461 L 4437.5507 3210.4061 L 4438.2607 3210.7661 L 4439.1607 3210.9461 L 4439.8807 3210.9461 L 4440.7707 3210.7661 L 4441.4907 3210.4061 L 4442.0207 3210.0461 L 4442.3807 3209.6861 M 4438.2607 3205.8261 L 4437.9107 3206.0061 L 4437.5507 3206.3661 L 4437.3707 3206.7161 L 4437.3707 3207.4361 L 4437.5507 3207.7961 L 4437.9107 3208.1461 L 4438.2607 3208.3261 L 4438.8007 3208.5061 L 4439.7007 3208.5061 L 4440.2307 3208.3261 L 4440.5907 3208.1461 L 4440.9507 3207.7961 L 4441.1307 3207.4361 L 4441.1307 3206.7161 L 4440.9507 3206.3661 L 4440.5907 3206.0061 L 4440.2307 3205.8261 M 4436.6507 3204.6461 L 4437.0107 3204.2861 L 4437.5507 3203.9261 L 4438.2607 3203.5661 L 4439.1607 3203.3861 L 4439.8807 3203.3861 L 4440.7707 3203.5661 L 4441.4907 3203.9261 L 4442.0207 3204.2861 L 4442.3807 3204.6461 M 4438.2607 3199.2761 L 4438.0907 3199.2761 L 4437.7307 3199.0961 L 4437.5507 3198.9161 L 4437.3707 3198.5561 L 4437.3707 3197.8461 L 4437.5507 3197.4861 L 4437.7307 3197.3061 L 4438.0907 3197.1261 L 4438.4407 3197.1261 L 4438.8007 3197.3061 L 4439.3407 3197.6661 L 4441.1307 3199.4561 L 4441.1307 3196.9461 M 4437.3707 3194.6961 L 4437.5507 3195.2261 L 4438.0907 3195.5861 L 4438.9807 3195.7661 L 4439.5207 3195.7661 L 4440.4107 3195.5861 L 4440.9507 3195.2261 L 4441.1307 3194.6961 L 4441.1307 3194.3361 L 4440.9507 3193.7961 L 4440.4107 3193.4361 L 4439.5207 3193.2661 L 4438.9807 3193.2661 L 4438.0907 3193.4361 L 4437.5507 3193.7961 L 4437.3707 3194.3361 L 4437.3707 3194.6961 M 4438.2607 3191.9061 L 4438.0907 3191.9061 L 4437.7307 3191.7261 L 4437.5507 3191.5461 L 4437.3707 3191.1861 L 4437.3707 3190.4661 L 4437.5507 3190.1161 L 4437.7307 3189.9361 L 4438.0907 3189.7561 L 4438.4407 3189.7561 L 4438.8007 3189.9361 L 4439.3407 3190.2961 L 4441.1307 3192.0761 L 4441.1307 3189.5761 M 4437.3707 3188.0361 L 4437.3707 3186.0661 L 4438.8007 3187.1461 L 4438.8007 3186.6061 L 4438.9807 3186.2461 L 4439.1607 3186.0661 L 4439.7007 3185.8861 L 4440.0507 3185.8861 L 4440.5907 3186.0661 L 4440.9507 3186.4261 L 4441.1307 3186.9661 L 4441.1307 3187.4961 L 4440.9507 3188.0361 L 4440.7707 3188.2161 L 4440.4107 3188.3961 M 4437.3707 3180.1661 L 4440.2307 3180.1661 L 4440.7707 3180.3461 L 4440.9507 3180.5161 L 4441.1307 3180.8761 L 4441.1307 3181.2361 L 4440.9507 3181.5961 L 4440.7707 3181.7761 L 4440.2307 3181.9561 L 4439.8807 3181.9561 M 4440.2307 3178.8061 L 4440.4107 3178.9861 L 4440.5907 3178.8061 L 4440.4107 3178.6261 L 4440.2307 3178.8061 M 4437.3707 3175.6561 L 4440.2307 3175.6561 L 4440.7707 3175.8361 L 4440.9507 3176.0061 L 4441.1307 3176.3661 L 4441.1307 3176.7261 L 4440.9507 3177.0861 L 4440.7707 3177.2661 L 4440.2307 3177.4461 L 4439.8807 3177.4461 M 4438.6207 3173.5761 L 4438.8007 3173.9361 L 4439.1607 3174.2961 L 4439.7007 3174.4761 L 4440.0507 3174.4761 L 4440.5907 3174.2961 L 4440.9507 3173.9361 L 4441.1307 3173.5761 L 4441.1307 3173.0361 L 4440.9507 3172.6861 L 4440.5907 3172.3261 L 4440.0507 3172.1461 L 4439.7007 3172.1461 L 4439.1607 3172.3261 L 4438.8007 3172.6861 L 4438.6207 3173.0361 L 4438.6207 3173.5761 M 4438.6207 3170.9661 L 4441.1307 3170.9661 M 4439.3407 3170.9661 L 4438.8007 3170.4261 L 4438.6207 3170.0661 L 4438.6207 3169.5361 L 4438.8007 3169.1761 L 4439.3407 3168.9961 L 4441.1307 3168.9961 M 4439.7007 3167.8161 L 4439.7007 3165.6661 L 4439.3407 3165.6661 L 4438.9807 3165.8461 L 4438.8007 3166.0261 L 4438.6207 3166.3861 L 4438.6207 3166.9161 L 4438.8007 3167.2761 L 4439.1607 3167.6361 L 4439.7007 3167.8161 L 4440.0507 3167.8161 L 4440.5907 3167.6361 L 4440.9507 3167.2761 L 4441.1307 3166.9161 L 4441.1307 3166.3861 L 4440.9507 3166.0261 L 4440.5907 3165.6661 M 4439.1607 3162.5161 L 4438.8007 3162.6961 L 4438.6207 3163.2361 L 4438.6207 3163.7661 L 4438.8007 3164.3061 L 4439.1607 3164.4861 L 4439.5207 3164.3061 L 4439.7007 3163.9461 L 4439.8807 3163.0561 L 4440.0507 3162.6961 L 4440.4107 3162.5161 L 4440.5907 3162.5161 L 4440.9507 3162.6961 L 4441.1307 3163.2361 L 4441.1307 3163.7661 L 4440.9507 3164.3061 L 4440.5907 3164.4861 M 4437.3707 3158.5761 L 4441.1307 3158.5761 M 4437.3707 3158.5761 L 4437.3707 3156.9661 L 4437.5507 3156.4361 L 4437.7307 3156.2561 L 4438.0907 3156.0761 L 4438.4407 3156.0761 L 4438.8007 3156.2561 L 4438.9807 3156.4361 L 4439.1607 3156.9661 L 4439.1607 3158.5761 M 4439.1607 3157.3261 L 4441.1307 3156.0761 M 4437.9107 3149.6361 L 4437.5507 3149.9861 L 4437.3707 3150.5261 L 4437.3707 3151.2461 L 4437.5507 3151.7761 L 4437.9107 3152.1361 L 4438.2607 3152.1361 L 4438.6207 3151.9561 L 4438.8007 3151.7761 L 4438.9807 3151.4261 L 4439.3407 3150.3461 L 4439.5207 3149.9861 L 4439.7007 3149.8161 L 4440.0507 3149.6361 L 4440.5907 3149.6361 L 4440.9507 3149.9861 L 4441.1307 3150.5261 L 4441.1307 3151.2461 L 4440.9507 3151.7761 L 4440.5907 3152.1361 M 4437.3707 3147.9161 L 4440.4107 3147.9161 L 4440.9507 3147.7361 L 4441.1307 3147.3761 L 4441.1307 3147.0161 M 4438.6207 3148.4561 L 4438.6207 3147.1961 M 4439.7007 3145.8361 L 4439.7007 3143.6961 L 4439.3407 3143.6961 L 4438.9807 3143.8661 L 4438.8007 3144.0461 L 4438.6207 3144.4061 L 4438.6207 3144.9461 L 4438.8007 3145.3061 L 4439.1607 3145.6561 L 4439.7007 3145.8361 L 4440.0507 3145.8361 L 4440.5907 3145.6561 L 4440.9507 3145.3061 L 4441.1307 3144.9461 L 4441.1307 3144.4061 L 4440.9507 3144.0461 L 4440.5907 3143.6961 M 4438.6207 3142.5061 L 4441.1307 3141.4361 M 4438.6207 3140.3661 L 4441.1307 3141.4361 M 4439.7007 3139.1861 L 4439.7007 3137.0361 L 4439.3407 3137.0361 L 4438.9807 3137.2161 L 4438.8007 3137.3961 L 4438.6207 3137.7461 L 4438.6207 3138.2861 L 4438.8007 3138.6461 L 4439.1607 3139.0061 L 4439.7007 3139.1861 L 4440.0507 3139.1861 L 4440.5907 3139.0061 L 4440.9507 3138.6461 L 4441.1307 3138.2861 L 4441.1307 3137.7461 L 4440.9507 3137.3961 L 4440.5907 3137.0361 M 4438.6207 3135.8561 L 4441.1307 3135.8561 M 4439.3407 3135.8561 L 4438.8007 3135.3161 L 4438.6207 3134.9561 L 4438.6207 3134.4261 L 4438.8007 3134.0661 L 4439.3407 3133.8861 L 4441.1307 3133.8861 M 4439.1607 3130.7361 L 4438.8007 3130.9161 L 4438.6207 3131.4461 L 4438.6207 3131.9861 L 4438.8007 3132.5261 L 4439.1607 3132.7061 L 4439.5207 3132.5261 L 4439.7007 3132.1661 L 4439.8807 3131.2761 L 4440.0507 3130.9161 L 4440.4107 3130.7361 L 4440.5907 3130.7361 L 4440.9507 3130.9161 L 4441.1307 3131.4461 L 4441.1307 3131.9861 L 4440.9507 3132.5261 L 4440.5907 3132.7061~~gge19278~~0~pinpart","TEXT~L~4432.5883~3210.9427~0.3937~90~0~3~~3.937~A SpaceBALLS Design~M 4428.6156 3209.5061 L 4432.3756 3210.9461 M 4428.6156 3209.5061 L 4432.3756 3208.0761 M 4431.1256 3210.4061 L 4431.1256 3208.6161 M 4429.1556 3201.6361 L 4428.7956 3201.9961 L 4428.6156 3202.5361 L 4428.6156 3203.2461 L 4428.7956 3203.7861 L 4429.1556 3204.1461 L 4429.5056 3204.1461 L 4429.8656 3203.9661 L 4430.0456 3203.7861 L 4430.2256 3203.4261 L 4430.5856 3202.3561 L 4430.7656 3201.9961 L 4430.9456 3201.8161 L 4431.2956 3201.6361 L 4431.8356 3201.6361 L 4432.1956 3201.9961 L 4432.3756 3202.5361 L 4432.3756 3203.2461 L 4432.1956 3203.7861 L 4431.8356 3204.1461 M 4429.8656 3200.4561 L 4433.6256 3200.4561 M 4430.4056 3200.4561 L 4430.0456 3200.0961 L 4429.8656 3199.7361 L 4429.8656 3199.2061 L 4430.0456 3198.8461 L 4430.4056 3198.4861 L 4430.9456 3198.3061 L 4431.2956 3198.3061 L 4431.8356 3198.4861 L 4432.1956 3198.8461 L 4432.3756 3199.2061 L 4432.3756 3199.7361 L 4432.1956 3200.0961 L 4431.8356 3200.4561 M 4429.8656 3194.9761 L 4432.3756 3194.9761 M 4430.4056 3194.9761 L 4430.0456 3195.3361 L 4429.8656 3195.6961 L 4429.8656 3196.2361 L 4430.0456 3196.5861 L 4430.4056 3196.9461 L 4430.9456 3197.1261 L 4431.2956 3197.1261 L 4431.8356 3196.9461 L 4432.1956 3196.5861 L 4432.3756 3196.2361 L 4432.3756 3195.6961 L 4432.1956 3195.3361 L 4431.8356 3194.9761 M 4430.4056 3191.6561 L 4430.0456 3192.0061 L 4429.8656 3192.3661 L 4429.8656 3192.9061 L 4430.0456 3193.2661 L 4430.4056 3193.6161 L 4430.9456 3193.7961 L 4431.2956 3193.7961 L 4431.8356 3193.6161 L 4432.1956 3193.2661 L 4432.3756 3192.9061 L 4432.3756 3192.3661 L 4432.1956 3192.0061 L 4431.8356 3191.6561 M 4430.9456 3190.4661 L 4430.9456 3188.3261 L 4430.5856 3188.3261 L 4430.2256 3188.5061 L 4430.0456 3188.6761 L 4429.8656 3189.0361 L 4429.8656 3189.5761 L 4430.0456 3189.9361 L 4430.4056 3190.2961 L 4430.9456 3190.4661 L 4431.2956 3190.4661 L 4431.8356 3190.2961 L 4432.1956 3189.9361 L 4432.3756 3189.5761 L 4432.3756 3189.0361 L 4432.1956 3188.6761 L 4431.8356 3188.3261 M 4428.6156 3187.1461 L 4432.3756 3187.1461 M 4428.6156 3187.1461 L 4428.6156 3185.5361 L 4428.7956 3184.9961 L 4428.9756 3184.8161 L 4429.3356 3184.6361 L 4429.6856 3184.6361 L 4430.0456 3184.8161 L 4430.2256 3184.9961 L 4430.4056 3185.5361 M 4430.4056 3187.1461 L 4430.4056 3185.5361 L 4430.5856 3184.9961 L 4430.7656 3184.8161 L 4431.1256 3184.6361 L 4431.6556 3184.6361 L 4432.0156 3184.8161 L 4432.1956 3184.9961 L 4432.3756 3185.5361 L 4432.3756 3187.1461 M 4428.6156 3182.0261 L 4432.3756 3183.4561 M 4428.6156 3182.0261 L 4432.3756 3180.5961 M 4431.1256 3182.9161 L 4431.1256 3181.1261 M 4428.6156 3179.4061 L 4432.3756 3179.4061 M 4432.3756 3179.4061 L 4432.3756 3177.2661 M 4428.6156 3176.0861 L 4432.3756 3176.0861 M 4432.3756 3176.0861 L 4432.3756 3173.9361 M 4429.1556 3170.2461 L 4428.7956 3170.6061 L 4428.6156 3171.1461 L 4428.6156 3171.8561 L 4428.7956 3172.3961 L 4429.1556 3172.7561 L 4429.5056 3172.7561 L 4429.8656 3172.5761 L 4430.0456 3172.3961 L 4430.2256 3172.0361 L 4430.5856 3170.9661 L 4430.7656 3170.6061 L 4430.9456 3170.4261 L 4431.2956 3170.2461 L 4431.8356 3170.2461 L 4432.1956 3170.6061 L 4432.3756 3171.1461 L 4432.3756 3171.8561 L 4432.1956 3172.3961 L 4431.8356 3172.7561 M 4428.6156 3166.3161 L 4432.3756 3166.3161 M 4428.6156 3166.3161 L 4428.6156 3165.0561 L 4428.7956 3164.5261 L 4429.1556 3164.1661 L 4429.5056 3163.9861 L 4430.0456 3163.8061 L 4430.9456 3163.8061 L 4431.4756 3163.9861 L 4431.8356 3164.1661 L 4432.1956 3164.5261 L 4432.3756 3165.0561 L 4432.3756 3166.3161 M 4430.9456 3162.6261 L 4430.9456 3160.4761 L 4430.5856 3160.4761 L 4430.2256 3160.6561 L 4430.0456 3160.8361 L 4429.8656 3161.1961 L 4429.8656 3161.7261 L 4430.0456 3162.0861 L 4430.4056 3162.4461 L 4430.9456 3162.6261 L 4431.2956 3162.6261 L 4431.8356 3162.4461 L 4432.1956 3162.0861 L 4432.3756 3161.7261 L 4432.3756 3161.1961 L 4432.1956 3160.8361 L 4431.8356 3160.4761 M 4430.4056 3157.3261 L 4430.0456 3157.5061 L 4429.8656 3158.0461 L 4429.8656 3158.5761 L 4430.0456 3159.1161 L 4430.4056 3159.2961 L 4430.7656 3159.1161 L 4430.9456 3158.7561 L 4431.1256 3157.8661 L 4431.2956 3157.5061 L 4431.6556 3157.3261 L 4431.8356 3157.3261 L 4432.1956 3157.5061 L 4432.3756 3158.0461 L 4432.3756 3158.5761 L 4432.1956 3159.1161 L 4431.8356 3159.2961 M 4428.6156 3156.1461 L 4428.7956 3155.9661 L 4428.6156 3155.7861 L 4428.4356 3155.9661 L 4428.6156 3156.1461 M 4429.8656 3155.9661 L 4432.3756 3155.9661 M 4429.8656 3152.4561 L 4432.7356 3152.4561 L 4433.2656 3152.6361 L 4433.4456 3152.8161 L 4433.6256 3153.1761 L 4433.6256 3153.7161 L 4433.4456 3154.0661 M 4430.4056 3152.4561 L 4430.0456 3152.8161 L 4429.8656 3153.1761 L 4429.8656 3153.7161 L 4430.0456 3154.0661 L 4430.4056 3154.4261 L 4430.9456 3154.6061 L 4431.2956 3154.6061 L 4431.8356 3154.4261 L 4432.1956 3154.0661 L 4432.3756 3153.7161 L 4432.3756 3153.1761 L 4432.1956 3152.8161 L 4431.8356 3152.4561 M 4429.8656 3151.2761 L 4432.3756 3151.2761 M 4430.5856 3151.2761 L 4430.0456 3150.7461 L 4429.8656 3150.3861 L 4429.8656 3149.8461 L 4430.0456 3149.4861 L 4430.5856 3149.3061 L 4432.3756 3149.3061~~gge19290~~0~pinpart","TEXT~L~4446.8434~3210.4427~0.3937~90~0~3~~1.9685~PreProd Version 31-1-23~M 4444.8607 3210.4461 L 4446.7407 3210.4461 M 4444.8607 3210.4461 L 4444.8607 3209.6361 L 4444.9507 3209.3661 L 4445.0407 3209.2761 L 4445.2107 3209.1861 L 4445.4807 3209.1861 L 4445.6607 3209.2761 L 4445.7507 3209.3661 L 4445.8407 3209.6361 L 4445.8407 3210.4461 M 4445.4807 3208.5961 L 4446.7407 3208.5961 M 4446.0207 3208.5961 L 4445.7507 3208.5061 L 4445.5707 3208.3261 L 4445.4807 3208.1561 L 4445.4807 3207.8861 M 4446.0207 3207.2961 L 4446.0207 3206.2161 L 4445.8407 3206.2161 L 4445.6607 3206.3061 L 4445.5707 3206.3961 L 4445.4807 3206.5761 L 4445.4807 3206.8461 L 4445.5707 3207.0261 L 4445.7507 3207.2061 L 4446.0207 3207.2961 L 4446.2007 3207.2961 L 4446.4707 3207.2061 L 4446.6507 3207.0261 L 4446.7407 3206.8461 L 4446.7407 3206.5761 L 4446.6507 3206.3961 L 4446.4707 3206.2161 M 4444.8607 3205.6261 L 4446.7407 3205.6261 M 4444.8607 3205.6261 L 4444.8607 3204.8261 L 4444.9507 3204.5561 L 4445.0407 3204.4661 L 4445.2107 3204.3761 L 4445.4807 3204.3761 L 4445.6607 3204.4661 L 4445.7507 3204.5561 L 4445.8407 3204.8261 L 4445.8407 3205.6261 M 4445.4807 3203.7861 L 4446.7407 3203.7861 M 4446.0207 3203.7861 L 4445.7507 3203.6961 L 4445.5707 3203.5161 L 4445.4807 3203.3361 L 4445.4807 3203.0661 M 4445.4807 3202.0361 L 4445.5707 3202.2061 L 4445.7507 3202.3861 L 4446.0207 3202.4761 L 4446.2007 3202.4761 L 4446.4707 3202.3861 L 4446.6507 3202.2061 L 4446.7407 3202.0361 L 4446.7407 3201.7661 L 4446.6507 3201.5861 L 4446.4707 3201.4061 L 4446.2007 3201.3161 L 4446.0207 3201.3161 L 4445.7507 3201.4061 L 4445.5707 3201.5861 L 4445.4807 3201.7661 L 4445.4807 3202.0361 M 4444.8607 3199.6561 L 4446.7407 3199.6561 M 4445.7507 3199.6561 L 4445.5707 3199.8261 L 4445.4807 3200.0061 L 4445.4807 3200.2761 L 4445.5707 3200.4561 L 4445.7507 3200.6361 L 4446.0207 3200.7261 L 4446.2007 3200.7261 L 4446.4707 3200.6361 L 4446.6507 3200.4561 L 4446.7407 3200.2761 L 4446.7407 3200.0061 L 4446.6507 3199.8261 L 4446.4707 3199.6561 M 4444.8607 3197.6861 L 4446.7407 3196.9661 M 4444.8607 3196.2561 L 4446.7407 3196.9661 M 4446.0207 3195.6561 L 4446.0207 3194.5861 L 4445.8407 3194.5861 L 4445.6607 3194.6761 L 4445.5707 3194.7661 L 4445.4807 3194.9461 L 4445.4807 3195.2161 L 4445.5707 3195.3961 L 4445.7507 3195.5761 L 4446.0207 3195.6561 L 4446.2007 3195.6561 L 4446.4707 3195.5761 L 4446.6507 3195.3961 L 4446.7407 3195.2161 L 4446.7407 3194.9461 L 4446.6507 3194.7661 L 4446.4707 3194.5861 M 4445.4807 3193.9961 L 4446.7407 3193.9961 M 4446.0207 3193.9961 L 4445.7507 3193.9061 L 4445.5707 3193.7261 L 4445.4807 3193.5461 L 4445.4807 3193.2761 M 4445.7507 3191.7061 L 4445.5707 3191.7961 L 4445.4807 3192.0661 L 4445.4807 3192.3361 L 4445.5707 3192.5961 L 4445.7507 3192.6861 L 4445.9307 3192.5961 L 4446.0207 3192.4261 L 4446.1107 3191.9761 L 4446.2007 3191.7961 L 4446.3807 3191.7061 L 4446.4707 3191.7061 L 4446.6507 3191.7961 L 4446.7407 3192.0661 L 4446.7407 3192.3361 L 4446.6507 3192.5961 L 4446.4707 3192.6861 M 4444.8607 3191.1161 L 4444.9507 3191.0261 L 4444.8607 3190.9361 L 4444.7707 3191.0261 L 4444.8607 3191.1161 M 4445.4807 3191.0261 L 4446.7407 3191.0261 M 4445.4807 3189.8961 L 4445.5707 3190.0761 L 4445.7507 3190.2561 L 4446.0207 3190.3461 L 4446.2007 3190.3461 L 4446.4707 3190.2561 L 4446.6507 3190.0761 L 4446.7407 3189.8961 L 4446.7407 3189.6261 L 4446.6507 3189.4561 L 4446.4707 3189.2761 L 4446.2007 3189.1861 L 4446.0207 3189.1861 L 4445.7507 3189.2761 L 4445.5707 3189.4561 L 4445.4807 3189.6261 L 4445.4807 3189.8961 M 4445.4807 3188.5961 L 4446.7407 3188.5961 M 4445.8407 3188.5961 L 4445.5707 3188.3261 L 4445.4807 3188.1461 L 4445.4807 3187.8761 L 4445.5707 3187.6961 L 4445.8407 3187.6061 L 4446.7407 3187.6061 M 4444.8607 3185.4561 L 4444.8607 3184.4761 L 4445.5707 3185.0161 L 4445.5707 3184.7461 L 4445.6607 3184.5661 L 4445.7507 3184.4761 L 4446.0207 3184.3861 L 4446.2007 3184.3861 L 4446.4707 3184.4761 L 4446.6507 3184.6561 L 4446.7407 3184.9261 L 4446.7407 3185.1961 L 4446.6507 3185.4561 L 4446.5607 3185.5461 L 4446.3807 3185.6361 M 4445.2107 3183.7961 L 4445.1207 3183.6161 L 4444.8607 3183.3461 L 4446.7407 3183.3461 M 4445.9307 3182.7561 L 4445.9307 3181.1461 M 4445.2107 3180.5561 L 4445.1207 3180.3761 L 4444.8607 3180.1061 L 4446.7407 3180.1061 M 4445.9307 3179.5161 L 4445.9307 3177.9061 M 4445.3007 3177.2261 L 4445.2107 3177.2261 L 4445.0407 3177.1361 L 4444.9507 3177.0461 L 4444.8607 3176.8661 L 4444.8607 3176.5161 L 4444.9507 3176.3361 L 4445.0407 3176.2461 L 4445.2107 3176.1561 L 4445.3907 3176.1561 L 4445.5707 3176.2461 L 4445.8407 3176.4261 L 4446.7407 3177.3161 L 4446.7407 3176.0661 M 4444.8607 3175.2961 L 4444.8607 3174.3161 L 4445.5707 3174.8461 L 4445.5707 3174.5761 L 4445.6607 3174.4061 L 4445.7507 3174.3161 L 4446.0207 3174.2261 L 4446.2007 3174.2261 L 4446.4707 3174.3161 L 4446.6507 3174.4861 L 4446.7407 3174.7561 L 4446.7407 3175.0261 L 4446.6507 3175.2961 L 4446.5607 3175.3861 L 4446.3807 3175.4761~~gge19302~~0~pinpart","TEXT~L~4589.3434~3152.4427~0.3937~0~0~3~~3.937~MISO~M 4589.34 3148.47 L 4589.34 3152.23 M 4589.34 3148.47 L 4590.78 3152.23 M 4592.21 3148.47 L 4590.78 3152.23 M 4592.21 3148.47 L 4592.21 3152.23 M 4593.39 3148.47 L 4593.39 3152.23 M 4597.07 3149.01 L 4596.72 3148.65 L 4596.18 3148.47 L 4595.46 3148.47 L 4594.93 3148.65 L 4594.57 3149.01 L 4594.57 3149.36 L 4594.75 3149.72 L 4594.93 3149.9 L 4595.28 3150.08 L 4596.36 3150.44 L 4596.72 3150.62 L 4596.9 3150.8 L 4597.07 3151.15 L 4597.07 3151.69 L 4596.72 3152.05 L 4596.18 3152.23 L 4595.46 3152.23 L 4594.93 3152.05 L 4594.57 3151.69 M 4599.33 3148.47 L 4598.97 3148.65 L 4598.61 3149.01 L 4598.43 3149.36 L 4598.26 3149.9 L 4598.26 3150.8 L 4598.43 3151.33 L 4598.61 3151.69 L 4598.97 3152.05 L 4599.33 3152.23 L 4600.04 3152.23 L 4600.4 3152.05 L 4600.76 3151.69 L 4600.94 3151.33 L 4601.12 3150.8 L 4601.12 3149.9 L 4600.94 3149.36 L 4600.76 3149.01 L 4600.4 3148.65 L 4600.04 3148.47 L 4599.33 3148.47~~gge20218~~0~pinpart","TEXT~L~4589.3434~3141.9427~0.3937~0~0~3~~3.937~MOSI~M 4589.34 3137.97L4589.34 3141.73 M 4589.34 3137.97L4590.78 3141.73 M 4592.21 3137.97L4590.78 3141.73 M 4592.21 3137.97L4592.21 3141.73 M 4594.46 3137.97L4594.1 3138.15 L4593.75 3138.51 L4593.57 3138.86 L4593.39 3139.4 L4593.39 3140.3 L4593.57 3140.83 L4593.75 3141.19 L4594.1 3141.55 L4594.46 3141.73 L4595.18 3141.73 L4595.54 3141.55 L4595.89 3141.19 L4596.07 3140.83 L4596.25 3140.3 L4596.25 3139.4 L4596.07 3138.86 L4595.89 3138.51 L4595.54 3138.15 L4595.18 3137.97 L4594.46 3137.97 M 4599.94 3138.51L4599.58 3138.15 L4599.04 3137.97 L4598.33 3137.97 L4597.79 3138.15 L4597.43 3138.51 L4597.43 3138.86 L4597.61 3139.22 L4597.79 3139.4 L4598.15 3139.58 L4599.22 3139.94 L4599.58 3140.12 L4599.76 3140.3 L4599.94 3140.65 L4599.94 3141.19 L4599.58 3141.55 L4599.04 3141.73 L4598.33 3141.73 L4597.79 3141.55 L4597.43 3141.19 M 4601.12 3137.97L4601.12 3141.73 ~~gge20242~~0~pinpart","TEXT~L~4589.3434~3131.9427~0.3937~0~0~3~~3.937~SCK~M 4591.85 3128.51L4591.49 3128.15 L4590.95 3127.97 L4590.24 3127.97 L4589.7 3128.15 L4589.34 3128.51 L4589.34 3128.86 L4589.52 3129.22 L4589.7 3129.4 L4590.06 3129.58 L4591.13 3129.94 L4591.49 3130.12 L4591.67 3130.3 L4591.85 3130.65 L4591.85 3131.19 L4591.49 3131.55 L4590.95 3131.73 L4590.24 3131.73 L4589.7 3131.55 L4589.34 3131.19 M 4595.71 3128.86L4595.54 3128.51 L4595.18 3128.15 L4594.82 3127.97 L4594.1 3127.97 L4593.75 3128.15 L4593.39 3128.51 L4593.21 3128.86 L4593.03 3129.4 L4593.03 3130.3 L4593.21 3130.83 L4593.39 3131.19 L4593.75 3131.55 L4594.1 3131.73 L4594.82 3131.73 L4595.18 3131.55 L4595.54 3131.19 L4595.71 3130.83 M 4596.9 3127.97L4596.9 3131.73 M 4599.4 3127.97L4596.9 3130.48 M 4597.79 3129.58L4599.4 3131.73 ~~gge20254~~0~pinpart","TEXT~L~4589.8434~3121.9427~0.3937~0~0~3~~3.937~NC~M 4589.84 3117.97 L 4589.84 3121.73 M 4589.84 3117.97 L 4592.35 3121.73 M 4592.35 3117.97 L 4592.35 3121.73 M 4596.21 3118.86 L 4596.04 3118.51 L 4595.68 3118.15 L 4595.32 3117.97 L 4594.6 3117.97 L 4594.25 3118.15 L 4593.89 3118.51 L 4593.71 3118.86 L 4593.53 3119.4 L 4593.53 3120.3 L 4593.71 3120.83 L 4593.89 3121.19 L 4594.25 3121.55 L 4594.6 3121.73 L 4595.32 3121.73 L 4595.68 3121.55 L 4596.04 3121.19 L 4596.21 3120.83~~gge20266~~0~pinpart","LIB~4582.8434~3134.4427~package`HDR-TH_4P-P2.54-V_RE-H042TD-1190`Contributor`LCSC`link`https:\/\/item.szlcsc.com\/171714.html`3DModel`HDR-TH_4P-P2.54-M-LI-1X4P`BOM_Supplier`LCSC`BOM_Supplier Part`C160334`BOM_Manufacturer`JST`BOM_Manufacturer Part`RE-H042TD-1190(LF)(SN)`BOM_JLCPCB Part Class`Extended Part`spicePre`C`spiceSymbolName`RE-H042TD-1190 (LF)(SN)`~270~~gge837697eff36881ee~2~74a121d1141148f386015af5c97939a9~1607329818~0~~none~~#@$TEXT~N~4601.0134~3049.5328~0.6~90~1~4~~4.5~RE-H042TD-1190 (LF)(SN)~M 4596.4734 3049.5328 L 4600.7634 3049.5328 M 4596.4734 3049.5328 L 4596.4734 3051.3728 L 4596.6734 3051.9828 L 4596.8834 3052.1928 L 4597.2934 3052.3928 L 4597.7034 3052.3928 L 4598.1134 3052.1928 L 4598.3134 3051.9828 L 4598.5134 3051.3728 L 4598.5134 3049.5328 M 4598.5134 3050.9628 L 4600.7634 3052.3928 M 4596.4734 3053.7428 L 4600.7634 3053.7428 M 4596.4734 3053.7428 L 4596.4734 3056.4028 M 4598.5134 3053.7428 L 4598.5134 3055.3828 M 4600.7634 3053.7428 L 4600.7634 3056.4028 M 4598.9234 3057.7528 L 4598.9234 3061.4328 M 4596.4734 3062.7828 L 4600.7634 3062.7828 M 4596.4734 3065.6528 L 4600.7634 3065.6528 M 4598.5134 3062.7828 L 4598.5134 3065.6528 M 4596.4734 3068.2328 L 4596.6734 3067.6128 L 4597.2934 3067.2028 L 4598.3134 3067.0028 L 4598.9234 3067.0028 L 4599.9534 3067.2028 L 4600.5634 3067.6128 L 4600.7634 3068.2328 L 4600.7634 3068.6328 L 4600.5634 3069.2528 L 4599.9534 3069.6628 L 4598.9234 3069.8628 L 4598.3134 3069.8628 L 4597.2934 3069.6628 L 4596.6734 3069.2528 L 4596.4734 3068.6328 L 4596.4734 3068.2328 M 4596.4734 3073.2628 L 4599.3334 3071.2128 L 4599.3334 3074.2828 M 4596.4734 3073.2628 L 4600.7634 3073.2628 M 4597.4934 3075.8328 L 4597.2934 3075.8328 L 4596.8834 3076.0428 L 4596.6734 3076.2428 L 4596.4734 3076.6528 L 4596.4734 3077.4728 L 4596.6734 3077.8828 L 4596.8834 3078.0828 L 4597.2934 3078.2928 L 4597.7034 3078.2928 L 4598.1134 3078.0828 L 4598.7234 3077.6828 L 4600.7634 3075.6328 L 4600.7634 3078.4928 M 4596.4734 3081.2828 L 4600.7634 3081.2828 M 4596.4734 3079.8428 L 4596.4734 3082.7128 M 4596.4734 3084.0628 L 4600.7634 3084.0628 M 4596.4734 3084.0628 L 4596.4734 3085.4928 L 4596.6734 3086.1028 L 4597.0834 3086.5128 L 4597.4934 3086.7228 L 4598.1134 3086.9228 L 4599.1334 3086.9228 L 4599.7434 3086.7228 L 4600.1534 3086.5128 L 4600.5634 3086.1028 L 4600.7634 3085.4928 L 4600.7634 3084.0628 M 4598.9234 3088.2728 L 4598.9234 3091.9528 M 4597.2934 3093.3028 L 4597.0834 3093.7128 L 4596.4734 3094.3328 L 4600.7634 3094.3328 M 4597.2934 3095.6828 L 4597.0834 3096.0828 L 4596.4734 3096.7028 L 4600.7634 3096.7028 M 4597.9034 3100.7128 L 4598.5134 3100.5028 L 4598.9234 3100.0928 L 4599.1334 3099.4828 L 4599.1334 3099.2828 L 4598.9234 3098.6628 L 4598.5134 3098.2528 L 4597.9034 3098.0528 L 4597.7034 3098.0528 L 4597.0834 3098.2528 L 4596.6734 3098.6628 L 4596.4734 3099.2828 L 4596.4734 3099.4828 L 4596.6734 3100.0928 L 4597.0834 3100.5028 L 4597.9034 3100.7128 L 4598.9234 3100.7128 L 4599.9534 3100.5028 L 4600.5634 3100.0928 L 4600.7634 3099.4828 L 4600.7634 3099.0728 L 4600.5634 3098.4628 L 4600.1534 3098.2528 M 4596.4734 3103.2828 L 4596.6734 3102.6728 L 4597.2934 3102.2628 L 4598.3134 3102.0628 L 4598.9234 3102.0628 L 4599.9534 3102.2628 L 4600.5634 3102.6728 L 4600.7634 3103.2828 L 4600.7634 3103.6928 L 4600.5634 3104.3128 L 4599.9534 3104.7228 L 4598.9234 3104.9228 L 4598.3134 3104.9228 L 4597.2934 3104.7228 L 4596.6734 3104.3128 L 4596.4734 3103.6928 L 4596.4734 3103.2828 M 4595.6534 3110.8528 L 4596.0634 3110.4428 L 4596.6734 3110.0328 L 4597.4934 3109.6328 L 4598.5134 3109.4228 L 4599.3334 3109.4228 L 4600.3634 3109.6328 L 4601.1734 3110.0328 L 4601.7934 3110.4428 L 4602.2034 3110.8528 M 4596.4734 3112.2028 L 4600.7634 3112.2028 M 4600.7634 3112.2028 L 4600.7634 3114.6628 M 4596.4734 3116.0128 L 4600.7634 3116.0128 M 4596.4734 3116.0128 L 4596.4734 3118.6728 M 4598.5134 3116.0128 L 4598.5134 3117.6428 M 4595.6534 3120.0228 L 4596.0634 3120.4328 L 4596.6734 3120.8328 L 4597.4934 3121.2428 L 4598.5134 3121.4528 L 4599.3334 3121.4528 L 4600.3634 3121.2428 L 4601.1734 3120.8328 L 4601.7934 3120.4328 L 4602.2034 3120.0228 M 4595.6534 3124.2328 L 4596.0634 3123.8228 L 4596.6734 3123.4128 L 4597.4934 3123.0028 L 4598.5134 3122.8028 L 4599.3334 3122.8028 L 4600.3634 3123.0028 L 4601.1734 3123.4128 L 4601.7934 3123.8228 L 4602.2034 3124.2328 M 4597.0834 3128.4428 L 4596.6734 3128.0328 L 4596.4734 3127.4228 L 4596.4734 3126.6028 L 4596.6734 3125.9928 L 4597.0834 3125.5828 L 4597.4934 3125.5828 L 4597.9034 3125.7828 L 4598.1134 3125.9928 L 4598.3134 3126.4028 L 4598.7234 3127.6328 L 4598.9234 3128.0328 L 4599.1334 3128.2428 L 4599.5434 3128.4428 L 4600.1534 3128.4428 L 4600.5634 3128.0328 L 4600.7634 3127.4228 L 4600.7634 3126.6028 L 4600.5634 3125.9928 L 4600.1534 3125.5828 M 4596.4734 3129.7928 L 4600.7634 3129.7928 M 4596.4734 3129.7928 L 4600.7634 3132.6628 M 4596.4734 3132.6628 L 4600.7634 3132.6628 M 4595.6534 3134.0128 L 4596.0634 3134.4228 L 4596.6734 3134.8328 L 4597.4934 3135.2328 L 4598.5134 3135.4428 L 4599.3334 3135.4428 L 4600.3634 3135.2328 L 4601.1734 3134.8328 L 4601.7934 3134.4228 L 4602.2034 3134.0128~none~gge16112~~0~#@$TEXT~P~4589.8434~3135.4427~0.6~270~1~4~~4.5~CN1~M 4593.3634 3132.3727 L 4593.7734 3132.5827 L 4594.1834 3132.9927 L 4594.3834 3133.3927 L 4594.3834 3134.2127 L 4594.1834 3134.6227 L 4593.7734 3135.0327 L 4593.3634 3135.2427 L 4592.7434 3135.4427 L 4591.7234 3135.4427 L 4591.1134 3135.2427 L 4590.7034 3135.0327 L 4590.2934 3134.6227 L 4590.0934 3134.2127 L 4590.0934 3133.3927 L 4590.2934 3132.9927 L 4590.7034 3132.5827 L 4591.1134 3132.3727 M 4594.3834 3131.0227 L 4590.0934 3131.0227 M 4594.3834 3131.0227 L 4590.0934 3128.1627 M 4594.3834 3128.1627 L 4590.0934 3128.1627 M 4593.5634 3126.8127 L 4593.7734 3126.4027 L 4594.3834 3125.7927 L 4590.0934 3125.7927~none~gge16118~~0~#@$TRACK~1~4~~4588.0795 3154.9151 4588.0795 3113.9703~gge16124~0#@$TRACK~1~4~~4577.6073 3113.9703 4577.6073 3154.9151~gge16127~0#@$TRACK~1~4~~4588.0795 3154.9151 4577.6073 3154.9151~gge16130~0#@$TRACK~1~4~~4588.0795 3113.9703 4577.6073 3113.9703~gge16133~0#@$SVGNODE~{\"gId\":\"gge16136\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"39.9999\",\"c_height\":\"10.47242\",\"c_rotation\":\"0,0,270\",\"z\":\"-11.811\",\"c_origin\":\"4582.8435,3134.4426\",\"uuid\":\"62d1dd00f91344f487735a33792f8f57\",\"c_etype\":\"outline3D\",\"title\":\"HDR-TH_4P-P2.54-M-LI-1X4P\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge16136\"},\"childNodes\":[{\"gId\":\"gge16139\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4585.7174 3154.4427 4582.0166 3154.4427 4579.9694 3154.4427 4578.3158 3153.3403 4577.6072 3152.8679 4577.6072 3146.0175 4578.3158 3145.545 4579.9694 3144.4427 4578.3158 3143.3403 4577.6072 3142.8679 4577.6072 3136.0175 4578.3158 3135.5451 4579.9694 3134.4427 4578.9458 3133.7734 4578.3158 3133.3403 4577.6072 3132.8679 4577.6072 3126.0175 4578.3158 3125.5451 4579.9694 3124.4427 4578.3158 3123.3404 4577.6072 3122.8679 4577.6072 3116.0175 4578.3158 3115.5451 4579.9694 3114.4427 4582.0166 3114.4427 4585.7174 3114.4427 4588.0796 3116.0175 4588.0796 3122.8679 4585.7174 3124.4427 4588.0796 3126.0175 4588.0796 3130.8994 4588.0796 3131.9624 4588.0796 3132.8679 4586.8591 3133.6947 4586.741 3133.7734 4585.7174 3134.4427 4588.0796 3136.0175 4588.0796 3136.4899 4588.0796 3138.1435 4588.0796 3142.8679 4585.7174 3144.4427 4588.0796 3146.0175 4588.0796 3152.5923 4588.0796 3152.8679 4585.7174 3154.4427 4585.7174 3154.4427\",\"id\":\"gge16139\"}}]}#@$SOLIDREGION~99~~M 4588.5795 3155.4151 L 4588.5795 3113.4703 L 4577.1073 3113.4703 L 4577.1073 3155.4151 Z ~solid~gge16142~~~~0#@$CIRCLE~4582.8434~3149.4427~0.886~1.7717~100~gge16145~0~~#@$CIRCLE~4582.8434~3139.4427~0.886~1.7717~100~gge16148~0~~#@$CIRCLE~4582.8434~3129.4427~0.886~1.7717~100~gge16151~0~~#@$CIRCLE~4582.8434~3119.4427~0.886~1.7717~100~gge16154~0~~#@$CIRCLE~4577.1074~3155.4147~0.118~0.2362~101~gge16157~0~~#@$PAD~RECT~4582.8434~3149.4427~6.6929~6.6929~11~SPI_MISO~1~2.1654~4586.1898 3152.7891 4586.1898 3146.0962 4579.4969 3146.0962 4579.4969 3152.7891~270~gge16160~0~~Y~0~0~0.2~4582.8434,3149.4427#@$PAD~ELLIPSE~4582.8434~3139.4427~6.6929~6.6929~11~SPI_MOSI~2~2.1654~~270~gge16175~0~~Y~0~0~0.2~4582.8434,3139.4427#@$PAD~ELLIPSE~4582.8434~3129.4427~6.6929~6.6929~11~SPI_SCK~3~2.1654~~270~gge16190~0~~Y~0~0~0.2~4582.8434,3129.4427#@$PAD~ELLIPSE~4582.8434~3119.4427~6.6929~6.6929~11~~4~2.1654~~270~gge16205~0~~Y~0~0~0.2~4582.8434,3119.4427","LIB~4687.3434~3127.4427~package`HDR-TH_4P-P2.54-V_RE-H042TD-1190`Contributor`LCSC`link`https:\/\/item.szlcsc.com\/171714.html`3DModel`HDR-TH_4P-P2.54-M-LI-1X4P`BOM_Supplier`LCSC`BOM_Supplier Part`C160334`BOM_Manufacturer`JST`BOM_Manufacturer Part`RE-H042TD-1190(LF)(SN)`BOM_JLCPCB Part Class`Extended Part`spicePre`C`spiceSymbolName`RE-H042TD-1190 (LF)(SN)`~180~~gge41bc461751e1d3e1~1~74a121d1141148f386015af5c97939a9~1607329818~0~~none~~#@$TEXT~N~4602.4335~3145.6124~0.6~0~~3~~4.5~RE-H042TD-1190 (LF)(SN)~M 4602.4335 3141.0724 L 4602.4335 3145.3624 M 4602.4335 3141.0724 L 4604.2735 3141.0724 L 4604.8835 3141.2724 L 4605.0935 3141.4824 L 4605.2935 3141.8924 L 4605.2935 3142.3024 L 4605.0935 3142.7124 L 4604.8835 3142.9124 L 4604.2735 3143.1124 L 4602.4335 3143.1124 M 4603.8635 3143.1124 L 4605.2935 3145.3624 M 4606.6435 3141.0724 L 4606.6435 3145.3624 M 4606.6435 3141.0724 L 4609.3035 3141.0724 M 4606.6435 3143.1124 L 4608.2835 3143.1124 M 4606.6435 3145.3624 L 4609.3035 3145.3624 M 4610.6535 3143.5224 L 4614.3335 3143.5224 M 4615.6835 3141.0724 L 4615.6835 3145.3624 M 4618.5535 3141.0724 L 4618.5535 3145.3624 M 4615.6835 3143.1124 L 4618.5535 3143.1124 M 4621.1335 3141.0724 L 4620.5135 3141.2724 L 4620.1035 3141.8924 L 4619.9035 3142.9124 L 4619.9035 3143.5224 L 4620.1035 3144.5524 L 4620.5135 3145.1624 L 4621.1335 3145.3624 L 4621.5335 3145.3624 L 4622.1535 3145.1624 L 4622.5635 3144.5524 L 4622.7635 3143.5224 L 4622.7635 3142.9124 L 4622.5635 3141.8924 L 4622.1535 3141.2724 L 4621.5335 3141.0724 L 4621.1335 3141.0724 M 4626.1635 3141.0724 L 4624.1135 3143.9324 L 4627.1835 3143.9324 M 4626.1635 3141.0724 L 4626.1635 3145.3624 M 4628.7335 3142.0924 L 4628.7335 3141.8924 L 4628.9435 3141.4824 L 4629.1435 3141.2724 L 4629.5535 3141.0724 L 4630.3735 3141.0724 L 4630.7835 3141.2724 L 4630.9835 3141.4824 L 4631.1935 3141.8924 L 4631.1935 3142.3024 L 4630.9835 3142.7124 L 4630.5835 3143.3224 L 4628.5335 3145.3624 L 4631.3935 3145.3624 M 4634.1835 3141.0724 L 4634.1835 3145.3624 M 4632.7435 3141.0724 L 4635.6135 3141.0724 M 4636.9635 3141.0724 L 4636.9635 3145.3624 M 4636.9635 3141.0724 L 4638.3935 3141.0724 L 4639.0035 3141.2724 L 4639.4135 3141.6824 L 4639.6235 3142.0924 L 4639.8235 3142.7124 L 4639.8235 3143.7324 L 4639.6235 3144.3424 L 4639.4135 3144.7524 L 4639.0035 3145.1624 L 4638.3935 3145.3624 L 4636.9635 3145.3624 M 4641.1735 3143.5224 L 4644.8535 3143.5224 M 4646.2035 3141.8924 L 4646.6135 3141.6824 L 4647.2335 3141.0724 L 4647.2335 3145.3624 M 4648.5835 3141.8924 L 4648.9835 3141.6824 L 4649.6035 3141.0724 L 4649.6035 3145.3624 M 4653.6135 3142.5024 L 4653.4035 3143.1124 L 4652.9935 3143.5224 L 4652.3835 3143.7324 L 4652.1835 3143.7324 L 4651.5635 3143.5224 L 4651.1535 3143.1124 L 4650.9535 3142.5024 L 4650.9535 3142.3024 L 4651.1535 3141.6824 L 4651.5635 3141.2724 L 4652.1835 3141.0724 L 4652.3835 3141.0724 L 4652.9935 3141.2724 L 4653.4035 3141.6824 L 4653.6135 3142.5024 L 4653.6135 3143.5224 L 4653.4035 3144.5524 L 4652.9935 3145.1624 L 4652.3835 3145.3624 L 4651.9735 3145.3624 L 4651.3635 3145.1624 L 4651.1535 3144.7524 M 4656.1835 3141.0724 L 4655.5735 3141.2724 L 4655.1635 3141.8924 L 4654.9635 3142.9124 L 4654.9635 3143.5224 L 4655.1635 3144.5524 L 4655.5735 3145.1624 L 4656.1835 3145.3624 L 4656.5935 3145.3624 L 4657.2135 3145.1624 L 4657.6235 3144.5524 L 4657.8235 3143.5224 L 4657.8235 3142.9124 L 4657.6235 3141.8924 L 4657.2135 3141.2724 L 4656.5935 3141.0724 L 4656.1835 3141.0724 M 4663.7535 3140.2524 L 4663.3435 3140.6624 L 4662.9335 3141.2724 L 4662.5335 3142.0924 L 4662.3235 3143.1124 L 4662.3235 3143.9324 L 4662.5335 3144.9624 L 4662.9335 3145.7724 L 4663.3435 3146.3924 L 4663.7535 3146.8024 M 4665.1035 3141.0724 L 4665.1035 3145.3624 M 4665.1035 3145.3624 L 4667.5635 3145.3624 M 4668.9135 3141.0724 L 4668.9135 3145.3624 M 4668.9135 3141.0724 L 4671.5735 3141.0724 M 4668.9135 3143.1124 L 4670.5435 3143.1124 M 4672.9235 3140.2524 L 4673.3335 3140.6624 L 4673.7335 3141.2724 L 4674.1435 3142.0924 L 4674.3535 3143.1124 L 4674.3535 3143.9324 L 4674.1435 3144.9624 L 4673.7335 3145.7724 L 4673.3335 3146.3924 L 4672.9235 3146.8024 M 4677.1335 3140.2524 L 4676.7235 3140.6624 L 4676.3135 3141.2724 L 4675.9035 3142.0924 L 4675.7035 3143.1124 L 4675.7035 3143.9324 L 4675.9035 3144.9624 L 4676.3135 3145.7724 L 4676.7235 3146.3924 L 4677.1335 3146.8024 M 4681.3435 3141.6824 L 4680.9335 3141.2724 L 4680.3235 3141.0724 L 4679.5035 3141.0724 L 4678.8935 3141.2724 L 4678.4835 3141.6824 L 4678.4835 3142.0924 L 4678.6835 3142.5024 L 4678.8935 3142.7124 L 4679.3035 3142.9124 L 4680.5335 3143.3224 L 4680.9335 3143.5224 L 4681.1435 3143.7324 L 4681.3435 3144.1424 L 4681.3435 3144.7524 L 4680.9335 3145.1624 L 4680.3235 3145.3624 L 4679.5035 3145.3624 L 4678.8935 3145.1624 L 4678.4835 3144.7524 M 4682.6935 3141.0724 L 4682.6935 3145.3624 M 4682.6935 3141.0724 L 4685.5635 3145.3624 M 4685.5635 3141.0724 L 4685.5635 3145.3624 M 4686.9135 3140.2524 L 4687.3235 3140.6624 L 4687.7335 3141.2724 L 4688.1335 3142.0924 L 4688.3435 3143.1124 L 4688.3435 3143.9324 L 4688.1335 3144.9624 L 4687.7335 3145.7724 L 4687.3235 3146.3924 L 4686.9135 3146.8024~none~gge16226~~0~#@$TEXT~P~4688.3434~3134.4427~0.6~180~~3~~4.5~CN2~M 4685.2734 3137.9627 L 4685.4834 3138.3727 L 4685.8934 3138.7827 L 4686.2934 3138.9827 L 4687.1134 3138.9827 L 4687.5234 3138.7827 L 4687.9334 3138.3727 L 4688.1434 3137.9627 L 4688.3434 3137.3427 L 4688.3434 3136.3227 L 4688.1434 3135.7127 L 4687.9334 3135.3027 L 4687.5234 3134.8927 L 4687.1134 3134.6927 L 4686.2934 3134.6927 L 4685.8934 3134.8927 L 4685.4834 3135.3027 L 4685.2734 3135.7127 M 4683.9234 3138.9827 L 4683.9234 3134.6927 M 4683.9234 3138.9827 L 4681.0634 3134.6927 M 4681.0634 3138.9827 L 4681.0634 3134.6927 M 4679.5034 3137.9627 L 4679.5034 3138.1627 L 4679.3034 3138.5727 L 4679.0934 3138.7827 L 4678.6934 3138.9827 L 4677.8734 3138.9827 L 4677.4634 3138.7827 L 4677.2534 3138.5727 L 4677.0534 3138.1627 L 4677.0534 3137.7527 L 4677.2534 3137.3427 L 4677.6634 3136.7327 L 4679.7134 3134.6927 L 4676.8434 3134.6927~none~gge16232~~0~#@$TRACK~1~3~~4707.8158 3132.6788 4666.871 3132.6788~gge16238~0#@$TRACK~1~3~~4666.871 3122.2066 4707.8158 3122.2066~gge16241~0#@$TRACK~1~3~~4707.8158 3132.6788 4707.8158 3122.2066~gge16244~0#@$TRACK~1~3~~4666.871 3132.6788 4666.871 3122.2066~gge16247~0#@$SVGNODE~{\"gId\":\"gge16250\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"39.9999\",\"c_height\":\"10.47242\",\"c_rotation\":\"0,0,180\",\"z\":\"-11.811\",\"c_origin\":\"4687.3433,3127.4427\",\"uuid\":\"62d1dd00f91344f487735a33792f8f57\",\"c_etype\":\"outline3D\",\"title\":\"HDR-TH_4P-P2.54-M-LI-1X4P\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge16250\"},\"childNodes\":[{\"gId\":\"gge16253\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4707.3434 3130.3167 4707.3434 3126.6159 4707.3434 3124.5687 4706.241 3122.9151 4705.7686 3122.2065 4698.9182 3122.2065 4698.4457 3122.9151 4697.3434 3124.5687 4696.241 3122.9151 4695.7686 3122.2065 4688.9182 3122.2065 4688.4458 3122.9151 4687.3434 3124.5687 4686.6741 3123.5451 4686.241 3122.9151 4685.7686 3122.2065 4678.9182 3122.2065 4678.4458 3122.9151 4677.3434 3124.5687 4676.2411 3122.9151 4675.7686 3122.2065 4668.9182 3122.2065 4668.4458 3122.9151 4667.3434 3124.5687 4667.3434 3126.6159 4667.3434 3130.3167 4668.9182 3132.6789 4675.7686 3132.6789 4677.3434 3130.3167 4678.9182 3132.6789 4683.8001 3132.6789 4684.8631 3132.6789 4685.7686 3132.6789 4686.5954 3131.4584 4686.6741 3131.3403 4687.3434 3130.3167 4688.9182 3132.6789 4689.3906 3132.6789 4691.0442 3132.6789 4695.7686 3132.6789 4697.3434 3130.3167 4698.9182 3132.6789 4705.493 3132.6789 4705.7686 3132.6789 4707.3434 3130.3167 4707.3434 3130.3167\",\"id\":\"gge16253\"}}]}#@$SOLIDREGION~99~~M 4708.3158 3133.1788 L 4666.371 3133.1788 L 4666.371 3121.7066 L 4708.3158 3121.7066 Z ~solid~gge16256~~~~0#@$CIRCLE~4702.3434~3127.4427~0.886~1.7717~100~gge16259~0~~#@$CIRCLE~4692.3434~3127.4427~0.886~1.7717~100~gge16262~0~~#@$CIRCLE~4682.3434~3127.4427~0.886~1.7717~100~gge16265~0~~#@$CIRCLE~4672.3434~3127.4427~0.886~1.7717~100~gge16268~0~~#@$CIRCLE~4708.3154~3121.7067~0.118~0.2362~101~gge16271~0~~#@$PAD~RECT~4702.3434~3127.4427~6.6929~6.6929~11~START1~1~2.1654~4705.6898 3130.7891 4698.9969 3130.7891 4698.9969 3124.0962 4705.6898 3124.0962~180~gge16274~0~~Y~0~0~0.2~4702.3434,3127.4427#@$PAD~ELLIPSE~4692.3434~3127.4427~6.6929~6.6929~11~START2~2~2.1654~~180~gge16289~0~~Y~0~0~0.2~4692.3434,3127.4427#@$PAD~ELLIPSE~4682.3434~3127.4427~6.6929~6.6929~11~OUT1~3~2.1654~~180~gge16304~0~~Y~0~0~0.2~4682.3434,3127.4427#@$PAD~ELLIPSE~4672.3434~3127.4427~6.6929~6.6929~11~OUT2~4~2.1654~~180~gge16319~0~~Y~0~0~0.2~4672.3434,3127.4427","LIB~4607.8434~3268.9427~package`HDR-TH_4P-P2.54-V_RE-H042TD-1190`Contributor`LCSC`link`https:\/\/item.szlcsc.com\/171714.html`3DModel`HDR-TH_4P-P2.54-M-LI-1X4P`BOM_Supplier`LCSC`BOM_Supplier Part`C160334`BOM_Manufacturer`JST`BOM_Manufacturer Part`RE-H042TD-1190(LF)(SN)`BOM_JLCPCB Part Class`Extended Part`spicePre`C`spiceSymbolName`RE-H042TD-1190 (LF)(SN)`~~~ggec2c0d7ebb5797b9d~1~74a121d1141148f386015af5c97939a9~1607329818~0~~none~~#@$TEXT~N~4606.8434~3254.9427~0.6~0~~3~~4.5~RE-H042TD-1190 (LF)(SN)~M 4606.8434 3250.4027 L 4606.8434 3254.6927 M 4606.8434 3250.4027 L 4608.6834 3250.4027 L 4609.2934 3250.6027 L 4609.5034 3250.8127 L 4609.7034 3251.2227 L 4609.7034 3251.6327 L 4609.5034 3252.0427 L 4609.2934 3252.2427 L 4608.6834 3252.4427 L 4606.8434 3252.4427 M 4608.2734 3252.4427 L 4609.7034 3254.6927 M 4611.0534 3250.4027 L 4611.0534 3254.6927 M 4611.0534 3250.4027 L 4613.7134 3250.4027 M 4611.0534 3252.4427 L 4612.6934 3252.4427 M 4611.0534 3254.6927 L 4613.7134 3254.6927 M 4615.0634 3252.8527 L 4618.7434 3252.8527 M 4620.0934 3250.4027 L 4620.0934 3254.6927 M 4622.9634 3250.4027 L 4622.9634 3254.6927 M 4620.0934 3252.4427 L 4622.9634 3252.4427 M 4625.5434 3250.4027 L 4624.9234 3250.6027 L 4624.5134 3251.2227 L 4624.3134 3252.2427 L 4624.3134 3252.8527 L 4624.5134 3253.8827 L 4624.9234 3254.4927 L 4625.5434 3254.6927 L 4625.9434 3254.6927 L 4626.5634 3254.4927 L 4626.9734 3253.8827 L 4627.1734 3252.8527 L 4627.1734 3252.2427 L 4626.9734 3251.2227 L 4626.5634 3250.6027 L 4625.9434 3250.4027 L 4625.5434 3250.4027 M 4630.5734 3250.4027 L 4628.5234 3253.2627 L 4631.5934 3253.2627 M 4630.5734 3250.4027 L 4630.5734 3254.6927 M 4633.1434 3251.4227 L 4633.1434 3251.2227 L 4633.3534 3250.8127 L 4633.5534 3250.6027 L 4633.9634 3250.4027 L 4634.7834 3250.4027 L 4635.1934 3250.6027 L 4635.3934 3250.8127 L 4635.6034 3251.2227 L 4635.6034 3251.6327 L 4635.3934 3252.0427 L 4634.9934 3252.6527 L 4632.9434 3254.6927 L 4635.8034 3254.6927 M 4638.5934 3250.4027 L 4638.5934 3254.6927 M 4637.1534 3250.4027 L 4640.0234 3250.4027 M 4641.3734 3250.4027 L 4641.3734 3254.6927 M 4641.3734 3250.4027 L 4642.8034 3250.4027 L 4643.4134 3250.6027 L 4643.8234 3251.0127 L 4644.0334 3251.4227 L 4644.2334 3252.0427 L 4644.2334 3253.0627 L 4644.0334 3253.6727 L 4643.8234 3254.0827 L 4643.4134 3254.4927 L 4642.8034 3254.6927 L 4641.3734 3254.6927 M 4645.5834 3252.8527 L 4649.2634 3252.8527 M 4650.6134 3251.2227 L 4651.0234 3251.0127 L 4651.6434 3250.4027 L 4651.6434 3254.6927 M 4652.9934 3251.2227 L 4653.3934 3251.0127 L 4654.0134 3250.4027 L 4654.0134 3254.6927 M 4658.0234 3251.8327 L 4657.8134 3252.4427 L 4657.4034 3252.8527 L 4656.7934 3253.0627 L 4656.5934 3253.0627 L 4655.9734 3252.8527 L 4655.5634 3252.4427 L 4655.3634 3251.8327 L 4655.3634 3251.6327 L 4655.5634 3251.0127 L 4655.9734 3250.6027 L 4656.5934 3250.4027 L 4656.7934 3250.4027 L 4657.4034 3250.6027 L 4657.8134 3251.0127 L 4658.0234 3251.8327 L 4658.0234 3252.8527 L 4657.8134 3253.8827 L 4657.4034 3254.4927 L 4656.7934 3254.6927 L 4656.3834 3254.6927 L 4655.7734 3254.4927 L 4655.5634 3254.0827 M 4660.5934 3250.4027 L 4659.9834 3250.6027 L 4659.5734 3251.2227 L 4659.3734 3252.2427 L 4659.3734 3252.8527 L 4659.5734 3253.8827 L 4659.9834 3254.4927 L 4660.5934 3254.6927 L 4661.0034 3254.6927 L 4661.6234 3254.4927 L 4662.0334 3253.8827 L 4662.2334 3252.8527 L 4662.2334 3252.2427 L 4662.0334 3251.2227 L 4661.6234 3250.6027 L 4661.0034 3250.4027 L 4660.5934 3250.4027 M 4668.1634 3249.5827 L 4667.7534 3249.9927 L 4667.3434 3250.6027 L 4666.9434 3251.4227 L 4666.7334 3252.4427 L 4666.7334 3253.2627 L 4666.9434 3254.2927 L 4667.3434 3255.1027 L 4667.7534 3255.7227 L 4668.1634 3256.1327 M 4669.5134 3250.4027 L 4669.5134 3254.6927 M 4669.5134 3254.6927 L 4671.9734 3254.6927 M 4673.3234 3250.4027 L 4673.3234 3254.6927 M 4673.3234 3250.4027 L 4675.9834 3250.4027 M 4673.3234 3252.4427 L 4674.9534 3252.4427 M 4677.3334 3249.5827 L 4677.7434 3249.9927 L 4678.1434 3250.6027 L 4678.5534 3251.4227 L 4678.7634 3252.4427 L 4678.7634 3253.2627 L 4678.5534 3254.2927 L 4678.1434 3255.1027 L 4677.7434 3255.7227 L 4677.3334 3256.1327 M 4681.5434 3249.5827 L 4681.1334 3249.9927 L 4680.7234 3250.6027 L 4680.3134 3251.4227 L 4680.1134 3252.4427 L 4680.1134 3253.2627 L 4680.3134 3254.2927 L 4680.7234 3255.1027 L 4681.1334 3255.7227 L 4681.5434 3256.1327 M 4685.7534 3251.0127 L 4685.3434 3250.6027 L 4684.7334 3250.4027 L 4683.9134 3250.4027 L 4683.3034 3250.6027 L 4682.8934 3251.0127 L 4682.8934 3251.4227 L 4683.0934 3251.8327 L 4683.3034 3252.0427 L 4683.7134 3252.2427 L 4684.9434 3252.6527 L 4685.3434 3252.8527 L 4685.5534 3253.0627 L 4685.7534 3253.4727 L 4685.7534 3254.0827 L 4685.3434 3254.4927 L 4684.7334 3254.6927 L 4683.9134 3254.6927 L 4683.3034 3254.4927 L 4682.8934 3254.0827 M 4687.1034 3250.4027 L 4687.1034 3254.6927 M 4687.1034 3250.4027 L 4689.9734 3254.6927 M 4689.9734 3250.4027 L 4689.9734 3254.6927 M 4691.3234 3249.5827 L 4691.7334 3249.9927 L 4692.1434 3250.6027 L 4692.5434 3251.4227 L 4692.7534 3252.4427 L 4692.7534 3253.2627 L 4692.5434 3254.2927 L 4692.1434 3255.1027 L 4691.7334 3255.7227 L 4691.3234 3256.1327~none~gge16340~~0~#@$TEXT~P~4606.8434~3261.9427~0.6~0~~3~~4.5~CN3~M 4609.9134 3258.4227 L 4609.7034 3258.0127 L 4609.2934 3257.6027 L 4608.8934 3257.4027 L 4608.0734 3257.4027 L 4607.6634 3257.6027 L 4607.2534 3258.0127 L 4607.0434 3258.4227 L 4606.8434 3259.0427 L 4606.8434 3260.0627 L 4607.0434 3260.6727 L 4607.2534 3261.0827 L 4607.6634 3261.4927 L 4608.0734 3261.6927 L 4608.8934 3261.6927 L 4609.2934 3261.4927 L 4609.7034 3261.0827 L 4609.9134 3260.6727 M 4611.2634 3257.4027 L 4611.2634 3261.6927 M 4611.2634 3257.4027 L 4614.1234 3261.6927 M 4614.1234 3257.4027 L 4614.1234 3261.6927 M 4615.8834 3257.4027 L 4618.1334 3257.4027 L 4616.9034 3259.0427 L 4617.5234 3259.0427 L 4617.9334 3259.2427 L 4618.1334 3259.4427 L 4618.3434 3260.0627 L 4618.3434 3260.4727 L 4618.1334 3261.0827 L 4617.7234 3261.4927 L 4617.1134 3261.6927 L 4616.4934 3261.6927 L 4615.8834 3261.4927 L 4615.6834 3261.2927 L 4615.4734 3260.8827~none~gge16346~~0~#@$TRACK~1~3~~4587.371 3263.7066 4628.3158 3263.7066~gge16352~0#@$TRACK~1~3~~4628.3158 3274.1788 4587.371 3274.1788~gge16355~0#@$TRACK~1~3~~4587.371 3263.7066 4587.371 3274.1788~gge16358~0#@$TRACK~1~3~~4628.3158 3263.7066 4628.3158 3274.1788~gge16361~0#@$SVGNODE~{\"gId\":\"gge16364\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"39.9999\",\"c_height\":\"10.47242\",\"c_rotation\":\"0,0,0\",\"z\":\"-11.811\",\"c_origin\":\"4607.8433,3268.9427\",\"uuid\":\"62d1dd00f91344f487735a33792f8f57\",\"c_etype\":\"outline3D\",\"title\":\"HDR-TH_4P-P2.54-M-LI-1X4P\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge16364\"},\"childNodes\":[{\"gId\":\"gge16367\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4587.8434 3266.0687 4587.8434 3269.7695 4587.8434 3271.8167 4588.9458 3273.4703 4589.4182 3274.1789 4596.2686 3274.1789 4596.7411 3273.4703 4597.8434 3271.8167 4598.9458 3273.4703 4599.4182 3274.1789 4606.2686 3274.1789 4606.741 3273.4703 4607.8434 3271.8167 4608.5127 3272.8403 4608.9458 3273.4703 4609.4182 3274.1789 4616.2686 3274.1789 4616.741 3273.4703 4617.8434 3271.8167 4618.9457 3273.4703 4619.4182 3274.1789 4626.2686 3274.1789 4626.741 3273.4703 4627.8434 3271.8167 4627.8434 3269.7695 4627.8434 3266.0687 4626.2686 3263.7065 4619.4182 3263.7065 4617.8434 3266.0687 4616.2686 3263.7065 4611.3867 3263.7065 4610.3237 3263.7065 4609.4182 3263.7065 4608.5914 3264.927 4608.5127 3265.0451 4607.8434 3266.0687 4606.2686 3263.7065 4605.7962 3263.7065 4604.1426 3263.7065 4599.4182 3263.7065 4597.8434 3266.0687 4596.2686 3263.7065 4589.6938 3263.7065 4589.4182 3263.7065 4587.8434 3266.0687 4587.8434 3266.0687\",\"id\":\"gge16367\"}}]}#@$SOLIDREGION~99~~M 4586.871 3263.2066 L 4628.8158 3263.2066 L 4628.8158 3274.6788 L 4586.871 3274.6788 Z ~solid~gge16370~~~~0#@$CIRCLE~4592.8434~3268.9427~0.886~1.7717~100~gge16373~0~~#@$CIRCLE~4602.8434~3268.9427~0.886~1.7717~100~gge16376~0~~#@$CIRCLE~4612.8434~3268.9427~0.886~1.7717~100~gge16379~0~~#@$CIRCLE~4622.8434~3268.9427~0.886~1.7717~100~gge16382~0~~#@$CIRCLE~4586.8714~3274.6787~0.118~0.2362~101~gge16385~0~~#@$PAD~RECT~4592.8434~3268.9427~6.6929~6.6929~11~GPIO25~1~2.1654~4589.497 3265.5963 4596.1899 3265.5963 4596.1899 3272.2892 4589.497 3272.2892~0~gge16388~0~~Y~0~0~0.2~4592.8434,3268.9427#@$PAD~ELLIPSE~4602.8434~3268.9427~6.6929~6.6929~11~GPIO27~2~2.1654~~0~gge16403~0~~Y~0~0~0.2~4602.8434,3268.9427#@$PAD~ELLIPSE~4612.8434~3268.9427~6.6929~6.6929~11~GPIO36~3~2.1654~~0~gge16418~0~~Y~0~0~0.2~4612.8434,3268.9427#@$PAD~ELLIPSE~4622.8434~3268.9427~6.6929~6.6929~11~GPIO39~4~2.1654~~0~gge16433~0~~Y~0~0~0.2~4622.8434,3268.9427","LIB~4556.8434~3051.4427~package`HDR-TH_4P-P2.54-V_RE-H042TD-1190`Contributor`LCSC`link`https:\/\/item.szlcsc.com\/171714.html`3DModel`HDR-TH_4P-P2.54-M-LI-1X4P`BOM_Supplier`LCSC`BOM_Supplier Part`C160334`BOM_Manufacturer`JST`BOM_Manufacturer Part`RE-H042TD-1190(LF)(SN)`BOM_JLCPCB Part Class`Extended Part`spicePre`C`spiceSymbolName`RE-H042TD-1190 (LF)(SN)`~270~~ggebbbf478bdf6805bb~1~74a121d1141148f386015af5c97939a9~1607329818~0~~none~~#@$TEXT~N~4575.0134~3136.3526~0.6~90~~3~~4.5~RE-H042TD-1190 (LF)(SN)~M 4570.4734 3136.3526 L 4574.7634 3136.3526 M 4570.4734 3136.3526 L 4570.4734 3134.5126 L 4570.6734 3133.9026 L 4570.8834 3133.6926 L 4571.2934 3133.4926 L 4571.7034 3133.4926 L 4572.1134 3133.6926 L 4572.3134 3133.9026 L 4572.5134 3134.5126 L 4572.5134 3136.3526 M 4572.5134 3134.9226 L 4574.7634 3133.4926 M 4570.4734 3132.1426 L 4574.7634 3132.1426 M 4570.4734 3132.1426 L 4570.4734 3129.4826 M 4572.5134 3132.1426 L 4572.5134 3130.5026 M 4574.7634 3132.1426 L 4574.7634 3129.4826 M 4572.9234 3128.1326 L 4572.9234 3124.4526 M 4570.4734 3123.1026 L 4574.7634 3123.1026 M 4570.4734 3120.2326 L 4574.7634 3120.2326 M 4572.5134 3123.1026 L 4572.5134 3120.2326 M 4570.4734 3117.6526 L 4570.6734 3118.2726 L 4571.2934 3118.6826 L 4572.3134 3118.8826 L 4572.9234 3118.8826 L 4573.9534 3118.6826 L 4574.5634 3118.2726 L 4574.7634 3117.6526 L 4574.7634 3117.2526 L 4574.5634 3116.6326 L 4573.9534 3116.2226 L 4572.9234 3116.0226 L 4572.3134 3116.0226 L 4571.2934 3116.2226 L 4570.6734 3116.6326 L 4570.4734 3117.2526 L 4570.4734 3117.6526 M 4570.4734 3112.6226 L 4573.3334 3114.6726 L 4573.3334 3111.6026 M 4570.4734 3112.6226 L 4574.7634 3112.6226 M 4571.4934 3110.0526 L 4571.2934 3110.0526 L 4570.8834 3109.8426 L 4570.6734 3109.6426 L 4570.4734 3109.2326 L 4570.4734 3108.4126 L 4570.6734 3108.0026 L 4570.8834 3107.8026 L 4571.2934 3107.5926 L 4571.7034 3107.5926 L 4572.1134 3107.8026 L 4572.7234 3108.2026 L 4574.7634 3110.2526 L 4574.7634 3107.3926 M 4570.4734 3104.6026 L 4574.7634 3104.6026 M 4570.4734 3106.0426 L 4570.4734 3103.1726 M 4570.4734 3101.8226 L 4574.7634 3101.8226 M 4570.4734 3101.8226 L 4570.4734 3100.3926 L 4570.6734 3099.7826 L 4571.0834 3099.3726 L 4571.4934 3099.1626 L 4572.1134 3098.9626 L 4573.1334 3098.9626 L 4573.7434 3099.1626 L 4574.1534 3099.3726 L 4574.5634 3099.7826 L 4574.7634 3100.3926 L 4574.7634 3101.8226 M 4572.9234 3097.6126 L 4572.9234 3093.9326 M 4571.2934 3092.5826 L 4571.0834 3092.1726 L 4570.4734 3091.5526 L 4574.7634 3091.5526 M 4571.2934 3090.2026 L 4571.0834 3089.8026 L 4570.4734 3089.1826 L 4574.7634 3089.1826 M 4571.9034 3085.1726 L 4572.5134 3085.3826 L 4572.9234 3085.7926 L 4573.1334 3086.4026 L 4573.1334 3086.6026 L 4572.9234 3087.2226 L 4572.5134 3087.6326 L 4571.9034 3087.8326 L 4571.7034 3087.8326 L 4571.0834 3087.6326 L 4570.6734 3087.2226 L 4570.4734 3086.6026 L 4570.4734 3086.4026 L 4570.6734 3085.7926 L 4571.0834 3085.3826 L 4571.9034 3085.1726 L 4572.9234 3085.1726 L 4573.9534 3085.3826 L 4574.5634 3085.7926 L 4574.7634 3086.4026 L 4574.7634 3086.8126 L 4574.5634 3087.4226 L 4574.1534 3087.6326 M 4570.4734 3082.6026 L 4570.6734 3083.2126 L 4571.2934 3083.6226 L 4572.3134 3083.8226 L 4572.9234 3083.8226 L 4573.9534 3083.6226 L 4574.5634 3083.2126 L 4574.7634 3082.6026 L 4574.7634 3082.1926 L 4574.5634 3081.5726 L 4573.9534 3081.1626 L 4572.9234 3080.9626 L 4572.3134 3080.9626 L 4571.2934 3081.1626 L 4570.6734 3081.5726 L 4570.4734 3082.1926 L 4570.4734 3082.6026 M 4569.6534 3075.0326 L 4570.0634 3075.4426 L 4570.6734 3075.8526 L 4571.4934 3076.2526 L 4572.5134 3076.4626 L 4573.3334 3076.4626 L 4574.3634 3076.2526 L 4575.1734 3075.8526 L 4575.7934 3075.4426 L 4576.2034 3075.0326 M 4570.4734 3073.6826 L 4574.7634 3073.6826 M 4574.7634 3073.6826 L 4574.7634 3071.2226 M 4570.4734 3069.8726 L 4574.7634 3069.8726 M 4570.4734 3069.8726 L 4570.4734 3067.2126 M 4572.5134 3069.8726 L 4572.5134 3068.2426 M 4569.6534 3065.8626 L 4570.0634 3065.4526 L 4570.6734 3065.0526 L 4571.4934 3064.6426 L 4572.5134 3064.4326 L 4573.3334 3064.4326 L 4574.3634 3064.6426 L 4575.1734 3065.0526 L 4575.7934 3065.4526 L 4576.2034 3065.8626 M 4569.6534 3061.6526 L 4570.0634 3062.0626 L 4570.6734 3062.4726 L 4571.4934 3062.8826 L 4572.5134 3063.0826 L 4573.3334 3063.0826 L 4574.3634 3062.8826 L 4575.1734 3062.4726 L 4575.7934 3062.0626 L 4576.2034 3061.6526 M 4571.0834 3057.4426 L 4570.6734 3057.8526 L 4570.4734 3058.4626 L 4570.4734 3059.2826 L 4570.6734 3059.8926 L 4571.0834 3060.3026 L 4571.4934 3060.3026 L 4571.9034 3060.1026 L 4572.1134 3059.8926 L 4572.3134 3059.4826 L 4572.7234 3058.2526 L 4572.9234 3057.8526 L 4573.1334 3057.6426 L 4573.5434 3057.4426 L 4574.1534 3057.4426 L 4574.5634 3057.8526 L 4574.7634 3058.4626 L 4574.7634 3059.2826 L 4574.5634 3059.8926 L 4574.1534 3060.3026 M 4570.4734 3056.0926 L 4574.7634 3056.0926 M 4570.4734 3056.0926 L 4574.7634 3053.2226 M 4570.4734 3053.2226 L 4574.7634 3053.2226 M 4569.6534 3051.8726 L 4570.0634 3051.4626 L 4570.6734 3051.0526 L 4571.4934 3050.6526 L 4572.5134 3050.4426 L 4573.3334 3050.4426 L 4574.3634 3050.6526 L 4575.1734 3051.0526 L 4575.7934 3051.4626 L 4576.2034 3051.8726~none~gge16454~~0~#@$TEXT~P~4563.8434~3050.4427~0.6~270~~3~~4.5~CN4~M 4567.3634 3053.5127 L 4567.7734 3053.3027 L 4568.1834 3052.8927 L 4568.3834 3052.4927 L 4568.3834 3051.6727 L 4568.1834 3051.2627 L 4567.7734 3050.8527 L 4567.3634 3050.6427 L 4566.7434 3050.4427 L 4565.7234 3050.4427 L 4565.1134 3050.6427 L 4564.7034 3050.8527 L 4564.2934 3051.2627 L 4564.0934 3051.6727 L 4564.0934 3052.4927 L 4564.2934 3052.8927 L 4564.7034 3053.3027 L 4565.1134 3053.5127 M 4568.3834 3054.8627 L 4564.0934 3054.8627 M 4568.3834 3054.8627 L 4564.0934 3057.7227 M 4568.3834 3057.7227 L 4564.0934 3057.7227 M 4568.3834 3061.1227 L 4565.5234 3059.0727 L 4565.5234 3062.1427 M 4568.3834 3061.1227 L 4564.0934 3061.1227~none~gge16460~~0~#@$TRACK~1~3~~4562.0795 3030.9703 4562.0795 3071.9151~gge16466~0#@$TRACK~1~3~~4551.6073 3071.9151 4551.6073 3030.9703~gge16469~0#@$TRACK~1~3~~4562.0795 3030.9703 4551.6073 3030.9703~gge16472~0#@$TRACK~1~3~~4562.0795 3071.9151 4551.6073 3071.9151~gge16475~0#@$SVGNODE~{\"gId\":\"gge16478\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"39.9999\",\"c_height\":\"10.47242\",\"c_rotation\":\"0,0,270\",\"z\":\"-11.811\",\"c_origin\":\"4556.8435,3051.4426\",\"uuid\":\"62d1dd00f91344f487735a33792f8f57\",\"c_etype\":\"outline3D\",\"title\":\"HDR-TH_4P-P2.54-M-LI-1X4P\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge16478\"},\"childNodes\":[{\"gId\":\"gge16481\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4559.7174 3031.4427 4556.0166 3031.4427 4553.9694 3031.4427 4552.3158 3032.5451 4551.6072 3033.0175 4551.6072 3039.8679 4552.3158 3040.3404 4553.9694 3041.4427 4552.3158 3042.5451 4551.6072 3043.0175 4551.6072 3049.8679 4552.3158 3050.3403 4553.9694 3051.4427 4552.9458 3052.112 4552.3158 3052.5451 4551.6072 3053.0175 4551.6072 3059.8679 4552.3158 3060.3403 4553.9694 3061.4427 4552.3158 3062.545 4551.6072 3063.0175 4551.6072 3069.8679 4552.3158 3070.3403 4553.9694 3071.4427 4556.0166 3071.4427 4559.7174 3071.4427 4562.0796 3069.8679 4562.0796 3063.0175 4559.7174 3061.4427 4562.0796 3059.8679 4562.0796 3054.986 4562.0796 3053.923 4562.0796 3053.0175 4560.8591 3052.1907 4560.741 3052.112 4559.7174 3051.4427 4562.0796 3049.8679 4562.0796 3049.3955 4562.0796 3047.7419 4562.0796 3043.0175 4559.7174 3041.4427 4562.0796 3039.8679 4562.0796 3033.2931 4562.0796 3033.0175 4559.7174 3031.4427 4559.7174 3031.4427\",\"id\":\"gge16481\"}}]}#@$SOLIDREGION~99~~M 4562.5795 3030.4703 L 4562.5795 3072.4151 L 4551.1073 3072.4151 L 4551.1073 3030.4703 Z ~solid~gge16484~~~~0#@$CIRCLE~4556.8434~3036.4427~0.886~1.7717~100~gge16487~0~~#@$CIRCLE~4556.8434~3046.4427~0.886~1.7717~100~gge16490~0~~#@$CIRCLE~4556.8434~3056.4427~0.886~1.7717~100~gge16493~0~~#@$CIRCLE~4556.8434~3066.4427~0.886~1.7717~100~gge16496~0~~#@$CIRCLE~4551.1074~3030.4707~0.118~0.2362~101~gge16499~0~~#@$PAD~RECT~4556.8434~3036.4427~6.6929~6.6929~11~+12V~1~2.1654~4560.1898 3033.0963 4560.1898 3039.7892 4553.4969 3039.7892 4553.4969 3033.0963~270~gge16502~0~~Y~0~0~0.2~4556.8434,3036.4427#@$PAD~ELLIPSE~4556.8434~3046.4427~6.6929~6.6929~11~GND~2~2.1654~~270~gge16517~0~~Y~0~0~0.2~4556.8434,3046.4427#@$PAD~ELLIPSE~4556.8434~3056.4427~6.6929~6.6929~11~+5V~3~2.1654~~270~gge16532~0~~Y~0~0~0.2~4556.8434,3056.4427#@$PAD~ELLIPSE~4556.8434~3066.4427~6.6929~6.6929~11~+3.3V~4~2.1654~~270~gge16547~0~~Y~0~0~0.2~4556.8434,3066.4427","LIB~4674.8434~3225.9427~package`HDR-TH_4P-P2.54-V_RE-H042TD-1190`Contributor`LCSC`link`https:\/\/item.szlcsc.com\/171714.html`3DModel`HDR-TH_4P-P2.54-M-LI-1X4P`BOM_Supplier`LCSC`BOM_Supplier Part`C160334`BOM_Manufacturer`JST`BOM_Manufacturer Part`RE-H042TD-1190(LF)(SN)`BOM_JLCPCB Part Class`Extended Part`spicePre`C`spiceSymbolName`RE-H042TD-1190 (LF)(SN)`~~~ggec68769cca673da22~1~74a121d1141148f386015af5c97939a9~1607329818~0~~none~~#@$TEXT~N~4673.8434~3211.9427~0.6~0~~3~~4.5~RE-H042TD-1190 (LF)(SN)~M 4673.8434 3207.4027 L 4673.8434 3211.6927 M 4673.8434 3207.4027 L 4675.6834 3207.4027 L 4676.2934 3207.6027 L 4676.5034 3207.8127 L 4676.7034 3208.2227 L 4676.7034 3208.6327 L 4676.5034 3209.0427 L 4676.2934 3209.2427 L 4675.6834 3209.4427 L 4673.8434 3209.4427 M 4675.2734 3209.4427 L 4676.7034 3211.6927 M 4678.0534 3207.4027 L 4678.0534 3211.6927 M 4678.0534 3207.4027 L 4680.7134 3207.4027 M 4678.0534 3209.4427 L 4679.6934 3209.4427 M 4678.0534 3211.6927 L 4680.7134 3211.6927 M 4682.0634 3209.8527 L 4685.7434 3209.8527 M 4687.0934 3207.4027 L 4687.0934 3211.6927 M 4689.9634 3207.4027 L 4689.9634 3211.6927 M 4687.0934 3209.4427 L 4689.9634 3209.4427 M 4692.5434 3207.4027 L 4691.9234 3207.6027 L 4691.5134 3208.2227 L 4691.3134 3209.2427 L 4691.3134 3209.8527 L 4691.5134 3210.8827 L 4691.9234 3211.4927 L 4692.5434 3211.6927 L 4692.9434 3211.6927 L 4693.5634 3211.4927 L 4693.9734 3210.8827 L 4694.1734 3209.8527 L 4694.1734 3209.2427 L 4693.9734 3208.2227 L 4693.5634 3207.6027 L 4692.9434 3207.4027 L 4692.5434 3207.4027 M 4697.5734 3207.4027 L 4695.5234 3210.2627 L 4698.5934 3210.2627 M 4697.5734 3207.4027 L 4697.5734 3211.6927 M 4700.1434 3208.4227 L 4700.1434 3208.2227 L 4700.3534 3207.8127 L 4700.5534 3207.6027 L 4700.9634 3207.4027 L 4701.7834 3207.4027 L 4702.1934 3207.6027 L 4702.3934 3207.8127 L 4702.6034 3208.2227 L 4702.6034 3208.6327 L 4702.3934 3209.0427 L 4701.9934 3209.6527 L 4699.9434 3211.6927 L 4702.8034 3211.6927 M 4705.5934 3207.4027 L 4705.5934 3211.6927 M 4704.1534 3207.4027 L 4707.0234 3207.4027 M 4708.3734 3207.4027 L 4708.3734 3211.6927 M 4708.3734 3207.4027 L 4709.8034 3207.4027 L 4710.4134 3207.6027 L 4710.8234 3208.0127 L 4711.0334 3208.4227 L 4711.2334 3209.0427 L 4711.2334 3210.0627 L 4711.0334 3210.6727 L 4710.8234 3211.0827 L 4710.4134 3211.4927 L 4709.8034 3211.6927 L 4708.3734 3211.6927 M 4712.5834 3209.8527 L 4716.2634 3209.8527 M 4717.6134 3208.2227 L 4718.0234 3208.0127 L 4718.6434 3207.4027 L 4718.6434 3211.6927 M 4719.9934 3208.2227 L 4720.3934 3208.0127 L 4721.0134 3207.4027 L 4721.0134 3211.6927 M 4725.0234 3208.8327 L 4724.8134 3209.4427 L 4724.4034 3209.8527 L 4723.7934 3210.0627 L 4723.5934 3210.0627 L 4722.9734 3209.8527 L 4722.5634 3209.4427 L 4722.3634 3208.8327 L 4722.3634 3208.6327 L 4722.5634 3208.0127 L 4722.9734 3207.6027 L 4723.5934 3207.4027 L 4723.7934 3207.4027 L 4724.4034 3207.6027 L 4724.8134 3208.0127 L 4725.0234 3208.8327 L 4725.0234 3209.8527 L 4724.8134 3210.8827 L 4724.4034 3211.4927 L 4723.7934 3211.6927 L 4723.3834 3211.6927 L 4722.7734 3211.4927 L 4722.5634 3211.0827 M 4727.5934 3207.4027 L 4726.9834 3207.6027 L 4726.5734 3208.2227 L 4726.3734 3209.2427 L 4726.3734 3209.8527 L 4726.5734 3210.8827 L 4726.9834 3211.4927 L 4727.5934 3211.6927 L 4728.0034 3211.6927 L 4728.6234 3211.4927 L 4729.0334 3210.8827 L 4729.2334 3209.8527 L 4729.2334 3209.2427 L 4729.0334 3208.2227 L 4728.6234 3207.6027 L 4728.0034 3207.4027 L 4727.5934 3207.4027 M 4735.1634 3206.5827 L 4734.7534 3206.9927 L 4734.3434 3207.6027 L 4733.9434 3208.4227 L 4733.7334 3209.4427 L 4733.7334 3210.2627 L 4733.9434 3211.2927 L 4734.3434 3212.1027 L 4734.7534 3212.7227 L 4735.1634 3213.1327 M 4736.5134 3207.4027 L 4736.5134 3211.6927 M 4736.5134 3211.6927 L 4738.9734 3211.6927 M 4740.3234 3207.4027 L 4740.3234 3211.6927 M 4740.3234 3207.4027 L 4742.9834 3207.4027 M 4740.3234 3209.4427 L 4741.9534 3209.4427 M 4744.3334 3206.5827 L 4744.7434 3206.9927 L 4745.1434 3207.6027 L 4745.5534 3208.4227 L 4745.7634 3209.4427 L 4745.7634 3210.2627 L 4745.5534 3211.2927 L 4745.1434 3212.1027 L 4744.7434 3212.7227 L 4744.3334 3213.1327 M 4748.5434 3206.5827 L 4748.1334 3206.9927 L 4747.7234 3207.6027 L 4747.3134 3208.4227 L 4747.1134 3209.4427 L 4747.1134 3210.2627 L 4747.3134 3211.2927 L 4747.7234 3212.1027 L 4748.1334 3212.7227 L 4748.5434 3213.1327 M 4752.7534 3208.0127 L 4752.3434 3207.6027 L 4751.7334 3207.4027 L 4750.9134 3207.4027 L 4750.3034 3207.6027 L 4749.8934 3208.0127 L 4749.8934 3208.4227 L 4750.0934 3208.8327 L 4750.3034 3209.0427 L 4750.7134 3209.2427 L 4751.9434 3209.6527 L 4752.3434 3209.8527 L 4752.5534 3210.0627 L 4752.7534 3210.4727 L 4752.7534 3211.0827 L 4752.3434 3211.4927 L 4751.7334 3211.6927 L 4750.9134 3211.6927 L 4750.3034 3211.4927 L 4749.8934 3211.0827 M 4754.1034 3207.4027 L 4754.1034 3211.6927 M 4754.1034 3207.4027 L 4756.9734 3211.6927 M 4756.9734 3207.4027 L 4756.9734 3211.6927 M 4758.3234 3206.5827 L 4758.7334 3206.9927 L 4759.1434 3207.6027 L 4759.5434 3208.4227 L 4759.7534 3209.4427 L 4759.7534 3210.2627 L 4759.5434 3211.2927 L 4759.1434 3212.1027 L 4758.7334 3212.7227 L 4758.3234 3213.1327~none~gge16568~~0~#@$TEXT~P~4673.8434~3218.9427~0.6~0~~3~~4.5~CN5~M 4676.9134 3215.4227 L 4676.7034 3215.0127 L 4676.2934 3214.6027 L 4675.8934 3214.4027 L 4675.0734 3214.4027 L 4674.6634 3214.6027 L 4674.2534 3215.0127 L 4674.0434 3215.4227 L 4673.8434 3216.0427 L 4673.8434 3217.0627 L 4674.0434 3217.6727 L 4674.2534 3218.0827 L 4674.6634 3218.4927 L 4675.0734 3218.6927 L 4675.8934 3218.6927 L 4676.2934 3218.4927 L 4676.7034 3218.0827 L 4676.9134 3217.6727 M 4678.2634 3214.4027 L 4678.2634 3218.6927 M 4678.2634 3214.4027 L 4681.1234 3218.6927 M 4681.1234 3214.4027 L 4681.1234 3218.6927 M 4684.9334 3214.4027 L 4682.8834 3214.4027 L 4682.6834 3216.2427 L 4682.8834 3216.0427 L 4683.4934 3215.8327 L 4684.1134 3215.8327 L 4684.7234 3216.0427 L 4685.1334 3216.4427 L 4685.3434 3217.0627 L 4685.3434 3217.4727 L 4685.1334 3218.0827 L 4684.7234 3218.4927 L 4684.1134 3218.6927 L 4683.4934 3218.6927 L 4682.8834 3218.4927 L 4682.6834 3218.2927 L 4682.4734 3217.8827~none~gge16574~~0~#@$TRACK~1~3~~4654.371 3220.7066 4695.3158 3220.7066~gge16580~0#@$TRACK~1~3~~4695.3158 3231.1788 4654.371 3231.1788~gge16583~0#@$TRACK~1~3~~4654.371 3220.7066 4654.371 3231.1788~gge16586~0#@$TRACK~1~3~~4695.3158 3220.7066 4695.3158 3231.1788~gge16589~0#@$SVGNODE~{\"gId\":\"gge16592\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"39.9999\",\"c_height\":\"10.47242\",\"c_rotation\":\"0,0,0\",\"z\":\"-11.811\",\"c_origin\":\"4674.8433,3225.9427\",\"uuid\":\"62d1dd00f91344f487735a33792f8f57\",\"c_etype\":\"outline3D\",\"title\":\"HDR-TH_4P-P2.54-M-LI-1X4P\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge16592\"},\"childNodes\":[{\"gId\":\"gge16595\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4654.8434 3223.0687 4654.8434 3226.7695 4654.8434 3228.8167 4655.9458 3230.4703 4656.4182 3231.1789 4663.2686 3231.1789 4663.7411 3230.4703 4664.8434 3228.8167 4665.9458 3230.4703 4666.4182 3231.1789 4673.2686 3231.1789 4673.741 3230.4703 4674.8434 3228.8167 4675.5127 3229.8403 4675.9458 3230.4703 4676.4182 3231.1789 4683.2686 3231.1789 4683.741 3230.4703 4684.8434 3228.8167 4685.9457 3230.4703 4686.4182 3231.1789 4693.2686 3231.1789 4693.741 3230.4703 4694.8434 3228.8167 4694.8434 3226.7695 4694.8434 3223.0687 4693.2686 3220.7065 4686.4182 3220.7065 4684.8434 3223.0687 4683.2686 3220.7065 4678.3867 3220.7065 4677.3237 3220.7065 4676.4182 3220.7065 4675.5914 3221.927 4675.5127 3222.0451 4674.8434 3223.0687 4673.2686 3220.7065 4672.7962 3220.7065 4671.1426 3220.7065 4666.4182 3220.7065 4664.8434 3223.0687 4663.2686 3220.7065 4656.6938 3220.7065 4656.4182 3220.7065 4654.8434 3223.0687 4654.8434 3223.0687\",\"id\":\"gge16595\"}}]}#@$SOLIDREGION~99~~M 4653.871 3220.2066 L 4695.8158 3220.2066 L 4695.8158 3231.6788 L 4653.871 3231.6788 Z ~solid~gge16598~~~~0#@$CIRCLE~4659.8434~3225.9427~0.886~1.7717~100~gge16601~0~~#@$CIRCLE~4669.8434~3225.9427~0.886~1.7717~100~gge16604~0~~#@$CIRCLE~4679.8434~3225.9427~0.886~1.7717~100~gge16607~0~~#@$CIRCLE~4689.8434~3225.9427~0.886~1.7717~100~gge16610~0~~#@$CIRCLE~4653.8714~3231.6787~0.118~0.2362~101~gge16613~0~~#@$PAD~RECT~4659.8434~3225.9427~6.6929~6.6929~11~CAN0_H~1~2.1654~4656.497 3222.5963 4663.1899 3222.5963 4663.1899 3229.2892 4656.497 3229.2892~0~gge16616~0~~Y~0~0~0.2~4659.8434,3225.9427#@$PAD~ELLIPSE~4669.8434~3225.9427~6.6929~6.6929~11~CAN0_L~2~2.1654~~0~gge16631~0~~Y~0~0~0.2~4669.8434,3225.9427#@$PAD~ELLIPSE~4679.8434~3225.9427~6.6929~6.6929~11~CAN1_H~3~2.1654~~0~gge16646~0~~Y~0~0~0.2~4679.8434,3225.9427#@$PAD~ELLIPSE~4689.8434~3225.9427~6.6929~6.6929~11~CAN1_L~4~2.1654~~0~gge16661~0~~Y~0~0~0.2~4689.8434,3225.9427","LIB~4439.8434~3243.9427~package`HDR-TH_4P-P2.54-V_RE-H042TD-1190`Contributor`LCSC`link`https:\/\/item.szlcsc.com\/171714.html`3DModel`HDR-TH_4P-P2.54-M-LI-1X4P`BOM_Supplier`LCSC`BOM_Supplier Part`C160334`BOM_Manufacturer`JST`BOM_Manufacturer Part`RE-H042TD-1190(LF)(SN)`BOM_JLCPCB Part Class`Extended Part`spicePre`C`spiceSymbolName`RE-H042TD-1190 (LF)(SN)`~270~~gge8227da218f3ee02b~1~74a121d1141148f386015af5c97939a9~1607329818~0~~yes~~#@$TEXT~N~4458.0134~3328.8526~0.6~90~~3~~4.5~RE-H042TD-1190 (LF)(SN)~M 4453.4734 3328.8526 L 4457.7634 3328.8526 M 4453.4734 3328.8526 L 4453.4734 3327.0126 L 4453.6734 3326.4026 L 4453.8834 3326.1926 L 4454.2934 3325.9926 L 4454.7034 3325.9926 L 4455.1134 3326.1926 L 4455.3134 3326.4026 L 4455.5134 3327.0126 L 4455.5134 3328.8526 M 4455.5134 3327.4226 L 4457.7634 3325.9926 M 4453.4734 3324.6426 L 4457.7634 3324.6426 M 4453.4734 3324.6426 L 4453.4734 3321.9826 M 4455.5134 3324.6426 L 4455.5134 3323.0026 M 4457.7634 3324.6426 L 4457.7634 3321.9826 M 4455.9234 3320.6326 L 4455.9234 3316.9526 M 4453.4734 3315.6026 L 4457.7634 3315.6026 M 4453.4734 3312.7326 L 4457.7634 3312.7326 M 4455.5134 3315.6026 L 4455.5134 3312.7326 M 4453.4734 3310.1526 L 4453.6734 3310.7726 L 4454.2934 3311.1826 L 4455.3134 3311.3826 L 4455.9234 3311.3826 L 4456.9534 3311.1826 L 4457.5634 3310.7726 L 4457.7634 3310.1526 L 4457.7634 3309.7526 L 4457.5634 3309.1326 L 4456.9534 3308.7226 L 4455.9234 3308.5226 L 4455.3134 3308.5226 L 4454.2934 3308.7226 L 4453.6734 3309.1326 L 4453.4734 3309.7526 L 4453.4734 3310.1526 M 4453.4734 3305.1226 L 4456.3334 3307.1726 L 4456.3334 3304.1026 M 4453.4734 3305.1226 L 4457.7634 3305.1226 M 4454.4934 3302.5526 L 4454.2934 3302.5526 L 4453.8834 3302.3426 L 4453.6734 3302.1426 L 4453.4734 3301.7326 L 4453.4734 3300.9126 L 4453.6734 3300.5026 L 4453.8834 3300.3026 L 4454.2934 3300.0926 L 4454.7034 3300.0926 L 4455.1134 3300.3026 L 4455.7234 3300.7026 L 4457.7634 3302.7526 L 4457.7634 3299.8926 M 4453.4734 3297.1026 L 4457.7634 3297.1026 M 4453.4734 3298.5426 L 4453.4734 3295.6726 M 4453.4734 3294.3226 L 4457.7634 3294.3226 M 4453.4734 3294.3226 L 4453.4734 3292.8926 L 4453.6734 3292.2826 L 4454.0834 3291.8726 L 4454.4934 3291.6626 L 4455.1134 3291.4626 L 4456.1334 3291.4626 L 4456.7434 3291.6626 L 4457.1534 3291.8726 L 4457.5634 3292.2826 L 4457.7634 3292.8926 L 4457.7634 3294.3226 M 4455.9234 3290.1126 L 4455.9234 3286.4326 M 4454.2934 3285.0826 L 4454.0834 3284.6726 L 4453.4734 3284.0526 L 4457.7634 3284.0526 M 4454.2934 3282.7026 L 4454.0834 3282.3026 L 4453.4734 3281.6826 L 4457.7634 3281.6826 M 4454.9034 3277.6726 L 4455.5134 3277.8826 L 4455.9234 3278.2926 L 4456.1334 3278.9026 L 4456.1334 3279.1026 L 4455.9234 3279.7226 L 4455.5134 3280.1326 L 4454.9034 3280.3326 L 4454.7034 3280.3326 L 4454.0834 3280.1326 L 4453.6734 3279.7226 L 4453.4734 3279.1026 L 4453.4734 3278.9026 L 4453.6734 3278.2926 L 4454.0834 3277.8826 L 4454.9034 3277.6726 L 4455.9234 3277.6726 L 4456.9534 3277.8826 L 4457.5634 3278.2926 L 4457.7634 3278.9026 L 4457.7634 3279.3126 L 4457.5634 3279.9226 L 4457.1534 3280.1326 M 4453.4734 3275.1026 L 4453.6734 3275.7126 L 4454.2934 3276.1226 L 4455.3134 3276.3226 L 4455.9234 3276.3226 L 4456.9534 3276.1226 L 4457.5634 3275.7126 L 4457.7634 3275.1026 L 4457.7634 3274.6926 L 4457.5634 3274.0726 L 4456.9534 3273.6626 L 4455.9234 3273.4626 L 4455.3134 3273.4626 L 4454.2934 3273.6626 L 4453.6734 3274.0726 L 4453.4734 3274.6926 L 4453.4734 3275.1026 M 4452.6534 3267.5326 L 4453.0634 3267.9426 L 4453.6734 3268.3526 L 4454.4934 3268.7526 L 4455.5134 3268.9626 L 4456.3334 3268.9626 L 4457.3634 3268.7526 L 4458.1734 3268.3526 L 4458.7934 3267.9426 L 4459.2034 3267.5326 M 4453.4734 3266.1826 L 4457.7634 3266.1826 M 4457.7634 3266.1826 L 4457.7634 3263.7226 M 4453.4734 3262.3726 L 4457.7634 3262.3726 M 4453.4734 3262.3726 L 4453.4734 3259.7126 M 4455.5134 3262.3726 L 4455.5134 3260.7426 M 4452.6534 3258.3626 L 4453.0634 3257.9526 L 4453.6734 3257.5526 L 4454.4934 3257.1426 L 4455.5134 3256.9326 L 4456.3334 3256.9326 L 4457.3634 3257.1426 L 4458.1734 3257.5526 L 4458.7934 3257.9526 L 4459.2034 3258.3626 M 4452.6534 3254.1526 L 4453.0634 3254.5626 L 4453.6734 3254.9726 L 4454.4934 3255.3826 L 4455.5134 3255.5826 L 4456.3334 3255.5826 L 4457.3634 3255.3826 L 4458.1734 3254.9726 L 4458.7934 3254.5626 L 4459.2034 3254.1526 M 4454.0834 3249.9426 L 4453.6734 3250.3526 L 4453.4734 3250.9626 L 4453.4734 3251.7826 L 4453.6734 3252.3926 L 4454.0834 3252.8026 L 4454.4934 3252.8026 L 4454.9034 3252.6026 L 4455.1134 3252.3926 L 4455.3134 3251.9826 L 4455.7234 3250.7526 L 4455.9234 3250.3526 L 4456.1334 3250.1426 L 4456.5434 3249.9426 L 4457.1534 3249.9426 L 4457.5634 3250.3526 L 4457.7634 3250.9626 L 4457.7634 3251.7826 L 4457.5634 3252.3926 L 4457.1534 3252.8026 M 4453.4734 3248.5926 L 4457.7634 3248.5926 M 4453.4734 3248.5926 L 4457.7634 3245.7226 M 4453.4734 3245.7226 L 4457.7634 3245.7226 M 4452.6534 3244.3726 L 4453.0634 3243.9626 L 4453.6734 3243.5526 L 4454.4934 3243.1526 L 4455.5134 3242.9426 L 4456.3334 3242.9426 L 4457.3634 3243.1526 L 4458.1734 3243.5526 L 4458.7934 3243.9626 L 4459.2034 3244.3726~none~gge17711~~0~#@$TEXT~P~4446.8434~3242.9427~0.6~270~~3~~4.5~CN6~M 4450.3634 3246.0127 L 4450.7734 3245.8027 L 4451.1834 3245.3927 L 4451.3834 3244.9927 L 4451.3834 3244.1727 L 4451.1834 3243.7627 L 4450.7734 3243.3527 L 4450.3634 3243.1427 L 4449.7434 3242.9427 L 4448.7234 3242.9427 L 4448.1134 3243.1427 L 4447.7034 3243.3527 L 4447.2934 3243.7627 L 4447.0934 3244.1727 L 4447.0934 3244.9927 L 4447.2934 3245.3927 L 4447.7034 3245.8027 L 4448.1134 3246.0127 M 4451.3834 3247.3627 L 4447.0934 3247.3627 M 4451.3834 3247.3627 L 4447.0934 3250.2227 M 4451.3834 3250.2227 L 4447.0934 3250.2227 M 4450.7734 3254.0327 L 4451.1834 3253.8227 L 4451.3834 3253.2127 L 4451.3834 3252.8027 L 4451.1834 3252.1927 L 4450.5634 3251.7827 L 4449.5434 3251.5727 L 4448.5234 3251.5727 L 4447.7034 3251.7827 L 4447.2934 3252.1927 L 4447.0934 3252.8027 L 4447.0934 3253.0027 L 4447.2934 3253.6227 L 4447.7034 3254.0327 L 4448.3134 3254.2327 L 4448.5234 3254.2327 L 4449.1334 3254.0327 L 4449.5434 3253.6227 L 4449.7434 3253.0027 L 4449.7434 3252.8027 L 4449.5434 3252.1927 L 4449.1334 3251.7827 L 4448.5234 3251.5727~none~gge17717~~0~#@$TRACK~1~3~~4445.0795 3223.4703 4445.0795 3264.4151~gge17723~0#@$TRACK~1~3~~4434.6073 3264.4151 4434.6073 3223.4703~gge17726~0#@$TRACK~1~3~~4445.0795 3223.4703 4434.6073 3223.4703~gge17729~0#@$TRACK~1~3~~4445.0795 3264.4151 4434.6073 3264.4151~gge17732~0#@$SVGNODE~{\"gId\":\"gge17735\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"39.9999\",\"c_height\":\"10.47242\",\"c_rotation\":\"0,0,270\",\"z\":\"-11.811\",\"c_origin\":\"4439.8435,3243.9426\",\"uuid\":\"62d1dd00f91344f487735a33792f8f57\",\"c_etype\":\"outline3D\",\"title\":\"HDR-TH_4P-P2.54-M-LI-1X4P\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge17735\"},\"childNodes\":[{\"gId\":\"gge17738\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4442.7174 3223.9427 4439.0166 3223.9427 4436.9694 3223.9427 4435.3158 3225.0451 4434.6072 3225.5175 4434.6072 3232.3679 4435.3158 3232.8404 4436.9694 3233.9427 4435.3158 3235.0451 4434.6072 3235.5175 4434.6072 3242.3679 4435.3158 3242.8403 4436.9694 3243.9427 4435.9458 3244.612 4435.3158 3245.0451 4434.6072 3245.5175 4434.6072 3252.3679 4435.3158 3252.8403 4436.9694 3253.9427 4435.3158 3255.045 4434.6072 3255.5175 4434.6072 3262.3679 4435.3158 3262.8403 4436.9694 3263.9427 4439.0166 3263.9427 4442.7174 3263.9427 4445.0796 3262.3679 4445.0796 3255.5175 4442.7174 3253.9427 4445.0796 3252.3679 4445.0796 3247.486 4445.0796 3246.423 4445.0796 3245.5175 4443.8591 3244.6907 4443.741 3244.612 4442.7174 3243.9427 4445.0796 3242.3679 4445.0796 3241.8955 4445.0796 3240.2419 4445.0796 3235.5175 4442.7174 3233.9427 4445.0796 3232.3679 4445.0796 3225.7931 4445.0796 3225.5175 4442.7174 3223.9427 4442.7174 3223.9427\",\"id\":\"gge17738\"}}]}#@$SOLIDREGION~99~~M 4445.5795 3222.9703 L 4445.5795 3264.9151 L 4434.1073 3264.9151 L 4434.1073 3222.9703 Z ~solid~gge17741~~~~0#@$CIRCLE~4439.8434~3228.9427~0.886~1.7717~100~gge17744~0~~#@$CIRCLE~4439.8434~3238.9427~0.886~1.7717~100~gge17747~0~~#@$CIRCLE~4439.8434~3248.9427~0.886~1.7717~100~gge17750~0~~#@$CIRCLE~4439.8434~3258.9427~0.886~1.7717~100~gge17753~0~~#@$CIRCLE~4434.1074~3222.9707~0.118~0.2362~101~gge17756~0~~#@$PAD~RECT~4439.8434~3228.9427~6.6929~6.6929~11~TX~1~2.1654~4443.1898 3225.5963 4443.1898 3232.2892 4436.4969 3232.2892 4436.4969 3225.5963~270~gge17759~0~~Y~0~0~0.2~4439.8434,3228.9427#@$PAD~ELLIPSE~4439.8434~3238.9427~6.6929~6.6929~11~RX~2~2.1654~~270~gge17774~0~~Y~0~0~0.2~4439.8434,3238.9427#@$PAD~ELLIPSE~4439.8434~3248.9427~6.6929~6.6929~11~SCL~3~2.1654~~270~gge17789~0~~Y~0~0~0.2~4439.8434,3248.9427#@$PAD~ELLIPSE~4439.8434~3258.9427~6.6929~6.6929~11~SDA~4~2.1654~~270~gge17804~0~~Y~0~0~0.2~4439.8434,3258.9427","LIB~4480.3434~3243.4427~package`C0805`Contributor`lcsc`link`https:\/\/item.szlcsc.com\/373011.html`3DModel`C0805_L2.0-W1.3-H1.3`BOM_Supplier`LCSC`BOM_Manufacturer Part`CC0805KRX7R9BB104`BOM_Manufacturer`YAGEO`nameAlias`Capacitance`BOM_Supplier Part`C49678`BOM_JLCPCB Part Class`Basic Part`spicePre`C`spiceSymbolName`CC0805KRX7R9BB104`~270~~gge071d240d8e5f0119~1~2ee8eb13a0124a108e622ce40c0c25a8~1667381257~0~~yes~~#@$TEXT~N~4497.133~3260.5035~0.6~90~~3~~4.5~100nF~M 4493.413 3260.5035 L 4493.203 3260.0935 L 4492.593 3259.4835 L 4496.883 3259.4835 M 4492.593 3256.9035 L 4492.793 3257.5135 L 4493.413 3257.9235 L 4494.433 3258.1335 L 4495.043 3258.1335 L 4496.073 3257.9235 L 4496.683 3257.5135 L 4496.883 3256.9035 L 4496.883 3256.4935 L 4496.683 3255.8835 L 4496.073 3255.4735 L 4495.043 3255.2635 L 4494.433 3255.2635 L 4493.413 3255.4735 L 4492.793 3255.8835 L 4492.593 3256.4935 L 4492.593 3256.9035 M 4492.593 3252.6935 L 4492.793 3253.3035 L 4493.413 3253.7135 L 4494.433 3253.9135 L 4495.043 3253.9135 L 4496.073 3253.7135 L 4496.683 3253.3035 L 4496.883 3252.6935 L 4496.883 3252.2835 L 4496.683 3251.6635 L 4496.073 3251.2535 L 4495.043 3251.0535 L 4494.433 3251.0535 L 4493.413 3251.2535 L 4492.793 3251.6635 L 4492.593 3252.2835 L 4492.593 3252.6935 M 4494.023 3249.7035 L 4496.883 3249.7035 M 4494.843 3249.7035 L 4494.233 3249.0935 L 4494.023 3248.6835 L 4494.023 3248.0635 L 4494.233 3247.6535 L 4494.843 3247.4535 L 4496.883 3247.4535 M 4492.593 3246.1035 L 4496.883 3246.1035 M 4492.593 3246.1035 L 4492.593 3243.4435 M 4494.633 3246.1035 L 4494.633 3244.4635~none~gge13375~~0~#@$TEXT~P~4487.3434~3249.9427~0.6~0~~3~~4.5~CAN1_C2~M 4490.4134 3246.4227 L 4490.2034 3246.0127 L 4489.7934 3245.6027 L 4489.3934 3245.4027 L 4488.5734 3245.4027 L 4488.1634 3245.6027 L 4487.7534 3246.0127 L 4487.5434 3246.4227 L 4487.3434 3247.0427 L 4487.3434 3248.0627 L 4487.5434 3248.6727 L 4487.7534 3249.0827 L 4488.1634 3249.4927 L 4488.5734 3249.6927 L 4489.3934 3249.6927 L 4489.7934 3249.4927 L 4490.2034 3249.0827 L 4490.4134 3248.6727 M 4493.3934 3245.4027 L 4491.7634 3249.6927 M 4493.3934 3245.4027 L 4495.0334 3249.6927 M 4492.3734 3248.2627 L 4494.4234 3248.2627 M 4496.3834 3245.4027 L 4496.3834 3249.6927 M 4496.3834 3245.4027 L 4499.2434 3249.6927 M 4499.2434 3245.4027 L 4499.2434 3249.6927 M 4500.5934 3246.2227 L 4501.0034 3246.0127 L 4501.6234 3245.4027 L 4501.6234 3249.6927 M 4502.9734 3251.1327 L 4506.6534 3251.1327 M 4511.0734 3246.4227 L 4510.8634 3246.0127 L 4510.4534 3245.6027 L 4510.0434 3245.4027 L 4509.2334 3245.4027 L 4508.8234 3245.6027 L 4508.4134 3246.0127 L 4508.2034 3246.4227 L 4508.0034 3247.0427 L 4508.0034 3248.0627 L 4508.2034 3248.6727 L 4508.4134 3249.0827 L 4508.8234 3249.4927 L 4509.2334 3249.6927 L 4510.0434 3249.6927 L 4510.4534 3249.4927 L 4510.8634 3249.0827 L 4511.0734 3248.6727 M 4512.6234 3246.4227 L 4512.6234 3246.2227 L 4512.8334 3245.8127 L 4513.0334 3245.6027 L 4513.4434 3245.4027 L 4514.2634 3245.4027 L 4514.6734 3245.6027 L 4514.8734 3245.8127 L 4515.0834 3246.2227 L 4515.0834 3246.6327 L 4514.8734 3247.0427 L 4514.4634 3247.6527 L 4512.4234 3249.6927 L 4515.2834 3249.6927~~gge13381~~0~#@$SOLIDREGION~100~~M 4477.8828 3239.5057 L 4482.804 3239.5057 L 4482.804 3241.4742 L 4477.8828 3241.4742 Z ~solid~gge13387~~~~0#@$SOLIDREGION~100~~M 4482.804 3247.3797 L 4477.8828 3247.3797 L 4477.8828 3245.4112 L 4482.804 3245.4112 Z ~solid~gge13390~~~~0#@$SOLIDREGION~99~~M 4477.8828 3239.5057 L 4482.804 3239.5057 L 4482.804 3247.3797 L 4477.8828 3247.3797 Z ~solid~gge13393~~~~0#@$SOLIDREGION~5~~M 4477.9026 3236.8481 L 4482.9419 3236.8481 L 4483.1388 3237.045 L 4483.1388 3241.5726 L 4482.9419 3241.7694 L 4481.3276 3241.7892 L 4481.3276 3240.0175 L 4479.556 3240.0175 L 4479.556 3241.7498 L 4477.9026 3241.7694 L 4477.7057 3241.5726 L 4477.7057 3237.045 Z ~solid~gge13396~~~~0#@$SOLIDREGION~5~~M 4477.9026 3245.3127 L 4479.556 3245.3128 L 4479.556 3247.0647 L 4481.3276 3247.0647 L 4481.3276 3245.3325 L 4482.9419 3245.3127 L 4483.1388 3245.5096 L 4483.1388 3250.0371 L 4482.9419 3250.234 L 4477.9026 3250.234 L 4477.7057 3250.0371 L 4477.7057 3245.5096 Z ~solid~gge13399~~~~0#@$TRACK~0.6~3~~4483.9009 3250.5734 4483.9009 3245.0222~gge13402~0#@$TRACK~0.6~3~~4476.7859 3245.0222 4476.7859 3250.5734~gge13405~0#@$TRACK~0.6~3~~4477.3859 3251.1734 4483.3009 3251.1734~gge13408~0#@$TRACK~0.6~3~~4483.9009 3236.312 4483.9009 3241.8632~gge13411~0#@$TRACK~0.6~3~~4476.7859 3241.8632 4476.7859 3236.312~gge13414~0#@$TRACK~0.6~3~~4477.3859 3235.712 4483.3009 3235.712~gge13417~0#@$ARC~0.6~3~~M 4476.7859 3250.5734 A 0.6 0.6 0 0 0 4477.3859 3251.1734~~gge13420~0#@$ARC~0.6~3~~M 4483.3009 3251.1734 A 0.6 0.6 0 0 0 4483.9009 3250.5734~~gge13423~0#@$ARC~0.6~3~~M 4476.7859 3236.312 A 0.6 0.6 0 0 1 4477.3859 3235.712~~gge13426~0#@$ARC~0.6~3~~M 4483.3009 3235.712 A 0.6 0.6 0 0 1 4483.9009 3236.312~~gge13429~0#@$CIRCLE~4477.8824~3239.5057~0.118~0.2362~101~gge13432~0~~#@$SVGNODE~{\"gId\":\"gge13435\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"7.874\",\"c_height\":\"5.1181\",\"c_rotation\":\"0,0,270\",\"z\":\"0\",\"c_origin\":\"4480.3433,3243.4426\",\"uuid\":\"b87ab0c5465a48b3a1c9a6dac8d30bc5\",\"c_etype\":\"outline3D\",\"title\":\"C0805_L2.0-W1.3-H1.3\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge13435\"},\"childNodes\":[{\"gId\":\"gge13438\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4482.745 3239.5057 4482.7057 3239.5057 4477.9813 3239.5057 4477.9419 3239.5057 4477.9025 3239.5451 4477.8238 3239.5451 4477.8238 3239.6238 4477.7844 3239.7026 4477.7844 3241.1199 4477.7844 3241.1592 4477.7844 3241.2774 4477.7844 3241.3955 4477.7844 3241.4348 4477.7844 3241.4742 4477.8632 3241.4742 4477.8632 3245.4112 4477.7844 3245.4112 4477.7844 3245.4506 4477.7844 3245.4899 4477.7844 3245.6081 4477.7844 3245.7262 4477.7844 3245.7655 4477.7844 3247.2222 4477.8238 3247.301 4477.8238 3247.3403 4477.9025 3247.3403 4477.9419 3247.3797 4477.9813 3247.3797 4482.7057 3247.3797 4482.745 3247.3797 4482.8238 3247.3403 4482.8631 3247.3403 4482.8631 3247.301 4482.9025 3247.1829 4482.9025 3246.4742 4482.9025 3245.7655 4482.9025 3245.7262 4482.9025 3245.6081 4482.9025 3245.4899 4482.9025 3245.4506 4482.9025 3245.4112 4482.8238 3245.4112 4482.8238 3241.4742 4482.9025 3241.4742 4482.9025 3241.4348 4482.9025 3241.3955 4482.9025 3241.2774 4482.9025 3241.1592 4482.9025 3241.1199 4482.9025 3240.4112 4482.9025 3239.6632 4482.8631 3239.6238 4482.8631 3239.5451 4482.8238 3239.5451 4482.745 3239.5057 4482.745 3239.5057\",\"id\":\"gge13438\"}}]}#@$PAD~RECT~4480.3434~3247.3797~5.5512~5.315~1~GND~2~0~4477.6859 3244.6042 4483.0009 3244.6042 4483.0009 3250.1554 4477.6859 3250.1554~270~gge13441~0~~Y~0~-393.7008~0.2000~4480.3434,3247.3798#@$PAD~RECT~4480.3434~3239.5057~5.5512~5.315~1~+3.3V~1~0~4477.6859 3242.2812 4483.0009 3242.2812 4483.0009 3236.73 4477.6859 3236.73~270~gge13453~0~~Y~0~-393.7008~0.2000~4480.3434,3239.5056","LIB~4665.3434~3199.4427~package`SMD-4_L4.6-W6.5-P2.54-LS10.2-TL`link`https:\/\/item.szlcsc.com\/67489.html`Contributor`LCSC`3DModel`SMD-4_L4.6-W6.5-H3.7-LS10.2-P2.54`BOM_Supplier`LCSC`BOM_Manufacturer`SHARP`BOM_Manufacturer Part`PC817X2CSP9F`BOM_Supplier Part`C66405`BOM_JLCPCB Part Class`Extended Part`spicePre`U`spiceSymbolName`PC817X2CSP9F`~180~~gge753249c1f9271cea~1~e706e9f3ee874e6cb3b5586c317927b4~1619336837~0~~yes~~#@$TEXT~N~4618.8466~3223.0647~0.6~0~0~3~~4.5~PC817X2CSP9F~M 4618.8464 3218.5247 L 4618.8464 3222.8147 M 4618.8464 3218.5247 L 4620.6864 3218.5247 L 4621.2964 3218.7247 L 4621.5064 3218.9347 L 4621.7064 3219.3447 L 4621.7064 3219.9547 L 4621.5064 3220.3647 L 4621.2964 3220.5647 L 4620.6864 3220.7747 L 4618.8464 3220.7747 M 4626.1264 3219.5447 L 4625.9264 3219.1347 L 4625.5164 3218.7247 L 4625.1064 3218.5247 L 4624.2864 3218.5247 L 4623.8764 3218.7247 L 4623.4664 3219.1347 L 4623.2664 3219.5447 L 4623.0564 3220.1647 L 4623.0564 3221.1847 L 4623.2664 3221.7947 L 4623.4664 3222.2047 L 4623.8764 3222.6147 L 4624.2864 3222.8147 L 4625.1064 3222.8147 L 4625.5164 3222.6147 L 4625.9264 3222.2047 L 4626.1264 3221.7947 M 4628.4964 3218.5247 L 4627.8864 3218.7247 L 4627.6864 3219.1347 L 4627.6864 3219.5447 L 4627.8864 3219.9547 L 4628.2964 3220.1647 L 4629.1164 3220.3647 L 4629.7264 3220.5647 L 4630.1364 3220.9747 L 4630.3464 3221.3847 L 4630.3464 3222.0047 L 4630.1364 3222.4147 L 4629.9364 3222.6147 L 4629.3164 3222.8147 L 4628.4964 3222.8147 L 4627.8864 3222.6147 L 4627.6864 3222.4147 L 4627.4764 3222.0047 L 4627.4764 3221.3847 L 4627.6864 3220.9747 L 4628.0964 3220.5647 L 4628.7064 3220.3647 L 4629.5264 3220.1647 L 4629.9364 3219.9547 L 4630.1364 3219.5447 L 4630.1364 3219.1347 L 4629.9364 3218.7247 L 4629.3164 3218.5247 L 4628.4964 3218.5247 M 4631.6964 3219.3447 L 4632.0964 3219.1347 L 4632.7164 3218.5247 L 4632.7164 3222.8147 M 4636.9264 3218.5247 L 4634.8864 3222.8147 M 4634.0664 3218.5247 L 4636.9264 3218.5247 M 4638.2764 3218.5247 L 4641.1464 3222.8147 M 4641.1464 3218.5247 L 4638.2764 3222.8147 M 4642.6964 3219.5447 L 4642.6964 3219.3447 L 4642.8964 3218.9347 L 4643.1064 3218.7247 L 4643.5164 3218.5247 L 4644.3364 3218.5247 L 4644.7464 3218.7247 L 4644.9464 3218.9347 L 4645.1464 3219.3447 L 4645.1464 3219.7547 L 4644.9464 3220.1647 L 4644.5364 3220.7747 L 4642.4964 3222.8147 L 4645.3564 3222.8147 M 4649.7764 3219.5447 L 4649.5664 3219.1347 L 4649.1564 3218.7247 L 4648.7464 3218.5247 L 4647.9364 3218.5247 L 4647.5264 3218.7247 L 4647.1164 3219.1347 L 4646.9064 3219.5447 L 4646.7064 3220.1647 L 4646.7064 3221.1847 L 4646.9064 3221.7947 L 4647.1164 3222.2047 L 4647.5264 3222.6147 L 4647.9364 3222.8147 L 4648.7464 3222.8147 L 4649.1564 3222.6147 L 4649.5664 3222.2047 L 4649.7764 3221.7947 M 4653.9864 3219.1347 L 4653.5764 3218.7247 L 4652.9664 3218.5247 L 4652.1464 3218.5247 L 4651.5364 3218.7247 L 4651.1264 3219.1347 L 4651.1264 3219.5447 L 4651.3264 3219.9547 L 4651.5364 3220.1647 L 4651.9464 3220.3647 L 4653.1664 3220.7747 L 4653.5764 3220.9747 L 4653.7864 3221.1847 L 4653.9864 3221.5947 L 4653.9864 3222.2047 L 4653.5764 3222.6147 L 4652.9664 3222.8147 L 4652.1464 3222.8147 L 4651.5364 3222.6147 L 4651.1264 3222.2047 M 4655.3364 3218.5247 L 4655.3364 3222.8147 M 4655.3364 3218.5247 L 4657.1764 3218.5247 L 4657.7964 3218.7247 L 4657.9964 3218.9347 L 4658.1964 3219.3447 L 4658.1964 3219.9547 L 4657.9964 3220.3647 L 4657.7964 3220.5647 L 4657.1764 3220.7747 L 4655.3364 3220.7747 M 4662.2064 3219.9547 L 4662.0064 3220.5647 L 4661.5964 3220.9747 L 4660.9864 3221.1847 L 4660.7764 3221.1847 L 4660.1664 3220.9747 L 4659.7564 3220.5647 L 4659.5464 3219.9547 L 4659.5464 3219.7547 L 4659.7564 3219.1347 L 4660.1664 3218.7247 L 4660.7764 3218.5247 L 4660.9864 3218.5247 L 4661.5964 3218.7247 L 4662.0064 3219.1347 L 4662.2064 3219.9547 L 4662.2064 3220.9747 L 4662.0064 3222.0047 L 4661.5964 3222.6147 L 4660.9864 3222.8147 L 4660.5764 3222.8147 L 4659.9564 3222.6147 L 4659.7564 3222.2047 M 4663.5564 3218.5247 L 4663.5564 3222.8147 M 4663.5564 3218.5247 L 4666.2164 3218.5247 M 4663.5564 3220.5647 L 4665.1964 3220.5647~none~gge11915~~0~#@$TEXT~P~4655.3434~3199.9427~0.6~0~0~3~~4.5~OPTO2~M 4656.5732 3195.4027 L 4656.1632 3195.6027 L 4655.7532 3196.0127 L 4655.5432 3196.4227 L 4655.3432 3197.0427 L 4655.3432 3198.0627 L 4655.5432 3198.6727 L 4655.7532 3199.0827 L 4656.1632 3199.4927 L 4656.5732 3199.6927 L 4657.3932 3199.6927 L 4657.7932 3199.4927 L 4658.2032 3199.0827 L 4658.4132 3198.6727 L 4658.6132 3198.0627 L 4658.6132 3197.0427 L 4658.4132 3196.4227 L 4658.2032 3196.0127 L 4657.7932 3195.6027 L 4657.3932 3195.4027 L 4656.5732 3195.4027 M 4659.9632 3195.4027 L 4659.9632 3199.6927 M 4659.9632 3195.4027 L 4661.8032 3195.4027 L 4662.4232 3195.6027 L 4662.6232 3195.8127 L 4662.8332 3196.2227 L 4662.8332 3196.8327 L 4662.6232 3197.2427 L 4662.4232 3197.4427 L 4661.8032 3197.6527 L 4659.9632 3197.6527 M 4665.6132 3195.4027 L 4665.6132 3199.6927 M 4664.1832 3195.4027 L 4667.0432 3195.4027 M 4669.6232 3195.4027 L 4669.2132 3195.6027 L 4668.8032 3196.0127 L 4668.5932 3196.4227 L 4668.3932 3197.0427 L 4668.3932 3198.0627 L 4668.5932 3198.6727 L 4668.8032 3199.0827 L 4669.2132 3199.4927 L 4669.6232 3199.6927 L 4670.4432 3199.6927 L 4670.8432 3199.4927 L 4671.2532 3199.0827 L 4671.4632 3198.6727 L 4671.6632 3198.0627 L 4671.6632 3197.0427 L 4671.4632 3196.4227 L 4671.2532 3196.0127 L 4670.8432 3195.6027 L 4670.4432 3195.4027 L 4669.6232 3195.4027 M 4673.2232 3196.4227 L 4673.2232 3196.2227 L 4673.4232 3195.8127 L 4673.6332 3195.6027 L 4674.0432 3195.4027 L 4674.8532 3195.4027 L 4675.2632 3195.6027 L 4675.4732 3195.8127 L 4675.6732 3196.2227 L 4675.6732 3196.6327 L 4675.4732 3197.0427 L 4675.0632 3197.6527 L 4673.0132 3199.6927 L 4675.8832 3199.6927~~gge11921~~0~#@$TRACK~1~3~~4652.5481 3208.4981 4652.5481 3190.3878~gge11927~0#@$TRACK~1~3~~4652.5481 3190.3878 4678.1388 3190.3878~gge11930~0#@$TRACK~1~3~~4678.1388 3190.3878 4678.1388 3208.4981~gge11933~0#@$TRACK~1~3~~4678.1388 3208.4981 4668.0995 3208.4981~gge11936~0#@$TRACK~1~3~~4652.5481 3208.4981 4662.5877 3208.4981~gge11939~0#@$ARC~1~3~~M 4662.5876 3208.4981 A 2.7579 2.7579 0 0 1 4668.1035 3208.5017~~gge11942~0#@$ARC~2.75591~3~~M 4673.2135 3205.743 A 1.37795 1.37795 0 1 0 4673.1936 3205.743~~gge11945~0#@$ARC~1.5748~3~~M 4684.2412 3210.4666 A 0.7874 0.7874 0 1 0 4684.2312 3210.4666~~gge11948~0#@$CIRCLE~4687.3898~3204.1994~0.787~1.5748~12~gge11951~0~~#@$CIRCLE~4684.5278~3207.9974~0.5~1~101~gge11954~0~~#@$SOLIDREGION~99~~M 4678.1388 3208.4981 L 4652.5481 3208.4981 L 4652.5481 3190.3879 L 4678.1388 3190.3879 Z ~solid~gge11957~~~~0#@$SOLIDREGION~100~~M 4685.0286 3205.427 L 4683.06 3205.427 L 4683.06 3203.4584 L 4685.0286 3203.4584 Z ~solid~gge11960~~~~0#@$SOLIDREGION~100~~M 4683.0994 3205.427 L 4677.9027 3205.427 L 4677.9027 3203.4584 L 4683.0994 3203.4584 Z ~cutout~gge11963~~~~0#@$SOLIDREGION~100~~M 4685.0286 3195.427 L 4683.06 3195.427 L 4683.06 3193.4584 L 4685.0286 3193.4584 Z ~solid~gge11966~~~~0#@$SOLIDREGION~100~~M 4683.0994 3195.427 L 4677.9027 3195.427 L 4677.9027 3193.4584 L 4683.0994 3193.4584 Z ~cutout~gge11969~~~~0#@$SOLIDREGION~100~~M 4647.6269 3195.427 L 4645.6585 3195.427 L 4645.6585 3193.4584 L 4647.6269 3193.4584 Z ~solid~gge11972~~~~0#@$SOLIDREGION~100~~M 4652.7844 3195.427 L 4647.5876 3195.427 L 4647.5876 3193.4584 L 4652.7844 3193.4584 Z ~cutout~gge11975~~~~0#@$SOLIDREGION~100~~M 4647.6269 3205.427 L 4645.6585 3205.427 L 4645.6585 3203.4584 L 4647.6269 3203.4584 Z ~solid~gge11978~~~~0#@$SOLIDREGION~100~~M 4652.7844 3205.427 L 4647.5876 3205.427 L 4647.5876 3203.4584 L 4652.7844 3203.4584 Z ~cutout~gge11981~~~~0#@$SVGNODE~{\"gId\":\"gge11984\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"40.194494414\",\"c_height\":\"18.1102\",\"c_rotation\":\"0,0,180\",\"z\":\"0\",\"c_origin\":\"4665.3435,3199.443\",\"uuid\":\"a79e9c743b25445f8d44dea9f0160c59\",\"c_etype\":\"outline3D\",\"title\":\"SMD-4_L4.6-W6.5-H3.7-LS10.2-P2.54\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge11984\"},\"childNodes\":[{\"gId\":\"gge11987\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4685.4223 3205.4272 4685.4223 3205.3879 4685.4223 3204.443 4685.4223 3203.4981 4685.4223 3203.4587 4685.3435 3203.4587 4684.3593 3203.4587 4684.2805 3203.4587 4684.123 3203.4587 4684.0048 3203.4587 4683.8867 3203.4587 4683.808 3203.4587 4683.7292 3203.4587 4683.69 3203.4587 4683.5324 3203.4587 4683.2962 3203.4587 4683.1388 3203.4587 4682.9812 3203.4587 4682.863 3203.4587 4682.7451 3203.4587 4680.4223 3203.4587 4680.3041 3203.4587 4680.2647 3203.4587 4680.1465 3203.4587 4680.1071 3203.4587 4679.9891 3203.4587 4679.9498 3203.4587 4679.7528 3203.4587 4679.5952 3203.4587 4679.3985 3203.4587 4679.3198 3203.4587 4679.2412 3203.4587 4679.1624 3203.4587 4679.123 3203.4587 4679.0048 3203.4587 4678.9261 3203.4587 4678.8475 3203.4587 4678.7294 3203.4587 4678.1388 3203.4587 4678.1388 3195.4273 4678.7294 3195.4273 4678.8867 3195.4273 4678.9261 3195.4273 4679.0048 3195.4273 4679.123 3195.4273 4679.1624 3195.4273 4679.2805 3195.4273 4679.3593 3195.4273 4679.4379 3195.4273 4679.5952 3195.4273 4679.7923 3195.4273 4679.9498 3195.4273 4679.9891 3195.4273 4680.1071 3195.4273 4680.1465 3195.4273 4680.2647 3195.4273 4680.3041 3195.4273 4680.4223 3195.4273 4682.7844 3195.4273 4682.9024 3195.4273 4683.0206 3195.4273 4683.1782 3195.4273 4683.3748 3195.4273 4683.5324 3195.4273 4683.7687 3195.4273 4683.808 3195.4273 4683.9261 3195.4273 4684.0048 3195.4273 4684.1624 3195.4273 4684.2805 3195.4273 4684.3985 3195.4273 4685.3829 3195.4273 4685.4223 3195.4273 4685.4223 3195.3879 4685.4223 3194.443 4685.4223 3193.5375 4685.4223 3193.4981 4685.4223 3193.4588 4685.3435 3193.4588 4684.3593 3193.4588 4684.2805 3193.4588 4684.123 3193.4588 4684.0836 3193.4588 4684.0048 3193.4588 4683.8867 3193.4588 4683.808 3193.4588 4683.7292 3193.4588 4683.5324 3193.4588 4683.3354 3193.4588 4683.2962 3193.4588 4683.1388 3193.4588 4682.9812 3193.4588 4682.9418 3193.4588 4682.8236 3193.4588 4682.7451 3193.4588 4680.3829 3193.4588 4680.3041 3193.4588 4680.2647 3193.4588 4680.1465 3193.4588 4679.9891 3193.4588 4679.9498 3193.4588 4679.7528 3193.4588 4679.5952 3193.4588 4679.3985 3193.4588 4679.3198 3193.4588 4679.2412 3193.4588 4679.1624 3193.4588 4679.123 3193.4588 4679.0048 3193.4588 4678.9261 3193.4588 4678.8475 3193.4588 4678.7294 3193.4588 4678.1388 3193.4588 4678.1388 3190.5848 4678.1388 3190.5454 4678.0994 3190.506 4678.0994 3190.4273 4678.0206 3190.4273 4677.9418 3190.3879 4652.7057 3190.3879 4652.6269 3190.4273 4652.5876 3190.4666 4652.5876 3190.506 4652.5481 3190.5454 4652.5481 3190.5848 4652.5481 3193.4588 4651.9578 3193.4588 4651.8396 3193.4588 4651.7608 3193.4588 4651.6428 3193.4588 4651.5641 3193.4588 4651.5247 3193.4588 4651.4065 3193.4588 4651.3277 3193.4588 4651.2489 3193.4588 4651.0915 3193.4588 4650.8947 3193.4588 4650.7371 3193.4588 4650.6977 3193.4588 4650.5797 3193.4588 4650.5404 3193.4588 4650.4223 3193.4588 4650.3829 3193.4588 4650.2647 3193.4588 4649.123 3193.4588 4647.9024 3193.4588 4647.7844 3193.4588 4647.6664 3193.4588 4647.5088 3193.4588 4647.3121 3193.4588 4647.1546 3193.4588 4646.9578 3193.4588 4646.9184 3193.4588 4646.879 3193.4588 4646.7608 3193.4588 4646.6821 3193.4588 4646.5247 3193.4588 4646.4459 3193.4588 4646.4065 3193.4588 4646.2883 3193.4588 4645.3041 3193.4588 4645.2647 3193.4588 4645.2647 3193.4981 4645.2647 3193.5375 4645.2647 3194.443 4645.2647 3195.3879 4645.2647 3195.4273 4645.3435 3195.4273 4646.3277 3195.4273 4646.4065 3195.4273 4646.5641 3195.4273 4646.6821 3195.4273 4646.7608 3195.4273 4646.879 3195.4273 4646.9578 3195.4273 4646.9971 3195.4273 4647.1546 3195.4273 4647.3906 3195.4273 4647.5481 3195.4273 4647.7057 3195.4273 4647.8239 3195.4273 4647.9418 3195.4273 4650.2647 3195.4273 4650.3829 3195.4273 4650.4223 3195.4273 4650.5404 3195.4273 4650.5797 3195.4273 4650.6977 3195.4273 4650.7371 3195.4273 4650.9341 3195.4273 4651.0915 3195.4273 4651.2883 3195.4273 4651.3671 3195.4273 4651.4459 3195.4273 4651.5247 3195.4273 4651.5641 3195.4273 4651.6821 3195.4273 4651.7608 3195.4273 4651.8396 3195.4273 4651.9578 3195.4273 4652.5481 3195.4273 4652.5481 3203.4587 4651.9578 3203.4587 4651.8396 3203.4587 4651.7608 3203.4587 4651.6821 3203.4587 4651.5641 3203.4587 4651.5247 3203.4587 4651.4065 3203.4587 4651.3277 3203.4587 4651.2489 3203.4587 4651.0915 3203.4587 4650.8947 3203.4587 4650.7371 3203.4587 4650.6977 3203.4587 4650.5797 3203.4587 4650.5404 3203.4587 4650.4223 3203.4587 4650.3829 3203.4587 4650.2647 3203.4587 4647.9024 3203.4587 4647.7844 3203.4587 4647.6664 3203.4587 4647.5088 3203.4587 4647.3121 3203.4587 4647.1546 3203.4587 4646.9578 3203.4587 4646.9184 3203.4587 4646.879 3203.4587 4646.7608 3203.4587 4646.6821 3203.4587 4646.5247 3203.4587 4646.4065 3203.4587 4646.2883 3203.4587 4645.3041 3203.4587 4645.2647 3203.4587 4645.2647 3203.4981 4645.2647 3204.443 4645.2647 3205.3879 4645.2647 3205.4272 4645.3435 3205.4272 4646.3277 3205.4272 4646.4065 3205.4272 4646.5641 3205.4272 4646.6033 3205.4272 4646.6821 3205.4272 4646.7608 3205.4272 4646.879 3205.4272 4646.9578 3205.4272 4647.1546 3205.4272 4647.3514 3205.4272 4647.3906 3205.4272 4647.5481 3205.4272 4647.7057 3205.4272 4647.7452 3205.4272 4647.8632 3205.4272 4647.9418 3205.4272 4650.3041 3205.4272 4650.3829 3205.4272 4650.4223 3205.4272 4650.5404 3205.4272 4650.6977 3205.4272 4650.7371 3205.4272 4650.9341 3205.4272 4651.0915 3205.4272 4651.2883 3205.4272 4651.3671 3205.4272 4651.4459 3205.4272 4651.5247 3205.4272 4651.5641 3205.4272 4651.6821 3205.4272 4651.7608 3205.4272 4651.8396 3205.4272 4651.9578 3205.4272 4652.2333 3205.4272 4652.5481 3205.4272 4652.5481 3208.3013 4652.5481 3208.3406 4652.5876 3208.38 4652.5876 3208.4587 4652.6664 3208.4587 4652.7452 3208.4981 4677.9812 3208.4981 4678.06 3208.4587 4678.0994 3208.4194 4678.0994 3208.38 4678.1388 3208.3406 4678.1388 3208.3013 4678.1388 3205.4272 4678.4142 3205.4272 4678.7294 3205.4272 4678.8867 3205.4272 4678.9261 3205.4272 4679.0442 3205.4272 4679.123 3205.4272 4679.1624 3205.4272 4679.2805 3205.4272 4679.3198 3205.4272 4679.4379 3205.4272 4679.5952 3205.4272 4679.7923 3205.4272 4679.9498 3205.4272 4679.9891 3205.4272 4680.1071 3205.4272 4680.1465 3205.4272 4680.2647 3205.4272 4680.3041 3205.4272 4680.4223 3205.4272 4682.7844 3205.4272 4682.9024 3205.4272 4683.0206 3205.4272 4683.2174 3205.4272 4683.3748 3205.4272 4683.5324 3205.4272 4683.7292 3205.4272 4683.808 3205.4272 4683.9261 3205.4272 4684.0048 3205.4272 4684.1624 3205.4272 4684.2412 3205.4272 4684.2805 3205.4272 4684.3985 3205.4272 4685.3829 3205.4272 4685.4223 3205.4272 4685.4223 3205.4272\",\"id\":\"gge11987\"}}]}#@$PAD~RECT~4683.6508~3204.4434~5.9055~7.874~1~R2_1~1~0~4687.5876 3201.4902 4687.5876 3207.3958 4679.7135 3207.3958 4679.7135 3201.4902~270~gge11990~0~~Y~0~0~0.2~4683.6504,3204.443#@$PAD~RECT~4683.6508~3194.4434~5.9055~7.874~1~START2~2~0~4687.5876 3191.4902 4687.5876 3197.3958 4679.7135 3197.3958 4679.7135 3191.4902~270~gge12005~0~~Y~0~0~0.2~4683.6504,3194.443#@$PAD~RECT~4647.0368~3194.4434~5.9055~7.874~1~GND~3~0~4650.9735 3191.4902 4650.9735 3197.3958 4643.0994 3197.3958 4643.0994 3191.4902~270~gge12020~0~~Y~0~0~0.2~4647.0364,3194.443#@$PAD~RECT~4647.0368~3204.4434~5.9055~7.874~1~IN2~4~0~4650.9735 3201.4902 4650.9735 3207.3958 4643.0994 3207.3958 4643.0994 3201.4902~270~gge12035~0~~Y~0~0~0.2~4647.0364,3204.443","LIB~4433.3434~3098.4427~package`LED0805-RD`Contributor`lcsc`link`https:\/\/item.szlcsc.com\/255094.html`3DModel`LED0805-RD`BOM_Supplier`LCSC`BOM_Manufacturer`NATIONSTAR`BOM_Manufacturer Part`FC-2012HRK-620D`BOM_Supplier Part`C84256`BOM_JLCPCB Part Class`Basic Part`spicePre`L`spiceSymbolName`FC-2012HRK-620D`~~~gge02c8934deb68440d~1~a267edbe7c3c4a16b85fd51e936458d0~1650262302~0~~yes~~#@$TEXT~N~4432.93~3086.592~0.6~0~0~3~~4.5~FC-2012HRK-620D~M 4432.9302 3082.0523 L 4432.9302 3086.3423 M 4432.9302 3082.0523 L 4435.5902 3082.0523 M 4432.9302 3084.0923 L 4434.5702 3084.0923 M 4440.0102 3083.0723 L 4439.8002 3082.6623 L 4439.3902 3082.2523 L 4438.9802 3082.0523 L 4438.1702 3082.0523 L 4437.7602 3082.2523 L 4437.3502 3082.6623 L 4437.1402 3083.0723 L 4436.9402 3083.6923 L 4436.9402 3084.7123 L 4437.1402 3085.3223 L 4437.3502 3085.7323 L 4437.7602 3086.1423 L 4438.1702 3086.3423 L 4438.9802 3086.3423 L 4439.3902 3086.1423 L 4439.8002 3085.7323 L 4440.0102 3085.3223 M 4441.3602 3084.5023 L 4445.0402 3084.5023 M 4446.5902 3083.0723 L 4446.5902 3082.8723 L 4446.8002 3082.4623 L 4447.0002 3082.2523 L 4447.4102 3082.0523 L 4448.2302 3082.0523 L 4448.6402 3082.2523 L 4448.8402 3082.4623 L 4449.0502 3082.8723 L 4449.0502 3083.2823 L 4448.8402 3083.6923 L 4448.4302 3084.3023 L 4446.3902 3086.3423 L 4449.2502 3086.3423 M 4451.8302 3082.0523 L 4451.2202 3082.2523 L 4450.8102 3082.8723 L 4450.6002 3083.8923 L 4450.6002 3084.5023 L 4450.8102 3085.5323 L 4451.2202 3086.1423 L 4451.8302 3086.3423 L 4452.2402 3086.3423 L 4452.8502 3086.1423 L 4453.2602 3085.5323 L 4453.4702 3084.5023 L 4453.4702 3083.8923 L 4453.2602 3082.8723 L 4452.8502 3082.2523 L 4452.2402 3082.0523 L 4451.8302 3082.0523 M 4454.8202 3082.8723 L 4455.2302 3082.6623 L 4455.8402 3082.0523 L 4455.8402 3086.3423 M 4457.3902 3083.0723 L 4457.3902 3082.8723 L 4457.6002 3082.4623 L 4457.8002 3082.2523 L 4458.2102 3082.0523 L 4459.0302 3082.0523 L 4459.4402 3082.2523 L 4459.6402 3082.4623 L 4459.8502 3082.8723 L 4459.8502 3083.2823 L 4459.6402 3083.6923 L 4459.2302 3084.3023 L 4457.1902 3086.3423 L 4460.0502 3086.3423 M 4461.4002 3082.0523 L 4461.4002 3086.3423 M 4464.2702 3082.0523 L 4464.2702 3086.3423 M 4461.4002 3084.0923 L 4464.2702 3084.0923 M 4465.6202 3082.0523 L 4465.6202 3086.3423 M 4465.6202 3082.0523 L 4467.4602 3082.0523 L 4468.0702 3082.2523 L 4468.2802 3082.4623 L 4468.4802 3082.8723 L 4468.4802 3083.2823 L 4468.2802 3083.6923 L 4468.0702 3083.8923 L 4467.4602 3084.0923 L 4465.6202 3084.0923 M 4467.0502 3084.0923 L 4468.4802 3086.3423 M 4469.8302 3082.0523 L 4469.8302 3086.3423 M 4472.6902 3082.0523 L 4469.8302 3084.9123 M 4470.8502 3083.8923 L 4472.6902 3086.3423 M 4474.0402 3084.5023 L 4477.7302 3084.5023 M 4481.5302 3082.6623 L 4481.3302 3082.2523 L 4480.7102 3082.0523 L 4480.3002 3082.0523 L 4479.6902 3082.2523 L 4479.2802 3082.8723 L 4479.0802 3083.8923 L 4479.0802 3084.9123 L 4479.2802 3085.7323 L 4479.6902 3086.1423 L 4480.3002 3086.3423 L 4480.5102 3086.3423 L 4481.1202 3086.1423 L 4481.5302 3085.7323 L 4481.7302 3085.1223 L 4481.7302 3084.9123 L 4481.5302 3084.3023 L 4481.1202 3083.8923 L 4480.5102 3083.6923 L 4480.3002 3083.6923 L 4479.6902 3083.8923 L 4479.2802 3084.3023 L 4479.0802 3084.9123 M 4483.2902 3083.0723 L 4483.2902 3082.8723 L 4483.4902 3082.4623 L 4483.7002 3082.2523 L 4484.1102 3082.0523 L 4484.9302 3082.0523 L 4485.3302 3082.2523 L 4485.5402 3082.4623 L 4485.7402 3082.8723 L 4485.7402 3083.2823 L 4485.5402 3083.6923 L 4485.1302 3084.3023 L 4483.0802 3086.3423 L 4485.9502 3086.3423 M 4488.5302 3082.0523 L 4487.9102 3082.2523 L 4487.5002 3082.8723 L 4487.3002 3083.8923 L 4487.3002 3084.5023 L 4487.5002 3085.5323 L 4487.9102 3086.1423 L 4488.5302 3086.3423 L 4488.9302 3086.3423 L 4489.5502 3086.1423 L 4489.9602 3085.5323 L 4490.1602 3084.5023 L 4490.1602 3083.8923 L 4489.9602 3082.8723 L 4489.5502 3082.2523 L 4488.9302 3082.0523 L 4488.5302 3082.0523 M 4491.5102 3082.0523 L 4491.5102 3086.3423 M 4491.5102 3082.0523 L 4492.9402 3082.0523 L 4493.5602 3082.2523 L 4493.9702 3082.6623 L 4494.1702 3083.0723 L 4494.3802 3083.6923 L 4494.3802 3084.7123 L 4494.1702 3085.3223 L 4493.9702 3085.7323 L 4493.5602 3086.1423 L 4492.9402 3086.3423 L 4491.5102 3086.3423~none~gge12056~~0~#@$TEXT~P~4415.3434~3092.9427~0.6~0~0~3~~4.5~PSULED1~M 4415.3436 3088.403 L 4415.3436 3092.693 M 4415.3436 3088.403 L 4417.1836 3088.403 L 4417.7936 3088.603 L 4418.0036 3088.813 L 4418.2036 3089.223 L 4418.2036 3089.833 L 4418.0036 3090.243 L 4417.7936 3090.443 L 4417.1836 3090.653 L 4415.3436 3090.653 M 4422.4236 3089.013 L 4422.0136 3088.603 L 4421.3936 3088.403 L 4420.5836 3088.403 L 4419.9636 3088.603 L 4419.5536 3089.013 L 4419.5536 3089.423 L 4419.7636 3089.833 L 4419.9636 3090.043 L 4420.3736 3090.243 L 4421.6036 3090.653 L 4422.0136 3090.853 L 4422.2136 3091.063 L 4422.4236 3091.473 L 4422.4236 3092.083 L 4422.0136 3092.493 L 4421.3936 3092.693 L 4420.5836 3092.693 L 4419.9636 3092.493 L 4419.5536 3092.083 M 4423.7736 3088.403 L 4423.7736 3091.473 L 4423.9736 3092.083 L 4424.3836 3092.493 L 4424.9936 3092.693 L 4425.4036 3092.693 L 4426.0236 3092.493 L 4426.4336 3092.083 L 4426.6336 3091.473 L 4426.6336 3088.403 M 4427.9836 3088.403 L 4427.9836 3092.693 M 4427.9836 3092.693 L 4430.4436 3092.693 M 4431.7936 3088.403 L 4431.7936 3092.693 M 4431.7936 3088.403 L 4434.4436 3088.403 M 4431.7936 3090.443 L 4433.4236 3090.443 M 4431.7936 3092.693 L 4434.4436 3092.693 M 4435.7936 3088.403 L 4435.7936 3092.693 M 4435.7936 3088.403 L 4437.2336 3088.403 L 4437.8436 3088.603 L 4438.2536 3089.013 L 4438.4536 3089.423 L 4438.6636 3090.043 L 4438.6636 3091.063 L 4438.4536 3091.673 L 4438.2536 3092.083 L 4437.8436 3092.493 L 4437.2336 3092.693 L 4435.7936 3092.693 M 4440.0136 3089.223 L 4440.4236 3089.013 L 4441.0336 3088.403 L 4441.0336 3092.693~~gge12062~~0~#@$SOLIDREGION~12~~M 4437.2804 3095.6869 L 4438.0678 3095.6869 L 4438.0678 3101.1987 L 4437.2804 3101.1987 Z ~solid~gge12068~~~~0#@$SOLIDREGION~12~~M 4435.842 3098.8136 L 4439.779 3098.8136 L 4439.779 3098.2231 L 4435.842 3098.2231 Z ~solid~gge12071~~~~0#@$SOLIDREGION~12~~M 4427.0442 3098.4427 L 4430.9812 3098.4427 L 4430.9812 3097.8522 L 4427.0442 3097.8522 Z ~solid~gge12074~~~~0#@$SOLIDREGION~100~~M 4437.2804 3100.9029 L 4435.9024 3100.9029 L 4435.9024 3095.9817 L 4437.2804 3095.9817 Z ~solid~gge12077~~~~0#@$SOLIDREGION~100~~M 4430.7844 3100.9029 L 4429.4064 3100.9029 L 4429.4064 3095.9817 L 4430.7844 3095.9817 Z ~solid~gge12080~~~~0#@$SOLIDREGION~99~~M 4429.4065 3100.9033 L 4429.4065 3095.982 L 4437.2805 3095.982 L 4437.2805 3100.9033 Z ~solid~gge12083~~~~0#@$TRACK~1~3~~4435.3116 3094.7025 4441.1387 3094.6632~gge12086~0#@$TRACK~1~3~~4435.8631 3102.1435 4441.1387 3102.1435~gge12089~0#@$TRACK~1~3~~4441.1387 3094.6632 4441.1387 3102.1436~gge12092~0#@$TRACK~1~3~~4426.4532 3102.1829 4426.4532 3102.1827 4425.0755 3100.805~gge12095~0#@$TRACK~1~3~~4426.4532 3094.7025 4426.4532 3094.7027 4425.0755 3096.0804~gge12098~0#@$TRACK~1~3~~4431.3746 3094.7025 4426.4532 3094.7025~gge12101~0#@$TRACK~1~3~~4431.3746 3102.1829 4426.4532 3102.1829~gge12104~0#@$TRACK~1~3~~4425.0755 3096.0804 4425.0755 3100.805~gge12107~0#@$TRACK~1~3~~4434.5245 3096.4742 4434.5245 3100.4112~gge12110~0#@$TRACK~1~3~~4434.5245 3098.4626 4432.556 3098.4626~gge12113~0#@$CIRCLE~4429.406~3095.981~0.118~0.2362~101~gge12116~0~~#@$SVGNODE~{\"gId\":\"gge12119\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"7.9527\",\"c_height\":\"4.92125\",\"c_rotation\":\"0,0,0\",\"z\":\"0\",\"c_origin\":\"4433.3435,3098.4427\",\"uuid\":\"23093642268545519703b953fc993978\",\"c_etype\":\"outline3D\",\"title\":\"LED0805-RD\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge12119\"},\"childNodes\":[{\"gId\":\"gge12122\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4429.367 3097.2813 4429.367 3097.9113 4429.4851 3097.9113 4429.6032 3097.9506 4429.682 3098.0294 4429.7607 3098.1081 4429.8395 3098.1868 4429.8788 3098.305 4429.9182 3098.4231 4429.9182 3098.5018 4429.8788 3098.6199 4429.8395 3098.738 4429.7607 3098.8168 4429.682 3098.8955 4429.6032 3098.9742 4429.4851 3099.0136 4429.367 3099.0136 4429.367 3099.6435 4429.4064 3099.6435 4429.4064 3100.9034 4430.8237 3100.9034 4430.9025 3100.9034 4430.9812 3100.9034 4433.1859 3100.9034 4435.7056 3100.9034 4435.7843 3100.9034 4435.8631 3100.9034 4436.3355 3100.9034 4437.1229 3100.9034 4437.2804 3100.9034 4437.2804 3099.6435 4437.3198 3099.6435 4437.3198 3099.0136 4437.2017 3099.0136 4437.0835 3098.9742 4436.9654 3098.8955 4436.8867 3098.8168 4436.808 3098.6987 4436.7686 3098.5805 4436.7686 3098.4624 4436.7686 3098.3443 4436.808 3098.2262 4436.8867 3098.1081 4436.9654 3098.0294 4437.0835 3097.9506 4437.2017 3097.9113 4437.3198 3097.9113 4437.3198 3097.2813 4437.2804 3097.2813 4437.2804 3095.9821 4437.1229 3095.9821 4436.3355 3095.9821 4435.7056 3095.9821 4433.1859 3095.9821 4430.9812 3095.9821 4429.4064 3095.9821 4429.4064 3097.2813 4429.367 3097.2813 4429.367 3097.2813\",\"id\":\"gge12122\"}}]}#@$PAD~RECT~4437.674~3098.442~3.937~4.9213~1~PSULED1_2~2~0~4439.6427 3100.9029 4435.7057 3100.9029 4435.7057 3095.9817 4439.6427 3095.9817~180~gge12125~0~~Y~0~0~0.2~4437.6739,3098.4427#@$PAD~RECT~4429.012~3098.442~3.937~4.9213~1~GND~1~0~4430.9807 3100.9029 4427.0437 3100.9029 4427.0437 3095.9817 4430.9807 3095.9817~180~gge12140~0~~Y~0~0~0.2~4429.0125,3098.4427","LIB~4452.3434~3097.9427~package`R0805`Contributor`lcsc`link`https:\/\/item.szlcsc.com\/142685.html`3DModel`R0805_L2.0-W1.3-H0.6`BOM_Supplier`LCSC`BOM_Manufacturer`UniOhm`BOM_Manufacturer Part`0805W8F6800T5E`nameAlias`Resistance (Ohms)`BOM_Supplier Part`C17798`BOM_JLCPCB Part Class`Basic Part`spicePre`R`spiceSymbolName`0805W8F6800T5E`~~~ggefe51436444506905~1~b60f399a7a7e41848b2be1eb49c79141~1667381294~0~~yes~~#@$TEXT~N~4452.343~3085.943~0.6~0~0~3~~4.5~680~M 4454.7934 3082.0127 L 4454.5934 3081.6027 L 4453.9834 3081.4027 L 4453.5734 3081.4027 L 4452.9534 3081.6027 L 4452.5434 3082.2227 L 4452.3434 3083.2427 L 4452.3434 3084.2627 L 4452.5434 3085.0827 L 4452.9534 3085.4927 L 4453.5734 3085.6927 L 4453.7734 3085.6927 L 4454.3934 3085.4927 L 4454.7934 3085.0827 L 4455.0034 3084.4727 L 4455.0034 3084.2627 L 4454.7934 3083.6527 L 4454.3934 3083.2427 L 4453.7734 3083.0427 L 4453.5734 3083.0427 L 4452.9534 3083.2427 L 4452.5434 3083.6527 L 4452.3434 3084.2627 M 4457.3734 3081.4027 L 4456.7634 3081.6027 L 4456.5534 3082.0127 L 4456.5534 3082.4227 L 4456.7634 3082.8327 L 4457.1734 3083.0427 L 4457.9934 3083.2427 L 4458.6034 3083.4427 L 4459.0134 3083.8527 L 4459.2134 3084.2627 L 4459.2134 3084.8827 L 4459.0134 3085.2927 L 4458.8034 3085.4927 L 4458.1934 3085.6927 L 4457.3734 3085.6927 L 4456.7634 3085.4927 L 4456.5534 3085.2927 L 4456.3534 3084.8827 L 4456.3534 3084.2627 L 4456.5534 3083.8527 L 4456.9634 3083.4427 L 4457.5834 3083.2427 L 4458.3934 3083.0427 L 4458.8034 3082.8327 L 4459.0134 3082.4227 L 4459.0134 3082.0127 L 4458.8034 3081.6027 L 4458.1934 3081.4027 L 4457.3734 3081.4027 M 4461.7934 3081.4027 L 4461.1834 3081.6027 L 4460.7734 3082.2227 L 4460.5634 3083.2427 L 4460.5634 3083.8527 L 4460.7734 3084.8827 L 4461.1834 3085.4927 L 4461.7934 3085.6927 L 4462.2034 3085.6927 L 4462.8134 3085.4927 L 4463.2234 3084.8827 L 4463.4334 3083.8527 L 4463.4334 3083.2427 L 4463.2234 3082.2227 L 4462.8134 3081.6027 L 4462.2034 3081.4027 L 4461.7934 3081.4027~none~gge12161~~0~#@$TEXT~P~4445.3434~3092.9427~0.6~0~0~3~~4.5~PSUR1~M 4445.3438 3088.4024 L 4445.3438 3092.6924 M 4445.3438 3088.4024 L 4447.1838 3088.4024 L 4447.7938 3088.6024 L 4448.0038 3088.8124 L 4448.2038 3089.2224 L 4448.2038 3089.8324 L 4448.0038 3090.2424 L 4447.7938 3090.4424 L 4447.1838 3090.6524 L 4445.3438 3090.6524 M 4452.4238 3089.0124 L 4452.0138 3088.6024 L 4451.3938 3088.4024 L 4450.5838 3088.4024 L 4449.9638 3088.6024 L 4449.5538 3089.0124 L 4449.5538 3089.4224 L 4449.7638 3089.8324 L 4449.9638 3090.0424 L 4450.3738 3090.2424 L 4451.6038 3090.6524 L 4452.0138 3090.8524 L 4452.2138 3091.0624 L 4452.4238 3091.4724 L 4452.4238 3092.0824 L 4452.0138 3092.4924 L 4451.3938 3092.6924 L 4450.5838 3092.6924 L 4449.9638 3092.4924 L 4449.5538 3092.0824 M 4453.7738 3088.4024 L 4453.7738 3091.4724 L 4453.9738 3092.0824 L 4454.3838 3092.4924 L 4454.9938 3092.6924 L 4455.4038 3092.6924 L 4456.0238 3092.4924 L 4456.4338 3092.0824 L 4456.6338 3091.4724 L 4456.6338 3088.4024 M 4457.9838 3088.4024 L 4457.9838 3092.6924 M 4457.9838 3088.4024 L 4459.8238 3088.4024 L 4460.4438 3088.6024 L 4460.6438 3088.8124 L 4460.8438 3089.2224 L 4460.8438 3089.6324 L 4460.6438 3090.0424 L 4460.4438 3090.2424 L 4459.8238 3090.4424 L 4457.9838 3090.4424 M 4459.4138 3090.4424 L 4460.8438 3092.6924 M 4462.1938 3089.2224 L 4462.6038 3089.0124 L 4463.2238 3088.4024 L 4463.2238 3092.6924~~gge12167~~0~#@$SOLIDREGION~100~~M 4448.4064 3100.4525 L 4448.4064 3095.4329 L 4449.9812 3095.4329 L 4449.9812 3100.4525 Z ~solid~gge12173~~~~0#@$SOLIDREGION~100~~M 4456.2804 3100.4525 L 4456.2804 3095.4329 L 4454.7056 3095.4329 L 4454.7056 3100.4525 Z ~solid~gge12176~~~~0#@$SOLIDREGION~99~~M 4448.4064 3100.4525 L 4448.4064 3095.4329 L 4456.2804 3095.4329 L 4456.2804 3100.4525 Z ~solid~gge12179~~~~0#@$SOLIDREGION~5~~M 4445.6504 3100.4624 L 4445.6504 3095.4231 L 4445.8473 3095.2262 L 4450.3749 3095.2262 L 4450.5717 3095.4231 L 4450.5915 3097.0374 L 4448.8198 3097.0374 L 4448.8198 3098.809 L 4450.5521 3098.809 L 4450.5717 3100.4624 L 4450.3749 3100.6593 L 4445.8473 3100.6593 Z ~solid~gge12182~~~~0#@$SOLIDREGION~5~~M 4454.115 3100.4624 L 4454.1151 3098.809 L 4455.867 3098.809 L 4455.867 3097.0374 L 4454.1348 3097.0374 L 4454.115 3095.4231 L 4454.3119 3095.2262 L 4458.8394 3095.2262 L 4459.0363 3095.4231 L 4459.0363 3100.4624 L 4458.8394 3100.6593 L 4454.3119 3100.6593 Z ~solid~gge12185~~~~0#@$TRACK~0.6~3~~4454.2182 3101.5533 4459.277 3101.5533 4459.277 3094.3321 4454.2182 3094.3321~gge12188~0#@$TRACK~0.6~3~~4450.4686 3101.5533 4445.4098 3101.5533 4445.4098 3094.3321 4450.4686 3094.3321~gge12191~0#@$CIRCLE~4448.406~3100.453~0.118~0.2362~101~gge12194~0~~#@$SVGNODE~{\"gId\":\"gge12197\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"7.874\",\"c_height\":\"5.1181\",\"c_rotation\":\"0,0,0\",\"z\":\"0\",\"c_origin\":\"4452.3433,3097.9427\",\"uuid\":\"c7acac53bcbc44d68fbab8f60a747688\",\"c_etype\":\"outline3D\",\"title\":\"R0805_L2.0-W1.3-H0.6\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge12197\"},\"childNodes\":[{\"gId\":\"gge12200\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4448.4064 3095.3837 4448.4064 3100.5018 4448.6032 3100.5018 4449.1938 3100.5018 4449.5875 3100.5018 4449.9812 3100.5018 4452.5402 3100.5018 4454.7056 3100.5018 4455.0993 3100.5018 4455.493 3100.5018 4456.0835 3100.5018 4456.2804 3100.5018 4456.2804 3095.3837 4456.0835 3095.3837 4455.493 3095.3837 4455.0993 3095.3837 4454.7056 3095.3837 4452.5402 3095.3837 4449.9812 3095.3837 4449.5875 3095.3837 4449.1938 3095.3837 4448.6032 3095.3837 4448.4064 3095.3837 4448.4064 3095.3837\",\"id\":\"gge12200\"}}]}#@$PAD~RECT~4456.281~3097.943~4.4588~5.4213~1~+3.3V~2~0~4454.0512 3100.6533 4454.0512 3095.2321 4458.51 3095.2321 4458.51 3100.6533~0~gge12203~0~~Y~0~-393.7008~0.2000~4456.2806,3097.9427#@$PAD~RECT~4448.406~3097.943~4.4588~5.4213~1~PSULED1_2~1~0~4450.6356 3100.6533 4450.6356 3095.2321 4446.1768 3095.2321 4446.1768 3100.6533~0~gge12215~0~~Y~0~-393.7008~0.2000~4448.4062,3097.9427","LIB~4506.3434~3080.4427~package`SOT-223-3_L6.5-W3.4-P2.30-LS7.0-BR`Contributor`lcsc`link`https:\/\/item.szlcsc.com\/410724.html`3DModel`SOT-223-4P_L6.5-W3.5-H1.6-LS7.0-P2.30`sourceId`dwIGgezVh`timeStamp`1476261164`BOM_Supplier`LCSC`BOM_Manufacturer`AMS`BOM_Manufacturer Part`AMS1117-3.3`BOM_Supplier Part`C6186`BOM_JLCPCB Part Class`Basic Part`spicePre`U`spiceSymbolName`AMS1117-3.3`~180~~gge3a85941af4144c46~1~02ae667aca734971be8a5f58143dd564~1625731788~0~~yes~~#@$TEXT~N~4467.077~3107.233~0.6~0~0~3~~4.5~AMS1117-3.3~M 4468.7173 3102.6926 L 4467.0773 3106.9826 M 4468.7173 3102.6926 L 4470.3473 3106.9826 M 4467.6873 3105.5526 L 4469.7373 3105.5526 M 4471.6973 3102.6926 L 4471.6973 3106.9826 M 4471.6973 3102.6926 L 4473.3373 3106.9826 M 4474.9773 3102.6926 L 4473.3373 3106.9826 M 4474.9773 3102.6926 L 4474.9773 3106.9826 M 4479.1873 3103.3026 L 4478.7773 3102.8926 L 4478.1673 3102.6926 L 4477.3473 3102.6926 L 4476.7273 3102.8926 L 4476.3273 3103.3026 L 4476.3273 3103.7126 L 4476.5273 3104.1226 L 4476.7273 3104.3326 L 4477.1373 3104.5326 L 4478.3673 3104.9426 L 4478.7773 3105.1426 L 4478.9773 3105.3526 L 4479.1873 3105.7626 L 4479.1873 3106.3726 L 4478.7773 3106.7826 L 4478.1673 3106.9826 L 4477.3473 3106.9826 L 4476.7273 3106.7826 L 4476.3273 3106.3726 M 4480.5373 3103.5126 L 4480.9473 3103.3026 L 4481.5573 3102.6926 L 4481.5573 3106.9826 M 4482.9073 3103.5126 L 4483.3173 3103.3026 L 4483.9273 3102.6926 L 4483.9273 3106.9826 M 4485.2773 3103.5126 L 4485.6873 3103.3026 L 4486.3073 3102.6926 L 4486.3073 3106.9826 M 4490.5173 3102.6926 L 4488.4773 3106.9826 M 4487.6573 3102.6926 L 4490.5173 3102.6926 M 4491.8673 3105.1426 L 4495.5473 3105.1426 M 4497.3073 3102.6926 L 4499.5573 3102.6926 L 4498.3273 3104.3326 L 4498.9473 3104.3326 L 4499.3573 3104.5326 L 4499.5573 3104.7326 L 4499.7673 3105.3526 L 4499.7673 3105.7626 L 4499.5573 3106.3726 L 4499.1473 3106.7826 L 4498.5373 3106.9826 L 4497.9273 3106.9826 L 4497.3073 3106.7826 L 4497.1073 3106.5826 L 4496.8973 3106.1726 M 4501.3173 3105.9626 L 4501.1173 3106.1726 L 4501.3173 3106.3726 L 4501.5273 3106.1726 L 4501.3173 3105.9626 M 4503.2773 3102.6926 L 4505.5273 3102.6926 L 4504.3073 3104.3326 L 4504.9173 3104.3326 L 4505.3273 3104.5326 L 4505.5273 3104.7326 L 4505.7373 3105.3526 L 4505.7373 3105.7626 L 4505.5273 3106.3726 L 4505.1273 3106.7826 L 4504.5073 3106.9826 L 4503.8973 3106.9826 L 4503.2773 3106.7826 L 4503.0773 3106.5826 L 4502.8773 3106.1726~none~gge12233~~0~#@$TEXT~P~4504.3434~3070.4427~0.6~270~0~3~~4.5~PSUU2~M 4508.8831 3070.4425 L 4504.5931 3070.4425 M 4508.8831 3070.4425 L 4508.8831 3072.2825 L 4508.6831 3072.8925 L 4508.4731 3073.1025 L 4508.0631 3073.3025 L 4507.4531 3073.3025 L 4507.0431 3073.1025 L 4506.8431 3072.8925 L 4506.6331 3072.2825 L 4506.6331 3070.4425 M 4508.2731 3077.5225 L 4508.6831 3077.1125 L 4508.8831 3076.4925 L 4508.8831 3075.6825 L 4508.6831 3075.0625 L 4508.2731 3074.6525 L 4507.8631 3074.6525 L 4507.4531 3074.8625 L 4507.2431 3075.0625 L 4507.0431 3075.4725 L 4506.6331 3076.7025 L 4506.4331 3077.1125 L 4506.2231 3077.3125 L 4505.8131 3077.5225 L 4505.2031 3077.5225 L 4504.7931 3077.1125 L 4504.5931 3076.4925 L 4504.5931 3075.6825 L 4504.7931 3075.0625 L 4505.2031 3074.6525 M 4508.8831 3078.8725 L 4505.8131 3078.8725 L 4505.2031 3079.0725 L 4504.7931 3079.4825 L 4504.5931 3080.0925 L 4504.5931 3080.5025 L 4504.7931 3081.1225 L 4505.2031 3081.5325 L 4505.8131 3081.7325 L 4508.8831 3081.7325 M 4508.8831 3083.0825 L 4505.8131 3083.0825 L 4505.2031 3083.2925 L 4504.7931 3083.6925 L 4504.5931 3084.3125 L 4504.5931 3084.7225 L 4504.7931 3085.3325 L 4505.2031 3085.7425 L 4505.8131 3085.9425 L 4508.8831 3085.9425 M 4507.8631 3087.5025 L 4508.0631 3087.5025 L 4508.4731 3087.7025 L 4508.6831 3087.9125 L 4508.8831 3088.3225 L 4508.8831 3089.1425 L 4508.6831 3089.5425 L 4508.4731 3089.7525 L 4508.0631 3089.9525 L 4507.6531 3089.9525 L 4507.2431 3089.7525 L 4506.6331 3089.3425 L 4504.5931 3087.2925 L 4504.5931 3090.1625~~gge12239~~0~#@$CIRCLE~4492.957~3067.648~0.118~0.2362~101~gge12245~0~~#@$CIRCLE~4488.423~3071.83~0.984~1.9685~12~gge12248~0~~#@$SOLIDREGION~99~~M 4513.627 3067.6474 L 4513.627 3093.238 L 4499.8474 3093.238 L 4499.8474 3067.6474 Z ~solid~gge12251~~~~0#@$TRACK~0.6~3~~4512.5301 3067.3474 4512.5301 3093.538 4500.9443 3093.538 4500.9443 3067.3474 4512.5301 3067.3474~gge12254~0#@$SOLIDREGION~100~~M 4499.8868 3088.0213 L 4499.8868 3090.9741 L 4495.8711 3090.9741 L 4495.8711 3088.0213 Z ~cutout~gge12257~~~~0#@$SOLIDREGION~100~~M 4495.9104 3088.0213 L 4495.9104 3090.9741 L 4492.9577 3090.9741 L 4492.9577 3088.0213 Z ~solid~gge12260~~~~0#@$SOLIDREGION~100~~M 4499.8868 3078.9663 L 4499.8868 3081.9191 L 4495.8711 3081.9191 L 4495.8711 3078.9663 Z ~cutout~gge12263~~~~0#@$SOLIDREGION~100~~M 4495.9104 3078.9663 L 4495.9104 3081.9191 L 4492.9577 3081.9191 L 4492.9577 3078.9663 Z ~solid~gge12266~~~~0#@$SOLIDREGION~100~~M 4499.8868 3069.9113 L 4499.8868 3072.8641 L 4495.8711 3072.8641 L 4495.8711 3069.9113 Z ~cutout~gge12269~~~~0#@$SOLIDREGION~100~~M 4495.9104 3069.9113 L 4495.9104 3072.8641 L 4492.9577 3072.8641 L 4492.9577 3069.9113 Z ~solid~gge12272~~~~0#@$SOLIDREGION~100~~M 4517.6033 3074.5372 L 4517.6033 3086.3482 L 4513.5876 3086.3482 L 4513.5876 3074.5372 Z ~cutout~gge12275~~~~0#@$SOLIDREGION~100~~M 4520.5167 3074.5372 L 4520.5167 3086.3482 L 4517.564 3086.3482 L 4517.564 3074.5372 Z ~solid~gge12278~~~~0#@$SVGNODE~{\"gId\":\"gge12281\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"27.989794414\",\"c_height\":\"25.5905\",\"c_rotation\":\"0,0,0\",\"z\":\"0\",\"c_origin\":\"4506.7371,3080.4426\",\"uuid\":\"e80246a9471445bfb635be848806a22e\",\"c_etype\":\"outline3D\",\"title\":\"SOT-223-4P_L6.5-W3.5-H1.6-LS7.0-P2.30\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge12281\"},\"childNodes\":[{\"gId\":\"gge12284\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4492.7609 3069.9309 4492.7609 3069.9703 4492.7609 3072.8049 4492.7609 3072.8443 4492.8397 3072.8443 4493.8239 3072.8443 4493.9027 3072.8443 4494.0208 3072.8443 4494.1389 3072.8443 4494.2176 3072.8443 4494.3751 3072.8443 4494.572 3072.8443 4494.7294 3072.8443 4494.8869 3072.8443 4497.7609 3072.8443 4497.9184 3072.8443 4497.9578 3072.8443 4498.1153 3072.8443 4498.3121 3072.8443 4498.4696 3072.8443 4498.5483 3072.8443 4498.7058 3072.8443 4498.7846 3072.8443 4498.9027 3072.8443 4499.8475 3072.8443 4499.8475 3078.9466 4498.9027 3078.9466 4498.7846 3078.9466 4498.6664 3078.9466 4498.6271 3078.9466 4498.509 3078.9466 4498.4302 3078.9466 4498.3121 3078.9466 4498.1546 3078.9466 4497.9578 3078.9466 4497.8003 3078.9466 4494.8869 3078.9466 4494.7294 3078.9466 4494.5326 3078.9466 4494.3751 3078.9466 4494.257 3078.9466 4494.1783 3078.9466 4494.1389 3078.9466 4494.0208 3078.9466 4493.9027 3078.9466 4493.7846 3078.9466 4492.8003 3078.9466 4492.8003 3078.986 4492.7609 3078.986 4492.7609 3079.0254 4492.7609 3081.86 4492.7609 3081.8994 4492.8397 3081.8994 4493.8239 3081.8994 4493.9027 3081.8994 4494.0208 3081.8994 4494.1389 3081.8994 4494.2176 3081.8994 4494.3751 3081.8994 4494.5326 3081.8994 4494.572 3081.8994 4494.7294 3081.8994 4494.8869 3081.8994 4497.7609 3081.8994 4497.8003 3081.8994 4497.9184 3081.8994 4498.0759 3081.8994 4498.1546 3081.8994 4498.3121 3081.8994 4498.4696 3081.8994 4498.5483 3081.8994 4498.7058 3081.8994 4498.7846 3081.8994 4498.9027 3081.8994 4499.8475 3081.8994 4499.8475 3088.0017 4498.9027 3088.0017 4498.7846 3088.0017 4498.6664 3088.0017 4498.6271 3088.0017 4498.509 3088.0017 4498.4302 3088.0017 4498.3121 3088.0017 4498.1546 3088.0017 4497.9578 3088.0017 4497.8003 3088.0017 4494.8869 3088.0017 4494.7294 3088.0017 4494.5326 3088.0017 4494.3751 3088.0017 4494.257 3088.0017 4494.1783 3088.0017 4494.1389 3088.0017 4494.0208 3088.0017 4493.9027 3088.0017 4493.7846 3088.0017 4492.8003 3088.0017 4492.8003 3088.0411 4492.7609 3088.0411 4492.7609 3088.0805 4492.7609 3090.9545 4492.8397 3090.9545 4493.8239 3090.9545 4493.9027 3090.9545 4494.0602 3090.9545 4494.1389 3090.9545 4494.2176 3090.9545 4494.257 3090.9545 4494.3751 3090.9545 4494.572 3090.9545 4494.7294 3090.9545 4494.7688 3090.9545 4494.8869 3090.9545 4497.7609 3090.9545 4497.8003 3090.9545 4497.9184 3090.9545 4498.0759 3090.9545 4498.1546 3090.9545 4498.3121 3090.9545 4498.4696 3090.9545 4498.5483 3090.9545 4498.7058 3090.9545 4498.8239 3090.9545 4498.9027 3090.9545 4499.8475 3090.9545 4499.8475 3092.8442 4499.8475 3092.9624 4499.8869 3093.0411 4499.9657 3093.1198 4500.0444 3093.1986 4500.1231 3093.2379 4500.2412 3093.2379 4513.2333 3093.2379 4513.3515 3093.2379 4513.4302 3093.1986 4513.5089 3093.1198 4513.5877 3093.0411 4513.627 3092.9624 4513.627 3092.8442 4513.627 3086.3482 4514.5719 3086.3482 4514.69 3086.3482 4514.7294 3086.3482 4514.8081 3086.3482 4514.9656 3086.3482 4515.0444 3086.3482 4515.2806 3086.3482 4515.5168 3086.3482 4515.6743 3086.3482 4515.7137 3086.3482 4517.131 3086.3482 4518.5877 3086.3482 4518.7845 3086.3482 4518.9814 3086.3482 4519.2176 3086.3482 4519.257 3086.3482 4519.3751 3086.3482 4519.4144 3086.3482 4519.5325 3086.3482 4519.69 3086.3482 4520.6743 3086.3482 4520.7136 3086.3482 4520.7136 3086.3088 4520.7136 3086.2695 4520.7136 3080.4033 4520.7136 3074.5766 4520.7136 3074.5372 4520.6349 3074.5372 4519.6507 3074.5372 4519.5325 3074.5372 4519.4144 3074.5372 4519.3751 3074.5372 4519.257 3074.5372 4519.2176 3074.5372 4518.9814 3074.5372 4518.7845 3074.5372 4518.5877 3074.5372 4515.7137 3074.5372 4515.5562 3074.5372 4515.4774 3074.5372 4515.2412 3074.5372 4515.0444 3074.5372 4514.9263 3074.5372 4514.8869 3074.5372 4514.8081 3074.5372 4514.6507 3074.5372 4514.5719 3074.5372 4513.627 3074.5372 4513.627 3068.0411 4513.627 3067.923 4513.5877 3067.8443 4513.5089 3067.7656 4513.4302 3067.6868 4513.3515 3067.6474 4513.2333 3067.6474 4500.2412 3067.6474 4500.1231 3067.6474 4500.0444 3067.6868 4499.9657 3067.7656 4499.8869 3067.8443 4499.8475 3067.923 4499.8475 3068.0411 4499.8475 3069.8915 4499.3751 3069.8915 4498.9027 3069.8915 4498.7846 3069.8915 4498.7058 3069.8915 4498.6664 3069.8915 4498.509 3069.8915 4498.4302 3069.8915 4498.3121 3069.8915 4498.1546 3069.8915 4497.9578 3069.8915 4497.8003 3069.8915 4496.3436 3069.8915 4494.8869 3069.8915 4494.7294 3069.8915 4494.5326 3069.8915 4494.3751 3069.8915 4494.257 3069.8915 4494.1783 3069.8915 4494.1389 3069.8915 4494.0208 3069.8915 4493.942 3069.8915 4493.9027 3069.8915 4493.7846 3069.8915 4492.8003 3069.8915 4492.8003 3069.9309 4492.7609 3069.9309 4492.7609 3069.9309\",\"id\":\"gge12284\"}}]}#@$PAD~RECT~4494.651~3071.388~9.8425~4.3307~1~GND~1~0~4499.572 3073.5531 4489.7295 3073.5531 4489.7295 3069.2223 4499.572 3069.2223~180~gge12287~0~~Y~0~0.0000~0.2000~4494.6506,3071.3876#@$PAD~RECT~4494.651~3080.443~9.8425~4.3307~1~+3.3V~2~0~4499.572 3082.6081 4489.7295 3082.6081 4489.7295 3078.2773 4499.572 3078.2773~180~gge12302~0~~Y~0~0.0000~0.2000~4494.6506,3080.4427#@$PAD~RECT~4494.651~3089.498~9.8425~4.3307~1~+5V~3~0~4499.572 3091.6631 4489.7295 3091.6631 4489.7295 3087.3323 4499.572 3087.3323~180~gge12317~0~~Y~0~0.0000~0.2000~4494.6506,3089.4978#@$PAD~RECT~4518.036~3080.443~9.2126~14.1732~1~+3.3V~4~0~4513.4301 3087.5293 4513.4301 3073.3561 4522.6427 3073.3561 4522.6427 3087.5293~180~gge12332~0~~Y~0~0.0000~0.2000~4518.0364,3080.4427","LIB~4467.8434~3070.9427~package`CAP-SMD_BD6.3-L6.6-W6.6-LS7.2-R-RD`Contributor`LCSC`link`https:\/\/item.szlcsc.com\/265679.html`3DModel`CAP-SMD_L6.6-W6.6-H7.0-LS7.2`BOM_Supplier`LCSC`BOM_Manufacturer`LELON`BOM_Manufacturer Part`VE-471M0JTR-0607`nameAlias`Capacitance`BOM_Supplier Part`C134738`BOM_JLCPCB Part Class`Extended Part`spicePre`C`spiceSymbolName`VE-471M0JTR-0607`~270~~gge471133621751a68f~1~e1fd29b57d5e4b95a31cad5a0b7220fb~1654688998~0~~yes~~#@$TEXT~N~4494.633~3089.984~0.6~90~0~3~~4.5~470uF~M 4490.0933 3087.9339 L 4492.9533 3089.9839 L 4492.9533 3086.9139 M 4490.0933 3087.9339 L 4494.3833 3087.9339 M 4490.0933 3082.7039 L 4494.3833 3084.7439 M 4490.0933 3085.5639 L 4490.0933 3082.7039 M 4490.0933 3080.1239 L 4490.2933 3080.7339 L 4490.9133 3081.1439 L 4491.9333 3081.3539 L 4492.5433 3081.3539 L 4493.5733 3081.1439 L 4494.1833 3080.7339 L 4494.3833 3080.1239 L 4494.3833 3079.7139 L 4494.1833 3079.1039 L 4493.5733 3078.6939 L 4492.5433 3078.4839 L 4491.9333 3078.4839 L 4490.9133 3078.6939 L 4490.2933 3079.1039 L 4490.0933 3079.7139 L 4490.0933 3080.1239 M 4491.5233 3077.1339 L 4493.5733 3077.1339 L 4494.1833 3076.9339 L 4494.3833 3076.5239 L 4494.3833 3075.9139 L 4494.1833 3075.5039 L 4493.5733 3074.8839 M 4491.5233 3074.8839 L 4494.3833 3074.8839 M 4490.0933 3073.5339 L 4494.3833 3073.5339 M 4490.0933 3073.5339 L 4490.0933 3070.8839 M 4492.1333 3073.5339 L 4492.1333 3071.9039~none~gge12353~~0~#@$TEXT~P~4483.8434~3058.9427~0.6~270~0~3~~4.5~PSU_C3~M 4488.3838 3058.9424 L 4484.0938 3058.9424 M 4488.3838 3058.9424 L 4488.3838 3060.7824 L 4488.1838 3061.3924 L 4487.9738 3061.6024 L 4487.5638 3061.8024 L 4486.9538 3061.8024 L 4486.5438 3061.6024 L 4486.3438 3061.3924 L 4486.1338 3060.7824 L 4486.1338 3058.9424 M 4487.7738 3066.0224 L 4488.1838 3065.6124 L 4488.3838 3064.9924 L 4488.3838 3064.1824 L 4488.1838 3063.5624 L 4487.7738 3063.1524 L 4487.3638 3063.1524 L 4486.9538 3063.3624 L 4486.7438 3063.5624 L 4486.5438 3063.9724 L 4486.1338 3065.2024 L 4485.9338 3065.6124 L 4485.7238 3065.8124 L 4485.3138 3066.0224 L 4484.7038 3066.0224 L 4484.2938 3065.6124 L 4484.0938 3064.9924 L 4484.0938 3064.1824 L 4484.2938 3063.5624 L 4484.7038 3063.1524 M 4488.3838 3067.3724 L 4485.3138 3067.3724 L 4484.7038 3067.5724 L 4484.2938 3067.9824 L 4484.0938 3068.5924 L 4484.0938 3069.0024 L 4484.2938 3069.6224 L 4484.7038 3070.0324 L 4485.3138 3070.2324 L 4488.3838 3070.2324 M 4482.6538 3071.5824 L 4482.6538 3075.2624 M 4487.3638 3079.6824 L 4487.7738 3079.4824 L 4488.1838 3079.0724 L 4488.3838 3078.6624 L 4488.3838 3077.8424 L 4488.1838 3077.4324 L 4487.7738 3077.0224 L 4487.3638 3076.8224 L 4486.7438 3076.6124 L 4485.7238 3076.6124 L 4485.1138 3076.8224 L 4484.7038 3077.0224 L 4484.2938 3077.4324 L 4484.0938 3077.8424 L 4484.0938 3078.6624 L 4484.2938 3079.0724 L 4484.7038 3079.4824 L 4485.1138 3079.6824 M 4488.3838 3081.4424 L 4488.3838 3083.6924 L 4486.7438 3082.4624 L 4486.7438 3083.0824 L 4486.5438 3083.4924 L 4486.3438 3083.6924 L 4485.7238 3083.8924 L 4485.3138 3083.8924 L 4484.7038 3083.6924 L 4484.2938 3083.2824 L 4484.0938 3082.6724 L 4484.0938 3082.0524 L 4484.2938 3081.4424 L 4484.4938 3081.2424 L 4484.9038 3081.0324~~gge12359~~0~#@$SOLIDREGION~12~~M 4467.4536 3058.6711 L 4468.2332 3058.6711 L 4468.2332 3061.7892 L 4467.4536 3061.7892 Z ~solid~gge12365~~~~0#@$SOLIDREGION~12~~M 4467.4536 3083.0963 L 4468.2332 3083.0963 L 4468.2332 3079.9782 L 4467.4536 3079.9782 Z ~solid~gge12368~~~~0#@$SOLIDREGION~12~~M 4465.245 3081.927 L 4470.4418 3081.927 L 4470.4418 3081.1475 L 4465.245 3081.1475 Z ~solid~gge12371~~~~0#@$SOLIDREGION~100~~M 4466.5639 3056.7105 L 4469.1229 3056.7105 L 4469.1229 3066.9467 L 4466.5639 3066.9467 Z ~solid~gge12374~~~~0#@$SOLIDREGION~100~~M 4466.5639 3085.0569 L 4469.1229 3085.0569 L 4469.1229 3074.8207 L 4466.5639 3074.8207 Z ~solid~gge12377~~~~0#@$SOLIDREGION~99~~M 4454.8513 3057.8916 L 4480.8355 3057.8916 L 4480.8355 3078.679 L 4475.6387 3083.8758 L 4460.0481 3083.8758 L 4454.8513 3078.679 Z ~solid~gge12380~~~~0#@$TRACK~0.6~3~~4470.2348 3057.5917 4481.1354 3057.5917 4481.1354 3078.6791 4475.6388 3084.1757 4470.2348 3084.1757~gge12383~0#@$TRACK~0.6~3~~4465.452 3057.5917 4454.5514 3057.5917 4454.5514 3078.6791 4460.048 3084.1757 4465.452 3084.1757~gge12386~0#@$SOLIDREGION~3~~M 4473.43 3058.6711 L 4474.2095 3058.6711 L 4474.2095 3061.7892 L 4473.43 3061.7892 Z ~solid~gge12389~~~~0#@$SOLIDREGION~3~~M 4473.43 3083.0963 L 4474.2095 3083.0963 L 4474.2095 3079.9782 L 4473.43 3079.9782 Z ~solid~gge12392~~~~0#@$SOLIDREGION~3~~M 4471.2214 3081.927 L 4476.4182 3081.927 L 4476.4182 3081.1475 L 4471.2214 3081.1475 Z ~solid~gge12395~~~~0#@$CIRCLE~4480.835~3085.057~0.118~0.2362~101~gge12398~0~~#@$SVGNODE~{\"gId\":\"gge12401\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"25.9842\",\"c_height\":\"27.559\",\"c_rotation\":\"0,0,180\",\"z\":\"0\",\"c_origin\":\"4467.8433,3070.8837\",\"uuid\":\"a1e9bad501314ce084e59ae2bd910783\",\"c_etype\":\"outline3D\",\"title\":\"CAP-SMD_L6.6-W6.6-H7.0-LS7.2\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge12401\"},\"childNodes\":[{\"gId\":\"gge12404\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4480.8355 3077.9703 4480.8355 3074.427 4480.8355 3070.3719 4480.8355 3067.3404 4480.8355 3057.8916 4471.1899 3057.8916 4469.1032 3057.8916 4469.1032 3057.1042 4466.5442 3057.1042 4466.5442 3057.8916 4464.497 3057.8916 4454.8513 3057.8916 4454.8513 3067.3404 4454.8513 3070.3719 4454.8513 3074.427 4454.8513 3077.9703 4460.7568 3083.8758 4464.497 3083.8758 4466.5442 3083.8758 4466.5442 3084.6632 4469.1032 3084.6632 4469.1032 3083.8758 4471.1899 3083.8758 4474.93 3083.8758 4480.8355 3077.9703 4480.8355 3077.9703\",\"id\":\"gge12404\"}}]}#@$PAD~RECT~4467.843~3081.002~12.8346~4.5276~1~+3.3V~1~0~4465.5796 3087.419 4465.5796 3074.5844 4470.1072 3074.5844 4470.1072 3087.419~90~gge12407~0~~Y~0~0.0000~0.2000~4467.8434,3081.0018#@$PAD~RECT~4467.843~3060.884~12.8346~4.5276~1~GND~2~0~4465.5796 3067.301 4465.5796 3054.4664 4470.1072 3054.4664 4470.1072 3067.301~90~gge12422~0~~Y~0~0.0000~0.2000~4467.8434,3060.8836","LIB~4605.8434~3289.9427~package`CAP-SMD_BD6.3-L6.6-W6.6-LS7.2-R-RD`Contributor`LCSC`link`https:\/\/item.szlcsc.com\/265679.html`3DModel`CAP-SMD_L6.6-W6.6-H7.0-LS7.2`BOM_Supplier`LCSC`BOM_Manufacturer`LELON`BOM_Manufacturer Part`VE-471M0JTR-0607`nameAlias`Capacitance`BOM_Supplier Part`C134738`BOM_JLCPCB Part Class`Extended Part`spicePre`C`spiceSymbolName`VE-471M0JTR-0607`~180~~ggeab474d572f1040cf~1~e1fd29b57d5e4b95a31cad5a0b7220fb~1654688998~0~~yes~~#@$TEXT~N~4586.802~3316.733~0.6~0~0~3~~4.5~470uF~M 4588.8522 3312.1926 L 4586.8022 3315.0526 L 4589.8722 3315.0526 M 4588.8522 3312.1926 L 4588.8522 3316.4826 M 4594.0822 3312.1926 L 4592.0422 3316.4826 M 4591.2222 3312.1926 L 4594.0822 3312.1926 M 4596.6622 3312.1926 L 4596.0522 3312.3926 L 4595.6422 3313.0126 L 4595.4322 3314.0326 L 4595.4322 3314.6426 L 4595.6422 3315.6726 L 4596.0522 3316.2826 L 4596.6622 3316.4826 L 4597.0722 3316.4826 L 4597.6822 3316.2826 L 4598.0922 3315.6726 L 4598.3022 3314.6426 L 4598.3022 3314.0326 L 4598.0922 3313.0126 L 4597.6822 3312.3926 L 4597.0722 3312.1926 L 4596.6622 3312.1926 M 4599.6522 3313.6226 L 4599.6522 3315.6726 L 4599.8522 3316.2826 L 4600.2622 3316.4826 L 4600.8722 3316.4826 L 4601.2822 3316.2826 L 4601.9022 3315.6726 M 4601.9022 3313.6226 L 4601.9022 3316.4826 M 4603.2522 3312.1926 L 4603.2522 3316.4826 M 4603.2522 3312.1926 L 4605.9022 3312.1926 M 4603.2522 3314.2326 L 4604.8822 3314.2326~none~gge12596~~0~#@$TEXT~P~4594.8434~3285.9427~0.6~0~0~3~~3.937~PSU_C4~M 4594.84 3281.97 L 4594.84 3285.73 M 4594.84 3281.97 L 4596.45 3281.97 L 4596.99 3282.15 L 4597.17 3282.33 L 4597.35 3282.69 L 4597.35 3283.22 L 4597.17 3283.58 L 4596.99 3283.76 L 4596.45 3283.94 L 4594.84 3283.94 M 4601.04 3282.51 L 4600.68 3282.15 L 4600.14 3281.97 L 4599.42 3281.97 L 4598.89 3282.15 L 4598.53 3282.51 L 4598.53 3282.86 L 4598.71 3283.22 L 4598.89 3283.4 L 4599.25 3283.58 L 4600.32 3283.94 L 4600.68 3284.12 L 4600.86 3284.3 L 4601.04 3284.65 L 4601.04 3285.19 L 4600.68 3285.55 L 4600.14 3285.73 L 4599.42 3285.73 L 4598.89 3285.55 L 4598.53 3285.19 M 4602.22 3281.97 L 4602.22 3284.65 L 4602.4 3285.19 L 4602.75 3285.55 L 4603.29 3285.73 L 4603.65 3285.73 L 4604.18 3285.55 L 4604.54 3285.19 L 4604.72 3284.65 L 4604.72 3281.97 M 4605.9 3286.98 L 4609.12 3286.98 M 4612.99 3282.86 L 4612.81 3282.51 L 4612.45 3282.15 L 4612.09 3281.97 L 4611.38 3281.97 L 4611.02 3282.15 L 4610.66 3282.51 L 4610.48 3282.86 L 4610.31 3283.4 L 4610.31 3284.3 L 4610.48 3284.83 L 4610.66 3285.19 L 4611.02 3285.55 L 4611.38 3285.73 L 4612.09 3285.73 L 4612.45 3285.55 L 4612.81 3285.19 L 4612.99 3284.83 M 4615.96 3281.97 L 4614.17 3284.48 L 4616.85 3284.48 M 4615.96 3281.97 L 4615.96 3285.73~~gge12602~~0~#@$SOLIDREGION~12~~M 4618.115 3289.5529 L 4618.115 3290.3325 L 4614.9969 3290.3325 L 4614.9969 3289.5529 Z ~solid~gge12608~~~~0#@$SOLIDREGION~12~~M 4593.6898 3289.5529 L 4593.6898 3290.3325 L 4596.8079 3290.3325 L 4596.8079 3289.5529 Z ~solid~gge12611~~~~0#@$SOLIDREGION~12~~M 4594.8591 3287.3443 L 4594.8591 3292.5411 L 4595.6386 3292.5411 L 4595.6386 3287.3443 Z ~solid~gge12614~~~~0#@$SOLIDREGION~100~~M 4620.0756 3288.6632 L 4620.0756 3291.2222 L 4609.8394 3291.2222 L 4609.8394 3288.6632 Z ~solid~gge12617~~~~0#@$SOLIDREGION~100~~M 4591.7292 3288.6632 L 4591.7292 3291.2222 L 4601.9654 3291.2222 L 4601.9654 3288.6632 Z ~solid~gge12620~~~~0#@$SOLIDREGION~99~~M 4618.8945 3276.9506 L 4618.8945 3302.9348 L 4598.1071 3302.9348 L 4592.9103 3297.738 L 4592.9103 3282.1474 L 4598.1071 3276.9506 Z ~solid~gge12623~~~~0#@$TRACK~0.6~3~~4619.1944 3292.3341 4619.1944 3303.2347 4598.107 3303.2347 4592.6104 3297.7381 4592.6104 3292.3341~gge12626~0#@$TRACK~0.6~3~~4619.1944 3287.5513 4619.1944 3276.6507 4598.107 3276.6507 4592.6104 3282.1473 4592.6104 3287.5513~gge12629~0#@$SOLIDREGION~3~~M 4618.115 3295.5293 L 4618.115 3296.3088 L 4614.9969 3296.3088 L 4614.9969 3295.5293 Z ~solid~gge12632~~~~0#@$SOLIDREGION~3~~M 4593.6898 3295.5293 L 4593.6898 3296.3088 L 4596.8079 3296.3088 L 4596.8079 3295.5293 Z ~solid~gge12635~~~~0#@$SOLIDREGION~3~~M 4594.8591 3293.3207 L 4594.8591 3298.5175 L 4595.6386 3298.5175 L 4595.6386 3293.3207 Z ~solid~gge12638~~~~0#@$CIRCLE~4591.729~3302.935~0.118~0.2362~101~gge12641~0~~#@$SVGNODE~{\"gId\":\"gge12644\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"25.9842\",\"c_height\":\"27.559\",\"c_rotation\":\"0,0,90\",\"z\":\"0\",\"c_origin\":\"4605.9026,3289.9427\",\"uuid\":\"a1e9bad501314ce084e59ae2bd910783\",\"c_etype\":\"outline3D\",\"title\":\"CAP-SMD_L6.6-W6.6-H7.0-LS7.2\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge12644\"},\"childNodes\":[{\"gId\":\"gge12647\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4598.8158 3302.9348 4602.3591 3302.9348 4606.4142 3302.9348 4609.4457 3302.9348 4618.8945 3302.9348 4618.8945 3293.2892 4618.8945 3291.2025 4619.6819 3291.2025 4619.6819 3288.6435 4618.8945 3288.6435 4618.8945 3286.5963 4618.8945 3276.9506 4609.4457 3276.9506 4606.4142 3276.9506 4602.3591 3276.9506 4598.8158 3276.9506 4592.9103 3282.8561 4592.9103 3286.5963 4592.9103 3288.6435 4592.1229 3288.6435 4592.1229 3291.2025 4592.9103 3291.2025 4592.9103 3293.2892 4592.9103 3297.0293 4598.8158 3302.9348 4598.8158 3302.9348\",\"id\":\"gge12647\"}}]}#@$PAD~RECT~4595.784~3289.943~12.8346~4.5276~1~U3_1~1~0~4589.3671 3287.6789 4602.2017 3287.6789 4602.2017 3292.2065 4589.3671 3292.2065~0~gge12650~0~~Y~0~0.0000~0.2000~4595.7843,3289.9427#@$PAD~RECT~4615.902~3289.943~12.8346~4.5276~1~GND~2~0~4609.4851 3287.6789 4622.3197 3287.6789 4622.3197 3292.2065 4609.4851 3292.2065~0~gge12665~0~~Y~0~0.0000~0.2000~4615.9025,3289.9427","LIB~4624.8434~3100.4427~package`IND-SMD_L12.5-W12.5`Contributor`LCSC`link`https:\/\/item.szlcsc.com\/421430.html`3DModel`SMD-PIND_L12.5-W12.5-H8.0`BOM_Supplier`LCSC`BOM_Supplier Part`C169377`BOM_Manufacturer`Sunlord`BOM_Manufacturer Part`SWRB1207S-680MT`nameAlias`Inductance`BOM_JLCPCB Part Class`Extended Part`spicePre`L`spiceSymbolName`SWRB1207S-680MT`~180~~gged3b963950ef8e980~1~cd9f6077c95441b58dd10a834c719551~1625530245~0~~yes~~#@$TEXT~N~4610.153~3138.233~0.6~0~0~3~~4.5~68uH~M 4612.6032 3134.3026 L 4612.4032 3133.8926 L 4611.7932 3133.6926 L 4611.3832 3133.6926 L 4610.7632 3133.8926 L 4610.3532 3134.5126 L 4610.1532 3135.5326 L 4610.1532 3136.5526 L 4610.3532 3137.3726 L 4610.7632 3137.7826 L 4611.3832 3137.9826 L 4611.5832 3137.9826 L 4612.2032 3137.7826 L 4612.6032 3137.3726 L 4612.8132 3136.7626 L 4612.8132 3136.5526 L 4612.6032 3135.9426 L 4612.2032 3135.5326 L 4611.5832 3135.3326 L 4611.3832 3135.3326 L 4610.7632 3135.5326 L 4610.3532 3135.9426 L 4610.1532 3136.5526 M 4615.1832 3133.6926 L 4614.5732 3133.8926 L 4614.3632 3134.3026 L 4614.3632 3134.7126 L 4614.5732 3135.1226 L 4614.9832 3135.3326 L 4615.8032 3135.5326 L 4616.4132 3135.7326 L 4616.8232 3136.1426 L 4617.0232 3136.5526 L 4617.0232 3137.1726 L 4616.8232 3137.5826 L 4616.6132 3137.7826 L 4616.0032 3137.9826 L 4615.1832 3137.9826 L 4614.5732 3137.7826 L 4614.3632 3137.5826 L 4614.1632 3137.1726 L 4614.1632 3136.5526 L 4614.3632 3136.1426 L 4614.7732 3135.7326 L 4615.3932 3135.5326 L 4616.2032 3135.3326 L 4616.6132 3135.1226 L 4616.8232 3134.7126 L 4616.8232 3134.3026 L 4616.6132 3133.8926 L 4616.0032 3133.6926 L 4615.1832 3133.6926 M 4618.3732 3135.1226 L 4618.3732 3137.1726 L 4618.5832 3137.7826 L 4618.9932 3137.9826 L 4619.6032 3137.9826 L 4620.0132 3137.7826 L 4620.6232 3137.1726 M 4620.6232 3135.1226 L 4620.6232 3137.9826 M 4621.9732 3133.6926 L 4621.9732 3137.9826 M 4624.8432 3133.6926 L 4624.8432 3137.9826 M 4621.9732 3135.7326 L 4624.8432 3135.7326~none~gge11695~~0~#@$TEXT~P~4617.843~3084.443~0.6~0~0~3~~4.5~PSU_L1~M 4617.8434 3079.9027 L 4617.8434 3084.1927 M 4617.8434 3079.9027 L 4619.6834 3079.9027 L 4620.2934 3080.1027 L 4620.5034 3080.3127 L 4620.7034 3080.7227 L 4620.7034 3081.3327 L 4620.5034 3081.7427 L 4620.2934 3081.9427 L 4619.6834 3082.1527 L 4617.8434 3082.1527 M 4624.9234 3080.5127 L 4624.5134 3080.1027 L 4623.8934 3079.9027 L 4623.0834 3079.9027 L 4622.4634 3080.1027 L 4622.0534 3080.5127 L 4622.0534 3080.9227 L 4622.2634 3081.3327 L 4622.4634 3081.5427 L 4622.8734 3081.7427 L 4624.1034 3082.1527 L 4624.5134 3082.3527 L 4624.7134 3082.5627 L 4624.9234 3082.9727 L 4624.9234 3083.5827 L 4624.5134 3083.9927 L 4623.8934 3084.1927 L 4623.0834 3084.1927 L 4622.4634 3083.9927 L 4622.0534 3083.5827 M 4626.2734 3079.9027 L 4626.2734 3082.9727 L 4626.4734 3083.5827 L 4626.8834 3083.9927 L 4627.4934 3084.1927 L 4627.9034 3084.1927 L 4628.5234 3083.9927 L 4628.9334 3083.5827 L 4629.1334 3082.9727 L 4629.1334 3079.9027 M 4630.4834 3085.6327 L 4634.1634 3085.6327 M 4635.5134 3079.9027 L 4635.5134 3084.1927 M 4635.5134 3084.1927 L 4637.9734 3084.1927 M 4639.3234 3080.7227 L 4639.7334 3080.5127 L 4640.3434 3079.9027 L 4640.3434 3084.1927~~gge11701~~0~#@$CIRCLE~4600.237~3125.049~0.118~0.2362~101~gge11707~0~~#@$SOLIDREGION~100~~M 4610.0799 3110.2852 L 4600.2373 3110.2852 L 4600.2373 3090.6002 L 4610.0799 3090.6002 Z ~solid~gge11710~~~~0#@$SOLIDREGION~100~~M 4649.4495 3110.2852 L 4639.6069 3110.2852 L 4639.6069 3090.6002 L 4649.4495 3090.6002 Z ~solid~gge11713~~~~0#@$SOLIDREGION~99~~M 4649.4497 3075.8364 L 4649.4497 3125.049 L 4600.2371 3125.049 L 4600.2371 3075.8364 Z ~solid~gge11716~~~~0#@$TRACK~0.6~3~~4649.7497 3112.4994 4649.7497 3125.349 4599.9371 3125.349 4599.9371 3112.4994~gge11719~0#@$TRACK~0.6~3~~4649.7497 3088.386 4649.7497 3075.5364 4599.9371 3075.5364 4599.9371 3088.386~gge11722~0#@$SVGNODE~{\"gId\":\"gge11725\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"49.47592467\",\"c_height\":\"49.2125\",\"c_rotation\":\"0,0,180\",\"z\":\"0\",\"c_origin\":\"4624.8435,3100.4426\",\"uuid\":\"4b3e52950af04e0b902996f968361f10\",\"c_etype\":\"outline3D\",\"title\":\"SMD-PIND_L12.5-W12.5-H8.0\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge11725\"},\"childNodes\":[{\"gId\":\"gge11728\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4649.5678 3110.1276 4649.5678 3110.0883 4649.5678 3109.104 4649.5678 3091.7812 4649.5678 3090.7576 4649.5284 3090.7182 4649.489 3090.6788 4649.4496 3090.6395 4649.4496 3089.8127 4649.4496 3079.7734 4649.3315 3078.7497 4648.9378 3077.8049 4648.3079 3076.9781 4647.4811 3076.3482 4646.5363 3075.9545 4645.5126 3075.8364 4635.4733 3075.8364 4634.6465 3075.8364 4634.6072 3075.8364 4615.0796 3075.8364 4615.0403 3075.8364 4614.2135 3075.8364 4604.1741 3075.8364 4603.1505 3075.9545 4602.2056 3076.3482 4601.3789 3076.9781 4600.749 3077.8049 4600.3553 3078.7497 4600.2371 3079.7734 4600.2371 3089.8127 4600.2371 3090.6395 4600.119 3090.797 4600.119 3091.7812 4600.119 3109.104 4600.119 3110.1276 4600.2371 3110.2457 4600.2371 3111.0725 4600.2371 3121.1119 4600.3553 3122.1355 4600.749 3123.0804 4601.3789 3123.9071 4602.2056 3124.537 4603.1505 3124.9307 4604.1741 3125.0489 4614.2135 3125.0489 4615.0796 3125.0489 4624.8434 3125.0489 4634.6072 3125.0489 4635.4733 3125.0489 4645.5126 3125.0489 4646.5363 3124.9307 4647.4811 3124.537 4648.3079 3123.9071 4648.9378 3123.0804 4649.3315 3122.1355 4649.4496 3121.1119 4649.4496 3111.0725 4649.4496 3110.2457 4649.489 3110.2064 4649.5284 3110.167 4649.5678 3110.1276 4649.5678 3110.1276\",\"id\":\"gge11728\"}}]}#@$PAD~RECT~4604.458~3100.443~15.0551~22.9134~1~+5V~1~0~4611.9851 3088.986 4611.9851 3111.8994 4596.93 3111.8994 4596.93 3088.986~180~gge11731~0~~Y~0~0.0000~0.2000~4604.4576,3100.4427#@$PAD~RECT~4645.229~3100.443~15.0551~22.9134~1~PSU_D2_2~2~0~4637.7017 3088.986 4637.7017 3111.8994 4652.7568 3111.8994 4652.7568 3088.986~180~gge11746~0~~Y~0~0.0000~0.2000~4645.2292,3100.4427","LIB~4699.1325~3175.469~package`C0805`Contributor`LCSC`link`https:\/\/item.szlcsc.com\/373011.html`3DModel`C0805_L2.0-W1.3-H1.3`BOM_Supplier`LCSC`BOM_Manufacturer Part`CL21B105KBFNNNE`BOM_Manufacturer`SAMSUNG`nameAlias`Capacitance`BOM_Supplier Part`C28323`BOM_JLCPCB Part Class`Basic Part`spicePre`C`spiceSymbolName`CL21B105KBFNNNE`~~~gge3c9801289a2d6f14~1~2ee8eb13a0124a108e622ce40c0c25a8~1625122963~0~~yes~~#@$CIRCLE~4695.196~3177.93~0.118~0.2362~101~gge21~0~~#@$SOLIDREGION~100~~M 4695.1955 3177.9296 L 4695.1955 3173.0084 L 4697.164 3173.0084 L 4697.164 3177.9296 Z ~solid~gge24~~~~0#@$SOLIDREGION~100~~M 4703.0695 3173.0084 L 4703.0695 3177.9296 L 4701.101 3177.9296 L 4701.101 3173.0084 Z ~solid~gge27~~~~0#@$SOLIDREGION~99~~M 4695.1955 3177.9296 L 4695.1955 3173.0084 L 4703.0695 3173.0084 L 4703.0695 3177.9296 Z ~solid~gge30~~~~0#@$SOLIDREGION~5~~M 4692.5379 3177.9098 L 4692.5379 3172.8705 L 4692.7348 3172.6736 L 4697.2624 3172.6736 L 4697.4592 3172.8705 L 4697.479 3174.4848 L 4695.7073 3174.4848 L 4695.7073 3176.2564 L 4697.4396 3176.2564 L 4697.4592 3177.9098 L 4697.2624 3178.1067 L 4692.7348 3178.1067 Z ~solid~gge63~~~~0#@$SOLIDREGION~5~~M 4701.0025 3177.9098 L 4701.0026 3176.2564 L 4702.7545 3176.2564 L 4702.7545 3174.4848 L 4701.0223 3174.4848 L 4701.0025 3172.8705 L 4701.1994 3172.6736 L 4705.7269 3172.6736 L 4705.9238 3172.8705 L 4705.9238 3177.9098 L 4705.7269 3178.1067 L 4701.1994 3178.1067 Z ~solid~gge66~~~~0#@$SVGNODE~{\"gId\":\"gge69\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"7.874\",\"c_height\":\"5.1181\",\"c_rotation\":\"0,0,0\",\"z\":\"0\",\"c_origin\":\"4699.1323,3175.469\",\"uuid\":\"b87ab0c5465a48b3a1c9a6dac8d30bc5\",\"c_etype\":\"outline3D\",\"title\":\"C0805_L2.0-W1.3-H1.3\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge69\"},\"childNodes\":[{\"gId\":\"gge72\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4695.1955 3173.0674 4695.1955 3173.1067 4695.1955 3177.8311 4695.1955 3177.8705 4695.2349 3177.9099 4695.2349 3177.9886 4695.3136 3177.9886 4695.3924 3178.028 4696.8097 3178.028 4696.849 3178.028 4696.9672 3178.028 4697.0853 3178.028 4697.1246 3178.028 4697.164 3178.028 4697.164 3177.9492 4701.101 3177.9492 4701.101 3178.028 4701.1404 3178.028 4701.1797 3178.028 4701.2979 3178.028 4701.416 3178.028 4701.4553 3178.028 4702.912 3178.028 4702.9908 3177.9886 4703.0301 3177.9886 4703.0301 3177.9099 4703.0695 3177.8705 4703.0695 3177.8311 4703.0695 3173.1067 4703.0695 3173.0674 4703.0301 3172.9886 4703.0301 3172.9493 4702.9908 3172.9493 4702.8727 3172.9099 4702.164 3172.9099 4701.4553 3172.9099 4701.416 3172.9099 4701.2979 3172.9099 4701.1797 3172.9099 4701.1404 3172.9099 4701.101 3172.9099 4701.101 3172.9886 4697.164 3172.9886 4697.164 3172.9099 4697.1246 3172.9099 4697.0853 3172.9099 4696.9672 3172.9099 4696.849 3172.9099 4696.8097 3172.9099 4696.101 3172.9099 4695.353 3172.9099 4695.3136 3172.9493 4695.2349 3172.9493 4695.2349 3172.9886 4695.1955 3173.0674 4695.1955 3173.0674\",\"id\":\"gge72\"}}]}#@$TEXT~N~4699.133~3163.469~0.6~0~0~3~~4.5~1uF~M 4699.1325 3159.749 L 4699.5425 3159.539 L 4700.1525 3158.929 L 4700.1525 3163.219 M 4701.5025 3160.359 L 4701.5025 3162.409 L 4701.7125 3163.019 L 4702.1225 3163.219 L 4702.7325 3163.219 L 4703.1425 3163.019 L 4703.7525 3162.409 M 4703.7525 3160.359 L 4703.7525 3163.219 M 4705.1025 3158.929 L 4705.1025 3163.219 M 4705.1025 3158.929 L 4707.7625 3158.929 M 4705.1025 3160.969 L 4706.7425 3160.969~none~gge9~~0~#@$TEXT~P~4695.8434~3170.9427~0.6~0~0~3~~4.5~C1~M 4698.9129 3167.4227 L 4698.7029 3167.0127 L 4698.2929 3166.6027 L 4697.8929 3166.4027 L 4697.0729 3166.4027 L 4696.6629 3166.6027 L 4696.2529 3167.0127 L 4696.0429 3167.4227 L 4695.8429 3168.0427 L 4695.8429 3169.0627 L 4696.0429 3169.6727 L 4696.2529 3170.0827 L 4696.6629 3170.4927 L 4697.0729 3170.6927 L 4697.8929 3170.6927 L 4698.2929 3170.4927 L 4698.7029 3170.0827 L 4698.9129 3169.6727 M 4700.2629 3167.2227 L 4700.6729 3167.0127 L 4701.2829 3166.4027 L 4701.2829 3170.6927~~gge15~~0~#@$TRACK~0.6~3~~4706.2632 3171.9115 4700.712 3171.9115~gge33~0#@$TRACK~0.6~3~~4700.712 3179.0265 4706.2632 3179.0265~gge36~0#@$TRACK~0.6~3~~4706.8632 3178.4265 4706.8632 3172.5115~gge39~0#@$TRACK~0.6~3~~4692.0018 3171.9115 4697.553 3171.9115~gge42~0#@$TRACK~0.6~3~~4697.553 3179.0265 4692.0018 3179.0265~gge45~0#@$TRACK~0.6~3~~4691.4018 3178.4265 4691.4018 3172.5115~gge48~0#@$ARC~0.6~3~~M 4706.2632 3179.0265 A 0.6 0.6 0 0 0 4706.8632 3178.4265~~gge51~0#@$ARC~0.6~3~~M 4706.8632 3172.5115 A 0.6 0.6 0 0 0 4706.2632 3171.9115~~gge54~0#@$ARC~0.6~3~~M 4692.0018 3179.0265 A 0.6 0.6 0 0 1 4691.4018 3178.4265~~gge57~0#@$ARC~0.6~3~~M 4691.4018 3172.5115 A 0.6 0.6 0 0 1 4692.0018 3171.9115~~gge60~0#@$PAD~RECT~4703.188~3175.469~5.5512~5.315~1~GND~2~0~4700.412 3178.1265 4700.412 3172.8115 4705.9632 3172.8115 4705.9632 3178.1265~0~gge75~0~~Y~0~-393.7008~0.2000~4703.1876,3175.469#@$PAD~RECT~4695.077~3175.469~5.5512~5.315~1~OPTO1_1~1~0~4697.853 3178.1265 4697.853 3172.8115 4692.3018 3172.8115 4692.3018 3178.1265~0~gge87~0~~Y~0~-393.7008~0.2000~4695.0774,3175.469","LIB~4699.8434~3189.9427~package`C0805`Contributor`LCSC`link`https:\/\/item.szlcsc.com\/373011.html`3DModel`C0805_L2.0-W1.3-H1.3`BOM_Supplier`LCSC`BOM_Manufacturer Part`CL21B105KBFNNNE`BOM_Manufacturer`SAMSUNG`nameAlias`Capacitance`BOM_Supplier Part`C28323`BOM_JLCPCB Part Class`Basic Part`spicePre`C`spiceSymbolName`CL21B105KBFNNNE`~180~~ggef4db7c919ecb45d5~1~2ee8eb13a0124a108e622ce40c0c25a8~1625122963~0~~yes~~#@$CIRCLE~4703.7804~3187.4817~0.118~0.2362~101~gge117~0~~#@$SOLIDREGION~100~~M 4703.7804 3187.4821 L 4703.7804 3192.4033 L 4701.8119 3192.4033 L 4701.8119 3187.4821 Z ~solid~gge120~~~~0#@$SOLIDREGION~100~~M 4695.9064 3192.4033 L 4695.9064 3187.4821 L 4697.8749 3187.4821 L 4697.8749 3192.4033 Z ~solid~gge123~~~~0#@$SOLIDREGION~99~~M 4703.7804 3187.4821 L 4703.7804 3192.4033 L 4695.9064 3192.4033 L 4695.9064 3187.4821 Z ~solid~gge126~~~~0#@$SOLIDREGION~5~~M 4706.438 3187.5019 L 4706.438 3192.5412 L 4706.2411 3192.7381 L 4701.7135 3192.7381 L 4701.5167 3192.5412 L 4701.4969 3190.9269 L 4703.2686 3190.9269 L 4703.2686 3189.1553 L 4701.5363 3189.1553 L 4701.5167 3187.5019 L 4701.7135 3187.305 L 4706.2411 3187.305 Z ~solid~gge159~~~~0#@$SOLIDREGION~5~~M 4697.9734 3187.5019 L 4697.9733 3189.1553 L 4696.2214 3189.1553 L 4696.2214 3190.9269 L 4697.9536 3190.9269 L 4697.9734 3192.5412 L 4697.7765 3192.7381 L 4693.249 3192.7381 L 4693.0521 3192.5412 L 4693.0521 3187.5019 L 4693.249 3187.305 L 4697.7765 3187.305 Z ~solid~gge162~~~~0#@$SVGNODE~{\"gId\":\"gge165\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"7.874\",\"c_height\":\"5.1181\",\"c_rotation\":\"0,0,180\",\"z\":\"0\",\"c_origin\":\"4699.8433,3189.9427\",\"uuid\":\"b87ab0c5465a48b3a1c9a6dac8d30bc5\",\"c_etype\":\"outline3D\",\"title\":\"C0805_L2.0-W1.3-H1.3\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge165\"},\"childNodes\":[{\"gId\":\"gge168\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4703.7804 3192.3443 4703.7804 3192.305 4703.7804 3187.5806 4703.7804 3187.5412 4703.741 3187.5018 4703.741 3187.4231 4703.6623 3187.4231 4703.5835 3187.3837 4702.1662 3187.3837 4702.1269 3187.3837 4702.0087 3187.3837 4701.8906 3187.3837 4701.8513 3187.3837 4701.8119 3187.3837 4701.8119 3187.4625 4697.8749 3187.4625 4697.8749 3187.3837 4697.8355 3187.3837 4697.7962 3187.3837 4697.678 3187.3837 4697.5599 3187.3837 4697.5206 3187.3837 4696.0639 3187.3837 4695.9851 3187.4231 4695.9458 3187.4231 4695.9458 3187.5018 4695.9064 3187.5412 4695.9064 3187.5806 4695.9064 3192.305 4695.9064 3192.3443 4695.9458 3192.4231 4695.9458 3192.4624 4695.9851 3192.4624 4696.1032 3192.5018 4696.8119 3192.5018 4697.5206 3192.5018 4697.5599 3192.5018 4697.678 3192.5018 4697.7962 3192.5018 4697.8355 3192.5018 4697.8749 3192.5018 4697.8749 3192.4231 4701.8119 3192.4231 4701.8119 3192.5018 4701.8513 3192.5018 4701.8906 3192.5018 4702.0087 3192.5018 4702.1269 3192.5018 4702.1662 3192.5018 4702.8749 3192.5018 4703.6229 3192.5018 4703.6623 3192.4624 4703.741 3192.4624 4703.741 3192.4231 4703.7804 3192.3443 4703.7804 3192.3443\",\"id\":\"gge168\"}}]}#@$TEXT~N~4691.2134~3206.7327~0.6~0~0~3~~4.5~1uF~M 4691.2135 3203.0127 L 4691.6235 3202.8027 L 4692.2335 3202.1927 L 4692.2335 3206.4827 M 4693.5835 3203.6227 L 4693.5835 3205.6727 L 4693.7935 3206.2827 L 4694.2035 3206.4827 L 4694.8135 3206.4827 L 4695.2235 3206.2827 L 4695.8335 3205.6727 M 4695.8335 3203.6227 L 4695.8335 3206.4827 M 4697.1835 3202.1927 L 4697.1835 3206.4827 M 4697.1835 3202.1927 L 4699.8435 3202.1927 M 4697.1835 3204.2327 L 4698.8235 3204.2327~none~gge105~~0~#@$TEXT~P~4696.3434~3185.4427~0.6~0~0~3~~4.5~C2~M 4699.4134 3181.9227 L 4699.2034 3181.5127 L 4698.7934 3181.1027 L 4698.3934 3180.9027 L 4697.5734 3180.9027 L 4697.1634 3181.1027 L 4696.7534 3181.5127 L 4696.5434 3181.9227 L 4696.3434 3182.5427 L 4696.3434 3183.5627 L 4696.5434 3184.1727 L 4696.7534 3184.5827 L 4697.1634 3184.9927 L 4697.5734 3185.1927 L 4698.3934 3185.1927 L 4698.7934 3184.9927 L 4699.2034 3184.5827 L 4699.4134 3184.1727 M 4700.9634 3181.9227 L 4700.9634 3181.7227 L 4701.1734 3181.3127 L 4701.3734 3181.1027 L 4701.7834 3180.9027 L 4702.6034 3180.9027 L 4703.0134 3181.1027 L 4703.2134 3181.3127 L 4703.4234 3181.7227 L 4703.4234 3182.1327 L 4703.2134 3182.5427 L 4702.8034 3183.1527 L 4700.7634 3185.1927 L 4703.6234 3185.1927~~gge111~~0~#@$TRACK~0.6~3~~4692.7127 3193.5002 4698.2639 3193.5002~gge129~0#@$TRACK~0.6~3~~4698.2639 3186.3852 4692.7127 3186.3852~gge132~0#@$TRACK~0.6~3~~4692.1127 3186.9852 4692.1127 3192.9002~gge135~0#@$TRACK~0.6~3~~4706.9741 3193.5002 4701.4229 3193.5002~gge138~0#@$TRACK~0.6~3~~4701.4229 3186.3852 4706.9741 3186.3852~gge141~0#@$TRACK~0.6~3~~4707.5741 3186.9852 4707.5741 3192.9002~gge144~0#@$ARC~0.6~3~~M 4692.7127 3186.3852 A 0.6 0.6 0 0 0 4692.1127 3186.9852~~gge147~0#@$ARC~0.6~3~~M 4692.1127 3192.9002 A 0.6 0.6 0 0 0 4692.7127 3193.5002~~gge150~0#@$ARC~0.6~3~~M 4706.9741 3186.3852 A 0.6 0.6 0 0 1 4707.5741 3186.9852~~gge153~0#@$ARC~0.6~3~~M 4707.5741 3192.9002 A 0.6 0.6 0 0 1 4706.9741 3193.5002~~gge156~0#@$PAD~RECT~4695.7884~3189.9427~5.5512~5.315~1~R2_1~2~0~4698.5639 3187.2852 4698.5639 3192.6002 4693.0127 3192.6002 4693.0127 3187.2852~180~gge171~0~~Y~0~-393.7008~0.2000~4695.7883,3189.9427#@$PAD~RECT~4703.8984~3189.9427~5.5512~5.315~1~GND~1~0~4701.1229 3187.2852 4701.1229 3192.6002 4706.6741 3192.6002 4706.6741 3187.2852~180~gge183~0~~Y~0~-393.7008~0.2000~4703.8985,3189.9427","LIB~4495~3166~package`C0805`Contributor`lcsc`link`https:\/\/item.szlcsc.com\/373011.html`3DModel`C0805_L2.0-W1.3-H1.3`BOM_Supplier`LCSC`BOM_Manufacturer Part`CC0805KRX7R9BB104`BOM_Manufacturer`YAGEO`nameAlias`Capacitance`BOM_Supplier Part`C49678`BOM_JLCPCB Part Class`Basic Part`spicePre`C`spiceSymbolName`CC0805KRX7R9BB104`~270~~ggeb4693cfd16d534cd~1~2ee8eb13a0124a108e622ce40c0c25a8~1667381257~0~~yes~~#@$SOLIDREGION~100~~M 4492.5394 3162.063 L 4497.4606 3162.063 L 4497.4606 3164.0315 L 4492.5394 3164.0315 Z ~solid~gge213~~~~0#@$SOLIDREGION~100~~M 4497.4606 3169.937 L 4492.5394 3169.937 L 4492.5394 3167.9685 L 4497.4606 3167.9685 Z ~solid~gge216~~~~0#@$SOLIDREGION~99~~M 4492.5394 3162.063 L 4497.4606 3162.063 L 4497.4606 3169.937 L 4492.5394 3169.937 Z ~solid~gge219~~~~0#@$SOLIDREGION~5~~M 4492.5592 3159.4054 L 4497.5985 3159.4054 L 4497.7954 3159.6023 L 4497.7954 3164.1299 L 4497.5985 3164.3267 L 4495.9842 3164.3465 L 4495.9842 3162.5748 L 4494.2126 3162.5748 L 4494.2126 3164.3071 L 4492.5592 3164.3267 L 4492.3623 3164.1299 L 4492.3623 3159.6023 Z ~solid~gge222~~~~0#@$SOLIDREGION~5~~M 4492.5592 3167.87 L 4494.2126 3167.8701 L 4494.2126 3169.622 L 4495.9842 3169.622 L 4495.9842 3167.8898 L 4497.5985 3167.87 L 4497.7954 3168.0669 L 4497.7954 3172.5944 L 4497.5985 3172.7913 L 4492.5592 3172.7913 L 4492.3623 3172.5944 L 4492.3623 3168.0669 Z ~solid~gge225~~~~0#@$CIRCLE~4492.539~3162.063~0.118~0.2362~101~gge258~0~~#@$SVGNODE~{\"gId\":\"gge261\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"7.874\",\"c_height\":\"5.1181\",\"c_rotation\":\"0,0,270\",\"z\":\"0\",\"c_origin\":\"4495,3166\",\"uuid\":\"b87ab0c5465a48b3a1c9a6dac8d30bc5\",\"c_etype\":\"outline3D\",\"title\":\"C0805_L2.0-W1.3-H1.3\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge261\"},\"childNodes\":[{\"gId\":\"gge264\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4497.4016 3162.063 4497.3623 3162.063 4492.6379 3162.063 4492.5985 3162.063 4492.5591 3162.1024 4492.4804 3162.1024 4492.4804 3162.1811 4492.441 3162.2599 4492.441 3163.6772 4492.441 3163.7165 4492.441 3163.8347 4492.441 3163.9528 4492.441 3163.9921 4492.441 3164.0315 4492.5198 3164.0315 4492.5198 3167.9685 4492.441 3167.9685 4492.441 3168.0079 4492.441 3168.0472 4492.441 3168.1654 4492.441 3168.2835 4492.441 3168.3228 4492.441 3169.7795 4492.4804 3169.8583 4492.4804 3169.8976 4492.5591 3169.8976 4492.5985 3169.937 4492.6379 3169.937 4497.3623 3169.937 4497.4016 3169.937 4497.4804 3169.8976 4497.5197 3169.8976 4497.5197 3169.8583 4497.5591 3169.7402 4497.5591 3169.0315 4497.5591 3168.3228 4497.5591 3168.2835 4497.5591 3168.1654 4497.5591 3168.0472 4497.5591 3168.0079 4497.5591 3167.9685 4497.4804 3167.9685 4497.4804 3164.0315 4497.5591 3164.0315 4497.5591 3163.9921 4497.5591 3163.9528 4497.5591 3163.8347 4497.5591 3163.7165 4497.5591 3163.6772 4497.5591 3162.9685 4497.5591 3162.2205 4497.5197 3162.1811 4497.5197 3162.1024 4497.4804 3162.1024 4497.4016 3162.063 4497.4016 3162.063\",\"id\":\"gge264\"}}]}#@$TEXT~N~4511.79~3183.06~0.6~90~0~3~~4.5~100nF~M 4508.07 3183.0601 L 4507.86 3182.6501 L 4507.25 3182.0401 L 4511.54 3182.0401 M 4507.25 3179.4601 L 4507.45 3180.0701 L 4508.07 3180.4801 L 4509.09 3180.6901 L 4509.7 3180.6901 L 4510.73 3180.4801 L 4511.34 3180.0701 L 4511.54 3179.4601 L 4511.54 3179.0501 L 4511.34 3178.4401 L 4510.73 3178.0301 L 4509.7 3177.8201 L 4509.09 3177.8201 L 4508.07 3178.0301 L 4507.45 3178.4401 L 4507.25 3179.0501 L 4507.25 3179.4601 M 4507.25 3175.2501 L 4507.45 3175.8601 L 4508.07 3176.2701 L 4509.09 3176.4701 L 4509.7 3176.4701 L 4510.73 3176.2701 L 4511.34 3175.8601 L 4511.54 3175.2501 L 4511.54 3174.8401 L 4511.34 3174.2201 L 4510.73 3173.8101 L 4509.7 3173.6101 L 4509.09 3173.6101 L 4508.07 3173.8101 L 4507.45 3174.2201 L 4507.25 3174.8401 L 4507.25 3175.2501 M 4508.68 3172.2601 L 4511.54 3172.2601 M 4509.5 3172.2601 L 4508.89 3171.6501 L 4508.68 3171.2401 L 4508.68 3170.6201 L 4508.89 3170.2101 L 4509.5 3170.0101 L 4511.54 3170.0101 M 4507.25 3168.6601 L 4511.54 3168.6601 M 4507.25 3168.6601 L 4507.25 3166.0001 M 4509.29 3168.6601 L 4509.29 3167.0201~none~gge201~~0~#@$TEXT~P~4479~3154.5~0.6~0~0~3~~4.5~CAN0_C2~M 4482.07 3150.98 L 4481.86 3150.57 L 4481.45 3150.16 L 4481.05 3149.96 L 4480.23 3149.96 L 4479.82 3150.16 L 4479.41 3150.57 L 4479.2 3150.98 L 4479 3151.6 L 4479 3152.62 L 4479.2 3153.23 L 4479.41 3153.64 L 4479.82 3154.05 L 4480.23 3154.25 L 4481.05 3154.25 L 4481.45 3154.05 L 4481.86 3153.64 L 4482.07 3153.23 M 4485.05 3149.96 L 4483.42 3154.25 M 4485.05 3149.96 L 4486.69 3154.25 M 4484.03 3152.82 L 4486.08 3152.82 M 4488.04 3149.96 L 4488.04 3154.25 M 4488.04 3149.96 L 4490.9 3154.25 M 4490.9 3149.96 L 4490.9 3154.25 M 4493.48 3149.96 L 4492.87 3150.16 L 4492.46 3150.78 L 4492.25 3151.8 L 4492.25 3152.41 L 4492.46 3153.44 L 4492.87 3154.05 L 4493.48 3154.25 L 4493.89 3154.25 L 4494.5 3154.05 L 4494.91 3153.44 L 4495.12 3152.41 L 4495.12 3151.8 L 4494.91 3150.78 L 4494.5 3150.16 L 4493.89 3149.96 L 4493.48 3149.96 M 4496.47 3155.69 L 4500.15 3155.69 M 4504.57 3150.98 L 4504.36 3150.57 L 4503.95 3150.16 L 4503.55 3149.96 L 4502.73 3149.96 L 4502.32 3150.16 L 4501.91 3150.57 L 4501.7 3150.98 L 4501.5 3151.6 L 4501.5 3152.62 L 4501.7 3153.23 L 4501.91 3153.64 L 4502.32 3154.05 L 4502.73 3154.25 L 4503.55 3154.25 L 4503.95 3154.05 L 4504.36 3153.64 L 4504.57 3153.23 M 4506.12 3150.98 L 4506.12 3150.78 L 4506.33 3150.37 L 4506.53 3150.16 L 4506.94 3149.96 L 4507.76 3149.96 L 4508.17 3150.16 L 4508.37 3150.37 L 4508.58 3150.78 L 4508.58 3151.19 L 4508.37 3151.6 L 4507.96 3152.21 L 4505.92 3154.25 L 4508.78 3154.25~~gge207~~0~#@$TRACK~0.6~3~~4498.5575 3173.1307 4498.5575 3167.5795~gge228~0#@$TRACK~0.6~3~~4491.4425 3167.5795 4491.4425 3173.1307~gge231~0#@$TRACK~0.6~3~~4492.0425 3173.7307 4497.9575 3173.7307~gge234~0#@$TRACK~0.6~3~~4498.5575 3158.8693 4498.5575 3164.4205~gge237~0#@$TRACK~0.6~3~~4491.4425 3164.4205 4491.4425 3158.8693~gge240~0#@$TRACK~0.6~3~~4492.0425 3158.2693 4497.9575 3158.2693~gge243~0#@$ARC~0.6~3~~M 4491.4425 3173.1307 A 0.6 0.6 0 0 0 4492.0425 3173.7307~~gge246~0#@$ARC~0.6~3~~M 4497.9575 3173.7307 A 0.6 0.6 0 0 0 4498.5575 3173.1307~~gge249~0#@$ARC~0.6~3~~M 4491.4425 3158.8693 A 0.6 0.6 0 0 1 4492.0425 3158.2693~~gge252~0#@$ARC~0.6~3~~M 4497.9575 3158.2693 A 0.6 0.6 0 0 1 4498.5575 3158.8693~~gge255~0#@$PAD~RECT~4495~3169.937~5.5512~5.315~1~+3.3V~2~0~4492.3425 3167.1615 4497.6575 3167.1615 4497.6575 3172.7127 4492.3425 3172.7127~270~gge267~0~~Y~0~-393.7008~0.2000~4495,3169.9371#@$PAD~RECT~4495~3162.063~5.5512~5.315~1~GND~1~0~4492.3425 3164.8385 4497.6575 3164.8385 4497.6575 3159.2873 4492.3425 3159.2873~270~gge279~0~~Y~0~-393.7008~0.2000~4495,3162.0629","LIB~4542.8434~3214.4427~package`C0805`Contributor`lcsc`link`https:\/\/item.szlcsc.com\/373011.html`3DModel`C0805_L2.0-W1.3-H1.3`BOM_Supplier`LCSC`BOM_Manufacturer Part`CL21C220JBANNNC`BOM_Manufacturer`SAMSUNG`nameAlias`Capacitance`BOM_Supplier Part`C1804`BOM_JLCPCB Part Class`Basic Part`spicePre`C`spiceSymbolName`CL21C220JBANNNC`~90~~ggeddba3c46cf8b8e66~1~2ee8eb13a0124a108e622ce40c0c25a8~1667381257~0~~yes~~#@$SOLIDREGION~100~~M 4545.304 3218.3797 L 4540.3828 3218.3797 L 4540.3828 3216.4112 L 4545.304 3216.4112 Z ~solid~gge501~~~~0#@$SOLIDREGION~100~~M 4540.3828 3210.5057 L 4545.304 3210.5057 L 4545.304 3212.4742 L 4540.3828 3212.4742 Z ~solid~gge504~~~~0#@$SOLIDREGION~99~~M 4545.304 3218.3797 L 4540.3828 3218.3797 L 4540.3828 3210.5057 L 4545.304 3210.5057 Z ~solid~gge507~~~~0#@$SOLIDREGION~5~~M 4545.2842 3221.0373 L 4540.2449 3221.0373 L 4540.048 3220.8404 L 4540.048 3216.3128 L 4540.2449 3216.116 L 4541.8592 3216.0962 L 4541.8592 3217.8679 L 4543.6308 3217.8679 L 4543.6308 3216.1356 L 4545.2842 3216.116 L 4545.4811 3216.3128 L 4545.4811 3220.8404 Z ~solid~gge510~~~~0#@$SOLIDREGION~5~~M 4545.2842 3212.5727 L 4543.6308 3212.5726 L 4543.6308 3210.8207 L 4541.8592 3210.8207 L 4541.8592 3212.5529 L 4540.2449 3212.5727 L 4540.048 3212.3758 L 4540.048 3207.8483 L 4540.2449 3207.6514 L 4545.2842 3207.6514 L 4545.4811 3207.8483 L 4545.4811 3212.3758 Z ~solid~gge513~~~~0#@$CIRCLE~4545.3044~3218.3797~0.118~0.2362~101~gge546~0~~#@$SVGNODE~{\"gId\":\"gge549\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"7.874\",\"c_height\":\"5.1181\",\"c_rotation\":\"0,0,90\",\"z\":\"0\",\"c_origin\":\"4542.8433,3214.4426\",\"uuid\":\"b87ab0c5465a48b3a1c9a6dac8d30bc5\",\"c_etype\":\"outline3D\",\"title\":\"C0805_L2.0-W1.3-H1.3\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge549\"},\"childNodes\":[{\"gId\":\"gge552\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4540.4418 3218.3797 4540.4811 3218.3797 4545.2055 3218.3797 4545.2449 3218.3797 4545.2843 3218.3403 4545.363 3218.3403 4545.363 3218.2616 4545.4024 3218.1828 4545.4024 3216.7655 4545.4024 3216.7262 4545.4024 3216.608 4545.4024 3216.4899 4545.4024 3216.4506 4545.4024 3216.4112 4545.3236 3216.4112 4545.3236 3212.4742 4545.4024 3212.4742 4545.4024 3212.4348 4545.4024 3212.3955 4545.4024 3212.2773 4545.4024 3212.1592 4545.4024 3212.1199 4545.4024 3210.6632 4545.363 3210.5844 4545.363 3210.5451 4545.2843 3210.5451 4545.2449 3210.5057 4545.2055 3210.5057 4540.4811 3210.5057 4540.4418 3210.5057 4540.363 3210.5451 4540.3237 3210.5451 4540.3237 3210.5844 4540.2843 3210.7025 4540.2843 3211.4112 4540.2843 3212.1199 4540.2843 3212.1592 4540.2843 3212.2773 4540.2843 3212.3955 4540.2843 3212.4348 4540.2843 3212.4742 4540.363 3212.4742 4540.363 3216.4112 4540.2843 3216.4112 4540.2843 3216.4506 4540.2843 3216.4899 4540.2843 3216.608 4540.2843 3216.7262 4540.2843 3216.7655 4540.2843 3217.4742 4540.2843 3218.2222 4540.3237 3218.2616 4540.3237 3218.3403 4540.363 3218.3403 4540.4418 3218.3797 4540.4418 3218.3797\",\"id\":\"gge552\"}}]}#@$TEXT~N~4530.8434~3214.4427~0.6~90~0~3~~4.5~22pF~M 4527.3234 3214.2427 L 4527.1234 3214.2427 L 4526.7134 3214.0327 L 4526.5034 3213.8327 L 4526.3034 3213.4227 L 4526.3034 3212.6027 L 4526.5034 3212.1927 L 4526.7134 3211.9927 L 4527.1234 3211.7827 L 4527.5334 3211.7827 L 4527.9434 3211.9927 L 4528.5534 3212.3927 L 4530.5934 3214.4427 L 4530.5934 3211.5827 M 4527.3234 3210.0227 L 4527.1234 3210.0227 L 4526.7134 3209.8227 L 4526.5034 3209.6127 L 4526.3034 3209.2027 L 4526.3034 3208.3927 L 4526.5034 3207.9827 L 4526.7134 3207.7727 L 4527.1234 3207.5727 L 4527.5334 3207.5727 L 4527.9434 3207.7727 L 4528.5534 3208.1827 L 4530.5934 3210.2327 L 4530.5934 3207.3627 M 4527.7334 3206.0127 L 4532.0334 3206.0127 M 4528.3434 3206.0127 L 4527.9434 3205.6027 L 4527.7334 3205.1927 L 4527.7334 3204.5827 L 4527.9434 3204.1727 L 4528.3434 3203.7627 L 4528.9634 3203.5627 L 4529.3734 3203.5627 L 4529.9834 3203.7627 L 4530.3934 3204.1727 L 4530.5934 3204.5827 L 4530.5934 3205.1927 L 4530.3934 3205.6027 L 4529.9834 3206.0127 M 4526.3034 3202.2127 L 4530.5934 3202.2127 M 4526.3034 3202.2127 L 4526.3034 3199.5527 M 4528.3434 3202.2127 L 4528.3434 3200.5727~none~gge489~~0~#@$TEXT~P~4549.3434~3204.9427~0.6~270~0~3~~4.5~CAN1_C4~M 4552.8634 3208.0127 L 4553.2734 3207.8027 L 4553.6834 3207.3927 L 4553.8834 3206.9927 L 4553.8834 3206.1727 L 4553.6834 3205.7627 L 4553.2734 3205.3527 L 4552.8634 3205.1427 L 4552.2434 3204.9427 L 4551.2234 3204.9427 L 4550.6134 3205.1427 L 4550.2034 3205.3527 L 4549.7934 3205.7627 L 4549.5934 3206.1727 L 4549.5934 3206.9927 L 4549.7934 3207.3927 L 4550.2034 3207.8027 L 4550.6134 3208.0127 M 4553.8834 3210.9927 L 4549.5934 3209.3627 M 4553.8834 3210.9927 L 4549.5934 3212.6327 M 4551.0234 3209.9727 L 4551.0234 3212.0227 M 4553.8834 3213.9827 L 4549.5934 3213.9827 M 4553.8834 3213.9827 L 4549.5934 3216.8427 M 4553.8834 3216.8427 L 4549.5934 3216.8427 M 4553.0634 3218.1927 L 4553.2734 3218.6027 L 4553.8834 3219.2227 L 4549.5934 3219.2227 M 4548.1534 3220.5727 L 4548.1534 3224.2527 M 4552.8634 3228.6727 L 4553.2734 3228.4627 L 4553.6834 3228.0527 L 4553.8834 3227.6427 L 4553.8834 3226.8327 L 4553.6834 3226.4227 L 4553.2734 3226.0127 L 4552.8634 3225.8027 L 4552.2434 3225.6027 L 4551.2234 3225.6027 L 4550.6134 3225.8027 L 4550.2034 3226.0127 L 4549.7934 3226.4227 L 4549.5934 3226.8327 L 4549.5934 3227.6427 L 4549.7934 3228.0527 L 4550.2034 3228.4627 L 4550.6134 3228.6727 M 4553.8834 3232.0627 L 4551.0234 3230.0227 L 4551.0234 3233.0927 M 4553.8834 3232.0627 L 4549.5934 3232.0627~~gge495~~0~#@$TRACK~0.6~3~~4539.2859 3207.312 4539.2859 3212.8632~gge516~0#@$TRACK~0.6~3~~4546.4009 3212.8632 4546.4009 3207.312~gge519~0#@$TRACK~0.6~3~~4545.8009 3206.712 4539.8859 3206.712~gge522~0#@$TRACK~0.6~3~~4539.2859 3221.5734 4539.2859 3216.0222~gge525~0#@$TRACK~0.6~3~~4546.4009 3216.0222 4546.4009 3221.5734~gge528~0#@$TRACK~0.6~3~~4545.8009 3222.1734 4539.8859 3222.1734~gge531~0#@$ARC~0.6~3~~M 4546.4009 3207.312 A 0.6 0.6 0 0 0 4545.8009 3206.712~~gge534~0#@$ARC~0.6~3~~M 4539.8859 3206.712 A 0.6 0.6 0 0 0 4539.2859 3207.312~~gge537~0#@$ARC~0.6~3~~M 4546.4009 3221.5734 A 0.6 0.6 0 0 1 4545.8009 3222.1734~~gge540~0#@$ARC~0.6~3~~M 4539.8859 3222.1734 A 0.6 0.6 0 0 1 4539.2859 3221.5734~~gge543~0#@$PAD~RECT~4542.8434~3210.5057~5.5512~5.315~1~CAN1_U2_7~2~0~4545.5009 3213.2812 4540.1859 3213.2812 4540.1859 3207.73 4545.5009 3207.73~90~gge555~0~~Y~0~-393.7008~0.2000~4542.8434,3210.5056#@$PAD~RECT~4542.8434~3218.3797~5.5512~5.315~1~GND~1~0~4545.5009 3215.6042 4540.1859 3215.6042 4540.1859 3221.1554 4545.5009 3221.1554~90~gge567~0~~Y~0~-393.7008~0.2000~4542.8434,3218.3798","LIB~4524.3434~3187.4427~package`C0805`Contributor`lcsc`link`https:\/\/item.szlcsc.com\/373011.html`3DModel`C0805_L2.0-W1.3-H1.3`BOM_Supplier`LCSC`BOM_Manufacturer Part`CL21C220JBANNNC`BOM_Manufacturer`SAMSUNG`nameAlias`Capacitance`BOM_Supplier Part`C1804`BOM_JLCPCB Part Class`Basic Part`spicePre`C`spiceSymbolName`CL21C220JBANNNC`~~~gge48d2dd422533522c~1~2ee8eb13a0124a108e622ce40c0c25a8~1667381257~0~~yes~~#@$SOLIDREGION~100~~M 4520.4064 3189.9033 L 4520.4064 3184.9821 L 4522.3749 3184.9821 L 4522.3749 3189.9033 Z ~solid~gge597~~~~0#@$SOLIDREGION~100~~M 4528.2804 3184.9821 L 4528.2804 3189.9033 L 4526.3119 3189.9033 L 4526.3119 3184.9821 Z ~solid~gge600~~~~0#@$SOLIDREGION~99~~M 4520.4064 3189.9033 L 4520.4064 3184.9821 L 4528.2804 3184.9821 L 4528.2804 3189.9033 Z ~solid~gge603~~~~0#@$SOLIDREGION~5~~M 4517.7488 3189.8835 L 4517.7488 3184.8442 L 4517.9457 3184.6473 L 4522.4733 3184.6473 L 4522.6701 3184.8442 L 4522.6899 3186.4585 L 4520.9182 3186.4585 L 4520.9182 3188.2301 L 4522.6505 3188.2301 L 4522.6701 3189.8835 L 4522.4733 3190.0804 L 4517.9457 3190.0804 Z ~solid~gge606~~~~0#@$SOLIDREGION~5~~M 4526.2134 3189.8835 L 4526.2135 3188.2301 L 4527.9654 3188.2301 L 4527.9654 3186.4585 L 4526.2332 3186.4585 L 4526.2134 3184.8442 L 4526.4103 3184.6473 L 4530.9378 3184.6473 L 4531.1347 3184.8442 L 4531.1347 3189.8835 L 4530.9378 3190.0804 L 4526.4103 3190.0804 Z ~solid~gge609~~~~0#@$CIRCLE~4520.406~3189.903~0.118~0.2362~101~gge642~0~~#@$SVGNODE~{\"gId\":\"gge645\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"7.874\",\"c_height\":\"5.1181\",\"c_rotation\":\"0,0,0\",\"z\":\"0\",\"c_origin\":\"4524.3433,3187.4426\",\"uuid\":\"b87ab0c5465a48b3a1c9a6dac8d30bc5\",\"c_etype\":\"outline3D\",\"title\":\"C0805_L2.0-W1.3-H1.3\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge645\"},\"childNodes\":[{\"gId\":\"gge648\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4520.4064 3185.0411 4520.4064 3185.0804 4520.4064 3189.8048 4520.4064 3189.8442 4520.4458 3189.8836 4520.4458 3189.9623 4520.5245 3189.9623 4520.6033 3190.0017 4522.0206 3190.0017 4522.0599 3190.0017 4522.1781 3190.0017 4522.2962 3190.0017 4522.3355 3190.0017 4522.3749 3190.0017 4522.3749 3189.9229 4526.3119 3189.9229 4526.3119 3190.0017 4526.3513 3190.0017 4526.3906 3190.0017 4526.5088 3190.0017 4526.6269 3190.0017 4526.6662 3190.0017 4528.1229 3190.0017 4528.2017 3189.9623 4528.241 3189.9623 4528.241 3189.8836 4528.2804 3189.8442 4528.2804 3189.8048 4528.2804 3185.0804 4528.2804 3185.0411 4528.241 3184.9623 4528.241 3184.923 4528.2017 3184.923 4528.0836 3184.8836 4527.3749 3184.8836 4526.6662 3184.8836 4526.6269 3184.8836 4526.5088 3184.8836 4526.3906 3184.8836 4526.3513 3184.8836 4526.3119 3184.8836 4526.3119 3184.9623 4522.3749 3184.9623 4522.3749 3184.8836 4522.3355 3184.8836 4522.2962 3184.8836 4522.1781 3184.8836 4522.0599 3184.8836 4522.0206 3184.8836 4521.3119 3184.8836 4520.5639 3184.8836 4520.5245 3184.923 4520.4458 3184.923 4520.4458 3184.9623 4520.4064 3185.0411 4520.4064 3185.0411\",\"id\":\"gge648\"}}]}#@$TEXT~N~4524.343~3175.443~0.6~0~0~3~~4.5~22pF~M 4524.5432 3171.9226 L 4524.5432 3171.7226 L 4524.7532 3171.3126 L 4524.9532 3171.1026 L 4525.3632 3170.9026 L 4526.1832 3170.9026 L 4526.5932 3171.1026 L 4526.7932 3171.3126 L 4527.0032 3171.7226 L 4527.0032 3172.1326 L 4526.7932 3172.5426 L 4526.3932 3173.1526 L 4524.3432 3175.1926 L 4527.2032 3175.1926 M 4528.7632 3171.9226 L 4528.7632 3171.7226 L 4528.9632 3171.3126 L 4529.1732 3171.1026 L 4529.5832 3170.9026 L 4530.3932 3170.9026 L 4530.8032 3171.1026 L 4531.0132 3171.3126 L 4531.2132 3171.7226 L 4531.2132 3172.1326 L 4531.0132 3172.5426 L 4530.6032 3173.1526 L 4528.5532 3175.1926 L 4531.4232 3175.1926 M 4532.7732 3172.3326 L 4532.7732 3176.6326 M 4532.7732 3172.9426 L 4533.1832 3172.5426 L 4533.5932 3172.3326 L 4534.2032 3172.3326 L 4534.6132 3172.5426 L 4535.0232 3172.9426 L 4535.2232 3173.5626 L 4535.2232 3173.9726 L 4535.0232 3174.5826 L 4534.6132 3174.9926 L 4534.2032 3175.1926 L 4533.5932 3175.1926 L 4533.1832 3174.9926 L 4532.7732 3174.5826 M 4536.5732 3170.9026 L 4536.5732 3175.1926 M 4536.5732 3170.9026 L 4539.2332 3170.9026 M 4536.5732 3172.9426 L 4538.2132 3172.9426~none~gge585~~0~#@$TEXT~P~4503.3434~3181.9427~0.6~0~0~3~~4.5~CAN1_C5~M 4506.4138 3178.4219 L 4506.2038 3178.0119 L 4505.7938 3177.6019 L 4505.3938 3177.4019 L 4504.5738 3177.4019 L 4504.1638 3177.6019 L 4503.7538 3178.0119 L 4503.5438 3178.4219 L 4503.3438 3179.0419 L 4503.3438 3180.0619 L 4503.5438 3180.6719 L 4503.7538 3181.0819 L 4504.1638 3181.4919 L 4504.5738 3181.6919 L 4505.3938 3181.6919 L 4505.7938 3181.4919 L 4506.2038 3181.0819 L 4506.4138 3180.6719 M 4509.3938 3177.4019 L 4507.7638 3181.6919 M 4509.3938 3177.4019 L 4511.0338 3181.6919 M 4508.3738 3180.2619 L 4510.4238 3180.2619 M 4512.3838 3177.4019 L 4512.3838 3181.6919 M 4512.3838 3177.4019 L 4515.2438 3181.6919 M 4515.2438 3177.4019 L 4515.2438 3181.6919 M 4516.5938 3178.2219 L 4517.0038 3178.0119 L 4517.6238 3177.4019 L 4517.6238 3181.6919 M 4518.9738 3183.1319 L 4522.6538 3183.1319 M 4527.0738 3178.4219 L 4526.8638 3178.0119 L 4526.4538 3177.6019 L 4526.0438 3177.4019 L 4525.2338 3177.4019 L 4524.8238 3177.6019 L 4524.4138 3178.0119 L 4524.2038 3178.4219 L 4524.0038 3179.0419 L 4524.0038 3180.0619 L 4524.2038 3180.6719 L 4524.4138 3181.0819 L 4524.8238 3181.4919 L 4525.2338 3181.6919 L 4526.0438 3181.6919 L 4526.4538 3181.4919 L 4526.8638 3181.0819 L 4527.0738 3180.6719 M 4530.8738 3177.4019 L 4528.8338 3177.4019 L 4528.6238 3179.2419 L 4528.8338 3179.0419 L 4529.4438 3178.8319 L 4530.0538 3178.8319 L 4530.6738 3179.0419 L 4531.0838 3179.4419 L 4531.2838 3180.0619 L 4531.2838 3180.4719 L 4531.0838 3181.0819 L 4530.6738 3181.4919 L 4530.0538 3181.6919 L 4529.4438 3181.6919 L 4528.8338 3181.4919 L 4528.6238 3181.2919 L 4528.4238 3180.8819~~gge591~~0~#@$TRACK~0.6~3~~4531.4741 3183.8852 4525.9229 3183.8852~gge612~0#@$TRACK~0.6~3~~4525.9229 3191.0002 4531.4741 3191.0002~gge615~0#@$TRACK~0.6~3~~4532.0741 3190.4002 4532.0741 3184.4852~gge618~0#@$TRACK~0.6~3~~4517.2127 3183.8852 4522.7639 3183.8852~gge621~0#@$TRACK~0.6~3~~4522.7639 3191.0002 4517.2127 3191.0002~gge624~0#@$TRACK~0.6~3~~4516.6127 3190.4002 4516.6127 3184.4852~gge627~0#@$ARC~0.6~3~~M 4531.4741 3191.0002 A 0.6 0.6 0 0 0 4532.0741 3190.4002~~gge630~0#@$ARC~0.6~3~~M 4532.0741 3184.4852 A 0.6 0.6 0 0 0 4531.4741 3183.8852~~gge633~0#@$ARC~0.6~3~~M 4517.2127 3191.0002 A 0.6 0.6 0 0 1 4516.6127 3190.4002~~gge636~0#@$ARC~0.6~3~~M 4516.6127 3184.4852 A 0.6 0.6 0 0 1 4517.2127 3183.8852~~gge639~0#@$PAD~RECT~4528.281~3187.443~5.5512~5.315~1~CAN1_U2_8~2~0~4525.5049 3190.1002 4525.5049 3184.7852 4531.0561 3184.7852 4531.0561 3190.1002~0~gge651~0~~Y~0~-393.7008~0.2000~4528.2805,3187.4427#@$PAD~RECT~4520.406~3187.443~5.5512~5.315~1~GND~1~0~4523.1819 3190.1002 4523.1819 3184.7852 4517.6307 3184.7852 4517.6307 3190.1002~0~gge663~0~~Y~0~-393.7008~0.2000~4520.4063,3187.4427","LIB~4550.3434~3154.4427~package`R0805`Contributor`lcsc`link`https:\/\/item.szlcsc.com\/142685.html`3DModel`R0805_L2.0-W1.3-H0.6`BOM_Supplier`LCSC`BOM_Manufacturer`UniOhm`BOM_Manufacturer Part`0805W8F1002T5E`nameAlias`Resistance (Ohms)`BOM_Supplier Part`C17414`BOM_JLCPCB Part Class`Basic Part`spicePre`R`spiceSymbolName`0805W8F1002T5E`~180~~gge353b166cc2dee846~1~b60f399a7a7e41848b2be1eb49c79141~1667381294~0~~yes~~#@$SOLIDREGION~100~~M 4554.2804 3151.9329 L 4554.2804 3156.9525 L 4552.7056 3156.9525 L 4552.7056 3151.9329 Z ~solid~gge693~~~~0#@$SOLIDREGION~100~~M 4546.4064 3151.9329 L 4546.4064 3156.9525 L 4547.9812 3156.9525 L 4547.9812 3151.9329 Z ~solid~gge696~~~~0#@$SOLIDREGION~99~~M 4554.2804 3151.9329 L 4554.2804 3156.9525 L 4546.4064 3156.9525 L 4546.4064 3151.9329 Z ~solid~gge699~~~~0#@$SOLIDREGION~5~~M 4557.0364 3151.923 L 4557.0364 3156.9623 L 4556.8395 3157.1592 L 4552.3119 3157.1592 L 4552.1151 3156.9623 L 4552.0953 3155.348 L 4553.867 3155.348 L 4553.867 3153.5764 L 4552.1347 3153.5764 L 4552.1151 3151.923 L 4552.3119 3151.7261 L 4556.8395 3151.7261 Z ~solid~gge702~~~~0#@$SOLIDREGION~5~~M 4548.5718 3151.923 L 4548.5717 3153.5764 L 4546.8198 3153.5764 L 4546.8198 3155.348 L 4548.552 3155.348 L 4548.5718 3156.9623 L 4548.3749 3157.1592 L 4543.8474 3157.1592 L 4543.6505 3156.9623 L 4543.6505 3151.923 L 4543.8474 3151.7261 L 4548.3749 3151.7261 Z ~solid~gge705~~~~0#@$CIRCLE~4554.2804~3151.9327~0.118~0.2362~101~gge714~0~~#@$SVGNODE~{\"gId\":\"gge717\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"7.874\",\"c_height\":\"5.1181\",\"c_rotation\":\"0,0,180\",\"z\":\"0\",\"c_origin\":\"4550.3433,3154.4426\",\"uuid\":\"c7acac53bcbc44d68fbab8f60a747688\",\"c_etype\":\"outline3D\",\"title\":\"R0805_L2.0-W1.3-H0.6\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge717\"},\"childNodes\":[{\"gId\":\"gge720\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4554.2804 3157.0017 4554.2804 3151.8836 4554.0836 3151.8836 4553.493 3151.8836 4553.0993 3151.8836 4552.7056 3151.8836 4550.1466 3151.8836 4547.9812 3151.8836 4547.5875 3151.8836 4547.1938 3151.8836 4546.6033 3151.8836 4546.4064 3151.8836 4546.4064 3157.0017 4546.6033 3157.0017 4547.1938 3157.0017 4547.5875 3157.0017 4547.9812 3157.0017 4550.1466 3157.0017 4552.7056 3157.0017 4553.0993 3157.0017 4553.493 3157.0017 4554.0836 3157.0017 4554.2804 3157.0017 4554.2804 3157.0017\",\"id\":\"gge720\"}}]}#@$TEXT~N~4540.8934~3171.2327~0.6~0~0~3~~4.5~10K~M 4540.8932 3167.5127 L 4541.3032 3167.3027 L 4541.9132 3166.6927 L 4541.9132 3170.9827 M 4544.4932 3166.6927 L 4543.8832 3166.8927 L 4543.4732 3167.5127 L 4543.2632 3168.5327 L 4543.2632 3169.1427 L 4543.4732 3170.1727 L 4543.8832 3170.7827 L 4544.4932 3170.9827 L 4544.9032 3170.9827 L 4545.5132 3170.7827 L 4545.9232 3170.1727 L 4546.1332 3169.1427 L 4546.1332 3168.5327 L 4545.9232 3167.5127 L 4545.5132 3166.8927 L 4544.9032 3166.6927 L 4544.4932 3166.6927 M 4547.4832 3166.6927 L 4547.4832 3170.9827 M 4550.3432 3166.6927 L 4547.4832 3169.5527 M 4548.5032 3168.5327 L 4550.3432 3170.9827~none~gge681~~0~#@$TEXT~P~4533.3434~3149.4427~0.6~0~0~3~~4.5~CAN0_R2~M 4536.4134 3145.9227 L 4536.2034 3145.5127 L 4535.7934 3145.1027 L 4535.3934 3144.9027 L 4534.5734 3144.9027 L 4534.1634 3145.1027 L 4533.7534 3145.5127 L 4533.5434 3145.9227 L 4533.3434 3146.5427 L 4533.3434 3147.5627 L 4533.5434 3148.1727 L 4533.7534 3148.5827 L 4534.1634 3148.9927 L 4534.5734 3149.1927 L 4535.3934 3149.1927 L 4535.7934 3148.9927 L 4536.2034 3148.5827 L 4536.4134 3148.1727 M 4539.3934 3144.9027 L 4537.7634 3149.1927 M 4539.3934 3144.9027 L 4541.0334 3149.1927 M 4538.3734 3147.7627 L 4540.4234 3147.7627 M 4542.3834 3144.9027 L 4542.3834 3149.1927 M 4542.3834 3144.9027 L 4545.2434 3149.1927 M 4545.2434 3144.9027 L 4545.2434 3149.1927 M 4547.8234 3144.9027 L 4547.2134 3145.1027 L 4546.8034 3145.7227 L 4546.5934 3146.7427 L 4546.5934 3147.3527 L 4546.8034 3148.3827 L 4547.2134 3148.9927 L 4547.8234 3149.1927 L 4548.2334 3149.1927 L 4548.8434 3148.9927 L 4549.2534 3148.3827 L 4549.4634 3147.3527 L 4549.4634 3146.7427 L 4549.2534 3145.7227 L 4548.8434 3145.1027 L 4548.2334 3144.9027 L 4547.8234 3144.9027 M 4550.8134 3150.6327 L 4554.4934 3150.6327 M 4555.8434 3144.9027 L 4555.8434 3149.1927 M 4555.8434 3144.9027 L 4557.6834 3144.9027 L 4558.2934 3145.1027 L 4558.5034 3145.3127 L 4558.7034 3145.7227 L 4558.7034 3146.1327 L 4558.5034 3146.5427 L 4558.2934 3146.7427 L 4557.6834 3146.9427 L 4555.8434 3146.9427 M 4557.2734 3146.9427 L 4558.7034 3149.1927 M 4560.2634 3145.9227 L 4560.2634 3145.7227 L 4560.4634 3145.3127 L 4560.6734 3145.1027 L 4561.0834 3144.9027 L 4561.8934 3144.9027 L 4562.3034 3145.1027 L 4562.5134 3145.3127 L 4562.7134 3145.7227 L 4562.7134 3146.1327 L 4562.5134 3146.5427 L 4562.1034 3147.1527 L 4560.0534 3149.1927 L 4562.9234 3149.1927~~gge687~~0~#@$TRACK~0.6~3~~4548.4686 3150.8321 4543.4098 3150.8321 4543.4098 3158.0533 4548.4686 3158.0533~gge708~0#@$TRACK~0.6~3~~4552.2182 3150.8321 4557.277 3150.8321 4557.277 3158.0533 4552.2182 3158.0533~gge711~0#@$PAD~RECT~4546.4064~3154.4427~4.4588~5.4213~1~CAN0_U2_8~2~0~4548.6356 3151.7321 4548.6356 3157.1533 4544.1768 3157.1533 4544.1768 3151.7321~180~gge723~0~~Y~0~-393.7008~0.2000~4546.4062,3154.4427#@$PAD~RECT~4554.2804~3154.4427~4.4588~5.4213~1~GND~1~0~4552.0512 3151.7321 4552.0512 3157.1533 4556.51 3157.1533 4556.51 3151.7321~180~gge735~0~~Y~0~-393.7008~0.2000~4554.2806,3154.4427","LIB~4551.3434~3167.9427~package`R0805`Contributor`lcsc`link`https:\/\/item.szlcsc.com\/142685.html`3DModel`R0805_L2.0-W1.3-H0.6`BOM_Supplier`LCSC`BOM_Manufacturer`UniOhm`BOM_Manufacturer Part`0805W8F1200T5E`nameAlias`Resistance (Ohms)`BOM_Supplier Part`C17437`BOM_JLCPCB Part Class`Basic Part`spicePre`R`spiceSymbolName`0805W8F1200T5E`~180~~ggefe89d0632cfce75f~1~b60f399a7a7e41848b2be1eb49c79141~1667381294~0~~yes~~#@$SOLIDREGION~100~~M 4555.2804 3165.4329 L 4555.2804 3170.4525 L 4553.7056 3170.4525 L 4553.7056 3165.4329 Z ~solid~gge765~~~~0#@$SOLIDREGION~100~~M 4547.4064 3165.4329 L 4547.4064 3170.4525 L 4548.9812 3170.4525 L 4548.9812 3165.4329 Z ~solid~gge768~~~~0#@$SOLIDREGION~99~~M 4555.2804 3165.4329 L 4555.2804 3170.4525 L 4547.4064 3170.4525 L 4547.4064 3165.4329 Z ~solid~gge771~~~~0#@$SOLIDREGION~5~~M 4558.0364 3165.423 L 4558.0364 3170.4623 L 4557.8395 3170.6592 L 4553.3119 3170.6592 L 4553.1151 3170.4623 L 4553.0953 3168.848 L 4554.867 3168.848 L 4554.867 3167.0764 L 4553.1347 3167.0764 L 4553.1151 3165.423 L 4553.3119 3165.2261 L 4557.8395 3165.2261 Z ~solid~gge774~~~~0#@$SOLIDREGION~5~~M 4549.5718 3165.423 L 4549.5717 3167.0764 L 4547.8198 3167.0764 L 4547.8198 3168.848 L 4549.552 3168.848 L 4549.5718 3170.4623 L 4549.3749 3170.6592 L 4544.8474 3170.6592 L 4544.6505 3170.4623 L 4544.6505 3165.423 L 4544.8474 3165.2261 L 4549.3749 3165.2261 Z ~solid~gge777~~~~0#@$CIRCLE~4555.2809~3165.4332~0.118~0.2362~101~gge786~0~~#@$SVGNODE~{\"gId\":\"gge789\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"7.874\",\"c_height\":\"5.1181\",\"c_rotation\":\"0,0,180\",\"z\":\"0\",\"c_origin\":\"4551.3433,3167.9426\",\"uuid\":\"c7acac53bcbc44d68fbab8f60a747688\",\"c_etype\":\"outline3D\",\"title\":\"R0805_L2.0-W1.3-H0.6\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge789\"},\"childNodes\":[{\"gId\":\"gge792\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4555.2804 3170.5017 4555.2804 3165.3836 4555.0836 3165.3836 4554.493 3165.3836 4554.0993 3165.3836 4553.7056 3165.3836 4551.1466 3165.3836 4548.9812 3165.3836 4548.5875 3165.3836 4548.1938 3165.3836 4547.6033 3165.3836 4547.4064 3165.3836 4547.4064 3170.5017 4547.6033 3170.5017 4548.1938 3170.5017 4548.5875 3170.5017 4548.9812 3170.5017 4551.1466 3170.5017 4553.7056 3170.5017 4554.0993 3170.5017 4554.493 3170.5017 4555.0836 3170.5017 4555.2804 3170.5017 4555.2804 3170.5017\",\"id\":\"gge792\"}}]}#@$TEXT~N~4541.8929~3184.7332~0.6~0~0~3~~4.5~120~M 4541.8932 3181.0127 L 4542.3032 3180.8027 L 4542.9132 3180.1927 L 4542.9132 3184.4827 M 4544.4732 3181.2127 L 4544.4732 3181.0127 L 4544.6732 3180.6027 L 4544.8832 3180.3927 L 4545.2932 3180.1927 L 4546.1032 3180.1927 L 4546.5132 3180.3927 L 4546.7232 3180.6027 L 4546.9232 3181.0127 L 4546.9232 3181.4227 L 4546.7232 3181.8327 L 4546.3132 3182.4427 L 4544.2632 3184.4827 L 4547.1332 3184.4827 M 4549.7032 3180.1927 L 4549.0932 3180.3927 L 4548.6832 3181.0127 L 4548.4832 3182.0327 L 4548.4832 3182.6427 L 4548.6832 3183.6727 L 4549.0932 3184.2827 L 4549.7032 3184.4827 L 4550.1132 3184.4827 L 4550.7332 3184.2827 L 4551.1432 3183.6727 L 4551.3432 3182.6427 L 4551.3432 3182.0327 L 4551.1432 3181.0127 L 4550.7332 3180.3927 L 4550.1132 3180.1927 L 4549.7032 3180.1927~none~gge753~~0~#@$TEXT~P~4539.3434~3162.9427~0.6~0~0~3~~4.5~CAN0_T~M 4542.4137 3159.4216 L 4542.2037 3159.0116 L 4541.7937 3158.6016 L 4541.3937 3158.4016 L 4540.5737 3158.4016 L 4540.1637 3158.6016 L 4539.7537 3159.0116 L 4539.5437 3159.4216 L 4539.3437 3160.0416 L 4539.3437 3161.0616 L 4539.5437 3161.6716 L 4539.7537 3162.0816 L 4540.1637 3162.4916 L 4540.5737 3162.6916 L 4541.3937 3162.6916 L 4541.7937 3162.4916 L 4542.2037 3162.0816 L 4542.4137 3161.6716 M 4545.3937 3158.4016 L 4543.7637 3162.6916 M 4545.3937 3158.4016 L 4547.0337 3162.6916 M 4544.3737 3161.2616 L 4546.4237 3161.2616 M 4548.3837 3158.4016 L 4548.3837 3162.6916 M 4548.3837 3158.4016 L 4551.2437 3162.6916 M 4551.2437 3158.4016 L 4551.2437 3162.6916 M 4553.8237 3158.4016 L 4553.2137 3158.6016 L 4552.8037 3159.2216 L 4552.5937 3160.2416 L 4552.5937 3160.8516 L 4552.8037 3161.8816 L 4553.2137 3162.4916 L 4553.8237 3162.6916 L 4554.2337 3162.6916 L 4554.8437 3162.4916 L 4555.2537 3161.8816 L 4555.4637 3160.8516 L 4555.4637 3160.2416 L 4555.2537 3159.2216 L 4554.8437 3158.6016 L 4554.2337 3158.4016 L 4553.8237 3158.4016 M 4556.8137 3164.1316 L 4560.4937 3164.1316 M 4563.2737 3158.4016 L 4563.2737 3162.6916 M 4561.8437 3158.4016 L 4564.7037 3158.4016~~gge759~~0~#@$TRACK~0.6~3~~4549.4686 3164.3321 4544.4098 3164.3321 4544.4098 3171.5533 4549.4686 3171.5533~gge780~0#@$TRACK~0.6~3~~4553.2182 3164.3321 4558.277 3164.3321 4558.277 3171.5533 4553.2182 3171.5533~gge783~0#@$PAD~RECT~4547.4059~3167.9432~4.4588~5.4213~1~CAN0_H~2~0~4549.6356 3165.2321 4549.6356 3170.6533 4545.1768 3170.6533 4545.1768 3165.2321~180~gge795~0~~Y~0~-393.7008~0.2000~4547.4062,3167.9427#@$PAD~RECT~4555.2809~3167.9432~4.4588~5.4213~1~CAN0_T_1~1~0~4553.0512 3165.2321 4553.0512 3170.6533 4557.51 3170.6533 4557.51 3165.2321~180~gge807~0~~Y~0~-393.7008~0.2000~4555.2806,3167.9427","LIB~4589.5~3199~package`R0805`Contributor`lcsc`link`https:\/\/item.szlcsc.com\/142685.html`3DModel`R0805_L2.0-W1.3-H0.6`BOM_Supplier`LCSC`BOM_Manufacturer`UniOhm`BOM_Manufacturer Part`0805W8F1002T5E`nameAlias`Resistance (Ohms)`BOM_Supplier Part`C17414`BOM_JLCPCB Part Class`Basic Part`spicePre`R`spiceSymbolName`0805W8F1002T5E`~~~gge9cdd622c9eeecfe7~1~b60f399a7a7e41848b2be1eb49c79141~1667381294~0~~yes~~#@$SOLIDREGION~100~~M 4585.563 3201.5098 L 4585.563 3196.4902 L 4587.1378 3196.4902 L 4587.1378 3201.5098 Z ~solid~gge837~~~~0#@$SOLIDREGION~100~~M 4593.437 3201.5098 L 4593.437 3196.4902 L 4591.8622 3196.4902 L 4591.8622 3201.5098 Z ~solid~gge840~~~~0#@$SOLIDREGION~99~~M 4585.563 3201.5098 L 4585.563 3196.4902 L 4593.437 3196.4902 L 4593.437 3201.5098 Z ~solid~gge843~~~~0#@$SOLIDREGION~5~~M 4582.807 3201.5197 L 4582.807 3196.4804 L 4583.0039 3196.2835 L 4587.5315 3196.2835 L 4587.7283 3196.4804 L 4587.7481 3198.0947 L 4585.9764 3198.0947 L 4585.9764 3199.8663 L 4587.7087 3199.8663 L 4587.7283 3201.5197 L 4587.5315 3201.7166 L 4583.0039 3201.7166 Z ~solid~gge846~~~~0#@$SOLIDREGION~5~~M 4591.2716 3201.5197 L 4591.2717 3199.8663 L 4593.0236 3199.8663 L 4593.0236 3198.0947 L 4591.2914 3198.0947 L 4591.2716 3196.4804 L 4591.4685 3196.2835 L 4595.996 3196.2835 L 4596.1929 3196.4804 L 4596.1929 3201.5197 L 4595.996 3201.7166 L 4591.4685 3201.7166 Z ~solid~gge849~~~~0#@$CIRCLE~4585.563~3201.51~0.118~0.2362~101~gge858~0~~#@$SVGNODE~{\"gId\":\"gge861\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"7.874\",\"c_height\":\"5.1181\",\"c_rotation\":\"0,0,0\",\"z\":\"0\",\"c_origin\":\"4589.5,3199\",\"uuid\":\"c7acac53bcbc44d68fbab8f60a747688\",\"c_etype\":\"outline3D\",\"title\":\"R0805_L2.0-W1.3-H0.6\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge861\"},\"childNodes\":[{\"gId\":\"gge864\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4585.563 3196.441 4585.563 3201.5591 4585.7598 3201.5591 4586.3504 3201.5591 4586.7441 3201.5591 4587.1378 3201.5591 4589.6968 3201.5591 4591.8622 3201.5591 4592.2559 3201.5591 4592.6496 3201.5591 4593.2401 3201.5591 4593.437 3201.5591 4593.437 3196.441 4593.2401 3196.441 4592.6496 3196.441 4592.2559 3196.441 4591.8622 3196.441 4589.6968 3196.441 4587.1378 3196.441 4586.7441 3196.441 4586.3504 3196.441 4585.7598 3196.441 4585.563 3196.441 4585.563 3196.441\",\"id\":\"gge864\"}}]}#@$TEXT~N~4589.5~3187~0.6~0~0~3~~4.5~10K~M 4589.5 3183.28 L 4589.91 3183.07 L 4590.52 3182.46 L 4590.52 3186.75 M 4593.1 3182.46 L 4592.49 3182.66 L 4592.08 3183.28 L 4591.87 3184.3 L 4591.87 3184.91 L 4592.08 3185.94 L 4592.49 3186.55 L 4593.1 3186.75 L 4593.51 3186.75 L 4594.12 3186.55 L 4594.53 3185.94 L 4594.74 3184.91 L 4594.74 3184.3 L 4594.53 3183.28 L 4594.12 3182.66 L 4593.51 3182.46 L 4593.1 3182.46 M 4596.09 3182.46 L 4596.09 3186.75 M 4598.95 3182.46 L 4596.09 3185.32 M 4597.11 3184.3 L 4598.95 3186.75~none~gge825~~0~#@$TEXT~P~4578.072~3192.409~0.6~0~0~3~~4.5~CAN1_R1~M 4581.142 3188.889 L 4580.932 3188.479 L 4580.522 3188.069 L 4580.122 3187.869 L 4579.302 3187.869 L 4578.892 3188.069 L 4578.482 3188.479 L 4578.272 3188.889 L 4578.072 3189.509 L 4578.072 3190.529 L 4578.272 3191.139 L 4578.482 3191.549 L 4578.892 3191.959 L 4579.302 3192.159 L 4580.122 3192.159 L 4580.522 3191.959 L 4580.932 3191.549 L 4581.142 3191.139 M 4584.122 3187.869 L 4582.492 3192.159 M 4584.122 3187.869 L 4585.762 3192.159 M 4583.102 3190.729 L 4585.152 3190.729 M 4587.112 3187.869 L 4587.112 3192.159 M 4587.112 3187.869 L 4589.972 3192.159 M 4589.972 3187.869 L 4589.972 3192.159 M 4591.322 3188.689 L 4591.732 3188.479 L 4592.352 3187.869 L 4592.352 3192.159 M 4593.702 3193.599 L 4597.382 3193.599 M 4598.732 3187.869 L 4598.732 3192.159 M 4598.732 3187.869 L 4600.572 3187.869 L 4601.182 3188.069 L 4601.392 3188.279 L 4601.592 3188.689 L 4601.592 3189.099 L 4601.392 3189.509 L 4601.182 3189.709 L 4600.572 3189.909 L 4598.732 3189.909 M 4600.162 3189.909 L 4601.592 3192.159 M 4602.942 3188.689 L 4603.352 3188.479 L 4603.972 3187.869 L 4603.972 3192.159~~gge831~~0~#@$TRACK~0.6~3~~4591.3748 3202.6106 4596.4336 3202.6106 4596.4336 3195.3894 4591.3748 3195.3894~gge852~0#@$TRACK~0.6~3~~4587.6252 3202.6106 4582.5664 3202.6106 4582.5664 3195.3894 4587.6252 3195.3894~gge855~0#@$PAD~RECT~4593.437~3199~4.4588~5.4213~1~CAN1_U1_8~2~0~4591.2078 3201.7106 4591.2078 3196.2894 4595.6666 3196.2894 4595.6666 3201.7106~0~gge867~0~~Y~0~-393.7008~0.2000~4593.4372,3199#@$PAD~RECT~4585.563~3199~4.4588~5.4213~1~GND~1~0~4587.7922 3201.7106 4587.7922 3196.2894 4583.3334 3196.2894 4583.3334 3201.7106~0~gge879~0~~Y~0~-393.7008~0.2000~4585.5628,3199","LIB~4457.3434~3241.4427~package`R0805`Contributor`lcsc`link`https:\/\/item.szlcsc.com\/142685.html`3DModel`R0805_L2.0-W1.3-H0.6`BOM_Supplier`LCSC`BOM_Manufacturer`UniOhm`BOM_Manufacturer Part`0805W8F4701T5E`nameAlias`Resistance (Ohms)`BOM_Supplier Part`C17673`BOM_JLCPCB Part Class`Basic Part`spicePre`R`spiceSymbolName`0805W8F4701T5E`~270~~ggeba2c6d155e7fd301~1~b60f399a7a7e41848b2be1eb49c79141~1667381294~0~~yes~~#@$SOLIDREGION~100~~M 4454.8336 3237.5057 L 4459.8532 3237.5057 L 4459.8532 3239.0805 L 4454.8336 3239.0805 Z ~solid~gge909~~~~0#@$SOLIDREGION~100~~M 4454.8336 3245.3797 L 4459.8532 3245.3797 L 4459.8532 3243.8049 L 4454.8336 3243.8049 Z ~solid~gge912~~~~0#@$SOLIDREGION~99~~M 4454.8336 3237.5057 L 4459.8532 3237.5057 L 4459.8532 3245.3797 L 4454.8336 3245.3797 Z ~solid~gge915~~~~0#@$SOLIDREGION~5~~M 4454.8237 3234.7497 L 4459.863 3234.7497 L 4460.0599 3234.9466 L 4460.0599 3239.4742 L 4459.863 3239.671 L 4458.2487 3239.6908 L 4458.2487 3237.9191 L 4456.4771 3237.9191 L 4456.4771 3239.6514 L 4454.8237 3239.671 L 4454.6268 3239.4742 L 4454.6268 3234.9466 Z ~solid~gge918~~~~0#@$SOLIDREGION~5~~M 4454.8237 3243.2143 L 4456.4771 3243.2144 L 4456.4771 3244.9663 L 4458.2487 3244.9663 L 4458.2487 3243.2341 L 4459.863 3243.2143 L 4460.0599 3243.4112 L 4460.0599 3247.9387 L 4459.863 3248.1356 L 4454.8237 3248.1356 L 4454.6268 3247.9387 L 4454.6268 3243.4112 Z ~solid~gge921~~~~0#@$CIRCLE~4454.8334~3237.5057~0.118~0.2362~101~gge930~0~~#@$SVGNODE~{\"gId\":\"gge933\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"7.874\",\"c_height\":\"5.1181\",\"c_rotation\":\"0,0,270\",\"z\":\"0\",\"c_origin\":\"4457.3433,3241.4426\",\"uuid\":\"c7acac53bcbc44d68fbab8f60a747688\",\"c_etype\":\"outline3D\",\"title\":\"R0805_L2.0-W1.3-H0.6\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge933\"},\"childNodes\":[{\"gId\":\"gge936\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4459.9024 3237.5057 4454.7843 3237.5057 4454.7843 3237.7025 4454.7843 3238.2931 4454.7843 3238.6868 4454.7843 3239.0805 4454.7843 3241.6395 4454.7843 3243.8049 4454.7843 3244.1986 4454.7843 3244.5923 4454.7843 3245.1828 4454.7843 3245.3797 4459.9024 3245.3797 4459.9024 3245.1828 4459.9024 3244.5923 4459.9024 3244.1986 4459.9024 3243.8049 4459.9024 3241.6395 4459.9024 3239.0805 4459.9024 3238.6868 4459.9024 3238.2931 4459.9024 3237.7025 4459.9024 3237.5057 4459.9024 3237.5057\",\"id\":\"gge936\"}}]}#@$TEXT~N~4474.1333~3254.693~0.6~90~0~3~~4.5~4.7K~M 4469.5933 3252.643 L 4472.4533 3254.693 L 4472.4533 3251.623 M 4469.5933 3252.643 L 4473.8833 3252.643 M 4472.8633 3250.073 L 4473.0733 3250.273 L 4473.2733 3250.073 L 4473.0733 3249.863 L 4472.8633 3250.073 M 4469.5933 3245.653 L 4473.8833 3247.693 M 4469.5933 3248.513 L 4469.5933 3245.653 M 4469.5933 3244.303 L 4473.8833 3244.303 M 4469.5933 3241.443 L 4472.4533 3244.303 M 4471.4333 3243.283 L 4473.8833 3241.443~none~gge897~~0~#@$TEXT~P~4452.3434~3253.9427~0.6~90~0~3~~4.5~CAN1_R3~M 4448.8234 3250.8727 L 4448.4134 3251.0827 L 4448.0034 3251.4927 L 4447.8034 3251.8927 L 4447.8034 3252.7127 L 4448.0034 3253.1227 L 4448.4134 3253.5327 L 4448.8234 3253.7427 L 4449.4434 3253.9427 L 4450.4634 3253.9427 L 4451.0734 3253.7427 L 4451.4834 3253.5327 L 4451.8934 3253.1227 L 4452.0934 3252.7127 L 4452.0934 3251.8927 L 4451.8934 3251.4927 L 4451.4834 3251.0827 L 4451.0734 3250.8727 M 4447.8034 3247.8927 L 4452.0934 3249.5227 M 4447.8034 3247.8927 L 4452.0934 3246.2527 M 4450.6634 3248.9127 L 4450.6634 3246.8627 M 4447.8034 3244.9027 L 4452.0934 3244.9027 M 4447.8034 3244.9027 L 4452.0934 3242.0427 M 4447.8034 3242.0427 L 4452.0934 3242.0427 M 4448.6234 3240.6927 L 4448.4134 3240.2827 L 4447.8034 3239.6627 L 4452.0934 3239.6627 M 4453.5334 3238.3127 L 4453.5334 3234.6327 M 4447.8034 3233.2827 L 4452.0934 3233.2827 M 4447.8034 3233.2827 L 4447.8034 3231.4427 L 4448.0034 3230.8327 L 4448.2134 3230.6227 L 4448.6234 3230.4227 L 4449.0334 3230.4227 L 4449.4434 3230.6227 L 4449.6434 3230.8327 L 4449.8434 3231.4427 L 4449.8434 3233.2827 M 4449.8434 3231.8527 L 4452.0934 3230.4227 M 4447.8034 3228.6627 L 4447.8034 3226.4127 L 4449.4434 3227.6427 L 4449.4434 3227.0227 L 4449.6434 3226.6127 L 4449.8434 3226.4127 L 4450.4634 3226.2027 L 4450.8734 3226.2027 L 4451.4834 3226.4127 L 4451.8934 3226.8227 L 4452.0934 3227.4327 L 4452.0934 3228.0427 L 4451.8934 3228.6627 L 4451.6934 3228.8627 L 4451.2834 3229.0727~~gge903~~0~#@$TRACK~0.6~3~~4453.7328 3243.3175 4453.7328 3248.3763 4460.954 3248.3763 4460.954 3243.3175~gge924~0#@$TRACK~0.6~3~~4453.7328 3239.5679 4453.7328 3234.5091 4460.954 3234.5091 4460.954 3239.5679~gge927~0#@$PAD~RECT~4457.3434~3245.3797~4.4588~5.4213~1~+3.3V~2~0~4454.6328 3243.1505 4460.054 3243.1505 4460.054 3247.6093 4454.6328 3247.6093~270~gge939~0~~Y~0~-393.7008~0.2000~4457.3434,3245.3799#@$PAD~RECT~4457.3434~3237.5057~4.4588~5.4213~1~CAN1_U2_17~1~0~4454.6328 3239.7349 4460.054 3239.7349 4460.054 3235.2761 4454.6328 3235.2761~270~gge951~0~~Y~0~-393.7008~0.2000~4457.3434,3237.5055","LIB~4613.3434~3241.4427~package`R0805`Contributor`lcsc`link`https:\/\/item.szlcsc.com\/142685.html`3DModel`R0805_L2.0-W1.3-H0.6`BOM_Supplier`LCSC`BOM_Manufacturer`UniOhm`BOM_Manufacturer Part`0805W8F1200T5E`nameAlias`Resistance (Ohms)`BOM_Supplier Part`C17437`BOM_JLCPCB Part Class`Basic Part`spicePre`R`spiceSymbolName`0805W8F1200T5E`~180~~ggee06ccd13940482ac~1~b60f399a7a7e41848b2be1eb49c79141~1667381294~0~~yes~~#@$SOLIDREGION~100~~M 4617.2804 3238.9329 L 4617.2804 3243.9525 L 4615.7056 3243.9525 L 4615.7056 3238.9329 Z ~solid~gge1053~~~~0#@$SOLIDREGION~100~~M 4609.4064 3238.9329 L 4609.4064 3243.9525 L 4610.9812 3243.9525 L 4610.9812 3238.9329 Z ~solid~gge1056~~~~0#@$SOLIDREGION~99~~M 4617.2804 3238.9329 L 4617.2804 3243.9525 L 4609.4064 3243.9525 L 4609.4064 3238.9329 Z ~solid~gge1059~~~~0#@$SOLIDREGION~5~~M 4620.0364 3238.923 L 4620.0364 3243.9623 L 4619.8395 3244.1592 L 4615.3119 3244.1592 L 4615.1151 3243.9623 L 4615.0953 3242.348 L 4616.867 3242.348 L 4616.867 3240.5764 L 4615.1347 3240.5764 L 4615.1151 3238.923 L 4615.3119 3238.7261 L 4619.8395 3238.7261 Z ~solid~gge1062~~~~0#@$SOLIDREGION~5~~M 4611.5718 3238.923 L 4611.5717 3240.5764 L 4609.8198 3240.5764 L 4609.8198 3242.348 L 4611.552 3242.348 L 4611.5718 3243.9623 L 4611.3749 3244.1592 L 4606.8474 3244.1592 L 4606.6505 3243.9623 L 4606.6505 3238.923 L 4606.8474 3238.7261 L 4611.3749 3238.7261 Z ~solid~gge1065~~~~0#@$CIRCLE~4617.2804~3238.9327~0.118~0.2362~101~gge1074~0~~#@$SVGNODE~{\"gId\":\"gge1077\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"7.874\",\"c_height\":\"5.1181\",\"c_rotation\":\"0,0,180\",\"z\":\"0\",\"c_origin\":\"4613.3433,3241.4426\",\"uuid\":\"c7acac53bcbc44d68fbab8f60a747688\",\"c_etype\":\"outline3D\",\"title\":\"R0805_L2.0-W1.3-H0.6\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge1077\"},\"childNodes\":[{\"gId\":\"gge1080\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4617.2804 3244.0017 4617.2804 3238.8836 4617.0836 3238.8836 4616.493 3238.8836 4616.0993 3238.8836 4615.7056 3238.8836 4613.1466 3238.8836 4610.9812 3238.8836 4610.5875 3238.8836 4610.1938 3238.8836 4609.6033 3238.8836 4609.4064 3238.8836 4609.4064 3244.0017 4609.6033 3244.0017 4610.1938 3244.0017 4610.5875 3244.0017 4610.9812 3244.0017 4613.1466 3244.0017 4615.7056 3244.0017 4616.0993 3244.0017 4616.493 3244.0017 4617.0836 3244.0017 4617.2804 3244.0017 4617.2804 3244.0017\",\"id\":\"gge1080\"}}]}#@$TEXT~N~4603.8934~3258.2326~0.6~0~0~3~~4.5~120~M 4603.8934 3254.5126 L 4604.3034 3254.3026 L 4604.9134 3253.6926 L 4604.9134 3257.9826 M 4606.4734 3254.7126 L 4606.4734 3254.5126 L 4606.6734 3254.1026 L 4606.8834 3253.8926 L 4607.2934 3253.6926 L 4608.1034 3253.6926 L 4608.5134 3253.8926 L 4608.7234 3254.1026 L 4608.9234 3254.5126 L 4608.9234 3254.9226 L 4608.7234 3255.3326 L 4608.3134 3255.9426 L 4606.2634 3257.9826 L 4609.1334 3257.9826 M 4611.7034 3253.6926 L 4611.0934 3253.8926 L 4610.6834 3254.5126 L 4610.4834 3255.5326 L 4610.4834 3256.1426 L 4610.6834 3257.1726 L 4611.0934 3257.7826 L 4611.7034 3257.9826 L 4612.1134 3257.9826 L 4612.7334 3257.7826 L 4613.1434 3257.1726 L 4613.3434 3256.1426 L 4613.3434 3255.5326 L 4613.1434 3254.5126 L 4612.7334 3253.8926 L 4612.1134 3253.6926 L 4611.7034 3253.6926~none~gge1041~~0~#@$TEXT~P~4608.8434~3251.4427~0.6~0~0~3~~4.5~CAN1_T~M 4611.9138 3247.9224 L 4611.7038 3247.5124 L 4611.2938 3247.1024 L 4610.8938 3246.9024 L 4610.0738 3246.9024 L 4609.6638 3247.1024 L 4609.2538 3247.5124 L 4609.0438 3247.9224 L 4608.8438 3248.5424 L 4608.8438 3249.5624 L 4609.0438 3250.1724 L 4609.2538 3250.5824 L 4609.6638 3250.9924 L 4610.0738 3251.1924 L 4610.8938 3251.1924 L 4611.2938 3250.9924 L 4611.7038 3250.5824 L 4611.9138 3250.1724 M 4614.8938 3246.9024 L 4613.2638 3251.1924 M 4614.8938 3246.9024 L 4616.5338 3251.1924 M 4613.8738 3249.7624 L 4615.9238 3249.7624 M 4617.8838 3246.9024 L 4617.8838 3251.1924 M 4617.8838 3246.9024 L 4620.7438 3251.1924 M 4620.7438 3246.9024 L 4620.7438 3251.1924 M 4622.0938 3247.7224 L 4622.5038 3247.5124 L 4623.1238 3246.9024 L 4623.1238 3251.1924 M 4624.4738 3252.6324 L 4628.1538 3252.6324 M 4630.9338 3246.9024 L 4630.9338 3251.1924 M 4629.5038 3246.9024 L 4632.3638 3246.9024~~gge1047~~0~#@$TRACK~0.6~3~~4611.4686 3237.8321 4606.4098 3237.8321 4606.4098 3245.0533 4611.4686 3245.0533~gge1068~0#@$TRACK~0.6~3~~4615.2182 3237.8321 4620.277 3237.8321 4620.277 3245.0533 4615.2182 3245.0533~gge1071~0#@$PAD~RECT~4609.4064~3241.4427~4.4588~5.4213~1~CAN1_H~2~0~4611.6356 3238.7321 4611.6356 3244.1533 4607.1768 3244.1533 4607.1768 3238.7321~180~gge1083~0~~Y~0~-393.7008~0.2000~4609.4062,3241.4427#@$PAD~RECT~4617.2804~3241.4427~4.4588~5.4213~1~CAN1_T_1~1~0~4615.0512 3238.7321 4615.0512 3244.1533 4619.51 3244.1533 4619.51 3238.7321~180~gge1095~0~~Y~0~-393.7008~0.2000~4617.2806,3241.4427","LIB~4550.3434~3174.9427~Contributor`rstevens81`package`SOLDER BRIDGE`BOM_Manufacturer Part`Solder bridge`BOM_Supplier Part``BOM_Supplier``spicePre`S`spiceSymbolName`Solder bridge`~270~~gged89f481c5f5a93cc~1~dbe7c809bc2a468485beb80acd7ba1b3~1518909661~0~~none~~#@$TEXT~N~4567.9038~3215.8727~0.6~90~0~3~~4.5~Solder bridge~M 4563.9733 3213.0127 L 4563.5633 3213.4227 L 4563.3633 3214.0327 L 4563.3633 3214.8527 L 4563.5633 3215.4627 L 4563.9733 3215.8727 L 4564.3833 3215.8727 L 4564.7933 3215.6727 L 4565.0033 3215.4627 L 4565.2033 3215.0527 L 4565.6133 3213.8227 L 4565.8133 3213.4227 L 4566.0233 3213.2127 L 4566.4333 3213.0127 L 4567.0433 3213.0127 L 4567.4533 3213.4227 L 4567.6533 3214.0327 L 4567.6533 3214.8527 L 4567.4533 3215.4627 L 4567.0433 3215.8727 M 4564.7933 3210.6327 L 4565.0033 3211.0427 L 4565.4033 3211.4527 L 4566.0233 3211.6627 L 4566.4333 3211.6627 L 4567.0433 3211.4527 L 4567.4533 3211.0427 L 4567.6533 3210.6327 L 4567.6533 3210.0227 L 4567.4533 3209.6127 L 4567.0433 3209.2027 L 4566.4333 3209.0027 L 4566.0233 3209.0027 L 4565.4033 3209.2027 L 4565.0033 3209.6127 L 4564.7933 3210.0227 L 4564.7933 3210.6327 M 4563.3633 3207.6527 L 4567.6533 3207.6527 M 4563.3633 3203.8427 L 4567.6533 3203.8427 M 4565.4033 3203.8427 L 4565.0033 3204.2527 L 4564.7933 3204.6627 L 4564.7933 3205.2727 L 4565.0033 3205.6827 L 4565.4033 3206.0927 L 4566.0233 3206.3027 L 4566.4333 3206.3027 L 4567.0433 3206.0927 L 4567.4533 3205.6827 L 4567.6533 3205.2727 L 4567.6533 3204.6627 L 4567.4533 3204.2527 L 4567.0433 3203.8427 M 4566.0233 3202.4927 L 4566.0233 3200.0427 L 4565.6133 3200.0427 L 4565.2033 3200.2427 L 4565.0033 3200.4527 L 4564.7933 3200.8627 L 4564.7933 3201.4727 L 4565.0033 3201.8827 L 4565.4033 3202.2927 L 4566.0233 3202.4927 L 4566.4333 3202.4927 L 4567.0433 3202.2927 L 4567.4533 3201.8827 L 4567.6533 3201.4727 L 4567.6533 3200.8627 L 4567.4533 3200.4527 L 4567.0433 3200.0427 M 4564.7933 3198.6927 L 4567.6533 3198.6927 M 4566.0233 3198.6927 L 4565.4033 3198.4827 L 4565.0033 3198.0727 L 4564.7933 3197.6727 L 4564.7933 3197.0527 M 4563.3633 3192.5527 L 4567.6533 3192.5527 M 4565.4033 3192.5527 L 4565.0033 3192.1427 L 4564.7933 3191.7327 L 4564.7933 3191.1227 L 4565.0033 3190.7127 L 4565.4033 3190.3027 L 4566.0233 3190.1027 L 4566.4333 3190.1027 L 4567.0433 3190.3027 L 4567.4533 3190.7127 L 4567.6533 3191.1227 L 4567.6533 3191.7327 L 4567.4533 3192.1427 L 4567.0433 3192.5527 M 4564.7933 3188.7527 L 4567.6533 3188.7527 M 4566.0233 3188.7527 L 4565.4033 3188.5427 L 4565.0033 3188.1327 L 4564.7933 3187.7227 L 4564.7933 3187.1127 M 4563.3633 3185.7627 L 4563.5633 3185.5627 L 4563.3633 3185.3527 L 4563.1533 3185.5627 L 4563.3633 3185.7627 M 4564.7933 3185.5627 L 4567.6533 3185.5627 M 4563.3633 3181.5527 L 4567.6533 3181.5527 M 4565.4033 3181.5527 L 4565.0033 3181.9627 L 4564.7933 3182.3727 L 4564.7933 3182.9827 L 4565.0033 3183.3927 L 4565.4033 3183.8027 L 4566.0233 3184.0027 L 4566.4333 3184.0027 L 4567.0433 3183.8027 L 4567.4533 3183.3927 L 4567.6533 3182.9827 L 4567.6533 3182.3727 L 4567.4533 3181.9627 L 4567.0433 3181.5527 M 4564.7933 3177.7427 L 4568.0633 3177.7427 L 4568.6833 3177.9527 L 4568.8833 3178.1527 L 4569.0933 3178.5627 L 4569.0933 3179.1727 L 4568.8833 3179.5827 M 4565.4033 3177.7427 L 4565.0033 3178.1527 L 4564.7933 3178.5627 L 4564.7933 3179.1727 L 4565.0033 3179.5827 L 4565.4033 3179.9927 L 4566.0233 3180.2027 L 4566.4333 3180.2027 L 4567.0433 3179.9927 L 4567.4533 3179.5827 L 4567.6533 3179.1727 L 4567.6533 3178.5627 L 4567.4533 3178.1527 L 4567.0433 3177.7427 M 4566.0233 3176.3927 L 4566.0233 3173.9427 L 4565.6133 3173.9427 L 4565.2033 3174.1427 L 4565.0033 3174.3527 L 4564.7933 3174.7627 L 4564.7933 3175.3727 L 4565.0033 3175.7827 L 4565.4033 3176.1927 L 4566.0233 3176.3927 L 4566.4333 3176.3927 L 4567.0433 3176.1927 L 4567.4533 3175.7827 L 4567.6533 3175.3727 L 4567.6533 3174.7627 L 4567.4533 3174.3527 L 4567.0433 3173.9427~none~gge1113~~0~#@$TEXT~P~4557.2219~3166.9427~0.6~270~0~3~~4.5~CAN0_TERM_SB~M 4560.7419 3170.0127 L 4561.1519 3169.8027 L 4561.5619 3169.3927 L 4561.7619 3168.9927 L 4561.7619 3168.1727 L 4561.5619 3167.7627 L 4561.1519 3167.3527 L 4560.7419 3167.1427 L 4560.1219 3166.9427 L 4559.1019 3166.9427 L 4558.4919 3167.1427 L 4558.0819 3167.3527 L 4557.6719 3167.7627 L 4557.4719 3168.1727 L 4557.4719 3168.9927 L 4557.6719 3169.3927 L 4558.0819 3169.8027 L 4558.4919 3170.0127 M 4561.7619 3172.9927 L 4557.4719 3171.3627 M 4561.7619 3172.9927 L 4557.4719 3174.6327 M 4558.9019 3171.9727 L 4558.9019 3174.0227 M 4561.7619 3175.9827 L 4557.4719 3175.9827 M 4561.7619 3175.9827 L 4557.4719 3178.8427 M 4561.7619 3178.8427 L 4557.4719 3178.8427 M 4561.7619 3181.4227 L 4561.5619 3180.8127 L 4560.9419 3180.4027 L 4559.9219 3180.1927 L 4559.3119 3180.1927 L 4558.2819 3180.4027 L 4557.6719 3180.8127 L 4557.4719 3181.4227 L 4557.4719 3181.8327 L 4557.6719 3182.4427 L 4558.2819 3182.8527 L 4559.3119 3183.0627 L 4559.9219 3183.0627 L 4560.9419 3182.8527 L 4561.5619 3182.4427 L 4561.7619 3181.8327 L 4561.7619 3181.4227 M 4556.0319 3184.4127 L 4556.0319 3188.0927 M 4561.7619 3190.8727 L 4557.4719 3190.8727 M 4561.7619 3189.4427 L 4561.7619 3192.3027 M 4561.7619 3193.6527 L 4557.4719 3193.6527 M 4561.7619 3193.6527 L 4561.7619 3196.3127 M 4559.7219 3193.6527 L 4559.7219 3195.2927 M 4557.4719 3193.6527 L 4557.4719 3196.3127 M 4561.7619 3197.6627 L 4557.4719 3197.6627 M 4561.7619 3197.6627 L 4561.7619 3199.5027 L 4561.5619 3200.1227 L 4561.3519 3200.3227 L 4560.9419 3200.5327 L 4560.5319 3200.5327 L 4560.1219 3200.3227 L 4559.9219 3200.1227 L 4559.7219 3199.5027 L 4559.7219 3197.6627 M 4559.7219 3199.0927 L 4557.4719 3200.5327 M 4561.7619 3201.8827 L 4557.4719 3201.8827 M 4561.7619 3201.8827 L 4557.4719 3203.5127 M 4561.7619 3205.1527 L 4557.4719 3203.5127 M 4561.7619 3205.1527 L 4557.4719 3205.1527 M 4556.0319 3206.5027 L 4556.0319 3210.1827 M 4561.1519 3214.3927 L 4561.5619 3213.9927 L 4561.7619 3213.3727 L 4561.7619 3212.5527 L 4561.5619 3211.9427 L 4561.1519 3211.5327 L 4560.7419 3211.5327 L 4560.3319 3211.7427 L 4560.1219 3211.9427 L 4559.9219 3212.3527 L 4559.5119 3213.5827 L 4559.3119 3213.9927 L 4559.1019 3214.1927 L 4558.6919 3214.3927 L 4558.0819 3214.3927 L 4557.6719 3213.9927 L 4557.4719 3213.3727 L 4557.4719 3212.5527 L 4557.6719 3211.9427 L 4558.0819 3211.5327 M 4561.7619 3215.7427 L 4557.4719 3215.7427 M 4561.7619 3215.7427 L 4561.7619 3217.5927 L 4561.5619 3218.2027 L 4561.3519 3218.4027 L 4560.9419 3218.6127 L 4560.5319 3218.6127 L 4560.1219 3218.4027 L 4559.9219 3218.2027 L 4559.7219 3217.5927 M 4559.7219 3215.7427 L 4559.7219 3217.5927 L 4559.5119 3218.2027 L 4559.3119 3218.4027 L 4558.9019 3218.6127 L 4558.2819 3218.6127 L 4557.8719 3218.4027 L 4557.6719 3218.2027 L 4557.4719 3217.5927 L 4557.4719 3215.7427~none~gge1119~~0~#@$TRACK~1~3~~4556.2414 3171.4047 4556.2424 3171.4077~gge1125~0#@$PAD~RECT~4547.5829~3174.9527~4.724~4.646~1~CAN0_L~2~0~4549.9064 3172.5907 4549.9064 3177.3147 4545.2604 3177.3147 4545.2604 3172.5907~270~gge1128~0~~Y~0~0~0.2~4547.5834,3174.9527#@$PAD~RECT~4553.0929~3174.9527~4.724~4.646~1~CAN0_T_1~1~0~4555.4164 3172.5907 4555.4164 3177.3147 4550.7704 3177.3147 4550.7704 3172.5907~270~gge1143~0~~Y~0~0~0.2~4553.0934,3174.9527","LIB~4628.3434~3241.4427~Contributor`rstevens81`package`SOLDER BRIDGE`BOM_Manufacturer Part`Solder bridge`BOM_Supplier Part``BOM_Supplier``spicePre`S`spiceSymbolName`Solder bridge`~90~~ggebe3af6509d87d2e6~1~dbe7c809bc2a468485beb80acd7ba1b3~1518909661~0~~none~~#@$TEXT~N~4614.3435~3242.4427~0.6~90~0~3~~4.5~Solder bridge~M 4610.4133 3239.5825 L 4610.0033 3239.9925 L 4609.8033 3240.6025125 L 4609.8033 3241.4225125 L 4610.0033 3242.0325 L 4610.4133 3242.4425 L 4610.8233 3242.4425 L 4611.2333 3242.2425 L 4611.4433 3242.0325 L 4611.6433 3241.6225 L 4612.0533 3240.3925 L 4612.2533 3239.9925 L 4612.4633 3239.7825 L 4612.8733 3239.5825 L 4613.4833 3239.5825 L 4613.8933 3239.9925 L 4614.0933 3240.6025125 L 4614.0933 3241.4225125 L 4613.8933 3242.0325 L 4613.4833 3242.4425 M 4611.2333 3237.2025 L 4611.4433 3237.6125 L 4611.8433 3238.0225125 L 4612.4633 3238.2325 L 4612.8733 3238.2325 L 4613.4833 3238.0225125 L 4613.8933 3237.6125 L 4614.0933 3237.2025 L 4614.0933 3236.5925125 L 4613.8933 3236.1825125 L 4613.4833 3235.7725125 L 4612.8733 3235.5725 L 4612.4633 3235.5725 L 4611.8433 3235.7725125 L 4611.4433 3236.1825125 L 4611.2333 3236.5925125 L 4611.2333 3237.2025 M 4609.8033 3234.2225 L 4614.0933 3234.2225 M 4609.8033 3230.4125 L 4614.0933 3230.4125 M 4611.8433 3230.4125 L 4611.4433 3230.8225 L 4611.2333 3231.2325 L 4611.2333 3231.8425125 L 4611.4433 3232.2525 L 4611.8433 3232.6625 L 4612.4633 3232.8725 L 4612.8733 3232.8725 L 4613.4833 3232.6625 L 4613.8933 3232.2525 L 4614.0933 3231.8425125 L 4614.0933 3231.2325 L 4613.8933 3230.8225 L 4613.4833 3230.4125 M 4612.4633 3229.0625 L 4612.4633 3226.6125 L 4612.0533 3226.6125 L 4611.6433 3226.8125 L 4611.4433 3227.0225125 L 4611.2333 3227.4325125 L 4611.2333 3228.0425 L 4611.4433 3228.4525 L 4611.8433 3228.8625 L 4612.4633 3229.0625 L 4612.8733 3229.0625 L 4613.4833 3228.8625 L 4613.8933 3228.4525 L 4614.0933 3228.0425 L 4614.0933 3227.4325125 L 4613.8933 3227.0225125 L 4613.4833 3226.6125 M 4611.2333 3225.2625125 L 4614.0933 3225.2625125 M 4612.4633 3225.2625125 L 4611.8433 3225.0525 L 4611.4433 3224.6425 L 4611.2333 3224.2425 L 4611.2333 3223.6225 M 4609.8033 3219.1225 L 4614.0933 3219.1225 M 4611.8433 3219.1225 L 4611.4433 3218.7125 L 4611.2333 3218.3025 L 4611.2333 3217.6925 L 4611.4433 3217.2825 L 4611.8433 3216.8725 L 4612.4633 3216.6725125 L 4612.8733 3216.6725125 L 4613.4833 3216.8725 L 4613.8933 3217.2825 L 4614.0933 3217.6925 L 4614.0933 3218.3025 L 4613.8933 3218.7125 L 4613.4833 3219.1225 M 4611.2333 3215.3225 L 4614.0933 3215.3225 M 4612.4633 3215.3225 L 4611.8433 3215.1125 L 4611.4433 3214.7025 L 4611.2333 3214.2925 L 4611.2333 3213.6825125 M 4609.8033 3212.3325 L 4610.0033 3212.1325 L 4609.8033 3211.9225125 L 4609.5933 3212.1325 L 4609.8033 3212.3325 M 4611.2333 3212.1325 L 4614.0933 3212.1325 M 4609.8033 3208.1225 L 4614.0933 3208.1225 M 4611.8433 3208.1225 L 4611.4433 3208.5325 L 4611.2333 3208.9425 L 4611.2333 3209.5525 L 4611.4433 3209.9625 L 4611.8433 3210.3725 L 4612.4633 3210.5725 L 4612.8733 3210.5725 L 4613.4833 3210.3725 L 4613.8933 3209.9625 L 4614.0933 3209.5525 L 4614.0933 3208.9425 L 4613.8933 3208.5325 L 4613.4833 3208.1225 M 4611.2333 3204.3125 L 4614.5033 3204.3125 L 4615.1233 3204.5225125 L 4615.3233 3204.7225 L 4615.5333 3205.1325 L 4615.5333 3205.7425 L 4615.3233 3206.1525 M 4611.8433 3204.3125 L 4611.4433 3204.7225 L 4611.2333 3205.1325 L 4611.2333 3205.7425 L 4611.4433 3206.1525 L 4611.8433 3206.5625 L 4612.4633 3206.7725125 L 4612.8733 3206.7725125 L 4613.4833 3206.5625 L 4613.8933 3206.1525 L 4614.0933 3205.7425 L 4614.0933 3205.1325 L 4613.8933 3204.7225 L 4613.4833 3204.3125 M 4612.4633 3202.9625 L 4612.4633 3200.5125125 L 4612.0533 3200.5125125 L 4611.6433 3200.7125 L 4611.4433 3200.9225125 L 4611.2333 3201.3325 L 4611.2333 3201.9425 L 4611.4433 3202.3525125 L 4611.8433 3202.7625125 L 4612.4633 3202.9625 L 4612.8733 3202.9625 L 4613.4833 3202.7625125 L 4613.8933 3202.3525125 L 4614.0933 3201.9425 L 4614.0933 3201.3325 L 4613.8933 3200.9225125 L 4613.4833 3200.5125125~none~gge1164~~0~#@$TEXT~P~4615.3431~3280.9423~0.6~90~0~3~~4.5~CAN1_TERM_SB~M 4611.8234 3277.8727 L 4611.4134 3278.0827 L 4611.0034 3278.4927 L 4610.8034 3278.8927 L 4610.8034 3279.7127 L 4611.0034 3280.1227 L 4611.4134 3280.5327 L 4611.8234 3280.7427 L 4612.4434 3280.9427 L 4613.4634 3280.9427 L 4614.0734 3280.7427 L 4614.4834 3280.5327 L 4614.8934 3280.1227 L 4615.0934 3279.7127 L 4615.0934 3278.8927 L 4614.8934 3278.4927 L 4614.4834 3278.0827 L 4614.0734 3277.8727 M 4610.8034 3274.8927 L 4615.0934 3276.5227 M 4610.8034 3274.8927 L 4615.0934 3273.2527 M 4613.6634 3275.9127 L 4613.6634 3273.8627 M 4610.8034 3271.9027 L 4615.0934 3271.9027 M 4610.8034 3271.9027 L 4615.0934 3269.0427 M 4610.8034 3269.0427 L 4615.0934 3269.0427 M 4611.6234 3267.6927 L 4611.4134 3267.2827 L 4610.8034 3266.6627 L 4615.0934 3266.6627 M 4616.5334 3265.3127 L 4616.5334 3261.6327 M 4610.8034 3258.8527 L 4615.0934 3258.8527 M 4610.8034 3260.2827 L 4610.8034 3257.4227 M 4610.8034 3256.0727 L 4615.0934 3256.0727 M 4610.8034 3256.0727 L 4610.8034 3253.4127 M 4612.8434 3256.0727 L 4612.8434 3254.4327 M 4615.0934 3256.0727 L 4615.0934 3253.4127 M 4610.8034 3252.0627 L 4615.0934 3252.0627 M 4610.8034 3252.0627 L 4610.8034 3250.2227 L 4611.0034 3249.6027 L 4611.2134 3249.4027 L 4611.6234 3249.1927 L 4612.0334 3249.1927 L 4612.4434 3249.4027 L 4612.6434 3249.6027 L 4612.8434 3250.2227 L 4612.8434 3252.0627 M 4612.8434 3250.6327 L 4615.0934 3249.1927 M 4610.8034 3247.8427 L 4615.0934 3247.8427 M 4610.8034 3247.8427 L 4615.0934 3246.2127 M 4610.8034 3244.5727 L 4615.0934 3246.2127 M 4610.8034 3244.5727 L 4615.0934 3244.5727 M 4616.5334 3243.2227 L 4616.5334 3239.5427 M 4611.4134 3235.3327 L 4611.0034 3235.7427 L 4610.8034 3236.3527 L 4610.8034 3237.1727 L 4611.0034 3237.7827 L 4611.4134 3238.1927 L 4611.8234 3238.1927 L 4612.2334 3237.9927 L 4612.4434 3237.7827 L 4612.6434 3237.3727 L 4613.0534 3236.1427 L 4613.2534 3235.7427 L 4613.4634 3235.5327 L 4613.8734 3235.3327 L 4614.4834 3235.3327 L 4614.8934 3235.7427 L 4615.0934 3236.3527 L 4615.0934 3237.1727 L 4614.8934 3237.7827 L 4614.4834 3238.1927 M 4610.8034 3233.9827 L 4615.0934 3233.9827 M 4610.8034 3233.9827 L 4610.8034 3232.1427 L 4611.0034 3231.5227 L 4611.2134 3231.3227 L 4611.6234 3231.1127 L 4612.0334 3231.1127 L 4612.4434 3231.3227 L 4612.6434 3231.5227 L 4612.8434 3232.1427 M 4612.8434 3233.9827 L 4612.8434 3232.1427 L 4613.0534 3231.5227 L 4613.2534 3231.3227 L 4613.6634 3231.1127 L 4614.2834 3231.1127 L 4614.6934 3231.3227 L 4614.8934 3231.5227 L 4615.0934 3232.1427 L 4615.0934 3233.9827~none~gge1170~~0~#@$TRACK~1~3~~4622.4454 3244.9807 4622.4444 3244.9777~gge1176~0#@$PAD~RECT~4631.1031~3241.4323~4.724~4.646~1~CAN1_L~2~0~4628.7804 3243.7947 4628.7804 3239.0707 4633.4264 3239.0707 4633.4264 3243.7947~90~gge1179~0~~Y~0~0~0.2~4631.1034,3241.4327#@$PAD~RECT~4625.5931~3241.4323~4.724~4.646~1~CAN1_T_1~1~0~4623.2704 3243.7947 4623.2704 3239.0707 4627.9164 3239.0707 4627.9164 3243.7947~90~gge1194~0~~Y~0~0~0.2~4625.5934,3241.4327","LIB~4523.936~3163.658~package`SOIC-8_L4.9-W3.9-P1.27-LS6.0-BL`Contributor`lcsc`3DModel`SOIC-8_L4.9-W3.9-H1.7-LS6.0-P1.27`link`https:\/\/so.szlcsc.com\/global.html?c=&k=C9843`BOM_Supplier`LCSC`BOM_Manufacturer`TI`BOM_Manufacturer Part`SN65HVD230DR`BOM_Supplier Part`C12084`BOM_JLCPCB Part Class`Basic Part`spicePre`U`spiceSymbolName`SN65HVD230DR`~270~~ggeb0e1f0dcff30c988~1~806a55eb4d3c40ab838f70f86785d85e~1611740137~0~~yes~~#@$CIRCLE~4510.55~3156.158~0.591~1.1811~12~gge1236~0~~#@$CIRCLE~4512.125~3154.012~0.118~0.2362~101~gge1239~0~~#@$SOLIDREGION~99~~M 4516.2588 3154.0123 L 4531.6132 3154.0123 L 4531.6132 3173.3037 L 4516.2588 3173.3037 Z~solid~gge1242~~~~0#@$SOLIDREGION~100~~M 4512.125 3155.3312 L 4515.4124 3155.3312 L 4515.4124 3156.9848 L 4512.125 3156.9848 Z~solid~gge1245~~~~0#@$SOLIDREGION~100~~M 4515.373 3155.3312 L 4516.2982 3155.3312 L 4516.2982 3156.9848 L 4515.373 3156.9848 Z~cutout~gge1248~~~~0#@$SOLIDREGION~100~~M 4512.125 3160.3312 L 4515.4124 3160.3312 L 4515.4124 3161.9848 L 4512.125 3161.9848 Z~solid~gge1251~~~~0#@$SOLIDREGION~100~~M 4515.373 3160.3312 L 4516.2982 3160.3312 L 4516.2982 3161.9848 L 4515.373 3161.9848 Z~cutout~gge1254~~~~0#@$SOLIDREGION~100~~M 4512.125 3165.3312 L 4515.4124 3165.3312 L 4515.4124 3166.9848 L 4512.125 3166.9848 Z~solid~gge1257~~~~0#@$SOLIDREGION~100~~M 4515.373 3165.3312 L 4516.2982 3165.3312 L 4516.2982 3166.9848 L 4515.373 3166.9848 Z~cutout~gge1260~~~~0#@$SOLIDREGION~100~~M 4512.125 3170.3312 L 4515.4124 3170.3312 L 4515.4124 3171.9848 L 4512.125 3171.9848 Z~solid~gge1263~~~~0#@$SOLIDREGION~100~~M 4515.373 3170.3312 L 4516.2982 3170.3312 L 4516.2982 3171.9848 L 4515.373 3171.9848 Z~cutout~gge1266~~~~0#@$SOLIDREGION~100~~M 4535.747 3155.3312 L 4532.4596 3155.3312 L 4532.4596 3156.9848 L 4535.747 3156.9848 Z~solid~gge1269~~~~0#@$SOLIDREGION~100~~M 4532.499 3155.3312 L 4531.5738 3155.3312 L 4531.5738 3156.9848 L 4532.499 3156.9848 Z~cutout~gge1272~~~~0#@$SOLIDREGION~100~~M 4535.747 3160.3312 L 4532.4596 3160.3312 L 4532.4596 3161.9848 L 4535.747 3161.9848 Z~solid~gge1275~~~~0#@$SOLIDREGION~100~~M 4532.499 3160.3312 L 4531.5738 3160.3312 L 4531.5738 3161.9848 L 4532.499 3161.9848 Z~cutout~gge1278~~~~0#@$SOLIDREGION~100~~M 4535.747 3165.3312 L 4532.4596 3165.3312 L 4532.4596 3166.9848 L 4535.747 3166.9848 Z~solid~gge1281~~~~0#@$SOLIDREGION~100~~M 4532.499 3165.3312 L 4531.5738 3165.3312 L 4531.5738 3166.9848 L 4532.499 3166.9848 Z~cutout~gge1284~~~~0#@$SOLIDREGION~100~~M 4535.747 3170.3312 L 4532.4596 3170.3312 L 4532.4596 3171.9848 L 4535.747 3171.9848 Z~solid~gge1287~~~~0#@$SOLIDREGION~100~~M 4532.499 3170.3312 L 4531.5738 3170.3312 L 4531.5738 3171.9848 L 4532.499 3171.9848 Z~cutout~gge1290~~~~0#@$SVGNODE~{\"gId\":\"gge1293\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"18.9751\",\"c_height\":\"23.622\",\"c_rotation\":\"0,0,270\",\"z\":\"0\",\"c_origin\":\"4523.936,3163.6581\",\"uuid\":\"dc694c23844346e9981bdbac7bb76421\",\"c_etype\":\"outline3D\",\"title\":\"SOIC-8_L4.9-W3.9-H1.7-LS6.0-P1.27\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge1293\"},\"childNodes\":[{\"gId\":\"gge1296\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4531.3376 3154.0124 4531.2982 3154.0124 4531.2195 3154.0124 4516.6526 3154.0124 4516.5345 3154.0124 4516.4558 3154.0518 4516.377 3154.1305 4516.2983 3154.2093 4516.2589 3154.288 4516.2589 3154.4061 4516.2589 3155.3904 4515.7077 3155.3904 4515.5502 3155.3904 4515.4715 3155.3904 4515.3928 3155.3904 4515.314 3155.3904 4515.2353 3155.3904 4515.1565 3155.3904 4515.0778 3155.3904 4514.9991 3155.3904 4514.9203 3155.3904 4514.881 3155.3904 4514.8022 3155.3904 4514.7628 3155.3904 4514.6447 3155.3904 4514.566 3155.3904 4514.4873 3155.3904 4514.4085 3155.3904 4514.3298 3155.3904 4514.251 3155.3904 4514.1723 3155.3904 4514.0936 3155.3904 4514.0148 3155.3904 4513.9754 3155.3904 4513.8573 3155.3904 4513.7392 3155.3904 4513.6605 3155.3904 4513.5817 3155.3904 4513.503 3155.3904 4513.4243 3155.3904 4513.3455 3155.3904 4513.2668 3155.3904 4513.188 3155.3904 4513.1093 3155.3904 4513.0699 3155.3904 4512.9518 3155.3904 4511.9676 3155.3904 4511.9282 3155.3904 4511.9282 3155.4691 4511.9282 3156.9258 4511.9282 3156.9652 4512.0069 3156.9652 4512.9912 3156.9652 4513.0699 3156.9652 4513.1487 3156.9652 4513.188 3156.9652 4513.3062 3156.9652 4513.3849 3156.9652 4513.4636 3156.9652 4513.5424 3156.9652 4513.6211 3156.9652 4513.6605 3156.9652 4513.7786 3156.9652 4513.8967 3156.9652 4513.9754 3156.9652 4514.0542 3156.9652 4514.1329 3156.9652 4514.2117 3156.9652 4514.2904 3156.9652 4514.3691 3156.9652 4514.4479 3156.9652 4514.5266 3156.9652 4514.566 3156.9652 4514.6841 3156.9652 4514.7628 3156.9652 4514.881 3156.9652 4514.9597 3156.9652 4515.0384 3156.9652 4515.1172 3156.9652 4515.1565 3156.9652 4515.2747 3156.9652 4515.3534 3156.9652 4515.4321 3156.9652 4515.5109 3156.9652 4515.5896 3156.9652 4515.6684 3156.9652 4515.7077 3156.9652 4516.2589 3156.9652 4516.2589 3160.3904 4515.7077 3160.3904 4515.5502 3160.3904 4515.5109 3160.3904 4515.3928 3160.3904 4515.314 3160.3904 4515.2353 3160.3904 4515.1565 3160.3904 4515.0778 3160.3904 4514.9991 3160.3904 4514.9597 3160.3904 4514.881 3160.3904 4514.7628 3160.3904 4514.6447 3160.3904 4514.566 3160.3904 4514.4873 3160.3904 4514.4085 3160.3904 4514.3298 3160.3904 4514.251 3160.3904 4514.1723 3160.3904 4514.0936 3160.3904 4514.0148 3160.3904 4513.9754 3160.3904 4513.8573 3160.3904 4513.7392 3160.3904 4513.6605 3160.3904 4513.5817 3160.3904 4513.503 3160.3904 4513.4243 3160.3904 4513.3455 3160.3904 4513.2668 3160.3904 4513.188 3160.3904 4513.1093 3160.3904 4513.0699 3160.3904 4512.9518 3160.3904 4511.9676 3160.3904 4511.9282 3160.3904 4511.9282 3160.4297 4511.9282 3160.4691 4511.9282 3161.9258 4511.9282 3161.9652 4512.0069 3161.9652 4512.9912 3161.9652 4513.0699 3161.9652 4513.1487 3161.9652 4513.188 3161.9652 4513.2668 3161.9652 4513.3849 3161.9652 4513.4636 3161.9652 4513.5424 3161.9652 4513.6211 3161.9652 4513.6999 3161.9652 4513.7786 3161.9652 4513.818 3161.9652 4513.8967 3161.9652 4513.9754 3161.9652 4514.0542 3161.9652 4514.1329 3161.9652 4514.2117 3161.9652 4514.2904 3161.9652 4514.3691 3161.9652 4514.4479 3161.9652 4514.5266 3161.9652 4514.566 3161.9652 4514.6841 3161.9652 4514.7628 3161.9652 4514.881 3161.9652 4514.9597 3161.9652 4515.0384 3161.9652 4515.1172 3161.9652 4515.1959 3161.9652 4515.2747 3161.9652 4515.314 3161.9652 4515.4321 3161.9652 4515.5109 3161.9652 4515.5896 3161.9652 4515.629 3161.9652 4515.7077 3161.9652 4516.2589 3161.9652 4516.2589 3165.3903 4515.7077 3165.3903 4515.5502 3165.3903 4515.5109 3165.3903 4515.3928 3165.3903 4515.314 3165.3903 4515.2353 3165.3903 4515.1565 3165.3903 4515.0778 3165.3903 4514.9991 3165.3903 4514.9203 3165.3903 4514.881 3165.3903 4514.7628 3165.3903 4514.6447 3165.3903 4514.566 3165.3903 4514.4873 3165.3903 4514.4085 3165.3903 4514.3298 3165.3903 4514.251 3165.3903 4514.1723 3165.3903 4514.0936 3165.3903 4514.0148 3165.3903 4513.9754 3165.3903 4513.8573 3165.3903 4513.7392 3165.3903 4513.6605 3165.3903 4513.5817 3165.3903 4513.503 3165.3903 4513.4243 3165.3903 4513.3455 3165.3903 4513.2668 3165.3903 4513.188 3165.3903 4513.1093 3165.3903 4513.0699 3165.3903 4512.9518 3165.3903 4511.9676 3165.3903 4511.9282 3165.3903 4511.9282 3165.4297 4511.9282 3165.4691 4511.9282 3166.9651 4512.0069 3166.9651 4512.9912 3166.9651 4513.0699 3166.9651 4513.1487 3166.9651 4513.188 3166.9651 4513.3062 3166.9651 4513.3849 3166.9651 4513.4636 3166.9651 4513.5424 3166.9651 4513.6211 3166.9651 4513.6605 3166.9651 4513.7786 3166.9651 4513.8967 3166.9651 4513.9754 3166.9651 4514.0542 3166.9651 4514.1329 3166.9651 4514.2117 3166.9651 4514.2904 3166.9651 4514.3691 3166.9651 4514.4479 3166.9651 4514.5266 3166.9651 4514.566 3166.9651 4514.6841 3166.9651 4514.7628 3166.9651 4514.881 3166.9651 4514.9597 3166.9651 4515.0384 3166.9651 4515.1172 3166.9651 4515.1565 3166.9651 4515.2747 3166.9651 4515.3534 3166.9651 4515.4321 3166.9651 4515.5109 3166.9651 4515.5896 3166.9651 4515.6684 3166.9651 4515.7077 3166.9651 4516.2589 3166.9651 4516.2589 3170.3903 4515.7077 3170.3903 4515.5502 3170.3903 4515.4715 3170.3903 4515.3928 3170.3903 4515.314 3170.3903 4515.2353 3170.3903 4515.1565 3170.3903 4515.0778 3170.3903 4514.9991 3170.3903 4514.9203 3170.3903 4514.881 3170.3903 4514.8022 3170.3903 4514.7628 3170.3903 4514.6447 3170.3903 4514.566 3170.3903 4514.4873 3170.3903 4514.4085 3170.3903 4514.3298 3170.3903 4514.251 3170.3903 4514.1723 3170.3903 4514.0936 3170.3903 4514.0148 3170.3903 4513.9754 3170.3903 4513.8573 3170.3903 4513.7392 3170.3903 4513.6605 3170.3903 4513.5817 3170.3903 4513.503 3170.3903 4513.4243 3170.3903 4513.3455 3170.3903 4513.2668 3170.3903 4513.188 3170.3903 4513.1093 3170.3903 4513.0699 3170.3903 4512.9518 3170.3903 4511.9676 3170.3903 4511.9282 3170.3903 4511.9282 3170.4297 4511.9282 3170.4691 4511.9282 3171.9651 4512.0069 3171.9651 4512.9912 3171.9651 4513.0699 3171.9651 4513.1487 3171.9651 4513.188 3171.9651 4513.2668 3171.9651 4513.3849 3171.9651 4513.4636 3171.9651 4513.5424 3171.9651 4513.6211 3171.9651 4513.6999 3171.9651 4513.7786 3171.9651 4513.818 3171.9651 4513.8967 3171.9651 4513.9754 3171.9651 4514.0542 3171.9651 4514.1329 3171.9651 4514.2117 3171.9651 4514.2904 3171.9651 4514.3691 3171.9651 4514.4479 3171.9651 4514.5266 3171.9651 4514.566 3171.9651 4514.6841 3171.9651 4514.7628 3171.9651 4514.881 3171.9651 4514.9597 3171.9651 4515.0384 3171.9651 4515.1172 3171.9651 4515.1959 3171.9651 4515.2747 3171.9651 4515.314 3171.9651 4515.4321 3171.9651 4515.5109 3171.9651 4515.5896 3171.9651 4515.6684 3171.9651 4515.7077 3171.9651 4516.2589 3171.9651 4516.2589 3172.91 4516.2589 3173.0281 4516.2983 3173.1069 4516.377 3173.1856 4516.4558 3173.2643 4516.5345 3173.3037 4516.6526 3173.3037 4531.2195 3173.3037 4531.3376 3173.3037 4531.4164 3173.2643 4531.4951 3173.1856 4531.5738 3173.1069 4531.6132 3173.0281 4531.6132 3172.91 4531.6132 3171.9651 4532.1644 3171.9651 4532.3219 3171.9651 4532.3612 3171.9651 4532.4793 3171.9651 4532.5581 3171.9651 4532.6368 3171.9651 4532.7156 3171.9651 4532.7943 3171.9651 4532.873 3171.9651 4532.9124 3171.9651 4532.9912 3171.9651 4533.1093 3171.9651 4533.2274 3171.9651 4533.3061 3171.9651 4533.3849 3171.9651 4533.4636 3171.9651 4533.5423 3171.9651 4533.6211 3171.9651 4533.6998 3171.9651 4533.7786 3171.9651 4533.8573 3171.9651 4533.936 3171.9651 4533.9754 3171.9651 4533.8967 3171.9651 4533.8573 3171.9258 4533.936 3171.9258 4533.9754 3171.9258 4533.936 3171.9651 4533.8573 3171.9651 4533.8967 3171.9651 4534.0148 3171.9651 4534.1329 3171.9651 4534.2116 3171.9651 4534.2904 3171.9651 4534.3691 3171.9651 4534.4478 3171.9651 4534.5266 3171.9651 4534.6053 3171.9651 4534.6841 3171.9651 4534.7628 3171.9651 4534.8022 3171.9651 4534.9203 3171.9651 4535.9045 3171.9651 4535.9439 3171.9258 4535.9439 3170.4691 4535.9439 3170.4297 4535.9439 3170.3903 4535.8652 3170.3903 4534.8809 3170.3903 4534.8022 3170.3903 4534.7234 3170.3903 4534.6841 3170.3903 4534.566 3170.3903 4534.4872 3170.3903 4534.4085 3170.3903 4534.3297 3170.3903 4534.251 3170.3903 4534.2116 3170.3903 4534.0935 3170.3903 4533.9754 3170.3903 4533.8967 3170.3903 4533.8179 3170.3903 4533.7392 3170.3903 4533.6604 3170.3903 4533.5817 3170.3903 4533.503 3170.3903 4533.4242 3170.3903 4533.3455 3170.3903 4533.3061 3170.3903 4533.188 3170.3903 4533.1093 3170.3903 4532.9912 3170.3903 4532.9124 3170.3903 4532.8337 3170.3903 4532.7549 3170.3903 4532.7156 3170.3903 4532.5975 3170.3903 4532.5187 3170.3903 4532.44 3170.3903 4532.3612 3170.3903 4532.2825 3170.3903 4532.2431 3170.3903 4532.1644 3170.3903 4531.6132 3170.3903 4531.6132 3166.9651 4532.1644 3166.9651 4532.3219 3166.9651 4532.4006 3166.9651 4532.4793 3166.9651 4532.5581 3166.9651 4532.6368 3166.9651 4532.7156 3166.9651 4532.7943 3166.9651 4532.873 3166.9651 4532.9124 3166.9651 4532.9912 3166.9651 4533.0699 3166.9651 4533.1093 3166.9651 4533.2274 3166.9651 4533.3061 3166.9651 4533.3849 3166.9651 4533.4636 3166.9651 4533.5423 3166.9651 4533.6211 3166.9651 4533.6998 3166.9651 4533.7786 3166.9651 4533.8573 3166.9651 4533.8967 3166.9651 4534.0148 3166.9651 4534.1329 3166.9651 4534.2116 3166.9651 4534.2904 3166.9651 4534.3691 3166.9651 4534.4478 3166.9651 4534.5266 3166.9651 4534.6053 3166.9651 4534.6841 3166.9651 4534.7628 3166.9651 4534.8022 3166.9651 4534.9203 3166.9651 4535.9045 3166.9651 4535.9439 3166.9258 4535.9439 3166.2171 4535.9439 3165.4691 4535.9439 3165.4297 4535.9439 3165.3903 4535.8652 3165.3903 4534.8809 3165.3903 4534.8022 3165.3903 4534.7234 3165.3903 4534.6841 3165.3903 4534.566 3165.3903 4534.4872 3165.3903 4534.4085 3165.3903 4534.3297 3165.3903 4534.251 3165.3903 4534.2116 3165.3903 4534.0935 3165.3903 4533.9754 3165.3903 4533.8967 3165.3903 4533.8179 3165.3903 4533.7392 3165.3903 4533.6604 3165.3903 4533.5817 3165.3903 4533.503 3165.3903 4533.4242 3165.3903 4533.3455 3165.3903 4533.3061 3165.3903 4533.188 3165.3903 4533.1093 3165.3903 4532.9912 3165.3903 4532.9124 3165.3903 4532.8337 3165.3903 4532.7549 3165.3903 4532.7156 3165.3903 4532.5975 3165.3903 4532.5187 3165.3903 4532.44 3165.3903 4532.3612 3165.3903 4532.2825 3165.3903 4532.2431 3165.3903 4532.1644 3165.3903 4531.6132 3165.3903 4531.6132 3161.9652 4532.1644 3161.9652 4532.3219 3161.9652 4532.4006 3161.9652 4532.4793 3161.9652 4532.5581 3161.9652 4532.6368 3161.9652 4532.7156 3161.9652 4532.7943 3161.9652 4532.873 3161.9652 4532.9124 3161.9652 4532.9912 3161.9652 4533.0699 3161.9652 4533.1093 3161.9652 4533.2274 3161.9652 4533.3061 3161.9652 4533.3849 3161.9652 4533.4636 3161.9652 4533.5423 3161.9652 4533.6211 3161.9652 4533.6998 3161.9652 4533.7786 3161.9652 4533.8573 3161.9652 4533.936 3161.9652 4533.9754 3161.9258 4533.9754 3161.9652 4533.8967 3161.9652 4533.8573 3161.9652 4533.8573 3161.9258 4533.936 3161.9258 4533.9754 3161.9258 4533.936 3161.9652 4533.8179 3161.9652 4533.8573 3161.9258 4533.8573 3161.9652 4533.8967 3161.9652 4534.0148 3161.9652 4534.1329 3161.9652 4534.2116 3161.9652 4534.2904 3161.9652 4534.3691 3161.9652 4534.4478 3161.9652 4534.5266 3161.9652 4534.6053 3161.9652 4534.6841 3161.9652 4534.7628 3161.9652 4534.8022 3161.9652 4534.9203 3161.9652 4535.9045 3161.9652 4535.9439 3161.9652 4535.9439 3161.9258 4535.9439 3161.2171 4535.9439 3160.4691 4535.9439 3160.4297 4535.9439 3160.3904 4535.8652 3160.3904 4534.8809 3160.3904 4534.8022 3160.3904 4534.7234 3160.3904 4534.6841 3160.3904 4534.6053 3160.3904 4534.4872 3160.3904 4534.4085 3160.3904 4534.3297 3160.3904 4534.251 3160.3904 4534.1723 3160.3904 4534.0935 3160.3904 4534.0541 3160.3904 4533.9754 3160.3904 4533.8967 3160.3904 4533.8179 3160.3904 4533.7392 3160.3904 4533.6604 3160.3904 4533.5817 3160.3904 4533.503 3160.3904 4533.4242 3160.3904 4533.3455 3160.3904 4533.3061 3160.3904 4533.188 3160.3904 4533.1093 3160.3904 4532.9912 3160.3904 4532.9124 3160.3904 4532.8337 3160.3904 4532.7549 3160.3904 4532.7156 3160.3904 4532.5975 3160.3904 4532.5581 3160.3904 4532.44 3160.3904 4532.3612 3160.3904 4532.2825 3160.3904 4532.2431 3160.3904 4532.1644 3160.3904 4531.6132 3160.3904 4531.6132 3156.9652 4532.1644 3156.9652 4532.3219 3156.9652 4532.4006 3156.9652 4532.4793 3156.9652 4532.5581 3156.9652 4532.6368 3156.9652 4532.7156 3156.9652 4532.7943 3156.9652 4532.873 3156.9652 4532.9124 3156.9652 4532.9912 3156.9652 4533.0699 3156.9652 4533.1093 3156.9652 4533.2274 3156.9652 4533.3061 3156.9652 4533.3849 3156.9652 4533.4636 3156.9652 4533.5423 3156.9652 4533.6211 3156.9652 4533.6998 3156.9652 4533.7786 3156.9652 4533.8573 3156.9652 4533.8967 3156.9652 4534.0148 3156.9652 4534.1329 3156.9652 4534.2116 3156.9652 4534.2904 3156.9652 4534.3691 3156.9652 4534.4478 3156.9652 4534.5266 3156.9652 4534.6053 3156.9652 4534.6841 3156.9652 4534.7628 3156.9652 4534.8022 3156.9652 4534.9203 3156.9652 4535.9045 3156.9652 4535.9439 3156.9652 4535.9439 3156.9258 4535.9439 3155.4297 4535.9439 3155.3904 4535.8652 3155.3904 4534.8809 3155.3904 4534.8022 3155.3904 4534.7234 3155.3904 4534.6841 3155.3904 4534.566 3155.3904 4534.4872 3155.3904 4534.4085 3155.3904 4534.3297 3155.3904 4534.251 3155.3904 4534.2116 3155.3904 4534.0935 3155.3904 4533.9754 3155.3904 4533.8967 3155.3904 4533.8179 3155.3904 4533.7392 3155.3904 4533.6604 3155.3904 4533.5817 3155.3904 4533.503 3155.3904 4533.4242 3155.3904 4533.3455 3155.3904 4533.3061 3155.3904 4533.188 3155.3904 4533.1093 3155.3904 4532.9912 3155.3904 4532.9124 3155.3904 4532.8337 3155.3904 4532.7549 3155.3904 4532.7156 3155.3904 4532.5975 3155.3904 4532.5187 3155.3904 4532.44 3155.3904 4532.3612 3155.3904 4532.2825 3155.3904 4532.2431 3155.3904 4532.1644 3155.3904 4531.6132 3155.3904 4531.6132 3154.4061 4531.6132 3154.288 4531.5738 3154.2093 4531.5345 3154.1699 4531.4951 3154.1305 4531.4557 3154.0912 4531.4164 3154.0518 4531.377 3154.0518 4531.3376 3154.0124 4531.3376 3154.0124\",\"id\":\"gge1296\"}}]}#@$TEXT~N~4551.726~3212.078~0.6~90~0~3~~4.5~SN65HVD230DR~M 4547.796 3209.2179 L 4547.386 3209.6279 L 4547.186 3210.2379 L 4547.186 3211.0579 L 4547.386 3211.6679 L 4547.796 3212.0779 L 4548.206 3212.0779 L 4548.616 3211.8779 L 4548.826 3211.6679 L 4549.026 3211.2579 L 4549.436 3210.0279 L 4549.636 3209.6279 L 4549.846 3209.4179 L 4550.256 3209.2179 L 4550.866 3209.2179 L 4551.276 3209.6279 L 4551.476 3210.2379 L 4551.476 3211.0579 L 4551.276 3211.6679 L 4550.866 3212.0779 M 4547.186 3207.8679 L 4551.476 3207.8679 M 4547.186 3207.8679 L 4551.476 3204.9979 M 4547.186 3204.9979 L 4551.476 3204.9979 M 4547.796 3201.1979 L 4547.386 3201.3979 L 4547.186 3202.0179 L 4547.186 3202.4279 L 4547.386 3203.0379 L 4548.006 3203.4479 L 4549.026 3203.6479 L 4550.046 3203.6479 L 4550.866 3203.4479 L 4551.276 3203.0379 L 4551.476 3202.4279 L 4551.476 3202.2179 L 4551.276 3201.6079 L 4550.866 3201.1979 L 4550.256 3200.9879 L 4550.046 3200.9879 L 4549.436 3201.1979 L 4549.026 3201.6079 L 4548.826 3202.2179 L 4548.826 3202.4279 L 4549.026 3203.0379 L 4549.436 3203.4479 L 4550.046 3203.6479 M 4547.186 3197.1879 L 4547.186 3199.2279 L 4549.026 3199.4379 L 4548.826 3199.2279 L 4548.616 3198.6179 L 4548.616 3198.0079 L 4548.826 3197.3879 L 4549.226 3196.9779 L 4549.846 3196.7779 L 4550.256 3196.7779 L 4550.866 3196.9779 L 4551.276 3197.3879 L 4551.476 3198.0079 L 4551.476 3198.6179 L 4551.276 3199.2279 L 4551.076 3199.4379 L 4550.666 3199.6379 M 4547.186 3195.4279 L 4551.476 3195.4279 M 4547.186 3192.5679 L 4551.476 3192.5679 M 4549.226 3195.4279 L 4549.226 3192.5679 M 4547.186 3191.2179 L 4551.476 3189.5779 M 4547.186 3187.9379 L 4551.476 3189.5779 M 4547.186 3186.5879 L 4551.476 3186.5879 M 4547.186 3186.5879 L 4547.186 3185.1579 L 4547.386 3184.5479 L 4547.796 3184.1379 L 4548.206 3183.9279 L 4548.826 3183.7279 L 4549.846 3183.7279 L 4550.456 3183.9279 L 4550.866 3184.1379 L 4551.276 3184.5479 L 4551.476 3185.1579 L 4551.476 3186.5879 M 4548.206 3182.1779 L 4548.006 3182.1779 L 4547.596 3181.9679 L 4547.386 3181.7679 L 4547.186 3181.3579 L 4547.186 3180.5379 L 4547.386 3180.1279 L 4547.596 3179.9279 L 4548.006 3179.7179 L 4548.416 3179.7179 L 4548.826 3179.9279 L 4549.436 3180.3279 L 4551.476 3182.3779 L 4551.476 3179.5179 M 4547.186 3177.7579 L 4547.186 3175.5079 L 4548.826 3176.7279 L 4548.826 3176.1179 L 4549.026 3175.7079 L 4549.226 3175.5079 L 4549.846 3175.2979 L 4550.256 3175.2979 L 4550.866 3175.5079 L 4551.276 3175.9179 L 4551.476 3176.5279 L 4551.476 3177.1379 L 4551.276 3177.7579 L 4551.076 3177.9579 L 4550.666 3178.1679 M 4547.186 3172.7279 L 4547.386 3173.3379 L 4548.006 3173.7479 L 4549.026 3173.9479 L 4549.636 3173.9479 L 4550.666 3173.7479 L 4551.276 3173.3379 L 4551.476 3172.7279 L 4551.476 3172.3179 L 4551.276 3171.6979 L 4550.666 3171.2879 L 4549.636 3171.0879 L 4549.026 3171.0879 L 4548.006 3171.2879 L 4547.386 3171.6979 L 4547.186 3172.3179 L 4547.186 3172.7279 M 4547.186 3169.7379 L 4551.476 3169.7379 M 4547.186 3169.7379 L 4547.186 3168.3079 L 4547.386 3167.6879 L 4547.796 3167.2779 L 4548.206 3167.0779 L 4548.826 3166.8779 L 4549.846 3166.8779 L 4550.456 3167.0779 L 4550.866 3167.2779 L 4551.276 3167.6879 L 4551.476 3168.3079 L 4551.476 3169.7379 M 4547.186 3165.5279 L 4551.476 3165.5279 M 4547.186 3165.5279 L 4547.186 3163.6779 L 4547.386 3163.0679 L 4547.596 3162.8679 L 4548.006 3162.6579 L 4548.416 3162.6579 L 4548.826 3162.8679 L 4549.026 3163.0679 L 4549.226 3163.6779 L 4549.226 3165.5279 M 4549.226 3164.0879 L 4551.476 3162.6579~none~gge1215~~0~#@$TEXT~P~4522.5~3154.5~0.3937~270~0~3~~2.9528~CAN0_U2~M 4524.81 3156.51 L 4525.08 3156.38 L 4525.35 3156.11 L 4525.48 3155.84 L 4525.48 3155.31 L 4525.35 3155.04 L 4525.08 3154.77 L 4524.81 3154.63 L 4524.41 3154.5 L 4523.73 3154.5 L 4523.33 3154.63 L 4523.06 3154.77 L 4522.8 3155.04 L 4522.66 3155.31 L 4522.66 3155.84 L 4522.8 3156.11 L 4523.06 3156.38 L 4523.33 3156.51 M 4525.48 3158.47 L 4522.66 3157.4 M 4525.48 3158.47 L 4522.66 3159.55 M 4523.6 3157.8 L 4523.6 3159.14 M 4525.48 3160.43 L 4522.66 3160.43 M 4525.48 3160.43 L 4522.66 3162.31 M 4525.48 3162.31 L 4522.66 3162.31 M 4525.48 3164 L 4525.35 3163.6 L 4524.94 3163.33 L 4524.27 3163.2 L 4523.87 3163.2 L 4523.2 3163.33 L 4522.8 3163.6 L 4522.66 3164 L 4522.66 3164.27 L 4522.8 3164.67 L 4523.2 3164.94 L 4523.87 3165.08 L 4524.27 3165.08 L 4524.94 3164.94 L 4525.35 3164.67 L 4525.48 3164.27 L 4525.48 3164 M 4521.72 3165.96 L 4521.72 3168.38 M 4525.48 3169.26 L 4523.47 3169.26 L 4523.06 3169.4 L 4522.8 3169.67 L 4522.66 3170.07 L 4522.66 3170.34 L 4522.8 3170.74 L 4523.06 3171.01 L 4523.47 3171.14 L 4525.48 3171.14 M 4524.81 3172.16 L 4524.94 3172.16 L 4525.21 3172.3 L 4525.35 3172.43 L 4525.48 3172.7 L 4525.48 3173.24 L 4525.35 3173.5 L 4525.21 3173.64 L 4524.94 3173.77 L 4524.67 3173.77 L 4524.41 3173.64 L 4524 3173.37 L 4522.66 3172.03 L 4522.66 3173.91~~gge1221~~0~#@$TRACK~0.6~3~~4517.9462 3153.7123 4529.9258 3153.7123 4529.9258 3173.6037 4517.9462 3173.6037 4517.9462 3153.7123~gge1227~0#@$CIRCLE~4520.908~3156.158~0.591~1.1811~3~gge1230~0~~#@$CIRCLE~4513.021~3153.219~0.591~1.1811~3~gge1233~0~~#@$PAD~OVAL~4513.021~3156.158~2.315~8.0512~1~CANTX~1~0~4515.8891 3156.158 4510.1529 3156.158~270~gge1299~0~~Y~0~0.0000~0.2000~4513.0206,3156.158#@$PAD~OVAL~4513.021~3161.158~2.315~8.0512~1~GND~2~0~4515.8891 3161.158 4510.1529 3161.158~270~gge1314~0~~Y~0~0.0000~0.2000~4513.0206,3161.158#@$PAD~OVAL~4513.021~3166.158~2.315~8.0512~1~+3.3V~3~0~4515.8891 3166.158 4510.1529 3166.158~270~gge1329~0~~Y~0~0.0000~0.2000~4513.0206,3166.158#@$PAD~OVAL~4513.021~3171.158~2.315~8.0512~1~CANRX~4~0~4515.8891 3171.158 4510.1529 3171.158~270~gge1344~0~~Y~0~0.0000~0.2000~4513.0206,3171.158#@$PAD~OVAL~4534.851~3156.158~2.315~8.0512~1~CAN0_U2_8~8~0~4537.7191 3156.158 4531.9829 3156.158~270~gge1359~0~~Y~0~0.0000~0.2000~4534.8514,3156.158#@$PAD~OVAL~4534.851~3161.158~2.315~8.0512~1~CAN0_H~7~0~4537.7191 3161.158 4531.9829 3161.158~270~gge1374~0~~Y~0~0.0000~0.2000~4534.8514,3161.158#@$PAD~OVAL~4534.851~3166.158~2.315~8.0512~1~CAN0_L~6~0~4537.7191 3166.158 4531.9829 3166.158~270~gge1389~0~~Y~0~0.0000~0.2000~4534.8514,3166.158#@$PAD~OVAL~4534.851~3171.158~2.315~8.0512~1~~5~0~4537.7191 3171.158 4531.9829 3171.158~270~gge1404~0~~Y~0~0.0000~0.2000~4534.8514,3171.158","LIB~4599.5~3227~package`SOIC-8_L4.9-W3.9-P1.27-LS6.0-BL`Contributor`lcsc`3DModel`SOIC-8_L4.9-W3.9-H1.7-LS6.0-P1.27`link`https:\/\/so.szlcsc.com\/global.html?c=&k=C9843`BOM_Supplier`LCSC`BOM_Manufacturer`TI`BOM_Manufacturer Part`SN65HVD230DR`BOM_Supplier Part`C12084`BOM_JLCPCB Part Class`Basic Part`spicePre`U`spiceSymbolName`SN65HVD230DR`~270~~gge4ec783ed4741de1f~1~806a55eb4d3c40ab838f70f86785d85e~1611740137~0~~yes~~#@$CIRCLE~4586.114~3219.5~0.591~1.1811~12~gge1446~0~~#@$CIRCLE~4587.689~3217.354~0.118~0.2362~101~gge1449~0~~#@$SOLIDREGION~99~~M 4591.8228 3217.3543 L 4607.1772 3217.3543 L 4607.1772 3236.6457 L 4591.8228 3236.6457 Z~solid~gge1452~~~~0#@$SOLIDREGION~100~~M 4587.689 3218.6732 L 4590.9764 3218.6732 L 4590.9764 3220.3268 L 4587.689 3220.3268 Z~solid~gge1455~~~~0#@$SOLIDREGION~100~~M 4590.937 3218.6732 L 4591.8622 3218.6732 L 4591.8622 3220.3268 L 4590.937 3220.3268 Z~cutout~gge1458~~~~0#@$SOLIDREGION~100~~M 4587.689 3223.6732 L 4590.9764 3223.6732 L 4590.9764 3225.3268 L 4587.689 3225.3268 Z~solid~gge1461~~~~0#@$SOLIDREGION~100~~M 4590.937 3223.6732 L 4591.8622 3223.6732 L 4591.8622 3225.3268 L 4590.937 3225.3268 Z~cutout~gge1464~~~~0#@$SOLIDREGION~100~~M 4587.689 3228.6732 L 4590.9764 3228.6732 L 4590.9764 3230.3268 L 4587.689 3230.3268 Z~solid~gge1467~~~~0#@$SOLIDREGION~100~~M 4590.937 3228.6732 L 4591.8622 3228.6732 L 4591.8622 3230.3268 L 4590.937 3230.3268 Z~cutout~gge1470~~~~0#@$SOLIDREGION~100~~M 4587.689 3233.6732 L 4590.9764 3233.6732 L 4590.9764 3235.3268 L 4587.689 3235.3268 Z~solid~gge1473~~~~0#@$SOLIDREGION~100~~M 4590.937 3233.6732 L 4591.8622 3233.6732 L 4591.8622 3235.3268 L 4590.937 3235.3268 Z~cutout~gge1476~~~~0#@$SOLIDREGION~100~~M 4611.311 3218.6732 L 4608.0236 3218.6732 L 4608.0236 3220.3268 L 4611.311 3220.3268 Z~solid~gge1479~~~~0#@$SOLIDREGION~100~~M 4608.063 3218.6732 L 4607.1378 3218.6732 L 4607.1378 3220.3268 L 4608.063 3220.3268 Z~cutout~gge1482~~~~0#@$SOLIDREGION~100~~M 4611.311 3223.6732 L 4608.0236 3223.6732 L 4608.0236 3225.3268 L 4611.311 3225.3268 Z~solid~gge1485~~~~0#@$SOLIDREGION~100~~M 4608.063 3223.6732 L 4607.1378 3223.6732 L 4607.1378 3225.3268 L 4608.063 3225.3268 Z~cutout~gge1488~~~~0#@$SOLIDREGION~100~~M 4611.311 3228.6732 L 4608.0236 3228.6732 L 4608.0236 3230.3268 L 4611.311 3230.3268 Z~solid~gge1491~~~~0#@$SOLIDREGION~100~~M 4608.063 3228.6732 L 4607.1378 3228.6732 L 4607.1378 3230.3268 L 4608.063 3230.3268 Z~cutout~gge1494~~~~0#@$SOLIDREGION~100~~M 4611.311 3233.6732 L 4608.0236 3233.6732 L 4608.0236 3235.3268 L 4611.311 3235.3268 Z~solid~gge1497~~~~0#@$SOLIDREGION~100~~M 4608.063 3233.6732 L 4607.1378 3233.6732 L 4607.1378 3235.3268 L 4608.063 3235.3268 Z~cutout~gge1500~~~~0#@$SVGNODE~{\"gId\":\"gge1503\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"18.9751\",\"c_height\":\"23.622\",\"c_rotation\":\"0,0,270\",\"z\":\"0\",\"c_origin\":\"4599.5,3227.0001\",\"uuid\":\"dc694c23844346e9981bdbac7bb76421\",\"c_etype\":\"outline3D\",\"title\":\"SOIC-8_L4.9-W3.9-H1.7-LS6.0-P1.27\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge1503\"},\"childNodes\":[{\"gId\":\"gge1506\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4606.9016 3217.3544 4606.8622 3217.3544 4606.7835 3217.3544 4592.2166 3217.3544 4592.0985 3217.3544 4592.0198 3217.3938 4591.941 3217.4725 4591.8623 3217.5513 4591.8229 3217.63 4591.8229 3217.7481 4591.8229 3218.7324 4591.2717 3218.7324 4591.1142 3218.7324 4591.0355 3218.7324 4590.9568 3218.7324 4590.878 3218.7324 4590.7993 3218.7324 4590.7205 3218.7324 4590.6418 3218.7324 4590.5631 3218.7324 4590.4843 3218.7324 4590.445 3218.7324 4590.3662 3218.7324 4590.3268 3218.7324 4590.2087 3218.7324 4590.13 3218.7324 4590.0513 3218.7324 4589.9725 3218.7324 4589.8938 3218.7324 4589.815 3218.7324 4589.7363 3218.7324 4589.6576 3218.7324 4589.5788 3218.7324 4589.5394 3218.7324 4589.4213 3218.7324 4589.3032 3218.7324 4589.2245 3218.7324 4589.1457 3218.7324 4589.067 3218.7324 4588.9883 3218.7324 4588.9095 3218.7324 4588.8308 3218.7324 4588.752 3218.7324 4588.6733 3218.7324 4588.6339 3218.7324 4588.5158 3218.7324 4587.5316 3218.7324 4587.4922 3218.7324 4587.4922 3218.8111 4587.4922 3220.2678 4587.4922 3220.3072 4587.5709 3220.3072 4588.5552 3220.3072 4588.6339 3220.3072 4588.7127 3220.3072 4588.752 3220.3072 4588.8702 3220.3072 4588.9489 3220.3072 4589.0276 3220.3072 4589.1064 3220.3072 4589.1851 3220.3072 4589.2245 3220.3072 4589.3426 3220.3072 4589.4607 3220.3072 4589.5394 3220.3072 4589.6182 3220.3072 4589.6969 3220.3072 4589.7757 3220.3072 4589.8544 3220.3072 4589.9331 3220.3072 4590.0119 3220.3072 4590.0906 3220.3072 4590.13 3220.3072 4590.2481 3220.3072 4590.3268 3220.3072 4590.445 3220.3072 4590.5237 3220.3072 4590.6024 3220.3072 4590.6812 3220.3072 4590.7205 3220.3072 4590.8387 3220.3072 4590.9174 3220.3072 4590.9961 3220.3072 4591.0749 3220.3072 4591.1536 3220.3072 4591.2324 3220.3072 4591.2717 3220.3072 4591.8229 3220.3072 4591.8229 3223.7324 4591.2717 3223.7324 4591.1142 3223.7324 4591.0749 3223.7324 4590.9568 3223.7324 4590.878 3223.7324 4590.7993 3223.7324 4590.7205 3223.7324 4590.6418 3223.7324 4590.5631 3223.7324 4590.5237 3223.7324 4590.445 3223.7324 4590.3268 3223.7324 4590.2087 3223.7324 4590.13 3223.7324 4590.0513 3223.7324 4589.9725 3223.7324 4589.8938 3223.7324 4589.815 3223.7324 4589.7363 3223.7324 4589.6576 3223.7324 4589.5788 3223.7324 4589.5394 3223.7324 4589.4213 3223.7324 4589.3032 3223.7324 4589.2245 3223.7324 4589.1457 3223.7324 4589.067 3223.7324 4588.9883 3223.7324 4588.9095 3223.7324 4588.8308 3223.7324 4588.752 3223.7324 4588.6733 3223.7324 4588.6339 3223.7324 4588.5158 3223.7324 4587.5316 3223.7324 4587.4922 3223.7324 4587.4922 3223.7717 4587.4922 3223.8111 4587.4922 3225.2678 4587.4922 3225.3072 4587.5709 3225.3072 4588.5552 3225.3072 4588.6339 3225.3072 4588.7127 3225.3072 4588.752 3225.3072 4588.8308 3225.3072 4588.9489 3225.3072 4589.0276 3225.3072 4589.1064 3225.3072 4589.1851 3225.3072 4589.2639 3225.3072 4589.3426 3225.3072 4589.382 3225.3072 4589.4607 3225.3072 4589.5394 3225.3072 4589.6182 3225.3072 4589.6969 3225.3072 4589.7757 3225.3072 4589.8544 3225.3072 4589.9331 3225.3072 4590.0119 3225.3072 4590.0906 3225.3072 4590.13 3225.3072 4590.2481 3225.3072 4590.3268 3225.3072 4590.445 3225.3072 4590.5237 3225.3072 4590.6024 3225.3072 4590.6812 3225.3072 4590.7599 3225.3072 4590.8387 3225.3072 4590.878 3225.3072 4590.9961 3225.3072 4591.0749 3225.3072 4591.1536 3225.3072 4591.193 3225.3072 4591.2717 3225.3072 4591.8229 3225.3072 4591.8229 3228.7323 4591.2717 3228.7323 4591.1142 3228.7323 4591.0749 3228.7323 4590.9568 3228.7323 4590.878 3228.7323 4590.7993 3228.7323 4590.7205 3228.7323 4590.6418 3228.7323 4590.5631 3228.7323 4590.4843 3228.7323 4590.445 3228.7323 4590.3268 3228.7323 4590.2087 3228.7323 4590.13 3228.7323 4590.0513 3228.7323 4589.9725 3228.7323 4589.8938 3228.7323 4589.815 3228.7323 4589.7363 3228.7323 4589.6576 3228.7323 4589.5788 3228.7323 4589.5394 3228.7323 4589.4213 3228.7323 4589.3032 3228.7323 4589.2245 3228.7323 4589.1457 3228.7323 4589.067 3228.7323 4588.9883 3228.7323 4588.9095 3228.7323 4588.8308 3228.7323 4588.752 3228.7323 4588.6733 3228.7323 4588.6339 3228.7323 4588.5158 3228.7323 4587.5316 3228.7323 4587.4922 3228.7323 4587.4922 3228.7717 4587.4922 3228.8111 4587.4922 3230.3071 4587.5709 3230.3071 4588.5552 3230.3071 4588.6339 3230.3071 4588.7127 3230.3071 4588.752 3230.3071 4588.8702 3230.3071 4588.9489 3230.3071 4589.0276 3230.3071 4589.1064 3230.3071 4589.1851 3230.3071 4589.2245 3230.3071 4589.3426 3230.3071 4589.4607 3230.3071 4589.5394 3230.3071 4589.6182 3230.3071 4589.6969 3230.3071 4589.7757 3230.3071 4589.8544 3230.3071 4589.9331 3230.3071 4590.0119 3230.3071 4590.0906 3230.3071 4590.13 3230.3071 4590.2481 3230.3071 4590.3268 3230.3071 4590.445 3230.3071 4590.5237 3230.3071 4590.6024 3230.3071 4590.6812 3230.3071 4590.7205 3230.3071 4590.8387 3230.3071 4590.9174 3230.3071 4590.9961 3230.3071 4591.0749 3230.3071 4591.1536 3230.3071 4591.2324 3230.3071 4591.2717 3230.3071 4591.8229 3230.3071 4591.8229 3233.7323 4591.2717 3233.7323 4591.1142 3233.7323 4591.0355 3233.7323 4590.9568 3233.7323 4590.878 3233.7323 4590.7993 3233.7323 4590.7205 3233.7323 4590.6418 3233.7323 4590.5631 3233.7323 4590.4843 3233.7323 4590.445 3233.7323 4590.3662 3233.7323 4590.3268 3233.7323 4590.2087 3233.7323 4590.13 3233.7323 4590.0513 3233.7323 4589.9725 3233.7323 4589.8938 3233.7323 4589.815 3233.7323 4589.7363 3233.7323 4589.6576 3233.7323 4589.5788 3233.7323 4589.5394 3233.7323 4589.4213 3233.7323 4589.3032 3233.7323 4589.2245 3233.7323 4589.1457 3233.7323 4589.067 3233.7323 4588.9883 3233.7323 4588.9095 3233.7323 4588.8308 3233.7323 4588.752 3233.7323 4588.6733 3233.7323 4588.6339 3233.7323 4588.5158 3233.7323 4587.5316 3233.7323 4587.4922 3233.7323 4587.4922 3233.7717 4587.4922 3233.8111 4587.4922 3235.3071 4587.5709 3235.3071 4588.5552 3235.3071 4588.6339 3235.3071 4588.7127 3235.3071 4588.752 3235.3071 4588.8308 3235.3071 4588.9489 3235.3071 4589.0276 3235.3071 4589.1064 3235.3071 4589.1851 3235.3071 4589.2639 3235.3071 4589.3426 3235.3071 4589.382 3235.3071 4589.4607 3235.3071 4589.5394 3235.3071 4589.6182 3235.3071 4589.6969 3235.3071 4589.7757 3235.3071 4589.8544 3235.3071 4589.9331 3235.3071 4590.0119 3235.3071 4590.0906 3235.3071 4590.13 3235.3071 4590.2481 3235.3071 4590.3268 3235.3071 4590.445 3235.3071 4590.5237 3235.3071 4590.6024 3235.3071 4590.6812 3235.3071 4590.7599 3235.3071 4590.8387 3235.3071 4590.878 3235.3071 4590.9961 3235.3071 4591.0749 3235.3071 4591.1536 3235.3071 4591.2324 3235.3071 4591.2717 3235.3071 4591.8229 3235.3071 4591.8229 3236.252 4591.8229 3236.3701 4591.8623 3236.4489 4591.941 3236.5276 4592.0198 3236.6063 4592.0985 3236.6457 4592.2166 3236.6457 4606.7835 3236.6457 4606.9016 3236.6457 4606.9804 3236.6063 4607.0591 3236.5276 4607.1378 3236.4489 4607.1772 3236.3701 4607.1772 3236.252 4607.1772 3235.3071 4607.7284 3235.3071 4607.8859 3235.3071 4607.9252 3235.3071 4608.0433 3235.3071 4608.1221 3235.3071 4608.2008 3235.3071 4608.2796 3235.3071 4608.3583 3235.3071 4608.437 3235.3071 4608.4764 3235.3071 4608.5552 3235.3071 4608.6733 3235.3071 4608.7914 3235.3071 4608.8701 3235.3071 4608.9489 3235.3071 4609.0276 3235.3071 4609.1063 3235.3071 4609.1851 3235.3071 4609.2638 3235.3071 4609.3426 3235.3071 4609.4213 3235.3071 4609.5 3235.3071 4609.5394 3235.3071 4609.4607 3235.3071 4609.4213 3235.2678 4609.5 3235.2678 4609.5394 3235.2678 4609.5 3235.3071 4609.4213 3235.3071 4609.4607 3235.3071 4609.5788 3235.3071 4609.6969 3235.3071 4609.7756 3235.3071 4609.8544 3235.3071 4609.9331 3235.3071 4610.0118 3235.3071 4610.0906 3235.3071 4610.1693 3235.3071 4610.2481 3235.3071 4610.3268 3235.3071 4610.3662 3235.3071 4610.4843 3235.3071 4611.4685 3235.3071 4611.5079 3235.2678 4611.5079 3233.8111 4611.5079 3233.7717 4611.5079 3233.7323 4611.4292 3233.7323 4610.4449 3233.7323 4610.3662 3233.7323 4610.2874 3233.7323 4610.2481 3233.7323 4610.13 3233.7323 4610.0512 3233.7323 4609.9725 3233.7323 4609.8937 3233.7323 4609.815 3233.7323 4609.7756 3233.7323 4609.6575 3233.7323 4609.5394 3233.7323 4609.4607 3233.7323 4609.3819 3233.7323 4609.3032 3233.7323 4609.2244 3233.7323 4609.1457 3233.7323 4609.067 3233.7323 4608.9882 3233.7323 4608.9095 3233.7323 4608.8701 3233.7323 4608.752 3233.7323 4608.6733 3233.7323 4608.5552 3233.7323 4608.4764 3233.7323 4608.3977 3233.7323 4608.3189 3233.7323 4608.2796 3233.7323 4608.1615 3233.7323 4608.0827 3233.7323 4608.004 3233.7323 4607.9252 3233.7323 4607.8465 3233.7323 4607.8071 3233.7323 4607.7284 3233.7323 4607.1772 3233.7323 4607.1772 3230.3071 4607.7284 3230.3071 4607.8859 3230.3071 4607.9646 3230.3071 4608.0433 3230.3071 4608.1221 3230.3071 4608.2008 3230.3071 4608.2796 3230.3071 4608.3583 3230.3071 4608.437 3230.3071 4608.4764 3230.3071 4608.5552 3230.3071 4608.6339 3230.3071 4608.6733 3230.3071 4608.7914 3230.3071 4608.8701 3230.3071 4608.9489 3230.3071 4609.0276 3230.3071 4609.1063 3230.3071 4609.1851 3230.3071 4609.2638 3230.3071 4609.3426 3230.3071 4609.4213 3230.3071 4609.4607 3230.3071 4609.5788 3230.3071 4609.6969 3230.3071 4609.7756 3230.3071 4609.8544 3230.3071 4609.9331 3230.3071 4610.0118 3230.3071 4610.0906 3230.3071 4610.1693 3230.3071 4610.2481 3230.3071 4610.3268 3230.3071 4610.3662 3230.3071 4610.4843 3230.3071 4611.4685 3230.3071 4611.5079 3230.2678 4611.5079 3229.5591 4611.5079 3228.8111 4611.5079 3228.7717 4611.5079 3228.7323 4611.4292 3228.7323 4610.4449 3228.7323 4610.3662 3228.7323 4610.2874 3228.7323 4610.2481 3228.7323 4610.13 3228.7323 4610.0512 3228.7323 4609.9725 3228.7323 4609.8937 3228.7323 4609.815 3228.7323 4609.7756 3228.7323 4609.6575 3228.7323 4609.5394 3228.7323 4609.4607 3228.7323 4609.3819 3228.7323 4609.3032 3228.7323 4609.2244 3228.7323 4609.1457 3228.7323 4609.067 3228.7323 4608.9882 3228.7323 4608.9095 3228.7323 4608.8701 3228.7323 4608.752 3228.7323 4608.6733 3228.7323 4608.5552 3228.7323 4608.4764 3228.7323 4608.3977 3228.7323 4608.3189 3228.7323 4608.2796 3228.7323 4608.1615 3228.7323 4608.0827 3228.7323 4608.004 3228.7323 4607.9252 3228.7323 4607.8465 3228.7323 4607.8071 3228.7323 4607.7284 3228.7323 4607.1772 3228.7323 4607.1772 3225.3072 4607.7284 3225.3072 4607.8859 3225.3072 4607.9646 3225.3072 4608.0433 3225.3072 4608.1221 3225.3072 4608.2008 3225.3072 4608.2796 3225.3072 4608.3583 3225.3072 4608.437 3225.3072 4608.4764 3225.3072 4608.5552 3225.3072 4608.6339 3225.3072 4608.6733 3225.3072 4608.7914 3225.3072 4608.8701 3225.3072 4608.9489 3225.3072 4609.0276 3225.3072 4609.1063 3225.3072 4609.1851 3225.3072 4609.2638 3225.3072 4609.3426 3225.3072 4609.4213 3225.3072 4609.5 3225.3072 4609.5394 3225.2678 4609.5394 3225.3072 4609.4607 3225.3072 4609.4213 3225.3072 4609.4213 3225.2678 4609.5 3225.2678 4609.5394 3225.2678 4609.5 3225.3072 4609.3819 3225.3072 4609.4213 3225.2678 4609.4213 3225.3072 4609.4607 3225.3072 4609.5788 3225.3072 4609.6969 3225.3072 4609.7756 3225.3072 4609.8544 3225.3072 4609.9331 3225.3072 4610.0118 3225.3072 4610.0906 3225.3072 4610.1693 3225.3072 4610.2481 3225.3072 4610.3268 3225.3072 4610.3662 3225.3072 4610.4843 3225.3072 4611.4685 3225.3072 4611.5079 3225.3072 4611.5079 3225.2678 4611.5079 3224.5591 4611.5079 3223.8111 4611.5079 3223.7717 4611.5079 3223.7324 4611.4292 3223.7324 4610.4449 3223.7324 4610.3662 3223.7324 4610.2874 3223.7324 4610.2481 3223.7324 4610.1693 3223.7324 4610.0512 3223.7324 4609.9725 3223.7324 4609.8937 3223.7324 4609.815 3223.7324 4609.7363 3223.7324 4609.6575 3223.7324 4609.6181 3223.7324 4609.5394 3223.7324 4609.4607 3223.7324 4609.3819 3223.7324 4609.3032 3223.7324 4609.2244 3223.7324 4609.1457 3223.7324 4609.067 3223.7324 4608.9882 3223.7324 4608.9095 3223.7324 4608.8701 3223.7324 4608.752 3223.7324 4608.6733 3223.7324 4608.5552 3223.7324 4608.4764 3223.7324 4608.3977 3223.7324 4608.3189 3223.7324 4608.2796 3223.7324 4608.1615 3223.7324 4608.1221 3223.7324 4608.004 3223.7324 4607.9252 3223.7324 4607.8465 3223.7324 4607.8071 3223.7324 4607.7284 3223.7324 4607.1772 3223.7324 4607.1772 3220.3072 4607.7284 3220.3072 4607.8859 3220.3072 4607.9646 3220.3072 4608.0433 3220.3072 4608.1221 3220.3072 4608.2008 3220.3072 4608.2796 3220.3072 4608.3583 3220.3072 4608.437 3220.3072 4608.4764 3220.3072 4608.5552 3220.3072 4608.6339 3220.3072 4608.6733 3220.3072 4608.7914 3220.3072 4608.8701 3220.3072 4608.9489 3220.3072 4609.0276 3220.3072 4609.1063 3220.3072 4609.1851 3220.3072 4609.2638 3220.3072 4609.3426 3220.3072 4609.4213 3220.3072 4609.4607 3220.3072 4609.5788 3220.3072 4609.6969 3220.3072 4609.7756 3220.3072 4609.8544 3220.3072 4609.9331 3220.3072 4610.0118 3220.3072 4610.0906 3220.3072 4610.1693 3220.3072 4610.2481 3220.3072 4610.3268 3220.3072 4610.3662 3220.3072 4610.4843 3220.3072 4611.4685 3220.3072 4611.5079 3220.3072 4611.5079 3220.2678 4611.5079 3218.7717 4611.5079 3218.7324 4611.4292 3218.7324 4610.4449 3218.7324 4610.3662 3218.7324 4610.2874 3218.7324 4610.2481 3218.7324 4610.13 3218.7324 4610.0512 3218.7324 4609.9725 3218.7324 4609.8937 3218.7324 4609.815 3218.7324 4609.7756 3218.7324 4609.6575 3218.7324 4609.5394 3218.7324 4609.4607 3218.7324 4609.3819 3218.7324 4609.3032 3218.7324 4609.2244 3218.7324 4609.1457 3218.7324 4609.067 3218.7324 4608.9882 3218.7324 4608.9095 3218.7324 4608.8701 3218.7324 4608.752 3218.7324 4608.6733 3218.7324 4608.5552 3218.7324 4608.4764 3218.7324 4608.3977 3218.7324 4608.3189 3218.7324 4608.2796 3218.7324 4608.1615 3218.7324 4608.0827 3218.7324 4608.004 3218.7324 4607.9252 3218.7324 4607.8465 3218.7324 4607.8071 3218.7324 4607.7284 3218.7324 4607.1772 3218.7324 4607.1772 3217.7481 4607.1772 3217.63 4607.1378 3217.5513 4607.0985 3217.5119 4607.0591 3217.4725 4607.0197 3217.4332 4606.9804 3217.3938 4606.941 3217.3938 4606.9016 3217.3544 4606.9016 3217.3544\",\"id\":\"gge1506\"}}]}#@$TEXT~N~4627.29~3275.42~0.6~90~0~3~~4.5~SN65HVD230DR~M 4623.36 3272.5599 L 4622.95 3272.9699 L 4622.75 3273.5799 L 4622.75 3274.3999 L 4622.95 3275.0099 L 4623.36 3275.4199 L 4623.77 3275.4199 L 4624.18 3275.2199 L 4624.39 3275.0099 L 4624.59 3274.5999 L 4625 3273.3699 L 4625.2 3272.9699 L 4625.41 3272.7599 L 4625.82 3272.5599 L 4626.43 3272.5599 L 4626.84 3272.9699 L 4627.04 3273.5799 L 4627.04 3274.3999 L 4626.84 3275.0099 L 4626.43 3275.4199 M 4622.75 3271.2099 L 4627.04 3271.2099 M 4622.75 3271.2099 L 4627.04 3268.3399 M 4622.75 3268.3399 L 4627.04 3268.3399 M 4623.36 3264.5399 L 4622.95 3264.7399 L 4622.75 3265.3599 L 4622.75 3265.7699 L 4622.95 3266.3799 L 4623.57 3266.7899 L 4624.59 3266.9899 L 4625.61 3266.9899 L 4626.43 3266.7899 L 4626.84 3266.3799 L 4627.04 3265.7699 L 4627.04 3265.5599 L 4626.84 3264.9499 L 4626.43 3264.5399 L 4625.82 3264.3299 L 4625.61 3264.3299 L 4625 3264.5399 L 4624.59 3264.9499 L 4624.39 3265.5599 L 4624.39 3265.7699 L 4624.59 3266.3799 L 4625 3266.7899 L 4625.61 3266.9899 M 4622.75 3260.5299 L 4622.75 3262.5699 L 4624.59 3262.7799 L 4624.39 3262.5699 L 4624.18 3261.9599 L 4624.18 3261.3499 L 4624.39 3260.7299 L 4624.79 3260.3199 L 4625.41 3260.1199 L 4625.82 3260.1199 L 4626.43 3260.3199 L 4626.84 3260.7299 L 4627.04 3261.3499 L 4627.04 3261.9599 L 4626.84 3262.5699 L 4626.64 3262.7799 L 4626.23 3262.9799 M 4622.75 3258.7699 L 4627.04 3258.7699 M 4622.75 3255.9099 L 4627.04 3255.9099 M 4624.79 3258.7699 L 4624.79 3255.9099 M 4622.75 3254.5599 L 4627.04 3252.9199 M 4622.75 3251.2799 L 4627.04 3252.9199 M 4622.75 3249.9299 L 4627.04 3249.9299 M 4622.75 3249.9299 L 4622.75 3248.4999 L 4622.95 3247.8899 L 4623.36 3247.4799 L 4623.77 3247.2699 L 4624.39 3247.0699 L 4625.41 3247.0699 L 4626.02 3247.2699 L 4626.43 3247.4799 L 4626.84 3247.8899 L 4627.04 3248.4999 L 4627.04 3249.9299 M 4623.77 3245.5199 L 4623.57 3245.5199 L 4623.16 3245.3099 L 4622.95 3245.1099 L 4622.75 3244.6999 L 4622.75 3243.8799 L 4622.95 3243.4699 L 4623.16 3243.2699 L 4623.57 3243.0599 L 4623.98 3243.0599 L 4624.39 3243.2699 L 4625 3243.6699 L 4627.04 3245.7199 L 4627.04 3242.8599 M 4622.75 3241.0999 L 4622.75 3238.8499 L 4624.39 3240.0699 L 4624.39 3239.4599 L 4624.59 3239.0499 L 4624.79 3238.8499 L 4625.41 3238.6399 L 4625.82 3238.6399 L 4626.43 3238.8499 L 4626.84 3239.2599 L 4627.04 3239.8699 L 4627.04 3240.4799 L 4626.84 3241.0999 L 4626.64 3241.2999 L 4626.23 3241.5099 M 4622.75 3236.0699 L 4622.95 3236.6799 L 4623.57 3237.0899 L 4624.59 3237.2899 L 4625.2 3237.2899 L 4626.23 3237.0899 L 4626.84 3236.6799 L 4627.04 3236.0699 L 4627.04 3235.6599 L 4626.84 3235.0399 L 4626.23 3234.6299 L 4625.2 3234.4299 L 4624.59 3234.4299 L 4623.57 3234.6299 L 4622.95 3235.0399 L 4622.75 3235.6599 L 4622.75 3236.0699 M 4622.75 3233.0799 L 4627.04 3233.0799 M 4622.75 3233.0799 L 4622.75 3231.6499 L 4622.95 3231.0299 L 4623.36 3230.6199 L 4623.77 3230.4199 L 4624.39 3230.2199 L 4625.41 3230.2199 L 4626.02 3230.4199 L 4626.43 3230.6199 L 4626.84 3231.0299 L 4627.04 3231.6499 L 4627.04 3233.0799 M 4622.75 3228.8699 L 4627.04 3228.8699 M 4622.75 3228.8699 L 4622.75 3227.0199 L 4622.95 3226.4099 L 4623.16 3226.2099 L 4623.57 3225.9999 L 4623.98 3225.9999 L 4624.39 3226.2099 L 4624.59 3226.4099 L 4624.79 3227.0199 L 4624.79 3228.8699 M 4624.79 3227.4299 L 4627.04 3225.9999~none~gge1425~~0~#@$TEXT~P~4598.261~3218.35~0.3937~270~0~3~~2.9528~CAN1_U1~M 4600.571 3220.36 L 4600.841 3220.23 L 4601.111 3219.96 L 4601.241 3219.69 L 4601.241 3219.16 L 4601.111 3218.89 L 4600.841 3218.62 L 4600.571 3218.48 L 4600.171 3218.35 L 4599.491 3218.35 L 4599.091 3218.48 L 4598.821 3218.62 L 4598.561 3218.89 L 4598.421 3219.16 L 4598.421 3219.69 L 4598.561 3219.96 L 4598.821 3220.23 L 4599.091 3220.36 M 4601.241 3222.32 L 4598.421 3221.25 M 4601.241 3222.32 L 4598.421 3223.4 M 4599.361 3221.65 L 4599.361 3222.99 M 4601.241 3224.28 L 4598.421 3224.28 M 4601.241 3224.28 L 4598.421 3226.16 M 4601.241 3226.16 L 4598.421 3226.16 M 4600.701 3227.05 L 4600.841 3227.32 L 4601.241 3227.72 L 4598.421 3227.72 M 4597.481 3228.6 L 4597.481 3231.02 M 4601.241 3231.91 L 4599.231 3231.91 L 4598.821 3232.04 L 4598.561 3232.31 L 4598.421 3232.71 L 4598.421 3232.98 L 4598.561 3233.38 L 4598.821 3233.65 L 4599.231 3233.78 L 4601.241 3233.78 M 4600.701 3234.67 L 4600.841 3234.94 L 4601.241 3235.34 L 4598.421 3235.34~~gge1431~~0~#@$TRACK~0.6~3~~4593.5102 3217.0543 4605.4898 3217.0543 4605.4898 3236.9457 4593.5102 3236.9457 4593.5102 3217.0543~gge1437~0#@$CIRCLE~4596.472~3219.5~0.591~1.1811~3~gge1440~0~~#@$CIRCLE~4588.585~3216.561~0.591~1.1811~3~gge1443~0~~#@$PAD~OVAL~4588.585~3219.5~2.315~8.0512~1~CAN1_U1_1~1~0~4591.4531 3219.5 4585.7169 3219.5~270~gge1509~0~~Y~0~0.0000~0.2000~4588.5846,3219.5#@$PAD~OVAL~4588.585~3224.5~2.315~8.0512~1~GND~2~0~4591.4531 3224.5 4585.7169 3224.5~270~gge1524~0~~Y~0~0.0000~0.2000~4588.5846,3224.5#@$PAD~OVAL~4588.585~3229.5~2.315~8.0512~1~+3.3V~3~0~4591.4531 3229.5 4585.7169 3229.5~270~gge1539~0~~Y~0~0.0000~0.2000~4588.5846,3229.5#@$PAD~OVAL~4588.585~3234.5~2.315~8.0512~1~CAN1_U1_4~4~0~4591.4531 3234.5 4585.7169 3234.5~270~gge1554~0~~Y~0~0.0000~0.2000~4588.5846,3234.5#@$PAD~OVAL~4610.415~3219.5~2.315~8.0512~1~CAN1_U1_8~8~0~4613.2831 3219.5 4607.5469 3219.5~270~gge1569~0~~Y~0~0.0000~0.2000~4610.4154,3219.5#@$PAD~OVAL~4610.415~3224.5~2.315~8.0512~1~CAN1_H~7~0~4613.2831 3224.5 4607.5469 3224.5~270~gge1584~0~~Y~0~0.0000~0.2000~4610.4154,3224.5#@$PAD~OVAL~4610.415~3229.5~2.315~8.0512~1~CAN1_L~6~0~4613.2831 3229.5 4607.5469 3229.5~270~gge1599~0~~Y~0~0.0000~0.2000~4610.4154,3229.5#@$PAD~OVAL~4610.415~3234.5~2.315~8.0512~1~~5~0~4613.2831 3234.5 4607.5469 3234.5~270~gge1614~0~~Y~0~0.0000~0.2000~4610.4154,3234.5","LIB~4509~3219.5~package`SOIC-18_L11.6-W7.5-P1.27-LS10.3-BL`link`https:\/\/cn.bing.com\/search?q=datasheet\uff1a MIC58P42YWM`Contributor`lcsc`3DModel`SOIC-18_L11.6-W7.5-H2.7-LS10.3-P1.27`BOM_Supplier`LCSC`BOM_Manufacturer`MICROCHIP`BOM_Manufacturer Part`MCP2515-I\/SO`BOM_Supplier Part`C12368`BOM_JLCPCB Part Class`Basic Part`spicePre`U`spiceSymbolName`MCP2515-I\/SO`~90~~gge484e3008dca2bfa8~1~45c3bbdf7fba47d1b4e39c9fc6f81f34~1620897843~0~~yes~~#@$CIRCLE~4530.85~3239.5~0.591~1.1811~12~gge1911~0~~#@$CIRCLE~4529.276~3242.236~0.118~0.2362~101~gge1914~0~~#@$SOLIDREGION~99~~M 4523.7638 3242.2362 L 4494.2362 3242.2362 L 4494.2362 3196.7638 L 4523.7638 3196.7618 Z~solid~gge1917~~~~0#@$SOLIDREGION~100~~M 4529.2756 3240.2874 L 4526.5197 3240.2874 L 4526.5197 3238.7126 L 4529.2756 3238.7126 Z~solid~gge1920~~~~0#@$SOLIDREGION~100~~M 4526.5591 3240.2874 L 4522.7402 3240.2874 L 4522.7402 3238.7126 L 4526.5591 3238.7126 Z~cutout~gge1923~~~~0#@$SOLIDREGION~100~~M 4529.2756 3235.2874 L 4526.5197 3235.2874 L 4526.5197 3233.7126 L 4529.2756 3233.7126 Z~solid~gge1926~~~~0#@$SOLIDREGION~100~~M 4526.5591 3235.2874 L 4522.7402 3235.2874 L 4522.7402 3233.7126 L 4526.5591 3233.7126 Z~cutout~gge1929~~~~0#@$SOLIDREGION~100~~M 4529.2756 3230.2874 L 4526.5197 3230.2874 L 4526.5197 3228.7126 L 4529.2756 3228.7126 Z~solid~gge1932~~~~0#@$SOLIDREGION~100~~M 4526.5591 3230.2874 L 4522.7402 3230.2874 L 4522.7402 3228.7126 L 4526.5591 3228.7126 Z~cutout~gge1935~~~~0#@$SOLIDREGION~100~~M 4529.2756 3225.2874 L 4526.5197 3225.2874 L 4526.5197 3223.7126 L 4529.2756 3223.7126 Z~solid~gge1938~~~~0#@$SOLIDREGION~100~~M 4526.5591 3225.2874 L 4522.7402 3225.2874 L 4522.7402 3223.7126 L 4526.5591 3223.7126 Z~cutout~gge1941~~~~0#@$SOLIDREGION~100~~M 4529.2756 3220.2874 L 4526.5197 3220.2874 L 4526.5197 3218.7126 L 4529.2756 3218.7126 Z~solid~gge1944~~~~0#@$SOLIDREGION~100~~M 4526.5591 3220.2874 L 4522.7402 3220.2874 L 4522.7402 3218.7126 L 4526.5591 3218.7126 Z~cutout~gge1947~~~~0#@$SOLIDREGION~100~~M 4529.2756 3215.2874 L 4526.5197 3215.2874 L 4526.5197 3213.7126 L 4529.2756 3213.7126 Z~solid~gge1950~~~~0#@$SOLIDREGION~100~~M 4526.5591 3215.2874 L 4522.7402 3215.2874 L 4522.7402 3213.7126 L 4526.5591 3213.7126 Z~cutout~gge1953~~~~0#@$SOLIDREGION~100~~M 4529.2756 3210.2874 L 4526.5197 3210.2874 L 4526.5197 3208.7126 L 4529.2756 3208.7126 Z~solid~gge1956~~~~0#@$SOLIDREGION~100~~M 4526.5591 3210.2874 L 4522.7402 3210.2874 L 4522.7402 3208.7126 L 4526.5591 3208.7126 Z~cutout~gge1959~~~~0#@$SOLIDREGION~100~~M 4529.2756 3205.2874 L 4526.5197 3205.2874 L 4526.5197 3203.7126 L 4529.2756 3203.7126 Z~solid~gge1962~~~~0#@$SOLIDREGION~100~~M 4526.5591 3205.2874 L 4522.7402 3205.2874 L 4522.7402 3203.7126 L 4526.5591 3203.7126 Z~cutout~gge1965~~~~0#@$SOLIDREGION~100~~M 4529.2756 3200.2874 L 4526.5197 3200.2874 L 4526.5197 3198.7126 L 4529.2756 3198.7126 Z~solid~gge1968~~~~0#@$SOLIDREGION~100~~M 4526.5591 3200.2874 L 4522.7402 3200.2874 L 4522.7402 3198.7126 L 4526.5591 3198.7126 Z~cutout~gge1971~~~~0#@$SOLIDREGION~100~~M 4488.7244 3240.2874 L 4491.4803 3240.2874 L 4491.4803 3238.7126 L 4488.7244 3238.7126 Z~solid~gge1974~~~~0#@$SOLIDREGION~100~~M 4491.4409 3240.2874 L 4495.2598 3240.2874 L 4495.2598 3238.7126 L 4491.4409 3238.7126 Z~cutout~gge1977~~~~0#@$SOLIDREGION~100~~M 4488.7244 3235.2874 L 4491.4803 3235.2874 L 4491.4803 3233.7126 L 4488.7244 3233.7126 Z~solid~gge1980~~~~0#@$SOLIDREGION~100~~M 4491.4409 3235.2874 L 4495.2598 3235.2874 L 4495.2598 3233.7126 L 4491.4409 3233.7126 Z~cutout~gge1983~~~~0#@$SOLIDREGION~100~~M 4488.7244 3230.2874 L 4491.4803 3230.2874 L 4491.4803 3228.7126 L 4488.7244 3228.7126 Z~solid~gge1986~~~~0#@$SOLIDREGION~100~~M 4491.4409 3230.2874 L 4495.2598 3230.2874 L 4495.2598 3228.7126 L 4491.4409 3228.7126 Z~cutout~gge1989~~~~0#@$SOLIDREGION~100~~M 4488.7244 3225.2874 L 4491.4803 3225.2874 L 4491.4803 3223.7126 L 4488.7244 3223.7126 Z~solid~gge1992~~~~0#@$SOLIDREGION~100~~M 4491.4409 3225.2874 L 4495.2598 3225.2874 L 4495.2598 3223.7126 L 4491.4409 3223.7126 Z~cutout~gge1995~~~~0#@$SOLIDREGION~100~~M 4488.7244 3220.2874 L 4491.4803 3220.2874 L 4491.4803 3218.7126 L 4488.7244 3218.7126 Z~solid~gge1998~~~~0#@$SOLIDREGION~100~~M 4491.4409 3220.2874 L 4495.2598 3220.2874 L 4495.2598 3218.7126 L 4491.4409 3218.7126 Z~cutout~gge2001~~~~0#@$SOLIDREGION~100~~M 4488.7244 3215.2874 L 4491.4803 3215.2874 L 4491.4803 3213.7126 L 4488.7244 3213.7126 Z~solid~gge2004~~~~0#@$SOLIDREGION~100~~M 4491.4409 3215.2874 L 4495.2598 3215.2874 L 4495.2598 3213.7126 L 4491.4409 3213.7126 Z~cutout~gge2007~~~~0#@$SOLIDREGION~100~~M 4488.7244 3210.2874 L 4491.4803 3210.2874 L 4491.4803 3208.7126 L 4488.7244 3208.7126 Z~solid~gge2010~~~~0#@$SOLIDREGION~100~~M 4491.4409 3210.2874 L 4495.2598 3210.2874 L 4495.2598 3208.7126 L 4491.4409 3208.7126 Z~cutout~gge2013~~~~0#@$SOLIDREGION~100~~M 4488.7244 3205.2874 L 4491.4803 3205.2874 L 4491.4803 3203.7126 L 4488.7244 3203.7126 Z~solid~gge2016~~~~0#@$SOLIDREGION~100~~M 4491.4409 3205.2874 L 4495.2598 3205.2874 L 4495.2598 3203.7126 L 4491.4409 3203.7126 Z~cutout~gge2019~~~~0#@$SOLIDREGION~100~~M 4488.7244 3200.2874 L 4491.4803 3200.2874 L 4491.4803 3198.7126 L 4488.7244 3198.7126 Z~solid~gge2022~~~~0#@$SOLIDREGION~100~~M 4491.4409 3200.2874 L 4495.2598 3200.2874 L 4495.2598 3198.7126 L 4491.4409 3198.7126 Z~cutout~gge2025~~~~0#@$SVGNODE~{\"gId\":\"gge2028\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"45.6692\",\"c_height\":\"40.968154284\",\"c_rotation\":\"0,0,90\",\"z\":\"0\",\"c_origin\":\"4509,3219.5\",\"uuid\":\"fc3a93654c1b420498d6b79940c8e856\",\"c_etype\":\"outline3D\",\"title\":\"SOIC-18_L11.6-W7.5-H2.7-LS10.3-P1.27\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge2028\"},\"childNodes\":[{\"gId\":\"gge2031\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4494.5118 3242.3346 4494.6299 3242.3346 4523.37 3242.3346 4523.4881 3242.3346 4523.5669 3242.2952 4523.6456 3242.2165 4523.7243 3242.1377 4523.7637 3242.059 4523.7637 3241.9409 4523.7637 3240.2874 4524.3936 3240.2874 4524.5905 3240.2874 4524.6692 3240.2874 4524.7873 3240.2874 4524.9054 3240.2874 4525.0236 3240.2874 4525.1023 3240.2874 4525.1417 3240.2874 4525.2204 3240.2874 4525.3779 3240.2874 4525.4566 3240.2874 4525.496 3240.2874 4525.6141 3240.2874 4525.7322 3240.2874 4525.7716 3240.2874 4525.811 3240.2874 4527.1889 3240.2874 4527.2676 3240.2874 4527.3464 3240.2874 4527.4251 3240.2874 4527.4645 3240.2874 4527.5826 3240.2874 4527.7401 3240.2874 4527.8188 3240.2874 4527.8976 3240.2874 4527.9763 3240.2874 4528.055 3240.2874 4528.1732 3240.2874 4528.2519 3240.2874 4528.3306 3240.2874 4528.4094 3240.2874 4528.5275 3240.2874 4529.3936 3240.2874 4529.4724 3240.2874 4529.4724 3240.248 4529.4724 3240.2086 4529.4724 3238.7126 4529.433 3238.7126 4529.3936 3238.7126 4528.4881 3238.7126 4528.4094 3238.7126 4528.2913 3238.7126 4528.2519 3238.7126 4528.1338 3238.7126 4528.0157 3238.7126 4527.9369 3238.7126 4527.8582 3238.7126 4527.7795 3238.7126 4527.7007 3238.7126 4527.5432 3238.7126 4527.3858 3238.7126 4527.3464 3238.7126 4527.2283 3238.7126 4527.1495 3238.7126 4525.811 3238.7126 4525.7322 3238.7126 4525.6928 3238.7126 4525.6141 3238.7126 4525.496 3238.7126 4525.4566 3238.7126 4525.3779 3238.7126 4525.181 3238.7126 4525.1023 3238.7126 4525.0236 3238.7126 4524.9842 3238.7126 4524.9054 3238.7126 4524.8661 3238.7126 4524.748 3238.7126 4524.6692 3238.7126 4524.5511 3238.7126 4524.4724 3238.7126 4524.3936 3238.7126 4524.0787 3238.7126 4523.7637 3238.7126 4523.7637 3235.2874 4524.3936 3235.2874 4524.5905 3235.2874 4524.6692 3235.2874 4524.748 3235.2874 4524.7873 3235.2874 4524.9054 3235.2874 4525.0236 3235.2874 4525.1023 3235.2874 4525.1417 3235.2874 4525.2204 3235.2874 4525.3779 3235.2874 4525.4566 3235.2874 4525.496 3235.2874 4525.6141 3235.2874 4525.7322 3235.2874 4525.7716 3235.2874 4525.811 3235.2874 4526.4802 3235.2874 4527.1889 3235.2874 4527.2676 3235.2874 4527.3464 3235.2874 4527.4251 3235.2874 4527.4645 3235.2874 4527.5826 3235.2874 4527.7401 3235.2874 4527.8188 3235.2874 4527.8976 3235.2874 4527.9763 3235.2874 4528.055 3235.2874 4528.1732 3235.2874 4528.2519 3235.2874 4528.3306 3235.2874 4528.4094 3235.2874 4528.5275 3235.2874 4529.3936 3235.2874 4529.4724 3235.2874 4529.4724 3235.2086 4529.4724 3233.7519 4529.433 3233.7126 4529.3936 3233.7126 4528.4881 3233.7126 4528.4094 3233.7126 4528.2913 3233.7126 4528.2519 3233.7126 4528.1338 3233.7126 4528.0157 3233.7126 4527.9369 3233.7126 4527.8582 3233.7126 4527.8188 3233.7126 4527.7007 3233.7126 4527.5432 3233.7126 4527.3858 3233.7126 4527.307 3233.7126 4527.1889 3233.7126 4527.1495 3233.7126 4525.811 3233.7126 4525.7322 3233.7126 4525.6535 3233.7126 4525.5747 3233.7126 4525.496 3233.7126 4525.4566 3233.7126 4525.3779 3233.7126 4525.181 3233.7126 4525.1023 3233.7126 4525.0236 3233.7126 4524.9842 3233.7126 4524.8661 3233.7126 4524.8267 3233.7126 4524.748 3233.7126 4524.6299 3233.7126 4524.5511 3233.7126 4524.4724 3233.7126 4524.3936 3233.7126 4523.7637 3233.7126 4523.7637 3230.2874 4524.3936 3230.2874 4524.5905 3230.2874 4524.6692 3230.2874 4524.748 3230.2874 4524.7873 3230.2874 4524.9054 3230.2874 4525.0236 3230.2874 4525.1023 3230.2874 4525.1417 3230.2874 4525.2204 3230.2874 4525.3779 3230.2874 4525.4566 3230.2874 4525.496 3230.2874 4525.6141 3230.2874 4525.7322 3230.2874 4525.7716 3230.2874 4525.811 3230.2874 4526.4802 3230.2874 4527.1889 3230.2874 4527.2676 3230.2874 4527.3464 3230.2874 4527.4251 3230.2874 4527.4645 3230.2874 4527.5826 3230.2874 4527.7401 3230.2874 4527.8188 3230.2874 4527.8976 3230.2874 4527.9763 3230.2874 4528.055 3230.2874 4528.1732 3230.2874 4528.2519 3230.2874 4528.3306 3230.2874 4528.4094 3230.2874 4528.5275 3230.2874 4529.3936 3230.2874 4529.4724 3230.2874 4529.4724 3230.2086 4529.4724 3228.7519 4529.433 3228.7126 4529.3936 3228.7126 4528.4881 3228.7126 4528.4094 3228.7126 4528.2913 3228.7126 4528.2519 3228.7126 4528.1338 3228.7126 4528.0157 3228.7126 4527.9369 3228.7126 4527.8582 3228.7126 4527.8188 3228.7126 4527.7007 3228.7126 4527.5432 3228.7126 4527.3858 3228.7126 4527.307 3228.7126 4527.1889 3228.7126 4527.1495 3228.7126 4525.811 3228.7126 4525.7322 3228.7126 4525.6535 3228.7126 4525.5747 3228.7126 4525.496 3228.7126 4525.4566 3228.7126 4525.3779 3228.7126 4525.181 3228.7126 4525.1023 3228.7126 4525.0236 3228.7126 4524.9842 3228.7126 4524.8661 3228.7126 4524.8267 3228.7126 4524.748 3228.7126 4524.6299 3228.7126 4524.5511 3228.7126 4524.4724 3228.7126 4524.3936 3228.7126 4523.7637 3228.7126 4523.7637 3225.2874 4524.3936 3225.2874 4524.5905 3225.2874 4524.6692 3225.2874 4524.748 3225.2874 4524.7873 3225.2874 4524.9054 3225.2874 4525.0236 3225.2874 4525.1023 3225.2874 4525.1417 3225.2874 4525.2204 3225.2874 4525.3779 3225.2874 4525.4566 3225.2874 4525.496 3225.2874 4525.6141 3225.2874 4525.7322 3225.2874 4525.7716 3225.2874 4525.811 3225.2874 4527.1889 3225.2874 4527.2676 3225.2874 4527.3464 3225.2874 4527.4251 3225.2874 4527.4645 3225.2874 4527.5826 3225.2874 4527.7401 3225.2874 4527.8188 3225.2874 4527.8976 3225.2874 4527.9763 3225.2874 4528.055 3225.2874 4528.1732 3225.2874 4528.2519 3225.2874 4528.3306 3225.2874 4528.4094 3225.2874 4528.5275 3225.2874 4529.3936 3225.2874 4529.4724 3225.2874 4529.4724 3225.248 4529.4724 3225.2086 4529.4724 3223.752 4529.433 3223.7126 4529.3936 3223.7126 4528.4881 3223.7126 4528.4094 3223.7126 4528.2913 3223.7126 4528.2519 3223.7126 4528.1338 3223.7126 4528.0157 3223.7126 4527.9369 3223.7126 4527.8582 3223.7126 4527.8188 3223.7126 4527.7007 3223.7126 4527.5432 3223.7126 4527.3858 3223.7126 4527.3464 3223.7126 4527.2283 3223.7126 4527.1495 3223.7126 4525.811 3223.7126 4525.7322 3223.7126 4525.6535 3223.7126 4525.5747 3223.7126 4525.496 3223.7126 4525.4566 3223.7126 4525.3779 3223.7126 4525.181 3223.7126 4525.1023 3223.7126 4525.0236 3223.7126 4524.9842 3223.7126 4524.8661 3223.7126 4524.748 3223.7126 4524.6299 3223.7126 4524.5511 3223.7126 4524.4724 3223.7126 4524.3936 3223.7126 4523.7637 3223.7126 4523.7637 3220.2874 4524.3936 3220.2874 4524.5905 3220.2874 4524.6692 3220.2874 4524.7873 3220.2874 4524.9054 3220.2874 4525.0236 3220.2874 4525.1023 3220.2874 4525.1417 3220.2874 4525.2204 3220.2874 4525.3779 3220.2874 4525.4566 3220.2874 4525.496 3220.2874 4525.6141 3220.2874 4525.7322 3220.2874 4525.7716 3220.2874 4525.811 3220.2874 4526.4802 3220.2874 4527.1889 3220.2874 4527.2676 3220.2874 4527.3464 3220.2874 4527.4251 3220.2874 4527.4645 3220.2874 4527.5826 3220.2874 4527.7401 3220.2874 4527.8188 3220.2874 4527.8976 3220.2874 4527.9763 3220.2874 4528.055 3220.2874 4528.1732 3220.2874 4528.2519 3220.2874 4528.3306 3220.2874 4528.4094 3220.2874 4528.5275 3220.2874 4529.3936 3220.2874 4529.4724 3220.2874 4529.4724 3220.248 4529.4724 3220.2087 4529.4724 3218.752 4529.433 3218.7126 4529.3936 3218.7126 4528.4881 3218.7126 4528.4487 3218.7126 4528.4094 3218.7126 4528.2913 3218.7126 4528.2519 3218.7126 4528.1732 3218.7126 4528.0944 3218.7126 4528.0157 3218.7126 4527.9369 3218.7126 4527.8582 3218.7126 4527.7795 3218.7126 4527.7007 3218.7126 4527.5826 3218.7126 4527.4645 3218.7126 4527.4251 3218.7126 4527.307 3218.7126 4527.1889 3218.7126 4527.1495 3218.7126 4525.811 3218.7126 4525.7322 3218.7126 4525.6928 3218.7126 4525.6141 3218.7126 4525.496 3218.7126 4525.3385 3218.7126 4525.2204 3218.7126 4525.1023 3218.7126 4525.0236 3218.7126 4524.9842 3218.7126 4524.9054 3218.7126 4524.8661 3218.7126 4524.748 3218.7126 4524.6692 3218.7126 4524.5511 3218.7126 4524.3936 3218.7126 4524.0787 3218.7126 4523.7637 3218.7126 4523.7637 3215.2874 4524.3936 3215.2874 4524.5905 3215.2874 4524.6692 3215.2874 4524.748 3215.2874 4524.7873 3215.2874 4524.9054 3215.2874 4525.0236 3215.2874 4525.1023 3215.2874 4525.1417 3215.2874 4525.2204 3215.2874 4525.3779 3215.2874 4525.4566 3215.2874 4525.496 3215.2874 4525.6141 3215.2874 4525.7322 3215.2874 4525.7716 3215.2874 4525.811 3215.2874 4527.1889 3215.2874 4527.2676 3215.2874 4527.3464 3215.2874 4527.4251 3215.2874 4527.4645 3215.2874 4527.5826 3215.2874 4527.7401 3215.2874 4527.8188 3215.2874 4527.8976 3215.2874 4527.9763 3215.2874 4528.055 3215.2874 4528.1732 3215.2874 4528.2519 3215.2874 4528.3306 3215.2874 4528.4094 3215.2874 4528.5275 3215.2874 4529.3936 3215.2874 4529.4724 3215.2874 4529.4724 3215.248 4529.4724 3215.2087 4529.4724 3213.752 4529.433 3213.7126 4529.3936 3213.7126 4528.4881 3213.7126 4528.4094 3213.7126 4528.2913 3213.7126 4528.2519 3213.7126 4528.1338 3213.7126 4528.0157 3213.7126 4527.9369 3213.7126 4527.8582 3213.7126 4527.8188 3213.7126 4527.7007 3213.7126 4527.5432 3213.7126 4527.3858 3213.7126 4527.3464 3213.7126 4527.2283 3213.7126 4527.1495 3213.7126 4525.811 3213.7126 4525.7322 3213.7126 4525.6535 3213.7126 4525.5747 3213.7126 4525.496 3213.7126 4525.4566 3213.7126 4525.3779 3213.7126 4525.181 3213.7126 4525.1023 3213.7126 4525.0236 3213.7126 4524.9842 3213.7126 4524.8661 3213.7126 4524.8267 3213.7126 4524.748 3213.7126 4524.6299 3213.7126 4524.5511 3213.7126 4524.4724 3213.7126 4524.3936 3213.7126 4524.0787 3213.7126 4523.7637 3213.7126 4523.7637 3210.2874 4524.3936 3210.2874 4524.5905 3210.2874 4524.6692 3210.2874 4524.748 3210.2874 4524.7873 3210.2874 4524.9054 3210.2874 4525.0236 3210.2874 4525.1023 3210.2874 4525.1417 3210.2874 4525.2204 3210.2874 4525.3779 3210.2874 4525.4566 3210.2874 4525.496 3210.2874 4525.6141 3210.2874 4525.7322 3210.2874 4525.7716 3210.2874 4525.811 3210.2874 4527.1889 3210.2874 4527.2676 3210.2874 4527.3464 3210.2874 4527.4251 3210.2874 4527.4645 3210.2874 4527.5826 3210.2874 4527.7401 3210.2874 4527.8188 3210.2874 4527.8976 3210.2874 4527.9763 3210.2874 4528.055 3210.2874 4528.1732 3210.2874 4528.2519 3210.2874 4528.3306 3210.2874 4528.4094 3210.2874 4528.5275 3210.2874 4529.3936 3210.2874 4529.4724 3210.2874 4529.4724 3210.2087 4529.4724 3208.752 4529.433 3208.7126 4529.3936 3208.7126 4528.4881 3208.7126 4528.4487 3208.7126 4528.4094 3208.7126 4528.2913 3208.7126 4528.2519 3208.7126 4528.1732 3208.7126 4528.0944 3208.7126 4528.0157 3208.7126 4527.9369 3208.7126 4527.8582 3208.7126 4527.8188 3208.7126 4527.7007 3208.7126 4527.5826 3208.7126 4527.4645 3208.7126 4527.4251 3208.7126 4527.3464 3208.7126 4527.2283 3208.7126 4527.1495 3208.7126 4525.811 3208.7126 4525.7322 3208.7126 4525.6535 3208.7126 4525.5747 3208.7126 4525.496 3208.7126 4525.3385 3208.7126 4525.2204 3208.7126 4525.1023 3208.7126 4525.0236 3208.7126 4524.9842 3208.7126 4524.8661 3208.7126 4524.8267 3208.7126 4524.748 3208.7126 4524.6299 3208.7126 4524.5511 3208.7126 4524.3936 3208.7126 4523.7637 3208.7126 4523.7637 3205.2874 4524.3936 3205.2874 4524.5905 3205.2874 4524.6692 3205.2874 4524.748 3205.2874 4524.7873 3205.2874 4524.9054 3205.2874 4525.0236 3205.2874 4525.1023 3205.2874 4525.1417 3205.2874 4525.2204 3205.2874 4525.3779 3205.2874 4525.4566 3205.2874 4525.496 3205.2874 4525.6141 3205.2874 4525.7322 3205.2874 4525.7716 3205.2874 4525.811 3205.2874 4527.1889 3205.2874 4527.2676 3205.2874 4527.3464 3205.2874 4527.4251 3205.2874 4527.4645 3205.2874 4527.5826 3205.2874 4527.7401 3205.2874 4527.8188 3205.2874 4527.8976 3205.2874 4527.9763 3205.2874 4528.055 3205.2874 4528.1732 3205.2874 4528.2519 3205.2874 4528.3306 3205.2874 4528.4094 3205.2874 4528.5275 3205.2874 4529.3936 3205.2874 4529.4724 3205.2874 4529.4724 3205.2087 4529.4724 3203.7126 4529.433 3203.7126 4529.3936 3203.7126 4528.4881 3203.7126 4528.4487 3203.7126 4528.4094 3203.7126 4528.2913 3203.7126 4528.2519 3203.7126 4528.1732 3203.7126 4528.0944 3203.7126 4528.0157 3203.7126 4527.9369 3203.7126 4527.8582 3203.7126 4527.8188 3203.7126 4527.7007 3203.7126 4527.5826 3203.7126 4527.4645 3203.7126 4527.4251 3203.7126 4527.3464 3203.7126 4527.2283 3203.7126 4527.1495 3203.7126 4525.811 3203.7126 4525.7322 3203.7126 4525.6535 3203.7126 4525.5747 3203.7126 4525.496 3203.7126 4525.3385 3203.7126 4525.2204 3203.7126 4525.1023 3203.7126 4525.0236 3203.7126 4524.9842 3203.7126 4524.8661 3203.7126 4524.8267 3203.7126 4524.748 3203.7126 4524.6299 3203.7126 4524.5511 3203.7126 4524.3936 3203.7126 4523.7637 3203.7126 4523.7637 3200.2874 4524.3936 3200.2874 4524.5905 3200.2874 4524.6692 3200.2874 4524.7873 3200.2874 4524.9054 3200.2874 4525.0236 3200.2874 4525.1023 3200.2874 4525.1417 3200.2874 4525.2204 3200.2874 4525.3779 3200.2874 4525.4566 3200.2874 4525.496 3200.2874 4525.6141 3200.2874 4525.7322 3200.2874 4525.7716 3200.2874 4525.811 3200.2874 4527.1889 3200.2874 4527.2676 3200.2874 4527.3464 3200.2874 4527.4251 3200.2874 4527.4645 3200.2874 4527.5826 3200.2874 4527.7401 3200.2874 4527.8188 3200.2874 4527.8976 3200.2874 4527.9763 3200.2874 4528.055 3200.2874 4528.1732 3200.2874 4528.2519 3200.2874 4528.3306 3200.2874 4528.4094 3200.2874 4528.5275 3200.2874 4529.3936 3200.2874 4529.4724 3200.2874 4529.4724 3200.2481 4529.4724 3198.7126 4529.433 3198.7126 4529.3936 3198.7126 4528.4881 3198.7126 4528.4094 3198.7126 4528.2913 3198.7126 4528.2519 3198.7126 4528.1338 3198.7126 4528.0157 3198.7126 4527.9369 3198.7126 4527.8582 3198.7126 4527.7795 3198.7126 4527.7007 3198.7126 4527.5432 3198.7126 4527.3858 3198.7126 4527.3464 3198.7126 4527.2283 3198.7126 4527.1495 3198.7126 4525.811 3198.7126 4525.7322 3198.7126 4525.6928 3198.7126 4525.6141 3198.7126 4525.496 3198.7126 4525.4566 3198.7126 4525.3779 3198.7126 4525.181 3198.7126 4525.1023 3198.7126 4525.0236 3198.7126 4524.9842 3198.7126 4524.9054 3198.7126 4524.8661 3198.7126 4524.748 3198.7126 4524.6692 3198.7126 4524.5511 3198.7126 4524.4724 3198.7126 4524.3936 3198.7126 4524.0787 3198.7126 4523.7637 3198.7126 4523.7637 3197.0591 4523.7637 3196.941 4523.7243 3196.8622 4523.6456 3196.7835 4523.5669 3196.7048 4523.4881 3196.6654 4523.37 3196.6654 4494.6299 3196.6654 4494.5118 3196.6654 4494.4331 3196.7048 4494.3543 3196.7835 4494.2756 3196.8622 4494.2362 3196.941 4494.2362 3197.0591 4494.2362 3198.7126 4493.9213 3198.7126 4493.6063 3198.7126 4493.4094 3198.7126 4493.3307 3198.7126 4493.2126 3198.7126 4493.0945 3198.7126 4492.9764 3198.7126 4492.8976 3198.7126 4492.8583 3198.7126 4492.7795 3198.7126 4492.622 3198.7126 4492.5433 3198.7126 4492.5039 3198.7126 4492.3858 3198.7126 4492.2677 3198.7126 4492.2283 3198.7126 4492.189 3198.7126 4490.811 3198.7126 4490.7323 3198.7126 4490.6535 3198.7126 4490.5748 3198.7126 4490.5354 3198.7126 4490.4173 3198.7126 4490.2598 3198.7126 4490.1811 3198.7126 4490.1024 3198.7126 4490.0236 3198.7126 4489.9449 3198.7126 4489.8268 3198.7126 4489.748 3198.7126 4489.6693 3198.7126 4489.5906 3198.7126 4489.4724 3198.7126 4488.6063 3198.7126 4488.5276 3198.7126 4488.5276 3198.752 4488.5276 3200.2874 4488.5669 3200.2874 4488.6063 3200.2874 4489.5118 3200.2874 4489.5906 3200.2874 4489.7087 3200.2874 4489.748 3200.2874 4489.8661 3200.2874 4489.9843 3200.2874 4490.063 3200.2874 4490.1417 3200.2874 4490.2205 3200.2874 4490.2992 3200.2874 4490.4567 3200.2874 4490.6142 3200.2874 4490.6535 3200.2874 4490.7717 3200.2874 4490.8504 3200.2874 4492.189 3200.2874 4492.2677 3200.2874 4492.3071 3200.2874 4492.3858 3200.2874 4492.5039 3200.2874 4492.5433 3200.2874 4492.622 3200.2874 4492.8189 3200.2874 4492.8976 3200.2874 4492.9764 3200.2874 4493.0157 3200.2874 4493.0945 3200.2874 4493.1339 3200.2874 4493.252 3200.2874 4493.3307 3200.2874 4493.4488 3200.2874 4493.5276 3200.2874 4493.6063 3200.2874 4494.2362 3200.2874 4494.2362 3203.7126 4493.6063 3203.7126 4493.4094 3203.7126 4493.3307 3203.7126 4493.252 3203.7126 4493.2126 3203.7126 4493.0945 3203.7126 4492.9764 3203.7126 4492.8976 3203.7126 4492.8583 3203.7126 4492.7795 3203.7126 4492.622 3203.7126 4492.5433 3203.7126 4492.5039 3203.7126 4492.3858 3203.7126 4492.2677 3203.7126 4492.2283 3203.7126 4492.189 3203.7126 4491.5197 3203.7126 4490.811 3203.7126 4490.7323 3203.7126 4490.6535 3203.7126 4490.5748 3203.7126 4490.5354 3203.7126 4490.4173 3203.7126 4490.2598 3203.7126 4490.1811 3203.7126 4490.1024 3203.7126 4490.0236 3203.7126 4489.9449 3203.7126 4489.8268 3203.7126 4489.748 3203.7126 4489.6693 3203.7126 4489.5906 3203.7126 4489.4724 3203.7126 4488.6063 3203.7126 4488.5276 3203.7126 4488.5276 3203.752 4488.5276 3204.4607 4488.5276 3205.2481 4488.5669 3205.2874 4488.6063 3205.2874 4489.5118 3205.2874 4489.5906 3205.2874 4489.7087 3205.2874 4489.748 3205.2874 4489.8661 3205.2874 4489.9843 3205.2874 4490.063 3205.2874 4490.1417 3205.2874 4490.1811 3205.2874 4490.2992 3205.2874 4490.4567 3205.2874 4490.6142 3205.2874 4490.6929 3205.2874 4490.811 3205.2874 4490.8504 3205.2874 4492.189 3205.2874 4492.2677 3205.2874 4492.3465 3205.2874 4492.4252 3205.2874 4492.5039 3205.2874 4492.5433 3205.2874 4492.622 3205.2874 4492.8189 3205.2874 4492.8976 3205.2874 4492.9764 3205.2874 4493.0157 3205.2874 4493.1339 3205.2874 4493.252 3205.2874 4493.3701 3205.2874 4493.4488 3205.2874 4493.5276 3205.2874 4493.6063 3205.2874 4494.2362 3205.2874 4494.2362 3208.7126 4493.6063 3208.7126 4493.4094 3208.7126 4493.3307 3208.7126 4493.252 3208.7126 4493.2126 3208.7126 4493.1339 3208.7126 4493.0945 3208.7126 4492.9764 3208.7126 4492.8976 3208.7126 4492.8583 3208.7126 4492.7795 3208.7126 4492.622 3208.7126 4492.5433 3208.7126 4492.5039 3208.7126 4492.3858 3208.7126 4492.2677 3208.7126 4492.2283 3208.7126 4492.189 3208.7126 4491.5197 3208.7126 4490.811 3208.7126 4490.7323 3208.7126 4490.6535 3208.7126 4490.5748 3208.7126 4490.5354 3208.7126 4490.4173 3208.7126 4490.2598 3208.7126 4490.1811 3208.7126 4490.1024 3208.7126 4490.0236 3208.7126 4489.9449 3208.7126 4489.8268 3208.7126 4489.748 3208.7126 4489.6693 3208.7126 4489.5906 3208.7126 4489.4724 3208.7126 4488.6063 3208.7126 4488.5276 3208.7126 4488.5276 3208.752 4488.5276 3209.4606 4488.5276 3210.248 4488.5669 3210.2874 4488.6063 3210.2874 4489.5118 3210.2874 4489.5906 3210.2874 4489.7087 3210.2874 4489.748 3210.2874 4489.8661 3210.2874 4489.9843 3210.2874 4490.063 3210.2874 4490.1417 3210.2874 4490.1811 3210.2874 4490.2992 3210.2874 4490.4567 3210.2874 4490.6142 3210.2874 4490.6929 3210.2874 4490.811 3210.2874 4490.8504 3210.2874 4492.189 3210.2874 4492.2677 3210.2874 4492.3465 3210.2874 4492.4252 3210.2874 4492.5039 3210.2874 4492.5433 3210.2874 4492.622 3210.2874 4492.8189 3210.2874 4492.8976 3210.2874 4492.9764 3210.2874 4493.0157 3210.2874 4493.1339 3210.2874 4493.1732 3210.2874 4493.252 3210.2874 4493.3701 3210.2874 4493.4488 3210.2874 4493.5276 3210.2874 4493.6063 3210.2874 4494.2362 3210.2874 4494.2362 3213.7126 4493.6063 3213.7126 4493.4094 3213.7126 4493.3307 3213.7126 4493.252 3213.7126 4493.2126 3213.7126 4493.0945 3213.7126 4492.9764 3213.7126 4492.8976 3213.7126 4492.8583 3213.7126 4492.7795 3213.7126 4492.622 3213.7126 4492.5433 3213.7126 4492.5039 3213.7126 4492.3858 3213.7126 4492.2677 3213.7126 4492.2283 3213.7126 4492.189 3213.7126 4490.811 3213.7126 4490.7323 3213.7126 4490.6535 3213.7126 4490.5748 3213.7126 4490.5354 3213.7126 4490.4173 3213.7126 4490.2598 3213.7126 4490.1811 3213.7126 4490.1024 3213.7126 4490.0236 3213.7126 4489.9449 3213.7126 4489.8268 3213.7126 4489.748 3213.7126 4489.6693 3213.7126 4489.5906 3213.7126 4489.4724 3213.7126 4488.6063 3213.7126 4488.5276 3213.7126 4488.5276 3213.752 4488.5276 3214.5 4488.5276 3215.2087 4488.5276 3215.248 4488.5669 3215.2874 4488.6063 3215.2874 4489.5118 3215.2874 4489.5906 3215.2874 4489.7087 3215.2874 4489.748 3215.2874 4489.8661 3215.2874 4489.9843 3215.2874 4490.063 3215.2874 4490.1417 3215.2874 4490.1811 3215.2874 4490.2992 3215.2874 4490.4567 3215.2874 4490.6142 3215.2874 4490.6535 3215.2874 4490.7717 3215.2874 4490.8504 3215.2874 4492.189 3215.2874 4492.2677 3215.2874 4492.3465 3215.2874 4492.4252 3215.2874 4492.5039 3215.2874 4492.5433 3215.2874 4492.622 3215.2874 4492.8189 3215.2874 4492.8976 3215.2874 4492.9764 3215.2874 4493.0157 3215.2874 4493.1339 3215.2874 4493.252 3215.2874 4493.3701 3215.2874 4493.4488 3215.2874 4493.5276 3215.2874 4493.6063 3215.2874 4494.2362 3215.2874 4494.2362 3218.7126 4493.9213 3218.7126 4493.6063 3218.7126 4493.4094 3218.7126 4493.3307 3218.7126 4493.2126 3218.7126 4493.0945 3218.7126 4492.9764 3218.7126 4492.8976 3218.7126 4492.8583 3218.7126 4492.7795 3218.7126 4492.622 3218.7126 4492.5433 3218.7126 4492.5039 3218.7126 4492.3858 3218.7126 4492.2677 3218.7126 4492.2283 3218.7126 4492.189 3218.7126 4491.5197 3218.7126 4490.811 3218.7126 4490.7323 3218.7126 4490.6535 3218.7126 4490.5748 3218.7126 4490.5354 3218.7126 4490.4173 3218.7126 4490.2598 3218.7126 4490.1811 3218.7126 4490.1024 3218.7126 4490.0236 3218.7126 4489.9449 3218.7126 4489.8268 3218.7126 4489.748 3218.7126 4489.6693 3218.7126 4489.5906 3218.7126 4489.4724 3218.7126 4488.6063 3218.7126 4488.5276 3218.7126 4488.5276 3218.752 4488.5276 3220.2087 4488.5276 3220.248 4488.5669 3220.2874 4488.6063 3220.2874 4489.5118 3220.2874 4489.5512 3220.2874 4489.5906 3220.2874 4489.7087 3220.2874 4489.748 3220.2874 4489.8268 3220.2874 4489.9055 3220.2874 4489.9843 3220.2874 4490.063 3220.2874 4490.1417 3220.2874 4490.2205 3220.2874 4490.2992 3220.2874 4490.4173 3220.2874 4490.5354 3220.2874 4490.5748 3220.2874 4490.6929 3220.2874 4490.811 3220.2874 4490.8504 3220.2874 4492.189 3220.2874 4492.2677 3220.2874 4492.3071 3220.2874 4492.3858 3220.2874 4492.5039 3220.2874 4492.6614 3220.2874 4492.7795 3220.2874 4492.8976 3220.2874 4492.9764 3220.2874 4493.0157 3220.2874 4493.0945 3220.2874 4493.1339 3220.2874 4493.252 3220.2874 4493.3307 3220.2874 4493.4488 3220.2874 4493.6063 3220.2874 4494.2362 3220.2874 4494.2362 3223.7126 4493.6063 3223.7126 4493.4094 3223.7126 4493.3307 3223.7126 4493.252 3223.7126 4493.2126 3223.7126 4493.0945 3223.7126 4492.9764 3223.7126 4492.8976 3223.7126 4492.8583 3223.7126 4492.7795 3223.7126 4492.622 3223.7126 4492.5433 3223.7126 4492.5039 3223.7126 4492.3858 3223.7126 4492.2677 3223.7126 4492.2283 3223.7126 4492.189 3223.7126 4490.811 3223.7126 4490.7323 3223.7126 4490.6535 3223.7126 4490.5748 3223.7126 4490.5354 3223.7126 4490.4173 3223.7126 4490.2598 3223.7126 4490.1811 3223.7126 4490.1024 3223.7126 4490.0236 3223.7126 4489.9449 3223.7126 4489.8268 3223.7126 4489.748 3223.7126 4489.6693 3223.7126 4489.5906 3223.7126 4489.4724 3223.7126 4488.6063 3223.7126 4488.5276 3223.7126 4488.5276 3223.752 4488.5276 3225.2086 4488.5276 3225.248 4488.5669 3225.2874 4488.6063 3225.2874 4489.5118 3225.2874 4489.5906 3225.2874 4489.7087 3225.2874 4489.748 3225.2874 4489.8661 3225.2874 4489.9843 3225.2874 4490.063 3225.2874 4490.1417 3225.2874 4490.1811 3225.2874 4490.2992 3225.2874 4490.4567 3225.2874 4490.6142 3225.2874 4490.6535 3225.2874 4490.7717 3225.2874 4490.8504 3225.2874 4492.189 3225.2874 4492.2677 3225.2874 4492.3465 3225.2874 4492.4252 3225.2874 4492.5039 3225.2874 4492.5433 3225.2874 4492.622 3225.2874 4492.8189 3225.2874 4492.8976 3225.2874 4492.9764 3225.2874 4493.0157 3225.2874 4493.1339 3225.2874 4493.252 3225.2874 4493.3701 3225.2874 4493.4488 3225.2874 4493.5276 3225.2874 4493.6063 3225.2874 4494.2362 3225.2874 4494.2362 3228.7126 4493.6063 3228.7126 4493.4094 3228.7126 4493.3307 3228.7126 4493.252 3228.7126 4493.2126 3228.7126 4493.0945 3228.7126 4492.9764 3228.7126 4492.8976 3228.7126 4492.8583 3228.7126 4492.7795 3228.7126 4492.622 3228.7126 4492.5433 3228.7126 4492.5039 3228.7126 4492.3858 3228.7126 4492.2677 3228.7126 4492.2283 3228.7126 4492.189 3228.7126 4490.811 3228.7126 4490.7323 3228.7126 4490.6535 3228.7126 4490.5748 3228.7126 4490.5354 3228.7126 4490.4173 3228.7126 4490.2598 3228.7126 4490.1811 3228.7126 4490.1024 3228.7126 4490.0236 3228.7126 4489.9449 3228.7126 4489.8268 3228.7126 4489.748 3228.7126 4489.6693 3228.7126 4489.5906 3228.7126 4489.4724 3228.7126 4488.6063 3228.7126 4488.5276 3228.7126 4488.5276 3228.7519 4488.5276 3230.248 4488.5669 3230.2874 4488.6063 3230.2874 4489.5118 3230.2874 4489.5512 3230.2874 4489.5906 3230.2874 4489.7087 3230.2874 4489.748 3230.2874 4489.8268 3230.2874 4489.9055 3230.2874 4489.9843 3230.2874 4490.063 3230.2874 4490.1417 3230.2874 4490.1811 3230.2874 4490.2992 3230.2874 4490.4173 3230.2874 4490.5354 3230.2874 4490.5748 3230.2874 4490.6535 3230.2874 4490.7717 3230.2874 4490.8504 3230.2874 4492.189 3230.2874 4492.2677 3230.2874 4492.3465 3230.2874 4492.4252 3230.2874 4492.5039 3230.2874 4492.6614 3230.2874 4492.7795 3230.2874 4492.8976 3230.2874 4492.9764 3230.2874 4493.0157 3230.2874 4493.1339 3230.2874 4493.1732 3230.2874 4493.252 3230.2874 4493.3701 3230.2874 4493.4488 3230.2874 4493.6063 3230.2874 4494.2362 3230.2874 4494.2362 3233.7126 4493.6063 3233.7126 4493.4094 3233.7126 4493.3307 3233.7126 4493.252 3233.7126 4493.2126 3233.7126 4493.0945 3233.7126 4492.9764 3233.7126 4492.8976 3233.7126 4492.8583 3233.7126 4492.7795 3233.7126 4492.622 3233.7126 4492.5433 3233.7126 4492.5039 3233.7126 4492.3858 3233.7126 4492.2677 3233.7126 4492.2283 3233.7126 4492.189 3233.7126 4490.811 3233.7126 4490.7323 3233.7126 4490.6535 3233.7126 4490.5748 3233.7126 4490.5354 3233.7126 4490.4173 3233.7126 4490.2598 3233.7126 4490.1811 3233.7126 4490.1024 3233.7126 4490.0236 3233.7126 4489.9449 3233.7126 4489.8268 3233.7126 4489.748 3233.7126 4489.6693 3233.7126 4489.5906 3233.7126 4489.4724 3233.7126 4488.6063 3233.7126 4488.5276 3233.7126 4488.5276 3233.7519 4488.5276 3235.248 4488.5669 3235.2874 4488.6063 3235.2874 4489.5118 3235.2874 4489.5512 3235.2874 4489.5906 3235.2874 4489.7087 3235.2874 4489.748 3235.2874 4489.8268 3235.2874 4489.9055 3235.2874 4489.9843 3235.2874 4490.063 3235.2874 4490.1417 3235.2874 4490.1811 3235.2874 4490.2992 3235.2874 4490.4173 3235.2874 4490.5354 3235.2874 4490.5748 3235.2874 4490.6535 3235.2874 4490.7717 3235.2874 4490.8504 3235.2874 4492.189 3235.2874 4492.2677 3235.2874 4492.3465 3235.2874 4492.4252 3235.2874 4492.5039 3235.2874 4492.6614 3235.2874 4492.7795 3235.2874 4492.8976 3235.2874 4492.9764 3235.2874 4493.0157 3235.2874 4493.1339 3235.2874 4493.252 3235.2874 4493.3701 3235.2874 4493.4488 3235.2874 4493.6063 3235.2874 4494.2362 3235.2874 4494.2362 3238.7126 4493.9213 3238.7126 4493.6063 3238.7126 4493.4094 3238.7126 4493.3307 3238.7126 4493.2126 3238.7126 4493.0945 3238.7126 4492.9764 3238.7126 4492.8976 3238.7126 4492.8583 3238.7126 4492.7795 3238.7126 4492.622 3238.7126 4492.5433 3238.7126 4492.5039 3238.7126 4492.3858 3238.7126 4492.2677 3238.7126 4492.2283 3238.7126 4492.189 3238.7126 4490.811 3238.7126 4490.7323 3238.7126 4490.6535 3238.7126 4490.5748 3238.7126 4490.5354 3238.7126 4490.4173 3238.7126 4490.2598 3238.7126 4490.1811 3238.7126 4490.1024 3238.7126 4490.0236 3238.7126 4489.9449 3238.7126 4489.8268 3238.7126 4489.748 3238.7126 4489.6693 3238.7126 4489.5906 3238.7126 4489.4724 3238.7126 4488.6063 3238.7126 4488.5276 3238.7126 4488.5276 3238.7519 4488.5276 3240.2086 4488.5276 3240.2874 4488.5669 3240.2874 4488.6063 3240.2874 4489.5118 3240.2874 4489.5906 3240.2874 4489.7087 3240.2874 4489.748 3240.2874 4489.8661 3240.2874 4489.9843 3240.2874 4490.063 3240.2874 4490.1417 3240.2874 4490.2205 3240.2874 4490.2992 3240.2874 4490.4567 3240.2874 4490.6142 3240.2874 4490.6535 3240.2874 4490.7717 3240.2874 4490.8504 3240.2874 4492.189 3240.2874 4492.2677 3240.2874 4492.3071 3240.2874 4492.3858 3240.2874 4492.5039 3240.2874 4492.5433 3240.2874 4492.622 3240.2874 4492.8189 3240.2874 4492.8976 3240.2874 4492.9764 3240.2874 4493.0157 3240.2874 4493.0945 3240.2874 4493.1339 3240.2874 4493.252 3240.2874 4493.3307 3240.2874 4493.4488 3240.2874 4493.5276 3240.2874 4493.6063 3240.2874 4494.2362 3240.2874 4494.2362 3241.9409 4494.2362 3242.059 4494.2756 3242.1377 4494.3543 3242.2165 4494.4331 3242.2952 4494.5118 3242.3346 4494.5118 3242.3346\",\"id\":\"gge2031\"}}]}#@$TEXT~N~4478~3220.5~0.6~90~0~3~~4.5~MCP2515-I\/SO~M 4473.46 3220.5 L 4477.75 3220.5 M 4473.46 3220.5 L 4477.75 3218.86 M 4473.46 3217.23 L 4477.75 3218.86 M 4473.46 3217.23 L 4477.75 3217.23 M 4474.48 3212.81 L 4474.07 3213.01 L 4473.66 3213.42 L 4473.46 3213.83 L 4473.46 3214.65 L 4473.66 3215.06 L 4474.07 3215.47 L 4474.48 3215.67 L 4475.1 3215.88 L 4476.12 3215.88 L 4476.73 3215.67 L 4477.14 3215.47 L 4477.55 3215.06 L 4477.75 3214.65 L 4477.75 3213.83 L 4477.55 3213.42 L 4477.14 3213.01 L 4476.73 3212.81 M 4473.46 3211.46 L 4477.75 3211.46 M 4473.46 3211.46 L 4473.46 3209.62 L 4473.66 3209 L 4473.87 3208.8 L 4474.28 3208.6 L 4474.89 3208.6 L 4475.3 3208.8 L 4475.5 3209 L 4475.71 3209.62 L 4475.71 3211.46 M 4474.48 3207.04 L 4474.28 3207.04 L 4473.87 3206.84 L 4473.66 3206.63 L 4473.46 3206.22 L 4473.46 3205.4 L 4473.66 3205 L 4473.87 3204.79 L 4474.28 3204.59 L 4474.69 3204.59 L 4475.1 3204.79 L 4475.71 3205.2 L 4477.75 3207.25 L 4477.75 3204.38 M 4473.46 3200.58 L 4473.46 3202.62 L 4475.3 3202.83 L 4475.1 3202.62 L 4474.89 3202.01 L 4474.89 3201.4 L 4475.1 3200.78 L 4475.5 3200.37 L 4476.12 3200.17 L 4476.53 3200.17 L 4477.14 3200.37 L 4477.55 3200.78 L 4477.75 3201.4 L 4477.75 3202.01 L 4477.55 3202.62 L 4477.35 3202.83 L 4476.94 3203.03 M 4474.28 3198.82 L 4474.07 3198.41 L 4473.46 3197.8 L 4477.75 3197.8 M 4473.46 3193.99 L 4473.46 3196.04 L 4475.3 3196.24 L 4475.1 3196.04 L 4474.89 3195.42 L 4474.89 3194.81 L 4475.1 3194.2 L 4475.5 3193.79 L 4476.12 3193.58 L 4476.53 3193.58 L 4477.14 3193.79 L 4477.55 3194.2 L 4477.75 3194.81 L 4477.75 3195.42 L 4477.55 3196.04 L 4477.35 3196.24 L 4476.94 3196.45 M 4475.91 3192.23 L 4475.91 3188.55 M 4473.46 3187.2 L 4477.75 3187.2 M 4472.64 3182.17 L 4479.19 3185.85 M 4474.07 3177.95 L 4473.66 3178.36 L 4473.46 3178.98 L 4473.46 3179.8 L 4473.66 3180.41 L 4474.07 3180.82 L 4474.48 3180.82 L 4474.89 3180.61 L 4475.1 3180.41 L 4475.3 3180 L 4475.71 3178.77 L 4475.91 3178.36 L 4476.12 3178.16 L 4476.53 3177.95 L 4477.14 3177.95 L 4477.55 3178.36 L 4477.75 3178.98 L 4477.75 3179.8 L 4477.55 3180.41 L 4477.14 3180.82 M 4473.46 3175.38 L 4473.66 3175.79 L 4474.07 3176.2 L 4474.48 3176.4 L 4475.1 3176.6 L 4476.12 3176.6 L 4476.73 3176.4 L 4477.14 3176.2 L 4477.55 3175.79 L 4477.75 3175.38 L 4477.75 3174.56 L 4477.55 3174.15 L 4477.14 3173.74 L 4476.73 3173.54 L 4476.12 3173.33 L 4475.1 3173.33 L 4474.48 3173.54 L 4474.07 3173.74 L 4473.66 3174.15 L 4473.46 3174.56 L 4473.46 3175.38~none~gge1890~~0~#@$TEXT~P~4507.5~3211~0.6~270~0~3~~4.5~CAN1_U2~M 4511.02 3214.07 L 4511.43 3213.86 L 4511.84 3213.45 L 4512.04 3213.05 L 4512.04 3212.23 L 4511.84 3211.82 L 4511.43 3211.41 L 4511.02 3211.2 L 4510.4 3211 L 4509.38 3211 L 4508.77 3211.2 L 4508.36 3211.41 L 4507.95 3211.82 L 4507.75 3212.23 L 4507.75 3213.05 L 4507.95 3213.45 L 4508.36 3213.86 L 4508.77 3214.07 M 4512.04 3217.05 L 4507.75 3215.42 M 4512.04 3217.05 L 4507.75 3218.69 M 4509.18 3216.03 L 4509.18 3218.08 M 4512.04 3220.04 L 4507.75 3220.04 M 4512.04 3220.04 L 4507.75 3222.9 M 4512.04 3222.9 L 4507.75 3222.9 M 4511.22 3224.25 L 4511.43 3224.66 L 4512.04 3225.28 L 4507.75 3225.28 M 4506.31 3226.63 L 4506.31 3230.31 M 4512.04 3231.66 L 4508.97 3231.66 L 4508.36 3231.86 L 4507.95 3232.27 L 4507.75 3232.89 L 4507.75 3233.3 L 4507.95 3233.91 L 4508.36 3234.32 L 4508.97 3234.52 L 4512.04 3234.52 M 4511.02 3236.08 L 4511.22 3236.08 L 4511.63 3236.28 L 4511.84 3236.49 L 4512.04 3236.9 L 4512.04 3237.71 L 4511.84 3238.12 L 4511.63 3238.33 L 4511.22 3238.53 L 4510.81 3238.53 L 4510.4 3238.33 L 4509.79 3237.92 L 4507.75 3235.87 L 4507.75 3238.74~~gge1896~~0~#@$TRACK~1~3~~4495.5 3242.5 4522.5 3242.5 4522.5 3196.5 4495.5 3196.5 4495.5 3242.5~gge1902~0#@$CIRCLE~4518.917~3239.5~0.591~1.1811~3~gge1905~0~~#@$CIRCLE~4527.898~3242.383~0.591~1.1811~3~gge1908~0~~#@$PAD~OVAL~4527.898~3239.5~2.2047~8.2677~1~CAN1_U1_1~1~0~4524.8665 3239.5 4530.9295 3239.5~90~gge2034~0~~Y~0~0.0000~0.2000~4527.8976,3239.5#@$PAD~OVAL~4527.898~3234.5~2.2047~8.2677~1~CAN1_U1_4~2~0~4524.8665 3234.5 4530.9295 3234.5~90~gge2049~0~~Y~0~0.0000~0.2000~4527.8976,3234.5#@$PAD~OVAL~4527.898~3229.5~2.2047~8.2677~1~~3~0~4524.8665 3229.5 4530.9295 3229.5~90~gge2064~0~~Y~0~0.0000~0.2000~4527.8976,3229.5#@$PAD~OVAL~4527.898~3224.5~2.2047~8.2677~1~~4~0~4524.8665 3224.5 4530.9295 3224.5~90~gge2079~0~~Y~0~0.0000~0.2000~4527.8976,3224.5#@$PAD~OVAL~4527.898~3219.5~2.2047~8.2677~1~~5~0~4524.8665 3219.5 4530.9295 3219.5~90~gge2094~0~~Y~0~0.0000~0.2000~4527.8976,3219.5#@$PAD~OVAL~4527.898~3214.5~2.2047~8.2677~1~~6~0~4524.8665 3214.5 4530.9295 3214.5~90~gge2109~0~~Y~0~0.0000~0.2000~4527.8976,3214.5#@$PAD~OVAL~4527.898~3209.5~2.2047~8.2677~1~CAN1_U2_7~7~0~4524.8665 3209.5 4530.9295 3209.5~90~gge2124~0~~Y~0~0.0000~0.2000~4527.8976,3209.5#@$PAD~OVAL~4527.898~3204.5~2.2047~8.2677~1~CAN1_U2_8~8~0~4524.8665 3204.5 4530.9295 3204.5~90~gge2139~0~~Y~0~0.0000~0.2000~4527.8976,3204.5#@$PAD~OVAL~4527.898~3199.5~2.2047~8.2677~1~GND~9~0~4524.8665 3199.5 4530.9295 3199.5~90~gge2154~0~~Y~0~0.0000~0.2000~4527.8976,3199.5#@$PAD~OVAL~4490.102~3239.5~2.2047~8.2677~1~+3.3V~18~0~4487.0705 3239.5 4493.1335 3239.5~90~gge2169~0~~Y~0~0.0000~0.2000~4490.1024,3239.5#@$PAD~OVAL~4490.102~3234.5~2.2047~8.2677~1~CAN1_U2_17~17~0~4487.0705 3234.5 4493.1335 3234.5~90~gge2184~0~~Y~0~0.0000~0.2000~4490.1024,3234.5#@$PAD~OVAL~4490.102~3229.5~2.2047~8.2677~1~SPI_CS~16~0~4487.0705 3229.5 4493.1335 3229.5~90~gge2199~0~~Y~0~0.0000~0.2000~4490.1024,3229.5#@$PAD~OVAL~4490.102~3224.5~2.2047~8.2677~1~SPI_MISO~15~0~4487.0705 3224.5 4493.1335 3224.5~90~gge2214~0~~Y~0~0.0000~0.2000~4490.1024,3224.5#@$PAD~OVAL~4490.102~3219.5~2.2047~8.2677~1~SPI_MOSI~14~0~4487.0705 3219.5 4493.1335 3219.5~90~gge2229~0~~Y~0~0.0000~0.2000~4490.1024,3219.5#@$PAD~OVAL~4490.102~3214.5~2.2047~8.2677~1~SPI_SCK~13~0~4487.0705 3214.5 4493.1335 3214.5~90~gge2244~0~~Y~0~0.0000~0.2000~4490.1024,3214.5#@$PAD~OVAL~4490.102~3209.5~2.2047~8.2677~1~SPI_INT~12~0~4487.0705 3209.5 4493.1335 3209.5~90~gge2259~0~~Y~0~0.0000~0.2000~4490.1024,3209.5#@$PAD~OVAL~4490.102~3204.5~2.2047~8.2677~1~~11~0~4487.0705 3204.5 4493.1335 3204.5~90~gge2274~0~~Y~0~0.0000~0.2000~4490.1024,3204.5#@$PAD~OVAL~4490.102~3199.5~2.2047~8.2677~1~~10~0~4487.0705 3199.5 4493.1335 3199.5~90~gge2289~0~~Y~0~0.0000~0.2000~4490.1024,3199.5","LIB~4547.558~3195.154~package`OSC-SMD_4P-L3.2-W2.5-BL`link`https:\/\/item.szlcsc.com\/15866.html`Contributor`lcsc`3DModel`OSC-SMD_4P-L3.2-W2.5-H1.0`BOM_Supplier`LCSC`BOM_Manufacturer`YXC`BOM_Manufacturer Part`X322516MLB4SI`nameAlias`Frequency`BOM_Supplier Part`C13738`BOM_JLCPCB Part Class`Basic Part`spicePre`X`spiceSymbolName`X322516MLB4SI`~180~~gge220c9828e5ec91fa~1~fde525906f004b04890fe3f9fe02cca8~1660701952~0~~yes~~#@$CIRCLE~4553.857~3190.233~0.118~0.2362~101~gge2322~0~~#@$CIRCLE~4551.841~3188.985~0.5~1~12~gge2325~0~~#@$SOLIDREGION~12~~M 4553.4087 3193.4697 L 4553.267 3193.4697 L 4553.267 3191.202 L 4553.4087 3191.202 Z~solid~gge2328~~~~0#@$SOLIDREGION~12~~M 4553.5504 3193.4697 L 4553.4087 3193.4697 L 4553.4087 3191.202 L 4553.5504 3191.202 Z~solid~gge2331~~~~0#@$SOLIDREGION~12~~M 4553.6922 3193.4697 L 4553.5504 3193.4697 L 4553.5504 3191.202 L 4553.6922 3191.202 Z~solid~gge2334~~~~0#@$SOLIDREGION~12~~M 4553.8339 3193.328 L 4553.6922 3193.328 L 4553.6922 3191.202 L 4553.8339 3191.202 Z~solid~gge2337~~~~0#@$SOLIDREGION~12~~M 4553.9756 3193.328 L 4553.8339 3193.328 L 4553.8339 3192.9028 L 4553.9756 3192.9028 Z~solid~gge2340~~~~0#@$SOLIDREGION~12~~M 4554.1174 3193.1863 L 4553.9756 3193.1863 L 4553.9756 3192.7611 L 4554.1174 3192.7611 Z~solid~gge2343~~~~0#@$SOLIDREGION~12~~M 4554.2591 3193.0445 L 4554.1174 3193.0445 L 4554.1174 3192.7611 L 4554.2591 3192.7611 Z~solid~gge2346~~~~0#@$SOLIDREGION~12~~M 4554.4008 3193.0445 L 4554.2591 3193.0445 L 4554.2591 3192.7611 L 4554.4008 3192.7611 Z~solid~gge2349~~~~0#@$SOLIDREGION~100~~M 4545.1957 3200.072 L 4541.6523 3200.072 L 4541.6523 3196.9224 L 4545.1957 3196.9224 Z~solid~gge2352~~~~0#@$SOLIDREGION~100~~M 4553.4637 3200.072 L 4549.9203 3200.072 L 4549.9203 3196.9224 L 4553.4637 3196.9224 Z~solid~gge2355~~~~0#@$SOLIDREGION~100~~M 4553.4637 3193.3863 L 4549.9203 3193.3863 L 4549.9203 3190.2367 L 4553.4637 3190.2367 Z~solid~gge2358~~~~0#@$SOLIDREGION~100~~M 4545.1957 3193.3863 L 4541.6523 3193.3863 L 4541.6523 3190.2367 L 4545.1957 3190.2367 Z~solid~gge2361~~~~0#@$SOLIDREGION~99~~M 4553.8572 3190.2332 L 4553.8572 3200.0758 L 4541.2588 3200.0758 L 4541.2588 3190.2332 Z~solid~gge2370~~~~0#@$SVGNODE~{\"gId\":\"gge2373\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"12.5984\",\"c_height\":\"9.8425\",\"c_rotation\":\"0,0,180\",\"z\":\"0\",\"c_origin\":\"4547.5581,3195.1541\",\"uuid\":\"3d8e5f33629249f9a4089449c02742d4\",\"c_etype\":\"outline3D\",\"title\":\"OSC-SMD_4P-L3.2-W2.5-H1.0\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge2373\"},\"childNodes\":[{\"gId\":\"gge2376\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4553.8572 3199.5241 4553.8178 3199.4848 4553.8572 3199.4848 4553.8572 3194.9572 4553.8572 3190.8234 4553.8178 3190.8234 4553.8572 3190.784 4553.6997 3190.784 4553.5816 3190.7052 4553.4635 3190.6265 4553.3848 3190.5084 4553.306 3190.3903 4553.306 3190.2328 4553.2667 3190.2722 4553.2667 3190.2328 4547.7942 3190.2328 4541.8494 3190.2328 4541.8494 3190.2722 4541.81 3190.2328 4541.81 3190.3903 4541.7312 3190.5084 4541.6525 3190.6265 4541.5344 3190.7052 4541.4163 3190.784 4541.2588 3190.784 4541.2982 3190.8234 4541.2588 3190.8234 4541.2588 3194.9572 4541.2588 3199.4848 4541.2982 3199.4848 4541.2588 3199.5241 4541.4163 3199.5241 4541.5344 3199.6029 4541.6525 3199.6816 4541.7312 3199.7997 4541.81 3199.9178 4541.81 3200.0753 4541.8494 3200.0359 4541.8494 3200.0753 4547.7942 3200.0753 4553.2667 3200.0753 4553.2667 3200.0359 4553.306 3200.0753 4553.306 3199.9178 4553.3848 3199.7997 4553.4635 3199.6816 4553.5816 3199.6029 4553.6997 3199.5241 4553.8572 3199.5241 4553.8572 3199.5241\",\"id\":\"gge2376\"}}]}#@$TEXT~N~4531.088~3214.945~0.6~0~0~3~~4.5~16MHz~M 4531.0878 3211.225 L 4531.4978 3211.015 L 4532.1078 3210.405 L 4532.1078 3214.695 M 4535.9178 3211.015 L 4535.7078 3210.605 L 4535.0978 3210.405 L 4534.6878 3210.405 L 4534.0778 3210.605 L 4533.6678 3211.225 L 4533.4578 3212.245 L 4533.4578 3213.265 L 4533.6678 3214.085 L 4534.0778 3214.495 L 4534.6878 3214.695 L 4534.8878 3214.695 L 4535.5078 3214.495 L 4535.9178 3214.085 L 4536.1178 3213.475 L 4536.1178 3213.265 L 4535.9178 3212.655 L 4535.5078 3212.245 L 4534.8878 3212.045 L 4534.6878 3212.045 L 4534.0778 3212.245 L 4533.6678 3212.655 L 4533.4578 3213.265 M 4537.4678 3210.405 L 4537.4678 3214.695 M 4537.4678 3210.405 L 4539.1078 3214.695 M 4540.7378 3210.405 L 4539.1078 3214.695 M 4540.7378 3210.405 L 4540.7378 3214.695 M 4542.0878 3210.405 L 4542.0878 3214.695 M 4544.9578 3210.405 L 4544.9578 3214.695 M 4542.0878 3212.445 L 4544.9578 3212.445 M 4548.5578 3211.835 L 4546.3078 3214.695 M 4546.3078 3211.835 L 4548.5578 3211.835 M 4546.3078 3214.695 L 4548.5578 3214.695~none~gge2310~~0~#@$TEXT~P~4535.8434~3184.9427~0.6~0~0~3~~4.5~CAN1_X1~M 4538.9134 3181.4227 L 4538.7034 3181.0127 L 4538.2934 3180.6027 L 4537.8934 3180.4027 L 4537.0734 3180.4027 L 4536.6634 3180.6027 L 4536.2534 3181.0127 L 4536.0434 3181.4227 L 4535.8434 3182.0427 L 4535.8434 3183.0627 L 4536.0434 3183.6727 L 4536.2534 3184.0827 L 4536.6634 3184.4927 L 4537.0734 3184.6927 L 4537.8934 3184.6927 L 4538.2934 3184.4927 L 4538.7034 3184.0827 L 4538.9134 3183.6727 M 4541.8934 3180.4027 L 4540.2634 3184.6927 M 4541.8934 3180.4027 L 4543.5334 3184.6927 M 4540.8734 3183.2627 L 4542.9234 3183.2627 M 4544.8834 3180.4027 L 4544.8834 3184.6927 M 4544.8834 3180.4027 L 4547.7434 3184.6927 M 4547.7434 3180.4027 L 4547.7434 3184.6927 M 4549.0934 3181.2227 L 4549.5034 3181.0127 L 4550.1234 3180.4027 L 4550.1234 3184.6927 M 4551.4734 3186.1327 L 4555.1534 3186.1327 M 4556.5034 3180.4027 L 4559.3634 3184.6927 M 4559.3634 3180.4027 L 4556.5034 3184.6927 M 4560.7134 3181.2227 L 4561.1234 3181.0127 L 4561.7434 3180.4027 L 4561.7434 3184.6927~~gge2316~~0~#@$TRACK~0.5984~3~~4556.558 3189.6545 4556.558 3187.6545 4554.558 3187.6545~gge2364~0#@$TRACK~0.6~3~~4555.548 3188.545 4555.548 3201.655 4539.558 3201.6545 4539.558 3195.1545 4539.558 3188.6545 4539.558 3188.6545 4555.548 3188.545~gge2367~0#@$PAD~RECT~4551.889~3191.71~5.5118~4.7244~1~CAN1_U2_8~1~0~4554.6446 3194.0717 4549.1328 3194.0717 4549.1328 3189.3473 4554.6446 3189.3473~180~gge2379~0~~Y~0~0.0000~0.2000~4551.8886,3191.7102#@$PAD~RECT~4543.227~3191.71~5.5118~4.7244~1~GND~2~0~4545.9832 3194.0717 4540.4714 3194.0717 4540.4714 3189.3473 4545.9832 3189.3473~180~gge2394~0~~Y~0~0.0000~0.2000~4543.2274,3191.7102#@$PAD~RECT~4543.227~3198.6~5.5118~4.7244~1~CAN1_U2_7~3~0~4545.9832 3200.9617 4540.4714 3200.9617 4540.4714 3196.2373 4545.9832 3196.2373~180~gge2409~0~~Y~0~0.0000~0.2000~4543.2276,3198.5998#@$PAD~RECT~4551.889~3198.599~5.5118~4.7244~1~GND~4~0~4554.6446 3200.9615 4549.1328 3200.9615 4549.1328 3196.2371 4554.6446 3196.2371~180~gge2424~0~~Y~0~0.0000~0.2000~4551.8884,3198.5996","LIB~4720.786~3226.65~Contributor`j.giraldo123`package`MOLEX_5007620481`link`https:\/\/co.mouser.com\/datasheet\/2\/276\/2\/5007620481_PCB_HEADERS-179151.pdf`BOM_Manufacturer`Molex`BOM_Manufacturer Part`500762-0481`BOM_Supplier`Mouser`BOM_Supplier Part`538-500762-0481`spicePre`J`spiceSymbolName`MOLEX 5007620481 COPY`~90~~ggee71eddd162280013~1~d6f4b42ec81d45ca8b3908ddd448275b~1623266588~1~~none~~#@$TEXT~N~4700.849~3168.414~0.6~90~0~3~~4.5~MOLEX 5007620481~M 4696.309 3168.414 L 4700.599 3168.414 M 4696.309 3168.414 L 4700.599 3166.774 M 4696.309 3165.144 L 4700.599 3166.774 M 4696.309 3165.144 L 4700.599 3165.144 M 4696.309 3162.564 L 4696.509 3162.974 L 4696.919 3163.384 L 4697.329 3163.584 L 4697.949 3163.794 L 4698.969 3163.794 L 4699.579 3163.584 L 4699.989 3163.384 L 4700.399 3162.974 L 4700.599 3162.564 L 4700.599 3161.744 L 4700.399 3161.334 L 4699.989 3160.924 L 4699.579 3160.724 L 4698.969 3160.514 L 4697.949 3160.514 L 4697.329 3160.724 L 4696.919 3160.924 L 4696.509 3161.334 L 4696.309 3161.744 L 4696.309 3162.564 M 4696.309 3159.164 L 4700.599 3159.164 M 4700.599 3159.164 L 4700.599 3156.714 M 4696.309 3155.364 L 4700.599 3155.364 M 4696.309 3155.364 L 4696.309 3152.704 M 4698.349 3155.364 L 4698.349 3153.724 M 4700.599 3155.364 L 4700.599 3152.704 M 4696.309 3151.354 L 4700.599 3148.494 M 4696.309 3148.494 L 4700.599 3151.354 M 4696.309 3141.534 L 4696.309 3143.584 L 4698.149 3143.784 L 4697.949 3143.584 L 4697.739 3142.964 L 4697.739 3142.354 L 4697.949 3141.744 L 4698.349 3141.334 L 4698.969 3141.124 L 4699.379 3141.124 L 4699.989 3141.334 L 4700.399 3141.744 L 4700.599 3142.354 L 4700.599 3142.964 L 4700.399 3143.584 L 4700.199 3143.784 L 4699.789 3143.994 M 4696.309 3138.554 L 4696.509 3139.164 L 4697.129 3139.574 L 4698.149 3139.774 L 4698.759 3139.774 L 4699.789 3139.574 L 4700.399 3139.164 L 4700.599 3138.554 L 4700.599 3138.144 L 4700.399 3137.524 L 4699.789 3137.114 L 4698.759 3136.914 L 4698.149 3136.914 L 4697.129 3137.114 L 4696.509 3137.524 L 4696.309 3138.144 L 4696.309 3138.554 M 4696.309 3134.334 L 4696.509 3134.954 L 4697.129 3135.364 L 4698.149 3135.564 L 4698.759 3135.564 L 4699.789 3135.364 L 4700.399 3134.954 L 4700.599 3134.334 L 4700.599 3133.924 L 4700.399 3133.314 L 4699.789 3132.904 L 4698.759 3132.704 L 4698.149 3132.704 L 4697.129 3132.904 L 4696.509 3133.314 L 4696.309 3133.924 L 4696.309 3134.334 M 4696.309 3128.484 L 4700.599 3130.534 M 4696.309 3131.354 L 4696.309 3128.484 M 4696.919 3124.684 L 4696.509 3124.884 L 4696.309 3125.504 L 4696.309 3125.914 L 4696.509 3126.524 L 4697.129 3126.934 L 4698.149 3127.134 L 4699.169 3127.134 L 4699.989 3126.934 L 4700.399 3126.524 L 4700.599 3125.914 L 4700.599 3125.704 L 4700.399 3125.094 L 4699.989 3124.684 L 4699.379 3124.474 L 4699.169 3124.474 L 4698.559 3124.684 L 4698.149 3125.094 L 4697.949 3125.704 L 4697.949 3125.914 L 4698.149 3126.524 L 4698.559 3126.934 L 4699.169 3127.134 M 4697.329 3122.924 L 4697.129 3122.924 L 4696.719 3122.714 L 4696.509 3122.514 L 4696.309 3122.104 L 4696.309 3121.284 L 4696.509 3120.874 L 4696.719 3120.674 L 4697.129 3120.464 L 4697.539 3120.464 L 4697.949 3120.674 L 4698.559 3121.084 L 4700.599 3123.124 L 4700.599 3120.264 M 4696.309 3117.684 L 4696.509 3118.304 L 4697.129 3118.714 L 4698.149 3118.914 L 4698.759 3118.914 L 4699.789 3118.714 L 4700.399 3118.304 L 4700.599 3117.684 L 4700.599 3117.274 L 4700.399 3116.664 L 4699.789 3116.254 L 4698.759 3116.054 L 4698.149 3116.054 L 4697.129 3116.254 L 4696.509 3116.664 L 4696.309 3117.274 L 4696.309 3117.684 M 4696.309 3112.654 L 4699.169 3114.704 L 4699.169 3111.634 M 4696.309 3112.654 L 4700.599 3112.654 M 4696.309 3109.264 L 4696.509 3109.874 L 4696.919 3110.074 L 4697.329 3110.074 L 4697.739 3109.874 L 4697.949 3109.464 L 4698.149 3108.644 L 4698.349 3108.034 L 4698.759 3107.624 L 4699.169 3107.414 L 4699.789 3107.414 L 4700.199 3107.624 L 4700.399 3107.824 L 4700.599 3108.444 L 4700.599 3109.264 L 4700.399 3109.874 L 4700.199 3110.074 L 4699.789 3110.284 L 4699.169 3110.284 L 4698.759 3110.074 L 4698.349 3109.664 L 4698.149 3109.054 L 4697.949 3108.234 L 4697.739 3107.824 L 4697.329 3107.624 L 4696.919 3107.624 L 4696.509 3107.824 L 4696.309 3108.444 L 4696.309 3109.264 M 4697.129 3106.064 L 4696.919 3105.664 L 4696.309 3105.044 L 4700.599 3105.044~none~gge2445~~0~#@$TEXT~P~4707.849~3168.414~0.6~90~0~3~~4.5~EXT_CON1~M 4703.309 3168.414 L 4707.599 3168.414 M 4703.309 3168.414 L 4703.309 3165.754 M 4705.349 3168.414 L 4705.349 3166.774 M 4707.599 3168.414 L 4707.599 3165.754 M 4703.309 3164.404 L 4707.599 3161.544 M 4703.309 3161.544 L 4707.599 3164.404 M 4703.309 3158.764 L 4707.599 3158.764 M 4703.309 3160.194 L 4703.309 3157.324 M 4709.039 3155.974 L 4709.039 3152.294 M 4704.329 3147.874 L 4703.919 3148.084 L 4703.509 3148.494 L 4703.309 3148.904 L 4703.309 3149.714 L 4703.509 3150.124 L 4703.919 3150.534 L 4704.329 3150.744 L 4704.949 3150.944 L 4705.969 3150.944 L 4706.579 3150.744 L 4706.989 3150.534 L 4707.399 3150.124 L 4707.599 3149.714 L 4707.599 3148.904 L 4707.399 3148.494 L 4706.989 3148.084 L 4706.579 3147.874 M 4703.309 3145.304 L 4703.509 3145.714 L 4703.919 3146.114 L 4704.329 3146.324 L 4704.949 3146.524 L 4705.969 3146.524 L 4706.579 3146.324 L 4706.989 3146.114 L 4707.399 3145.714 L 4707.599 3145.304 L 4707.599 3144.484 L 4707.399 3144.074 L 4706.989 3143.664 L 4706.579 3143.464 L 4705.969 3143.254 L 4704.949 3143.254 L 4704.329 3143.464 L 4703.919 3143.664 L 4703.509 3144.074 L 4703.309 3144.484 L 4703.309 3145.304 M 4703.309 3141.904 L 4707.599 3141.904 M 4703.309 3141.904 L 4707.599 3139.044 M 4703.309 3139.044 L 4707.599 3139.044 M 4704.129 3137.694 L 4703.919 3137.284 L 4703.309 3136.664 L 4707.599 3136.664~none~gge2451~~0~#@$TRACK~1~3~~4780.4317 3305.9693 4709.5656 3305.9693 4709.5656 3030.3787 4780.4317 3030.3787~gge2457~0#@$TRACK~1~3~~4780.4317 3030.3787 4780.4317 3305.9693~gge2460~0#@$HOLE~4716.849~3252.044~4.3307~gge2463~1#@$HOLE~4732.007~3268.186~7.874~gge2475~1#@$HOLE~4716.848~3084.327~4.3307~gge2487~1#@$HOLE~4732.005~3068.186~7.874~gge2499~1#@$PAD~ELLIPSE~4720.786~3109.721~6~6~11~OUT2~M1~1.8~~90~gge2511~0~~Y~1~0~0.2~4720.786,3109.7212#@$PAD~ELLIPSE~4730.629~3109.721~6~6~11~OUT2~M2~1.8~~90~gge2526~0~~Y~1~0~0.2~4730.6285,3109.7212#@$PAD~ELLIPSE~4740.471~3109.721~6~6~11~GND~M3~1.8~~90~gge2541~0~~Y~1~0~0.2~4740.4707,3109.7214#@$PAD~ELLIPSE~4750.314~3109.721~6~6~11~GND~M4~1.8~~90~gge2556~0~~Y~1~0~0.2~4750.3125,3109.7214#@$PAD~ELLIPSE~4750.314~3124.288~6~6~11~+12V~L4~1.8~~90~gge2571~0~~Y~1~0~0.2~4750.3125,3124.2883#@$PAD~ELLIPSE~4740.471~3124.288~6~6~11~+12V~L3~1.8~~90~gge2586~0~~Y~1~0~0.2~4740.4707,3124.2883#@$PAD~ELLIPSE~4730.629~3124.288~6~6~11~OUT1~L2~1.8~~90~gge2601~0~~Y~1~0~0.2~4730.6285,3124.2881#@$PAD~ELLIPSE~4720.786~3124.288~6~6~11~OUT1~L1~1.8~~90~gge2616~0~~Y~1~0~0.2~4720.786,3124.2881#@$PAD~ELLIPSE~4750.314~3138.068~6~6~11~~K4~1.8~~90~gge2631~0~~Y~1~0~0.2~4750.3125,3138.0678#@$PAD~ELLIPSE~4740.471~3138.068~6~6~11~~K3~1.8~~90~gge2646~0~~Y~1~0~0.2~4740.4707,3138.0678#@$PAD~ELLIPSE~4730.629~3138.068~6~6~11~START2~K2~1.8~~90~gge2661~0~~Y~1~0~0.2~4730.6285,3138.0676#@$PAD~ELLIPSE~4720.786~3138.068~6~6~11~START2~K1~1.8~~90~gge2676~0~~Y~1~0~0.2~4720.786,3138.0676#@$PAD~ELLIPSE~4750.314~3147.91~6~6~11~~J4~1.8~~90~gge2691~0~~Y~1~0~0.2~4750.3125,3147.9103#@$PAD~ELLIPSE~4740.471~3147.91~6~6~11~~J3~1.8~~90~gge2706~0~~Y~1~0~0.2~4740.4707,3147.9103#@$PAD~ELLIPSE~4730.629~3147.91~6~6~11~START1~J2~1.8~~90~gge2721~0~~Y~1~0~0.2~4730.6285,3147.9101#@$PAD~ELLIPSE~4720.786~3147.91~6~6~11~START1~J1~1.8~~90~gge2736~0~~Y~1~0~0.2~4720.786,3147.9101#@$PAD~ELLIPSE~4750.314~3157.753~6~6~11~~H4~1.8~~90~gge2751~0~~Y~1~0~0.2~4750.3125,3157.7528#@$PAD~ELLIPSE~4740.471~3157.753~6~6~11~~H3~1.8~~90~gge2766~0~~Y~1~0~0.2~4740.4707,3157.7528#@$PAD~ELLIPSE~4730.629~3157.753~6~6~11~SPI_MOSI~H2~1.8~~90~gge2781~0~~Y~1~0~0.2~4730.6285,3157.7526#@$PAD~ELLIPSE~4720.786~3157.753~6~6~11~SPI_MOSI~H1~1.8~~90~gge2796~0~~Y~1~0~0.2~4720.786,3157.7526#@$PAD~ELLIPSE~4750.314~3167.595~6~6~11~SPI_SCK~G4~1.8~~90~gge2811~0~~Y~1~0~0.2~4750.3125,3167.5954#@$PAD~ELLIPSE~4740.471~3167.595~6~6~11~SPI_SCK~G3~1.8~~90~gge2826~0~~Y~1~0~0.2~4740.4707,3167.5954#@$PAD~ELLIPSE~4730.629~3167.595~6~6~11~SPI_MISO~G2~1.8~~90~gge2841~0~~Y~1~0~0.2~4730.6285,3167.5952#@$PAD~ELLIPSE~4720.786~3167.595~6~6~11~SPI_MISO~G1~1.8~~90~gge2856~0~~Y~1~0~0.2~4720.786,3167.5952#@$PAD~ELLIPSE~4750.314~3177.438~6~6~11~SDA~F4~1.8~~90~gge2871~0~~Y~1~0~0.2~4750.3125,3177.4379#@$PAD~ELLIPSE~4740.471~3177.438~6~6~11~SDA~F3~1.8~~90~gge2886~0~~Y~1~0~0.2~4740.4707,3177.4379#@$PAD~ELLIPSE~4730.629~3177.438~6~6~11~RX~F2~1.8~~90~gge2901~0~~Y~1~0~0.2~4730.6285,3177.4377#@$PAD~ELLIPSE~4720.786~3177.438~6~6~11~RX~F1~1.8~~90~gge2916~0~~Y~1~0~0.2~4720.786,3177.4377#@$PAD~ELLIPSE~4750.314~3187.28~6~6~11~SCL~E4~1.8~~90~gge2931~0~~Y~1~0~0.2~4750.3125,3187.2804#@$PAD~ELLIPSE~4740.471~3187.28~6~6~11~SCL~E3~1.8~~90~gge2946~0~~Y~1~0~0.2~4740.4707,3187.2804#@$PAD~ELLIPSE~4730.629~3187.28~6~6~11~TX~E2~1.8~~90~gge2961~0~~Y~1~0~0.2~4730.6285,3187.2802#@$PAD~ELLIPSE~4720.786~3187.28~6~6~11~TX~E1~1.8~~90~gge2976~0~~Y~1~0~0.2~4720.786,3187.2802#@$PAD~ELLIPSE~4750.314~3197.123~6~6~11~GPIO39~D4~1.8~~90~gge2991~0~~Y~1~0~0.2~4750.3125,3197.1229#@$PAD~ELLIPSE~4740.471~3197.123~6~6~11~GPIO39~D3~1.8~~90~gge3006~0~~Y~1~0~0.2~4740.4707,3197.1229#@$PAD~ELLIPSE~4730.629~3197.123~6~6~11~CAN1_L~D2~1.8~~90~gge3021~0~~Y~1~0~0.2~4730.6285,3197.1227#@$PAD~ELLIPSE~4720.786~3197.123~6~6~11~CAN1_L~D1~1.8~~90~gge3036~0~~Y~1~0~0.2~4720.786,3197.1227#@$PAD~ELLIPSE~4750.314~3206.965~6~6~11~GPIO36~C4~1.8~~90~gge3051~0~~Y~1~0~0.2~4750.3125,3206.9654#@$PAD~ELLIPSE~4740.471~3206.965~6~6~11~GPIO36~C3~1.8~~90~gge3066~0~~Y~1~0~0.2~4740.4707,3206.9654#@$PAD~ELLIPSE~4730.629~3206.965~6~6~11~CAN1_H~C2~1.8~~90~gge3081~0~~Y~1~0~0.2~4730.6285,3206.9652#@$PAD~ELLIPSE~4720.786~3206.965~6~6~11~CAN1_H~C1~1.8~~90~gge3096~0~~Y~1~0~0.2~4720.786,3206.9652#@$PAD~ELLIPSE~4750.314~3216.808~6~6~11~GPIO27~B4~1.8~~90~gge3111~0~~Y~1~0~0.2~4750.3125,3216.808#@$PAD~ELLIPSE~4740.471~3216.808~6~6~11~GPIO27~B3~1.8~~90~gge3126~0~~Y~1~0~0.2~4740.4707,3216.808#@$PAD~ELLIPSE~4730.629~3216.808~6~6~11~CAN0_L~B2~1.8~~90~gge3141~0~~Y~1~0~0.2~4730.6285,3216.8078#@$PAD~ELLIPSE~4720.786~3216.808~6~6~11~CAN0_L~B1~1.8~~90~gge3156~0~~Y~1~0~0.2~4720.786,3216.8078#@$PAD~ELLIPSE~4750.314~3226.65~6~6~11~GPIO25~A4~1.8~~90~gge3171~0~~Y~1~0~0.2~4750.3125,3226.6505#@$PAD~ELLIPSE~4740.471~3226.65~6~6~11~GPIO25~A3~1.8~~90~gge3186~0~~Y~1~0~0.2~4740.4707,3226.6505#@$PAD~ELLIPSE~4730.629~3226.65~6~6~11~CAN0_H~A2~1.8~~90~gge3201~0~~Y~1~0~0.2~4730.6285,3226.6503#@$PAD~ELLIPSE~4720.786~3226.65~6~6~11~CAN0_H~A1~1.8~~90~gge3216~0~~Y~1~0~0.2~4720.786,3226.6503","LIB~4665.668~3171.532~package`SMD-4_L4.6-W6.5-P2.54-LS10.2-TL`link`https:\/\/item.szlcsc.com\/67489.html`Contributor`LCSC`3DModel`SMD-4_L4.6-W6.5-H3.7-LS10.2-P2.54`BOM_Supplier`LCSC`BOM_Manufacturer`SHARP`BOM_Manufacturer Part`PC817X2CSP9F`BOM_Supplier Part`C66405`BOM_JLCPCB Part Class`Extended Part`spicePre`U`spiceSymbolName`PC817X2CSP9F`~180~~gge9839a592feca33c9~1~e706e9f3ee874e6cb3b5586c317927b4~1619336837~0~~yes~~#@$CIRCLE~4687.715~3176.289~0.787~1.5748~12~gge3381~0~~#@$CIRCLE~4684.853~3180.087~0.5~1~101~gge3384~0~~#@$SOLIDREGION~99~~M 4678.4634 3180.5874 L 4652.8727 3180.5874 L 4652.8727 3162.4772 L 4678.4634 3162.4772 Z~solid~gge3387~~~~0#@$SOLIDREGION~100~~M 4685.3532 3177.5163 L 4683.3846 3177.5163 L 4683.3846 3175.5477 L 4685.3532 3175.5477 Z~solid~gge3390~~~~0#@$SOLIDREGION~100~~M 4683.424 3177.5163 L 4678.2273 3177.5163 L 4678.2273 3175.5477 L 4683.424 3175.5477 Z~cutout~gge3393~~~~0#@$SOLIDREGION~100~~M 4685.3532 3167.5163 L 4683.3846 3167.5163 L 4683.3846 3165.5477 L 4685.3532 3165.5477 Z~solid~gge3396~~~~0#@$SOLIDREGION~100~~M 4683.424 3167.5163 L 4678.2273 3167.5163 L 4678.2273 3165.5477 L 4683.424 3165.5477 Z~cutout~gge3399~~~~0#@$SOLIDREGION~100~~M 4647.9515 3167.5163 L 4645.9831 3167.5163 L 4645.9831 3165.5477 L 4647.9515 3165.5477 Z~solid~gge3402~~~~0#@$SOLIDREGION~100~~M 4653.109 3167.5163 L 4647.9122 3167.5163 L 4647.9122 3165.5477 L 4653.109 3165.5477 Z~cutout~gge3405~~~~0#@$SOLIDREGION~100~~M 4647.9515 3177.5163 L 4645.9831 3177.5163 L 4645.9831 3175.5477 L 4647.9515 3175.5477 Z~solid~gge3408~~~~0#@$SOLIDREGION~100~~M 4653.109 3177.5163 L 4647.9122 3177.5163 L 4647.9122 3175.5477 L 4653.109 3175.5477 Z~cutout~gge3411~~~~0#@$SVGNODE~{\"gId\":\"gge3414\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"40.194494414\",\"c_height\":\"18.1102\",\"c_rotation\":\"0,0,180\",\"z\":\"0\",\"c_origin\":\"4665.6682,3171.5324\",\"uuid\":\"a79e9c743b25445f8d44dea9f0160c59\",\"c_etype\":\"outline3D\",\"title\":\"SMD-4_L4.6-W6.5-H3.7-LS10.2-P2.54\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge3414\"},\"childNodes\":[{\"gId\":\"gge3417\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4685.7469 3177.5165 4685.7469 3177.4772 4685.7469 3176.5323 4685.7469 3175.5874 4685.7469 3175.548 4685.6681 3175.548 4684.6839 3175.548 4684.6051 3175.548 4684.4476 3175.548 4684.3294 3175.548 4684.2113 3175.548 4684.1326 3175.548 4684.0538 3175.548 4684.0146 3175.548 4683.857 3175.548 4683.6208 3175.548 4683.4634 3175.548 4683.3058 3175.548 4683.1876 3175.548 4683.0697 3175.548 4680.7469 3175.548 4680.6287 3175.548 4680.5893 3175.548 4680.4711 3175.548 4680.4317 3175.548 4680.3137 3175.548 4680.2744 3175.548 4680.0774 3175.548 4679.9198 3175.548 4679.7231 3175.548 4679.6444 3175.548 4679.5658 3175.548 4679.487 3175.548 4679.4476 3175.548 4679.3294 3175.548 4679.2507 3175.548 4679.1721 3175.548 4679.054 3175.548 4678.4634 3175.548 4678.4634 3167.5166 4679.054 3167.5166 4679.2113 3167.5166 4679.2507 3167.5166 4679.3294 3167.5166 4679.4476 3167.5166 4679.487 3167.5166 4679.6051 3167.5166 4679.6839 3167.5166 4679.7625 3167.5166 4679.9198 3167.5166 4680.1169 3167.5166 4680.2744 3167.5166 4680.3137 3167.5166 4680.4317 3167.5166 4680.4711 3167.5166 4680.5893 3167.5166 4680.6287 3167.5166 4680.7469 3167.5166 4683.109 3167.5166 4683.227 3167.5166 4683.3452 3167.5166 4683.5028 3167.5166 4683.6994 3167.5166 4683.857 3167.5166 4684.0933 3167.5166 4684.1326 3167.5166 4684.2507 3167.5166 4684.3294 3167.5166 4684.487 3167.5166 4684.6051 3167.5166 4684.7231 3167.5166 4685.7075 3167.5166 4685.7469 3167.5166 4685.7469 3167.4772 4685.7469 3166.5323 4685.7469 3165.6268 4685.7469 3165.5874 4685.7469 3165.5481 4685.6681 3165.5481 4684.6839 3165.5481 4684.6051 3165.5481 4684.4476 3165.5481 4684.4082 3165.5481 4684.3294 3165.5481 4684.2113 3165.5481 4684.1326 3165.5481 4684.0538 3165.5481 4683.857 3165.5481 4683.66 3165.5481 4683.6208 3165.5481 4683.4634 3165.5481 4683.3058 3165.5481 4683.2664 3165.5481 4683.1482 3165.5481 4683.0697 3165.5481 4680.7075 3165.5481 4680.6287 3165.5481 4680.5893 3165.5481 4680.4711 3165.5481 4680.3137 3165.5481 4680.2744 3165.5481 4680.0774 3165.5481 4679.9198 3165.5481 4679.7231 3165.5481 4679.6444 3165.5481 4679.5658 3165.5481 4679.487 3165.5481 4679.4476 3165.5481 4679.3294 3165.5481 4679.2507 3165.5481 4679.1721 3165.5481 4679.054 3165.5481 4678.4634 3165.5481 4678.4634 3162.6741 4678.4634 3162.6347 4678.424 3162.5953 4678.424 3162.5166 4678.3452 3162.5166 4678.2664 3162.4772 4653.0303 3162.4772 4652.9515 3162.5166 4652.9122 3162.5559 4652.9122 3162.5953 4652.8727 3162.6347 4652.8727 3162.6741 4652.8727 3165.5481 4652.2824 3165.5481 4652.1642 3165.5481 4652.0854 3165.5481 4651.9674 3165.5481 4651.8887 3165.5481 4651.8493 3165.5481 4651.7311 3165.5481 4651.6523 3165.5481 4651.5735 3165.5481 4651.4161 3165.5481 4651.2193 3165.5481 4651.0617 3165.5481 4651.0223 3165.5481 4650.9043 3165.5481 4650.865 3165.5481 4650.7469 3165.5481 4650.7075 3165.5481 4650.5893 3165.5481 4649.4476 3165.5481 4648.227 3165.5481 4648.109 3165.5481 4647.991 3165.5481 4647.8334 3165.5481 4647.6367 3165.5481 4647.4792 3165.5481 4647.2824 3165.5481 4647.243 3165.5481 4647.2036 3165.5481 4647.0854 3165.5481 4647.0067 3165.5481 4646.8493 3165.5481 4646.7705 3165.5481 4646.7311 3165.5481 4646.6129 3165.5481 4645.6287 3165.5481 4645.5893 3165.5481 4645.5893 3165.5874 4645.5893 3165.6268 4645.5893 3166.5323 4645.5893 3167.4772 4645.5893 3167.5166 4645.6681 3167.5166 4646.6523 3167.5166 4646.7311 3167.5166 4646.8887 3167.5166 4647.0067 3167.5166 4647.0854 3167.5166 4647.2036 3167.5166 4647.2824 3167.5166 4647.3217 3167.5166 4647.4792 3167.5166 4647.7152 3167.5166 4647.8727 3167.5166 4648.0303 3167.5166 4648.1485 3167.5166 4648.2664 3167.5166 4650.5893 3167.5166 4650.7075 3167.5166 4650.7469 3167.5166 4650.865 3167.5166 4650.9043 3167.5166 4651.0223 3167.5166 4651.0617 3167.5166 4651.2587 3167.5166 4651.4161 3167.5166 4651.6129 3167.5166 4651.6917 3167.5166 4651.7705 3167.5166 4651.8493 3167.5166 4651.8887 3167.5166 4652.0067 3167.5166 4652.0854 3167.5166 4652.1642 3167.5166 4652.2824 3167.5166 4652.8727 3167.5166 4652.8727 3175.548 4652.2824 3175.548 4652.1642 3175.548 4652.0854 3175.548 4652.0067 3175.548 4651.8887 3175.548 4651.8493 3175.548 4651.7311 3175.548 4651.6523 3175.548 4651.5735 3175.548 4651.4161 3175.548 4651.2193 3175.548 4651.0617 3175.548 4651.0223 3175.548 4650.9043 3175.548 4650.865 3175.548 4650.7469 3175.548 4650.7075 3175.548 4650.5893 3175.548 4648.227 3175.548 4648.109 3175.548 4647.991 3175.548 4647.8334 3175.548 4647.6367 3175.548 4647.4792 3175.548 4647.2824 3175.548 4647.243 3175.548 4647.2036 3175.548 4647.0854 3175.548 4647.0067 3175.548 4646.8493 3175.548 4646.7311 3175.548 4646.6129 3175.548 4645.6287 3175.548 4645.5893 3175.548 4645.5893 3175.5874 4645.5893 3176.5323 4645.5893 3177.4772 4645.5893 3177.5165 4645.6681 3177.5165 4646.6523 3177.5165 4646.7311 3177.5165 4646.8887 3177.5165 4646.9279 3177.5165 4647.0067 3177.5165 4647.0854 3177.5165 4647.2036 3177.5165 4647.2824 3177.5165 4647.4792 3177.5165 4647.676 3177.5165 4647.7152 3177.5165 4647.8727 3177.5165 4648.0303 3177.5165 4648.0698 3177.5165 4648.1878 3177.5165 4648.2664 3177.5165 4650.6287 3177.5165 4650.7075 3177.5165 4650.7469 3177.5165 4650.865 3177.5165 4651.0223 3177.5165 4651.0617 3177.5165 4651.2587 3177.5165 4651.4161 3177.5165 4651.6129 3177.5165 4651.6917 3177.5165 4651.7705 3177.5165 4651.8493 3177.5165 4651.8887 3177.5165 4652.0067 3177.5165 4652.0854 3177.5165 4652.1642 3177.5165 4652.2824 3177.5165 4652.5579 3177.5165 4652.8727 3177.5165 4652.8727 3180.3906 4652.8727 3180.4299 4652.9122 3180.4693 4652.9122 3180.548 4652.991 3180.548 4653.0698 3180.5874 4678.3058 3180.5874 4678.3846 3180.548 4678.424 3180.5087 4678.424 3180.4693 4678.4634 3180.4299 4678.4634 3180.3906 4678.4634 3177.5165 4678.7388 3177.5165 4679.054 3177.5165 4679.2113 3177.5165 4679.2507 3177.5165 4679.3688 3177.5165 4679.4476 3177.5165 4679.487 3177.5165 4679.6051 3177.5165 4679.6444 3177.5165 4679.7625 3177.5165 4679.9198 3177.5165 4680.1169 3177.5165 4680.2744 3177.5165 4680.3137 3177.5165 4680.4317 3177.5165 4680.4711 3177.5165 4680.5893 3177.5165 4680.6287 3177.5165 4680.7469 3177.5165 4683.109 3177.5165 4683.227 3177.5165 4683.3452 3177.5165 4683.542 3177.5165 4683.6994 3177.5165 4683.857 3177.5165 4684.0538 3177.5165 4684.1326 3177.5165 4684.2507 3177.5165 4684.3294 3177.5165 4684.487 3177.5165 4684.5658 3177.5165 4684.6051 3177.5165 4684.7231 3177.5165 4685.7075 3177.5165 4685.7469 3177.5165 4685.7469 3177.5165\",\"id\":\"gge3417\"}}]}#@$TEXT~N~4619.17~3195.154~0.6~0~0~3~~4.5~PC817X2CSP9F~M 4619.1704 3190.6137 L 4619.1704 3194.9037 M 4619.1704 3190.6137 L 4621.0104 3190.6137 L 4621.6204 3190.8137 L 4621.8304 3191.0237 L 4622.0304 3191.4337 L 4622.0304 3192.0437 L 4621.8304 3192.4537 L 4621.6204 3192.6537 L 4621.0104 3192.8637 L 4619.1704 3192.8637 M 4626.4504 3191.6337 L 4626.2504 3191.2237 L 4625.8404 3190.8137 L 4625.4304 3190.6137 L 4624.6104 3190.6137 L 4624.2004 3190.8137 L 4623.7904 3191.2237 L 4623.5904 3191.6337 L 4623.3804 3192.2537 L 4623.3804 3193.2737 L 4623.5904 3193.8837 L 4623.7904 3194.2937 L 4624.2004 3194.7037 L 4624.6104 3194.9037 L 4625.4304 3194.9037 L 4625.8404 3194.7037 L 4626.2504 3194.2937 L 4626.4504 3193.8837 M 4628.8204 3190.6137 L 4628.2104 3190.8137 L 4628.0104 3191.2237 L 4628.0104 3191.6337 L 4628.2104 3192.0437 L 4628.6204 3192.2537 L 4629.4404 3192.4537 L 4630.0504 3192.6537 L 4630.4604 3193.0637 L 4630.6704 3193.4737 L 4630.6704 3194.0937 L 4630.4604 3194.5037 L 4630.2604 3194.7037 L 4629.6404 3194.9037 L 4628.8204 3194.9037 L 4628.2104 3194.7037 L 4628.0104 3194.5037 L 4627.8004 3194.0937 L 4627.8004 3193.4737 L 4628.0104 3193.0637 L 4628.4204 3192.6537 L 4629.0304 3192.4537 L 4629.8504 3192.2537 L 4630.2604 3192.0437 L 4630.4604 3191.6337 L 4630.4604 3191.2237 L 4630.2604 3190.8137 L 4629.6404 3190.6137 L 4628.8204 3190.6137 M 4632.0204 3191.4337 L 4632.4204 3191.2237 L 4633.0404 3190.6137 L 4633.0404 3194.9037 M 4637.2504 3190.6137 L 4635.2104 3194.9037 M 4634.3904 3190.6137 L 4637.2504 3190.6137 M 4638.6004 3190.6137 L 4641.4704 3194.9037 M 4641.4704 3190.6137 L 4638.6004 3194.9037 M 4643.0204 3191.6337 L 4643.0204 3191.4337 L 4643.2204 3191.0237 L 4643.4304 3190.8137 L 4643.8404 3190.6137 L 4644.6604 3190.6137 L 4645.0704 3190.8137 L 4645.2704 3191.0237 L 4645.4704 3191.4337 L 4645.4704 3191.8437 L 4645.2704 3192.2537 L 4644.8604 3192.8637 L 4642.8204 3194.9037 L 4645.6804 3194.9037 M 4650.1004 3191.6337 L 4649.8904 3191.2237 L 4649.4804 3190.8137 L 4649.0704 3190.6137 L 4648.2604 3190.6137 L 4647.8504 3190.8137 L 4647.4404 3191.2237 L 4647.2304 3191.6337 L 4647.0304 3192.2537 L 4647.0304 3193.2737 L 4647.2304 3193.8837 L 4647.4404 3194.2937 L 4647.8504 3194.7037 L 4648.2604 3194.9037 L 4649.0704 3194.9037 L 4649.4804 3194.7037 L 4649.8904 3194.2937 L 4650.1004 3193.8837 M 4654.3104 3191.2237 L 4653.9004 3190.8137 L 4653.2904 3190.6137 L 4652.4704 3190.6137 L 4651.8604 3190.8137 L 4651.4504 3191.2237 L 4651.4504 3191.6337 L 4651.6504 3192.0437 L 4651.8604 3192.2537 L 4652.2704 3192.4537 L 4653.4904 3192.8637 L 4653.9004 3193.0637 L 4654.1104 3193.2737 L 4654.3104 3193.6837 L 4654.3104 3194.2937 L 4653.9004 3194.7037 L 4653.2904 3194.9037 L 4652.4704 3194.9037 L 4651.8604 3194.7037 L 4651.4504 3194.2937 M 4655.6604 3190.6137 L 4655.6604 3194.9037 M 4655.6604 3190.6137 L 4657.5004 3190.6137 L 4658.1204 3190.8137 L 4658.3204 3191.0237 L 4658.5204 3191.4337 L 4658.5204 3192.0437 L 4658.3204 3192.4537 L 4658.1204 3192.6537 L 4657.5004 3192.8637 L 4655.6604 3192.8637 M 4662.5304 3192.0437 L 4662.3304 3192.6537 L 4661.9204 3193.0637 L 4661.3104 3193.2737 L 4661.1004 3193.2737 L 4660.4904 3193.0637 L 4660.0804 3192.6537 L 4659.8704 3192.0437 L 4659.8704 3191.8437 L 4660.0804 3191.2237 L 4660.4904 3190.8137 L 4661.1004 3190.6137 L 4661.3104 3190.6137 L 4661.9204 3190.8137 L 4662.3304 3191.2237 L 4662.5304 3192.0437 L 4662.5304 3193.0637 L 4662.3304 3194.0937 L 4661.9204 3194.7037 L 4661.3104 3194.9037 L 4660.9004 3194.9037 L 4660.2804 3194.7037 L 4660.0804 3194.2937 M 4663.8804 3190.6137 L 4663.8804 3194.9037 M 4663.8804 3190.6137 L 4666.5404 3190.6137 M 4663.8804 3192.6537 L 4665.5204 3192.6537~none~gge3345~~0~#@$TEXT~P~4655.843~3173.443~0.6~0~0~3~~4.5~OPTO1~M 4657.0734 3168.9027 L 4656.6634 3169.1027 L 4656.2534 3169.5127 L 4656.0434 3169.9227 L 4655.8434 3170.5427 L 4655.8434 3171.5627 L 4656.0434 3172.1727 L 4656.2534 3172.5827 L 4656.6634 3172.9927 L 4657.0734 3173.1927 L 4657.8934 3173.1927 L 4658.2934 3172.9927 L 4658.7034 3172.5827 L 4658.9134 3172.1727 L 4659.1134 3171.5627 L 4659.1134 3170.5427 L 4658.9134 3169.9227 L 4658.7034 3169.5127 L 4658.2934 3169.1027 L 4657.8934 3168.9027 L 4657.0734 3168.9027 M 4660.4634 3168.9027 L 4660.4634 3173.1927 M 4660.4634 3168.9027 L 4662.3034 3168.9027 L 4662.9234 3169.1027 L 4663.1234 3169.3127 L 4663.3334 3169.7227 L 4663.3334 3170.3327 L 4663.1234 3170.7427 L 4662.9234 3170.9427 L 4662.3034 3171.1527 L 4660.4634 3171.1527 M 4666.1134 3168.9027 L 4666.1134 3173.1927 M 4664.6834 3168.9027 L 4667.5434 3168.9027 M 4670.1234 3168.9027 L 4669.7134 3169.1027 L 4669.3034 3169.5127 L 4669.0934 3169.9227 L 4668.8934 3170.5427 L 4668.8934 3171.5627 L 4669.0934 3172.1727 L 4669.3034 3172.5827 L 4669.7134 3172.9927 L 4670.1234 3173.1927 L 4670.9434 3173.1927 L 4671.3434 3172.9927 L 4671.7534 3172.5827 L 4671.9634 3172.1727 L 4672.1634 3171.5627 L 4672.1634 3170.5427 L 4671.9634 3169.9227 L 4671.7534 3169.5127 L 4671.3434 3169.1027 L 4670.9434 3168.9027 L 4670.1234 3168.9027 M 4673.5134 3169.7227 L 4673.9234 3169.5127 L 4674.5434 3168.9027 L 4674.5434 3173.1927~~gge3351~~0~#@$TRACK~1~3~~4652.8727 3180.5874 4652.8727 3162.4771~gge3357~0#@$TRACK~1~3~~4652.8727 3162.4771 4678.4634 3162.4771~gge3360~0#@$TRACK~1~3~~4678.4634 3162.4771 4678.4634 3180.5874~gge3363~0#@$TRACK~1~3~~4678.4634 3180.5874 4668.4241 3180.5874~gge3366~0#@$TRACK~1~3~~4652.8727 3180.5874 4662.9123 3180.5874~gge3369~0#@$ARC~1~3~~M 4662.9122 3180.5874 A 2.7579 2.7579 0 0 1 4668.4281 3180.591~~gge3372~0#@$ARC~2.75591~3~~M 4673.5381 3177.8323 A 1.37795 1.37795 0 1 0 4673.5182 3177.8323~~gge3375~0#@$ARC~1.5748~3~~M 4684.5658 3182.5559 A 0.7874 0.7874 0 1 0 4684.5558 3182.5559~~gge3378~0#@$PAD~RECT~4683.975~3176.532~5.9055~7.874~1~OPTO1_1~1~0~4687.9122 3173.5795 4687.9122 3179.4851 4680.0381 3179.4851 4680.0381 3173.5795~270~gge3420~0~~Y~0~0~0.2~4683.975,3176.5323#@$PAD~RECT~4683.975~3166.532~5.9055~7.874~1~GND~2~0~4687.9122 3163.5795 4687.9122 3169.4851 4680.0381 3169.4851 4680.0381 3163.5795~270~gge3435~0~~Y~0~0~0.2~4683.975,3166.5323#@$PAD~RECT~4647.361~3166.532~5.9055~7.874~1~GND~3~0~4651.2981 3163.5795 4651.2981 3169.4851 4643.424 3169.4851 4643.424 3163.5795~270~gge3450~0~~Y~0~0~0.2~4647.361,3166.5323#@$PAD~RECT~4647.361~3176.532~5.9055~7.874~1~IN1~4~0~4651.2981 3173.5795 4651.2981 3179.4851 4643.424 3179.4851 4643.424 3173.5795~270~gge3465~0~~Y~0~0~0.2~4647.361,3176.5323","LIB~4659.8434~3275.9427~package`SMD-4_L4.6-W6.5-P2.54-LS10.2-TL`link`https:\/\/item.szlcsc.com\/67489.html`Contributor`LCSC`3DModel`SMD-4_L4.6-W6.5-H3.7-LS10.2-P2.54`BOM_Supplier`LCSC`BOM_Manufacturer`SHARP`BOM_Manufacturer Part`PC817X2CSP9F`BOM_Supplier Part`C66405`BOM_JLCPCB Part Class`Extended Part`spicePre`U`spiceSymbolName`PC817X2CSP9F`~180~~ggec93cc5e886043b2e~1~e706e9f3ee874e6cb3b5586c317927b4~1619336837~0~~yes~~#@$CIRCLE~4681.8904~3280.6997~0.787~1.5748~12~gge3663~0~~#@$CIRCLE~4679.0284~3284.4977~0.5~1~101~gge3666~0~~#@$SOLIDREGION~99~~M 4672.6388 3284.9981 L 4647.0481 3284.9981 L 4647.0481 3266.8879 L 4672.6388 3266.8879 Z ~solid~gge3669~~~~0#@$SOLIDREGION~100~~M 4679.5286 3281.927 L 4677.56 3281.927 L 4677.56 3279.9584 L 4679.5286 3279.9584 Z ~solid~gge3672~~~~0#@$SOLIDREGION~100~~M 4677.5994 3281.927 L 4672.4027 3281.927 L 4672.4027 3279.9584 L 4677.5994 3279.9584 Z ~cutout~gge3675~~~~0#@$SOLIDREGION~100~~M 4679.5286 3271.927 L 4677.56 3271.927 L 4677.56 3269.9584 L 4679.5286 3269.9584 Z ~solid~gge3678~~~~0#@$SOLIDREGION~100~~M 4677.5994 3271.927 L 4672.4027 3271.927 L 4672.4027 3269.9584 L 4677.5994 3269.9584 Z ~cutout~gge3681~~~~0#@$SOLIDREGION~100~~M 4642.1269 3271.927 L 4640.1585 3271.927 L 4640.1585 3269.9584 L 4642.1269 3269.9584 Z ~solid~gge3684~~~~0#@$SOLIDREGION~100~~M 4647.2844 3271.927 L 4642.0876 3271.927 L 4642.0876 3269.9584 L 4647.2844 3269.9584 Z ~cutout~gge3687~~~~0#@$SOLIDREGION~100~~M 4642.1269 3281.927 L 4640.1585 3281.927 L 4640.1585 3279.9584 L 4642.1269 3279.9584 Z ~solid~gge3690~~~~0#@$SOLIDREGION~100~~M 4647.2844 3281.927 L 4642.0876 3281.927 L 4642.0876 3279.9584 L 4647.2844 3279.9584 Z ~cutout~gge3693~~~~0#@$SVGNODE~{\"gId\":\"gge3696\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"40.194494414\",\"c_height\":\"18.1102\",\"c_rotation\":\"0,0,180\",\"z\":\"0\",\"c_origin\":\"4659.8435,3275.943\",\"uuid\":\"a79e9c743b25445f8d44dea9f0160c59\",\"c_etype\":\"outline3D\",\"title\":\"SMD-4_L4.6-W6.5-H3.7-LS10.2-P2.54\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge3696\"},\"childNodes\":[{\"gId\":\"gge3699\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4679.9223 3281.9272 4679.9223 3281.8879 4679.9223 3280.943 4679.9223 3279.9981 4679.9223 3279.9587 4679.8435 3279.9587 4678.8593 3279.9587 4678.7805 3279.9587 4678.623 3279.9587 4678.5048 3279.9587 4678.3867 3279.9587 4678.308 3279.9587 4678.2292 3279.9587 4678.19 3279.9587 4678.0324 3279.9587 4677.7962 3279.9587 4677.6388 3279.9587 4677.4812 3279.9587 4677.363 3279.9587 4677.2451 3279.9587 4674.9223 3279.9587 4674.8041 3279.9587 4674.7647 3279.9587 4674.6465 3279.9587 4674.6071 3279.9587 4674.4891 3279.9587 4674.4498 3279.9587 4674.2528 3279.9587 4674.0952 3279.9587 4673.8985 3279.9587 4673.8198 3279.9587 4673.7412 3279.9587 4673.6624 3279.9587 4673.623 3279.9587 4673.5048 3279.9587 4673.4261 3279.9587 4673.3475 3279.9587 4673.2294 3279.9587 4672.6388 3279.9587 4672.6388 3271.9273 4673.2294 3271.9273 4673.3867 3271.9273 4673.4261 3271.9273 4673.5048 3271.9273 4673.623 3271.9273 4673.6624 3271.9273 4673.7805 3271.9273 4673.8593 3271.9273 4673.9379 3271.9273 4674.0952 3271.9273 4674.2923 3271.9273 4674.4498 3271.9273 4674.4891 3271.9273 4674.6071 3271.9273 4674.6465 3271.9273 4674.7647 3271.9273 4674.8041 3271.9273 4674.9223 3271.9273 4677.2844 3271.9273 4677.4024 3271.9273 4677.5206 3271.9273 4677.6782 3271.9273 4677.8748 3271.9273 4678.0324 3271.9273 4678.2687 3271.9273 4678.308 3271.9273 4678.4261 3271.9273 4678.5048 3271.9273 4678.6624 3271.9273 4678.7805 3271.9273 4678.8985 3271.9273 4679.8829 3271.9273 4679.9223 3271.9273 4679.9223 3271.8879 4679.9223 3270.943 4679.9223 3270.0375 4679.9223 3269.9981 4679.9223 3269.9588 4679.8435 3269.9588 4678.8593 3269.9588 4678.7805 3269.9588 4678.623 3269.9588 4678.5836 3269.9588 4678.5048 3269.9588 4678.3867 3269.9588 4678.308 3269.9588 4678.2292 3269.9588 4678.0324 3269.9588 4677.8354 3269.9588 4677.7962 3269.9588 4677.6388 3269.9588 4677.4812 3269.9588 4677.4418 3269.9588 4677.3236 3269.9588 4677.2451 3269.9588 4674.8829 3269.9588 4674.8041 3269.9588 4674.7647 3269.9588 4674.6465 3269.9588 4674.4891 3269.9588 4674.4498 3269.9588 4674.2528 3269.9588 4674.0952 3269.9588 4673.8985 3269.9588 4673.8198 3269.9588 4673.7412 3269.9588 4673.6624 3269.9588 4673.623 3269.9588 4673.5048 3269.9588 4673.4261 3269.9588 4673.3475 3269.9588 4673.2294 3269.9588 4672.6388 3269.9588 4672.6388 3267.0848 4672.6388 3267.0454 4672.5994 3267.006 4672.5994 3266.9273 4672.5206 3266.9273 4672.4418 3266.8879 4647.2057 3266.8879 4647.1269 3266.9273 4647.0876 3266.9666 4647.0876 3267.006 4647.0481 3267.0454 4647.0481 3267.0848 4647.0481 3269.9588 4646.4578 3269.9588 4646.3396 3269.9588 4646.2608 3269.9588 4646.1428 3269.9588 4646.0641 3269.9588 4646.0247 3269.9588 4645.9065 3269.9588 4645.8277 3269.9588 4645.7489 3269.9588 4645.5915 3269.9588 4645.3947 3269.9588 4645.2371 3269.9588 4645.1977 3269.9588 4645.0797 3269.9588 4645.0404 3269.9588 4644.9223 3269.9588 4644.8829 3269.9588 4644.7647 3269.9588 4643.623 3269.9588 4642.4024 3269.9588 4642.2844 3269.9588 4642.1664 3269.9588 4642.0088 3269.9588 4641.8121 3269.9588 4641.6546 3269.9588 4641.4578 3269.9588 4641.4184 3269.9588 4641.379 3269.9588 4641.2608 3269.9588 4641.1821 3269.9588 4641.0247 3269.9588 4640.9459 3269.9588 4640.9065 3269.9588 4640.7883 3269.9588 4639.8041 3269.9588 4639.7647 3269.9588 4639.7647 3269.9981 4639.7647 3270.0375 4639.7647 3270.943 4639.7647 3271.8879 4639.7647 3271.9273 4639.8435 3271.9273 4640.8277 3271.9273 4640.9065 3271.9273 4641.0641 3271.9273 4641.1821 3271.9273 4641.2608 3271.9273 4641.379 3271.9273 4641.4578 3271.9273 4641.4971 3271.9273 4641.6546 3271.9273 4641.8906 3271.9273 4642.0481 3271.9273 4642.2057 3271.9273 4642.3239 3271.9273 4642.4418 3271.9273 4644.7647 3271.9273 4644.8829 3271.9273 4644.9223 3271.9273 4645.0404 3271.9273 4645.0797 3271.9273 4645.1977 3271.9273 4645.2371 3271.9273 4645.4341 3271.9273 4645.5915 3271.9273 4645.7883 3271.9273 4645.8671 3271.9273 4645.9459 3271.9273 4646.0247 3271.9273 4646.0641 3271.9273 4646.1821 3271.9273 4646.2608 3271.9273 4646.3396 3271.9273 4646.4578 3271.9273 4647.0481 3271.9273 4647.0481 3279.9587 4646.4578 3279.9587 4646.3396 3279.9587 4646.2608 3279.9587 4646.1821 3279.9587 4646.0641 3279.9587 4646.0247 3279.9587 4645.9065 3279.9587 4645.8277 3279.9587 4645.7489 3279.9587 4645.5915 3279.9587 4645.3947 3279.9587 4645.2371 3279.9587 4645.1977 3279.9587 4645.0797 3279.9587 4645.0404 3279.9587 4644.9223 3279.9587 4644.8829 3279.9587 4644.7647 3279.9587 4642.4024 3279.9587 4642.2844 3279.9587 4642.1664 3279.9587 4642.0088 3279.9587 4641.8121 3279.9587 4641.6546 3279.9587 4641.4578 3279.9587 4641.4184 3279.9587 4641.379 3279.9587 4641.2608 3279.9587 4641.1821 3279.9587 4641.0247 3279.9587 4640.9065 3279.9587 4640.7883 3279.9587 4639.8041 3279.9587 4639.7647 3279.9587 4639.7647 3279.9981 4639.7647 3280.943 4639.7647 3281.8879 4639.7647 3281.9272 4639.8435 3281.9272 4640.8277 3281.9272 4640.9065 3281.9272 4641.0641 3281.9272 4641.1033 3281.9272 4641.1821 3281.9272 4641.2608 3281.9272 4641.379 3281.9272 4641.4578 3281.9272 4641.6546 3281.9272 4641.8514 3281.9272 4641.8906 3281.9272 4642.0481 3281.9272 4642.2057 3281.9272 4642.2452 3281.9272 4642.3632 3281.9272 4642.4418 3281.9272 4644.8041 3281.9272 4644.8829 3281.9272 4644.9223 3281.9272 4645.0404 3281.9272 4645.1977 3281.9272 4645.2371 3281.9272 4645.4341 3281.9272 4645.5915 3281.9272 4645.7883 3281.9272 4645.8671 3281.9272 4645.9459 3281.9272 4646.0247 3281.9272 4646.0641 3281.9272 4646.1821 3281.9272 4646.2608 3281.9272 4646.3396 3281.9272 4646.4578 3281.9272 4646.7333 3281.9272 4647.0481 3281.9272 4647.0481 3284.8013 4647.0481 3284.8406 4647.0876 3284.88 4647.0876 3284.9587 4647.1664 3284.9587 4647.2452 3284.9981 4672.4812 3284.9981 4672.56 3284.9587 4672.5994 3284.9194 4672.5994 3284.88 4672.6388 3284.8406 4672.6388 3284.8013 4672.6388 3281.9272 4672.9142 3281.9272 4673.2294 3281.9272 4673.3867 3281.9272 4673.4261 3281.9272 4673.5442 3281.9272 4673.623 3281.9272 4673.6624 3281.9272 4673.7805 3281.9272 4673.8198 3281.9272 4673.9379 3281.9272 4674.0952 3281.9272 4674.2923 3281.9272 4674.4498 3281.9272 4674.4891 3281.9272 4674.6071 3281.9272 4674.6465 3281.9272 4674.7647 3281.9272 4674.8041 3281.9272 4674.9223 3281.9272 4677.2844 3281.9272 4677.4024 3281.9272 4677.5206 3281.9272 4677.7174 3281.9272 4677.8748 3281.9272 4678.0324 3281.9272 4678.2292 3281.9272 4678.308 3281.9272 4678.4261 3281.9272 4678.5048 3281.9272 4678.6624 3281.9272 4678.7412 3281.9272 4678.7805 3281.9272 4678.8985 3281.9272 4679.8829 3281.9272 4679.9223 3281.9272 4679.9223 3281.9272\",\"id\":\"gge3699\"}}]}#@$TEXT~N~4613.3454~3299.5647~0.6~0~0~3~~4.5~PC817X2CSP9F~M 4613.3458 3295.0244 L 4613.3458 3299.3144 M 4613.3458 3295.0244 L 4615.1858 3295.0244 L 4615.7958 3295.2244 L 4616.0058 3295.4344 L 4616.2058 3295.8444 L 4616.2058 3296.4544 L 4616.0058 3296.8644 L 4615.7958 3297.0644 L 4615.1858 3297.2744 L 4613.3458 3297.2744 M 4620.6258 3296.0444 L 4620.4258 3295.6344 L 4620.0158 3295.2244 L 4619.6058 3295.0244 L 4618.7858 3295.0244 L 4618.3758 3295.2244 L 4617.9658 3295.6344 L 4617.7658 3296.0444 L 4617.5558 3296.6644 L 4617.5558 3297.6844 L 4617.7658 3298.2944 L 4617.9658 3298.7044 L 4618.3758 3299.1144 L 4618.7858 3299.3144 L 4619.6058 3299.3144 L 4620.0158 3299.1144 L 4620.4258 3298.7044 L 4620.6258 3298.2944 M 4622.9958 3295.0244 L 4622.3858 3295.2244 L 4622.1858 3295.6344 L 4622.1858 3296.0444 L 4622.3858 3296.4544 L 4622.7958 3296.6644 L 4623.6158 3296.8644 L 4624.2258 3297.0644 L 4624.6358 3297.4744 L 4624.8458 3297.8844 L 4624.8458 3298.5044 L 4624.6358 3298.9144 L 4624.4358 3299.1144 L 4623.8158 3299.3144 L 4622.9958 3299.3144 L 4622.3858 3299.1144 L 4622.1858 3298.9144 L 4621.9758 3298.5044 L 4621.9758 3297.8844 L 4622.1858 3297.4744 L 4622.5958 3297.0644 L 4623.2058 3296.8644 L 4624.0258 3296.6644 L 4624.4358 3296.4544 L 4624.6358 3296.0444 L 4624.6358 3295.6344 L 4624.4358 3295.2244 L 4623.8158 3295.0244 L 4622.9958 3295.0244 M 4626.1958 3295.8444 L 4626.5958 3295.6344 L 4627.2158 3295.0244 L 4627.2158 3299.3144 M 4631.4258 3295.0244 L 4629.3858 3299.3144 M 4628.5658 3295.0244 L 4631.4258 3295.0244 M 4632.7758 3295.0244 L 4635.6458 3299.3144 M 4635.6458 3295.0244 L 4632.7758 3299.3144 M 4637.1958 3296.0444 L 4637.1958 3295.8444 L 4637.3958 3295.4344 L 4637.6058 3295.2244 L 4638.0158 3295.0244 L 4638.8358 3295.0244 L 4639.2458 3295.2244 L 4639.4458 3295.4344 L 4639.6458 3295.8444 L 4639.6458 3296.2544 L 4639.4458 3296.6644 L 4639.0358 3297.2744 L 4636.9958 3299.3144 L 4639.8558 3299.3144 M 4644.2758 3296.0444 L 4644.0658 3295.6344 L 4643.6558 3295.2244 L 4643.2458 3295.0244 L 4642.4358 3295.0244 L 4642.0258 3295.2244 L 4641.6158 3295.6344 L 4641.4058 3296.0444 L 4641.2058 3296.6644 L 4641.2058 3297.6844 L 4641.4058 3298.2944 L 4641.6158 3298.7044 L 4642.0258 3299.1144 L 4642.4358 3299.3144 L 4643.2458 3299.3144 L 4643.6558 3299.1144 L 4644.0658 3298.7044 L 4644.2758 3298.2944 M 4648.4858 3295.6344 L 4648.0758 3295.2244 L 4647.4658 3295.0244 L 4646.6458 3295.0244 L 4646.0358 3295.2244 L 4645.6258 3295.6344 L 4645.6258 3296.0444 L 4645.8258 3296.4544 L 4646.0358 3296.6644 L 4646.4458 3296.8644 L 4647.6658 3297.2744 L 4648.0758 3297.4744 L 4648.2858 3297.6844 L 4648.4858 3298.0944 L 4648.4858 3298.7044 L 4648.0758 3299.1144 L 4647.4658 3299.3144 L 4646.6458 3299.3144 L 4646.0358 3299.1144 L 4645.6258 3298.7044 M 4649.8358 3295.0244 L 4649.8358 3299.3144 M 4649.8358 3295.0244 L 4651.6758 3295.0244 L 4652.2958 3295.2244 L 4652.4958 3295.4344 L 4652.6958 3295.8444 L 4652.6958 3296.4544 L 4652.4958 3296.8644 L 4652.2958 3297.0644 L 4651.6758 3297.2744 L 4649.8358 3297.2744 M 4656.7058 3296.4544 L 4656.5058 3297.0644 L 4656.0958 3297.4744 L 4655.4858 3297.6844 L 4655.2758 3297.6844 L 4654.6658 3297.4744 L 4654.2558 3297.0644 L 4654.0458 3296.4544 L 4654.0458 3296.2544 L 4654.2558 3295.6344 L 4654.6658 3295.2244 L 4655.2758 3295.0244 L 4655.4858 3295.0244 L 4656.0958 3295.2244 L 4656.5058 3295.6344 L 4656.7058 3296.4544 L 4656.7058 3297.4744 L 4656.5058 3298.5044 L 4656.0958 3299.1144 L 4655.4858 3299.3144 L 4655.0758 3299.3144 L 4654.4558 3299.1144 L 4654.2558 3298.7044 M 4658.0558 3295.0244 L 4658.0558 3299.3144 M 4658.0558 3295.0244 L 4660.7158 3295.0244 M 4658.0558 3297.0644 L 4659.6958 3297.0644~none~gge3627~~0~#@$TEXT~P~4648.3034~3278.7327~0.6~0~0~3~~4.5~OPTO3~M 4649.5334 3274.1927 L 4649.1234 3274.3927 L 4648.7134 3274.8027 L 4648.5034 3275.2127 L 4648.3034 3275.8327 L 4648.3034 3276.8527 L 4648.5034 3277.4627 L 4648.7134 3277.8727 L 4649.1234 3278.2827 L 4649.5334 3278.4827 L 4650.3534 3278.4827 L 4650.7534 3278.2827 L 4651.1634 3277.8727 L 4651.3734 3277.4627 L 4651.5734 3276.8527 L 4651.5734 3275.8327 L 4651.3734 3275.2127 L 4651.1634 3274.8027 L 4650.7534 3274.3927 L 4650.3534 3274.1927 L 4649.5334 3274.1927 M 4652.9234 3274.1927 L 4652.9234 3278.4827 M 4652.9234 3274.1927 L 4654.7634 3274.1927 L 4655.3834 3274.3927 L 4655.5834 3274.6027 L 4655.7934 3275.0127 L 4655.7934 3275.6227 L 4655.5834 3276.0327 L 4655.3834 3276.2327 L 4654.7634 3276.4427 L 4652.9234 3276.4427 M 4658.5734 3274.1927 L 4658.5734 3278.4827 M 4657.1434 3274.1927 L 4660.0034 3274.1927 M 4662.5834 3274.1927 L 4662.1734 3274.3927 L 4661.7634 3274.8027 L 4661.5534 3275.2127 L 4661.3534 3275.8327 L 4661.3534 3276.8527 L 4661.5534 3277.4627 L 4661.7634 3277.8727 L 4662.1734 3278.2827 L 4662.5834 3278.4827 L 4663.4034 3278.4827 L 4663.8034 3278.2827 L 4664.2134 3277.8727 L 4664.4234 3277.4627 L 4664.6234 3276.8527 L 4664.6234 3275.8327 L 4664.4234 3275.2127 L 4664.2134 3274.8027 L 4663.8034 3274.3927 L 4663.4034 3274.1927 L 4662.5834 3274.1927 M 4666.3834 3274.1927 L 4668.6334 3274.1927 L 4667.4034 3275.8327 L 4668.0234 3275.8327 L 4668.4334 3276.0327 L 4668.6334 3276.2327 L 4668.8434 3276.8527 L 4668.8434 3277.2627 L 4668.6334 3277.8727 L 4668.2234 3278.2827 L 4667.6134 3278.4827 L 4667.0034 3278.4827 L 4666.3834 3278.2827 L 4666.1834 3278.0827 L 4665.9734 3277.6727~~gge3633~~0~#@$TRACK~1~3~~4647.0481 3284.9981 4647.0481 3266.8878~gge3639~0#@$TRACK~1~3~~4647.0481 3266.8878 4672.6388 3266.8878~gge3642~0#@$TRACK~1~3~~4672.6388 3266.8878 4672.6388 3284.9981~gge3645~0#@$TRACK~1~3~~4672.6388 3284.9981 4662.5995 3284.9981~gge3648~0#@$TRACK~1~3~~4647.0481 3284.9981 4657.0877 3284.9981~gge3651~0#@$ARC~1~3~~M 4657.0876 3284.9981 A 2.7579 2.7579 0 0 1 4662.6035 3285.0017~~gge3654~0#@$ARC~2.75591~3~~M 4667.7135 3282.243 A 1.37795 1.37795 0 1 0 4667.6936 3282.243~~gge3657~0#@$ARC~1.5748~3~~M 4678.7412 3286.9666 A 0.7874 0.7874 0 1 0 4678.7312 3286.9666~~gge3660~0#@$PAD~RECT~4678.1504~3280.9427~5.9055~7.874~1~OPTO3_1~1~0~4682.0876 3277.9902 4682.0876 3283.8958 4674.2135 3283.8958 4674.2135 3277.9902~270~gge3702~0~~Y~0~0~0.2~4678.1504,3280.943#@$PAD~RECT~4678.1504~3270.9427~5.9055~7.874~1~GND~2~0~4682.0876 3267.9902 4682.0876 3273.8958 4674.2135 3273.8958 4674.2135 3267.9902~270~gge3717~0~~Y~0~0~0.2~4678.1504,3270.943#@$PAD~RECT~4641.5364~3270.9427~5.9055~7.874~1~GND~3~0~4645.4735 3267.9902 4645.4735 3273.8958 4637.5994 3273.8958 4637.5994 3267.9902~270~gge3732~0~~Y~0~0~0.2~4641.5364,3270.943#@$PAD~RECT~4641.5364~3280.9427~5.9055~7.874~1~OPTO3_4~4~0~4645.4735 3277.9902 4645.4735 3283.8958 4637.5994 3283.8958 4637.5994 3277.9902~270~gge3747~0~~Y~0~0~0.2~4641.5364,3280.943","LIB~4617.3434~3053.4427~package`CAP-SMD_BD10.0-L10.3-W10.3-LS11.0-R-RD`Contributor`LCSC`link`https:\/\/item.szlcsc.com\/245683.html`3DModel`CAP-SMD_BD10.0-L10.3-W10.3-LS11.3-FD-1`BOM_Supplier`LCSC`BOM_Manufacturer`LELON`BOM_Manufacturer Part`VEJ471M1ETR-1010`nameAlias`Capacitance`BOM_Supplier Part`C176672`BOM_JLCPCB Part Class`Extended Part`spicePre`C`spiceSymbolName`VEJ471M1ETR-1010`~~~gge8284cbe61a77172f~1~90b2120a99344232ac80777fea2a6df1~1661769629~0~~yes~~#@$CIRCLE~4638.997~3033.167~0.118~0.2362~101~gge3780~0~~#@$SOLIDREGION~100~~M 4595.6899 3055.4112 L 4595.6899 3051.4742 L 4608.0914 3051.4742 L 4608.0914 3055.4112 Z ~solid~gge3783~~~~0#@$SOLIDREGION~100~~M 4638.9969 3055.4112 L 4638.9969 3051.4742 L 4626.5954 3051.4742 L 4626.5954 3055.4112 Z ~solid~gge3786~~~~0#@$SOLIDREGION~99~~M 4597.0678 3073.7183 L 4597.0678 3033.1671 L 4629.5088 3033.1671 L 4637.619 3041.2773 L 4637.619 3065.6081 L 4629.5088 3073.7183 Z ~solid~gge3789~~~~0#@$SOLIDREGION~12~~M 4598.2843 3054.051 L 4598.2843 3052.8344 L 4603.1505 3052.8344 L 4603.1505 3054.051 Z ~solid~gge3819~~~~0#@$SOLIDREGION~12~~M 4636.8434 3053.9427 L 4636.8434 3052.7261 L 4631.9772 3052.7261 L 4631.9772 3053.9427 Z ~solid~gge3822~~~~0#@$SOLIDREGION~12~~M 4634.8434 3057.4427 L 4634.8434 3049.3325 L 4633.6268 3049.3325 L 4633.6268 3057.4427 Z ~solid~gge3825~~~~0#@$SVGNODE~{\"gId\":\"gge3828\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"44.4881\",\"c_height\":\"40.5511\",\"c_rotation\":\"0,0,180\",\"z\":\"0\",\"c_origin\":\"4617.3433,3053.4426\",\"uuid\":\"d29802bf36284f43b806dc941f3e4d96\",\"c_etype\":\"outline3D\",\"title\":\"CAP-SMD_BD10.0-L10.3-W10.3-LS11.3-FD-1\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge3828\"},\"childNodes\":[{\"gId\":\"gge3831\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4639.5874 3055.0175 4639.5874 3051.8679 4637.6189 3051.8679 4637.6189 3051.2773 4637.6189 3049.5057 4637.6189 3042.4585 4637.5401 3041.9467 4637.3433 3041.4742 4637.0283 3041.0411 4629.7449 3033.7577 4629.3118 3033.4427 4628.8393 3033.2459 4628.3275 3033.1671 4621.2803 3033.1671 4618.052 3033.1671 4613.4063 3033.1671 4599.0363 3033.1671 4598.5244 3033.2459 4598.052 3033.4427 4597.6583 3033.7577 4597.3433 3034.1514 4597.1465 3034.6238 4597.0678 3035.1356 4597.0678 3049.5057 4597.0678 3051.2773 4597.0678 3051.8679 4595.0993 3051.8679 4595.0993 3055.0175 4597.0678 3055.0175 4597.0678 3055.608 4597.0678 3057.3797 4597.0678 3071.7497 4597.1465 3072.2616 4597.3433 3072.734 4597.6583 3073.1277 4598.052 3073.4427 4598.5244 3073.6395 4599.0363 3073.7182 4613.4063 3073.7182 4618.052 3073.7182 4621.2803 3073.7182 4628.3275 3073.7182 4628.8393 3073.6395 4629.3118 3073.4427 4629.7449 3073.1277 4637.0283 3065.8442 4637.3433 3065.4112 4637.5401 3064.9387 4637.6189 3064.4269 4637.6189 3057.3797 4637.6189 3055.608 4637.6189 3055.0175 4639.5874 3055.0175 4639.5874 3055.0175\",\"id\":\"gge3831\"}}]}#@$TEXT~N~4617.343~3024.443~0.6~0~0~3~~4.5~470uF~M 4619.3934 3019.9027 L 4617.3434 3022.7627 L 4620.4134 3022.7627 M 4619.3934 3019.9027 L 4619.3934 3024.1927 M 4624.6234 3019.9027 L 4622.5834 3024.1927 M 4621.7634 3019.9027 L 4624.6234 3019.9027 M 4627.2034 3019.9027 L 4626.5934 3020.1027 L 4626.1834 3020.7227 L 4625.9734 3021.7427 L 4625.9734 3022.3527 L 4626.1834 3023.3827 L 4626.5934 3023.9927 L 4627.2034 3024.1927 L 4627.6134 3024.1927 L 4628.2234 3023.9927 L 4628.6334 3023.3827 L 4628.8434 3022.3527 L 4628.8434 3021.7427 L 4628.6334 3020.7227 L 4628.2234 3020.1027 L 4627.6134 3019.9027 L 4627.2034 3019.9027 M 4630.1934 3021.3327 L 4630.1934 3023.3827 L 4630.3934 3023.9927 L 4630.8034 3024.1927 L 4631.4134 3024.1927 L 4631.8234 3023.9927 L 4632.4434 3023.3827 M 4632.4434 3021.3327 L 4632.4434 3024.1927 M 4633.7934 3019.9027 L 4633.7934 3024.1927 M 4633.7934 3019.9027 L 4636.4434 3019.9027 M 4633.7934 3021.9427 L 4635.4234 3021.9427~none~gge3768~~0~#@$TEXT~P~4602.843~3041.943~0.6~0~0~3~~4.5~PSU_C1~M 4602.8434 3037.4027 L 4602.8434 3041.6927 M 4602.8434 3037.4027 L 4604.6834 3037.4027 L 4605.2934 3037.6027 L 4605.5034 3037.8127 L 4605.7034 3038.2227 L 4605.7034 3038.8327 L 4605.5034 3039.2427 L 4605.2934 3039.4427 L 4604.6834 3039.6527 L 4602.8434 3039.6527 M 4609.9234 3038.0127 L 4609.5134 3037.6027 L 4608.8934 3037.4027 L 4608.0834 3037.4027 L 4607.4634 3037.6027 L 4607.0534 3038.0127 L 4607.0534 3038.4227 L 4607.2634 3038.8327 L 4607.4634 3039.0427 L 4607.8734 3039.2427 L 4609.1034 3039.6527 L 4609.5134 3039.8527 L 4609.7134 3040.0627 L 4609.9234 3040.4727 L 4609.9234 3041.0827 L 4609.5134 3041.4927 L 4608.8934 3041.6927 L 4608.0834 3041.6927 L 4607.4634 3041.4927 L 4607.0534 3041.0827 M 4611.2734 3037.4027 L 4611.2734 3040.4727 L 4611.4734 3041.0827 L 4611.8834 3041.4927 L 4612.4934 3041.6927 L 4612.9034 3041.6927 L 4613.5234 3041.4927 L 4613.9334 3041.0827 L 4614.1334 3040.4727 L 4614.1334 3037.4027 M 4615.4834 3043.1327 L 4619.1634 3043.1327 M 4623.5834 3038.4227 L 4623.3834 3038.0127 L 4622.9734 3037.6027 L 4622.5634 3037.4027 L 4621.7434 3037.4027 L 4621.3334 3037.6027 L 4620.9234 3038.0127 L 4620.7234 3038.4227 L 4620.5134 3039.0427 L 4620.5134 3040.0627 L 4620.7234 3040.6727 L 4620.9234 3041.0827 L 4621.3334 3041.4927 L 4621.7434 3041.6927 L 4622.5634 3041.6927 L 4622.9734 3041.4927 L 4623.3834 3041.0827 L 4623.5834 3040.6727 M 4624.9334 3038.2227 L 4625.3434 3038.0127 L 4625.9534 3037.4027 L 4625.9534 3041.6927~~gge3774~~0~#@$TRACK~0.5984~3~~4637.9191 3049.1902 4637.9191 3041.2774~gge3792~0#@$TRACK~0.5984~3~~4637.9191 3065.608 4637.9191 3057.6952~gge3795~0#@$TRACK~0.5984~3~~4596.7677 3057.6952 4596.7677 3074.0184~gge3798~0#@$TRACK~0.5984~3~~4596.7677 3032.867 4596.7677 3049.1902~gge3801~0#@$TRACK~0.6~3~~4596.7677 3074.0184 4629.5087 3074.0184 4637.9191 3065.608~gge3804~0#@$TRACK~0.6~3~~4596.7677 3032.867 4629.5087 3032.867 4637.9191 3041.2774~gge3807~0#@$SOLIDREGION~3~~M 4598.2843 3044.7242 L 4598.2843 3043.5077 L 4603.1505 3043.5077 L 4603.1505 3044.7242 Z ~solid~gge3810~~~~0#@$SOLIDREGION~3~~M 4636.4025 3044.7242 L 4636.4025 3043.5077 L 4631.5363 3043.5077 L 4631.5363 3044.7242 Z ~solid~gge3813~~~~0#@$SOLIDREGION~3~~M 4634.5777 3048.171 L 4634.5777 3040.0608 L 4633.3611 3040.0608 L 4633.3611 3048.171 Z ~solid~gge3816~~~~0#@$PAD~RECT~4634.647~3053.443~18.8976~7.0866~1~PSU_D1_2~1~0~4644.0956 3056.986 4625.198 3056.986 4625.198 3049.8994 4644.0956 3049.8994~180~gge3834~0~~Y~0~0.0000~0.2000~4634.6465,3053.4427#@$PAD~RECT~4600.04~3053.443~18.8976~7.0866~1~GND~2~0~4609.4888 3056.986 4590.5912 3056.986 4590.5912 3049.8994 4609.4888 3049.8994~180~gge3849~0~~Y~0~0.0000~0.2000~4600.0403,3053.4427","LIB~4582.8434~3092.4427~package`CAP-SMD_BD6.3-L6.6-W6.6-LS7.2-R-RD`Contributor`LCSC`link`https:\/\/item.szlcsc.com\/265679.html`3DModel`CAP-SMD_L6.6-W6.6-H7.0-LS7.2`BOM_Supplier`LCSC`BOM_Manufacturer`LELON`BOM_Manufacturer Part`VE-471M0JTR-0607`nameAlias`Capacitance`BOM_Supplier Part`C134738`BOM_JLCPCB Part Class`Extended Part`spicePre`C`spiceSymbolName`VE-471M0JTR-0607`~270~~gge61ba1518df76ce78~1~e1fd29b57d5e4b95a31cad5a0b7220fb~1654688998~0~~yes~~#@$SOLIDREGION~12~~M 4582.4536 3080.1711 L 4583.2332 3080.1711 L 4583.2332 3083.2892 L 4582.4536 3083.2892 Z ~solid~gge3882~~~~0#@$SOLIDREGION~12~~M 4582.4536 3104.5963 L 4583.2332 3104.5963 L 4583.2332 3101.4782 L 4582.4536 3101.4782 Z ~solid~gge3885~~~~0#@$SOLIDREGION~12~~M 4580.245 3103.427 L 4585.4418 3103.427 L 4585.4418 3102.6475 L 4580.245 3102.6475 Z ~solid~gge3888~~~~0#@$SOLIDREGION~100~~M 4581.5639 3078.2105 L 4584.1229 3078.2105 L 4584.1229 3088.4467 L 4581.5639 3088.4467 Z ~solid~gge3891~~~~0#@$SOLIDREGION~100~~M 4581.5639 3106.5569 L 4584.1229 3106.5569 L 4584.1229 3096.3207 L 4581.5639 3096.3207 Z ~solid~gge3894~~~~0#@$SOLIDREGION~99~~M 4569.8513 3079.3916 L 4595.8355 3079.3916 L 4595.8355 3100.179 L 4590.6387 3105.3758 L 4575.0481 3105.3758 L 4569.8513 3100.179 Z ~solid~gge3897~~~~0#@$CIRCLE~4595.835~3106.557~0.118~0.2362~101~gge3915~0~~#@$SVGNODE~{\"gId\":\"gge3918\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"25.9842\",\"c_height\":\"27.559\",\"c_rotation\":\"0,0,180\",\"z\":\"0\",\"c_origin\":\"4582.8433,3092.3837\",\"uuid\":\"a1e9bad501314ce084e59ae2bd910783\",\"c_etype\":\"outline3D\",\"title\":\"CAP-SMD_L6.6-W6.6-H7.0-LS7.2\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge3918\"},\"childNodes\":[{\"gId\":\"gge3921\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4595.8355 3099.4703 4595.8355 3095.927 4595.8355 3091.8719 4595.8355 3088.8404 4595.8355 3079.3916 4586.1899 3079.3916 4584.1032 3079.3916 4584.1032 3078.6042 4581.5442 3078.6042 4581.5442 3079.3916 4579.497 3079.3916 4569.8513 3079.3916 4569.8513 3088.8404 4569.8513 3091.8719 4569.8513 3095.927 4569.8513 3099.4703 4575.7568 3105.3758 4579.497 3105.3758 4581.5442 3105.3758 4581.5442 3106.1632 4584.1032 3106.1632 4584.1032 3105.3758 4586.1899 3105.3758 4589.93 3105.3758 4595.8355 3099.4703 4595.8355 3099.4703\",\"id\":\"gge3921\"}}]}#@$TEXT~N~4609.633~3111.484~0.6~90~0~3~~4.5~470uF~M 4605.0934 3109.4336 L 4607.9534 3111.4836 L 4607.9534 3108.4136 M 4605.0934 3109.4336 L 4609.3834 3109.4336 M 4605.0934 3104.2036 L 4609.3834 3106.2436 M 4605.0934 3107.0636 L 4605.0934 3104.2036 M 4605.0934 3101.6236 L 4605.2934 3102.2336 L 4605.9134 3102.6436 L 4606.9334 3102.8536 L 4607.5434 3102.8536 L 4608.5734 3102.6436 L 4609.1834 3102.2336 L 4609.3834 3101.6236 L 4609.3834 3101.2136 L 4609.1834 3100.6036 L 4608.5734 3100.1936 L 4607.5434 3099.9836 L 4606.9334 3099.9836 L 4605.9134 3100.1936 L 4605.2934 3100.6036 L 4605.0934 3101.2136 L 4605.0934 3101.6236 M 4606.5234 3098.6336 L 4608.5734 3098.6336 L 4609.1834 3098.4336 L 4609.3834 3098.0236 L 4609.3834 3097.4136 L 4609.1834 3097.0036 L 4608.5734 3096.3836 M 4606.5234 3096.3836 L 4609.3834 3096.3836 M 4605.0934 3095.0336 L 4609.3834 3095.0336 M 4605.0934 3095.0336 L 4605.0934 3092.3836 M 4607.1334 3095.0336 L 4607.1334 3093.4036~none~gge3870~~0~#@$TEXT~P~4570.343~3093.943~0.6~0~0~3~~4.5~PSU_C2~M 4570.3434 3089.4027 L 4570.3434 3093.6927 M 4570.3434 3089.4027 L 4572.1834 3089.4027 L 4572.7934 3089.6027 L 4573.0034 3089.8127 L 4573.2034 3090.2227 L 4573.2034 3090.8327 L 4573.0034 3091.2427 L 4572.7934 3091.4427 L 4572.1834 3091.6527 L 4570.3434 3091.6527 M 4577.4234 3090.0127 L 4577.0134 3089.6027 L 4576.3934 3089.4027 L 4575.5834 3089.4027 L 4574.9634 3089.6027 L 4574.5534 3090.0127 L 4574.5534 3090.4227 L 4574.7634 3090.8327 L 4574.9634 3091.0427 L 4575.3734 3091.2427 L 4576.6034 3091.6527 L 4577.0134 3091.8527 L 4577.2134 3092.0627 L 4577.4234 3092.4727 L 4577.4234 3093.0827 L 4577.0134 3093.4927 L 4576.3934 3093.6927 L 4575.5834 3093.6927 L 4574.9634 3093.4927 L 4574.5534 3093.0827 M 4578.7734 3089.4027 L 4578.7734 3092.4727 L 4578.9734 3093.0827 L 4579.3834 3093.4927 L 4579.9934 3093.6927 L 4580.4034 3093.6927 L 4581.0234 3093.4927 L 4581.4334 3093.0827 L 4581.6334 3092.4727 L 4581.6334 3089.4027 M 4582.9834 3095.1327 L 4586.6634 3095.1327 M 4591.0834 3090.4227 L 4590.8834 3090.0127 L 4590.4734 3089.6027 L 4590.0634 3089.4027 L 4589.2434 3089.4027 L 4588.8334 3089.6027 L 4588.4234 3090.0127 L 4588.2234 3090.4227 L 4588.0134 3091.0427 L 4588.0134 3092.0627 L 4588.2234 3092.6727 L 4588.4234 3093.0827 L 4588.8334 3093.4927 L 4589.2434 3093.6927 L 4590.0634 3093.6927 L 4590.4734 3093.4927 L 4590.8834 3093.0827 L 4591.0834 3092.6727 M 4592.6434 3090.4227 L 4592.6434 3090.2227 L 4592.8434 3089.8127 L 4593.0434 3089.6027 L 4593.4534 3089.4027 L 4594.2734 3089.4027 L 4594.6834 3089.6027 L 4594.8934 3089.8127 L 4595.0934 3090.2227 L 4595.0934 3090.6327 L 4594.8934 3091.0427 L 4594.4834 3091.6527 L 4592.4334 3093.6927 L 4595.2934 3093.6927~~gge3876~~0~#@$TRACK~0.6~3~~4585.2348 3079.0917 4596.1354 3079.0917 4596.1354 3100.1791 4590.6388 3105.6757 4585.2348 3105.6757~gge3900~0#@$TRACK~0.6~3~~4580.452 3079.0917 4569.5514 3079.0917 4569.5514 3100.1791 4575.048 3105.6757 4580.452 3105.6757~gge3903~0#@$SOLIDREGION~3~~M 4588.43 3080.1711 L 4589.2095 3080.1711 L 4589.2095 3083.2892 L 4588.43 3083.2892 Z ~solid~gge3906~~~~0#@$SOLIDREGION~3~~M 4588.43 3104.5963 L 4589.2095 3104.5963 L 4589.2095 3101.4782 L 4588.43 3101.4782 Z ~solid~gge3909~~~~0#@$SOLIDREGION~3~~M 4586.2214 3103.427 L 4591.4182 3103.427 L 4591.4182 3102.6475 L 4586.2214 3102.6475 Z ~solid~gge3912~~~~0#@$PAD~RECT~4582.843~3102.502~12.8346~4.5276~1~+5V~1~0~4580.5796 3108.919 4580.5796 3096.0844 4585.1072 3096.0844 4585.1072 3108.919~90~gge3924~0~~Y~0~0.0000~0.2000~4582.8434,3102.5018#@$PAD~RECT~4582.843~3082.384~12.8346~4.5276~1~GND~2~0~4580.5796 3088.801 4580.5796 3075.9664 4585.1072 3075.9664 4585.1072 3088.801~90~gge3939~0~~Y~0~0.0000~0.2000~4582.8434,3082.3836","LIB~4683.8434~3077.9427~package`SMA_L4.4-W2.8-LS5.4-R-RD`Contributor`\u7acb\u521bEDA\u5b98\u65b9\u5c01\u88c5\u5e93`link`https:\/\/item.szlcsc.com\/310096.html`3DModel`SMA_L4.4-W2.8-LS5.4-R-RD`BOM_Supplier`LCSC`BOM_Manufacturer Part`SS54`BOM_Manufacturer`MDD`BOM_Supplier Part`C22452`BOM_JLCPCB Part Class`Basic Part`spicePre`D`spiceSymbolName`SS54_C22452`~270~~ggec9abf9ed454c42a2~1~281331a006ef4c05b8ec457a626c4c60~1626052491~0~~yes~~#@$CIRCLE~4678.804~3066.919~0.118~0.2362~101~gge4062~0~~#@$SOLIDREGION~12~~M 4683.4654 3068.5805 L 4684.2214 3068.5805 L 4684.2214 3071.6041 L 4683.4654 3071.6041 Z ~solid~gge4065~~~~0#@$SOLIDREGION~12~~M 4683.4654 3087.3049 L 4684.2214 3087.3049 L 4684.2214 3084.2813 L 4683.4654 3084.2813 Z ~solid~gge4068~~~~0#@$SOLIDREGION~12~~M 4681.3237 3086.171 L 4686.3631 3086.171 L 4686.3631 3085.4151 L 4681.3237 3085.4151 Z ~solid~gge4071~~~~0#@$SOLIDREGION~100~~M 4681.0383 3066.9191 L 4686.6485 3066.9191 L 4686.6485 3071.4663 L 4681.0383 3071.4663 Z ~solid~gge4074~~~~0#@$SOLIDREGION~100~~M 4681.0383 3088.9663 L 4686.6485 3088.9663 L 4686.6485 3084.4191 L 4681.0383 3084.4191 Z ~solid~gge4077~~~~0#@$SOLIDREGION~99~~M 4678.804 3067.8246 L 4688.8828 3067.8246 L 4688.8828 3088.0608 L 4678.804 3088.0608 Z ~solid~gge4080~~~~0#@$SVGNODE~{\"gId\":\"gge4104\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"20.4724\",\"c_height\":\"11.0236\",\"c_rotation\":\"0,0,270\",\"z\":\"0\",\"c_origin\":\"4683.8433,3077.9427\",\"uuid\":\"16f5f0e72b3e4f43a77ecac0b819c7f8\",\"c_etype\":\"outline3D\",\"title\":\"SMA_L4.4-W2.8-LS5.4-R-RD\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge4104\"},\"childNodes\":[{\"gId\":\"gge4107\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4686.7962 3067.7065 4680.8907 3067.7065 4680.8907 3067.7459 4680.8907 3067.8246 4680.8907 3067.9427 4680.8907 3068.1002 4680.8907 3068.2971 4680.8907 3068.4939 4680.8907 3069.2813 4678.5285 3069.2813 4678.4891 3069.2813 4678.4498 3069.3207 4678.4104 3069.3207 4678.371 3069.36 4678.371 3069.3994 4678.3316 3069.4388 4678.3316 3069.4782 4678.3316 3086.4073 4678.3316 3086.4466 4678.371 3086.486 4678.371 3086.5647 4678.4104 3086.5647 4678.4498 3086.5647 4678.4891 3086.6041 4678.5285 3086.6041 4680.8907 3086.6041 4680.8907 3087.3915 4680.8907 3087.5884 4680.8907 3087.7852 4680.8907 3087.9427 4680.8907 3088.0608 4680.8907 3088.1395 4680.8907 3088.1789 4686.7962 3088.1789 4686.7962 3088.1395 4686.7962 3088.0608 4686.7962 3087.9427 4686.7962 3087.7852 4686.7962 3087.5884 4686.7962 3087.3915 4686.7962 3086.6041 4689.1584 3086.6041 4689.1978 3086.6041 4689.2371 3086.5647 4689.2765 3086.5647 4689.3159 3086.5254 4689.3159 3086.486 4689.3552 3086.4466 4689.3552 3086.4073 4689.3552 3069.4782 4689.3552 3069.4388 4689.3159 3069.3994 4689.3159 3069.3207 4689.2765 3069.3207 4689.2371 3069.3207 4689.1978 3069.2813 4689.1584 3069.2813 4686.7962 3069.2813 4686.7962 3068.4939 4686.7962 3068.2971 4686.7962 3068.1002 4686.7962 3067.9427 4686.7962 3067.8246 4686.7962 3067.7459 4686.7962 3067.7065 4686.7962 3067.7065\",\"id\":\"gge4107\"}}]}#@$TEXT~N~4701.193~3124.373~0.6~90~0~3~~4.5~SS54_C22452~M 4697.2635 3121.5129 L 4696.8535 3121.9229 L 4696.6535 3122.5329 L 4696.6535 3123.3529 L 4696.8535 3123.9629 L 4697.2635 3124.3729 L 4697.6735 3124.3729 L 4698.0835 3124.1729 L 4698.2935 3123.9629 L 4698.4935 3123.5529 L 4698.9035 3122.3229 L 4699.1035 3121.9229 L 4699.3135 3121.7129 L 4699.7235 3121.5129 L 4700.3335 3121.5129 L 4700.7435 3121.9229 L 4700.9435 3122.5329 L 4700.9435 3123.3529 L 4700.7435 3123.9629 L 4700.3335 3124.3729 M 4697.2635 3117.2929 L 4696.8535 3117.7029 L 4696.6535 3118.3229 L 4696.6535 3119.1329 L 4696.8535 3119.7529 L 4697.2635 3120.1629 L 4697.6735 3120.1629 L 4698.0835 3119.9529 L 4698.2935 3119.7529 L 4698.4935 3119.3429 L 4698.9035 3118.1129 L 4699.1035 3117.7029 L 4699.3135 3117.5029 L 4699.7235 3117.2929 L 4700.3335 3117.2929 L 4700.7435 3117.7029 L 4700.9435 3118.3229 L 4700.9435 3119.1329 L 4700.7435 3119.7529 L 4700.3335 3120.1629 M 4696.6535 3113.4929 L 4696.6535 3115.5329 L 4698.4935 3115.7429 L 4698.2935 3115.5329 L 4698.0835 3114.9229 L 4698.0835 3114.3129 L 4698.2935 3113.6929 L 4698.6935 3113.2829 L 4699.3135 3113.0829 L 4699.7235 3113.0829 L 4700.3335 3113.2829 L 4700.7435 3113.6929 L 4700.9435 3114.3129 L 4700.9435 3114.9229 L 4700.7435 3115.5329 L 4700.5435 3115.7429 L 4700.1335 3115.9429 M 4696.6535 3109.6829 L 4699.5135 3111.7329 L 4699.5135 3108.6629 M 4696.6535 3109.6829 L 4700.9435 3109.6829 M 4702.3835 3107.3129 L 4702.3835 3103.6329 M 4697.6735 3099.2129 L 4697.2635 3099.4229 L 4696.8535 3099.8229 L 4696.6535 3100.2329 L 4696.6535 3101.0529 L 4696.8535 3101.4629 L 4697.2635 3101.8729 L 4697.6735 3102.0729 L 4698.2935 3102.2829 L 4699.3135 3102.2829 L 4699.9235 3102.0729 L 4700.3335 3101.8729 L 4700.7435 3101.4629 L 4700.9435 3101.0529 L 4700.9435 3100.2329 L 4700.7435 3099.8229 L 4700.3335 3099.4229 L 4699.9235 3099.2129 M 4697.6735 3097.6629 L 4697.4735 3097.6629 L 4697.0635 3097.4529 L 4696.8535 3097.2529 L 4696.6535 3096.8429 L 4696.6535 3096.0229 L 4696.8535 3095.6129 L 4697.0635 3095.4129 L 4697.4735 3095.2029 L 4697.8835 3095.2029 L 4698.2935 3095.4129 L 4698.9035 3095.8229 L 4700.9435 3097.8629 L 4700.9435 3095.0029 M 4697.6735 3093.4429 L 4697.4735 3093.4429 L 4697.0635 3093.2429 L 4696.8535 3093.0329 L 4696.6535 3092.6229 L 4696.6535 3091.8129 L 4696.8535 3091.4029 L 4697.0635 3091.1929 L 4697.4735 3090.9929 L 4697.8835 3090.9929 L 4698.2935 3091.1929 L 4698.9035 3091.6029 L 4700.9435 3093.6529 L 4700.9435 3090.7829 M 4696.6535 3087.3929 L 4699.5135 3089.4329 L 4699.5135 3086.3729 M 4696.6535 3087.3929 L 4700.9435 3087.3929 M 4696.6535 3082.5629 L 4696.6535 3084.6129 L 4698.4935 3084.8129 L 4698.2935 3084.6129 L 4698.0835 3083.9929 L 4698.0835 3083.3829 L 4698.2935 3082.7729 L 4698.6935 3082.3629 L 4699.3135 3082.1529 L 4699.7235 3082.1529 L 4700.3335 3082.3629 L 4700.7435 3082.7729 L 4700.9435 3083.3829 L 4700.9435 3083.9929 L 4700.7435 3084.6129 L 4700.5435 3084.8129 L 4700.1335 3085.0229 M 4697.6735 3080.6029 L 4697.4735 3080.6029 L 4697.0635 3080.3929 L 4696.8535 3080.1929 L 4696.6535 3079.7829 L 4696.6535 3078.9629 L 4696.8535 3078.5529 L 4697.0635 3078.3529 L 4697.4735 3078.1429 L 4697.8835 3078.1429 L 4698.2935 3078.3529 L 4698.9035 3078.7629 L 4700.9435 3080.8029 L 4700.9435 3077.9429~none~gge4050~~0~#@$TEXT~P~4676.343~3090.443~0.6~90~0~3~~4.5~PSU_D1~M 4671.803 3090.443 L 4676.093 3090.443 M 4671.803 3090.443 L 4671.803 3088.603 L 4672.003 3087.993 L 4672.213 3087.783 L 4672.623 3087.583 L 4673.233 3087.583 L 4673.643 3087.783 L 4673.843 3087.993 L 4674.053 3088.603 L 4674.053 3090.443 M 4672.413 3083.363 L 4672.003 3083.773 L 4671.803 3084.393 L 4671.803 3085.203 L 4672.003 3085.823 L 4672.413 3086.233 L 4672.823 3086.233 L 4673.233 3086.023 L 4673.443 3085.823 L 4673.643 3085.413 L 4674.053 3084.183 L 4674.253 3083.773 L 4674.463 3083.573 L 4674.873 3083.363 L 4675.483 3083.363 L 4675.893 3083.773 L 4676.093 3084.393 L 4676.093 3085.203 L 4675.893 3085.823 L 4675.483 3086.233 M 4671.803 3082.013 L 4674.873 3082.013 L 4675.483 3081.813 L 4675.893 3081.403 L 4676.093 3080.793 L 4676.093 3080.383 L 4675.893 3079.763 L 4675.483 3079.353 L 4674.873 3079.153 L 4671.803 3079.153 M 4677.533 3077.803 L 4677.533 3074.123 M 4671.803 3072.773 L 4676.093 3072.773 M 4671.803 3072.773 L 4671.803 3071.343 L 4672.003 3070.723 L 4672.413 3070.313 L 4672.823 3070.113 L 4673.443 3069.903 L 4674.463 3069.903 L 4675.073 3070.113 L 4675.483 3070.313 L 4675.893 3070.723 L 4676.093 3071.343 L 4676.093 3072.773 M 4672.623 3068.553 L 4672.413 3068.143 L 4671.803 3067.533 L 4676.093 3067.533~~gge4056~~0~#@$TRACK~0.6~3~~4689.1828 3067.5246 4689.1828 3088.3608~gge4083~0#@$TRACK~0.6~3~~4678.504 3067.5246 4678.504 3088.3608~gge4086~0#@$TRACK~0.6~3~~4689.1828 3072.9455 4678.504 3072.9455~gge4089~0#@$TRACK~0.6~3~~4689.1828 3088.3608 4687.6729 3088.3608~gge4092~0#@$TRACK~0.6~3~~4678.504 3088.3608 4680.0139 3088.3608~gge4095~0#@$SOLIDREGION~3~~M 4689.4828 3067.8246 L 4687.4729 3067.8246 L 4687.4729 3066.0246 L 4689.4828 3066.0246 Z ~solid~gge4098~~~~0#@$SOLIDREGION~3~~M 4678.204 3067.8246 L 4680.2139 3067.8246 L 4680.2139 3066.0246 L 4678.204 3066.0246 Z ~solid~gge4101~~~~0#@$PAD~RECT~4683.843~3087.8~8.1201~6.0591~1~+12V~1~0~4680.8139 3083.7399 4686.8729 3083.7399 4686.8729 3091.86 4680.8139 3091.86~270~gge4110~0~~Y~0~0.0000~0.2000~4683.8434,3087.8#@$PAD~RECT~4683.843~3068.085~8.1201~6.0591~1~PSU_D1_2~2~0~4680.8139 3072.1455 4686.8729 3072.1455 4686.8729 3064.0254 4680.8139 3064.0254~270~gge4125~0~~Y~0~0.0000~0.2000~4683.8434,3068.0854","LIB~4574.8434~3051.4427~package`SMA_L4.4-W2.8-LS5.4-R-RD`Contributor`\u7acb\u521bEDA\u5b98\u65b9\u5c01\u88c5\u5e93`link`https:\/\/item.szlcsc.com\/310096.html`3DModel`SMA_L4.4-W2.8-LS5.4-R-RD`BOM_Supplier`LCSC`BOM_Manufacturer Part`SS54`BOM_Manufacturer`MDD`BOM_Supplier Part`C22452`BOM_JLCPCB Part Class`Basic Part`spicePre`D`spiceSymbolName`SS54_C22452`~90~~ggebeb58e6e19735f0c~1~281331a006ef4c05b8ec457a626c4c60~1626052491~0~~yes~~#@$CIRCLE~4579.882~3062.467~0.118~0.2362~101~gge4158~0~~#@$SOLIDREGION~12~~M 4575.2214 3060.8049 L 4574.4654 3060.8049 L 4574.4654 3057.7813 L 4575.2214 3057.7813 Z ~solid~gge4161~~~~0#@$SOLIDREGION~12~~M 4575.2214 3042.0805 L 4574.4654 3042.0805 L 4574.4654 3045.1041 L 4575.2214 3045.1041 Z ~solid~gge4164~~~~0#@$SOLIDREGION~12~~M 4577.3631 3043.2144 L 4572.3237 3043.2144 L 4572.3237 3043.9703 L 4577.3631 3043.9703 Z ~solid~gge4167~~~~0#@$SOLIDREGION~100~~M 4577.6485 3062.4663 L 4572.0383 3062.4663 L 4572.0383 3057.9191 L 4577.6485 3057.9191 Z ~solid~gge4170~~~~0#@$SOLIDREGION~100~~M 4577.6485 3040.4191 L 4572.0383 3040.4191 L 4572.0383 3044.9663 L 4577.6485 3044.9663 Z ~solid~gge4173~~~~0#@$SOLIDREGION~99~~M 4579.8828 3061.5608 L 4569.804 3061.5608 L 4569.804 3041.3246 L 4579.8828 3041.3246 Z ~solid~gge4176~~~~0#@$SVGNODE~{\"gId\":\"gge4200\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"20.4724\",\"c_height\":\"11.0236\",\"c_rotation\":\"0,0,90\",\"z\":\"0\",\"c_origin\":\"4574.8433,3051.4427\",\"uuid\":\"16f5f0e72b3e4f43a77ecac0b819c7f8\",\"c_etype\":\"outline3D\",\"title\":\"SMA_L4.4-W2.8-LS5.4-R-RD\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge4200\"},\"childNodes\":[{\"gId\":\"gge4203\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4571.8906 3061.6789 4577.7961 3061.6789 4577.7961 3061.6395 4577.7961 3061.5608 4577.7961 3061.4427 4577.7961 3061.2852 4577.7961 3061.0883 4577.7961 3060.8915 4577.7961 3060.1041 4580.1583 3060.1041 4580.1977 3060.1041 4580.237 3060.0647 4580.2764 3060.0647 4580.3158 3060.0254 4580.3158 3059.986 4580.3552 3059.9466 4580.3552 3059.9072 4580.3552 3042.9781 4580.3552 3042.9388 4580.3158 3042.8994 4580.3158 3042.8207 4580.2764 3042.8207 4580.237 3042.8207 4580.1977 3042.7813 4580.1583 3042.7813 4577.7961 3042.7813 4577.7961 3041.9939 4577.7961 3041.797 4577.7961 3041.6002 4577.7961 3041.4427 4577.7961 3041.3246 4577.7961 3041.2459 4577.7961 3041.2065 4571.8906 3041.2065 4571.8906 3041.2459 4571.8906 3041.3246 4571.8906 3041.4427 4571.8906 3041.6002 4571.8906 3041.797 4571.8906 3041.9939 4571.8906 3042.7813 4569.5284 3042.7813 4569.489 3042.7813 4569.4497 3042.8207 4569.4103 3042.8207 4569.3709 3042.86 4569.3709 3042.8994 4569.3316 3042.9388 4569.3316 3042.9781 4569.3316 3059.9072 4569.3316 3059.9466 4569.3709 3059.986 4569.3709 3060.0647 4569.4103 3060.0647 4569.4497 3060.0647 4569.489 3060.1041 4569.5284 3060.1041 4571.8906 3060.1041 4571.8906 3060.8915 4571.8906 3061.0883 4571.8906 3061.2852 4571.8906 3061.4427 4571.8906 3061.5608 4571.8906 3061.6395 4571.8906 3061.6789 4571.8906 3061.6789\",\"id\":\"gge4203\"}}]}#@$TEXT~N~4560.843~3051.443~0.6~90~0~3~~4.5~SS54_C22452~M 4556.9134 3048.5827 L 4556.5034 3048.9927 L 4556.3034 3049.6027 L 4556.3034 3050.4227 L 4556.5034 3051.0327 L 4556.9134 3051.4427 L 4557.3234 3051.4427 L 4557.7334 3051.2427 L 4557.9434 3051.0327 L 4558.1434 3050.6227 L 4558.5534 3049.3927 L 4558.7534 3048.9927 L 4558.9634 3048.7827 L 4559.3734 3048.5827 L 4559.9834 3048.5827 L 4560.3934 3048.9927 L 4560.5934 3049.6027 L 4560.5934 3050.4227 L 4560.3934 3051.0327 L 4559.9834 3051.4427 M 4556.9134 3044.3627 L 4556.5034 3044.7727 L 4556.3034 3045.3927 L 4556.3034 3046.2027 L 4556.5034 3046.8227 L 4556.9134 3047.2327 L 4557.3234 3047.2327 L 4557.7334 3047.0227 L 4557.9434 3046.8227 L 4558.1434 3046.4127 L 4558.5534 3045.1827 L 4558.7534 3044.7727 L 4558.9634 3044.5727 L 4559.3734 3044.3627 L 4559.9834 3044.3627 L 4560.3934 3044.7727 L 4560.5934 3045.3927 L 4560.5934 3046.2027 L 4560.3934 3046.8227 L 4559.9834 3047.2327 M 4556.3034 3040.5627 L 4556.3034 3042.6027 L 4558.1434 3042.8127 L 4557.9434 3042.6027 L 4557.7334 3041.9927 L 4557.7334 3041.3827 L 4557.9434 3040.7627 L 4558.3434 3040.3527 L 4558.9634 3040.1527 L 4559.3734 3040.1527 L 4559.9834 3040.3527 L 4560.3934 3040.7627 L 4560.5934 3041.3827 L 4560.5934 3041.9927 L 4560.3934 3042.6027 L 4560.1934 3042.8127 L 4559.7834 3043.0127 M 4556.3034 3036.7527 L 4559.1634 3038.8027 L 4559.1634 3035.7327 M 4556.3034 3036.7527 L 4560.5934 3036.7527 M 4562.0334 3034.3827 L 4562.0334 3030.7027 M 4557.3234 3026.2827 L 4556.9134 3026.4927 L 4556.5034 3026.8927 L 4556.3034 3027.3027 L 4556.3034 3028.1227 L 4556.5034 3028.5327 L 4556.9134 3028.9427 L 4557.3234 3029.1427 L 4557.9434 3029.3527 L 4558.9634 3029.3527 L 4559.5734 3029.1427 L 4559.9834 3028.9427 L 4560.3934 3028.5327 L 4560.5934 3028.1227 L 4560.5934 3027.3027 L 4560.3934 3026.8927 L 4559.9834 3026.4927 L 4559.5734 3026.2827 M 4557.3234 3024.7327 L 4557.1234 3024.7327 L 4556.7134 3024.5227 L 4556.5034 3024.3227 L 4556.3034 3023.9127 L 4556.3034 3023.0927 L 4556.5034 3022.6827 L 4556.7134 3022.4827 L 4557.1234 3022.2727 L 4557.5334 3022.2727 L 4557.9434 3022.4827 L 4558.5534 3022.8927 L 4560.5934 3024.9327 L 4560.5934 3022.0727 M 4557.3234 3020.5127 L 4557.1234 3020.5127 L 4556.7134 3020.3127 L 4556.5034 3020.1027 L 4556.3034 3019.6927 L 4556.3034 3018.8827 L 4556.5034 3018.4727 L 4556.7134 3018.2627 L 4557.1234 3018.0627 L 4557.5334 3018.0627 L 4557.9434 3018.2627 L 4558.5534 3018.6727 L 4560.5934 3020.7227 L 4560.5934 3017.8527 M 4556.3034 3014.4627 L 4559.1634 3016.5027 L 4559.1634 3013.4427 M 4556.3034 3014.4627 L 4560.5934 3014.4627 M 4556.3034 3009.6327 L 4556.3034 3011.6827 L 4558.1434 3011.8827 L 4557.9434 3011.6827 L 4557.7334 3011.0627 L 4557.7334 3010.4527 L 4557.9434 3009.8427 L 4558.3434 3009.4327 L 4558.9634 3009.2227 L 4559.3734 3009.2227 L 4559.9834 3009.4327 L 4560.3934 3009.8427 L 4560.5934 3010.4527 L 4560.5934 3011.0627 L 4560.3934 3011.6827 L 4560.1934 3011.8827 L 4559.7834 3012.0927 M 4557.3234 3007.6727 L 4557.1234 3007.6727 L 4556.7134 3007.4627 L 4556.5034 3007.2627 L 4556.3034 3006.8527 L 4556.3034 3006.0327 L 4556.5034 3005.6227 L 4556.7134 3005.4227 L 4557.1234 3005.2127 L 4557.5334 3005.2127 L 4557.9434 3005.4227 L 4558.5534 3005.8327 L 4560.5934 3007.8727 L 4560.5934 3005.0127~none~gge4146~~0~#@$TEXT~P~4583.667~3040.647~0.6~270~0~3~~4.5~PSU_D2~M 4588.2074 3040.6467 L 4583.9174 3040.6467 M 4588.2074 3040.6467 L 4588.2074 3042.4867 L 4588.0074 3043.0967 L 4587.7974 3043.3067 L 4587.3874 3043.5067 L 4586.7774 3043.5067 L 4586.3674 3043.3067 L 4586.1674 3043.0967 L 4585.9574 3042.4867 L 4585.9574 3040.6467 M 4587.5974 3047.7267 L 4588.0074 3047.3167 L 4588.2074 3046.6967 L 4588.2074 3045.8867 L 4588.0074 3045.2667 L 4587.5974 3044.8567 L 4587.1874 3044.8567 L 4586.7774 3045.0667 L 4586.5674 3045.2667 L 4586.3674 3045.6767 L 4585.9574 3046.9067 L 4585.7574 3047.3167 L 4585.5474 3047.5167 L 4585.1374 3047.7267 L 4584.5274 3047.7267 L 4584.1174 3047.3167 L 4583.9174 3046.6967 L 4583.9174 3045.8867 L 4584.1174 3045.2667 L 4584.5274 3044.8567 M 4588.2074 3049.0767 L 4585.1374 3049.0767 L 4584.5274 3049.2767 L 4584.1174 3049.6867 L 4583.9174 3050.2967 L 4583.9174 3050.7067 L 4584.1174 3051.3267 L 4584.5274 3051.7367 L 4585.1374 3051.9367 L 4588.2074 3051.9367 M 4582.4774 3053.2867 L 4582.4774 3056.9667 M 4588.2074 3058.3167 L 4583.9174 3058.3167 M 4588.2074 3058.3167 L 4588.2074 3059.7467 L 4588.0074 3060.3667 L 4587.5974 3060.7767 L 4587.1874 3060.9767 L 4586.5674 3061.1867 L 4585.5474 3061.1867 L 4584.9374 3060.9767 L 4584.5274 3060.7767 L 4584.1174 3060.3667 L 4583.9174 3059.7467 L 4583.9174 3058.3167 M 4587.1874 3062.7367 L 4587.3874 3062.7367 L 4587.7974 3062.9467 L 4588.0074 3063.1467 L 4588.2074 3063.5567 L 4588.2074 3064.3767 L 4588.0074 3064.7867 L 4587.7974 3064.9867 L 4587.3874 3065.1967 L 4586.9774 3065.1967 L 4586.5674 3064.9867 L 4585.9574 3064.5767 L 4583.9174 3062.5367 L 4583.9174 3065.3967~~gge4152~~0~#@$TRACK~0.6~3~~4569.504 3061.8608 4569.504 3041.0246~gge4179~0#@$TRACK~0.6~3~~4580.1828 3061.8608 4580.1828 3041.0246~gge4182~0#@$TRACK~0.6~3~~4569.504 3056.4399 4580.1828 3056.4399~gge4185~0#@$TRACK~0.6~3~~4569.504 3041.0246 4571.0139 3041.0246~gge4188~0#@$TRACK~0.6~3~~4580.1828 3041.0246 4578.6729 3041.0246~gge4191~0#@$SOLIDREGION~3~~M 4569.204 3061.5608 L 4571.2139 3061.5608 L 4571.2139 3063.3608 L 4569.204 3063.3608 Z ~solid~gge4194~~~~0#@$SOLIDREGION~3~~M 4580.4828 3061.5608 L 4578.4729 3061.5608 L 4578.4729 3063.3608 L 4580.4828 3063.3608 Z ~solid~gge4197~~~~0#@$PAD~RECT~4574.843~3041.585~8.1201~6.0591~1~GND~1~0~4577.8729 3045.6455 4571.8139 3045.6455 4571.8139 3037.5254 4577.8729 3037.5254~90~gge4206~0~~Y~0~0.0000~0.2000~4574.8434,3041.5854#@$PAD~RECT~4574.843~3061.3~8.1201~6.0591~1~PSU_D2_2~2~0~4577.8729 3057.2399 4571.8139 3057.2399 4571.8139 3065.36 4577.8729 3065.36~90~gge4221~0~~Y~0~0.0000~0.2000~4574.8434,3061.3","LIB~4673.542~3108.54~package`SOIC-8_L5.0-W4.0-P1.27-LS6.0-BL`Contributor`lcsc`link`https:\/\/item.szlcsc.com\/417287.html`3DModel`SOIC-8_L4.9-W3.9-H1.7-LS6.0-P1.27`BOM_Supplier`LCSC`BOM_Manufacturer`XLSEMI`BOM_Manufacturer Part`XL1509-5.0E1`BOM_Supplier Part`C61063`BOM_JLCPCB Part Class`Basic Part`spicePre`U`spiceSymbolName`XL1509-5.0E1`~270~~gge9a0b354258b0a1dd~1~71450838f2174409b429143f6acc9d2a~1638414056~0~~yes~~#@$CIRCLE~4661.731~3099.012~0.118~0.2362~101~gge4326~0~~#@$CIRCLE~4660.156~3101.04~0.591~1.1811~12~gge4329~0~~#@$SOLIDREGION~100~~M 4681.1798 3115.2329 L 4682.105 3115.2329 L 4682.105 3116.8471 L 4681.1798 3116.8471 Z~cutout~gge4332~~~~0#@$SOLIDREGION~100~~M 4682.0656 3115.2329 L 4685.353 3115.2329 L 4685.353 3116.8471 L 4682.0656 3116.8471 Z~solid~gge4335~~~~0#@$SOLIDREGION~100~~M 4681.1798 3110.2329 L 4682.105 3110.2329 L 4682.105 3111.8471 L 4681.1798 3111.8471 Z~cutout~gge4338~~~~0#@$SOLIDREGION~100~~M 4682.0656 3110.2329 L 4685.353 3110.2329 L 4685.353 3111.8471 L 4682.0656 3111.8471 Z~solid~gge4341~~~~0#@$SOLIDREGION~100~~M 4681.1798 3105.2329 L 4682.105 3105.2329 L 4682.105 3106.8471 L 4681.1798 3106.8471 Z~cutout~gge4344~~~~0#@$SOLIDREGION~100~~M 4682.0656 3105.2329 L 4685.353 3105.2329 L 4685.353 3106.8471 L 4682.0656 3106.8471 Z~solid~gge4347~~~~0#@$SOLIDREGION~100~~M 4681.1798 3100.2329 L 4682.105 3100.2329 L 4682.105 3101.8471 L 4681.1798 3101.8471 Z~cutout~gge4350~~~~0#@$SOLIDREGION~100~~M 4682.0656 3100.2329 L 4685.353 3100.2329 L 4685.353 3101.8471 L 4682.0656 3101.8471 Z~solid~gge4353~~~~0#@$SOLIDREGION~100~~M 4664.979 3115.2329 L 4665.9042 3115.2329 L 4665.9042 3116.8471 L 4664.979 3116.8471 Z~cutout~gge4356~~~~0#@$SOLIDREGION~100~~M 4661.731 3115.2329 L 4665.0184 3115.2329 L 4665.0184 3116.8471 L 4661.731 3116.8471 Z~solid~gge4359~~~~0#@$SOLIDREGION~100~~M 4664.979 3110.2329 L 4665.9042 3110.2329 L 4665.9042 3111.8471 L 4664.979 3111.8471 Z~cutout~gge4362~~~~0#@$SOLIDREGION~100~~M 4661.731 3110.2329 L 4665.0184 3110.2329 L 4665.0184 3111.8471 L 4661.731 3111.8471 Z~solid~gge4365~~~~0#@$SOLIDREGION~100~~M 4664.979 3105.2329 L 4665.9042 3105.2329 L 4665.9042 3106.8471 L 4664.979 3106.8471 Z~cutout~gge4368~~~~0#@$SOLIDREGION~100~~M 4661.731 3105.2329 L 4665.0184 3105.2329 L 4665.0184 3106.8471 L 4661.731 3106.8471 Z~solid~gge4371~~~~0#@$SOLIDREGION~100~~M 4664.979 3100.2329 L 4665.9042 3100.2329 L 4665.9042 3101.8471 L 4664.979 3101.8471 Z~cutout~gge4374~~~~0#@$SOLIDREGION~100~~M 4661.731 3100.2329 L 4665.0184 3100.2329 L 4665.0184 3101.8471 L 4661.731 3101.8471 Z~solid~gge4377~~~~0#@$SOLIDREGION~99~~M 4665.668 3098.6975 L 4681.416 3098.6975 L 4681.416 3118.3825 L 4665.668 3118.3825 Z~solid~gge4380~~~~0#@$SVGNODE~{\"gId\":\"gge4410\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"18.9751\",\"c_height\":\"23.622\",\"c_rotation\":\"0,0,270\",\"z\":\"0\",\"c_origin\":\"4673.5421,3108.54\",\"uuid\":\"dc694c23844346e9981bdbac7bb76421\",\"c_etype\":\"outline3D\",\"title\":\"SOIC-8_L4.9-W3.9-H1.7-LS6.0-P1.27\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge4410\"},\"childNodes\":[{\"gId\":\"gge4413\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4680.9436 3098.8943 4680.9042 3098.8943 4680.8255 3098.8943 4666.2586 3098.8943 4666.1405 3098.8943 4666.0618 3098.9336 4665.983 3099.0124 4665.9043 3099.0911 4665.8649 3099.1698 4665.8649 3099.288 4665.8649 3100.2722 4665.3137 3100.2722 4665.1562 3100.2722 4665.0775 3100.2722 4664.9988 3100.2722 4664.92 3100.2722 4664.8413 3100.2722 4664.7625 3100.2722 4664.6838 3100.2722 4664.6051 3100.2722 4664.5263 3100.2722 4664.487 3100.2722 4664.4082 3100.2722 4664.3688 3100.2722 4664.2507 3100.2722 4664.172 3100.2722 4664.0933 3100.2722 4664.0145 3100.2722 4663.9358 3100.2722 4663.857 3100.2722 4663.7783 3100.2722 4663.6996 3100.2722 4663.6208 3100.2722 4663.5814 3100.2722 4663.4633 3100.2722 4663.3452 3100.2722 4663.2665 3100.2722 4663.1877 3100.2722 4663.109 3100.2722 4663.0303 3100.2722 4662.9515 3100.2722 4662.8728 3100.2722 4662.794 3100.2722 4662.7153 3100.2722 4662.6759 3100.2722 4662.5578 3100.2722 4661.5736 3100.2722 4661.5342 3100.2722 4661.5342 3100.3509 4661.5342 3101.8076 4661.5342 3101.847 4661.6129 3101.847 4662.5972 3101.847 4662.6759 3101.847 4662.7547 3101.847 4662.794 3101.847 4662.9122 3101.847 4662.9909 3101.847 4663.0696 3101.847 4663.1484 3101.847 4663.2271 3101.847 4663.2665 3101.847 4663.3846 3101.847 4663.5027 3101.847 4663.5814 3101.847 4663.6602 3101.847 4663.7389 3101.847 4663.8177 3101.847 4663.8964 3101.847 4663.9751 3101.847 4664.0539 3101.847 4664.1326 3101.847 4664.172 3101.847 4664.2901 3101.847 4664.3688 3101.847 4664.487 3101.847 4664.5657 3101.847 4664.6444 3101.847 4664.7232 3101.847 4664.7625 3101.847 4664.8807 3101.847 4664.9594 3101.847 4665.0381 3101.847 4665.1169 3101.847 4665.1956 3101.847 4665.2744 3101.847 4665.3137 3101.847 4665.8649 3101.847 4665.8649 3105.2722 4665.3137 3105.2722 4665.1562 3105.2722 4665.1169 3105.2722 4664.9988 3105.2722 4664.92 3105.2722 4664.8413 3105.2722 4664.7625 3105.2722 4664.6838 3105.2722 4664.6051 3105.2722 4664.5657 3105.2722 4664.487 3105.2722 4664.3688 3105.2722 4664.2507 3105.2722 4664.172 3105.2722 4664.0933 3105.2722 4664.0145 3105.2722 4663.9358 3105.2722 4663.857 3105.2722 4663.7783 3105.2722 4663.6996 3105.2722 4663.6208 3105.2722 4663.5814 3105.2722 4663.4633 3105.2722 4663.3452 3105.2722 4663.2665 3105.2722 4663.1877 3105.2722 4663.109 3105.2722 4663.0303 3105.2722 4662.9515 3105.2722 4662.8728 3105.2722 4662.794 3105.2722 4662.7153 3105.2722 4662.6759 3105.2722 4662.5578 3105.2722 4661.5736 3105.2722 4661.5342 3105.2722 4661.5342 3105.3116 4661.5342 3105.3509 4661.5342 3106.8076 4661.5342 3106.847 4661.6129 3106.847 4662.5972 3106.847 4662.6759 3106.847 4662.7547 3106.847 4662.794 3106.847 4662.8728 3106.847 4662.9909 3106.847 4663.0696 3106.847 4663.1484 3106.847 4663.2271 3106.847 4663.3059 3106.847 4663.3846 3106.847 4663.424 3106.847 4663.5027 3106.847 4663.5814 3106.847 4663.6602 3106.847 4663.7389 3106.847 4663.8177 3106.847 4663.8964 3106.847 4663.9751 3106.847 4664.0539 3106.847 4664.1326 3106.847 4664.172 3106.847 4664.2901 3106.847 4664.3688 3106.847 4664.487 3106.847 4664.5657 3106.847 4664.6444 3106.847 4664.7232 3106.847 4664.8019 3106.847 4664.8807 3106.847 4664.92 3106.847 4665.0381 3106.847 4665.1169 3106.847 4665.1956 3106.847 4665.235 3106.847 4665.3137 3106.847 4665.8649 3106.847 4665.8649 3110.2722 4665.3137 3110.2722 4665.1562 3110.2722 4665.1169 3110.2722 4664.9988 3110.2722 4664.92 3110.2722 4664.8413 3110.2722 4664.7625 3110.2722 4664.6838 3110.2722 4664.6051 3110.2722 4664.5263 3110.2722 4664.487 3110.2722 4664.3688 3110.2722 4664.2507 3110.2722 4664.172 3110.2722 4664.0933 3110.2722 4664.0145 3110.2722 4663.9358 3110.2722 4663.857 3110.2722 4663.7783 3110.2722 4663.6996 3110.2722 4663.6208 3110.2722 4663.5814 3110.2722 4663.4633 3110.2722 4663.3452 3110.2722 4663.2665 3110.2722 4663.1877 3110.2722 4663.109 3110.2722 4663.0303 3110.2722 4662.9515 3110.2722 4662.8728 3110.2722 4662.794 3110.2722 4662.7153 3110.2722 4662.6759 3110.2722 4662.5578 3110.2722 4661.5736 3110.2722 4661.5342 3110.2722 4661.5342 3110.3116 4661.5342 3110.3509 4661.5342 3111.847 4661.6129 3111.847 4662.5972 3111.847 4662.6759 3111.847 4662.7547 3111.847 4662.794 3111.847 4662.9122 3111.847 4662.9909 3111.847 4663.0696 3111.847 4663.1484 3111.847 4663.2271 3111.847 4663.2665 3111.847 4663.3846 3111.847 4663.5027 3111.847 4663.5814 3111.847 4663.6602 3111.847 4663.7389 3111.847 4663.8177 3111.847 4663.8964 3111.847 4663.9751 3111.847 4664.0539 3111.847 4664.1326 3111.847 4664.172 3111.847 4664.2901 3111.847 4664.3688 3111.847 4664.487 3111.847 4664.5657 3111.847 4664.6444 3111.847 4664.7232 3111.847 4664.7625 3111.847 4664.8807 3111.847 4664.9594 3111.847 4665.0381 3111.847 4665.1169 3111.847 4665.1956 3111.847 4665.2744 3111.847 4665.3137 3111.847 4665.8649 3111.847 4665.8649 3115.2722 4665.3137 3115.2722 4665.1562 3115.2722 4665.0775 3115.2722 4664.9988 3115.2722 4664.92 3115.2722 4664.8413 3115.2722 4664.7625 3115.2722 4664.6838 3115.2722 4664.6051 3115.2722 4664.5263 3115.2722 4664.487 3115.2722 4664.4082 3115.2722 4664.3688 3115.2722 4664.2507 3115.2722 4664.172 3115.2722 4664.0933 3115.2722 4664.0145 3115.2722 4663.9358 3115.2722 4663.857 3115.2722 4663.7783 3115.2722 4663.6996 3115.2722 4663.6208 3115.2722 4663.5814 3115.2722 4663.4633 3115.2722 4663.3452 3115.2722 4663.2665 3115.2722 4663.1877 3115.2722 4663.109 3115.2722 4663.0303 3115.2722 4662.9515 3115.2722 4662.8728 3115.2722 4662.794 3115.2722 4662.7153 3115.2722 4662.6759 3115.2722 4662.5578 3115.2722 4661.5736 3115.2722 4661.5342 3115.2722 4661.5342 3115.3115 4661.5342 3115.3509 4661.5342 3116.847 4661.6129 3116.847 4662.5972 3116.847 4662.6759 3116.847 4662.7547 3116.847 4662.794 3116.847 4662.8728 3116.847 4662.9909 3116.847 4663.0696 3116.847 4663.1484 3116.847 4663.2271 3116.847 4663.3059 3116.847 4663.3846 3116.847 4663.424 3116.847 4663.5027 3116.847 4663.5814 3116.847 4663.6602 3116.847 4663.7389 3116.847 4663.8177 3116.847 4663.8964 3116.847 4663.9751 3116.847 4664.0539 3116.847 4664.1326 3116.847 4664.172 3116.847 4664.2901 3116.847 4664.3688 3116.847 4664.487 3116.847 4664.5657 3116.847 4664.6444 3116.847 4664.7232 3116.847 4664.8019 3116.847 4664.8807 3116.847 4664.92 3116.847 4665.0381 3116.847 4665.1169 3116.847 4665.1956 3116.847 4665.2744 3116.847 4665.3137 3116.847 4665.8649 3116.847 4665.8649 3117.7919 4665.8649 3117.91 4665.9043 3117.9887 4665.983 3118.0674 4666.0618 3118.1462 4666.1405 3118.1856 4666.2586 3118.1856 4680.8255 3118.1856 4680.9436 3118.1856 4681.0224 3118.1462 4681.1011 3118.0674 4681.1798 3117.9887 4681.2192 3117.91 4681.2192 3117.7919 4681.2192 3116.847 4681.7704 3116.847 4681.9279 3116.847 4681.9672 3116.847 4682.0853 3116.847 4682.1641 3116.847 4682.2428 3116.847 4682.3216 3116.847 4682.4003 3116.847 4682.479 3116.847 4682.5184 3116.847 4682.5972 3116.847 4682.7153 3116.847 4682.8334 3116.847 4682.9121 3116.847 4682.9909 3116.847 4683.0696 3116.847 4683.1483 3116.847 4683.2271 3116.847 4683.3058 3116.847 4683.3846 3116.847 4683.4633 3116.847 4683.542 3116.847 4683.5814 3116.847 4683.5027 3116.847 4683.4633 3116.8076 4683.542 3116.8076 4683.5814 3116.8076 4683.542 3116.847 4683.4633 3116.847 4683.5027 3116.847 4683.6208 3116.847 4683.7389 3116.847 4683.8176 3116.847 4683.8964 3116.847 4683.9751 3116.847 4684.0538 3116.847 4684.1326 3116.847 4684.2113 3116.847 4684.2901 3116.847 4684.3688 3116.847 4684.4082 3116.847 4684.5263 3116.847 4685.5105 3116.847 4685.5499 3116.8076 4685.5499 3115.3509 4685.5499 3115.3115 4685.5499 3115.2722 4685.4712 3115.2722 4684.4869 3115.2722 4684.4082 3115.2722 4684.3294 3115.2722 4684.2901 3115.2722 4684.172 3115.2722 4684.0932 3115.2722 4684.0145 3115.2722 4683.9357 3115.2722 4683.857 3115.2722 4683.8176 3115.2722 4683.6995 3115.2722 4683.5814 3115.2722 4683.5027 3115.2722 4683.4239 3115.2722 4683.3452 3115.2722 4683.2664 3115.2722 4683.1877 3115.2722 4683.109 3115.2722 4683.0302 3115.2722 4682.9515 3115.2722 4682.9121 3115.2722 4682.794 3115.2722 4682.7153 3115.2722 4682.5972 3115.2722 4682.5184 3115.2722 4682.4397 3115.2722 4682.3609 3115.2722 4682.3216 3115.2722 4682.2035 3115.2722 4682.1247 3115.2722 4682.046 3115.2722 4681.9672 3115.2722 4681.8885 3115.2722 4681.8491 3115.2722 4681.7704 3115.2722 4681.2192 3115.2722 4681.2192 3111.847 4681.7704 3111.847 4681.9279 3111.847 4682.0066 3111.847 4682.0853 3111.847 4682.1641 3111.847 4682.2428 3111.847 4682.3216 3111.847 4682.4003 3111.847 4682.479 3111.847 4682.5184 3111.847 4682.5972 3111.847 4682.6759 3111.847 4682.7153 3111.847 4682.8334 3111.847 4682.9121 3111.847 4682.9909 3111.847 4683.0696 3111.847 4683.1483 3111.847 4683.2271 3111.847 4683.3058 3111.847 4683.3846 3111.847 4683.4633 3111.847 4683.5027 3111.847 4683.6208 3111.847 4683.7389 3111.847 4683.8176 3111.847 4683.8964 3111.847 4683.9751 3111.847 4684.0538 3111.847 4684.1326 3111.847 4684.2113 3111.847 4684.2901 3111.847 4684.3688 3111.847 4684.4082 3111.847 4684.5263 3111.847 4685.5105 3111.847 4685.5499 3111.8076 4685.5499 3111.099 4685.5499 3110.3509 4685.5499 3110.3116 4685.5499 3110.2722 4685.4712 3110.2722 4684.4869 3110.2722 4684.4082 3110.2722 4684.3294 3110.2722 4684.2901 3110.2722 4684.172 3110.2722 4684.0932 3110.2722 4684.0145 3110.2722 4683.9357 3110.2722 4683.857 3110.2722 4683.8176 3110.2722 4683.6995 3110.2722 4683.5814 3110.2722 4683.5027 3110.2722 4683.4239 3110.2722 4683.3452 3110.2722 4683.2664 3110.2722 4683.1877 3110.2722 4683.109 3110.2722 4683.0302 3110.2722 4682.9515 3110.2722 4682.9121 3110.2722 4682.794 3110.2722 4682.7153 3110.2722 4682.5972 3110.2722 4682.5184 3110.2722 4682.4397 3110.2722 4682.3609 3110.2722 4682.3216 3110.2722 4682.2035 3110.2722 4682.1247 3110.2722 4682.046 3110.2722 4681.9672 3110.2722 4681.8885 3110.2722 4681.8491 3110.2722 4681.7704 3110.2722 4681.2192 3110.2722 4681.2192 3106.847 4681.7704 3106.847 4681.9279 3106.847 4682.0066 3106.847 4682.0853 3106.847 4682.1641 3106.847 4682.2428 3106.847 4682.3216 3106.847 4682.4003 3106.847 4682.479 3106.847 4682.5184 3106.847 4682.5972 3106.847 4682.6759 3106.847 4682.7153 3106.847 4682.8334 3106.847 4682.9121 3106.847 4682.9909 3106.847 4683.0696 3106.847 4683.1483 3106.847 4683.2271 3106.847 4683.3058 3106.847 4683.3846 3106.847 4683.4633 3106.847 4683.542 3106.847 4683.5814 3106.8076 4683.5814 3106.847 4683.5027 3106.847 4683.4633 3106.847 4683.4633 3106.8076 4683.542 3106.8076 4683.5814 3106.8076 4683.542 3106.847 4683.4239 3106.847 4683.4633 3106.8076 4683.4633 3106.847 4683.5027 3106.847 4683.6208 3106.847 4683.7389 3106.847 4683.8176 3106.847 4683.8964 3106.847 4683.9751 3106.847 4684.0538 3106.847 4684.1326 3106.847 4684.2113 3106.847 4684.2901 3106.847 4684.3688 3106.847 4684.4082 3106.847 4684.5263 3106.847 4685.5105 3106.847 4685.5499 3106.847 4685.5499 3106.8076 4685.5499 3106.099 4685.5499 3105.3509 4685.5499 3105.3116 4685.5499 3105.2722 4685.4712 3105.2722 4684.4869 3105.2722 4684.4082 3105.2722 4684.3294 3105.2722 4684.2901 3105.2722 4684.2113 3105.2722 4684.0932 3105.2722 4684.0145 3105.2722 4683.9357 3105.2722 4683.857 3105.2722 4683.7783 3105.2722 4683.6995 3105.2722 4683.6601 3105.2722 4683.5814 3105.2722 4683.5027 3105.2722 4683.4239 3105.2722 4683.3452 3105.2722 4683.2664 3105.2722 4683.1877 3105.2722 4683.109 3105.2722 4683.0302 3105.2722 4682.9515 3105.2722 4682.9121 3105.2722 4682.794 3105.2722 4682.7153 3105.2722 4682.5972 3105.2722 4682.5184 3105.2722 4682.4397 3105.2722 4682.3609 3105.2722 4682.3216 3105.2722 4682.2035 3105.2722 4682.1641 3105.2722 4682.046 3105.2722 4681.9672 3105.2722 4681.8885 3105.2722 4681.8491 3105.2722 4681.7704 3105.2722 4681.2192 3105.2722 4681.2192 3101.847 4681.7704 3101.847 4681.9279 3101.847 4682.0066 3101.847 4682.0853 3101.847 4682.1641 3101.847 4682.2428 3101.847 4682.3216 3101.847 4682.4003 3101.847 4682.479 3101.847 4682.5184 3101.847 4682.5972 3101.847 4682.6759 3101.847 4682.7153 3101.847 4682.8334 3101.847 4682.9121 3101.847 4682.9909 3101.847 4683.0696 3101.847 4683.1483 3101.847 4683.2271 3101.847 4683.3058 3101.847 4683.3846 3101.847 4683.4633 3101.847 4683.5027 3101.847 4683.6208 3101.847 4683.7389 3101.847 4683.8176 3101.847 4683.8964 3101.847 4683.9751 3101.847 4684.0538 3101.847 4684.1326 3101.847 4684.2113 3101.847 4684.2901 3101.847 4684.3688 3101.847 4684.4082 3101.847 4684.5263 3101.847 4685.5105 3101.847 4685.5499 3101.847 4685.5499 3101.8076 4685.5499 3100.3116 4685.5499 3100.2722 4685.4712 3100.2722 4684.4869 3100.2722 4684.4082 3100.2722 4684.3294 3100.2722 4684.2901 3100.2722 4684.172 3100.2722 4684.0932 3100.2722 4684.0145 3100.2722 4683.9357 3100.2722 4683.857 3100.2722 4683.8176 3100.2722 4683.6995 3100.2722 4683.5814 3100.2722 4683.5027 3100.2722 4683.4239 3100.2722 4683.3452 3100.2722 4683.2664 3100.2722 4683.1877 3100.2722 4683.109 3100.2722 4683.0302 3100.2722 4682.9515 3100.2722 4682.9121 3100.2722 4682.794 3100.2722 4682.7153 3100.2722 4682.5972 3100.2722 4682.5184 3100.2722 4682.4397 3100.2722 4682.3609 3100.2722 4682.3216 3100.2722 4682.2035 3100.2722 4682.1247 3100.2722 4682.046 3100.2722 4681.9672 3100.2722 4681.8885 3100.2722 4681.8491 3100.2722 4681.7704 3100.2722 4681.2192 3100.2722 4681.2192 3099.288 4681.2192 3099.1698 4681.1798 3099.0911 4681.1405 3099.0517 4681.1011 3099.0124 4681.0617 3098.973 4681.0224 3098.9336 4680.983 3098.9336 4680.9436 3098.8943 4680.9436 3098.8943\",\"id\":\"gge4413\"}}]}#@$TEXT~N~4701.332~3150.62~0.6~90~0~3~~4.5~XL1509-5.0E1~M 4696.792 3150.6201 L 4701.082 3147.7601 M 4696.792 3147.7601 L 4701.082 3150.6201 M 4696.792 3146.4101 L 4701.082 3146.4101 M 4701.082 3146.4101 L 4701.082 3143.9501 M 4697.612 3142.6001 L 4697.402 3142.1901 L 4696.792 3141.5801 L 4701.082 3141.5801 M 4696.792 3137.7701 L 4696.792 3139.8201 L 4698.632 3140.0201 L 4698.432 3139.8201 L 4698.222 3139.2101 L 4698.222 3138.5901 L 4698.432 3137.9801 L 4698.832 3137.5701 L 4699.452 3137.3701 L 4699.862 3137.3701 L 4700.472 3137.5701 L 4700.882 3137.9801 L 4701.082 3138.5901 L 4701.082 3139.2101 L 4700.882 3139.8201 L 4700.682 3140.0201 L 4700.272 3140.2301 M 4696.792 3134.7901 L 4696.992 3135.4001 L 4697.612 3135.8101 L 4698.632 3136.0201 L 4699.242 3136.0201 L 4700.272 3135.8101 L 4700.882 3135.4001 L 4701.082 3134.7901 L 4701.082 3134.3801 L 4700.882 3133.7701 L 4700.272 3133.3601 L 4699.242 3133.1501 L 4698.632 3133.1501 L 4697.612 3133.3601 L 4696.992 3133.7701 L 4696.792 3134.3801 L 4696.792 3134.7901 M 4698.222 3129.1401 L 4698.832 3129.3501 L 4699.242 3129.7601 L 4699.452 3130.3701 L 4699.452 3130.5701 L 4699.242 3131.1901 L 4698.832 3131.6001 L 4698.222 3131.8001 L 4698.022 3131.8001 L 4697.402 3131.6001 L 4696.992 3131.1901 L 4696.792 3130.5701 L 4696.792 3130.3701 L 4696.992 3129.7601 L 4697.402 3129.3501 L 4698.222 3129.1401 L 4699.242 3129.1401 L 4700.272 3129.3501 L 4700.882 3129.7601 L 4701.082 3130.3701 L 4701.082 3130.7801 L 4700.882 3131.3901 L 4700.472 3131.6001 M 4699.242 3127.7901 L 4699.242 3124.1101 M 4696.792 3120.3101 L 4696.792 3122.3501 L 4698.632 3122.5601 L 4698.432 3122.3501 L 4698.222 3121.7401 L 4698.222 3121.1201 L 4698.432 3120.5101 L 4698.832 3120.1001 L 4699.452 3119.9001 L 4699.862 3119.9001 L 4700.472 3120.1001 L 4700.882 3120.5101 L 4701.082 3121.1201 L 4701.082 3121.7401 L 4700.882 3122.3501 L 4700.682 3122.5601 L 4700.272 3122.7601 M 4700.062 3118.3401 L 4700.272 3118.5501 L 4700.472 3118.3401 L 4700.272 3118.1401 L 4700.062 3118.3401 M 4696.792 3115.5601 L 4696.992 3116.1701 L 4697.612 3116.5801 L 4698.632 3116.7901 L 4699.242 3116.7901 L 4700.272 3116.5801 L 4700.882 3116.1701 L 4701.082 3115.5601 L 4701.082 3115.1501 L 4700.882 3114.5401 L 4700.272 3114.1301 L 4699.242 3113.9201 L 4698.632 3113.9201 L 4697.612 3114.1301 L 4696.992 3114.5401 L 4696.792 3115.1501 L 4696.792 3115.5601 M 4696.792 3112.5701 L 4701.082 3112.5701 M 4696.792 3112.5701 L 4696.792 3109.9201 M 4698.832 3112.5701 L 4698.832 3110.9401 M 4701.082 3112.5701 L 4701.082 3109.9201 M 4697.612 3108.5701 L 4697.402 3108.1601 L 4696.792 3107.5401 L 4701.082 3107.5401~none~gge4314~~0~#@$TEXT~P~4661~3095.5~0.6~0~0~3~~4.5~PSU_U1~M 4661 3090.96 L 4661 3095.25 M 4661 3090.96 L 4662.84 3090.96 L 4663.45 3091.16 L 4663.66 3091.37 L 4663.86 3091.78 L 4663.86 3092.39 L 4663.66 3092.8 L 4663.45 3093 L 4662.84 3093.21 L 4661 3093.21 M 4668.08 3091.57 L 4667.67 3091.16 L 4667.05 3090.96 L 4666.24 3090.96 L 4665.62 3091.16 L 4665.21 3091.57 L 4665.21 3091.98 L 4665.42 3092.39 L 4665.62 3092.6 L 4666.03 3092.8 L 4667.26 3093.21 L 4667.67 3093.41 L 4667.87 3093.62 L 4668.08 3094.03 L 4668.08 3094.64 L 4667.67 3095.05 L 4667.05 3095.25 L 4666.24 3095.25 L 4665.62 3095.05 L 4665.21 3094.64 M 4669.43 3090.96 L 4669.43 3094.03 L 4669.63 3094.64 L 4670.04 3095.05 L 4670.65 3095.25 L 4671.06 3095.25 L 4671.68 3095.05 L 4672.09 3094.64 L 4672.29 3094.03 L 4672.29 3090.96 M 4673.64 3096.69 L 4677.32 3096.69 M 4678.67 3090.96 L 4678.67 3094.03 L 4678.88 3094.64 L 4679.29 3095.05 L 4679.9 3095.25 L 4680.31 3095.25 L 4680.92 3095.05 L 4681.33 3094.64 L 4681.54 3094.03 L 4681.54 3090.96 M 4682.89 3091.78 L 4683.3 3091.57 L 4683.91 3090.96 L 4683.91 3095.25~~gge4320~~0~#@$TRACK~1~3~~4667.6365 3098.6975 4670.6815 3098.6975~gge4383~0#@$TRACK~1~3~~4679.4475 3098.6975 4676.4014 3098.6975~gge4386~0#@$TRACK~1~3~~4679.4475 3098.6975 4681.042 3098.6975 4681.042 3099.0574~gge4389~0#@$TRACK~1~3~~4667.6365 3118.3825 4666.042 3118.3825 4666.042 3118.0226~gge4392~0#@$TRACK~1~3~~4667.6365 3098.6975 4666.042 3098.6975 4666.042 3099.0574~gge4395~0#@$TRACK~1~3~~4679.4475 3118.3825 4681.042 3118.3825 4681.042 3118.0226~gge4398~0#@$TRACK~1~3~~4679.4475 3118.3825 4667.6365 3118.3825~gge4401~0#@$CIRCLE~4663.042~3098.54~0.591~1.1811~3~gge4404~0~~#@$ARC~1~3~S$1126~M 4670.6815 3098.6975 A 2.8648 2.8648 0 0 0 4676.4014 3098.7168~~gge4407~0#@$PAD~OVAL~4662.892~3101.04~2.2378~7.678~1~PSU_D1_2~1~0~4665.6121 3101.04 4660.1719 3101.04~270~gge4416~0~~Y~0~0.0000~0.2000~4662.892,3101.04#@$PAD~OVAL~4662.892~3106.04~2.2378~7.678~1~PSU_D2_2~2~0~4665.6121 3106.04 4660.1719 3106.04~270~gge4431~0~~Y~0~0.0000~0.2000~4662.892,3106.04#@$PAD~OVAL~4662.892~3111.04~2.2378~7.678~1~+5V~3~0~4665.6121 3111.04 4660.1719 3111.04~270~gge4446~0~~Y~0~0.0000~0.2000~4662.892,3111.04#@$PAD~OVAL~4662.892~3116.04~2.2378~7.678~1~GND~4~0~4665.6121 3116.04 4660.1719 3116.04~270~gge4461~0~~Y~0~0.0000~0.2000~4662.892,3116.04#@$PAD~OVAL~4684.192~3101.04~2.2378~7.678~1~GND~8~0~4686.9121 3101.04 4681.4719 3101.04~270~gge4476~0~~Y~0~0.0000~0.2000~4684.192,3101.04#@$PAD~OVAL~4684.192~3106.04~2.2378~7.678~1~GND~7~0~4686.9121 3106.04 4681.4719 3106.04~270~gge4491~0~~Y~0~0.0000~0.2000~4684.192,3106.04#@$PAD~OVAL~4684.192~3111.04~2.2378~7.678~1~GND~6~0~4686.9121 3111.04 4681.4719 3111.04~270~gge4506~0~~Y~0~0.0000~0.2000~4684.192,3111.04#@$PAD~OVAL~4684.192~3116.04~2.2378~7.678~1~GND~5~0~4686.9121 3116.04 4681.4719 3116.04~270~gge4521~0~~Y~0~0.0000~0.2000~4684.192,3116.04","LIB~4697.164~3155.784~package`R0805`Contributor`lcsc`link`https:\/\/item.szlcsc.com\/142685.html`3DModel`R0805_L2.0-W1.3-H0.6`BOM_Supplier`LCSC`BOM_Manufacturer`UNI-ROYAL(\u539a\u58f0)`BOM_Manufacturer Part`0805W8F5600T5E`nameAlias`Resistance`BOM_Supplier Part`C28636`Resistance (Ohms)`560`BOM_JLCPCB Part Class`Basic Part`spicePre`R`spiceSymbolName`0805W8F5600T5E`~90~~ggeaf62492a490cdd04~1~b60f399a7a7e41848b2be1eb49c79141~1667381294~0~~yes~~#@$SOLIDREGION~100~~M 4699.6738 3159.721 L 4694.6542 3159.721 L 4694.6542 3158.1462 L 4699.6738 3158.1462 Z~solid~gge4545~~~~0#@$SOLIDREGION~100~~M 4699.6738 3151.847 L 4694.6542 3151.847 L 4694.6542 3153.4218 L 4699.6738 3153.4218 Z~solid~gge4548~~~~0#@$SOLIDREGION~99~~M 4699.6738 3159.721 L 4694.6542 3159.721 L 4694.6542 3151.847 L 4699.6738 3151.847 Z~solid~gge4551~~~~0#@$SOLIDREGION~5~~M 4699.6837 3162.477 L 4694.6444 3162.477 L 4694.4475 3162.2801 L 4694.4475 3157.7525 L 4694.6444 3157.5557 L 4696.2587 3157.5359 L 4696.2587 3159.3076 L 4698.0303 3159.3076 L 4698.0303 3157.5753 L 4699.6837 3157.5557 L 4699.8806 3157.7525 L 4699.8806 3162.2801 Z~solid~gge4554~~~~0#@$SOLIDREGION~5~~M 4699.6837 3154.0124 L 4698.0303 3154.0123 L 4698.0303 3152.2604 L 4696.2587 3152.2604 L 4696.2587 3153.9926 L 4694.6444 3154.0124 L 4694.4475 3153.8155 L 4694.4475 3149.288 L 4694.6444 3149.0911 L 4699.6837 3149.0911 L 4699.8806 3149.288 L 4699.8806 3153.8155 Z~solid~gge4557~~~~0#@$CIRCLE~4699.674~3159.721~0.118~0.2362~101~gge4566~0~~#@$SVGNODE~{\"gId\":\"gge4569\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"7.874\",\"c_height\":\"5.1181\",\"c_rotation\":\"0,0,90\",\"z\":\"0\",\"c_origin\":\"4697.1641,3155.784\",\"uuid\":\"c7acac53bcbc44d68fbab8f60a747688\",\"c_etype\":\"outline3D\",\"title\":\"R0805_L2.0-W1.3-H0.6\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge4569\"},\"childNodes\":[{\"gId\":\"gge4572\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4694.605 3159.721 4699.7231 3159.721 4699.7231 3159.5242 4699.7231 3158.9336 4699.7231 3158.5399 4699.7231 3158.1462 4699.7231 3155.5872 4699.7231 3153.4218 4699.7231 3153.0281 4699.7231 3152.6344 4699.7231 3152.0439 4699.7231 3151.847 4694.605 3151.847 4694.605 3152.0439 4694.605 3152.6344 4694.605 3153.0281 4694.605 3153.4218 4694.605 3155.5872 4694.605 3158.1462 4694.605 3158.5399 4694.605 3158.9336 4694.605 3159.5242 4694.605 3159.721 4694.605 3159.721\",\"id\":\"gge4572\"}}]}#@$TEXT~N~4679.624~3156.718~0.6~90~0~3~~4.5~560\u03a9~M 4677.034 3156.0576 L 4677.034 3154.7876 L 4676.694 3154.7876 L 4676.694 3156.2176 L 4678.064 3156.3176 L 4678.094 3156.1976 C 4678.054 3156.0576 4678.034 3155.9176 4678.034 3155.7776 C 4678.034 3155.3576 4678.294 3155.0976 4678.754 3155.0976 C 4679.214 3155.0976 4679.514 3155.3276 4679.514 3155.7576 C 4679.514 3155.8576 4679.504 3155.9376 4679.474 3156.0376 L 4679.204 3156.1076 C 4678.994 3156.1576 4678.934 3156.2176 4678.934 3156.3376 C 4678.934 3156.4376 4678.984 3156.5176 4679.074 3156.5476 C 4679.474 3156.4576 4679.684 3156.1776 4679.684 3155.7376 C 4679.684 3155.1176 4679.294 3154.7076 4678.724 3154.7076 C 4678.134 3154.7076 4677.804 3155.0976 4677.804 3155.6676 C 4677.804 3155.8276 4677.824 3155.9676 4677.864 3156.1076 Z M 4678.284 3153.9576 C 4678.124 3153.7876 4678.064 3153.5876 4678.064 3153.3976 C 4678.064 3153.0876 4678.284 3152.8776 4678.774 3152.8776 C 4679.264 3152.8776 4679.514 3153.0876 4679.514 3153.3876 C 4679.514 3153.7476 4679.124 3153.9576 4678.364 3153.9576 Z M 4676.634 3152.6576 C 4676.764 3153.7376 4677.524 3154.3476 4678.424 3154.3476 C 4679.214 3154.3476 4679.684 3153.9776 4679.684 3153.3976 C 4679.684 3152.8676 4679.324 3152.4976 4678.714 3152.4976 C 4678.174 3152.4976 4677.834 3152.8176 4677.834 3153.2976 C 4677.834 3153.5376 4677.934 3153.7676 4678.124 3153.9476 C 4677.404 3153.8776 4676.944 3153.4676 4676.744 3152.6376 Z M 4678.134 3151.7576 C 4677.084 3151.7576 4676.804 3151.4976 4676.804 3151.2176 C 4676.804 3150.9576 4677.084 3150.6976 4678.134 3150.6976 C 4679.224 3150.6976 4679.514 3150.9576 4679.514 3151.2176 C 4679.514 3151.4976 4679.224 3151.7576 4678.134 3151.7576 Z M 4676.634 3151.2176 C 4676.634 3151.6976 4677.044 3152.1476 4678.134 3152.1476 C 4679.264 3152.1476 4679.684 3151.6976 4679.684 3151.2176 C 4679.684 3150.7576 4679.264 3150.3076 4678.134 3150.3076 C 4677.044 3150.3076 4676.634 3150.7576 4676.634 3151.2176 Z M 4678.884 3147.3276 L 4679.314 3147.4376 L 4679.314 3148.0576 L 4679.314 3148.0576 C 4678.994 3147.5976 4678.524 3147.2476 4677.954 3147.2476 C 4677.094 3147.2476 4676.624 3147.8476 4676.624 3148.5276 C 4676.624 3149.2076 4677.094 3149.8076 4677.954 3149.8076 C 4678.524 3149.8076 4678.994 3149.4476 4679.314 3148.9976 L 4679.314 3148.9976 L 4679.314 3149.6176 L 4678.884 3149.7276 L 4678.884 3149.9576 L 4679.624 3149.9076 L 4679.624 3148.7376 L 4679.354 3148.7376 C 4679.024 3149.1476 4678.504 3149.3976 4677.954 3149.3976 C 4677.304 3149.3976 4676.814 3149.0776 4676.814 3148.5276 C 4676.814 3147.9776 4677.304 3147.6576 4677.954 3147.6576 C 4678.504 3147.6576 4679.024 3147.9076 4679.354 3148.3176 L 4679.624 3148.3176 L 4679.624 3147.1376 L 4678.884 3147.0976 Z~none~gge6291~NotoSerifCJKsc-Medium~0~#@$TEXT~P~4702.164~3153.284~0.6~270~0~3~~4.5~R1~M 4706.704 3153.284 L 4702.414 3153.284 M 4706.704 3153.284 L 4706.704 3155.124 L 4706.504 3155.734 L 4706.294 3155.944 L 4705.884 3156.144 L 4705.474 3156.144 L 4705.064 3155.944 L 4704.864 3155.734 L 4704.664 3155.124 L 4704.664 3153.284 M 4704.664 3154.714 L 4702.414 3156.144 M 4705.884 3157.494 L 4706.094 3157.904 L 4706.704 3158.524 L 4702.414 3158.524~~gge4539~~0~#@$TRACK~0.6~3~~4700.7746 3153.9092 4700.7746 3148.8504 4693.5534 3148.8504 4693.5534 3153.9092~gge4560~0#@$TRACK~0.6~3~~4700.7746 3157.6588 4700.7746 3162.7176 4693.5534 3162.7176 4693.5534 3157.6588~gge4563~0#@$PAD~RECT~4697.164~3151.847~4.4588~5.4213~1~START1~2~0~4699.8746 3154.0762 4694.4534 3154.0762 4694.4534 3149.6174 4699.8746 3149.6174~90~gge4575~0~~Y~0~-393.7008~0.2000~4697.164,3151.8468#@$PAD~RECT~4697.164~3159.721~4.4588~5.4213~1~OPTO1_1~1~0~4699.8746 3157.4918 4694.4534 3157.4918 4694.4534 3161.9506 4699.8746 3161.9506~90~gge4587~0~~Y~0~-393.7008~0.2000~4697.164,3159.7212","LIB~4699.3434~3204.4427~package`R0805`Contributor`lcsc`link`https:\/\/item.szlcsc.com\/142685.html`3DModel`R0805_L2.0-W1.3-H0.6`BOM_Supplier`LCSC`BOM_Manufacturer`UNI-ROYAL(\u539a\u58f0)`BOM_Manufacturer Part`0805W8F5600T5E`nameAlias`Resistance`BOM_Supplier Part`C28636`Resistance (Ohms)`560`BOM_JLCPCB Part Class`Basic Part`spicePre`R`spiceSymbolName`0805W8F5600T5E`~~~gge6464813ed059779a~1~b60f399a7a7e41848b2be1eb49c79141~1667381294~0~~yes~~#@$SOLIDREGION~100~~M 4695.4064 3206.9525 L 4695.4064 3201.9329 L 4696.9812 3201.9329 L 4696.9812 3206.9525 Z ~solid~gge4608~~~~0#@$SOLIDREGION~100~~M 4703.2804 3206.9525 L 4703.2804 3201.9329 L 4701.7056 3201.9329 L 4701.7056 3206.9525 Z ~solid~gge4611~~~~0#@$SOLIDREGION~99~~M 4695.4064 3206.9525 L 4695.4064 3201.9329 L 4703.2804 3201.9329 L 4703.2804 3206.9525 Z ~solid~gge4614~~~~0#@$SOLIDREGION~5~~M 4692.6504 3206.9624 L 4692.6504 3201.9231 L 4692.8473 3201.7262 L 4697.3749 3201.7262 L 4697.5717 3201.9231 L 4697.5915 3203.5374 L 4695.8198 3203.5374 L 4695.8198 3205.309 L 4697.5521 3205.309 L 4697.5717 3206.9624 L 4697.3749 3207.1593 L 4692.8473 3207.1593 Z ~solid~gge4617~~~~0#@$SOLIDREGION~5~~M 4701.115 3206.9624 L 4701.1151 3205.309 L 4702.867 3205.309 L 4702.867 3203.5374 L 4701.1348 3203.5374 L 4701.115 3201.9231 L 4701.3119 3201.7262 L 4705.8394 3201.7262 L 4706.0363 3201.9231 L 4706.0363 3206.9624 L 4705.8394 3207.1593 L 4701.3119 3207.1593 Z ~SOLIDREGION~gge4620~~~~0#@$CIRCLE~4695.406~3206.953~0.118~0.2362~101~gge4629~0~~#@$SVGNODE~{\"gId\":\"gge4632\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"7.874\",\"c_height\":\"5.1181\",\"c_rotation\":\"0,0,0\",\"z\":\"0\",\"c_origin\":\"4699.3433,3204.4427\",\"uuid\":\"c7acac53bcbc44d68fbab8f60a747688\",\"c_etype\":\"outline3D\",\"title\":\"R0805_L2.0-W1.3-H0.6\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge4632\"},\"childNodes\":[{\"gId\":\"gge4635\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4695.4064 3201.8837 4695.4064 3207.0018 4695.6032 3207.0018 4696.1938 3207.0018 4696.5875 3207.0018 4696.9812 3207.0018 4699.5402 3207.0018 4701.7056 3207.0018 4702.0993 3207.0018 4702.493 3207.0018 4703.0835 3207.0018 4703.2804 3207.0018 4703.2804 3201.8837 4703.0835 3201.8837 4702.493 3201.8837 4702.0993 3201.8837 4701.7056 3201.8837 4699.5402 3201.8837 4696.9812 3201.8837 4696.5875 3201.8837 4696.1938 3201.8837 4695.6032 3201.8837 4695.4064 3201.8837 4695.4064 3201.8837\",\"id\":\"gge4635\"}}]}#@$TEXT~N~4699.409~3186.903~0.6~0~0~3~~4.5~560\u03a9~M 4700.0698 3184.3127 L 4701.3398 3184.3127 L 4701.3398 3183.9727 L 4699.9098 3183.9727 L 4699.8098 3185.3427 L 4699.9298 3185.3727 C 4700.0698 3185.3327 4700.2098 3185.3127 4700.3498 3185.3127 C 4700.7698 3185.3127 4701.0298 3185.5727 4701.0298 3186.0327 C 4701.0298 3186.4927 4700.7998 3186.7927 4700.3698 3186.7927 C 4700.2698 3186.7927 4700.1898 3186.7827 4700.0898 3186.7527 L 4700.0198 3186.4827 C 4699.9698 3186.2727 4699.9098 3186.2127 4699.7898 3186.2127 C 4699.6898 3186.2127 4699.6098 3186.2627 4699.5798 3186.3527 C 4699.6698 3186.7527 4699.9498 3186.9627 4700.3898 3186.9627 C 4701.0098 3186.9627 4701.4198 3186.5727 4701.4198 3186.0027 C 4701.4198 3185.4127 4701.0298 3185.0827 4700.4598 3185.0827 C 4700.2998 3185.0827 4700.1598 3185.1027 4700.0198 3185.1427 Z M 4702.1698 3185.5627 C 4702.3398 3185.4027 4702.5398 3185.3427 4702.7298 3185.3427 C 4703.0398 3185.3427 4703.2498 3185.5627 4703.2498 3186.0527 C 4703.2498 3186.5427 4703.0398 3186.7927 4702.7398 3186.7927 C 4702.3798 3186.7927 4702.1698 3186.4027 4702.1698 3185.6427 Z M 4703.4698 3183.9127 C 4702.3898 3184.0427 4701.7798 3184.8027 4701.7798 3185.7027 C 4701.7798 3186.4927 4702.1498 3186.9627 4702.7298 3186.9627 C 4703.2598 3186.9627 4703.6298 3186.6027 4703.6298 3185.9927 C 4703.6298 3185.4527 4703.3098 3185.1127 4702.8298 3185.1127 C 4702.5898 3185.1127 4702.3598 3185.2127 4702.1798 3185.4027 C 4702.2498 3184.6827 4702.6598 3184.2227 4703.4898 3184.0227 Z M 4704.3698 3185.4127 C 4704.3698 3184.3627 4704.6298 3184.0827 4704.9098 3184.0827 C 4705.1698 3184.0827 4705.4298 3184.3627 4705.4298 3185.4127 C 4705.4298 3186.5027 4705.1698 3186.7927 4704.9098 3186.7927 C 4704.6298 3186.7927 4704.3698 3186.5027 4704.3698 3185.4127 Z M 4704.9098 3183.9127 C 4704.4298 3183.9127 4703.9798 3184.3227 4703.9798 3185.4127 C 4703.9798 3186.5427 4704.4298 3186.9627 4704.9098 3186.9627 C 4705.3698 3186.9627 4705.8198 3186.5427 4705.8198 3185.4127 C 4705.8198 3184.3227 4705.3698 3183.9127 4704.9098 3183.9127 Z M 4708.7998 3186.1627 L 4708.6898 3186.5927 L 4708.0698 3186.5927 L 4708.0698 3186.5927 C 4708.5298 3186.2727 4708.8798 3185.8027 4708.8798 3185.2327 C 4708.8798 3184.3727 4708.2798 3183.9027 4707.5998 3183.9027 C 4706.9198 3183.9027 4706.3198 3184.3727 4706.3198 3185.2327 C 4706.3198 3185.8027 4706.6798 3186.2727 4707.1298 3186.5927 L 4707.1298 3186.5927 L 4706.5098 3186.5927 L 4706.3998 3186.1627 L 4706.1698 3186.1627 L 4706.2198 3186.9027 L 4707.3898 3186.9027 L 4707.3898 3186.6327 C 4706.9798 3186.3027 4706.7298 3185.7827 4706.7298 3185.2327 C 4706.7298 3184.5827 4707.0498 3184.0927 4707.5998 3184.0927 C 4708.1498 3184.0927 4708.4698 3184.5827 4708.4698 3185.2327 C 4708.4698 3185.7827 4708.2198 3186.3027 4707.8098 3186.6327 L 4707.8098 3186.9027 L 4708.9898 3186.9027 L 4709.0298 3186.1627 Z ~none~gge6294~NotoSerifCJKsc-Medium~0~#@$TEXT~P~4699.343~3199.443~0.6~0~0~3~~4.5~R2~M 4699.3434 3194.9027 L 4699.3434 3199.1927 M 4699.3434 3194.9027 L 4701.1834 3194.9027 L 4701.7934 3195.1027 L 4702.0034 3195.3127 L 4702.2034 3195.7227 L 4702.2034 3196.1327 L 4702.0034 3196.5427 L 4701.7934 3196.7427 L 4701.1834 3196.9427 L 4699.3434 3196.9427 M 4700.7734 3196.9427 L 4702.2034 3199.1927 M 4703.7634 3195.9227 L 4703.7634 3195.7227 L 4703.9634 3195.3127 L 4704.1734 3195.1027 L 4704.5834 3194.9027 L 4705.3934 3194.9027 L 4705.8034 3195.1027 L 4706.0134 3195.3127 L 4706.2134 3195.7227 L 4706.2134 3196.1327 L 4706.0134 3196.5427 L 4705.6034 3197.1527 L 4703.5534 3199.1927 L 4706.4234 3199.1927~~gge4602~~0~#@$TRACK~0.6~3~~4701.2182 3208.0533 4706.277 3208.0533 4706.277 3200.8321 4701.2182 3200.8321~gge4623~0#@$TRACK~0.6~3~~4697.4686 3208.0533 4692.4098 3208.0533 4692.4098 3200.8321 4697.4686 3200.8321~gge4626~0#@$PAD~RECT~4703.281~3204.443~4.4588~5.4213~1~START1~2~0~4701.0512 3207.1533 4701.0512 3201.7321 4705.51 3201.7321 4705.51 3207.1533~0~gge4638~0~~Y~0~-393.7008~0.2000~4703.2806,3204.4427#@$PAD~RECT~4695.406~3204.443~4.4588~5.4213~1~R2_1~1~0~4697.6356 3207.1533 4697.6356 3201.7321 4693.1768 3201.7321 4693.1768 3207.1533~0~gge4650~0~~Y~0~-393.7008~0.2000~4695.4062,3204.4427","LIB~4634.172~3171.532~package`R0805`Contributor`lcsc`link`https:\/\/item.szlcsc.com\/142685.html`3DModel`R0805_L2.0-W1.3-H0.6`BOM_Supplier`LCSC`BOM_Manufacturer`UNI-ROYAL(\u539a\u58f0)`BOM_Manufacturer Part`0805W8F1001T5E`nameAlias`Resistance`BOM_Supplier Part`C17513`Resistance (Ohms)`1K`BOM_JLCPCB Part Class`Basic Part`spicePre`R`spiceSymbolName`0805W8F1001T5E`~90~~gge83d4f4ccb5fabb62~1~b60f399a7a7e41848b2be1eb49c79141~1667381294~0~~yes~~#@$SOLIDREGION~100~~M 4636.6818 3175.469 L 4631.6622 3175.469 L 4631.6622 3173.8942 L 4636.6818 3173.8942 Z~solid~gge4671~~~~0#@$SOLIDREGION~100~~M 4636.6818 3167.595 L 4631.6622 3167.595 L 4631.6622 3169.1698 L 4636.6818 3169.1698 Z~solid~gge4674~~~~0#@$SOLIDREGION~99~~M 4636.6818 3175.469 L 4631.6622 3175.469 L 4631.6622 3167.595 L 4636.6818 3167.595 Z~solid~gge4677~~~~0#@$SOLIDREGION~5~~M 4636.6917 3178.225 L 4631.6524 3178.225 L 4631.4555 3178.0281 L 4631.4555 3173.5005 L 4631.6524 3173.3037 L 4633.2667 3173.2839 L 4633.2667 3175.0556 L 4635.0383 3175.0556 L 4635.0383 3173.3233 L 4636.6917 3173.3037 L 4636.8886 3173.5005 L 4636.8886 3178.0281 Z~solid~gge4680~~~~0#@$SOLIDREGION~5~~M 4636.6917 3169.7604 L 4635.0383 3169.7603 L 4635.0383 3168.0084 L 4633.2667 3168.0084 L 4633.2667 3169.7406 L 4631.6524 3169.7604 L 4631.4555 3169.5635 L 4631.4555 3165.036 L 4631.6524 3164.8391 L 4636.6917 3164.8391 L 4636.8886 3165.036 L 4636.8886 3169.5635 Z~solid~gge4683~~~~0#@$CIRCLE~4636.682~3175.469~0.118~0.2362~101~gge4692~0~~#@$SVGNODE~{\"gId\":\"gge4695\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"7.874\",\"c_height\":\"5.1181\",\"c_rotation\":\"0,0,90\",\"z\":\"0\",\"c_origin\":\"4634.1719,3171.532\",\"uuid\":\"c7acac53bcbc44d68fbab8f60a747688\",\"c_etype\":\"outline3D\",\"title\":\"R0805_L2.0-W1.3-H0.6\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge4695\"},\"childNodes\":[{\"gId\":\"gge4698\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4631.613 3175.469 4636.7311 3175.469 4636.7311 3175.2722 4636.7311 3174.6816 4636.7311 3174.2879 4636.7311 3173.8942 4636.7311 3171.3352 4636.7311 3169.1698 4636.7311 3168.7761 4636.7311 3168.3824 4636.7311 3167.7919 4636.7311 3167.595 4631.613 3167.595 4631.613 3167.7919 4631.613 3168.3824 4631.613 3168.7761 4631.613 3169.1698 4631.613 3171.3352 4631.613 3173.8942 4631.613 3174.2879 4631.613 3174.6816 4631.613 3175.2722 4631.613 3175.469 4631.613 3175.469\",\"id\":\"gge4698\"}}]}#@$TEXT~N~4616.632~3171.466~0.6~90~0~3~~4.5~1k\u03a9~M 4616.412 3170.1356 C 4616.172 3170.1456 4615.942 3170.1456 4615.712 3170.1456 L 4614.332 3170.1456 L 4613.702 3170.1256 L 4613.652 3170.1856 L 4613.892 3171.0856 L 4614.042 3171.0856 L 4613.992 3170.5056 L 4615.712 3170.5056 C 4615.942 3170.5056 4616.172 3170.5056 4616.412 3170.5156 L 4616.492 3171.1356 L 4616.632 3171.1356 L 4616.632 3169.5256 L 4616.492 3169.5256 Z M 4616.452 3167.1456 L 4615.262 3167.8856 L 4614.752 3167.3856 L 4614.702 3166.9756 L 4614.552 3166.9756 L 4614.552 3167.9856 L 4614.702 3167.9856 L 4614.772 3167.6456 L 4615.592 3168.4356 L 4614.052 3168.4356 L 4613.422 3168.4156 L 4613.392 3168.4756 L 4613.572 3169.1456 L 4613.712 3169.1456 L 4613.742 3168.7956 L 4615.712 3168.7956 C 4615.952 3168.7956 4616.212 3168.7956 4616.452 3168.8056 L 4616.492 3169.1456 L 4616.632 3169.1456 L 4616.632 3168.0856 L 4616.492 3168.0856 L 4616.452 3168.4256 C 4616.242 3168.4256 4616.022 3168.4356 4615.812 3168.4356 L 4615.512 3168.1456 L 4616.632 3167.4656 L 4616.632 3166.8656 L 4616.492 3166.8656 Z M 4615.892 3164.0656 L 4616.322 3164.1656 L 4616.322 3164.7856 L 4616.322 3164.7856 C 4616.002 3164.3356 4615.532 3163.9856 4614.962 3163.9856 C 4614.102 3163.9856 4613.632 3164.5856 4613.632 3165.2656 C 4613.632 3165.9456 4614.102 3166.5456 4614.962 3166.5456 C 4615.532 3166.5456 4616.002 3166.1856 4616.322 3165.7356 L 4616.322 3165.7356 L 4616.322 3166.3556 L 4615.892 3166.4656 L 4615.892 3166.6856 L 4616.632 3166.6456 L 4616.632 3165.4756 L 4616.362 3165.4756 C 4616.032 3165.8856 4615.512 3166.1356 4614.962 3166.1356 C 4614.312 3166.1356 4613.822 3165.8156 4613.822 3165.2656 C 4613.822 3164.7156 4614.312 3164.3856 4614.962 3164.3856 C 4615.512 3164.3856 4616.032 3164.6456 4616.362 3165.0556 L 4616.632 3165.0556 L 4616.632 3163.8756 L 4615.892 3163.8356 Z~none~gge6297~NotoSerifCJKsc-Medium~0~#@$TEXT~P~4629.172~3171.532~0.6~90~0~3~~4.5~R3~M 4624.632 3171.532 L 4628.922 3171.532 M 4624.632 3171.532 L 4624.632 3169.692 L 4624.832 3169.082 L 4625.042 3168.872 L 4625.452 3168.672 L 4625.862 3168.672 L 4626.272 3168.872 L 4626.472 3169.082 L 4626.672 3169.692 L 4626.672 3171.532 M 4626.672 3170.102 L 4628.922 3168.672 M 4624.632 3166.912 L 4624.632 3164.662 L 4626.272 3165.882 L 4626.272 3165.272 L 4626.472 3164.862 L 4626.672 3164.662 L 4627.292 3164.452 L 4627.702 3164.452 L 4628.312 3164.662 L 4628.722 3165.072 L 4628.922 3165.682 L 4628.922 3166.292 L 4628.722 3166.912 L 4628.522 3167.112 L 4628.112 3167.322~~gge4665~~0~#@$TRACK~0.6~3~~4637.7826 3169.6572 4637.7826 3164.5984 4630.5614 3164.5984 4630.5614 3169.6572~gge4686~0#@$TRACK~0.6~3~~4637.7826 3173.4068 4637.7826 3178.4656 4630.5614 3178.4656 4630.5614 3173.4068~gge4689~0#@$PAD~RECT~4634.172~3167.595~4.4588~5.4213~1~+3.3V~2~0~4636.8826 3169.8242 4631.4614 3169.8242 4631.4614 3165.3654 4636.8826 3165.3654~90~gge4701~0~~Y~0~-393.7008~0.2000~4634.172,3167.5948#@$PAD~RECT~4634.172~3175.469~4.4588~5.4213~1~IN1~1~0~4636.8826 3173.2398 4631.4614 3173.2398 4631.4614 3177.6986 4636.8826 3177.6986~90~gge4713~0~~Y~0~-393.7008~0.2000~4634.172,3175.4692","LIB~4634.172~3197.1225~package`R0805`Contributor`lcsc`link`https:\/\/item.szlcsc.com\/142685.html`3DModel`R0805_L2.0-W1.3-H0.6`BOM_Supplier`LCSC`BOM_Manufacturer`UNI-ROYAL(\u539a\u58f0)`BOM_Manufacturer Part`0805W8F1001T5E`nameAlias`Resistance`BOM_Supplier Part`C17513`Resistance (Ohms)`1K`BOM_JLCPCB Part Class`Basic Part`spicePre`R`spiceSymbolName`0805W8F1001T5E`~90~~gge3f270052d818fd6a~1~b60f399a7a7e41848b2be1eb49c79141~1667381294~0~~yes~~#@$SOLIDREGION~100~~M 4636.6818 3201.0595 L 4631.6622 3201.0595 L 4631.6622 3199.4847 L 4636.6818 3199.4847 Z~solid~gge4734~~~~0#@$SOLIDREGION~100~~M 4636.6818 3193.1855 L 4631.6622 3193.1855 L 4631.6622 3194.7603 L 4636.6818 3194.7603 Z~solid~gge4737~~~~0#@$SOLIDREGION~99~~M 4636.6818 3201.0595 L 4631.6622 3201.0595 L 4631.6622 3193.1855 L 4636.6818 3193.1855 Z~solid~gge4740~~~~0#@$SOLIDREGION~5~~M 4636.6917 3203.8155 L 4631.6524 3203.8155 L 4631.4555 3203.6186 L 4631.4555 3199.091 L 4631.6524 3198.8942 L 4633.2667 3198.8744 L 4633.2667 3200.6461 L 4635.0383 3200.6461 L 4635.0383 3198.9138 L 4636.6917 3198.8942 L 4636.8886 3199.091 L 4636.8886 3203.6186 Z~solid~gge4743~~~~0#@$SOLIDREGION~5~~M 4636.6917 3195.3509 L 4635.0383 3195.3508 L 4635.0383 3193.5989 L 4633.2667 3193.5989 L 4633.2667 3195.3311 L 4631.6524 3195.3509 L 4631.4555 3195.154 L 4631.4555 3190.6265 L 4631.6524 3190.4296 L 4636.6917 3190.4296 L 4636.8886 3190.6265 L 4636.8886 3195.154 Z~solid~gge4746~~~~0#@$CIRCLE~4636.682~3201.06~0.118~0.2362~101~gge4755~0~~#@$SVGNODE~{\"gId\":\"gge4758\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"7.874\",\"c_height\":\"5.1181\",\"c_rotation\":\"0,0,90\",\"z\":\"0\",\"c_origin\":\"4634.1719,3197.1225\",\"uuid\":\"c7acac53bcbc44d68fbab8f60a747688\",\"c_etype\":\"outline3D\",\"title\":\"R0805_L2.0-W1.3-H0.6\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge4758\"},\"childNodes\":[{\"gId\":\"gge4761\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4631.613 3201.0595 4636.7311 3201.0595 4636.7311 3200.8627 4636.7311 3200.2721 4636.7311 3199.8784 4636.7311 3199.4847 4636.7311 3196.9257 4636.7311 3194.7603 4636.7311 3194.3666 4636.7311 3193.9729 4636.7311 3193.3824 4636.7311 3193.1855 4631.613 3193.1855 4631.613 3193.3824 4631.613 3193.9729 4631.613 3194.3666 4631.613 3194.7603 4631.613 3196.9257 4631.613 3199.4847 4631.613 3199.8784 4631.613 3200.2721 4631.613 3200.8627 4631.613 3201.0595 4631.613 3201.0595\",\"id\":\"gge4761\"}}]}#@$TEXT~N~4616.632~3197.056~0.6~90~0~3~~4.5~1k\u03a9~M 4616.412 3195.7261 C 4616.172 3195.7361 4615.942 3195.7361 4615.712 3195.7361 L 4614.332 3195.7361 L 4613.702 3195.7161 L 4613.652 3195.7761 L 4613.892 3196.6761 L 4614.042 3196.6761 L 4613.992 3196.0961 L 4615.712 3196.0961 C 4615.942 3196.0961 4616.172 3196.0961 4616.412 3196.1061 L 4616.492 3196.7261 L 4616.632 3196.7261 L 4616.632 3195.1161 L 4616.492 3195.1161 Z M 4616.452 3192.7361 L 4615.262 3193.4761 L 4614.752 3192.9761 L 4614.702 3192.5661 L 4614.552 3192.5661 L 4614.552 3193.5761 L 4614.702 3193.5761 L 4614.772 3193.2361 L 4615.592 3194.0261 L 4614.052 3194.0261 L 4613.422 3194.0061 L 4613.392 3194.0661 L 4613.572 3194.7361 L 4613.712 3194.7361 L 4613.742 3194.3861 L 4615.712 3194.3861 C 4615.952 3194.3861 4616.212 3194.3861 4616.452 3194.3961 L 4616.492 3194.7361 L 4616.632 3194.7361 L 4616.632 3193.6761 L 4616.492 3193.6761 L 4616.452 3194.0161 C 4616.242 3194.0161 4616.022 3194.0261 4615.812 3194.0261 L 4615.512 3193.7361 L 4616.632 3193.0561 L 4616.632 3192.4561 L 4616.492 3192.4561 Z M 4615.892 3189.6561 L 4616.322 3189.7561 L 4616.322 3190.3761 L 4616.322 3190.3761 C 4616.002 3189.9261 4615.532 3189.5761 4614.962 3189.5761 C 4614.102 3189.5761 4613.632 3190.1761 4613.632 3190.8561 C 4613.632 3191.5361 4614.102 3192.1361 4614.962 3192.1361 C 4615.532 3192.1361 4616.002 3191.7761 4616.322 3191.3261 L 4616.322 3191.3261 L 4616.322 3191.9461 L 4615.892 3192.0561 L 4615.892 3192.2761 L 4616.632 3192.2361 L 4616.632 3191.0661 L 4616.362 3191.0661 C 4616.032 3191.4761 4615.512 3191.7261 4614.962 3191.7261 C 4614.312 3191.7261 4613.822 3191.4061 4613.822 3190.8561 C 4613.822 3190.3061 4614.312 3189.9761 4614.962 3189.9761 C 4615.512 3189.9761 4616.032 3190.2361 4616.362 3190.6461 L 4616.632 3190.6461 L 4616.632 3189.4661 L 4615.892 3189.4261 Z~none~gge6300~NotoSerifCJKsc-Medium~0~#@$TEXT~P~4629.172~3200.623~0.6~90~0~3~~4.5~R4~M 4624.632 3200.6225 L 4628.922 3200.6225 M 4624.632 3200.6225 L 4624.632 3198.7825 L 4624.832 3198.1725 L 4625.042 3197.9625 L 4625.452 3197.7625 L 4625.862 3197.7625 L 4626.272 3197.9625 L 4626.472 3198.1725 L 4626.672 3198.7825 L 4626.672 3200.6225 M 4626.672 3199.1925 L 4628.922 3197.7625 M 4624.632 3194.3625 L 4627.492 3196.4125 L 4627.492 3193.3425 M 4624.632 3194.3625 L 4628.922 3194.3625~~gge4728~~0~#@$TRACK~0.6~3~~4637.7826 3195.2477 4637.7826 3190.1889 4630.5614 3190.1889 4630.5614 3195.2477~gge4749~0#@$TRACK~0.6~3~~4637.7826 3198.9973 4637.7826 3204.0561 4630.5614 3204.0561 4630.5614 3198.9973~gge4752~0#@$PAD~RECT~4634.172~3193.185~4.4588~5.4213~1~+3.3V~2~0~4636.8826 3195.4147 4631.4614 3195.4147 4631.4614 3190.9559 4636.8826 3190.9559~90~gge4764~0~~Y~0~-393.7008~0.2000~4634.172,3193.1853#@$PAD~RECT~4634.172~3201.06~4.4588~5.4213~1~IN2~1~0~4636.8826 3198.8303 4631.4614 3198.8303 4631.4614 3203.2891 4636.8826 3203.2891~90~gge4776~0~~Y~0~-393.7008~0.2000~4634.172,3201.0597","LIB~4667~3254.5~package`R0805`Contributor`lcsc`link`https:\/\/item.szlcsc.com\/142685.html`3DModel`R0805_L2.0-W1.3-H0.6`BOM_Supplier`LCSC`BOM_Manufacturer`UNI-ROYAL(\u539a\u58f0)`BOM_Manufacturer Part`0805W8F1000T5E`nameAlias`Resistance`BOM_Supplier Part`C17408`Resistance (Ohms)`100`BOM_JLCPCB Part Class`Basic Part`spicePre`R`spiceSymbolName`0805W8F1000T5E`~~~gge0aeeefe9c8546927~1~b60f399a7a7e41848b2be1eb49c79141~1667381294~0~~yes~~#@$SOLIDREGION~100~~M 4663.063 3257.0098 L 4663.063 3251.9902 L 4664.6378 3251.9902 L 4664.6378 3257.0098 Z ~solid~gge4797~~~~0#@$SOLIDREGION~100~~M 4670.937 3257.0098 L 4670.937 3251.9902 L 4669.3622 3251.9902 L 4669.3622 3257.0098 Z ~solid~gge4800~~~~0#@$SOLIDREGION~99~~M 4663.063 3257.0098 L 4663.063 3251.9902 L 4670.937 3251.9902 L 4670.937 3257.0098 Z ~solid~gge4803~~~~0#@$SOLIDREGION~5~~M 4660.307 3257.0197 L 4660.307 3251.9804 L 4660.5039 3251.7835 L 4665.0315 3251.7835 L 4665.2283 3251.9804 L 4665.2481 3253.5947 L 4663.4764 3253.5947 L 4663.4764 3255.3663 L 4665.2087 3255.3663 L 4665.2283 3257.0197 L 4665.0315 3257.2166 L 4660.5039 3257.2166 Z ~solid~gge4806~~~~0#@$SOLIDREGION~5~~M 4668.7716 3257.0197 L 4668.7717 3255.3663 L 4670.5236 3255.3663 L 4670.5236 3253.5947 L 4668.7914 3253.5947 L 4668.7716 3251.9804 L 4668.9685 3251.7835 L 4673.496 3251.7835 L 4673.6929 3251.9804 L 4673.6929 3257.0197 L 4673.496 3257.2166 L 4668.9685 3257.2166 Z ~solid~gge4809~~~~0#@$CIRCLE~4663.063~3257.01~0.118~0.2362~101~gge4818~0~~#@$SVGNODE~{\"gId\":\"gge4821\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"7.874\",\"c_height\":\"5.1181\",\"c_rotation\":\"0,0,0\",\"z\":\"0\",\"c_origin\":\"4667,3254.5\",\"uuid\":\"c7acac53bcbc44d68fbab8f60a747688\",\"c_etype\":\"outline3D\",\"title\":\"R0805_L2.0-W1.3-H0.6\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge4821\"},\"childNodes\":[{\"gId\":\"gge4824\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4663.063 3251.941 4663.063 3257.0591 4663.2598 3257.0591 4663.8504 3257.0591 4664.2441 3257.0591 4664.6378 3257.0591 4667.1968 3257.0591 4669.3622 3257.0591 4669.7559 3257.0591 4670.1496 3257.0591 4670.7401 3257.0591 4670.937 3257.0591 4670.937 3251.941 4670.7401 3251.941 4670.1496 3251.941 4669.7559 3251.941 4669.3622 3251.941 4667.1968 3251.941 4664.6378 3251.941 4664.2441 3251.941 4663.8504 3251.941 4663.2598 3251.941 4663.063 3251.941 4663.063 3251.941\",\"id\":\"gge4824\"}}]}#@$TEXT~N~4667.066~3236.96~0.6~0~0~3~~4.5~100\u03a9~M 4668.3964 3236.74 C 4668.3864 3236.5 4668.3864 3236.27 4668.3864 3236.04 L 4668.3864 3234.66 L 4668.4064 3234.03 L 4668.3464 3233.98 L 4667.4464 3234.22 L 4667.4464 3234.37 L 4668.0264 3234.32 L 4668.0264 3236.04 C 4668.0264 3236.27 4668.0264 3236.5 4668.0164 3236.74 L 4667.3964 3236.82 L 4667.3964 3236.96 L 4669.0064 3236.96 L 4669.0064 3236.82 Z M 4669.8264 3235.47 C 4669.8264 3234.42 4670.0864 3234.14 4670.3664 3234.14 C 4670.6364 3234.14 4670.8864 3234.42 4670.8864 3235.47 C 4670.8864 3236.56 4670.6364 3236.85 4670.3664 3236.85 C 4670.0864 3236.85 4669.8264 3236.56 4669.8264 3235.47 Z M 4670.3664 3233.97 C 4669.8964 3233.97 4669.4464 3234.38 4669.4464 3235.47 C 4669.4464 3236.6 4669.8964 3237.02 4670.3664 3237.02 C 4670.8264 3237.02 4671.2764 3236.6 4671.2764 3235.47 C 4671.2764 3234.38 4670.8264 3233.97 4670.3664 3233.97 Z M 4672.0264 3235.47 C 4672.0264 3234.42 4672.2864 3234.14 4672.5664 3234.14 C 4672.8264 3234.14 4673.0864 3234.42 4673.0864 3235.47 C 4673.0864 3236.56 4672.8264 3236.85 4672.5664 3236.85 C 4672.2864 3236.85 4672.0264 3236.56 4672.0264 3235.47 Z M 4672.5664 3233.97 C 4672.0864 3233.97 4671.6364 3234.38 4671.6364 3235.47 C 4671.6364 3236.6 4672.0864 3237.02 4672.5664 3237.02 C 4673.0264 3237.02 4673.4764 3236.6 4673.4764 3235.47 C 4673.4764 3234.38 4673.0264 3233.97 4672.5664 3233.97 Z M 4676.4564 3236.22 L 4676.3464 3236.65 L 4675.7264 3236.65 L 4675.7264 3236.65 C 4676.1864 3236.33 4676.5364 3235.86 4676.5364 3235.29 C 4676.5364 3234.43 4675.9364 3233.96 4675.2564 3233.96 C 4674.5764 3233.96 4673.9764 3234.43 4673.9764 3235.29 C 4673.9764 3235.86 4674.3364 3236.33 4674.7864 3236.65 L 4674.7864 3236.65 L 4674.1664 3236.65 L 4674.0564 3236.22 L 4673.8264 3236.22 L 4673.8764 3236.96 L 4675.0464 3236.96 L 4675.0464 3236.69 C 4674.6364 3236.36 4674.3864 3235.84 4674.3864 3235.29 C 4674.3864 3234.64 4674.7064 3234.15 4675.2564 3234.15 C 4675.8064 3234.15 4676.1264 3234.64 4676.1264 3235.29 C 4676.1264 3235.84 4675.8764 3236.36 4675.4664 3236.69 L 4675.4664 3236.96 L 4676.6464 3236.96 L 4676.6864 3236.22 Z ~none~gge6303~NotoSerifCJKsc-Medium~0~#@$TEXT~P~4667~3249.5~0.6~0~0~3~~4.5~R5~M 4667 3244.96 L 4667 3249.25 M 4667 3244.96 L 4668.84 3244.96 L 4669.45 3245.16 L 4669.66 3245.37 L 4669.86 3245.78 L 4669.86 3246.19 L 4669.66 3246.6 L 4669.45 3246.8 L 4668.84 3247 L 4667 3247 M 4668.43 3247 L 4669.86 3249.25 M 4673.67 3244.96 L 4671.62 3244.96 L 4671.42 3246.8 L 4671.62 3246.6 L 4672.24 3246.39 L 4672.85 3246.39 L 4673.46 3246.6 L 4673.87 3247 L 4674.08 3247.62 L 4674.08 3248.03 L 4673.87 3248.64 L 4673.46 3249.05 L 4672.85 3249.25 L 4672.24 3249.25 L 4671.62 3249.05 L 4671.42 3248.85 L 4671.21 3248.44~~gge4791~~0~#@$TRACK~0.6~3~~4668.8748 3258.1106 4673.9336 3258.1106 4673.9336 3250.8894 4668.8748 3250.8894~gge4812~0#@$TRACK~0.6~3~~4665.1252 3258.1106 4660.0664 3258.1106 4660.0664 3250.8894 4665.1252 3250.8894~gge4815~0#@$PAD~RECT~4670.937~3254.5~4.4588~5.4213~1~OPTO3_1~2~0~4668.7078 3257.2106 4668.7078 3251.7894 4673.1666 3251.7894 4673.1666 3257.2106~0~gge4827~0~~Y~0~-393.7008~0.2000~4670.9372,3254.5#@$PAD~RECT~4663.063~3254.5~4.4588~5.4213~1~OUT_CHARGE_EN~1~0~4665.2922 3257.2106 4665.2922 3251.7894 4660.8334 3251.7894 4660.8334 3257.2106~0~gge4839~0~~Y~0~-393.7008~0.2000~4663.0628,3254.5","LIB~4666~3298~package`R0805`Contributor`lcsc`link`https:\/\/item.szlcsc.com\/142685.html`3DModel`R0805_L2.0-W1.3-H0.6`BOM_Supplier`LCSC`BOM_Manufacturer`UNI-ROYAL(\u539a\u58f0)`BOM_Manufacturer Part`0805W8F2000T5E`nameAlias`Resistance`BOM_Supplier Part`C17540`Resistance (Ohms)`200`BOM_JLCPCB Part Class`Basic Part`spicePre`R`spiceSymbolName`0805W8F2000T5E`~~~gge0d90fd6291f02125~1~b60f399a7a7e41848b2be1eb49c79141~1667381294~0~~yes~~#@$SOLIDREGION~100~~M 4662.063 3300.5098 L 4662.063 3295.4902 L 4663.6378 3295.4902 L 4663.6378 3300.5098 Z ~solid~gge4860~~~~0#@$SOLIDREGION~100~~M 4669.937 3300.5098 L 4669.937 3295.4902 L 4668.3622 3295.4902 L 4668.3622 3300.5098 Z ~solid~gge4863~~~~0#@$SOLIDREGION~99~~M 4662.063 3300.5098 L 4662.063 3295.4902 L 4669.937 3295.4902 L 4669.937 3300.5098 Z ~solid~gge4866~~~~0#@$SOLIDREGION~5~~M 4659.307 3300.5197 L 4659.307 3295.4804 L 4659.5039 3295.2835 L 4664.0315 3295.2835 L 4664.2283 3295.4804 L 4664.2481 3297.0947 L 4662.4764 3297.0947 L 4662.4764 3298.8663 L 4664.2087 3298.8663 L 4664.2283 3300.5197 L 4664.0315 3300.7166 L 4659.5039 3300.7166 Z ~solid~gge4869~~~~0#@$SOLIDREGION~5~~M 4667.7716 3300.5197 L 4667.7717 3298.8663 L 4669.5236 3298.8663 L 4669.5236 3297.0947 L 4667.7914 3297.0947 L 4667.7716 3295.4804 L 4667.9685 3295.2835 L 4672.496 3295.2835 L 4672.6929 3295.4804 L 4672.6929 3300.5197 L 4672.496 3300.7166 L 4667.9685 3300.7166 Z ~solid~gge4872~~~~0#@$CIRCLE~4662.063~3300.51~0.118~0.2362~101~gge4881~0~~#@$SVGNODE~{\"gId\":\"gge4884\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"7.874\",\"c_height\":\"5.1181\",\"c_rotation\":\"0,0,0\",\"z\":\"0\",\"c_origin\":\"4666,3298.0001\",\"uuid\":\"c7acac53bcbc44d68fbab8f60a747688\",\"c_etype\":\"outline3D\",\"title\":\"R0805_L2.0-W1.3-H0.6\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge4884\"},\"childNodes\":[{\"gId\":\"gge4887\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4662.063 3295.441 4662.063 3300.5591 4662.2598 3300.5591 4662.8504 3300.5591 4663.2441 3300.5591 4663.6378 3300.5591 4666.1968 3300.5591 4668.3622 3300.5591 4668.7559 3300.5591 4669.1496 3300.5591 4669.7401 3300.5591 4669.937 3300.5591 4669.937 3295.441 4669.7401 3295.441 4669.1496 3295.441 4668.7559 3295.441 4668.3622 3295.441 4666.1968 3295.441 4663.6378 3295.441 4663.2441 3295.441 4662.8504 3295.441 4662.2598 3295.441 4662.063 3295.441 4662.063 3295.441\",\"id\":\"gge4887\"}}]}#@$TEXT~N~4665.066~3280.46~0.6~0~0~3~~4.5~200\u03a9~M 4665.5664 3280.12 C 4665.7664 3279.91 4665.9664 3279.71 4666.0764 3279.59 C 4666.7364 3278.9 4666.9564 3278.62 4666.9564 3278.24 C 4666.9564 3277.79 4666.7064 3277.47 4666.1464 3277.47 C 4665.7064 3277.47 4665.3264 3277.69 4665.2664 3278.13 C 4665.3064 3278.21 4665.3864 3278.26 4665.4764 3278.26 C 4665.5864 3278.26 4665.6664 3278.19 4665.7164 3277.99 L 4665.8064 3277.67 C 4665.8964 3277.65 4665.9764 3277.64 4666.0364 3277.64 C 4666.3664 3277.64 4666.5764 3277.89 4666.5764 3278.26 C 4666.5764 3278.62 4666.3764 3278.95 4665.9464 3279.44 C 4665.7564 3279.66 4665.5264 3279.92 4665.2864 3280.19 L 4665.2864 3280.46 L 4667.0864 3280.46 L 4667.0864 3280.12 Z M 4667.8264 3278.97 C 4667.8264 3277.92 4668.0864 3277.64 4668.3664 3277.64 C 4668.6364 3277.64 4668.8864 3277.92 4668.8864 3278.97 C 4668.8864 3280.06 4668.6364 3280.35 4668.3664 3280.35 C 4668.0864 3280.35 4667.8264 3280.06 4667.8264 3278.97 Z M 4668.3664 3277.47 C 4667.8964 3277.47 4667.4464 3277.88 4667.4464 3278.97 C 4667.4464 3280.1 4667.8964 3280.52 4668.3664 3280.52 C 4668.8264 3280.52 4669.2764 3280.1 4669.2764 3278.97 C 4669.2764 3277.88 4668.8264 3277.47 4668.3664 3277.47 Z M 4670.0264 3278.97 C 4670.0264 3277.92 4670.2864 3277.64 4670.5664 3277.64 C 4670.8264 3277.64 4671.0864 3277.92 4671.0864 3278.97 C 4671.0864 3280.06 4670.8264 3280.35 4670.5664 3280.35 C 4670.2864 3280.35 4670.0264 3280.06 4670.0264 3278.97 Z M 4670.5664 3277.47 C 4670.0864 3277.47 4669.6364 3277.88 4669.6364 3278.97 C 4669.6364 3280.1 4670.0864 3280.52 4670.5664 3280.52 C 4671.0264 3280.52 4671.4764 3280.1 4671.4764 3278.97 C 4671.4764 3277.88 4671.0264 3277.47 4670.5664 3277.47 Z M 4674.4564 3279.72 L 4674.3464 3280.15 L 4673.7264 3280.15 L 4673.7264 3280.15 C 4674.1864 3279.83 4674.5364 3279.36 4674.5364 3278.79 C 4674.5364 3277.93 4673.9364 3277.46 4673.2564 3277.46 C 4672.5764 3277.46 4671.9764 3277.93 4671.9764 3278.79 C 4671.9764 3279.36 4672.3364 3279.83 4672.7864 3280.15 L 4672.7864 3280.15 L 4672.1664 3280.15 L 4672.0564 3279.72 L 4671.8264 3279.72 L 4671.8764 3280.46 L 4673.0464 3280.46 L 4673.0464 3280.19 C 4672.6364 3279.86 4672.3864 3279.34 4672.3864 3278.79 C 4672.3864 3278.14 4672.7064 3277.65 4673.2564 3277.65 C 4673.8064 3277.65 4674.1264 3278.14 4674.1264 3278.79 C 4674.1264 3279.34 4673.8764 3279.86 4673.4664 3280.19 L 4673.4664 3280.46 L 4674.6464 3280.46 L 4674.6864 3279.72 Z ~none~gge6306~NotoSerifCJKsc-Medium~0~#@$TEXT~P~4663.5~3293.5~0.6~0~0~3~~4.5~R6~M 4663.5 3288.96 L 4663.5 3293.25 M 4663.5 3288.96 L 4665.34 3288.96 L 4665.95 3289.16 L 4666.16 3289.37 L 4666.36 3289.78 L 4666.36 3290.19 L 4666.16 3290.6 L 4665.95 3290.8 L 4665.34 3291 L 4663.5 3291 M 4664.93 3291 L 4666.36 3293.25 M 4670.17 3289.57 L 4669.96 3289.16 L 4669.35 3288.96 L 4668.94 3288.96 L 4668.33 3289.16 L 4667.92 3289.78 L 4667.71 3290.8 L 4667.71 3291.82 L 4667.92 3292.64 L 4668.33 3293.05 L 4668.94 3293.25 L 4669.15 3293.25 L 4669.76 3293.05 L 4670.17 3292.64 L 4670.37 3292.03 L 4670.37 3291.82 L 4670.17 3291.21 L 4669.76 3290.8 L 4669.15 3290.6 L 4668.94 3290.6 L 4668.33 3290.8 L 4667.92 3291.21 L 4667.71 3291.82~~gge4854~~0~#@$TRACK~0.6~3~~4667.8748 3301.6106 4672.9336 3301.6106 4672.9336 3294.3894 4667.8748 3294.3894~gge4875~0#@$TRACK~0.6~3~~4664.1252 3301.6106 4659.0664 3301.6106 4659.0664 3294.3894 4664.1252 3294.3894~gge4878~0#@$PAD~RECT~4669.937~3298~4.4588~5.4213~1~OUT1~2~0~4667.7078 3300.7106 4667.7078 3295.2894 4672.1666 3295.2894 4672.1666 3300.7106~0~gge4890~0~~Y~0~-393.7008~0.2000~4669.9372,3298#@$PAD~RECT~4662.063~3298~4.4588~5.4213~1~OPTO3_4~1~0~4664.2922 3300.7106 4664.2922 3295.2894 4659.8334 3295.2894 4659.8334 3300.7106~0~gge4902~0~~Y~0~-393.7008~0.2000~4662.0628,3298","LIB~4500.314~3140.036~Contributor`\u0421\u0435\u0440\u0433\u0435\u0439 \u0422\u0440\u0435\u043f\u0443\u0437`package`ESP32 DEVKITC V4 38PINS`link`https:\/\/esp-idf.readthedocs.io\/en\/latest\/get-started\/get-started-devkitc.html?highlight=devkitc`BOM_Manufacturer`Espressif`BOM_Manufacturer Part`ESP32-DevKitC-32D`BOM_Supplier`Mouser`BOM_Supplier Part`356-ESP32-DEVKITC32D`spicePre`U`spiceSymbolName`ESP32D DEVKITC V4 38PINS`~180~~gge4139414e19567ccd~1~4b1ac445c04c4ae5910d74fea4eb2a37~1643451833~1~~none~~#@$TEXT~N~4426.634~3307.826~0.6~0~0~3~~4.5~ESP32D DEVKITC V4 38PINS~M 4426.6339 3303.2858 L 4426.6339 3307.5758 M 4426.6339 3303.2858 L 4429.2939 3303.2858 M 4426.6339 3305.3258 L 4428.2739 3305.3258 M 4426.6339 3307.5758 L 4429.2939 3307.5758 M 4433.5039 3303.8958 L 4433.0939 3303.4858 L 4432.4839 3303.2858 L 4431.6639 3303.2858 L 4431.0539 3303.4858 L 4430.6439 3303.8958 L 4430.6439 3304.3058 L 4430.8439 3304.7158 L 4431.0539 3304.9258 L 4431.4639 3305.1258 L 4432.6839 3305.5358 L 4433.0939 3305.7358 L 4433.3039 3305.9458 L 4433.5039 3306.3558 L 4433.5039 3306.9658 L 4433.0939 3307.3758 L 4432.4839 3307.5758 L 4431.6639 3307.5758 L 4431.0539 3307.3758 L 4430.6439 3306.9658 M 4434.8539 3303.2858 L 4434.8539 3307.5758 M 4434.8539 3303.2858 L 4436.6939 3303.2858 L 4437.3139 3303.4858 L 4437.5139 3303.6958 L 4437.7239 3304.1058 L 4437.7239 3304.7158 L 4437.5139 3305.1258 L 4437.3139 3305.3258 L 4436.6939 3305.5358 L 4434.8539 3305.5358 M 4439.4839 3303.2858 L 4441.7339 3303.2858 L 4440.5039 3304.9258 L 4441.1139 3304.9258 L 4441.5239 3305.1258 L 4441.7339 3305.3258 L 4441.9339 3305.9458 L 4441.9339 3306.3558 L 4441.7339 3306.9658 L 4441.3239 3307.3758 L 4440.7039 3307.5758 L 4440.0939 3307.5758 L 4439.4839 3307.3758 L 4439.2739 3307.1758 L 4439.0739 3306.7658 M 4443.4839 3304.3058 L 4443.4839 3304.1058 L 4443.6939 3303.6958 L 4443.8939 3303.4858 L 4444.3039 3303.2858 L 4445.1239 3303.2858 L 4445.5339 3303.4858 L 4445.7339 3303.6958 L 4445.9439 3304.1058 L 4445.9439 3304.5158 L 4445.7339 3304.9258 L 4445.3339 3305.5358 L 4443.2839 3307.5758 L 4446.1439 3307.5758 M 4447.4939 3303.2858 L 4447.4939 3307.5758 M 4447.4939 3303.2858 L 4448.9339 3303.2858 L 4449.5439 3303.4858 L 4449.9539 3303.8958 L 4450.1539 3304.3058 L 4450.3639 3304.9258 L 4450.3639 3305.9458 L 4450.1539 3306.5558 L 4449.9539 3306.9658 L 4449.5439 3307.3758 L 4448.9339 3307.5758 L 4447.4939 3307.5758 M 4454.8639 3303.2858 L 4454.8639 3307.5758 M 4454.8639 3303.2858 L 4456.2939 3303.2858 L 4456.9039 3303.4858 L 4457.3139 3303.8958 L 4457.5239 3304.3058 L 4457.7239 3304.9258 L 4457.7239 3305.9458 L 4457.5239 3306.5558 L 4457.3139 3306.9658 L 4456.9039 3307.3758 L 4456.2939 3307.5758 L 4454.8639 3307.5758 M 4459.0739 3303.2858 L 4459.0739 3307.5758 M 4459.0739 3303.2858 L 4461.7339 3303.2858 M 4459.0739 3305.3258 L 4460.7139 3305.3258 M 4459.0739 3307.5758 L 4461.7339 3307.5758 M 4463.0839 3303.2858 L 4464.7239 3307.5758 M 4466.3539 3303.2858 L 4464.7239 3307.5758 M 4467.7039 3303.2858 L 4467.7039 3307.5758 M 4470.5739 3303.2858 L 4467.7039 3306.1458 M 4468.7339 3305.1258 L 4470.5739 3307.5758 M 4471.9239 3303.2858 L 4471.9239 3307.5758 M 4474.7039 3303.2858 L 4474.7039 3307.5758 M 4473.2739 3303.2858 L 4476.1339 3303.2858 M 4480.5539 3304.3058 L 4480.3439 3303.8958 L 4479.9339 3303.4858 L 4479.5339 3303.2858 L 4478.7139 3303.2858 L 4478.3039 3303.4858 L 4477.8939 3303.8958 L 4477.6839 3304.3058 L 4477.4839 3304.9258 L 4477.4839 3305.9458 L 4477.6839 3306.5558 L 4477.8939 3306.9658 L 4478.3039 3307.3758 L 4478.7139 3307.5758 L 4479.5339 3307.5758 L 4479.9339 3307.3758 L 4480.3439 3306.9658 L 4480.5539 3306.5558 M 4485.0539 3303.2858 L 4486.6839 3307.5758 M 4488.3239 3303.2858 L 4486.6839 3307.5758 M 4491.7239 3303.2858 L 4489.6739 3306.1458 L 4492.7439 3306.1458 M 4491.7239 3303.2858 L 4491.7239 3307.5758 M 4497.6539 3303.2858 L 4499.9039 3303.2858 L 4498.6739 3304.9258 L 4499.2839 3304.9258 L 4499.6939 3305.1258 L 4499.9039 3305.3258 L 4500.1039 3305.9458 L 4500.1039 3306.3558 L 4499.9039 3306.9658 L 4499.4939 3307.3758 L 4498.8839 3307.5758 L 4498.2639 3307.5758 L 4497.6539 3307.3758 L 4497.4439 3307.1758 L 4497.2439 3306.7658 M 4502.4839 3303.2858 L 4501.8639 3303.4858 L 4501.6639 3303.8958 L 4501.6639 3304.3058 L 4501.8639 3304.7158 L 4502.2739 3304.9258 L 4503.0939 3305.1258 L 4503.7039 3305.3258 L 4504.1139 3305.7358 L 4504.3239 3306.1458 L 4504.3239 3306.7658 L 4504.1139 3307.1758 L 4503.9139 3307.3758 L 4503.2939 3307.5758 L 4502.4839 3307.5758 L 4501.8639 3307.3758 L 4501.6639 3307.1758 L 4501.4539 3306.7658 L 4501.4539 3306.1458 L 4501.6639 3305.7358 L 4502.0739 3305.3258 L 4502.6839 3305.1258 L 4503.5039 3304.9258 L 4503.9139 3304.7158 L 4504.1139 3304.3058 L 4504.1139 3303.8958 L 4503.9139 3303.4858 L 4503.2939 3303.2858 L 4502.4839 3303.2858 M 4505.6739 3303.2858 L 4505.6739 3307.5758 M 4505.6739 3303.2858 L 4507.5139 3303.2858 L 4508.1239 3303.4858 L 4508.3339 3303.6958 L 4508.5339 3304.1058 L 4508.5339 3304.7158 L 4508.3339 3305.1258 L 4508.1239 3305.3258 L 4507.5139 3305.5358 L 4505.6739 3305.5358 M 4509.8839 3303.2858 L 4509.8839 3307.5758 M 4511.2339 3303.2858 L 4511.2339 3307.5758 M 4511.2339 3303.2858 L 4514.0939 3307.5758 M 4514.0939 3303.2858 L 4514.0939 3307.5758 M 4518.3139 3303.8958 L 4517.9039 3303.4858 L 4517.2839 3303.2858 L 4516.4739 3303.2858 L 4515.8539 3303.4858 L 4515.4439 3303.8958 L 4515.4439 3304.3058 L 4515.6539 3304.7158 L 4515.8539 3304.9258 L 4516.2639 3305.1258 L 4517.4939 3305.5358 L 4517.9039 3305.7358 L 4518.1039 3305.9458 L 4518.3139 3306.3558 L 4518.3139 3306.9658 L 4517.9039 3307.3758 L 4517.2839 3307.5758 L 4516.4739 3307.5758 L 4515.8539 3307.3758 L 4515.4439 3306.9658~none~gge4920~~0~#@$TEXT~P~4518.314~3296.036~0.6~180~0~3~~4.5~U3~M 4518.314 3300.576 L 4518.314 3297.506 L 4518.114 3296.896 L 4517.704 3296.486 L 4517.084 3296.286 L 4516.674 3296.286 L 4516.064 3296.486 L 4515.654 3296.896 L 4515.454 3297.506 L 4515.454 3300.576 M 4513.694 3300.576 L 4511.444 3300.576 L 4512.664 3298.936 L 4512.054 3298.936 L 4511.644 3298.736 L 4511.444 3298.536 L 4511.234 3297.916 L 4511.234 3297.506 L 4511.444 3296.896 L 4511.854 3296.486 L 4512.464 3296.286 L 4513.074 3296.286 L 4513.694 3296.486 L 4513.894 3296.686 L 4514.104 3297.096~none~gge4926~~0~#@$TRACK~1~3~~4532.314 3104.036 4532.814 3101.736~gge4932~0#@$TRACK~1~3~~4503.814 3104.036 4503.6138 3101.736~gge4935~0#@$TRACK~1~3~~4532.7139 3104.036 4503.7139 3104.036~gge4938~0#@$TRACK~1~3~~4463.314 3108.036 4463.314 3290.036~gge4941~0#@$TRACK~1~3~~4573.314 3108.036 4573.314 3290.036~gge4944~0#@$TRACK~1~3~~4569.251 3294.036 4466.8887 3294.036~gge4947~0#@$TRACK~1~3~~4467.1485 3104.036 4569.4795 3104.036~gge4950~0#@$TRACK~1~3~~4502.7139 3099.6361 4503.4278 3099.173~gge4953~0#@$TRACK~1~3~~4503.7139 3101.4359 4502.7139 3099.736~gge4956~0#@$TRACK~1~3~~4533.0279 3099.173 4531.9278 3100.973~gge4959~0#@$TRACK~1~3~~4533.814 3099.6361 4533.0279 3099.173~gge4962~0#@$TRACK~1~3~~4532.7139 3101.4359 4533.7139 3099.736~gge4965~0#@$TRACK~1~3~~4506.0279 3100.5731 4506.0279 3099.7731~gge4968~0#@$TRACK~1~3~~4506.0279 3100.673 4506.0279 3100.5731~gge4971~0#@$TRACK~1~3~~4530.4278 3100.5731 4530.4278 3099.7731~gge4974~0#@$TRACK~1~3~~4530.4278 3100.673 4530.4278 3100.5731~gge4977~0#@$TRACK~1~3~~4529.8282 3099.173 4506.628 3099.173~gge4980~0#@$TRACK~1~3~~4529.8282 3099.973 4506.628 3099.973~gge4983~0#@$TRACK~1~3~~4504.628 3101.473 4505.1138 3101.4359~gge4986~0#@$TRACK~1~3~~4503.6138 3101.536 4504.628 3101.473~gge4989~0#@$TRACK~1~3~~4531.8282 3101.473 4532.814 3101.4359~gge4992~0#@$TRACK~1~3~~4531.2139 3101.336 4531.8282 3101.473~gge4995~0#@$TRACK~1~3~~4503.4278 3099.173 4504.5279 3100.8729~gge4998~0#@$ARC~1~3~~M 4532.114 3101.436 A 2.0436 2.0436 0 0 1 4530.364 3100.826~~gge5001~0#@$ARC~1~3~~M 4530.364 3100.646 A 0.591 0.591 0 0 0 4529.764 3100.076~~gge5004~0#@$ARC~1~3~~M 4530.364 3099.836 A 0.591 0.591 0 0 0 4529.764 3099.226~~gge5007~0#@$ARC~1~3~~M 4506.554 3099.226 A 0.591 0.591 0 0 0 4505.954 3099.836~~gge5010~0#@$ARC~1~3~~M 4506.554 3100.076 A 0.591 0.591 0 0 0 4505.954 3100.646~~gge5013~0#@$ARC~1~3~~M 4505.954 3100.826 A 1.6548 1.6548 0 0 1 4504.414 3101.436~~gge5016~0#@$ARC~1~3~~M 4531.874 3101.036 A 0.6167 0.6167 0 0 0 4531.714 3101.436~~gge5019~0#@$ARC~1~3~~M 4504.424 3101.016 A 0.6165 0.6165 0 0 1 4504.514 3101.436~~gge5022~0#@$ARC~1~3~~M 4573.314 3290.036 A 3.937 3.937 0 0 1 4569.377 3293.973~~gge5025~0#@$ARC~1~3~~M 4467.314 3294.036 A 4.0454 4.0454 0 0 1 4463.314 3290.036~~gge5028~0#@$ARC~1~3~~M 4463.3455 3108.0046 A 3.937 3.937 0 0 1 4467.2825 3104.0676~~gge5031~0#@$ARC~1~3~~M 4569.3457 3104.0676 A 3.937 3.937 0 0 1 4573.2827 3108.0046~~gge5034~0#@$TEXT~L~4562.314~3287.036~0.2~270~0~3~~1.5~3V3~M 4563.824 3287.176 L 4563.824 3287.926 L 4563.284 3287.516 L 4563.284 3287.716 L 4563.214 3287.856 L 4563.144 3287.926 L 4562.944 3287.986 L 4562.804 3287.986 L 4562.604 3287.926 L 4562.464 3287.786 L 4562.394 3287.586 L 4562.394 3287.376 L 4562.464 3287.176 L 4562.534 3287.106 L 4562.664 3287.036 M 4563.824 3288.436 L 4562.394 3288.986 M 4563.824 3289.536 L 4562.394 3288.986 M 4563.824 3290.116 L 4563.824 3290.866 L 4563.284 3290.456 L 4563.284 3290.666 L 4563.214 3290.796 L 4563.144 3290.866 L 4562.944 3290.936 L 4562.804 3290.936 L 4562.604 3290.866 L 4562.464 3290.736 L 4562.394 3290.526 L 4562.394 3290.326 L 4562.464 3290.116 L 4562.534 3290.046 L 4562.664 3289.986~~gge5037~~0~#@$TEXT~L~4527.814~3101.036~0.25~180~0~3~~1.5~ESP32 DEVKIT V4~M 4527.814 3102.546 L 4527.814 3101.116 M 4527.814 3102.546 L 4526.924 3102.546 M 4527.814 3101.866 L 4527.264 3101.866 M 4527.814 3101.116 L 4526.924 3101.116 M 4525.524 3102.346 L 4525.664 3102.486 L 4525.864 3102.546 L 4526.134 3102.546 L 4526.344 3102.486 L 4526.474 3102.346 L 4526.474 3102.206 L 4526.414 3102.076 L 4526.344 3102.006 L 4526.204 3101.936 L 4525.794 3101.796 L 4525.664 3101.736 L 4525.594 3101.666 L 4525.524 3101.526 L 4525.524 3101.326 L 4525.664 3101.186 L 4525.864 3101.116 L 4526.134 3101.116 L 4526.344 3101.186 L 4526.474 3101.326 M 4525.074 3102.546 L 4525.074 3101.116 M 4525.074 3102.546 L 4524.464 3102.546 L 4524.254 3102.486 L 4524.184 3102.416 L 4524.114 3102.276 L 4524.114 3102.076 L 4524.184 3101.936 L 4524.254 3101.866 L 4524.464 3101.796 L 4525.074 3101.796 M 4523.534 3102.546 L 4522.784 3102.546 L 4523.194 3102.006 L 4522.984 3102.006 L 4522.854 3101.936 L 4522.784 3101.866 L 4522.714 3101.666 L 4522.714 3101.526 L 4522.784 3101.326 L 4522.914 3101.186 L 4523.124 3101.116 L 4523.324 3101.116 L 4523.534 3101.186 L 4523.604 3101.256 L 4523.664 3101.386 M 4522.194 3102.206 L 4522.194 3102.276 L 4522.124 3102.416 L 4522.064 3102.486 L 4521.924 3102.546 L 4521.654 3102.546 L 4521.514 3102.486 L 4521.444 3102.416 L 4521.374 3102.276 L 4521.374 3102.136 L 4521.444 3102.006 L 4521.584 3101.796 L 4522.264 3101.116 L 4521.314 3101.116 M 4519.814 3102.546 L 4519.814 3101.116 M 4519.814 3102.546 L 4519.334 3102.546 L 4519.124 3102.486 L 4518.994 3102.346 L 4518.924 3102.206 L 4518.854 3102.006 L 4518.854 3101.666 L 4518.924 3101.456 L 4518.994 3101.326 L 4519.124 3101.186 L 4519.334 3101.116 L 4519.814 3101.116 M 4518.404 3102.546 L 4518.404 3101.116 M 4518.404 3102.546 L 4517.514 3102.546 M 4518.404 3101.866 L 4517.864 3101.866 M 4518.404 3101.116 L 4517.514 3101.116 M 4517.064 3102.546 L 4516.524 3101.116 M 4515.974 3102.546 L 4516.524 3101.116 M 4515.524 3102.546 L 4515.524 3101.116 M 4514.574 3102.546 L 4515.524 3101.596 M 4515.184 3101.936 L 4514.574 3101.116 M 4514.124 3102.546 L 4514.124 3101.116 M 4513.194 3102.546 L 4513.194 3101.116 M 4513.674 3102.546 L 4512.714 3102.546 M 4511.214 3102.546 L 4510.674 3101.116 M 4510.124 3102.546 L 4510.674 3101.116 M 4508.994 3102.546 L 4509.674 3101.596 L 4508.654 3101.596 M 4508.994 3102.546 L 4508.994 3101.116~~gge5043~~0~#@$TEXT~L~4562.814~3247.036~0.2~270~0~3~~1.5~IO34~M 4564.324 3247.036 L 4562.894 3247.036 M 4564.324 3247.896 L 4564.264 3247.756 L 4564.124 3247.626 L 4563.984 3247.556 L 4563.784 3247.486 L 4563.444 3247.486 L 4563.234 3247.556 L 4563.104 3247.626 L 4562.964 3247.756 L 4562.894 3247.896 L 4562.894 3248.166 L 4562.964 3248.306 L 4563.104 3248.436 L 4563.234 3248.506 L 4563.444 3248.576 L 4563.784 3248.576 L 4563.984 3248.506 L 4564.124 3248.436 L 4564.264 3248.306 L 4564.324 3248.166 L 4564.324 3247.896 M 4564.324 3249.166 L 4564.324 3249.916 L 4563.784 3249.506 L 4563.784 3249.706 L 4563.714 3249.846 L 4563.644 3249.916 L 4563.444 3249.986 L 4563.304 3249.986 L 4563.104 3249.916 L 4562.964 3249.776 L 4562.894 3249.576 L 4562.894 3249.366 L 4562.964 3249.166 L 4563.034 3249.096 L 4563.164 3249.026 M 4564.324 3251.116 L 4563.374 3250.436 L 4563.374 3251.456 M 4564.324 3251.116 L 4562.894 3251.116~~gge5049~~0~#@$TEXT~L~4562.814~3257.536~0.2~270~0~3~~1.5~VN~M 4564.324 3257.536 L 4562.894 3258.086 M 4564.324 3258.626 L 4562.894 3258.086 M 4564.324 3259.076 L 4562.894 3259.076 M 4564.324 3259.076 L 4562.894 3260.036 M 4564.324 3260.036 L 4562.894 3260.036~~gge5055~~0~#@$TEXT~L~4562.314~3267.536~0.2~270~0~3~~1.5~VP~M 4563.824 3267.536 L 4562.394 3268.086 M 4563.824 3268.626 L 4562.394 3268.086 M 4563.824 3269.076 L 4562.394 3269.076 M 4563.824 3269.076 L 4563.824 3269.686 L 4563.764 3269.896 L 4563.694 3269.966 L 4563.554 3270.036 L 4563.354 3270.036 L 4563.214 3269.966 L 4563.144 3269.896 L 4563.074 3269.686 L 4563.074 3269.076~~gge5061~~0~#@$TEXT~L~4562.314~3278.036~0.2~270~0~3~~1.5~EN~M 4563.824 3278.036 L 4562.394 3278.036 M 4563.824 3278.036 L 4563.824 3278.926 M 4563.144 3278.036 L 4563.144 3278.586 M 4562.394 3278.036 L 4562.394 3278.926 M 4563.824 3279.376 L 4562.394 3279.376 M 4563.824 3279.376 L 4562.394 3280.326 M 4563.824 3280.326 L 4562.394 3280.326~~gge5067~~0~#@$TEXT~L~4562.814~3237.036~0.2~270~0~3~~1.5~IO35~M 4564.324 3237.036 L 4562.894 3237.036 M 4564.324 3237.896 L 4564.264 3237.756 L 4564.124 3237.626 L 4563.984 3237.556 L 4563.784 3237.486 L 4563.444 3237.486 L 4563.234 3237.556 L 4563.104 3237.626 L 4562.964 3237.756 L 4562.894 3237.896 L 4562.894 3238.166 L 4562.964 3238.306 L 4563.104 3238.436 L 4563.234 3238.506 L 4563.444 3238.576 L 4563.784 3238.576 L 4563.984 3238.506 L 4564.124 3238.436 L 4564.264 3238.306 L 4564.324 3238.166 L 4564.324 3237.896 M 4564.324 3239.166 L 4564.324 3239.916 L 4563.784 3239.506 L 4563.784 3239.706 L 4563.714 3239.846 L 4563.644 3239.916 L 4563.444 3239.986 L 4563.304 3239.986 L 4563.104 3239.916 L 4562.964 3239.776 L 4562.894 3239.576 L 4562.894 3239.366 L 4562.964 3239.166 L 4563.034 3239.096 L 4563.164 3239.026 M 4564.324 3241.246 L 4564.324 3240.566 L 4563.714 3240.496 L 4563.784 3240.566 L 4563.854 3240.776 L 4563.854 3240.976 L 4563.784 3241.186 L 4563.644 3241.316 L 4563.444 3241.386 L 4563.304 3241.386 L 4563.104 3241.316 L 4562.964 3241.186 L 4562.894 3240.976 L 4562.894 3240.776 L 4562.964 3240.566 L 4563.034 3240.496 L 4563.164 3240.436~~gge5073~~0~#@$TEXT~L~4562.814~3227.036~0.2~270~0~3~~1.5~IO32~M 4564.324 3227.036 L 4562.894 3227.036 M 4564.324 3227.896 L 4564.264 3227.756 L 4564.124 3227.626 L 4563.984 3227.556 L 4563.784 3227.486 L 4563.444 3227.486 L 4563.234 3227.556 L 4563.104 3227.626 L 4562.964 3227.756 L 4562.894 3227.896 L 4562.894 3228.166 L 4562.964 3228.306 L 4563.104 3228.436 L 4563.234 3228.506 L 4563.444 3228.576 L 4563.784 3228.576 L 4563.984 3228.506 L 4564.124 3228.436 L 4564.264 3228.306 L 4564.324 3228.166 L 4564.324 3227.896 M 4564.324 3229.166 L 4564.324 3229.916 L 4563.784 3229.506 L 4563.784 3229.706 L 4563.714 3229.846 L 4563.644 3229.916 L 4563.444 3229.986 L 4563.304 3229.986 L 4563.104 3229.916 L 4562.964 3229.776 L 4562.894 3229.576 L 4562.894 3229.366 L 4562.964 3229.166 L 4563.034 3229.096 L 4563.164 3229.026 M 4563.984 3230.496 L 4564.054 3230.496 L 4564.194 3230.566 L 4564.264 3230.636 L 4564.324 3230.776 L 4564.324 3231.046 L 4564.264 3231.186 L 4564.194 3231.246 L 4564.054 3231.316 L 4563.914 3231.316 L 4563.784 3231.246 L 4563.574 3231.116 L 4562.894 3230.436 L 4562.894 3231.386~~gge5079~~0~#@$TEXT~L~4562.814~3197.036~0.2~270~0~3~~1.5~IO26~M 4564.324 3197.036 L 4562.894 3197.036 M 4564.324 3197.896 L 4564.264 3197.756 L 4564.124 3197.626 L 4563.984 3197.556 L 4563.784 3197.486 L 4563.444 3197.486 L 4563.234 3197.556 L 4563.104 3197.626 L 4562.964 3197.756 L 4562.894 3197.896 L 4562.894 3198.166 L 4562.964 3198.306 L 4563.104 3198.436 L 4563.234 3198.506 L 4563.444 3198.576 L 4563.784 3198.576 L 4563.984 3198.506 L 4564.124 3198.436 L 4564.264 3198.306 L 4564.324 3198.166 L 4564.324 3197.896 M 4563.984 3199.096 L 4564.054 3199.096 L 4564.194 3199.166 L 4564.264 3199.236 L 4564.324 3199.366 L 4564.324 3199.636 L 4564.264 3199.776 L 4564.194 3199.846 L 4564.054 3199.916 L 4563.914 3199.916 L 4563.784 3199.846 L 4563.574 3199.706 L 4562.894 3199.026 L 4562.894 3199.986 M 4564.124 3201.246 L 4564.264 3201.186 L 4564.324 3200.976 L 4564.324 3200.836 L 4564.264 3200.636 L 4564.054 3200.496 L 4563.714 3200.436 L 4563.374 3200.436 L 4563.104 3200.496 L 4562.964 3200.636 L 4562.894 3200.836 L 4562.894 3200.906 L 4562.964 3201.116 L 4563.104 3201.246 L 4563.304 3201.316 L 4563.374 3201.316 L 4563.574 3201.246 L 4563.714 3201.116 L 4563.784 3200.906 L 4563.784 3200.836 L 4563.714 3200.636 L 4563.574 3200.496 L 4563.374 3200.436~~gge5085~~0~#@$TEXT~L~4562.814~3207.036~0.2~270~0~3~~1.5~IO25~M 4564.324 3207.036 L 4562.894 3207.036 M 4564.324 3207.896 L 4564.264 3207.756 L 4564.124 3207.626 L 4563.984 3207.556 L 4563.784 3207.486 L 4563.444 3207.486 L 4563.234 3207.556 L 4563.104 3207.626 L 4562.964 3207.756 L 4562.894 3207.896 L 4562.894 3208.166 L 4562.964 3208.306 L 4563.104 3208.436 L 4563.234 3208.506 L 4563.444 3208.576 L 4563.784 3208.576 L 4563.984 3208.506 L 4564.124 3208.436 L 4564.264 3208.306 L 4564.324 3208.166 L 4564.324 3207.896 M 4563.984 3209.096 L 4564.054 3209.096 L 4564.194 3209.166 L 4564.264 3209.236 L 4564.324 3209.366 L 4564.324 3209.636 L 4564.264 3209.776 L 4564.194 3209.846 L 4564.054 3209.916 L 4563.914 3209.916 L 4563.784 3209.846 L 4563.574 3209.706 L 4562.894 3209.026 L 4562.894 3209.986 M 4564.324 3211.246 L 4564.324 3210.566 L 4563.714 3210.496 L 4563.784 3210.566 L 4563.854 3210.776 L 4563.854 3210.976 L 4563.784 3211.186 L 4563.644 3211.316 L 4563.444 3211.386 L 4563.304 3211.386 L 4563.104 3211.316 L 4562.964 3211.186 L 4562.894 3210.976 L 4562.894 3210.776 L 4562.964 3210.566 L 4563.034 3210.496 L 4563.164 3210.436~~gge5091~~0~#@$TEXT~L~4562.814~3217.036~0.2~270~0~3~~1.5~IO33~M 4564.324 3217.036 L 4562.894 3217.036 M 4564.324 3217.896 L 4564.264 3217.756 L 4564.124 3217.626 L 4563.984 3217.556 L 4563.784 3217.486 L 4563.444 3217.486 L 4563.234 3217.556 L 4563.104 3217.626 L 4562.964 3217.756 L 4562.894 3217.896 L 4562.894 3218.166 L 4562.964 3218.306 L 4563.104 3218.436 L 4563.234 3218.506 L 4563.444 3218.576 L 4563.784 3218.576 L 4563.984 3218.506 L 4564.124 3218.436 L 4564.264 3218.306 L 4564.324 3218.166 L 4564.324 3217.896 M 4564.324 3219.166 L 4564.324 3219.916 L 4563.784 3219.506 L 4563.784 3219.706 L 4563.714 3219.846 L 4563.644 3219.916 L 4563.444 3219.986 L 4563.304 3219.986 L 4563.104 3219.916 L 4562.964 3219.776 L 4562.894 3219.576 L 4562.894 3219.366 L 4562.964 3219.166 L 4563.034 3219.096 L 4563.164 3219.026 M 4564.324 3220.566 L 4564.324 3221.316 L 4563.784 3220.906 L 4563.784 3221.116 L 4563.714 3221.246 L 4563.644 3221.316 L 4563.444 3221.386 L 4563.304 3221.386 L 4563.104 3221.316 L 4562.964 3221.186 L 4562.894 3220.976 L 4562.894 3220.776 L 4562.964 3220.566 L 4563.034 3220.496 L 4563.164 3220.436~~gge5097~~0~#@$TEXT~L~4562.814~3157.036~0.2~270~0~3~~1.5~GND~M 4563.984 3158.056 L 4564.124 3157.986 L 4564.264 3157.856 L 4564.324 3157.716 L 4564.324 3157.446 L 4564.264 3157.306 L 4564.124 3157.176 L 4563.984 3157.106 L 4563.784 3157.036 L 4563.444 3157.036 L 4563.234 3157.106 L 4563.104 3157.176 L 4562.964 3157.306 L 4562.894 3157.446 L 4562.894 3157.716 L 4562.964 3157.856 L 4563.104 3157.986 L 4563.234 3158.056 L 4563.444 3158.056 M 4563.444 3157.716 L 4563.444 3158.056 M 4564.324 3158.506 L 4562.894 3158.506 M 4564.324 3158.506 L 4562.894 3159.466 M 4564.324 3159.466 L 4562.894 3159.466 M 4564.324 3159.916 L 4562.894 3159.916 M 4564.324 3159.916 L 4564.324 3160.386 L 4564.264 3160.596 L 4564.124 3160.736 L 4563.984 3160.796 L 4563.784 3160.866 L 4563.444 3160.866 L 4563.234 3160.796 L 4563.104 3160.736 L 4562.964 3160.596 L 4562.894 3160.386 L 4562.894 3159.916~~gge5103~~0~#@$TEXT~L~4562.814~3167.036~0.2~270~0~3~~1.5~IO12~M 4564.324 3167.036 L 4562.894 3167.036 M 4564.324 3167.896 L 4564.264 3167.756 L 4564.124 3167.626 L 4563.984 3167.556 L 4563.784 3167.486 L 4563.444 3167.486 L 4563.234 3167.556 L 4563.104 3167.626 L 4562.964 3167.756 L 4562.894 3167.896 L 4562.894 3168.166 L 4562.964 3168.306 L 4563.104 3168.436 L 4563.234 3168.506 L 4563.444 3168.576 L 4563.784 3168.576 L 4563.984 3168.506 L 4564.124 3168.436 L 4564.264 3168.306 L 4564.324 3168.166 L 4564.324 3167.896 M 4564.054 3169.026 L 4564.124 3169.166 L 4564.324 3169.366 L 4562.894 3169.366 M 4563.984 3169.886 L 4564.054 3169.886 L 4564.194 3169.956 L 4564.264 3170.026 L 4564.324 3170.156 L 4564.324 3170.436 L 4564.264 3170.566 L 4564.194 3170.636 L 4564.054 3170.706 L 4563.914 3170.706 L 4563.784 3170.636 L 4563.574 3170.496 L 4562.894 3169.816 L 4562.894 3170.776~~gge5109~~0~#@$TEXT~L~4562.814~3177.536~0.2~270~0~3~~1.5~IO14~M 4564.324 3177.536 L 4562.894 3177.536 M 4564.324 3178.396 L 4564.264 3178.256 L 4564.124 3178.126 L 4563.984 3178.056 L 4563.784 3177.986 L 4563.444 3177.986 L 4563.234 3178.056 L 4563.104 3178.126 L 4562.964 3178.256 L 4562.894 3178.396 L 4562.894 3178.666 L 4562.964 3178.806 L 4563.104 3178.936 L 4563.234 3179.006 L 4563.444 3179.076 L 4563.784 3179.076 L 4563.984 3179.006 L 4564.124 3178.936 L 4564.264 3178.806 L 4564.324 3178.666 L 4564.324 3178.396 M 4564.054 3179.526 L 4564.124 3179.666 L 4564.324 3179.866 L 4562.894 3179.866 M 4564.324 3180.996 L 4563.374 3180.316 L 4563.374 3181.336 M 4564.324 3180.996 L 4562.894 3180.996~~gge5115~~0~#@$TEXT~L~4562.814~3187.036~0.2~270~0~3~~1.5~IO27~M 4564.324 3187.036 L 4562.894 3187.036 M 4564.324 3187.896 L 4564.264 3187.756 L 4564.124 3187.626 L 4563.984 3187.556 L 4563.784 3187.486 L 4563.444 3187.486 L 4563.234 3187.556 L 4563.104 3187.626 L 4562.964 3187.756 L 4562.894 3187.896 L 4562.894 3188.166 L 4562.964 3188.306 L 4563.104 3188.436 L 4563.234 3188.506 L 4563.444 3188.576 L 4563.784 3188.576 L 4563.984 3188.506 L 4564.124 3188.436 L 4564.264 3188.306 L 4564.324 3188.166 L 4564.324 3187.896 M 4563.984 3189.096 L 4564.054 3189.096 L 4564.194 3189.166 L 4564.264 3189.236 L 4564.324 3189.366 L 4564.324 3189.636 L 4564.264 3189.776 L 4564.194 3189.846 L 4564.054 3189.916 L 4563.914 3189.916 L 4563.784 3189.846 L 4563.574 3189.706 L 4562.894 3189.026 L 4562.894 3189.986 M 4564.324 3191.386 L 4562.894 3190.706 M 4564.324 3190.436 L 4564.324 3191.386~~gge5121~~0~#@$TEXT~L~4562.814~3108.036~0.2~270~0~3~~1.5~5V~M 4564.324 3108.856 L 4564.324 3108.176 L 4563.714 3108.106 L 4563.784 3108.176 L 4563.854 3108.376 L 4563.854 3108.586 L 4563.784 3108.786 L 4563.644 3108.926 L 4563.444 3108.986 L 4563.304 3108.986 L 4563.104 3108.926 L 4562.964 3108.786 L 4562.894 3108.586 L 4562.894 3108.376 L 4562.964 3108.176 L 4563.034 3108.106 L 4563.164 3108.036 M 4564.324 3109.436 L 4562.894 3109.986 M 4564.324 3110.536 L 4562.894 3109.986~~gge5127~~0~#@$TEXT~L~4562.814~3118.036~0.2~270~0~3~~1.5~IO11~M 4564.324 3118.036 L 4562.894 3118.036 M 4564.324 3118.896 L 4564.264 3118.756 L 4564.124 3118.626 L 4563.984 3118.556 L 4563.784 3118.486 L 4563.444 3118.486 L 4563.234 3118.556 L 4563.104 3118.626 L 4562.964 3118.756 L 4562.894 3118.896 L 4562.894 3119.166 L 4562.964 3119.306 L 4563.104 3119.436 L 4563.234 3119.506 L 4563.444 3119.576 L 4563.784 3119.576 L 4563.984 3119.506 L 4564.124 3119.436 L 4564.264 3119.306 L 4564.324 3119.166 L 4564.324 3118.896 M 4564.054 3120.026 L 4564.124 3120.166 L 4564.324 3120.366 L 4562.894 3120.366 M 4564.054 3120.816 L 4564.124 3120.956 L 4564.324 3121.156 L 4562.894 3121.156~~gge5133~~0~#@$TEXT~L~4562.314~3127.536~0.2~270~0~3~~1.5~IO10~M 4563.824 3127.536 L 4562.394 3127.536 M 4563.824 3128.396 L 4563.764 3128.256 L 4563.624 3128.126 L 4563.484 3128.056 L 4563.284 3127.986 L 4562.944 3127.986 L 4562.734 3128.056 L 4562.604 3128.126 L 4562.464 3128.256 L 4562.394 3128.396 L 4562.394 3128.666 L 4562.464 3128.806 L 4562.604 3128.936 L 4562.734 3129.006 L 4562.944 3129.076 L 4563.284 3129.076 L 4563.484 3129.006 L 4563.624 3128.936 L 4563.764 3128.806 L 4563.824 3128.666 L 4563.824 3128.396 M 4563.554 3129.526 L 4563.624 3129.666 L 4563.824 3129.866 L 4562.394 3129.866 M 4563.824 3130.726 L 4563.764 3130.526 L 4563.554 3130.386 L 4563.214 3130.316 L 4563.014 3130.316 L 4562.664 3130.386 L 4562.464 3130.526 L 4562.394 3130.726 L 4562.394 3130.866 L 4562.464 3131.066 L 4562.664 3131.206 L 4563.014 3131.276 L 4563.214 3131.276 L 4563.554 3131.206 L 4563.764 3131.066 L 4563.824 3130.866 L 4563.824 3130.726~~gge5139~~0~#@$TEXT~L~4562.814~3137.536~0.2~270~0~3~~1.5~IO9~M 4564.324 3137.536 L 4562.894 3137.536 M 4564.324 3138.396 L 4564.264 3138.256 L 4564.124 3138.126 L 4563.984 3138.056 L 4563.784 3137.986 L 4563.444 3137.986 L 4563.234 3138.056 L 4563.104 3138.126 L 4562.964 3138.256 L 4562.894 3138.396 L 4562.894 3138.666 L 4562.964 3138.806 L 4563.104 3138.936 L 4563.234 3139.006 L 4563.444 3139.076 L 4563.784 3139.076 L 4563.984 3139.006 L 4564.124 3138.936 L 4564.264 3138.806 L 4564.324 3138.666 L 4564.324 3138.396 M 4563.854 3140.416 L 4563.644 3140.346 L 4563.514 3140.206 L 4563.444 3140.006 L 4563.444 3139.936 L 4563.514 3139.736 L 4563.644 3139.596 L 4563.854 3139.526 L 4563.914 3139.526 L 4564.124 3139.596 L 4564.264 3139.736 L 4564.324 3139.936 L 4564.324 3140.006 L 4564.264 3140.206 L 4564.124 3140.346 L 4563.854 3140.416 L 4563.514 3140.416 L 4563.164 3140.346 L 4562.964 3140.206 L 4562.894 3140.006 L 4562.894 3139.866 L 4562.964 3139.666 L 4563.104 3139.596~~gge5145~~0~#@$TEXT~L~4562.814~3147.036~0.2~270~0~3~~1.5~IO13~M 4564.324 3147.036 L 4562.894 3147.036 M 4564.324 3147.896 L 4564.264 3147.756 L 4564.124 3147.626 L 4563.984 3147.556 L 4563.784 3147.486 L 4563.444 3147.486 L 4563.234 3147.556 L 4563.104 3147.626 L 4562.964 3147.756 L 4562.894 3147.896 L 4562.894 3148.166 L 4562.964 3148.306 L 4563.104 3148.436 L 4563.234 3148.506 L 4563.444 3148.576 L 4563.784 3148.576 L 4563.984 3148.506 L 4564.124 3148.436 L 4564.264 3148.306 L 4564.324 3148.166 L 4564.324 3147.896 M 4564.054 3149.026 L 4564.124 3149.166 L 4564.324 3149.366 L 4562.894 3149.366 M 4564.324 3149.956 L 4564.324 3150.706 L 4563.784 3150.296 L 4563.784 3150.496 L 4563.714 3150.636 L 4563.644 3150.706 L 4563.444 3150.776 L 4563.304 3150.776 L 4563.104 3150.706 L 4562.964 3150.566 L 4562.894 3150.366 L 4562.894 3150.156 L 4562.964 3149.956 L 4563.034 3149.886 L 4563.164 3149.816~~gge5151~~0~#@$TEXT~L~4472.314~3287.036~0.2~270~0~3~~1.5~GND~M 4473.484 3288.056 L 4473.624 3287.986 L 4473.764 3287.856 L 4473.824 3287.716 L 4473.824 3287.446 L 4473.764 3287.306 L 4473.624 3287.176 L 4473.484 3287.106 L 4473.284 3287.036 L 4472.944 3287.036 L 4472.734 3287.106 L 4472.604 3287.176 L 4472.464 3287.306 L 4472.394 3287.446 L 4472.394 3287.716 L 4472.464 3287.856 L 4472.604 3287.986 L 4472.734 3288.056 L 4472.944 3288.056 M 4472.944 3287.716 L 4472.944 3288.056 M 4473.824 3288.506 L 4472.394 3288.506 M 4473.824 3288.506 L 4472.394 3289.466 M 4473.824 3289.466 L 4472.394 3289.466 M 4473.824 3289.916 L 4472.394 3289.916 M 4473.824 3289.916 L 4473.824 3290.386 L 4473.764 3290.596 L 4473.624 3290.736 L 4473.484 3290.796 L 4473.284 3290.866 L 4472.944 3290.866 L 4472.734 3290.796 L 4472.604 3290.736 L 4472.464 3290.596 L 4472.394 3290.386 L 4472.394 3289.916~~gge5157~~0~#@$TEXT~L~4472.314~3276.536~0.2~270~0~3~~1.5~IO23~M 4473.824 3276.536 L 4472.394 3276.536 M 4473.824 3277.396 L 4473.764 3277.256 L 4473.624 3277.126 L 4473.484 3277.056 L 4473.284 3276.986 L 4472.944 3276.986 L 4472.734 3277.056 L 4472.604 3277.126 L 4472.464 3277.256 L 4472.394 3277.396 L 4472.394 3277.666 L 4472.464 3277.806 L 4472.604 3277.936 L 4472.734 3278.006 L 4472.944 3278.076 L 4473.284 3278.076 L 4473.484 3278.006 L 4473.624 3277.936 L 4473.764 3277.806 L 4473.824 3277.666 L 4473.824 3277.396 M 4473.484 3278.596 L 4473.554 3278.596 L 4473.694 3278.666 L 4473.764 3278.736 L 4473.824 3278.866 L 4473.824 3279.136 L 4473.764 3279.276 L 4473.694 3279.346 L 4473.554 3279.416 L 4473.414 3279.416 L 4473.284 3279.346 L 4473.074 3279.206 L 4472.394 3278.526 L 4472.394 3279.486 M 4473.824 3280.066 L 4473.824 3280.816 L 4473.284 3280.406 L 4473.284 3280.616 L 4473.214 3280.746 L 4473.144 3280.816 L 4472.944 3280.886 L 4472.804 3280.886 L 4472.604 3280.816 L 4472.464 3280.686 L 4472.394 3280.476 L 4472.394 3280.276 L 4472.464 3280.066 L 4472.534 3279.996 L 4472.664 3279.936~~gge5163~~0~#@$TEXT~L~4472.314~3266.536~0.2~270~0~3~~1.5~IO22~M 4473.824 3266.536 L 4472.394 3266.536 M 4473.824 3267.396 L 4473.764 3267.256 L 4473.624 3267.126 L 4473.484 3267.056 L 4473.284 3266.986 L 4472.944 3266.986 L 4472.734 3267.056 L 4472.604 3267.126 L 4472.464 3267.256 L 4472.394 3267.396 L 4472.394 3267.666 L 4472.464 3267.806 L 4472.604 3267.936 L 4472.734 3268.006 L 4472.944 3268.076 L 4473.284 3268.076 L 4473.484 3268.006 L 4473.624 3267.936 L 4473.764 3267.806 L 4473.824 3267.666 L 4473.824 3267.396 M 4473.484 3268.596 L 4473.554 3268.596 L 4473.694 3268.666 L 4473.764 3268.736 L 4473.824 3268.866 L 4473.824 3269.136 L 4473.764 3269.276 L 4473.694 3269.346 L 4473.554 3269.416 L 4473.414 3269.416 L 4473.284 3269.346 L 4473.074 3269.206 L 4472.394 3268.526 L 4472.394 3269.486 M 4473.484 3269.996 L 4473.554 3269.996 L 4473.694 3270.066 L 4473.764 3270.136 L 4473.824 3270.276 L 4473.824 3270.546 L 4473.764 3270.686 L 4473.694 3270.746 L 4473.554 3270.816 L 4473.414 3270.816 L 4473.284 3270.746 L 4473.074 3270.616 L 4472.394 3269.936 L 4472.394 3270.886~~gge5169~~0~#@$TEXT~L~4472.314~3257.536~0.2~270~0~3~~1.5~IOI1~M 4473.824 3257.536 L 4472.394 3257.536 M 4473.824 3258.396 L 4473.764 3258.256 L 4473.624 3258.126 L 4473.484 3258.056 L 4473.284 3257.986 L 4472.944 3257.986 L 4472.734 3258.056 L 4472.604 3258.126 L 4472.464 3258.256 L 4472.394 3258.396 L 4472.394 3258.666 L 4472.464 3258.806 L 4472.604 3258.936 L 4472.734 3259.006 L 4472.944 3259.076 L 4473.284 3259.076 L 4473.484 3259.006 L 4473.624 3258.936 L 4473.764 3258.806 L 4473.824 3258.666 L 4473.824 3258.396 M 4473.824 3259.526 L 4472.394 3259.526 M 4473.554 3259.976 L 4473.624 3260.116 L 4473.824 3260.316 L 4472.394 3260.316~~gge5175~~0~#@$TEXT~L~4472.314~3247.536~0.2~270~0~3~~1.5~IO3~M 4473.824 3247.536 L 4472.394 3247.536 M 4473.824 3248.396 L 4473.764 3248.256 L 4473.624 3248.126 L 4473.484 3248.056 L 4473.284 3247.986 L 4472.944 3247.986 L 4472.734 3248.056 L 4472.604 3248.126 L 4472.464 3248.256 L 4472.394 3248.396 L 4472.394 3248.666 L 4472.464 3248.806 L 4472.604 3248.936 L 4472.734 3249.006 L 4472.944 3249.076 L 4473.284 3249.076 L 4473.484 3249.006 L 4473.624 3248.936 L 4473.764 3248.806 L 4473.824 3248.666 L 4473.824 3248.396 M 4473.824 3249.666 L 4473.824 3250.416 L 4473.284 3250.006 L 4473.284 3250.206 L 4473.214 3250.346 L 4473.144 3250.416 L 4472.944 3250.486 L 4472.804 3250.486 L 4472.604 3250.416 L 4472.464 3250.276 L 4472.394 3250.076 L 4472.394 3249.866 L 4472.464 3249.666 L 4472.534 3249.596 L 4472.664 3249.526~~gge5181~~0~#@$TEXT~L~4472.314~3237.036~0.2~270~0~3~~1.5~IO21~M 4473.824 3237.036 L 4472.394 3237.036 M 4473.824 3237.896 L 4473.764 3237.756 L 4473.624 3237.626 L 4473.484 3237.556 L 4473.284 3237.486 L 4472.944 3237.486 L 4472.734 3237.556 L 4472.604 3237.626 L 4472.464 3237.756 L 4472.394 3237.896 L 4472.394 3238.166 L 4472.464 3238.306 L 4472.604 3238.436 L 4472.734 3238.506 L 4472.944 3238.576 L 4473.284 3238.576 L 4473.484 3238.506 L 4473.624 3238.436 L 4473.764 3238.306 L 4473.824 3238.166 L 4473.824 3237.896 M 4473.484 3239.096 L 4473.554 3239.096 L 4473.694 3239.166 L 4473.764 3239.236 L 4473.824 3239.366 L 4473.824 3239.636 L 4473.764 3239.776 L 4473.694 3239.846 L 4473.554 3239.916 L 4473.414 3239.916 L 4473.284 3239.846 L 4473.074 3239.706 L 4472.394 3239.026 L 4472.394 3239.986 M 4473.554 3240.436 L 4473.624 3240.566 L 4473.824 3240.776 L 4472.394 3240.776~~gge5187~~0~#@$TEXT~L~4472.314~3227.036~0.2~270~0~3~~1.5~GND~M 4473.484 3228.056 L 4473.624 3227.986 L 4473.764 3227.856 L 4473.824 3227.716 L 4473.824 3227.446 L 4473.764 3227.306 L 4473.624 3227.176 L 4473.484 3227.106 L 4473.284 3227.036 L 4472.944 3227.036 L 4472.734 3227.106 L 4472.604 3227.176 L 4472.464 3227.306 L 4472.394 3227.446 L 4472.394 3227.716 L 4472.464 3227.856 L 4472.604 3227.986 L 4472.734 3228.056 L 4472.944 3228.056 M 4472.944 3227.716 L 4472.944 3228.056 M 4473.824 3228.506 L 4472.394 3228.506 M 4473.824 3228.506 L 4472.394 3229.466 M 4473.824 3229.466 L 4472.394 3229.466 M 4473.824 3229.916 L 4472.394 3229.916 M 4473.824 3229.916 L 4473.824 3230.386 L 4473.764 3230.596 L 4473.624 3230.736 L 4473.484 3230.796 L 4473.284 3230.866 L 4472.944 3230.866 L 4472.734 3230.796 L 4472.604 3230.736 L 4472.464 3230.596 L 4472.394 3230.386 L 4472.394 3229.916~~gge5193~~0~#@$TEXT~L~4472.314~3217.036~0.2~270~0~3~~1.5~IO19~M 4473.824 3217.036 L 4472.394 3217.036 M 4473.824 3217.896 L 4473.764 3217.756 L 4473.624 3217.626 L 4473.484 3217.556 L 4473.284 3217.486 L 4472.944 3217.486 L 4472.734 3217.556 L 4472.604 3217.626 L 4472.464 3217.756 L 4472.394 3217.896 L 4472.394 3218.166 L 4472.464 3218.306 L 4472.604 3218.436 L 4472.734 3218.506 L 4472.944 3218.576 L 4473.284 3218.576 L 4473.484 3218.506 L 4473.624 3218.436 L 4473.764 3218.306 L 4473.824 3218.166 L 4473.824 3217.896 M 4473.554 3219.026 L 4473.624 3219.166 L 4473.824 3219.366 L 4472.394 3219.366 M 4473.354 3220.706 L 4473.144 3220.636 L 4473.014 3220.496 L 4472.944 3220.296 L 4472.944 3220.226 L 4473.014 3220.026 L 4473.144 3219.886 L 4473.354 3219.816 L 4473.414 3219.816 L 4473.624 3219.886 L 4473.764 3220.026 L 4473.824 3220.226 L 4473.824 3220.296 L 4473.764 3220.496 L 4473.624 3220.636 L 4473.354 3220.706 L 4473.014 3220.706 L 4472.664 3220.636 L 4472.464 3220.496 L 4472.394 3220.296 L 4472.394 3220.156 L 4472.464 3219.956 L 4472.604 3219.886~~gge5199~~0~#@$TEXT~L~4472.314~3207.036~0.2~270~0~3~~1.5~IO18~M 4473.824 3207.036 L 4472.394 3207.036 M 4473.824 3207.896 L 4473.764 3207.756 L 4473.624 3207.626 L 4473.484 3207.556 L 4473.284 3207.486 L 4472.944 3207.486 L 4472.734 3207.556 L 4472.604 3207.626 L 4472.464 3207.756 L 4472.394 3207.896 L 4472.394 3208.166 L 4472.464 3208.306 L 4472.604 3208.436 L 4472.734 3208.506 L 4472.944 3208.576 L 4473.284 3208.576 L 4473.484 3208.506 L 4473.624 3208.436 L 4473.764 3208.306 L 4473.824 3208.166 L 4473.824 3207.896 M 4473.554 3209.026 L 4473.624 3209.166 L 4473.824 3209.366 L 4472.394 3209.366 M 4473.824 3210.156 L 4473.764 3209.956 L 4473.624 3209.886 L 4473.484 3209.886 L 4473.354 3209.956 L 4473.284 3210.086 L 4473.214 3210.366 L 4473.144 3210.566 L 4473.014 3210.706 L 4472.874 3210.776 L 4472.664 3210.776 L 4472.534 3210.706 L 4472.464 3210.636 L 4472.394 3210.436 L 4472.394 3210.156 L 4472.464 3209.956 L 4472.534 3209.886 L 4472.664 3209.816 L 4472.874 3209.816 L 4473.014 3209.886 L 4473.144 3210.026 L 4473.214 3210.226 L 4473.284 3210.496 L 4473.354 3210.636 L 4473.484 3210.706 L 4473.624 3210.706 L 4473.764 3210.636 L 4473.824 3210.436 L 4473.824 3210.156~~gge5205~~0~#@$TEXT~L~4472.314~3197.536~0.2~270~0~3~~1.5~IO5~M 4473.824 3197.536 L 4472.394 3197.536 M 4473.824 3198.396 L 4473.764 3198.256 L 4473.624 3198.126 L 4473.484 3198.056 L 4473.284 3197.986 L 4472.944 3197.986 L 4472.734 3198.056 L 4472.604 3198.126 L 4472.464 3198.256 L 4472.394 3198.396 L 4472.394 3198.666 L 4472.464 3198.806 L 4472.604 3198.936 L 4472.734 3199.006 L 4472.944 3199.076 L 4473.284 3199.076 L 4473.484 3199.006 L 4473.624 3198.936 L 4473.764 3198.806 L 4473.824 3198.666 L 4473.824 3198.396 M 4473.824 3200.346 L 4473.824 3199.666 L 4473.214 3199.596 L 4473.284 3199.666 L 4473.354 3199.866 L 4473.354 3200.076 L 4473.284 3200.276 L 4473.144 3200.416 L 4472.944 3200.486 L 4472.804 3200.486 L 4472.604 3200.416 L 4472.464 3200.276 L 4472.394 3200.076 L 4472.394 3199.866 L 4472.464 3199.666 L 4472.534 3199.596 L 4472.664 3199.526~~gge5211~~0~#@$TEXT~L~4472.314~3187.036~0.2~270~0~3~~1.5~IO17~M 4473.824 3187.036 L 4472.394 3187.036 M 4473.824 3187.896 L 4473.764 3187.756 L 4473.624 3187.626 L 4473.484 3187.556 L 4473.284 3187.486 L 4472.944 3187.486 L 4472.734 3187.556 L 4472.604 3187.626 L 4472.464 3187.756 L 4472.394 3187.896 L 4472.394 3188.166 L 4472.464 3188.306 L 4472.604 3188.436 L 4472.734 3188.506 L 4472.944 3188.576 L 4473.284 3188.576 L 4473.484 3188.506 L 4473.624 3188.436 L 4473.764 3188.306 L 4473.824 3188.166 L 4473.824 3187.896 M 4473.554 3189.026 L 4473.624 3189.166 L 4473.824 3189.366 L 4472.394 3189.366 M 4473.824 3190.776 L 4472.394 3190.086 M 4473.824 3189.816 L 4473.824 3190.776~~gge5217~~0~#@$TEXT~L~4472.314~3177.036~0.2~270~0~3~~1.5~IO16~M 4473.824 3177.036 L 4472.394 3177.036 M 4473.824 3177.896 L 4473.764 3177.756 L 4473.624 3177.626 L 4473.484 3177.556 L 4473.284 3177.486 L 4472.944 3177.486 L 4472.734 3177.556 L 4472.604 3177.626 L 4472.464 3177.756 L 4472.394 3177.896 L 4472.394 3178.166 L 4472.464 3178.306 L 4472.604 3178.436 L 4472.734 3178.506 L 4472.944 3178.576 L 4473.284 3178.576 L 4473.484 3178.506 L 4473.624 3178.436 L 4473.764 3178.306 L 4473.824 3178.166 L 4473.824 3177.896 M 4473.554 3179.026 L 4473.624 3179.166 L 4473.824 3179.366 L 4472.394 3179.366 M 4473.624 3180.636 L 4473.764 3180.566 L 4473.824 3180.366 L 4473.824 3180.226 L 4473.764 3180.026 L 4473.554 3179.886 L 4473.214 3179.816 L 4472.874 3179.816 L 4472.604 3179.886 L 4472.464 3180.026 L 4472.394 3180.226 L 4472.394 3180.296 L 4472.464 3180.496 L 4472.604 3180.636 L 4472.804 3180.706 L 4472.874 3180.706 L 4473.074 3180.636 L 4473.214 3180.496 L 4473.284 3180.296 L 4473.284 3180.226 L 4473.214 3180.026 L 4473.074 3179.886 L 4472.874 3179.816~~gge5223~~0~#@$TEXT~L~4472.314~3167.536~0.2~270~0~3~~1.5~IO4~M 4473.824 3167.536 L 4472.394 3167.536 M 4473.824 3168.396 L 4473.764 3168.256 L 4473.624 3168.126 L 4473.484 3168.056 L 4473.284 3167.986 L 4472.944 3167.986 L 4472.734 3168.056 L 4472.604 3168.126 L 4472.464 3168.256 L 4472.394 3168.396 L 4472.394 3168.666 L 4472.464 3168.806 L 4472.604 3168.936 L 4472.734 3169.006 L 4472.944 3169.076 L 4473.284 3169.076 L 4473.484 3169.006 L 4473.624 3168.936 L 4473.764 3168.806 L 4473.824 3168.666 L 4473.824 3168.396 M 4473.824 3170.206 L 4472.874 3169.526 L 4472.874 3170.546 M 4473.824 3170.206 L 4472.394 3170.206~~gge5229~~0~#@$TEXT~L~4472.314~3157.536~0.2~270~0~3~~1.5~IO0~M 4473.824 3157.536 L 4472.394 3157.536 M 4473.824 3158.396 L 4473.764 3158.256 L 4473.624 3158.126 L 4473.484 3158.056 L 4473.284 3157.986 L 4472.944 3157.986 L 4472.734 3158.056 L 4472.604 3158.126 L 4472.464 3158.256 L 4472.394 3158.396 L 4472.394 3158.666 L 4472.464 3158.806 L 4472.604 3158.936 L 4472.734 3159.006 L 4472.944 3159.076 L 4473.284 3159.076 L 4473.484 3159.006 L 4473.624 3158.936 L 4473.764 3158.806 L 4473.824 3158.666 L 4473.824 3158.396 M 4473.824 3159.936 L 4473.764 3159.736 L 4473.554 3159.596 L 4473.214 3159.526 L 4473.014 3159.526 L 4472.664 3159.596 L 4472.464 3159.736 L 4472.394 3159.936 L 4472.394 3160.076 L 4472.464 3160.276 L 4472.664 3160.416 L 4473.014 3160.486 L 4473.214 3160.486 L 4473.554 3160.416 L 4473.764 3160.276 L 4473.824 3160.076 L 4473.824 3159.936~~gge5235~~0~#@$TEXT~L~4472.314~3147.536~0.2~270~0~3~~1.5~IO2~M 4473.824 3147.536 L 4472.394 3147.536 M 4473.824 3148.396 L 4473.764 3148.256 L 4473.624 3148.126 L 4473.484 3148.056 L 4473.284 3147.986 L 4472.944 3147.986 L 4472.734 3148.056 L 4472.604 3148.126 L 4472.464 3148.256 L 4472.394 3148.396 L 4472.394 3148.666 L 4472.464 3148.806 L 4472.604 3148.936 L 4472.734 3149.006 L 4472.944 3149.076 L 4473.284 3149.076 L 4473.484 3149.006 L 4473.624 3148.936 L 4473.764 3148.806 L 4473.824 3148.666 L 4473.824 3148.396 M 4473.484 3149.596 L 4473.554 3149.596 L 4473.694 3149.666 L 4473.764 3149.736 L 4473.824 3149.866 L 4473.824 3150.136 L 4473.764 3150.276 L 4473.694 3150.346 L 4473.554 3150.416 L 4473.414 3150.416 L 4473.284 3150.346 L 4473.074 3150.206 L 4472.394 3149.526 L 4472.394 3150.486~~gge5241~~0~#@$TEXT~L~4472.314~3137.536~0.2~270~0~3~~1.5~IO15~M 4473.824 3137.536 L 4472.394 3137.536 M 4473.824 3138.396 L 4473.764 3138.256 L 4473.624 3138.126 L 4473.484 3138.056 L 4473.284 3137.986 L 4472.944 3137.986 L 4472.734 3138.056 L 4472.604 3138.126 L 4472.464 3138.256 L 4472.394 3138.396 L 4472.394 3138.666 L 4472.464 3138.806 L 4472.604 3138.936 L 4472.734 3139.006 L 4472.944 3139.076 L 4473.284 3139.076 L 4473.484 3139.006 L 4473.624 3138.936 L 4473.764 3138.806 L 4473.824 3138.666 L 4473.824 3138.396 M 4473.554 3139.526 L 4473.624 3139.666 L 4473.824 3139.866 L 4472.394 3139.866 M 4473.824 3141.136 L 4473.824 3140.456 L 4473.214 3140.386 L 4473.284 3140.456 L 4473.354 3140.656 L 4473.354 3140.866 L 4473.284 3141.066 L 4473.144 3141.206 L 4472.944 3141.276 L 4472.804 3141.276 L 4472.604 3141.206 L 4472.464 3141.066 L 4472.394 3140.866 L 4472.394 3140.656 L 4472.464 3140.456 L 4472.534 3140.386 L 4472.664 3140.316~~gge5247~~0~#@$TEXT~L~4472.314~3127.536~0.2~270~0~3~~1.5~IO8~M 4473.824 3127.536 L 4472.394 3127.536 M 4473.824 3128.396 L 4473.764 3128.256 L 4473.624 3128.126 L 4473.484 3128.056 L 4473.284 3127.986 L 4472.944 3127.986 L 4472.734 3128.056 L 4472.604 3128.126 L 4472.464 3128.256 L 4472.394 3128.396 L 4472.394 3128.666 L 4472.464 3128.806 L 4472.604 3128.936 L 4472.734 3129.006 L 4472.944 3129.076 L 4473.284 3129.076 L 4473.484 3129.006 L 4473.624 3128.936 L 4473.764 3128.806 L 4473.824 3128.666 L 4473.824 3128.396 M 4473.824 3129.866 L 4473.764 3129.666 L 4473.624 3129.596 L 4473.484 3129.596 L 4473.354 3129.666 L 4473.284 3129.796 L 4473.214 3130.076 L 4473.144 3130.276 L 4473.014 3130.416 L 4472.874 3130.486 L 4472.664 3130.486 L 4472.534 3130.416 L 4472.464 3130.346 L 4472.394 3130.136 L 4472.394 3129.866 L 4472.464 3129.666 L 4472.534 3129.596 L 4472.664 3129.526 L 4472.874 3129.526 L 4473.014 3129.596 L 4473.144 3129.736 L 4473.214 3129.936 L 4473.284 3130.206 L 4473.354 3130.346 L 4473.484 3130.416 L 4473.624 3130.416 L 4473.764 3130.346 L 4473.824 3130.136 L 4473.824 3129.866~~gge5253~~0~#@$TEXT~L~4472.314~3107.536~0.2~270~0~3~~1.5~IO6~M 4473.824 3107.536 L 4472.394 3107.536 M 4473.824 3108.396 L 4473.764 3108.256 L 4473.624 3108.126 L 4473.484 3108.056 L 4473.284 3107.986 L 4472.944 3107.986 L 4472.734 3108.056 L 4472.604 3108.126 L 4472.464 3108.256 L 4472.394 3108.396 L 4472.394 3108.666 L 4472.464 3108.806 L 4472.604 3108.936 L 4472.734 3109.006 L 4472.944 3109.076 L 4473.284 3109.076 L 4473.484 3109.006 L 4473.624 3108.936 L 4473.764 3108.806 L 4473.824 3108.666 L 4473.824 3108.396 M 4473.624 3110.346 L 4473.764 3110.276 L 4473.824 3110.076 L 4473.824 3109.936 L 4473.764 3109.736 L 4473.554 3109.596 L 4473.214 3109.526 L 4472.874 3109.526 L 4472.604 3109.596 L 4472.464 3109.736 L 4472.394 3109.936 L 4472.394 3110.006 L 4472.464 3110.206 L 4472.604 3110.346 L 4472.804 3110.416 L 4472.874 3110.416 L 4473.074 3110.346 L 4473.214 3110.206 L 4473.284 3110.006 L 4473.284 3109.936 L 4473.214 3109.736 L 4473.074 3109.596 L 4472.874 3109.526~~gge5259~~0~#@$TEXT~L~4472.314~3117.536~0.2~270~0~3~~1.5~IO7~M 4473.824 3117.536 L 4472.394 3117.536 M 4473.824 3118.396 L 4473.764 3118.256 L 4473.624 3118.126 L 4473.484 3118.056 L 4473.284 3117.986 L 4472.944 3117.986 L 4472.734 3118.056 L 4472.604 3118.126 L 4472.464 3118.256 L 4472.394 3118.396 L 4472.394 3118.666 L 4472.464 3118.806 L 4472.604 3118.936 L 4472.734 3119.006 L 4472.944 3119.076 L 4473.284 3119.076 L 4473.484 3119.006 L 4473.624 3118.936 L 4473.764 3118.806 L 4473.824 3118.666 L 4473.824 3118.396 M 4473.824 3120.486 L 4472.394 3119.796 M 4473.824 3119.526 L 4473.824 3120.486~~gge5265~~0~#@$PAD~OVAL~4568.314~3289.036~7~5~11~U3_1~1~1.5~4569.314 3289.036 4567.314 3289.036~180~gge5271~0~~Y~0~0~0.4~4568.314,3289.036#@$PAD~OVAL~4568.314~3279.036~7~5~11~~2~1.5~4569.314 3279.036 4567.314 3279.036~180~gge5286~0~~Y~0~0~0.4~4568.314,3279.036#@$PAD~OVAL~4568.314~3269.036~7~5~11~GPIO36~3~1.5~4569.314 3269.036 4567.314 3269.036~180~gge5301~0~~Y~0~0~0.4~4568.314,3269.036#@$PAD~OVAL~4568.314~3259.036~7~5~11~GPIO39~4~1.5~4569.314 3259.036 4567.314 3259.036~180~gge5316~0~~Y~0~0~0.4~4568.314,3259.036#@$PAD~OVAL~4568.314~3249.036~7~5~11~IN1~5~1.5~4569.314 3249.036 4567.314 3249.036~180~gge5331~0~~Y~0~0~0.4~4568.314,3249.036#@$PAD~OVAL~4568.314~3239.036~7~5~11~IN2~6~1.5~4569.314 3239.036 4567.314 3239.036~180~gge5346~0~~Y~0~0~0.4~4568.314,3239.036#@$PAD~OVAL~4568.314~3229.036~7~5~11~OUT_CHARGE_EN~7~1.5~4569.314 3229.036 4567.314 3229.036~180~gge5361~0~~Y~0~0~0.4~4568.314,3229.036#@$PAD~OVAL~4568.314~3219.036~7~5~11~OUT_CONTACTORS~8~1.5~4569.314 3219.036 4567.314 3219.036~180~gge5376~0~~Y~0~0~0.4~4568.314,3219.036#@$PAD~OVAL~4568.314~3209.036~7~5~11~GPIO25~9~1.5~4569.314 3209.036 4567.314 3209.036~180~gge5391~0~~Y~0~0~0.4~4568.314,3209.036#@$PAD~OVAL~4568.314~3199.036~7~5~11~GPIO27~10~1.5~4569.314 3199.036 4567.314 3199.036~180~gge5406~0~~Y~0~0~0.4~4568.314,3199.036#@$PAD~OVAL~4568.314~3189.036~7~5~11~SPI_INT~11~1.5~4569.314 3189.036 4567.314 3189.036~180~gge5421~0~~Y~0~0~0.4~4568.314,3189.036#@$PAD~OVAL~4568.314~3179.036~7~5~11~~12~1.5~4569.314 3179.036 4567.314 3179.036~180~gge5436~0~~Y~0~0~0.4~4568.314,3179.036#@$PAD~OVAL~4568.314~3169.036~7~5~11~~13~1.5~4569.314 3169.036 4567.314 3169.036~180~gge5451~0~~Y~0~0~0.4~4568.314,3169.036#@$PAD~OVAL~4568.314~3159.036~7~5~11~GND~14~1.5~4569.314 3159.036 4567.314 3159.036~180~gge5466~0~~Y~0~0~0.4~4568.314,3159.036#@$PAD~OVAL~4568.314~3149.036~7~5~11~~15~1.5~4569.314 3149.036 4567.314 3149.036~180~gge5481~0~~Y~0~0~0.4~4568.314,3149.036#@$PAD~OVAL~4568.314~3139.036~7~5~11~~16~1.5~4569.314 3139.036 4567.314 3139.036~180~gge5496~0~~Y~0~0~0.4~4568.314,3139.036#@$PAD~OVAL~4568.314~3129.036~7~5~11~~17~1.5~4569.314 3129.036 4567.314 3129.036~180~gge5511~0~~Y~0~0~0.4~4568.314,3129.036#@$PAD~OVAL~4568.314~3119.036~7~5~11~~18~1.5~4569.314 3119.036 4567.314 3119.036~180~gge5526~0~~Y~0~0~0.4~4568.314,3119.036#@$PAD~OVAL~4568.314~3109.036~7~5~11~~19~1.5~4569.314 3109.036 4567.314 3109.036~180~gge5541~0~~Y~0~0~0.4~4568.314,3109.036#@$PAD~OVAL~4468.314~3109.036~7~5~11~~20~1.5~4469.314 3109.036 4467.314 3109.036~180~gge5556~0~~Y~0~0~0.4~4468.314,3109.036#@$PAD~OVAL~4468.314~3119.036~7~5~11~~21~1.5~4469.314 3119.036 4467.314 3119.036~180~gge5571~0~~Y~0~0~0.4~4468.314,3119.036#@$PAD~OVAL~4468.314~3129.036~7~5~11~~22~1.5~4469.314 3129.036 4467.314 3129.036~180~gge5586~0~~Y~0~0~0.4~4468.314,3129.036#@$PAD~OVAL~4468.314~3139.036~7~5~11~~23~1.5~4469.314 3139.036 4467.314 3139.036~180~gge5601~0~~Y~0~0~0.4~4468.314,3139.036#@$PAD~OVAL~4468.314~3149.036~7~5~11~~24~1.5~4469.314 3149.036 4467.314 3149.036~180~gge5616~0~~Y~0~0~0.4~4468.314,3149.036#@$PAD~OVAL~4468.314~3159.036~7~5~11~~25~1.5~4469.314 3159.036 4467.314 3159.036~180~gge5631~0~~Y~0~0~0.4~4468.314,3159.036#@$PAD~OVAL~4468.314~3169.036~7~5~11~~26~1.5~4469.314 3169.036 4467.314 3169.036~180~gge5646~0~~Y~0~0~0.4~4468.314,3169.036#@$PAD~OVAL~4468.314~3179.036~7~5~11~CANRX~27~1.5~4469.314 3179.036 4467.314 3179.036~180~gge5661~0~~Y~0~0~0.4~4468.314,3179.036#@$PAD~OVAL~4468.314~3189.036~7~5~11~CANTX~28~1.5~4469.314 3189.036 4467.314 3189.036~180~gge5676~0~~Y~0~0~0.4~4468.314,3189.036#@$PAD~OVAL~4468.314~3199.036~7~5~11~SPI_CS~29~1.5~4469.314 3199.036 4467.314 3199.036~180~gge5691~0~~Y~0~0~0.4~4468.314,3199.036#@$PAD~OVAL~4468.314~3209.036~7~5~11~SPI_SCK~30~1.5~4469.314 3209.036 4467.314 3209.036~180~gge5706~0~~Y~0~0~0.4~4468.314,3209.036#@$PAD~OVAL~4468.314~3219.036~7~5~11~SPI_MISO~31~1.5~4469.314 3219.036 4467.314 3219.036~180~gge5721~0~~Y~0~0~0.4~4468.314,3219.036#@$PAD~OVAL~4468.314~3229.036~7~5~11~GND~32~1.5~4469.314 3229.036 4467.314 3229.036~180~gge5736~0~~Y~0~0~0.4~4468.314,3229.036#@$PAD~OVAL~4468.314~3239.036~7~5~11~SDA~33~1.5~4469.314 3239.036 4467.314 3239.036~180~gge5751~0~~Y~0~0~0.4~4468.314,3239.036#@$PAD~OVAL~4468.314~3249.036~7~5~11~RX~34~1.5~4469.314 3249.036 4467.314 3249.036~180~gge5766~0~~Y~0~0~0.4~4468.314,3249.036#@$PAD~OVAL~4468.314~3259.036~7~5~11~TX~35~1.5~4469.314 3259.036 4467.314 3259.036~180~gge5781~0~~Y~0~0~0.4~4468.314,3259.036#@$PAD~OVAL~4468.314~3269.036~7~5~11~SCL~36~1.5~4469.314 3269.036 4467.314 3269.036~180~gge5796~0~~Y~0~0~0.4~4468.314,3269.036#@$PAD~OVAL~4468.314~3279.036~7~5~11~SPI_MOSI~37~1.5~4469.314 3279.036 4467.314 3279.036~180~gge5811~0~~Y~0~0~0.4~4468.314,3279.036#@$PAD~OVAL~4468.314~3289.036~7~5~11~GND~38~1.5~4469.314 3289.036 4467.314 3289.036~180~gge5826~0~~Y~0~0~0.4~4468.314,3289.036","LIB~4646.8434~3140.4427~package`SOT-223-3_L6.5-W3.4-P2.30-LS7.0-BR`Contributor`LCSC`link`https:\/\/item.szlcsc.com\/410724.html`3DModel`SOT-223-4P_L6.5-W3.5-H1.6-LS7.0-P2.30`BOM_Supplier`LCSC`BOM_Manufacturer`ON`BOM_Manufacturer Part`NCV8402ASTT1G`BOM_Supplier Part`C77755`BOM_JLCPCB Part Class`Extended Part`spicePre`U`spiceSymbolName`NCV8402ASTT1G`~180~~gge92a8cb75ad320d74~1~02ae667aca734971be8a5f58143dd564~1625731788~0~~yes~~#@$CIRCLE~4633.4574~3127.6477~0.118~0.2362~101~gge5859~0~~#@$CIRCLE~4628.9234~3131.8297~0.984~1.9685~12~gge5862~0~~#@$SOLIDREGION~99~~M 4654.127 3127.6474 L 4654.127 3153.238 L 4640.3474 3153.238 L 4640.3474 3127.6474 Z ~solid~gge5865~~~~0#@$SOLIDREGION~100~~M 4640.3868 3148.0213 L 4640.3868 3150.9741 L 4636.3711 3150.9741 L 4636.3711 3148.0213 Z ~cutout~gge5871~~~~0#@$SOLIDREGION~100~~M 4636.4104 3148.0213 L 4636.4104 3150.9741 L 4633.4577 3150.9741 L 4633.4577 3148.0213 Z ~solid~gge5874~~~~0#@$SOLIDREGION~100~~M 4640.3868 3138.9663 L 4640.3868 3141.9191 L 4636.3711 3141.9191 L 4636.3711 3138.9663 Z ~cutout~gge5877~~~~0#@$SOLIDREGION~100~~M 4636.4104 3138.9663 L 4636.4104 3141.9191 L 4633.4577 3141.9191 L 4633.4577 3138.9663 Z ~solid~gge5880~~~~0#@$SOLIDREGION~100~~M 4640.3868 3129.9113 L 4640.3868 3132.8641 L 4636.3711 3132.8641 L 4636.3711 3129.9113 Z ~cutout~gge5883~~~~0#@$SOLIDREGION~100~~M 4636.4104 3129.9113 L 4636.4104 3132.8641 L 4633.4577 3132.8641 L 4633.4577 3129.9113 Z ~solid~gge5886~~~~0#@$SOLIDREGION~100~~M 4658.1033 3134.5372 L 4658.1033 3146.3482 L 4654.0876 3146.3482 L 4654.0876 3134.5372 Z ~cutout~gge5889~~~~0#@$SOLIDREGION~100~~M 4661.0167 3134.5372 L 4661.0167 3146.3482 L 4658.064 3146.3482 L 4658.064 3134.5372 Z ~solid~gge5892~~~~0#@$SVGNODE~{\"gId\":\"gge5895\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"27.989794414\",\"c_height\":\"25.5905\",\"c_rotation\":\"0,0,0\",\"z\":\"0\",\"c_origin\":\"4647.2371,3140.4426\",\"uuid\":\"e80246a9471445bfb635be848806a22e\",\"c_etype\":\"outline3D\",\"title\":\"SOT-223-4P_L6.5-W3.5-H1.6-LS7.0-P2.30\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge5895\"},\"childNodes\":[{\"gId\":\"gge5898\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4633.2609 3129.9309 4633.2609 3129.9703 4633.2609 3132.8049 4633.2609 3132.8443 4633.3397 3132.8443 4634.3239 3132.8443 4634.4027 3132.8443 4634.5208 3132.8443 4634.6389 3132.8443 4634.7176 3132.8443 4634.8751 3132.8443 4635.072 3132.8443 4635.2294 3132.8443 4635.3869 3132.8443 4638.2609 3132.8443 4638.4184 3132.8443 4638.4578 3132.8443 4638.6153 3132.8443 4638.8121 3132.8443 4638.9696 3132.8443 4639.0483 3132.8443 4639.2058 3132.8443 4639.2846 3132.8443 4639.4027 3132.8443 4640.3475 3132.8443 4640.3475 3138.9466 4639.4027 3138.9466 4639.2846 3138.9466 4639.1664 3138.9466 4639.1271 3138.9466 4639.009 3138.9466 4638.9302 3138.9466 4638.8121 3138.9466 4638.6546 3138.9466 4638.4578 3138.9466 4638.3003 3138.9466 4635.3869 3138.9466 4635.2294 3138.9466 4635.0326 3138.9466 4634.8751 3138.9466 4634.757 3138.9466 4634.6783 3138.9466 4634.6389 3138.9466 4634.5208 3138.9466 4634.4027 3138.9466 4634.2846 3138.9466 4633.3003 3138.9466 4633.3003 3138.986 4633.2609 3138.986 4633.2609 3139.0254 4633.2609 3141.86 4633.2609 3141.8994 4633.3397 3141.8994 4634.3239 3141.8994 4634.4027 3141.8994 4634.5208 3141.8994 4634.6389 3141.8994 4634.7176 3141.8994 4634.8751 3141.8994 4635.0326 3141.8994 4635.072 3141.8994 4635.2294 3141.8994 4635.3869 3141.8994 4638.2609 3141.8994 4638.3003 3141.8994 4638.4184 3141.8994 4638.5759 3141.8994 4638.6546 3141.8994 4638.8121 3141.8994 4638.9696 3141.8994 4639.0483 3141.8994 4639.2058 3141.8994 4639.2846 3141.8994 4639.4027 3141.8994 4640.3475 3141.8994 4640.3475 3148.0017 4639.4027 3148.0017 4639.2846 3148.0017 4639.1664 3148.0017 4639.1271 3148.0017 4639.009 3148.0017 4638.9302 3148.0017 4638.8121 3148.0017 4638.6546 3148.0017 4638.4578 3148.0017 4638.3003 3148.0017 4635.3869 3148.0017 4635.2294 3148.0017 4635.0326 3148.0017 4634.8751 3148.0017 4634.757 3148.0017 4634.6783 3148.0017 4634.6389 3148.0017 4634.5208 3148.0017 4634.4027 3148.0017 4634.2846 3148.0017 4633.3003 3148.0017 4633.3003 3148.0411 4633.2609 3148.0411 4633.2609 3148.0805 4633.2609 3150.9545 4633.3397 3150.9545 4634.3239 3150.9545 4634.4027 3150.9545 4634.5602 3150.9545 4634.6389 3150.9545 4634.7176 3150.9545 4634.757 3150.9545 4634.8751 3150.9545 4635.072 3150.9545 4635.2294 3150.9545 4635.2688 3150.9545 4635.3869 3150.9545 4638.2609 3150.9545 4638.3003 3150.9545 4638.4184 3150.9545 4638.5759 3150.9545 4638.6546 3150.9545 4638.8121 3150.9545 4638.9696 3150.9545 4639.0483 3150.9545 4639.2058 3150.9545 4639.3239 3150.9545 4639.4027 3150.9545 4640.3475 3150.9545 4640.3475 3152.8442 4640.3475 3152.9624 4640.3869 3153.0411 4640.4657 3153.1198 4640.5444 3153.1986 4640.6231 3153.2379 4640.7412 3153.2379 4653.7333 3153.2379 4653.8515 3153.2379 4653.9302 3153.1986 4654.0089 3153.1198 4654.0877 3153.0411 4654.127 3152.9624 4654.127 3152.8442 4654.127 3146.3482 4655.0719 3146.3482 4655.19 3146.3482 4655.2294 3146.3482 4655.3081 3146.3482 4655.4656 3146.3482 4655.5444 3146.3482 4655.7806 3146.3482 4656.0168 3146.3482 4656.1743 3146.3482 4656.2137 3146.3482 4657.631 3146.3482 4659.0877 3146.3482 4659.2845 3146.3482 4659.4814 3146.3482 4659.7176 3146.3482 4659.757 3146.3482 4659.8751 3146.3482 4659.9144 3146.3482 4660.0325 3146.3482 4660.19 3146.3482 4661.1743 3146.3482 4661.2136 3146.3482 4661.2136 3146.3088 4661.2136 3146.2695 4661.2136 3140.4033 4661.2136 3134.5766 4661.2136 3134.5372 4661.1349 3134.5372 4660.1507 3134.5372 4660.0325 3134.5372 4659.9144 3134.5372 4659.8751 3134.5372 4659.757 3134.5372 4659.7176 3134.5372 4659.4814 3134.5372 4659.2845 3134.5372 4659.0877 3134.5372 4656.2137 3134.5372 4656.0562 3134.5372 4655.9774 3134.5372 4655.7412 3134.5372 4655.5444 3134.5372 4655.4263 3134.5372 4655.3869 3134.5372 4655.3081 3134.5372 4655.1507 3134.5372 4655.0719 3134.5372 4654.127 3134.5372 4654.127 3128.0411 4654.127 3127.923 4654.0877 3127.8443 4654.0089 3127.7656 4653.9302 3127.6868 4653.8515 3127.6474 4653.7333 3127.6474 4640.7412 3127.6474 4640.6231 3127.6474 4640.5444 3127.6868 4640.4657 3127.7656 4640.3869 3127.8443 4640.3475 3127.923 4640.3475 3128.0411 4640.3475 3129.8915 4639.8751 3129.8915 4639.4027 3129.8915 4639.2846 3129.8915 4639.2058 3129.8915 4639.1664 3129.8915 4639.009 3129.8915 4638.9302 3129.8915 4638.8121 3129.8915 4638.6546 3129.8915 4638.4578 3129.8915 4638.3003 3129.8915 4636.8436 3129.8915 4635.3869 3129.8915 4635.2294 3129.8915 4635.0326 3129.8915 4634.8751 3129.8915 4634.757 3129.8915 4634.6783 3129.8915 4634.6389 3129.8915 4634.5208 3129.8915 4634.442 3129.8915 4634.4027 3129.8915 4634.2846 3129.8915 4633.3003 3129.8915 4633.3003 3129.9309 4633.2609 3129.9309 4633.2609 3129.9309\",\"id\":\"gge5898\"}}]}#@$TEXT~N~4593.2169~3167.2329~0.6~0~0~3~~4.5~NCV8402ASTT1G~M 4593.2172 3162.6929 L 4593.2172 3166.9829 M 4593.2172 3162.6929 L 4596.0772 3166.9829 M 4596.0772 3162.6929 L 4596.0772 3166.9829 M 4600.4972 3163.7129 L 4600.2972 3163.3029 L 4599.8872 3162.8929 L 4599.4772 3162.6929 L 4598.6572 3162.6929 L 4598.2472 3162.8929 L 4597.8372 3163.3029 L 4597.6372 3163.7129 L 4597.4272 3164.3329 L 4597.4272 3165.3529 L 4597.6372 3165.9629 L 4597.8372 3166.3729 L 4598.2472 3166.7829 L 4598.6572 3166.9829 L 4599.4772 3166.9829 L 4599.8872 3166.7829 L 4600.2972 3166.3729 L 4600.4972 3165.9629 M 4601.8472 3162.6929 L 4603.4872 3166.9829 M 4605.1172 3162.6929 L 4603.4872 3166.9829 M 4607.4972 3162.6929 L 4606.8772 3162.8929 L 4606.6772 3163.3029 L 4606.6772 3163.7129 L 4606.8772 3164.1229 L 4607.2872 3164.3329 L 4608.1072 3164.5329 L 4608.7172 3164.7329 L 4609.1272 3165.1429 L 4609.3372 3165.5529 L 4609.3372 3166.1729 L 4609.1272 3166.5829 L 4608.9272 3166.7829 L 4608.3172 3166.9829 L 4607.4972 3166.9829 L 4606.8772 3166.7829 L 4606.6772 3166.5829 L 4606.4672 3166.1729 L 4606.4672 3165.5529 L 4606.6772 3165.1429 L 4607.0872 3164.7329 L 4607.6972 3164.5329 L 4608.5172 3164.3329 L 4608.9272 3164.1229 L 4609.1272 3163.7129 L 4609.1272 3163.3029 L 4608.9272 3162.8929 L 4608.3172 3162.6929 L 4607.4972 3162.6929 M 4612.7272 3162.6929 L 4610.6872 3165.5529 L 4613.7572 3165.5529 M 4612.7272 3162.6929 L 4612.7272 3166.9829 M 4616.3272 3162.6929 L 4615.7172 3162.8929 L 4615.3072 3163.5129 L 4615.1072 3164.5329 L 4615.1072 3165.1429 L 4615.3072 3166.1729 L 4615.7172 3166.7829 L 4616.3272 3166.9829 L 4616.7372 3166.9829 L 4617.3572 3166.7829 L 4617.7672 3166.1729 L 4617.9672 3165.1429 L 4617.9672 3164.5329 L 4617.7672 3163.5129 L 4617.3572 3162.8929 L 4616.7372 3162.6929 L 4616.3272 3162.6929 M 4619.5172 3163.7129 L 4619.5172 3163.5129 L 4619.7272 3163.1029 L 4619.9272 3162.8929 L 4620.3372 3162.6929 L 4621.1572 3162.6929 L 4621.5672 3162.8929 L 4621.7672 3163.1029 L 4621.9772 3163.5129 L 4621.9772 3163.9229 L 4621.7672 3164.3329 L 4621.3672 3164.9429 L 4619.3172 3166.9829 L 4622.1772 3166.9829 M 4625.1672 3162.6929 L 4623.5272 3166.9829 M 4625.1672 3162.6929 L 4626.8072 3166.9829 M 4624.1472 3165.5529 L 4626.1872 3165.5529 M 4631.0172 3163.3029 L 4630.6072 3162.8929 L 4629.9972 3162.6929 L 4629.1772 3162.6929 L 4628.5672 3162.8929 L 4628.1572 3163.3029 L 4628.1572 3163.7129 L 4628.3572 3164.1229 L 4628.5672 3164.3329 L 4628.9672 3164.5329 L 4630.1972 3164.9429 L 4630.6072 3165.1429 L 4630.8172 3165.3529 L 4631.0172 3165.7629 L 4631.0172 3166.3729 L 4630.6072 3166.7829 L 4629.9972 3166.9829 L 4629.1772 3166.9829 L 4628.5672 3166.7829 L 4628.1572 3166.3729 M 4633.7972 3162.6929 L 4633.7972 3166.9829 M 4632.3672 3162.6929 L 4635.2272 3162.6929 M 4638.0172 3162.6929 L 4638.0172 3166.9829 M 4636.5772 3162.6929 L 4639.4472 3162.6929 M 4640.7972 3163.5129 L 4641.2072 3163.3029 L 4641.8172 3162.6929 L 4641.8172 3166.9829 M 4646.2372 3163.7129 L 4646.0272 3163.3029 L 4645.6172 3162.8929 L 4645.2172 3162.6929 L 4644.3972 3162.6929 L 4643.9872 3162.8929 L 4643.5772 3163.3029 L 4643.3672 3163.7129 L 4643.1672 3164.3329 L 4643.1672 3165.3529 L 4643.3672 3165.9629 L 4643.5772 3166.3729 L 4643.9872 3166.7829 L 4644.3972 3166.9829 L 4645.2172 3166.9829 L 4645.6172 3166.7829 L 4646.0272 3166.3729 L 4646.2372 3165.9629 L 4646.2372 3165.3529 M 4645.2172 3165.3529 L 4646.2372 3165.3529~none~gge5847~~0~#@$TEXT~P~4646.2374~3155.4427~0.6~180~0~3~~4.5~U5~M 4646.2372 3159.9827 L 4646.2372 3156.9127 L 4646.0372 3156.3027 L 4645.6272 3155.8927 L 4645.0072 3155.6927 L 4644.5972 3155.6927 L 4643.9872 3155.8927 L 4643.5772 3156.3027 L 4643.3772 3156.9127 L 4643.3772 3159.9827 M 4639.5672 3159.9827 L 4641.6172 3159.9827 L 4641.8172 3158.1427 L 4641.6172 3158.3427 L 4640.9972 3158.5527 L 4640.3872 3158.5527 L 4639.7772 3158.3427 L 4639.3672 3157.9427 L 4639.1572 3157.3227 L 4639.1572 3156.9127 L 4639.3672 3156.3027 L 4639.7772 3155.8927 L 4640.3872 3155.6927 L 4640.9972 3155.6927 L 4641.6172 3155.8927 L 4641.8172 3156.0927 L 4642.0272 3156.5027~~gge5853~~0~#@$TRACK~0.6~3~~4653.0301 3127.3474 4653.0301 3153.538 4641.4443 3153.538 4641.4443 3127.3474 4653.0301 3127.3474~gge5868~0#@$PAD~RECT~4635.1504~3131.3877~9.8425~4.3307~1~OUT_CONTACTORS~1~0~4640.072 3133.5531 4630.2295 3133.5531 4630.2295 3129.2223 4640.072 3129.2223~180~gge5901~0~~Y~0~0.0000~0.2000~4635.1506,3131.3876#@$PAD~RECT~4635.1504~3140.4427~9.8425~4.3307~1~~2~0~4640.072 3142.6081 4630.2295 3142.6081 4630.2295 3138.2773 4640.072 3138.2773~180~gge5916~0~~Y~0~0.0000~0.2000~4635.1506,3140.4427#@$PAD~RECT~4635.1504~3149.4977~9.8425~4.3307~1~GND~3~0~4640.072 3151.6631 4630.2295 3151.6631 4630.2295 3147.3323 4640.072 3147.3323~180~gge5931~0~~Y~0~0.0000~0.2000~4635.1506,3149.4978#@$PAD~RECT~4658.5364~3140.4427~9.2126~14.1732~1~OUT2~4~0~4653.9301 3147.5293 4653.9301 3133.3561 4663.1427 3133.3561 4663.1427 3147.5293~180~gge5946~0~~Y~0~0.0000~0.2000~4658.5364,3140.4427","LIB~4579~3225.5~package`C0805`Contributor`lcsc`link`https:\/\/item.szlcsc.com\/373011.html`3DModel`C0805_L2.0-W1.3-H1.3`BOM_Supplier`LCSC`BOM_Manufacturer Part`CC0805KRX7R9BB104`BOM_Manufacturer`YAGEO`nameAlias`Capacitance`BOM_Supplier Part`C49678`BOM_JLCPCB Part Class`Basic Part`spicePre`C`spiceSymbolName`CC0805KRX7R9BB104`~270~~gge2fe1d3f7841b4f62~1~2ee8eb13a0124a108e622ce40c0c25a8~1667381257~0~~yes~~#@$SOLIDREGION~100~~M 4576.5394 3221.563 L 4581.4606 3221.563 L 4581.4606 3223.5315 L 4576.5394 3223.5315 Z ~solid~gge7254~~~~0#@$SOLIDREGION~100~~M 4581.4606 3229.437 L 4576.5394 3229.437 L 4576.5394 3227.4685 L 4581.4606 3227.4685 Z ~solid~gge7257~~~~0#@$SOLIDREGION~99~~M 4576.5394 3221.563 L 4581.4606 3221.563 L 4581.4606 3229.437 L 4576.5394 3229.437 Z ~solid~gge7260~~~~0#@$SOLIDREGION~5~~M 4576.5592 3218.9054 L 4581.5985 3218.9054 L 4581.7954 3219.1023 L 4581.7954 3223.6299 L 4581.5985 3223.8267 L 4579.9842 3223.8465 L 4579.9842 3222.0748 L 4578.2126 3222.0748 L 4578.2126 3223.8071 L 4576.5592 3223.8267 L 4576.3623 3223.6299 L 4576.3623 3219.1023 Z ~solid~gge7263~~~~0#@$SOLIDREGION~5~~M 4576.5592 3227.37 L 4578.2126 3227.3701 L 4578.2126 3229.122 L 4579.9842 3229.122 L 4579.9842 3227.3898 L 4581.5985 3227.37 L 4581.7954 3227.5669 L 4581.7954 3232.0944 L 4581.5985 3232.2913 L 4576.5592 3232.2913 L 4576.3623 3232.0944 L 4576.3623 3227.5669 Z ~solid~gge7266~~~~0#@$CIRCLE~4576.539~3221.563~0.118~0.2362~101~gge7299~0~~#@$SVGNODE~{\"gId\":\"gge7302\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"7.874\",\"c_height\":\"5.1181\",\"c_rotation\":\"0,0,270\",\"z\":\"0\",\"c_origin\":\"4579,3225.5\",\"uuid\":\"b87ab0c5465a48b3a1c9a6dac8d30bc5\",\"c_etype\":\"outline3D\",\"title\":\"C0805_L2.0-W1.3-H1.3\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge7302\"},\"childNodes\":[{\"gId\":\"gge7305\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4581.4016 3221.563 4581.3623 3221.563 4576.6379 3221.563 4576.5985 3221.563 4576.5591 3221.6024 4576.4804 3221.6024 4576.4804 3221.6811 4576.441 3221.7599 4576.441 3223.1772 4576.441 3223.2165 4576.441 3223.3347 4576.441 3223.4528 4576.441 3223.4921 4576.441 3223.5315 4576.5198 3223.5315 4576.5198 3227.4685 4576.441 3227.4685 4576.441 3227.5079 4576.441 3227.5472 4576.441 3227.6654 4576.441 3227.7835 4576.441 3227.8228 4576.441 3229.2795 4576.4804 3229.3583 4576.4804 3229.3976 4576.5591 3229.3976 4576.5985 3229.437 4576.6379 3229.437 4581.3623 3229.437 4581.4016 3229.437 4581.4804 3229.3976 4581.5197 3229.3976 4581.5197 3229.3583 4581.5591 3229.2402 4581.5591 3228.5315 4581.5591 3227.8228 4581.5591 3227.7835 4581.5591 3227.6654 4581.5591 3227.5472 4581.5591 3227.5079 4581.5591 3227.4685 4581.4804 3227.4685 4581.4804 3223.5315 4581.5591 3223.5315 4581.5591 3223.4921 4581.5591 3223.4528 4581.5591 3223.3347 4581.5591 3223.2165 4581.5591 3223.1772 4581.5591 3222.4685 4581.5591 3221.7205 4581.5197 3221.6811 4581.5197 3221.6024 4581.4804 3221.6024 4581.4016 3221.563 4581.4016 3221.563\",\"id\":\"gge7305\"}}]}#@$TEXT~N~4595.79~3242.56~0.6~90~0~3~~4.5~100nF~M 4592.07 3242.5601 L 4591.86 3242.1501 L 4591.25 3241.5401 L 4595.54 3241.5401 M 4591.25 3238.9601 L 4591.45 3239.5701 L 4592.07 3239.9801 L 4593.09 3240.1901 L 4593.7 3240.1901 L 4594.73 3239.9801 L 4595.34 3239.5701 L 4595.54 3238.9601 L 4595.54 3238.5501 L 4595.34 3237.9401 L 4594.73 3237.5301 L 4593.7 3237.3201 L 4593.09 3237.3201 L 4592.07 3237.5301 L 4591.45 3237.9401 L 4591.25 3238.5501 L 4591.25 3238.9601 M 4591.25 3234.7501 L 4591.45 3235.3601 L 4592.07 3235.7701 L 4593.09 3235.9701 L 4593.7 3235.9701 L 4594.73 3235.7701 L 4595.34 3235.3601 L 4595.54 3234.7501 L 4595.54 3234.3401 L 4595.34 3233.7201 L 4594.73 3233.3101 L 4593.7 3233.1101 L 4593.09 3233.1101 L 4592.07 3233.3101 L 4591.45 3233.7201 L 4591.25 3234.3401 L 4591.25 3234.7501 M 4592.68 3231.7601 L 4595.54 3231.7601 M 4593.5 3231.7601 L 4592.89 3231.1501 L 4592.68 3230.7401 L 4592.68 3230.1201 L 4592.89 3229.7101 L 4593.5 3229.5101 L 4595.54 3229.5101 M 4591.25 3228.1601 L 4595.54 3228.1601 M 4591.25 3228.1601 L 4591.25 3225.5001 M 4593.29 3228.1601 L 4593.29 3226.5201~none~gge7239~~0~#@$TEXT~P~4574.5~3214.5~0.6~0~0~3~~4.5~CAN1_C1~M 4577.57 3210.98 L 4577.36 3210.57 L 4576.95 3210.16 L 4576.55 3209.96 L 4575.73 3209.96 L 4575.32 3210.16 L 4574.91 3210.57 L 4574.7 3210.98 L 4574.5 3211.6 L 4574.5 3212.62 L 4574.7 3213.23 L 4574.91 3213.64 L 4575.32 3214.05 L 4575.73 3214.25 L 4576.55 3214.25 L 4576.95 3214.05 L 4577.36 3213.64 L 4577.57 3213.23 M 4580.55 3209.96 L 4578.92 3214.25 M 4580.55 3209.96 L 4582.19 3214.25 M 4579.53 3212.82 L 4581.58 3212.82 M 4583.54 3209.96 L 4583.54 3214.25 M 4583.54 3209.96 L 4586.4 3214.25 M 4586.4 3209.96 L 4586.4 3214.25 M 4587.75 3210.78 L 4588.16 3210.57 L 4588.78 3209.96 L 4588.78 3214.25 M 4590.13 3215.69 L 4593.81 3215.69 M 4598.23 3210.98 L 4598.02 3210.57 L 4597.61 3210.16 L 4597.2 3209.96 L 4596.39 3209.96 L 4595.98 3210.16 L 4595.57 3210.57 L 4595.36 3210.98 L 4595.16 3211.6 L 4595.16 3212.62 L 4595.36 3213.23 L 4595.57 3213.64 L 4595.98 3214.05 L 4596.39 3214.25 L 4597.2 3214.25 L 4597.61 3214.05 L 4598.02 3213.64 L 4598.23 3213.23 M 4599.58 3210.78 L 4599.99 3210.57 L 4600.6 3209.96 L 4600.6 3214.25~~gge7245~~0~#@$TRACK~0.6~3~~4582.5575 3232.6307 4582.5575 3227.0795~gge7269~0#@$TRACK~0.6~3~~4575.4425 3227.0795 4575.4425 3232.6307~gge7272~0#@$TRACK~0.6~3~~4576.0425 3233.2307 4581.9575 3233.2307~gge7275~0#@$TRACK~0.6~3~~4582.5575 3218.3693 4582.5575 3223.9205~gge7278~0#@$TRACK~0.6~3~~4575.4425 3223.9205 4575.4425 3218.3693~gge7281~0#@$TRACK~0.6~3~~4576.0425 3217.7693 4581.9575 3217.7693~gge7284~0#@$ARC~0.6~3~~M 4575.4425 3232.6307 A 0.6 0.6 0 0 0 4576.0425 3233.2307~~gge7287~0#@$ARC~0.6~3~~M 4581.9575 3233.2307 A 0.6 0.6 0 0 0 4582.5575 3232.6307~~gge7290~0#@$ARC~0.6~3~~M 4575.4425 3218.3693 A 0.6 0.6 0 0 1 4576.0425 3217.7693~~gge7293~0#@$ARC~0.6~3~~M 4581.9575 3217.7693 A 0.6 0.6 0 0 1 4582.5575 3218.3693~~gge7296~0#@$PAD~RECT~4579~3229.437~5.5512~5.315~1~+3.3V~2~0~4576.3425 3226.6615 4581.6575 3226.6615 4581.6575 3232.2127 4576.3425 3232.2127~270~gge7308~0~~Y~0~-393.7008~0.2000~4579,3229.4371#@$PAD~RECT~4579~3221.563~5.5512~5.315~1~GND~1~0~4576.3425 3224.3385 4581.6575 3224.3385 4581.6575 3218.7873 4576.3425 3218.7873~270~gge7323~0~~Y~0~-393.7008~0.2000~4579,3221.5629","VIA~4613.8434~3162.9427~2.4~OUT_CONTACTORS~0.6~gge7188~0","VIA~4576~3181~2.4~OUT_CONTACTORS~0.6~gge7215~0","VIA~4645.3434~3245.4427~2.4~IN1~0.6~gge7371~0","VIA~4645.343~3230.443~2.4~IN1~0.6~gge7452~0","VIA~4650.843~3230.443~2.4~IN2~0.6~gge7650~0","VIA~4650.8434~3245.4427~2.4~IN2~0.6~gge7677~0","VIA~4560~3244~2.4~IN2~0.6~gge7704~0","VIA~4556.5~3243~2.4~OUT_CHARGE_EN~0.6~gge7743~0","VIA~4500.3434~3161.4427~2.4~GND~0.6~gge8079~0","VIA~4527.898~3199.5~2.4~GND~0.6~gge8134~0","VIA~4527.843~3196.443~2.4~GND~0.6~gge8158~0","VIA~4542.8434~3225.9427~2.4~GND~0.6~gge8185~0","VIA~4587.8434~3211.4427~2.4~GND~0.6~gge8307~0","VIA~4585.5~3192.5~2.4~GND~0.6~gge8334~0","VIA~4650.3434~3270.9427~2.4~GND~0.6~gge8430~0","VIA~4669.3434~3270.9427~2.4~GND~0.6~gge8457~0","VIA~4647.3434~3160.4427~2.4~GND~0.6~gge8511~0","VIA~4675~3166.5~2.4~GND~0.6~gge8538~0","VIA~4623.8434~3146.9427~2.4~GND~0.6~gge8565~0","VIA~4671~3114.5~2.4~GND~0.6~gge8607~0","VIA~4684.192~3113.577~2.4~GND~0.6~gge8619~0","VIA~4684.192~3108.506~2.4~GND~0.6~gge8632~0","VIA~4684.192~3103.434~2.4~GND~0.6~gge8645~0","VIA~4703~3170~2.4~GND~0.6~gge8673~0","VIA~4620.343~3053.443~2.4~GND~0.6~gge8712~0","VIA~4574.8434~3049.9427~2.4~GND~0.6~gge8740~0","HOLE~4429.448~3045.548~7.0866~gge9255~0","HOLE~4429.448~3289.642~7.0866~gge9276~0","VIA~4575.843~3082.443~2.4~GND~0.6~gge11827~0","VIA~4467.843~3050.443~2.4~GND~0.6~gge12542~0","VIA~4494.3434~3066.4427~2.4~GND~0.6~gge12569~0","VIA~4624.8434~3289.9427~2.4~GND~0.6~gge12830~0","VIA~4556.843~3203.443~2.4~GND~0.6~gge12869~0","VIA~4511.8434~3187.4427~2.4~GND~0.6~gge12914~0","VIA~4485.8434~3080.4427~2.4~+3.3V~0.6~gge12962~0","VIA~4487.3434~3169.9427~2.4~+3.3V~0.6~gge12990~0","VIA~4543.227~3186.4427~2.4~GND~0.6~gge13228~0","VIA~4501.8434~3239.4427~2.4~GND~0.6~gge13540~0","VIA~4480.3434~3229.9427~2.4~+3.3V~0.6~gge13570~0","VIA~4578.8434~3236.4427~2.4~+3.3V~0.6~gge13609~0","VIA~4561.84~3083.44~2.4~+3.3V~0.6~gge13639~0","VIA~4606.84~3188.4358~2.4~+3.3V~0.6~gge13669~0","VIA~4591.6638~3113.2638~2.4~+3.3V~0.6~gge13694~0","VIA~4487.3434~3130.4427~2.4~+3.3V~0.6~gge13760~0","VIA~4646.8434~3188.9427~2.4~GND~0.6~gge13847~0","VIA~4634.3434~3187.4427~2.4~+3.3V~0.6~gge13874~0","VIA~4625.8434~3182.9427~2.4~+3.3V~0.6~gge13901~0","VIA~4703.84~3184.94~2.4~GND~0.6~gge13943~0","VIA~4422.84~3098.44~2.4~GND~0.6~gge13976~0","VIA~4703.8434~3212.4427~2.4~CAN1_H~0.6~gge18224~0","VIA~4659.8434~3236.4427~2.4~CAN0_H~0.6~gge18254~0","VIA~4704.3434~3117.9427~2.4~OUT1~0.6~gge18447~0","VIA~4702.3434~3146.4427~2.4~START1~0.6~gge18486~0","VIA~4548.8434~3230.4427~2.4~GPIO27~0.6~gge19335~0","VIA~4548.8434~3242.9427~2.4~GPIO27~0.6~gge19360~0","VIA~4552.84~3230.44~2.4~GPIO25~0.6~gge19396~0","VIA~4552.8434~3244.9427~2.4~GPIO25~0.6~gge19423~0","VIA~4580.5363~3259.036~2.4~GPIO39~0.6~gge19453~0","VIA~4500.3434~3186.9427~2.4~SPI_SCK~0.6~gge19514~0","VIA~4506.84~3191.94~2.4~SPI_MISO~0.6~gge19541~0","VIA~4510.8434~3141.9427~2.4~SPI_SCK~0.6~gge19583~0","VIA~4514.34~3149.94~2.4~SPI_MISO~0.6~gge19640~0","VIA~4513.021~3161.158~2.4~GND~0.6~gge19652~0","VIA~4503.3434~3189.4427~2.4~SPI_MOSI~0.6~gge19697~0","VIA~4513.3434~3145.4427~2.4~SPI_MOSI~0.6~gge19730~0","VIA~4559.3434~3138.9427~2.4~SPI_MOSI~0.6~gge19757~0","VIA~4748.8434~3292.9427~2.4~RX~0.6~gge19799~0","VIA~4744.3434~3292.9427~2.4~SDA~0.6~gge19832~0","VIA~4690.8434~3256.9427~2.4~GPIO25~0.6~gge19862~0","VIA~4694.8434~3259.9427~2.4~GPIO27~0.6~gge19898~0","VIA~4697.3434~3263.9427~2.4~GPIO36~0.6~gge19928~0","VIA~4691.3434~3266.9427~2.4~GPIO39~0.6~gge19974~0","VIA~4738.3434~3244.4427~2.4~GPIO39~0.6~gge20001~0","VIA~4591.8434~3160.9427~2.4~GND~0.6~gge20070~0","VIA~4596.8434~3147.4427~2.4~GND~0.6~gge20104~0","VIA~4683.8434~3147.9427~2.4~GND~0.6~gge20131~0","VIA~4713.3434~3182.9427~2.4~START1~0.6~gge20161~0","VIA~4710.3434~3173.9427~2.4~START1~0.6~gge20188~0"],"layers":["1~TopLayer~#FF0000~true~false~true~","2~BottomLayer~#0000FF~true~false~true~0.6","3~TopSilkLayer~#FFCC00~true~true~true~","4~BottomSilkLayer~#66CC33~true~false~true~","5~TopPasteMaskLayer~#808080~true~false~true~","6~BottomPasteMaskLayer~#800000~true~false~true~","7~TopSolderMaskLayer~#800080~true~false~true~0.3","8~BottomSolderMaskLayer~#AA00FF~true~false~true~0.3","9~Ratlines~#6464FF~true~false~true~","10~BoardOutLine~#FF00FF~true~false~true~","11~Multi-Layer~#C0C0C0~true~false~true~","12~Document~#FFFFFF~true~false~true~","13~TopAssembly~#33CC99~false~false~false~","14~BottomAssembly~#5555FF~false~false~false~","15~Mechanical~#F022F0~false~false~false~","19~3DModel~#66CCFF~false~false~false~","21~Inner1~#999966~false~false~false~~","22~Inner2~#008000~false~false~false~~","23~Inner3~#00FF00~false~false~false~~","24~Inner4~#BC8E00~false~false~false~~","25~Inner5~#70DBFA~false~false~false~~","26~Inner6~#00CC66~false~false~false~~","27~Inner7~#9966FF~false~false~false~~","28~Inner8~#800080~false~false~false~~","29~Inner9~#008080~false~false~false~~","30~Inner10~#15935F~false~false~false~~","31~Inner11~#000080~false~false~false~~","32~Inner12~#00B400~false~false~false~~","33~Inner13~#2E4756~false~false~false~~","34~Inner14~#99842F~false~false~false~~","35~Inner15~#FFFFAA~false~false~false~~","36~Inner16~#99842F~false~false~false~~","37~Inner17~#2E4756~false~false~false~~","38~Inner18~#3535FF~false~false~false~~","39~Inner19~#8000BC~false~false~false~~","40~Inner20~#43AE5F~false~false~false~~","41~Inner21~#C3ECCE~false~false~false~~","42~Inner22~#728978~false~false~false~~","43~Inner23~#39503F~false~false~false~~","44~Inner24~#0C715D~false~false~false~~","45~Inner25~#5A8A80~false~false~false~~","46~Inner26~#2B937E~false~false~false~~","47~Inner27~#23999D~false~false~false~~","48~Inner28~#45B4E3~false~false~false~~","49~Inner29~#215DA1~false~false~false~~","50~Inner30~#4564D7~false~false~false~~","51~Inner31~#6969E9~false~false~false~~","52~Inner32~#9069E9~false~false~false~~","99~ComponentShapeLayer~#00CCCC~false~false~false~0.4","100~LeadShapeLayer~#CC9999~false~false~false~","101~ComponentMarkingLayer~#66FFCC~false~false~false~","Hole~Hole~#222222~false~false~true~","DRCError~DRCError~#FAD609~false~false~true~"],"objects":["All~true~false","Component~true~true","Prefix~true~true","Name~true~false","Track~true~true","Pad~true~true","Via~true~true","Hole~true~true","Copper_Area~true~true","Circle~true~true","Arc~true~true","Solid_Region~true~true","Text~true~true","Image~true~true","Rect~true~true","Dimension~true~true","Protractor~true~true"],"BBox":{"x":4399.5,"y":3013.5,"width":401,"height":310},"preference":{"hideFootprints":"","hideNets":""},"DRCRULE":{"Default":{"trackWidth":1.1811,"clearance":0.7874,"viaHoleDiameter":2.3622,"viaHoleD":1.1811},"isRealtime":true,"isDrcOnRoutingOrPlaceVia":false,"checkObjectToCopperarea":true,"showDRCRangeLine":true},"netColors":[]} \ No newline at end of file diff --git a/Hardware/1-Schematic_ESP32-Chademo.json b/Hardware/1-Schematic_ESP32-Chademo.json new file mode 100644 index 0000000..025c1f1 --- /dev/null +++ b/Hardware/1-Schematic_ESP32-Chademo.json @@ -0,0 +1 @@ +{"schematics":[{"docType":1,"title":"ESP32-Chademo","dataStr":{"head":{"docType":"1","editorVersion":"6.5.22","newgId":true,"c_para":{"Prefix Start":"1"},"c_spiceCmd":"null","hasIdFlag":true,"uuid":"7f58506900b8458fb05d0cd6fde60617","x":"0","y":"0","portOfADImportHack":"","importFlag":0,"transformList":""},"canvas":"CA~1000~1000~#FFFFFF~yes~#CCCCCC~5~1000~1000~line~5~pixel~5~0~0","shape":["I~3110~-2485~553~838~0~data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAAikAAANGCAYAAAA4Rh4lAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAI23SURBVHhe7b3PiiS3uq+9Wbe02ZO8hXUxhs672LBYgyzYnENdhFdScEY1+QY9sPcuaAqaBoM98KlB2wUNDaZpY058+hvxSiFFSVXKVqryeeB1Z0gRCukXEXp\/EZHl\/Lf\/9\/\/+31Qb\/\/f\/\/t9k+WuNSxvvuQS61wV6EQQxSpTOV\/82PYOHhwf36TK4tPGeC+heB3oBwCiUzleYlAKY\/PuA7nWgFwCMAialIUz+fUD3OtALAEYBk9IQJv8+oHsd6AUAo4BJaQiTfx\/QvQ70AoBRwKQ0hMm\/D+heB3oBwChgUhrC5N8HdK8DvQBgFDApDWHy7wO614FeADAKnU3K43R8s5t2OxFX965O8fE47WWdi8M7V\/\/uEC5rVtvsp+NHV3di8uN143xzVJ9OjNJkf3PyvZwVJSfx\/ZU8J1TI8+xJ9PE7TDVbZNHnZ9W+27Opl79+5LnqyorPqws8BwHgNHQ0KffTIU4WfoL0ZavJ0ZsalzBik+KW5QT5eLMP1zkh3U1KbTJ5JWyfZ9E5Y3DnXuHxsAanhUlJnPMdKDIp8pqpOa8u9BwEgNPQzaQUTfypCU8ak8Ck5IzANzIIimKT4vt9sySEeYx+zFfqbtTVLX2PxyKTnvvso3Mi\/JZsnsSxkfXI8vg8E3Xe5NrQT+X8MThMB\/3vXG43jfdntxfb+ba+wfmYo9SkzNdn4joMdfHXcfocDNYNxh2uj7EBgJhOJqXwjrLGpPjJNdFmuzvhbWpNiu9r0D8\/jmhdq8GWSVGk9LoAtk5iq23ilZ\/UKtYtMhrh+ePNhm\/THYPoeK1Nil4qPO9PTIlJ2b+xxiKlTzim6Jzc1DIcv9Q1bBMAwHImJiW6y4wS9jzhzeu5ejkBrtZd+FYTYK1JSU76uTGbbaN2Yh03NHjNPG1SvMGQCO02E2vcRnwMouP3WkzKzf1yrQX6rMe\/dR3G+ptlt62tC+sBACSdTEpionMEk5qb8OxE5kOYjcTkmEoA8UR5KmpNSjKRRZN8uG2sGyZF87RJEeeMR2oV64ZJCXTZvdkLfRJjyJoUp5VeP4jc9Y1ZAYCQTiYlnvgXUiZlTh4xQUJYJw9Lrrw9mJQ+bJ7EkdYz2cQa1Sku1qQo7Nht2LLE9bShZe46D3Ft6v101gYAzotuJmWesFeTvZjUnkq6cQJyy3Ki85PsvM4JaWlSZg3cuslJPx7vU3q9UrbPM58AvVFQeI0zZi8+Z8JEuyRUWx+dx8ExiPc9nklZzselLDRe0bkdbx+c63L8T2wHAKDoaFI0y4S\/xDqZZCeuKNkbxKS6au\/EtDQp+5ujndB1yKQmx3d1iJKe0HNOwK+fkpPYG485IqOwGGR1XJSu5l9\/XnkzaMqWY3mc2wyfFCz72qu2ZEKXdeE235Iqk6Lw2qTKTATn2voczK\/rTEuyDgCgu0l5XTQZ71PGDFZ82\/MsMpwDcmnXJQCMCyalIZiUPmBS6sCkAMAoYFIawuTfB3SvA70AYBQwKQ1h8u8DuteBXgAwCpiUhjD59wHd60AvABgFTEpDmPz7gO51oBcAjAImpSFM\/n1A9zrQCwBGAZPSECb\/PqB7HegFAKOASWkIk38f0L0O9AKAUcCkNITJvw\/oXgd6AcAonNykXFLc3d0ly4nTBrrXBXoRBDFK6PmqBJ6kFHBp4z0X0L0O9AKAUSidrzApBTD59wHd60AvABgFTEpDmPz7gO51oBcAjAImpSFM\/n1A9zrQCwBGAZPSECb\/PqB7HegFAKOASWlIdrx\/qvKf\/j5N\/\/O3afpvJeXIocegx6LHdCZsnmcttT\/DsT8HTAoAjAImpSHZ8erElkp6I4ce05mweZ6dQvszGvtzwKQAwChgUhqSHe9reIIShx7TmbB5np1C+zMa+3PApADAKGBSGpIdbyrRvYY4EzbPs1S\/W8TAYFIAYBQ6mpTH6fhmN+12Ng7vXPHAnM6k7KfpL9XOo\/r866368D6xzlZcm26Y7ZP1z4wzoc6kOC1nIi2Nvp\/Uv3GZ4ovS0ZcNTHuTcj8ddvvp+NEtPoePx2m\/O6iWynm82c\/zxxKuH4n27q90faLsSpW8O9jt9ecAPbb1dps8YyzF6H6+OarZsxyj02pcGjsHt5x7tZ77m5reAWzTzaTYCcZeyPbzCye5MwCT0odyk+J0+Kz09GWPSktpSmKT4g1KrN3AvCqTEifsOYnHfdIJeT\/tg6QskrTZTtXHfciV9wKTAhdGJ5PinqL4i81MUOOf3EUmxZuMzyoRGkRC1AnzL1Xv19XrmLv3DZNikqxDbiufGHxx66xMimjXLOsk7vqz1U8fZ0KxSZn1FGVxeWBSnKlJmbuBefKi14nQP5kQCTFMQD7BuWvZrG9NgV3v6J5AqPAJMjYigaHwbbh62YeMQUiaFLGPoL+6XK17HyRsvV+xP1V\/VNvIpK3bOKix5EyKrp\/7mRmnvQnT6+ynw9Wyf9O\/q4OZ+0x9MBapiQrf9oZJWfajwxk0qeM8bo87hmZ8dp1gDpbbRvuU4\/bbyP2PPpfD+dDJpLgLMJgs5PKYlJsUhU+KOkF6c1FrUoKE6tbx7X5Rn2W7mmqTokj108eZUGZS4rGKMPrEmmotFPKpi4yB2dTL3TDYRO0MiEyqK5OiP+vrd3lqYROYX7bXtlkva1IUQV3Ynk5+qaSXMilBmW5fJnf92ZmVuT76nDQxcb89cnv1X\/2kxvRZrm8+h1pIPWcDZtYLdZ\/HLNsI9inQ5aKPpm23H6PJPCaJO76pvib6E7SX7LfdLwYFWoJJaUi5SfHGQocwBrUmJTYO8\/ZxQs4l6Lg8NimZfvrtz4QXmxSpqfksuDSTEidBkfyqTIq4luckaRLakkiDfQV1YXs5bLLUSVaGaF+0qfu0JFzbtt5+Ho\/vi+yHLkv12xNr5RHrxwZBLoc6ST1jhB65fUbI\/cR9WLD7lKZiPsbxfvSy0DLeRo5J1gG8FExKQ8pNikuIJl5oUlboOt2m4sUmJdNPX3YmnMSkaHPiP6e2GZgtvUxCk8kpSvRLAto2KTJRzUkyTvYyEcZ1ZlmbDhWZpLzq6wpvSPS\/S9u6f7rf\/l\/D3Be\/jRhH3DeB6YPr5zzmSDM5r0nDEOok9VQYU+DGb+Ipk2K3D7Zx+5H7DIn2qfB9Wmk7j8lukzy+inBMAC+nk0lxF5S\/CNyENPrJXW5SRLKXy7FJ0a9snjIp\/nVMEHFCziXoqFz2ZauffvszocykqMjpJcvjccpXQTIGZlOvOAmaZLkk3OUatTcWOZMik+K8HCX7IBE+ZQQSSXaVSBPodcx3LqIx7W\/u1Rwk9ifGrbex36lxY9ro24JI+GL9uO9yOdRTGgaprUbomzEpsRZyP3EfFmLDIZaLzwNxfN1nWQfwUjqZFHfh+AvfXADLJDcq5SZF4V8j6ATpjYlJiD5B6icXii2TEidU+T2UVbuKnEnxCVpv49vb6qePM6HYpHhN5SucQHMVsaY6pK4+BmZTL3fDYBOku5kQCWhOXOaa3TApc1IXCTfVtm9PGoHIFOi5IpX44sScRPVzr\/86R26v2786TAeZuGVSdmNL9k0QJn89noSpMZ+9NlaLdEK3eix6+s9uP1UmJdxP2E9J6hjIMUTHSrYXjG\/pKyYFWtPNpGjsZGbDn+QjU25SVGLUic\/gDIcPWT7f4WdMig5vQAyyLbeNRidY3e7KpKjwZkTzWX+WJkW1l+unjjOh3KToELoYonGlTIo3N9KoDMyTF71P0jqChOiSn46ro0iqLom5BGcSlfirFZm0bIJz697IhOvbtslvWU9FIilrwsScI0z4FtvfIJkGyd9uM9dL0xHgx20jt\/4yloMas\/r8pEmR2+h19FMfV5cxKYt+dj\/3cj1\/PFdGxe1T\/HVPoFP2PLB993Wp4xtoC\/ACupqU10aVSZFl5xgl\/TwT6kxKoxiYU1+X3E3nSJgjANgEk9IQTEofMCl1YFK+IfJphI7kaxcAyIFJaUh2vPzA4EnZPM\/4gcEVl3ZdAsC4YFIakh2v\/mn\/VLIbOfSYzoTN8+wU2p\/R2J8DJgUARgGT0pDseP9U5TqxvYYnKnoMeix6TGfC5nnWUvszHPtzwKQAwChgUhrC5N8HdK8DvQBgFDApDWHy7wO614FeADAKmJSGMPn3Ad3rQC8AGAVMSkOY\/PuA7nWgFwCMAialIUz+fUD3OtALAEYBk9IQJv8+oHsd6AUAo3Byk3JJcXd3lywnThvoXhfoRRDEKKHnqxJ4klLApY33XED3OtALAEahdL7CpBTA5N8HdK8DvQBgFDApDWHy7wO614FeADAKmJSGMPn3Ad3rQC8AGAVMSkOY\/PuA7nWgFwCMAialIbnx\/vnbb9NP3303\/c9\/\/Mf03\/\/+72cRui+6T7pvo7N5nvEDgyswKQAwCpiUhuTGq81AyiicQ+i+jc7meaZNRcpwvCR0mwODSQGAUcCkNCQ33nN6ghKH7tvobJ5nLZ6gxKHbHBhMCgCMAialIbnxpszBOcXobJ5nKZPRIgYGkwIAo9DfpLw7TLvdbjq8c8sDU2JSfv\/FFa74efr937+fvqhPf\/34T7HNP6fPn1XhL9+LsqfCbvPlX6m6dYxOnUnZK4FdneF9WP\/rrSr7pP6NyxRfrpeygakxKY83+2n35jg9uuUkH4\/TfneY7t3iWdCgT2bsV5UtbOz3\/mo37W82laziWf0DGIyuJsVcZMqgXJJJWcIakpWR+McPKod+nj7\/wy7\/+qNyG59\/mH6V6zSO0Sk3KcpkaD4ro+LLHpVJkaYkNineoDy6ZR8Dg0kpA5MC0J9uJkUaFExKGLMxiQzLKv71s1nv8\/x0Rj+N0XXiSYpp4+fpi3iCE+9zdIpNymdlPuTTkFR5YFKcqYkNio6BefKid083d7v9dLgKTYpOtP6anROuS8zH+ZreT8ePtsq0JbYPE+vjdHzj2ntzmA7qc24eSO7Xbb9scz8dzL71v359bRjceje6n1Ebuf7NGqhIGgG5D79OvN8Qa1KOyzpBu0ILFYEOsi++r0\/2D+B10NWk6AvRmxVMigz3ikcRvvqJQpsUsY55lWReC8UmJVonejIzOmUmxb3mSRkO8zTFvfaZTUriqYuMgdnUyxgOfz26xOkSo7lWfZKU67nPPlkG622YlNV6mXnAzhEu6Sf6t2zjTYr66IyT25MzALINt95T\/UsaANteaNJS+w2xRssbOGtofN9NXaCFbC8c79P9A3g9dDMpHjsBpSen0WhnUtzTlK2nKDqMSfFPT1S4pya\/r0yKaMc9fcGkiDDGRJoUwaWZlChpL8tRYlbYJwNqWSZpgzALWRMQG4x4eWHej8Mk9GQb2yYl2fdnmZSY3H5Dln5bntIi1T+z7Nov7x\/AuGBSGtLMpDhj8eUX5TS2vo8SG46sSRFGBpMiylykTIo2J\/7zBb3uMdfjhkkxrxdk6CS5SswlJiV8kqBqokTtWRuMfHLfNimy7RebFGMWpBZlJiU9jliLZV2zjjweov3N\/gG8EjApDWljUqzBsK9n5Od4PRXxk5R5GZMyI41F9XdSVMhXQTIGZlOvKGnHJiV5nZrE6ZJ0vBy1tzxNiNvLtx8n92wbcr+BWbDrLW2I5Wz\/1FpZExCbipw5CpFta57SItU\/s4xJgQsCk9KQFiZl9Z2R+HWNDGNKljby30nBpNhIfM\/kqb\/u0aEP1F+q3C\/rGJjt61ImYJssfZI01+qcMO16JpGaxLyYgGA9k1S9gbHbBCYgWC89D9g5wiV+t6+gf7K9DZMy78vUCRO11b+kCZAabe03xJiSuS5sw9SlNHtqvMn+AbweMCkNealJyX0PxZYLo+HDGI6fpy+6WjObD0zKjDQWJtxrn5noKUnKpHhzI43KwDx5XTrDYK5L\/RcxszHxidaFT5AuMS9\/3RMm6WUbt86cWF3SNW0dzefcPCD3uzwRUbgkbsv1X85EhsP0xe7ncCXGJfaT7Z\/XIWEE\/LylY39zL\/ou9xui9yP\/uicYh9RCRaCDOB6LSVRs9A\/gtdDdpLwm6kxKg0gYjufE6NSZlEYxMGd5XcqnG81xJuUV3AgBXBqYlIZgUvqASanjXK7L4KmMitOZCEwKwKhgUhqSGy8\/MHhaNs8zfmBwxaVdlwAwLpiUhuTG+9N33yUNwjmE7tvobJ5nP\/09bTReErrNgcGkAMAoYFIakhvvn7\/9ZszAOT1R0X3RfdJ9G53N8+xPVadNRYsnKroN3ZZuc2AwKQAwCpiUhjD59wHd60AvABgFTEpDmPz7gO51oBcAjAImpSFM\/n1A9zrQCwBGAZPSECb\/PqB7HegFAKOASWkIk38f0L0O9AKAUTi5SbmkuLu7S5YTpw10rwv0IghilNDzVQk8SSng0sZ7LqB7HegFAKNQOl9hUgpg8u8DuteBXgAwCpiUhjD59wHd60AvABgFTEpDmPz7gO51oBcAjAImpSFM\/n1A9zrQCwBGAZPSECb\/PqB7HegFAKOASWlIbrwPfzxMf\/8\/f5\/+9r\/\/Nv3b\/\/q3F4duR7en24Xt86yl9q9Fd0wKAIwCJqUhufHqxJZKei8N3S5sn2en0H503TEpADAKmJSG5Mbb6glKHLpd2D7PTqH96LpjUgBgFDApDcmNN5XoWgVsn2cpzVrEyGBSAGAUOpqU++mw2007H1f3rnxcqkzK29vpk6s3fLoO6q91ZapMbXX7dimDWpOyn26\/ukrD++la1pvjEmo8HytxPEZmVJPyeLN\/xjzxOB3f7Kb9zaNbXnheey2wfTq8c4snx861qf3dX2Xm3o\/HaS\/n5zkOqrVc\/X46fjRbAzSjm0kxF0d0wn+7i\/Y0FJuUD+9VaZgIjQH5ejvt5bJIinG9D6gxKdfKkihZH\/ZLWXwsYpPiDMr7D27ZxchgUiyYlKdMyobpSNW\/O2BUoDndTEqIe6rSZcJoR5lJsXfycdKLy6VJ2T+ohYRB0QHlJsXoGD2dWpUHJsWamvWxeuUmRd4lvzmqlOowSWhdrhPd\/uqw3sa0c5gO5obERpAoM+1pjIFwdcZgyHX9PLGxvb0J0uVq\/ymTUtleQGa9rA4rnEm5WXQO+pfth91uXeeM2BurmdVYrKv69E1MiiLbHsAzOQuT4iek1N3OSBSZFJMEo1cMLqQx8Z9NAs2srwNKTUrOHKowT1OcxrNJSTx1ETEy29elvmFYko9JvPq6dMYlSIAuGVlDkHgq6j7769qs5xNrkOTC9kySnhPw0p\/gycfG9nY+CfuTmlvW7aXHF7CxXlaHFW67YF03lqfan\/skn46s+xto7UxPqi9hmwLZpxS5+uDYAbyc\/iZlvmvYuCAG4aUmRd7RG5Myg0nZ4sUmRR4T83nh4kxKLsnE5ea6tUk2THQ2YZqEGCcy0YYxCHF7blm395SpqNm+pL2t8QVsrJfVYYWtS\/axtB9B+3F78b7zfQn7LHBmyc7NIvy6mBT4RvQ1KeJCSE0io9HepNj1zGde92Q5hUkx5sR9vqTXPavk71iVm2t3Sc7JBCnWMYgEZtqTyc+EXjdOuAvSVNRsX2JStsYn2Vovq4MxGus+StPgt93sh\/ksx+vbiNuLv4Oy3p9n26TUP0lZ9R\/ghXQ0Ke57KDpSF8mAFJmUZ3wnxdel7uqh1KQ85zspKuSrIBEjs3ld5u6E43KTeJ9IzjLBamKTkrnui01F4fYl7W2NL+A5OqywdfG6Zjnbfnob2368r6eWF3Sfkzo+06Rk2wN4Jt1MijmZtUGRF+TglJkUFc\/4657cXT2Um5Rn\/XWPitSTrJHZvOij5DMnHVMeJkWfjLLJecOkJPfj6sK78eWpQGAqNraXxsH3e+nfwrq99PgCNtbL6rDCbZfSItu+\/Ty3b8YYrif3FWgYrBsyH98Y2acUqXqzn41tAJ5BJ5MinqLISF0sA1FsUnQ40zET3eGvTIoK+yXa0KhAjUnRYZ9KLURPSRImxZsbaVRG5smL3iU1E7NZUGTKn2VSNLI9uZ7CJE9XFyfmeZ4o2v4wHVXCTpmUzfZkP2My69WaFPnXPcF6uX7IctXnZX+pfdky38ZRrZs1Kb5N0bY3S6u6yEwl6wAa0smkvE6qTEqjgFqT0iZG5tKuSwAYF0xKQzApfcCk1IFJAYBRwKQ0JDdefmDwtGydZ\/zA4BpMCgCMAialIbnx6p\/2TyW7l4ZuF7bPs1NoP7rumBQAGAVMSkNy433448EktlZ39bod3Z5uF7bPs5bavxbdMSkAMAqYlIYw+fcB3etALwAYBUxKQ5j8+4DudaAXAIwCJqUhTP59QPc60AsARgGT0hAm\/z6gex3oBQCjgElpCJN\/H9C9DvQCgFE4uUm5pLi7u0uWE6cNdK8L9CIIYpTQ81UJPEkp4NLGey6gex3oBQCjUDpfYVIKYPLvA7rXgV4AMAqYlIYw+fcB3etALwAYBUxKQ5j8+4DudaAXAIwCJqUhTP59QPc60AsARgGT0pDseP9U5T\/9fZr+52\/T9N9KypeGbke3p9uFzfPsz99+m3767rvpf\/7jP6b\/\/vd\/P5vQ\/dH90v371mBSAGAUMCkNyY5XG4qU2Xhp6HZh8zzTRiBlEs4ldP++NZgUABgFTEpDsuNt9QQlDt0ubJ5n5\/YEJQ7dv28NJgUARgGT0pDseFMGo1XA5nmWMgbnFt8aTAoAjEJHk3I\/HXa7aedif\/PoyselyqT8eusqHV+uw\/ovmbLpk9pWlEGxSfn9F1cY8Hn6\/A+3zr9+Dpd1\/OOH6S9V+uVfouypMNv8PP2eqkvEt2bzuvx4nPa7\/XT86JYd91fLNfp4s592V\/fm88y7w3wt2zioK9xjr\/XDO7foSLbzFKZ\/su0F2ccWPKt\/ANCUbiZFTyh+IjOTQWJiHI1ik\/L4XhVGZkMbkL+UcZHL0qTE9T6gzqT88n1Q9uuPn5Uv+WH6Nbn8z+mzWvzrx38G27SOb01rk5K6fk3Zm+Nkt8CkAMDz6GZSJKlJbkTKTMpeZT1V9ijLEuXSpHxWhiZlUHTAi0zK+qnHYkxiAxOGXe\/Lj\/ZJi2Y2M7JN\/XTm88\/TF7WuJXpSo+Jb09akpA2ILfftPMOkRE9m7La2nfWTGovt43FZR7ZtxpXZVu7LGytZhlEB6EZ3kyKfqIxOkUkxr3neh2U+pDHxn7VBya2vA15kUpJGxL3iSRmKJaxJmbwZMdu49WOTorCvi9w2UR++NU1NiknmT12\/lSYl6oNZz5uHJ56kLDc7cp\/2s++\/WS9oz6\/3OB3fLKZk00QBwDehu0kxuLuWeBIbjRebFG1IpEmZwaRsUWVSVqS+O+LMRPYpio7liYsv0+2b5ZVJWfZhTNHZmxSd7NeRNSnzax1FtP36CUgUJSZA7uMpkyLam\/sZb2OWnZmJ+y9MFyYFoD\/nYVL8JDb4hNDepLj19Gde92SpMimzQVibDB\/26Yp9RZOqt2G3l1+ozZqU+DsvF\/EkxT6VkCYlvgnZMgH2qYiIQpPi+6iZ21\/1UffHjtGsszJZmBSAc+E8TIqZGMIJZkSKTMpzvpPi6z6rf4NtVMAzTYoK91on+Mud1Wub3Cuf2OSI5UsyKRkDotZ6vkmJTYV82vGESZHtzcvxNnKMsm2N2DcmBaA\/nUyKe\/frJgczGSQmxtEoMykqnvPXPf5PlmNzA883KSrC76R8bw+DeHoS1suwpmSuW5mbSzEp6evXlrUwKeFc8aRJmevkPu1n33+zXtCeX4\/vpACcG51MisJNDv5xbjyBjUixSdHxnP9PivkSrUIaFXiRSVmMyf8Xmo45nBlZbede9\/xivxirmZ\/IXJhJMUTX8\/r1SoVJ8WbBtKP68k4aE9tW2L7F9nH5657gyWzQv2hbY4pc3eqpiirDqAB0o59JeYVUmZRWAcUmpW04k1LzP3nLxLfm0q5LABgXTEpDMCl9wKTUgUkBgFHApDQkO15+YPCkbJ1n\/MDgGkwKAIwCJqUh2fH+9Pe0yXhp6HZh8zz76bvvkubgXEL371uDSQGAUcCkNCQ73j9VuTYUrZ6o6HZ0e7pd2DzP\/vztN2MEzu2Jiu6P7pfu37cGkwIAo4BJaQiTfx\/QvQ70AoBRwKQ0hMm\/D+heB3oBwChgUhrC5N8HdK8DvQBgFDApDWHy7wO614FeADAKmJSGMPn3Ad3rQC8AGAVMSkOY\/PuA7nWgFwCMwslNyiXF3d1dspw4baB7XaAXQRCjhJ6vSuBJSgGXNt5zAd3rQC8AGIXS+QqTUgCTfx\/QvQ70AoBRwKQ0hMm\/D+heB3oBwChgUhrC5N8HdK8DvQBgFDApDWHy7wO614FeADAKmJSG5Mb78MfD9Pf\/8\/fpb\/\/7b9O\/\/a9\/e3HodnR7ul3YPs9aav9adMekAMAoYFIakhuvTmyppPfS0O3C9nl2Cu1H1x2TAgCjgElpSG68rZ6gxKHbhe3z7BTaj647JgUARgGT0pDceFOJrlXA9nmW0qxFjAwmBQBG4QxMyv102O2m3Zvj9OhKRqXKpLy9nT65esOn66D+WlemytRWt2+XMqg1Kfvp9qurNLyfrmW9OS6hxvOxEsdjZDApADAK3U3K481+2l2aSfnwXpWGidAYkK+3014ui6QY1\/uAGpNyrSyJkvVhv5TFxyI2Kc6gvP\/gll2MDCYFAEahr0n5eJz22qBclEmxd\/Jx0ovLpUnZP6iFhEHRAeUmxegYPZ1alQcmxZqa9bHCpAAAfAs6mpTH6fhGmZOro\/33UkyKSYLRKwYX0pj4zyaBZtbXAaUmJWcOVZinKU7j2aQknrqIGBlMCgCMQj+T8u4w7Xb76fjRmRVMSnBHb0zKDCZlixebFHlMzOcFTAoAQD86mRT7Zdn9jbYlmBQfa5Ni1zOfed2T5RQmxZgT95nXPQAAfehjUsxTFGVM4hjcqBSZlGd8J8XXpe7qodSkPOc7KSrkqyARI4NJAYBR6GNSAi7sSYqOZ\/x1T+6uHspNyrP+ukdF6knWyGBSAGAUMCkNKTYpOpzpmInu8FcmRYX9Em1oVKDGpOiwT6UWoqckCZPizY00KiODSQGAUTgDk\/J6qDIpjQJqTUqbGBlMCgCMAialIZiUPmBS6sCkAMAoYFIakhsvPzB4WrbOM35gcA0mBQBGAZPSkNx49U\/7p5LdS0O3C9vn2Sm0H113TAoAjAImpSG58T788WASW6u7et2Obk+3C9vnWUvtX4vumBQAGAVMSkOY\/PuA7nWgFwCMAialIUz+fUD3OtALAEYBk9IQJv8+oHsd6AUAo4BJaQiTfx\/QvQ70AoBRwKQ0hMm\/D+heB3oBwCic3KRcUtzd3SXLidMGutcFehEEMUro+aoEnqQUcGnjPRfQvQ70AoBRKJ2vMCkFMPn3Ad3rQC8AGAVMSkOY\/PuA7nWgFwCMAialIUz+fUD3OtALAEYBk9IQJv8+oHsd6AUAo4BJaQiTfx\/QvQ70AoBRwKQ0JDdefmDwtGydZ\/zA4BpMCgCMAialIbnx6sSWSnovDd0ubJ9np9B+dN0xKQAwCpiUhuTG2+oJShy6Xdg+z06h\/ei6Y1IAYBQwKQ3JjTeV6FoFbJ9nKc1axMhgUgBgFDqalPvpsNtNOxGHd65qUKpMytvb6ZOrN3y6DuqvdWWqTG11+3Ypg1qTsp9uv7pKw\/vpWtab4xJqPB8rcTxGpr1J0dfyfjp+dIvP4eNx2u8OqqVyHm\/2wfxhw\/Uj0d79la5PlF2pkncHu73+HODnqYq+PWMsxeh+vjlOj26xBKPTalyax+n4pu28q\/Xc39T0DmCbfibFXMjjGxNJsUn58F6VhonQGJCvt9NeLoukGNf7gBqTcq0siZL1Yb+UxcciNinOoLz\/4JZdjMyrMilxwp6TeNwnnZD30z5IyiJJm+1UfdyHXHkvMClwYfQzKfpie+nEdmaUmRR7Jx8nvbhcmpT9g1pIGBQdUG5SjI7R06lVeWBSrKlZH6tXblLMtamfHqgQCTFMQD7B2X\/lUwy73nF5UuoTZGxE5oQrn6q6etmHjEFImhSxj6C\/ulytex8kbL1fsT9Vf1TbyKSt2zioseRMiq6f+5kZ5\/LEZz8drpb9m\/5dHdS6bvtgLFITFb7tWbM1y350uLlV6jiP2+OOoRmfXScwGHLbaJ9y3H4buX+MCrSim0kJLygVqwtoPIpMikmC0SsGF9KY+M8mgWbW1wGlJiVnDlWYpylO49mkJJ66iBiZzYveJFifqJ0BkUl1ZVL05\/CphU1gftkmW7Ne1qQogrqwPT1XpJKemUOi5BmU6fZlctefnVmZ66PPSRMT99sjt1f\/1U9qTJ\/l+uZzqIXUczZgZr1Q93nMso1gnwJdLvpo2nb7MZrMY5K445vqa6I\/QXvJftv9YlCgJZ1Mijvp5QShTvTRT+6XmhR5R29MygwmZYsXmxR5TMznhYszKXESFMmvyqSIpDgnSZPQlkQa7CuoC9vLYZOlTrIyRPuiTd2nJeHatvX283h8X2Q\/dFmq355YK49YPzYIcjnUSeoZI\/TI7TNC7ifuw4Ldp5x352Mc70cvCy3jbeSYZB3AS+lkUmLCO4xRaW9S7HrmM697spzCpBhz4j5f0usek9BkcooS\/ZKAtk2KTFRzkoyTvUyEcZ1ZdsYjk5RXfV3hDYn+d2lb90\/32\/9rmPvitxHjiPsmMH1w\/ZzHHGkm5zVpGEKdpJ4KYwrc+E08ZVLs9sE2bj9ynyHRPhW+Tytt5zHZbZLHVxGOCeDlYFIaUmRSnvGdFF+XuquHUpPynO+kqJCvgkSMzOZ1GSdBkyyXhLskIHvN5kyKvJbn5SjZB4nwKSOQmBtWiTSBXsd85yIa0\/7mXiVbsT8xbr2N\/U6NG9NG3xZEwhfrx32Xy6Ge0jBIbTVC34xJibWQ+4n7sBAbDrFcfB6I4+s+yzqAl9LJpNiLYb4IzAUQOvoRKTMpKp7x1z25u3ooNynP+useFaknWSOzedGbBOuvRXedigSUvmYTJmVO6iLhptr27UkjEJkCnWRTiS9OzElUP\/f6r3Pk9rr9q8N0kIlbJmU3tmTfBGHy1+NJmBrz2WtjtUgndKvHoqf\/7PZTZVLC\/YT9lKSOgRxDdKxke8H4lr5iUqA1nUyKwp3c\/tHkazixi02KDmc6ZqI7\/JVJUWG\/RBsaFagxKTrsU6mF6ClJwqR4cyONysg8edH7JK0jSIgu+em4Ooqk6pKYS3AmUYm\/WpHXtk1wbt0bmXB92zb5LeupSCRlTZiYc4QJ32L7G8w5QfK328z1Zq5am5Rl3DZy6y9jOagxq89PmhS5jV5HP\/VxdRmTsuhn93Mv1\/PHc2VU3D7FX\/cEOmXPA9t3X5c6voG2AC+gn0l5hVSZlEYBtSalTYzMqa9L7qZzJMwRAGyCSWkIJqUPmJQ6MCnfEPk0QkfytQsA5MCkNCQ3Xn5g8LRsnWf8wOCaS7suAWBcMCkNyY1X\/7R\/Ktm9NHS7sH2enUL70XXHpADAKGBSGpIb78MfDyaxtbqr1+3o9nS7sH2etdT+teiOSQGAUcCkNITJvw\/oXgd6AcAoYFIawuTfB3SvA70AYBQwKQ1h8u8DuteBXgAwCpiUhjD59wHd60AvABgFTEpDmPz7gO51oBcAjMLJTcolxd3dXbKcOG2ge12gF0EQo4Ser0rgSUoBlzbecwHd60AvABiF0vkKk1IAk38f0L0O9AKAUcCkNITJvw\/oXgd6AcAoYFIawuTfB3SvA70AYBQwKQ1h8u8DuteBXgAwCpiUhuTG++dvv00\/fffd9D\/\/8R\/Tf\/\/7vydD1+l19LpQx9Z59pT2l6g7JgUARgGT0pDceHUSTCXIVOh1oY6t86xU+0vSHZMCAKOASWlIbrxbT1Di0OtCHVvnWan2l6Q7JgUARgGT0pDceFNJcSugjq3zLKVvLi4FTAoAjEJXk\/J4s592u52Nq3tXOi6YlD5gUuoY1aSY+aJ6nnicjm920\/7m0S0vPKu9j8dpvztMdivb9uGdWXge7w7T7s1RtbTN\/VV6DKegtc6aYK5XIdeL62zsp+NHUZ\/rj9bPrf9f\/\/kCjYLjCudEN5NiT0x3UrgT7UUX+xmASekDJqUOTIrlWe21NimFjGxSgrnecD8d1Hzv1zX1sVET5m2rP7rOt\/MijTApZ0snk2JP6PoL4bwpMSm\/\/zJNf\/34T7f8z+nz52n68q+lXgfUUWRS\/vXzNH3+YfrVLf\/6oxL+l++XehWXwpMXvZmw3R2tTB7zXWtYbpLD1WG9jZv4D6rebxck9Ex7GpvYbJ1JPHJdP29sbK\/7ZMvV\/lPJs7I9i02udh2d0JxJuVn0CvbzZHsKvY6ry+m40sKtG5dZRB9VWwf\/RMLsRyV0XZ5od35yUanLkzorzDrRXG\/2LfsRtStNg6lP5Iqg\/6re6DfvXx6rcP9Su7nc7e84t7k8yYG+dDIpzkmLCzJ1co9GiUmxxuTz9Pkf6rNKnIthWQLqKDIpKrQxsXp\/P30RhsXHpbB90etrc5mg54nfGRdrMsKbDDvpu7tQuZ777K9ts55PRqbO7ye6aRGJW\/YnSFYb29vkFfYnNb+s20uPL8Cs5++43Xq+ryaZuz5tjU8ixprVUTEfB4Xpd6BjuF6og+uD7JvGLPtxJLYLdHmZznZfarv5mIYE43HIsqA\/EbJu0cj2c+6LHIPQ267nyqP+Gz0y\/YVvS1eTMp\/g7iT2F9qolJkUFf\/4YfpLGZW\/pp+n3+M6FVBHqUnxBvGvxNMrHZfC5kUfTOKCuNxcs\/b6lQnOJ4jFpESJUSaeuD23vCSbEJmQarYvaW9rfAFmTL48SoZmXrPj3epfQNTvpI6KZQzxPmVdaDCD5dx4HCttG+pssf22TylUiDbNPnz5HEtfZX9iZF1+\/5EOqeOwca5CX\/qaFH\/iORebOxFHodikqAhf+4QBdZSbFBXRax8Zl8KWXquk5FiVi2QdJofYpIjEKCb+fGJaJ2GPTEg12+eS16q9zPgCgnIxVkNkUpL9i8gm\/bDtpc6Wr9rW4zB92zApwXFNtCO1aKhzCr1uVvsI2Z8YWRfsX4836POiixzTvP7GuQp96WRS3AUyn3iRaRmUYpOiE+UvPyyvfaJ6qKPcpHw\/fZl+nj7Pr31kHSbFkJuc43KTBOyknk2uT5mUzPWeS3Zym5rtS9rbGl9AjUkpmc\/EfrM6Kpa6eJ8SYUoMeZNi+hcvJ7TdGkeZzrq\/sk+O+FyQ2kds9UHWLfu3+SR1XELKzlXoSyeT4k4ueQEFJ9WYlJkUmyjNax7z2udyvxvRilKTop9e2dc84ntBov5S2Lzoo7txPfGbJGDK\/TVqJ\/d1ctAUTvyp\/SST1pJwgmS1sb2dT9x+Xb\/XyTPVXnp8AcGYxFgNIhlu9U8iNMnqqJB1KX18ndmP6\/dqjhX7T7URbNdaZ7FvVRLou64PCfoTIesWjZZzRmPWcWMI29L9kMcLk3KOdDMpGnPC64sjc3KPxtMmZf3XPJf8VyatKDEpK521QYy+E3QpPHnRm+Tjrk05UWfKZQK1E79LEE9N\/LI9uZ4iOTf49X2SKdre\/sVGcn7Zai+boFxCN\/vbMCmajf7N6HXcvrI66iWTaJd6qU+YwH3\/9LrHpT9iP5ZlPdM3We\/73Upnhe\/\/HKLPpi6rt6sPxrgg66R+cn\/7m3uhpTNIc53bKyblbOlqUl4bT5uUsoA6SkxKSVwKl3ZdXizGXGTMEcAgYFIagknpAyalDkzKayV8ShD8yTHAoGBSGpIbLz8weFq2zjN+YHANJgUARgGT0pDceH\/67rtkYkyFXhfq2DrPSrW\/JN0xKQAwCpiUhuTG++dvv5kkuHVXr+v0OnpdqGPrPHtK+0vUHZMCAKOASWkIk38f0L0O9AKAUcCkNITJvw\/oXgd6AcAoYFIawuTfB3SvA70AYBQwKQ1h8u8DuteBXgAwCpiUhjD59wHd60AvABgFTEpDmPz7gO51oBcAjMLJTcolxd3dXbKcOG2ge12gF0EQo4Ser0rgSUoBlzbecwHd60AvABiF0vkKk1IAk38f0L0O9AKAUcCkNITJvw\/oXgd6AcAoYFIawuTfB3SvA70AYBQwKQ1h8u8DuteBXgAwCpiUhuTGyw8Mnpat84wfGFyDSQGAUcCkNCQ3Xp0EUwkyFXpdqGPrPCvV\/pJ0x6QAwChgUhqSG+\/WE5Q49LpQx9Z5Vqr9JemOSQGAUcCkNCQ33lRS3AqoY+s8S+mbi0sBkwIAo9DJpNxPh91u2sVxde\/qxwST0gdMSh2jmpTHm\/0z5ojH6fhmN+1vHt3ywrPa+3ic9ruDmsE0tu3DO7PwPN4dpt2bo2ppm\/ur9BhOQWudNaZNMdfL9eI6G\/vp+FHU5\/qj9XPr\/9d\/vkCj4LjCOdHJpIToC1CelKOCSekDJqUOTIrlWe21NimFjGxSrAmRBsDepPp1TX1s1IR52+qPrvPtvEgjTMrZ0t+kmJPj212Ap6TEpPz+yzT99eM\/3fI\/p8+fp+nLv5Z6HVBHkUn518\/T9PmH6Ve3\/OuPSvhfvl\/qVVwKT16X7po0d6gyecx3rWG5SQ5Xh\/U2buI\/mJsQG0FCz7SnsYnN1pm5Qa7rE9bG9vbGR5er\/aeSZ2V7FvkEWCc0Z1JuFr2C\/TzZnkKv4+pyOq60cOvGZRbRR9XWwd\/8mf2ohK7LE+3ON4mVujyps8KsE5kMs2\/Zj6hdaRpMfcKkBP1X9Ua\/ef\/R03qxvdRuLnf7O85tjn\/T\/FroblLsCfM6HGyJSbHG5PP0+R\/qs0qci2FZAuooMikqtDGxen8\/fRGGxcelsH1d6sl9maDnid8ZF2sybHL2E3xwDcv13OcgsfpkZOr8fsL2ZOKW\/QmS1cb2NnmF\/Uklz3V76fEFmPX8fOXW8301ydz1aWt8EjHWrI6K+TgoTL8DHcP1Qh1cH2TfNGZ5mXdX2wW6vExnuy+13XxMQ4LxOGRZ0J8IWbdoZPs590WOQeht13PlUf+NHpn+wrels0lxbjdzAo5GmUlR8Y8fpr+UUflr+nn6Pa5TAXWUmhRvEP9KPL3ScSlsXpfBJC6Iy0WSkwnOJ4jFpESJUSaeuD23vCSbEJmQarYvaW9rfAFmTL48SoZmPrPj3epfQNTvpI6KZQzxPmVdaDCD5dx4HCttG+pssf2en2CINs0+fPkcS19lf2JkXX7\/kQ6p47BxrkJf+poUc+EsF+LoFJsUFeFrnzCgjnKToiJ67SPjUtjSa5WUHKtykazD5BCbFJEYxcSfT0zrJOyRCalm+1zyWrWXGV9AwqQs81dkUpL9i8gm\/bDtpc6Wr9rW44gTrejPOukm2pFaNNQ5hV43q32E7E+MrAv273LLEosuckzz+hvnKvSlq0kxJ2rqwh2UYpOiE+UvPyyvfaJ6qKPcpHw\/fZl+nj7Pr31kHSbFkJuc43KTBOy1GyYnkVyfMimZxJNLdnKbmu1L2tsaX0CNScn0L0DsN6ujYqmL9ykRpsSQNymmf\/FyQtutcZTprPsr++SIzwWpfcRWH2Tdsn897vRxCSk7V6EvHU2KPUFe04lQZlJsojSvecxrn8v9bkQrSk2KfnplX\/OI7wWJ+kth87qM7sb1xG+SgCn3E7+7dlfJQVM48af2k0xaS8IJktXG9mY\/fr+u3+vkmWovPb6AYExirAaRDLf6JxGaZHVUyLqUPr7O7Mf126zn+xAl3VQbwXatdRb7ViWBvuv6kKA\/EbJu0Wg5ZzRmHTeGsC3dD3m8MCnnCCalIU+blPVf81zyX5m0osSkrHTWBjH6TtCl8ORFb5KPujZ1yOszU55Nrk9N\/LI9uZ7CJENXN7ft1\/dJpmh7+xcbqeS52V52XnIJ3ewvNBK2bknoW\/2b0eu4fWV11Esm0S71Up8wgfv+6XWPS3\/EfizLeqZvst73u5XOCt\/\/OUSfTV1Wb1cfjHFB1kn95P72N\/dCS5d35jq3V0zK2dLRpLw+njYpZQF1lJiUkrgULu26vFiMuciYI4BBwKQ0BJPSB0xKHZiU10r4lCD4k2OAQcGkNCQ3Xn5g8LRsnWf8wOAaTAoAjAImpSG58f703XfJxJgKvS7UsXWelWp\/SbpjUgBgFDApDcmN98\/ffjNJcOuuXtfpdfS6UMfWefaU9peoOyYFAEYBk9IQJv8+oHsd6AUAo4BJaQiTfx\/QvQ70AoBRwKQ0hMm\/D+heB3oBwChgUhrC5N8HdK8DvQBgFDApDWHy7wO614FeADAKJzcplxR3d3fJcuK0ge51gV4EQYwSer4qgScpBVzaeM8FdK8DvQBgFErnK0xKAUz+fUD3OtALAEYBk9IQJv8+oHsd6AUAo4BJaQiTfx\/QvQ70AoBRwKQ0hMm\/D+heB3oBwChgUhrC5N8HdK8DvQBgFDApDcmNlx8YPC1b5xk\/MLgGkwIAo4BJaUhuvDoJphJkKvS6UMfWeVaq\/SXpjkkBgFHApDQkN96tJyhx6HWhjq3zrFT7S9IdkwIAo4BJaUhuvKmkuBVQx9Z5ltI3F5cCJgUARqGjSXmcjm92025nY3\/z6MrHBZPSB0xKHaOalMeb\/bS7undLpdh5JjW\/PKu9j8dpvztMdivb9uGdWXge7w7T7s1RtbTN\/dW3myNb66wxbbq5Pp7v4zob++n4UdTn+qP1c+v\/13++QKPguMI50c2k6Itu504Kf5K+6GI\/AzApfcCk1IFJsTyrvdYmpZCRTYqd36UBuJ8Oar7365r62KgJ87bVH13n23mRRpiUs6WTSbEn9HxiOjf8rS7CU1FiUn7\/ZZr++vGfbvmf0+fP0\/TlX0u9DqijyKT86+dp+vzD9Ktb\/vVHJfwv3y\/1Ki6FJy96M2G7O1qZPOa71rDcJIerw3obN\/EfzA2JjSChZ9rT2MRm68y8INf1CWtje3sTpMvV\/lPJs7I9i02udh2d0JxJuVn0CvbzZHsKvY6ry+m40sKtG5dZRB9VWwf\/RMLsRyV0XZ5od35yUanLkzorzDqRyTD7lv2I2pWmwdQnTErQf1Vv9Jv3L49VuH+p3Vzu9nec21ye5EBfOpkUf4KJk\/AVnBQlJsUak8\/T53+ozypxLoZlCaijyKSo0MbE6v399EUYFh+XwvZFryf35VqcJ35nXKzJcDcZboK3k767C5Xruc9BYvXJyNT5\/YTtycQt+xMkq43t5dwS90Gybi89vgCznmvbr+f7apK569PW+CRirFkdFfNxUJh+BzqG64U6uD7IvmnMsh9HYrtAl5fpbPeltpuPaUgwHocsC\/oTIesWjWw\/577IMQi97XquPOq\/0SPTX\/i2dDMpGnMi6JNXXjwDU2ZSVPzjh+kvZVT+mn6efo\/rVEAdpSbFG8S\/Ek+vdFwKm9dlMIkL4nKR5GSC8wliMSlRYpSJJ27PLS\/JJkQmpJrtS9rbGl+AGZMvj5KhKg0MVaZ\/AVG\/kzoqljHE+5R1ocEMlnPjcay0baizxfZ7foIh2jT78OVzLH2V\/YmRdfn9RzqkjsPGuQp96WZS9Ak1n4jmAlouyFEpNikqwtc+YUAd5SZFRfTaR8alsKXXKik5VuUiWYfJITYpIjGKiT+fmNZJ2CMTUs32ueS1ai8zvoCESVnmrcikJPsXkU36YdtLnS1fta3HESda0Z910k20I7VoqHMKvW5W+wjZnxhZF+zf5ZQlFl3kmOb1N85V6Esnk6IvnuUkXS+PSbFJ0Ynylx+W1z5RPdRRblK+n75MP0+f59c+sg6TYshNznG5SQJ2Us8m16dMSuZ6zyU7uU3N9iXtbY0voMaklMxnYr9ZHRVLXbxPiTAlhrxJMf2LlxPabo2jTGfdX9knR3wuSO0jtvog65b923ySOi4hZecq9KWTSbEnxzwJmAkhdYKPRZlJsYnSvOYxr30u97sRrSg1KfrplX3NI74XJOovhc2LProb1xO\/SQKm3E\/87vpdJQdN4cSf2k8yaS0JJ0hWG9vb+cTt1\/U7Nbes20uPLyAYkxirQSTDrf5JhCZZHRWyLqWPrzP7cf026\/k+REk31UawXWudxb5VSaDvuj4k6E+ErFs0Ws4ZjVnHjSFsS\/dDHq\/MuQpd6WRSNO7C8JE5CUfiaZOy\/mueS\/4rk1aUmJSVztogRt8JuhSevOhN8nHXpZyoM+XZ5PrUxC\/bk+spTDJ0dXPbfn0\/VxRtb\/9iI5U8N9vLJig\/b+n9bZgUzUb\/ZvQ6bl9ZHfWSSbRLvdQnnDuXeXV\/c1z6I\/ZjkfOv6pus9\/1upbPC938O0WdTl9Xb1QdjXJB1Uj+5v\/3NvdDSGaS5zu0Vk3K2dDQpr4+nTUpZQB0lJqUkLoVLuy4vFmMuMuYIYBAwKQ3BpPQBk1IHJuW1Ej4leC1\/NQmXDSalIbnx8gODp2XrPOMHBtdgUgBgFDApDcmN96fvvksmxlTodaGOrfOsVPtL0h2TAgCjgElpSG68f\/72m0mCW3f1uk6vo9eFOrbOs6e0v0TdMSkAMAqYlIYw+fcB3etALwAYBUxKQ5j8+4DudaAXAIwCJqUhTP59QPc60AsARgGT0hAm\/z6gex3oBQCjgElpCJN\/H9C9DvQCgFE4uUm5pLi7u0uWE6cNdK8L9CIIYpTQ81UJPEkp4NLGey6gex3oBQCjUDpfYVIKYPLvA7rXgV4AMAqYlIYw+fcB3etALwAYBUxKQ5j8+4DudaAXAIwCJqUhTP59QPc60AsARgGT0pDcePntntOydZ7x2z1rMCkAMAqYlIbkxquTYCpBpkKvC3VsnWel2l+S7pgUABgFTEpDcuPdeoISh14X6tg6z0q1vyTdMSkAMAqYlIbkxptKilsBdWydZyl9c3EpYFIAYBQ6mpTH6fhmN+12Ng7vXPHAYFL6gEmpY1ST8nizn3ZX926pFDvP7G8e3fLCs9r7eJz2u8Nkt7Jtv2jueneYdm+OqqVt7q\/SYzgFrXXWmDbdXK9DrhfX2dhPx4+iPtcfrZ9b\/7\/+8wUaBccVzoluJkVfdDt3UtiTdDkpRwWT0gdMSh2YFMuz2mttUgoZ2aTY+V0agPvpoIyFX9fUx0ZNmLet\/ug6386LNMKknC2dTIo9SecTz5wg3+4iPBUlJuX3X6bprx\/\/6Zb\/OX3+PE1f\/rXU64A6ikzKv36eps8\/TL+65V9\/VML\/8v1Sr+JSePKid9ejuUOVyWO+aw3LTXK4Oqy3cRP\/wdyQ2AgSeqY9jU1sts7MC3JdP29sbG9vgnS52n8qeVa2Z3Hzlgmd0JxJuVn0CvbzZHsKvY6ry+m40sKtG5dZRB9VWwd\/82f2oxK6Lk+0O98kVurypM4Ks05kMsy+ZT+idqVpMPXR9pqg\/6re6DfvXx6rcP9Su7nc7e84tzn+TfNr4TxMymp5TEpMijUmn6fP\/1CfVeJcDMsSUEeRSVGhjYnV+\/vpizAsPi6F7YteX4vLBD1P\/M64WJNhk7O\/Xu2k7+5C5Xruc5BYfTIydX4\/YXsyccv+BMlqY3ubvML+pJLnur30+ALMev6O263n+2qSuevT1vgkYqxZHRXzcVCYfgc6huuFOrg+yL5pzLIfR2K7QJeX6Wz3pbabj2lIMB6HLAv6EyHrFo1sP+e+yDEIve16rjzqv9Ej01\/4tnQyKe4k8Ce4P4kzJ+IolJkUFf\/4YfpLGZW\/pp+n3+M6FVBHqUnxBvGvxNMrHZfC5kUfTOKCuNxcs\/b6lQnOJ4jFpESJUSaeuD23vCSbEJmQarYvaW9rfAFmTL48SoaqNDBUmf4FRP1O6qhYxhDvU9aFBjNYzo3HsdK2oc4W2+\/5CYZo0+zDl8+x9FX2J0bW5fcf6ZA6DhvnKvSlm0kJTlr3GDJ\/go9BsUlREb72CQPqKDcpKqLXPjIuhS29VknJsSoXyTpMDiK5BgldISb+fGJaJ2GPTEg12+eS16q9zPgCEibFGwmZDPP9i8gm\/bDtpc6Wr9rW44gTrejPOukm2pFaNNQ5hV43q32E7E+MrAv2r8cb9HnRRY5pXn\/jXIW+dDQpEn0xlZ\/g50qxSdGJ8pcfltc+UT3UUW5Svp++TD9Pn+fXPrIOk2LITc5xuUkCdlLPJtenTEom8eSSndymZvuS9rbGF1BjUjL9CxD7zeqoWOrifUqEKTHkTYrpX7yc0HZrHGU66\/7KPjnic0FqH7HVB1m37N\/mk9RxCSk7V6Ev3UyKPqHmSSA3IQxGmUmxidK85jGvfS73uxGtKDUp+umVfc0jvhck6i+FzYs+uhs316lOAqbcT\/x2cl8nB03hxJ\/aTzJpLQknSFYb2wfziev3Onmm2kuPLyAYkxirQSTDrf5JhCZZHRWyLqWPrzP7cf026\/k+REk31UawXWudxb5VSaDvuj4k6E+ErFs0Ws4ZjVnHjSFsS\/dDHq\/MuQpd6WZS\/EkdP4obmadNyvqveS75r0xaUWJSVjprgxh9J+hSePKiN8nHXZtyos6UZ5PrUxO\/bE+upzDJ0NXNbfv1fZIp2t7+xUYqeW62l01QLqGb\/W2YFM1G\/2b0Om5fWR31kkm0S73UJ0zgvn963ePSH7Efy7Ke6Zus9\/1upbPC938O0WdTl9Xb1QdjXJB1Uj+5v\/3NvdDSGaS5zu0Vk3K29DMpr5CnTUpZQB0lJqUkLoVLuy4vFmMuMuYIYBAwKQ3BpPQBk1IHJuW1Ej4leC1PqOGywaQ0JDdefmDwtGydZ\/zA4BpMCgCMAialIbnx\/vTdd8nEmAq9LtSxdZ6Van9JumNSAGAUMCkNyY33z99+M0lw665e1+l19LpQx9Z59pT2l6g7JgUARgGT0hAm\/z6gex3oBQCjgElpCJN\/H9C9DvQCgFHApDSEyb8P6F4HegHAKGBSGsLk3wd0rwO9AGAUMCkNYfLvA7rXgV4AMAqYlIYw+fcB3etALwAYhZOblEuKu7u7ZDlx2kD3ukAvgiBGCT1flcCTlAIubbznArrXgV4AMAql8xUmpQAm\/z6gex3oBQCjgElpCJN\/H9C9DvQCgFHApDSEyb8P6F4HegHAKGBSGsLk3wd0rwO9AGAUMCkNyY2XHxg8LVvnGT8wuAaTAgCjgElpSG68OgmmEmQq9LpQx9Z5Vqr9JemOSQGAUcCkNCQ33q0nKHHodaGOrfOsVPtL0h2TAgCjgElpSG68qaS4FVDH1nmW0jcXlwImBQBGob9JeXeYdrvddHjnlg3300GV6fLdbj8dP7riMweT0gdMSh2jmpTHm\/20u7p3S6U8Tsc3u2l\/8+iWF57V3sfjtN8d1AylsW2Hc1clev57c1QtbXN\/lR7DKWits8a0Oc\/p4XpxnY1l3t\/sj8sfev3\/+s8XaBQcVzgnupoUeXLKC11fkP7CNZ8HOXkwKX3ApNSBSbE8q73WJqWQkU2KneflHG5vQv26pj42asK8bfVH1\/l2XqQRJuVs6WZS7IlrDUpoUtxTFH9SJp+0nCclJuX3X6bprx\/\/6Zb\/OX3+PE1f\/rXU64A6ikzKv36eps8\/TL+65V9\/VML\/8v1Sr+JSePKiNxO2uzZl8pjvWsNykxyuDutt3MR\/MDcaNoLrONOeRs4PJvHIdaO5wUS0vb250eVq\/6nkWdmeRT7h1QnNmZSbRa9gP0+2p9DruLqcjist3LpxmUX0UbV18E8kzH5UQtfliXbnJxeVujyps8KsE5kMs2\/Zj6hdaRpMfbS9Jui\/qjf6zfuXxyrcv9RuLnf7O85tjvME\/7XT1aToCcufaPPk5SbI+WSLl8+YEpNijcnn6fM\/1GeVOBfDsgTUUWRSVGhjYvX+fvoiDIuPS2H7oteT+zJBzxO\/uw7tdWqTs5\/g7aTv7kLletG1a9bzycjU+f2E7cnELfsTJKuN7e2cEvYnNX+s20uPL8Cs5++43Xq+ryaZuz5tjU8ixprVUTEfB4Xpd6BjuF6og+uD7JvGLPtxJLYLdHmZznZfarv5mIYE43HIsqA\/EbJu0cj2c+6LHIPQ267nyqP+Gz0y\/YVvSzeT4rEn+nKRrU72rZP\/zCgzKSr+8cP0lzIqf00\/T7\/HdSqgjlKT4g3iX4mnVzouhc3rMpjEBXG5SHIywfkEsZiUKDHKxBO355aXZBMiE1LN9iXtbY0vwIzJl0fJUJUGhirTv4Co30kdFcsY4n3KutBgBsu58ThW2jbU2WL7bZ9ShAbA7MOXz7H0VfYnRtbl9x\/pkDoOG+cq9AWT0pBik6IifO0TBtRRblJURK99ZFwKW3qtkpJjVS6SdZgcYpMiEqOY+P11v05M6yTskQmpZvtc8lq1lxlfQFAuxmqITEqyfxHZpB+2vdTZ8lXbehymbxsmJTiuiXakFg11TqHXzWofIfsTI+uC\/evxBn1edJFjmtffOFehL+dnUsyFtZzA\/mRb6s+XYpOiE+UvPyyvfaJ6qKPcpHw\/fZl+nj7Pr31kHSbFkJuc43JzXdpJPZtcnzIpmcSTS3Zym5rtS9rbGl9AjUnJ9C9A7Dero2Kpi\/cpEabEkDcppn\/xckLbrXGU6az7K\/vkiM8FqX3EVh9k3bJ\/m0NSxyWk7FyFvpyhSbEnW3ACpyaLM6TMpNhEaV7zmNc+l\/vdiFaUmhT99Mq+5hHfCxL1l8LmdRndjZtrUScBU+6vUzu5r5ODpnDiT+0nmbSWhBMkq43tzX78fl2\/18kz1V56fAHBmMRYDSIZbvVPIjTJ6qiQdSl9fJ3Zj+u3nTtdH6Kkm2oj2K61zmLfqiTQd10fEvQnQtYtGi3njMas48YQtqX7IY9X5lyFrpylSbEnjzqJ9YUjLpBz52mTsv5rnkv+K5NWlJiUlc7aIEbfCboUnrwuTfJx15+cqDPl2eT61MQv25PrKUwydHVz2359n2SKtrd\/sZFKnpvtZROUS+hmf6GRsHVivtro34xex+0rq6NecvOkr5f6hAnc90+ve1z6I\/ZjWdYzfZP1vt+tdFb4\/s8h+mzqsnq7+mCMC7JO6if3t7+5F1rK3CL0xqScLd1NymviaZNSFlBHiUkpiUvh0q7Li8WYi4w5AhgETEpDMCl9wKTUgUl5rYRPCUZ6Cg2QA5PSkNx4+YHB07J1nvEDg2swKQAwCpiUhuTG+9N33yUTYyr0ulDH1nlWqv0l6Y5JAYBRwKQ0JDfeP3\/7zSTBrbt6XafX0etCHVvn2VPaX6LumBQAGAVMSkOY\/PuA7nWgFwCMAialIUz+fUD3OtALAEYBk9IQJv8+oHsd6AUAo4BJaQiTfx\/QvQ70AoBRwKQ0hMm\/D+heB3oBwCic3KRcUtzd3SXLidMGutcFehEEMUro+aoEnqQUcGnjPRfQvQ70AoBRKJ2vMCkFMPn3Ad3rQC8AGAVMSkOY\/PuA7nWgFwCMAialIUz+fUD3OtALAEYBk9IQJv8+oHsd6AUAo4BJaQiTfx\/QvQ70AoBRwKQ0JDdefmDwtGydZ\/zA4BpMCgCMAialIbnx6iSYSpCp0OtCHVvnWan2l6Q7JgUARgGT0pDceLeeoMSh14U6ts6zUu0vSXdMCgCMAialIbnxppLiVkAdW+dZSt9cXAqYFAAYhf4m5d1h2u120+GdW\/bkys8YTEofMCl1jGpSHm\/20+7q3i2V8jgd3+ym\/c2jW154Vnsfj9N+d5jsVrbtF81Rep57c1QtbXN\/lR7DKWits8a0qeZzH3K9uM7Gfjp+FPW5\/rg8odf\/r\/98gUbBcYVzoqtJkSenvNBz5ecOJqUPmJQ6MCmWZ7XX2qQUMrJJsfO5NAD300HN7X5dUx8bNWHetvqj63w7L9IIk3K2dDMp9sT1rnm50HPlI1BiUn7\/ZZr++vGfbvmf0+fP0\/TlX0u9DqijyKT86+dp+vzD9Ktb\/vVHJfwv3y\/1Ki6FJy96M2G7a1Amj\/muNSw3yeHqsN7GTfwHVe+3C67nTHsaOQ+YxCPX9QlrY3vdJ1uu9p9KnpXtWWxytevohOZMys2iV7CfJ9tT6HVcXU7HlRZu3bjMIvqo2jr4JxJmPyqh6\/JEu\/OTi0pdntRZYdaJTIbZt+xH1K40DaY+YVKC\/qt6o9+8f3mswv1L7eZyt7\/j3ObyJAf60tWk6AnLn2jSpKTKR6DEpFhj8nn6\/A\/1WSXOxbAsAXUUmRQV2phYvb+fvgjD4uNS2L7o9eS+TNDzxO+Mi70ebXL2E7yd9N1dqFzPfQ4Sq09Gps7vJ2xPJm7ZHzMnBEklvb2dO8L+pJLnur30+ALMev6O263n+2qSuevT1vgkYqxZHRXzcVCYfgc6huuFOrg+yL5pzLIfR2K7QJeX6Wz3pbabj2lIMB6HLAv6EyHrFo1sP+e+yDEIve16rjzqv9Ej01\/4tnQzKR57oi8XmSdXfs6UmRQV\/\/hh+ksZlb+mn6ff4zoVUEepSfEG8a\/E0ysdl8LmdRlM4oK4XCQ5meB8gjDXbZDgFKINmYQMom5JNiEyIdVsX9Le1vgCzJh8eZQMVWlgqDL9C4j6ndRRsYwh3qesCw1msJwbj2OlbUOdLbbfxqxEhsXsw5fPsfRV9idG1uX3H+mQOg4b5yr0BZPSkGKToiJ87RMG1FFuUlREr31kXApbepnrLjE5r8pFsg6TQ2xSRGIUE7+\/vsPQ666TsMdsI5Nn4fa55LVqLzO+gIRJWeaoyKQk+xeRTfph20udLV+1rccRJ1rRn3XSTbQjtWiocwq9blb7CNmfGFkX7F+PN+jzoosc07z+xrkKfcGkNKTYpOhE+csPy2ufqB7qKDcp309fpp+nz\/NrH1mHSTHkJue43CQBO6lnk+tTJiWTeHLJTm5Ts31Je1vjC6gxKZn+BYj9ZnVULHXxPiXClBjyJsX0L15OaLs1jjKddX9lnxzxuSC1j9jqg6xb9q\/HnT4uIWXnKvQFk9KQMpNiE6V5zWNe+1zudyNaUWpS9NMr+5pHfC9I1F8Km9dldDeuJ36TBEy5vx7t5L5ODprCiT+1n2TSWhJOkKw2tjf78ft1\/V4nz1R76fEFBGMSYzWIZLjVP4nQJKujQtal9PF1Zj+u33YOdX2Ikm6qjWC71jqLfauSQN91fUjQnwhZt2i0nDMas44bQ9iW7oc8XpiUcwST0pCnTcr6r3ku+a9MWlFiUlY6a4MYfSfoUnjyujTJRyURHXKizpRnk+tTE79sT66nMMnQ1c1t+\/V9kina3v7FRip5braXTVAuoZv9bZgUzUb\/ZvQ6bl9ZHfWSmw99vdQnTOC+f3rd49IfsR\/Lsp7pm6z3\/W6ls8L3fw7RZ1OX1dvVB2NckHVSP7m\/\/c290NIZpLnO7RWTcrZ0NymviadNSllAHSUmpSQuhUu7Li8WYy4y5ghgEDApDcGk9AGTUgcm5bUSPiUI\/uQYYFAwKQ3JjZcfGDwtW+cZPzC4BpMCAKOASWlIbrw\/ffddMjGmQq8LdWydZ6XaX5LumBQAGAVMSkNy4\/3zt99MEty6q9d1eh29LtSxdZ49pf0l6o5JAYBRwKQ0hMm\/D+heB3oBwChgUhrC5N8HdK8DvQBgFDApDWHy7wO614FeADAKmJSGMPn3Ad3rQC8AGAVMSkOY\/PuA7nWgFwCMwslNyiXF3d1dspw4baB7XaAXQRCjhJ6vSuBJSgGXNt5zAd3rQC8AGIXS+QqTUgCTfx\/QvQ70AoBRwKQ0hMm\/D+heB3oBwChgUhrC5N8HdK8DvQBgFDApDWHy7wO614FeADAKmJSGZMf7pyr\/6e\/T9D9\/m6b\/VlK+NHQ7uj3dLmyeZw9\/PEx\/\/z9\/n\/72v\/82\/dv\/+rcXhW5Dt6XbHBlMCgCMAialIdnxakORMhsvDd0ubJ5n2lSkDMdLQrc5MpgUABgFTEpDsuNt9QQlDt0ubJ5nLZ6gxKHbHBlMCgCMAialIdnxpgxGq4DN8yxlMlrEyGBSAGAU+puUd4dpt9tNh3duWfPxOO1VmS7Xsb95dBXnTZVJ+fXWVTq+XIf1XzJl0ye1rSiDSpOyn26\/ukrD++la1r+9VQp\/mm7fxmWKT9dz2chsXpf6enxznJpdceZaPkz3bjFAXOfB9R9xf+XngMfp+Ca1riy3n83ccZXcax1Cj6Uf5Tze7NN6buhctJ\/WxwngTOlqUswFvJqk3CTjL0BjYvbT8aOpPGuKTcrje1UYmQ1tQP5SxkUuS5MS1\/uACpNyrSyJUv5hv5R9sMdiNiWxSXEG5f0Ht+xiZM7GpOh9VRmJnEmR3E+H3P6eg9DjW5mUIlofJ4AzpZtJkQYlNCkR7m5rhKcpZSZlr8yGKnuUZYlyaVI+qzSZMig6oNik7B+UjuJpSLI8MCnW1MQGRcfIlJiUo0rI9toME75O1P6aDa7J4Omn30YbhrjMoffj61yyDeeE5cak\/EmK3N\/6xsa2c1zWmQ1S3K5ux22fNSnuZsq1FfRpHtt+Olxtm5SUzuF+xJiuDqt+5Y4TwGuhq0nRF7afmHImxU+KufpzosikmNc8KvXJMh\/SmPjP2qDk1tcBhSbFvuZJGQ77NMW99plNSuKpi4iRedKkqOvNJ0lz\/blkbq9VlwydKbHXpU2kwTY+MT\/1JMWvZ\/YbJmq\/3yVpP2VS9GdhMCLsXOLrbJ\/tNvUmRfbP9t2tH+jijIwfo8TpHKy3Gm+4H6u\/6Fdme4DXRDeT4tkyKb5ulLuEF5sUbUikSZnBpGzxYpNijIk0KQuXaVLE9SZMhkyemjmBxkbELMuknbl+hQGIMdf+KmnHZsIjy58wKSKRL\/uI233KpEiDoxHbx2PKjTHSOT3eeCxRvzLbA7wmztekmItQG5RE3ZnS3qS49fRnXvdkOYVJMebEfb7E1z1zUp1Nhk3E0qTMiTFKmEEyLTYptn1\/zZtYJe3YTHhkeZzYF5Z2LC81KUFfVeg602apSRHl0mTM+5Fmz5Dul0ZuD\/CaOE+TYi7O5cIfhSKT8pzvpPi6z+rfYBsVUGhSnvOdFBXyVZCIkXnSpEhTIZbjJK+XTWKMjYhMroUmJU7uyaStal9qUmQiX5ajdmX\/RR+XfuT3EZuH1bInKk+PN94PJgUujzM0KXbCMHcng110ZSZFxXP+usf\/yXJsbqDYpDzrr3tUXOvHKV9vp73fRsXIPG1SlutRJnZ7rTrD4W4kFmOwGBizjU+gzzIptr110m5gUua+2H3YbdycE4xzy6S4tvz8lNAiaFeYiZkikxLuJ9cvjdwe4DVxfibFXfDGpIjwF+05U2xSdDzn\/5NivkSrkEYFKkyKjmf8f1KcuZFGZWSeNCkq+c1\/NRIlWJvoE9dkcN1KU+IMR8qoBInWr+fWTZqDl5uU\/dVh7meu\/\/YvgLZNit+n7W\/Ult7GlR9UW\/tIQ0MwdjcPJkyKHc92vzSYFHitdDcpr4kqk9IqoNKktImRubTr0hMm\/wEx5ifzVArglYJJaQgmpQ+YlDowKaMQPq1Z\/nwa4HLApDQkO15+YPCkbJ1n\/MDgmks1KQAwHpiUhmTH+9Pf0ybjpaHbhc3z7O\/\/5+9Jo\/GS0G2ODCYFAEYBk9KQ7Hj\/VOXaULR6oqLb0e3pdmHzPHv448GYihZPVHQbui3d5shgUgBgFDApDWHy7wO614FeADAKmJSGMPn3Ad3rQC8AGAVMSkOY\/PuA7nWgFwCMAialIUz+fUD3OtALAEYBk9IQJv8+oHsd6AUAo3Byk3JJcXd3lywnThvoXhfoRRDEKKHnqxJ4klLApY33XED3OtALAEahdL7CpBTA5N8HdK8DvQBgFDApDWHy7wO614FeADAKmJSGMPn3Ad3rQC8AGAVMSkOY\/PuA7nWgFwCMAialIUz+fUD3OtALAEYBk9KQ3Hhb\/sidjtfyQ3et2DrP+IHBNZgUABgFTEpDcuPViS2V9F4aul3YPs9Oof3oumNSAGAUMCkNyY231ROUOHS7sH2enUL70XXHpADAKGBSGpIbbyrRtQrYPs9SmrWIkcGkAMAo9Dcp7w7TbrebDu\/csubjcdqrMl2+qjtjqkzK29vpk6s3fLoO6q91ZapMbXX7dimDWpOyn26\/ukrD++la1pvjEmo8HytxPEYGkwIAo9DVpDze7BNG5HE6vlFlb47q0zTdX+n6w3RvK8+aYpPy4b0qDROhMSBfb6e9XBZJMa73ATUm5VpZEiXrw34pi49FbFKcQXn\/wS27GBlMCgCMQjeTIg3K1tOS12dS7J18nPTicmlS9g9qIWFQdEC5STE6Rk+nVuWBSbGmZn2sMCkAAN+CriZFGxNvVtYmJXyiMgJFJsUkwegVgwtpTPxnk0Az6+uAUpOSM4cqzNMUp\/FsUhJPXUSMDCYFAEahm0nx5E2Kxdbvp+NHV3DGvNSkyDt6Y1JmMClbvNikyGNiPi9gUgAA+nH2JsV\/iXZ\/c\/7PU9qbFLue+czrniynMCnGnLjPvO4BAOjD+ZuU1F\/\/nClFJuUZ30nxdam7eig1Kc\/5TooK+SpIxMhgUgBgFM7QpNxPB7W8u7JfleWve9w6mbt6KDcpz\/rrHhWpJ1kjg0kBgFE4Q5OicE9PbIzxfRRNsUnR4UzHTHSHvzIpKuyXaEOjAjUmRYd9KrUQPSVJmBRvbqRRGRlMCgCMQneT8pqoMimNAmpNSpsYGUwKAIwCJqUhmJQ+YFLqwKQAwChgUhqSGy8\/MHhats4zfmBwDSYFAEYBk9KQ3Hj1T\/unkt1LQ7cL2+fZKbQfXXdMCgCMAialIbnxPvzxYBJbq7t63Y5uT7cL2+dZS+1fi+6YFAAYBUxKQ5j8+4DudaAXAIwCJqUhTP59QPc60AsARgGT0hAm\/z6gex3oBQCjgElpCJN\/H9C9DvQCgFHApDSEyb8P6F4HegHAKJzcpFxS3N3dJcuJ0wa61wV6EQQxSuj5qgSepBRwaeM9F9C9DvQCgFEona8wKQUw+fcB3etALwAYBUxKQ5j8+4DudaAXAIwCJqUhTP59QPc60AsARgGT0hAm\/z6gex3oBQCjgElpSG68\/HbPadk6z\/jtnjWYFAAYBUxKQ3Lj1YktlfReGrpd2D7PTqH96LpjUgBgFDApDcmNt9UTlDh0u7B9np1C+9F1x6QAwChgUhqSG28q0bUK2D7PUpq1iJHBpADAKPQ3Ke8O0263mw7v3LLk43Haq7rd1b0rOG+qTMrb2+mTqzd8ug7qr3Vlqkxtdft2KYNak7Kfbr+6SsP76VrWm+MSajwfK3E8Rqa9SbmfDrv9dPzoFp+DudYPqqVyHm\/2Zu4Iw\/Uj0d79la5PlOn5xc1D67lGj2293SbPGEsxup9vjtOjWyzB6JScQx+n45vM3PtMtJ77m5reAWzT1aTISSZ1odhJJTVxnCfFJuXDe1UaJkJjQL7eTnu5LJJiXO8DakzKtbIkStaH\/VIWH4vYpDiD8v6DW3YxMq\/KpMQJe07icZ90Qt5P+yApiyRttlP1cR9y5b3ApMCF0c2kxHdBqwtFX4y+\/lWZFHsnHye9uFyalP2DWkgYFB1QblKMjtHTqVV5YFKsqVkfq1duUuS1JxJimIB8grP\/2vWtKbDrHd0TCBX++o2NyJxw\/dMKHa5e9iFjEJImRewj6K8uV+veBwlb71fsT9Uf1TZyLtJtHNRYciZF18\/9zIxzmev20+Fq2b\/p39VBreu2D8YiNVHh2541WxPOqc6gSR3ncXvcMTTjs+sEBkNuG+1TjttvI\/ePUYFWdDUpejLwJ3ZoUuwFOk90q4vrPCkyKSYJRq8YXEhj4j+bBJpZXweUmpScOVRhnqY4jWeTknjqImJkNi96k2D99egMiEyqK5OiP4dPLWwC88v2WjbrZU2KIqgL29NzRCrpmbkjSp5BmW5fJnf92ZmVuT76nDQxcb89cnv1X\/2kxvRZrm8+h1pIPWcDZtYLdZ\/HLNsI9inQ5aKPpm23H6PJPCaJO76pvib6E7SX7LfdLwYFWtLNpHjsCb+c5JrlIggv6nPnpSZF3tEbkzKDSdnixSZFHhPzeeHiTEqcBEXyqzIp4pqdk6RJaEsiDfYV1IXt5fBzRxiifdGm7tOScG3bevt5PL4vsh+6LNVvT6yVR6w\/j90hl0OdpJ4xQo\/cPiPkfuI+LNh9SlMxH+N4P3pZaBlvI8ck6wBeyvmZFHOBy8lPXsjnTXuTYtczn3ndk+UUJsWYE\/f5kl73mOtRJqco0S8JaNukyEQ1J8k42ctEGNe5ecAYj0xSXvV1hTck+t+lbd0\/3W\/\/r2Hui99GjCPum8DPXzrmMUeayflr1kIR6iT1VBhT4MZv4imTYrcPtnH7kfsMifap8H1aaTuPyW6TPL6KcEwAL+fsTIpfXkXyIjsvikzKM76T4utSd\/VQalKe850UFfJVkIiR2bwu4yRokuWScJcEZG8g7HW7Ninyep2Xo2QfJMKnjEDi+g+2z6DXMd+5iMa0v7lXyVbsT4xbb2NfNbsxbfRtQSR8sX7cd7kc6ikNg9RWI\/TNmJRYC7mfuA8LseEQy8XngTi+7rOsA3gpZ2dSQuzFmr7Azo8yk6LiGX\/dk7urh3KT8qy\/7lGRepI1MpvXpUmw\/nq0SUsmoDlxmaQlk2pkUuakLhJuqm3fnjQCkSnQc0Qq8cWJOYnq517\/dY7cXrd\/dZgOcl6RSdmNLdk3QZj89XgSpsZ89tqE81mY0K0ei57+s9tPlUkJ9xP2U5I6BnIM0bGS7QXjW\/qKSYHWYFIaUmxSdDjTMRPd4a9Migr7JdrQqECNSdFhn0otRE9JEibFmxtpVEbmyevSJ2kdQUJ016O5Jo8iqbok5hKcSVTir1Zk0vLXu1n3RiZc37ZNfst6KhJJWWPWydQthAnfYvsbJNMg+dtt5nppOgL8uG3k1l\/GclBjVp+fNClyG72Ofurj6jImZdHP7uderueP52oedfsUf90T6JQ9D2zffV3q+AbaAryA7iblNVFlUhoF1JqUNjEyp74uuZvOkTBHALAJJqUhmJQ+YFLqwKR8Q+TTCB2DPBUGOBcwKQ3JjZcfGDwtW+cZPzC45tKuSwAYF0xKQ3Lj1T\/tn0p2Lw3dLmyfZ6fQfnTdMSkAMAqYlIbkxvvwx4NJbK3u6nU7uj3dLmyfZy21fy26Y1IAYBQwKQ1h8u8DuteBXgAwCpiUhjD59wHd60AvABgFTEpDmPz7gO51oBcAjAImpSFM\/n1A9zrQCwBGAZPSECb\/PqB7HegFAKOASWkIk38f0L0O9AKAUTi5SbmkuLu7S5YTpw10rwv0IghilNDzVQk8SSng0sZ7LqB7HegFAKNQOl9hUgpg8u8DuteBXgAwCpiUhjD59wHd60AvABgFTEpDmPz7gO51oBcAjAImpSFM\/n1A9zrQCwBGAZPSkNx4+YHB07J1nvEDg2swKQAwCpiUhuTGqxNbKum9NHS7sH2enUL70XXHpADAKGBSGpIbb6snKHHodmH7PDuF9qPrjkkBgFHApDQkN95UomsVsH2epTRrESODSQGAUehvUt4dpt1uNx3euWXNx+O0V2W63MZ+On50dWdMlUl5ezt9cvWGT9dB\/bWuTJWprW7fLmVQa1L20+1XV2l4P13LenNcQo3nYyWOx8i0Nyn30+Gl16i55g+qpXIeb\/ZijojmikR791e6PlF2pUrcPGQ+B+ixrbfb5BljKUb3881xenSLJRidVuPSPE7HN9Hc+0K0nvubmt4BbNPVpMhJJrhQzIQxhjGRFJuUD+9VaZgIjQH5ejvt5bJIinG9D6gxKdfKkihZH\/ZLWXwsYpPiDMr7D27Zxci8KpMSJ+w5icd90gl5P+2DpCyStNlO1cd9yJX3ApMCF0Y3kxLfBckLxdadyaRQQZlJsXfycdKLy6VJ2T+ohYRB0QHlJsXoGD2dWpUHJsWamvWxeuUmxdwkuGtTJMQwAfkEZ\/+161tTYNc7uicQKnyCjI1IYCh8G65e9iEzFyRNithH0F9drta9DxK23q\/Yn6o\/qm3kXKTbOKix5EyKrp\/7mRnnMtftp8PVsn\/Tv6uDWtdtH4xFaqLCt71hUsI51Rk0qeM8bo87hmZ8dp3AYMhto33Kcftt5P4xKtCKriZFTwb+xI4nBn+yj3TCF5kUkwSjVwwupDHxn00CzayvA0pNSs4cqjBPU5zGs0lJPHURMTKbF71JsP56dAZEJtX5WpR34eFTC3v9+mWbbM16WZOiCOrC9vQckZoDzNwRJc+gTLcvk7v+7MzKXB99TpqYuN8eub36r35SY\/os1zefQy2knrMBM+uFus9jlm0E+xToctFH07bbj9FkHpPEHd9UXxP9CdpL9tvuF4MCLelmUjz2hF9O8vhCXtefLy81KfKO3piUGUzKFi82KfKYmM8LF2dS4iQokl+VSRFJcU6SJqEtiTTYV1AXtpfDzw1hiPZFm7pPS8K1bevt5\/H4vsh+6LJUvz2xVh6x\/jx2h1wOdZJ6xgg9cvuMkPuJ+7Bg9ylNxXyM4\/3oZaFlvI0ck6wDeClnaFIizAU\/xonf3qTY9cxnXvdkOYVJMebEfb6k1z3mepTJKUr0y3W4bVLk9TonyTjZy0QY17nr3hiPTFJe9XWFNyT636Vt3T\/db\/+vYe6L30aMI+6bwM9fOuYxR5pJgzBroQh1knoqjClw4zfxlEmx2wfbuP3IfYZE+1T4Pq20ncdkt0keX0U4JoCXg0lpSJFJecZ3Unxd6q4eSk3Kc76TokK+ChIxMpvXZZwETbJcEu5yHdonnva63X6SMi9HyT5IhE8ZgUSSXSXSBHod852LaEz7m3uVbMX+xLj1NvY7NW5MG31bEAlfrB\/3XS6HekrDILXVPP0kJdZC7ifuw0JsOMRy8Xkgjq\/7LOsAXsoZmhR7gQYXmJgAz5kyk6LiGX\/dk7urh3KT8qy\/7lGRepI1MpvXpbspsNejTVoyAc2JyyQtmVQjkzIndZFwU2379qQRiEyBngNSic\/MDYmEHaD6udd\/nSO31+1fHaaDTNwyKbuxJfsmCJO\/Hk\/C1JjPXptwbgsTutVj0dN\/dvupMimJOVSOdSZ1DOQYomMl2wvGt\/QVkwKtOUOTovCThIug7owpNik6nOmYie7wVyZFhf0SbWhUoMak6LBPpRaipyQJk+LNjTQqI\/PkdSmvvyAhuuSn4+ookqpLYi7BmUQl\/mpFJi1\/vZt1b2TC9W3b5LespyKRlDVmnUzdQpjwLba\/QTINkr\/dZq6XpiPAj9tGbv1lLAc1ZvX5SZMit9Hr6Kc+ri5jUhb97H7u5Xr+eK6Mitun+OueQKfseWD77utSxzfQFuAFdDcpr4kqk9IooNaktImROfV1yd10joQ5AoBNMCkNwaT0AZNSByblGyKfRuhIvnYBgByYlIbkxssPDJ6WrfOMHxhcc2nXJQCMCyalIbnx6p\/2TyW7l4ZuF7bPs1NoP7rumBQAGAVMSkNy433448EktlZ39bod3Z5uF7bPs5bavxbdMSkAMAqYlIYw+fcB3etALwAYBUxKQ5j8+4DudaAXAIwCJqUhTP59QPc60AsARgGT0hAm\/z6gex3oBQCjgElpCJN\/H9C9DvQCgFE4uUm5pLi7u0uWE6cNdK8L9CIIYpTQ81UJPEkp4NLGey6gex3oBQCjUDpfYVIKYPLvA7rXgV4AMAqYlIYw+fcB3etALwAYBUxKQ5j8+4DudaAXAIwCJqUhTP59QPc60AsARgGT0hAm\/z6gex3oBQCjgElpSG68\/MDgadk6z\/iBwTWYFAAYBUxKQ3Lj1YktlfReGrpd2D7PTqH96LpjUgBgFDApDcmNt9UTlDh0u7B9np1C+9F1x6QAwChgUhqSG28q0bUK2D7PUpq1iJHBpADAKPQ3Ke8O0263mw7v3LLj\/mpnynXsbx5d6XlTZVLe3k6fXL3h03VQf60rU2Vqq9u3SxnUmpT9dPvVVRreT9ey3hyXUOP5WInjMTKYFAAYha4m5fFmPxsRaVKMQXlznLQ1sevsp+NHW3fOFJuUD+9VaZgIjQH5ejvt5bJIinG9D6gxKdfKkihZH\/ZLWXwsYpPiDMr7D27ZxchgUgBgFLqZFGlQQpNyPx3U8ihPTyRlJsXeycdJLy6XJmX\/oBYSBkUHlJsUo2P0dGpVHpgUa2rWxwqTAgDwLehqUrQx8WZlNikfj9NeL1\/Z10ChgTlvikyKSYLRKwYX0pj4zyaBZtbXAaUmJWcOVZinKU7j2aQknrqIGBlMCgCMQjeT4smZlFf7umfDpMg7emNSZjApW7zYpMhjYj4vYFIAAPpxtiZlft3jvlg7wuuf9ibFrmc+87onyylMijEn7jOvewAA+nB+JiX+TkpsWs6YIpPyjO+k+LrUXT2UmpTnfCdFhXwVJGJkMCkAMApnaFL8nx8flF15ha97dDzjr3tyd\/VQblKe9dc9KlJPskYGkwIAo3CWJkWVTsc3qb\/8OW+KTYoOZzpmojv8lUlRYb9EGxoVqDEpOuxTqYXoKUnCpHhzI43KyGBSAGAUupuU10SVSWkUUGtS2sTIYFIAYBQwKQ3BpPQBk1IHJgUARgGT0pDcePmBwdOydZ7xA4NrMCkAMAqYlIbkxqt\/2j+V7F4aul3YPs9Oof3oumNSAGAUMCkNyY334Y8Hk9ha3dXrdnR7ul3YPs9aav9adMekAMAoYFIawuTfB3SvA70AYBQwKQ1h8u8DuteBXgAwCpiUhjD59wHd60AvABgFTEpDmPz7gO51oBcAjAImpSFM\/n1A9zrQCwBG4eQm5ZLi7u4uWU6cNtC9LtCLIIhRQs9XJfAkpYBLG++5gO51oBcAjELpfIVJKYDJvw\/oXgd6AcAoYFIawuTfB3SvA70AYBQwKQ1h8u8DuteBXgAwCpiUhjD59wHd60AvABgFTEpDcuPlt3tOy9Z5xm\/3rMGkAMAoYFIakhuvTmyppPfS0O3C9nl2Cu1H1x2TAgCjgElpSG68rZ6gxKHbhe3z7BTaj647JgUARgGT0pDceFOJrlXA9nmW0qxFjAwmBQBGob9JeXeYdrvddHjnlj8ep71a1mUy9jePboXzpcqkvL2dPrl6w6froP5aV6bK1Fa3b5cyqDUp++n2q6s0vJ+uZb05LqHG87ESx2NkMCkAMApdTcrjzX42IbNJCXicjm90\/WG6dyXnTLFJ+fBelYaJ0BiQr7fTXi6LpBjX+4Aak3KtLImS9WG\/lMXHIjYpzqC8\/+CWXYwMJgUARqGbSZEGJWtS4qcsZ06ZSbF38nHSi8ulSdk\/qIWEQdEB5SbF6Bg9nVqVBybFmpr1scKkAAB8C7qaFG0+vFlZGxH3FOXNUX0agyKTYpJg9IrBhTQm\/rNJoJn1dUCpScmZQxXmaYrTeDYpiacuIkYGkwIAo9DNpHiyJsV9N2WE76J4XmpS5B29MSkzmJQtXmxS5DExnxcwKQAA\/Thbk2LL99PxoysYgPYmxa5nPvO6J8spTIoxJ+4zr3sAAPpwpiZlvFc9miKT8ozvpPi61F09lJqU53wnRYV8FSRiZDApADAKZ2pS7qeDKttdjfA3PQtlJkXFM\/66J3dXD+Um5Vl\/3aMi9SRrZDApADAKmJSGFJsUHc50zER3+CuTosJ+iTY0KlBjUnTYp1IL0VOShEnx5kYalZHBpADAKHQ3Ka+JKpPSKKDWpLSJkcGkAMAoYFIagknpAyalDkwKAIwCJqUhufHyA4OnZes84wcG12BSAGAUMCkNyY1X\/7R\/Ktm9NHS7sH2enUL70XXHpADAKGBSGpIb78MfDyaxtbqr1+3o9nS7sH2etdT+teiOSQGAUcCkNITJvw\/oXgd6AcAoYFIawuTfB3SvA70AYBQwKQ1h8u8DuteBXgAwCpiUhjD59wHd60AvABgFTEpDmPz7gO51oBcAjAImpSFM\/n1A9zrQCwBG4eQm5ZLi7u4uWU6cNtC9LtCLIIhRQs9XJfAkpYBLG++5gO51oBcAjELpfIVJKYDJvw\/oXgd6AcAoYFIawuTfB3SvA70AYBQwKQ1h8u8DuteBXgAwCpiUhjD59wHd60AvABgFTEpDcuPlBwZPy9Z5xg8MrsGkAMAoYFIakhuvTmyppPfS0O3C9nl2Cu1H1x2TAgCjgElpSG68rZ6gxKHbhe3z7BTaj647JgUARgGT0pDceFOJrlXA9nmW0qxFjAwmBQBGob9JeXeYdrvddHjnlg3300GV6fJ13flSZVLe3k6fXL3h03VQf60rU2Vqq9u3SxnUmpT9dPvVVRreT9ey3hyXUOP5WInjMTKYFAAYha4m5fFmnzAij9PxjSp7c1SflF250vX76fjR1p4zxSblw3tVGiZCY0C+3k57uSySYlzvA2pMyrWyJErWh\/1SFh+L2KQ4g\/L+g1t2MTKYFAAYhW4mRRqU0KS4pyhX92bJrzfC05Qyk2Lv5OOkF5dLk7J\/UAsJg6IDyk2K0TF6OrUqD0yKNTXrY4VJAQD4FnQ1Kdp4pEyIeXoSPEk5KOty\/hSZFJMEo1cMLqQx8Z9NAs2srwNKTUrOHKowT1OcxrNJSTx1ETEymBQAGIVuJsWTflLiXvnoJyqDGBTNS02KvKM3JmUGk7LFi02KPCbm8wImBQCgH2doUsLvpNj6V\/SdlCqTYtczn3ndk+UUJsWYE\/eZ1z0AAH04P5Py8Tjt1fL+RluUxPIZU2RSnvGdFF+XuquHUpPynO+kqJCvgkSMDCYFAEbh\/EyK\/+Js8CQlfh10npSZFBXP+Oue3F09lJuUZ\/11j4rUk6yRwaQAwCicoUlRuKcnulzHCE9RNMUmRYczHTPRHf7KpKiwX6INjQrUmBQd9qnUQvSUJGFSvLmRRmVkMCkAMArdTcprosqkNAqoNSltYmQwKQAwCpiUhmBS+oBJqQOTAgCjgElpSG68\/MDgadk6z\/iBwTWYFAAYBUxKQ3Lj1T\/tn0p2Lw3dLmyfZ6fQfnTdMSkAMAqYlIbkxvvwx4NJbK3u6nU7uj3dLmyfZy21fy26Y1IAYBQwKQ1h8u8DuteBXgAwCpiUhjD59wHd60AvABgFTEpDmPz7gO51oBcAjAImpSFM\/n1A9zrQCwBGAZPSECb\/PqB7HegFAKNwcpNySXF3d5csJ04b6F4X6EUQxCih56sSeJJSwKWN91xA9zrQCwBGoXS+wqQUwOTfB3SvA70AYBQwKQ1h8u8DuteBXgAwCpiUhjD59wHd60AvABgFTEpDmPz7gO51oBcAjAImpSFM\/n1A9zrQCwBGAZPSkNx4+YHB07J1nvEDg2swKQAwCpiUhuTGqxNbKum9NHS7sH2enUL70XXHpADAKGBSGpIbb6snKHHodmH7PDuF9qPrjkkBgFHApDQkN95UomsVsH2epTRrESODSQGAUehvUt4dpt1uNx3euWXD\/XRQZbp8t9tPx4+u+MypMilvb6dPrt7w6Tqov9aVqTK11e3bpQxqTcp+uv3qKg3vp2tZb45LqPF8rMTxGBlMCgCMQleT8nizd0ZEmpTH6fhGlb05qk\/Krlzp+oOyLedPsUn58F6VhonQGJCvt9NeLoukGNf7gBqTcq0siZL1Yb+UxcciNinOoLz\/4JZdjAwmBQBGoZtJkQYlMCkfj9NeLe9vtEVRJJ+0nCdlJsXeycdJLy6XJmX\/oBYSBkUHlJsUo2P0dGpVHpgUa2rWxwqTAgDwLehqUrTx8GYla1Li5TOmyKSYJBi9YnAhjYn\/bBJoZn0dUGpScuZQhXma4jSeTUriqYuIkcGkAMAodDMpnpVJiV73+PpLMCnyjt6YlBlMyhYvNinymJjPC5gUAIB+nKFJ0Ygvzr7Zmycpr+Z1T5VJseuZz7zuyXIKk2LMifvM6x4AgD6cqUkRuNc9r8akPOM7Kb4udVcPpSblOd9JUSFfBYkYGUwKAIzCGZqUxOse9\/ncKTMpKp7x1z25u3ooNynP+useFaknWSODSQGAUThDk6Jwf9FjY4w\/P9YUmxQdznTMRHf4K5Oiwn6JNjQqUGNSdNinUgvRU5KESfHmRhqVkcGkAMAodDcpr4kqk9IooNaktImRwaQAwChgUhqCSekDJqUOTAoAjAImpSG58fIDg6dl6zzjBwbXYFIAYBQwKQ3JjVf\/tH8q2b00dLuwfZ6dQvvRdcekAMAoYFIakhvvwx8PJrG1uqvX7ej2dLuwfZ611P616I5JAYBRwKQ0hMm\/D+heB3oBwChgUhrC5N8HdK8DvQBgFDApDWHy7wO614FeADAKmJSGMPn3Ad3rQC8AGAVMSkOY\/PuA7nWgFwCMwslNyiXF3d1dspw4baB7XaAXQRCjhJ6vSuBJSgGXNt5zAd3rQC8AGIXS+QqTUgCTfx\/QvQ70AoBRwKQ0hMm\/D+heB3oBwChgUhrC5N8HdK8DvQBgFDApDWHy7wO614FeADAKmJSG5MbLb\/eclq3zjN\/uWYNJAYBRwKQ0JDdendhSSe+loduF7fPsFNqPrjsmBQBGAZPSkNx4Wz1BiUO3C9vn2Sm0H113TAoAjAImpSG58aYSXauA7fMspVmLGBlMCgCMQkeTcj8ddrtp5+Pq3pUvPN7sVd1+On50BWdOlUl5ezt9cvWGT9dB\/bWuTJWprW7fLmVQa1L20+1XV2l4P13LenNcQo3nYyWOx8hgUgBgFLqZlPsrbU4OyqooPh6nvTIqh3emymDrdbxCk\/LhvSoNE6ExIF9vp71cFkkxrvcBNSblWlkSJevDfimLj0VsUpxBef\/BLbsYGUwKAIxCN5MS4p6quKcpi0F5jSbF3snHSS8ulyZl\/6AWEgZFB5SbFKNj9HRqVR6YFGtq1scKkwIA8C04C5NiX+vspv3No1m+v7LGxJqVV2ZSTBKMXjG4kMbEfzYJNLO+Dig1KTlzqMI8TXEazyYl8dRFxMhgUgBgFPqblHeH7BOTSzMp8o7emJQZTMoWLzYp8piYzwuYFACAfvQ1Ke67KPIpigSTYtczn3ndk+UUJsWYE\/eZ1z0AAH3oaFLEX\/ck\/rJH8ypNyjO+k+LrUnf1UGpSnvOdFBXyVZCIkcGkAMAodDMp85dj3xyn9TMUy+s0KSqe8dc9ubt6KDcpz\/rrHhWpJ1kjg0kBgFHoZFKi\/0eKj+iJyqs1KTqc6ZiJ7vBXJkWF\/RJtaFSgxqTosE+lFqKnJAmT4s2NNCojg0kBgFHoZFJeJ1UmpVFArUlpEyODSQGAUcCkNAST0gdMSh2YFAAYBUxKQ3Lj5QcGT8vWecYPDK7BpADAKGBSGpIbr\/5p\/1Sye2nodmH7PDuF9qPrjkkBgFHApDQkN96HPx5MYmt1V6\/b0e3pdmH7PGup\/WvRHZMCAKOASWkIk38f0L0O9AKAUcCkNITJvw\/oXgd6AcAoYFIawuTfB3SvA70AYBQwKQ1h8u8DuteBXgAwCpiUhjD59wHd60AvABgFTEpDmPz7gO51oBcAjMLJTcolxd3dXbKcOG2ge12gF0EQo4Ser0rgSUoBlzbecwHd60AvABiF0vkKk1IAk38f0L0O9AKAUcCkNITJvw\/oXgd6AcAoYFIawuTfB3SvA70AYBQwKQ1h8u8DuteBXgAwCpiUhuTGyw8Mnpat84wfGFyDSQGAUcCkNCQ3Xp3YUknvpaHbhe3z7BTaj647JgUARgGT0pDceFs9QYlDtwvb59kptB9dd0wKAIwCJqUhufGmEl2rgO3zLKVZixgZTAoAjEJHk3I\/HXa7aefj6t6VKz4ep72o2988uorzpsqkvL2dPrl6w6froP5aV6bK1Fa3b5cyqDUp++n2q6s0vJ+uZb05LqHG87ESx2NkMCkAMArdTMr9lTYgB2VVFM6UHN7phcfp+EbVvTmqT4p3B7Xefjp+1AvnTbFJ+fBelYaJ0BiQr7fTXi6LpBjX+4Aak3KtLImS9WG\/lMXHIjYpzqC8\/+CWXYwMJgUARqGbSQlxT1Xk0xSPMzAjPE0pMyn2Tj5OenG5NCn7B7WQMCg6oNykGB2jp1Or8sCkWFOzPlaYFACAb8FZmJTHm332tY594uKfspw3RSbFJMHoFYMLaUz8Z5NAM+vrgFKTkjOHKszTFKfxbFIST11EjAwmBQBGob9JMa9ztBFZv9Lx5mV+LXTmvNSkyDt6Y1JmMClbvNikyGNiPi9gUgAA+tHXpIgvyK6eoszmZYynKJr2JsWuZz7zuifLKUyKMSfuM697AAD60NGkiL\/uib+LsmVezpgik\/KM76T4utRdPZSalOd8J0WFfBUkYmQwKQAwCt1Miv+uyfxXPDPur3tS5uXMKTMpKp7x1z25u3ooNynP+useFaknWSODSQGAUehkUqL\/R4oPbUqi\/0eKj9fz1z0unOmYie7wVyZFhf0SbWhUoMak6LBPpRaipyQJk+LNjTQqI4NJAYBR6GRSXidVJqVRQK1JaRMjg0kBgFHApDQEk9IHTEodmBQAGAVMSkNy4+UHBk\/L1nnGDwyuwaQAwChgUhqSG6\/+af9Usntp6HZh+zw7hfaj645JAYBRwKQ0JDfehz8eTGJrdVev29Ht6XZh+zxrqf1r0R2TAgCjgElpCJN\/H9C9DvQCgFHApDSEyb8P6F4HegHAKGBSGsLk3wd0rwO9AGAUMCkNYfLvA7rXgV4AMAqYlIYw+fcB3etALwAYhZOblEuKu7u7ZDlx2kD3ukAvgiBGCT1flcCTlAIubbznArrXgV4AMAql8xUmpQAm\/z6gex3oBQCjgElpCJN\/H9C9DvQCgFHApDSEyb8P6F4HegHAKGBSGsLk3wd0rwO9AGAUMCkNYfLvA7rXgV4AMAqYlIbkxssPDJ6WrfOMHxhcg0kBgFHApDQkN16d2FJJ76Wh24Xt8+wU2o+uOyYFAEYBk9KQ3HhbPUGJQ7cL2+fZKbQfXXdMCgCMAialIbnxphJdq4Dt8yylWYsYGUwKAIxCR5NyPx12u2nn4+relSs+Hqe9qDu8c+VnTpVJeXs7fXL1hk\/XQf21rkyVqa1u3y5lUGtS9tPtV1dpeD9dy3pzXEKN52MljsfIYFIAYBS6mZT7K21ADsqqKJwpsWbkcTq+UXVvjupTtN6ZU2xSPrxXpWEiNAbk6+20l8siKcb1PqDGpFwrS6JkfdgvZfGxiE2KMyjvP7hlFyODSQGAUehmUkLcUxX5NMXx+kyKvZOPk15cLk3K\/kEtJAyKDig3KUbH6OnUqjwwKdbUrI8VJgUA4FtwFibl8WZvXuvsb\/SzE0\/4RGUEikyKSYLRKwYX0pj4zyaBZtbXAaUmJWcOVZinKU7j2aQknrqIGBlMCgCMQn+T8u5gDMput5+OH12ZwBqYdN258VKTIu\/ojUmZwaRs8WKTIo+J+byASQEA6EdfkyK+IBs+RRG4dbL1Z0R7k2LXM5953ZPlFCbFmBP3mdc9AAB96GhSxF\/3JL6LMuOetIzwFz5FJuUZ30nxdam7eig1Kc\/5TooK+SpIxMhgUgBgFLqZFPuFWBWr75yEX6Llr3vcOpm7eig3Kc\/66x4VqSdZI4NJAYBR6GRSov9Hig\/\/RGX+noqOMb6Poik2KTqc6ZiJ7vBXJkWF\/RJtaFSgxqTosE+lFqKnJAmT4s2NNCojg0kBgFHoZFJeJ1UmpVFArUlpEyODSQGAUcCkNAST0gdMSh2YFAAYBUxKQ3Lj5QcGT8vWecYPDK7BpADAKGBSGpIbr\/5p\/1Sye2nodmH7PDuF9qPrjkkBgFHApDQkN96HPx5MYmt1V6\/b0e3pdmH7PGup\/WvRHZMCAKOASWkIk38f0L0O9AKAUcCkNITJvw\/oXgd6AcAoYFIawuTfB3SvA70AYBQwKQ1h8u8DuteBXgAwCpiUhjD59wHd60AvABiFk5uUS4q7u7tkOXHaQPe6QC+CIEYJPV+VwJOUAi5tvOcCuteBXgAwCqXzFSalACb\/PqB7HegFAKOASWkIk38f0L0O9AKAUcCkNITJvw\/oXgd6AcAoYFIawuTfB3SvA70AYBQwKQ3JjZff7jktW+cZv92zBpMCAKOASWlIbrw6saWS3ktDtwvb59kptB9dd0wKAIwCJqUhufG2eoISh24Xts+zU2g\/uu6YFAAYBUxKQ3LjTSW6VgHb51lKsxYxMpgUABiFjiblfjrsdtPOx9W9K1d8PE57WbfbT8ePru6MqTIpb2+nT67e8Ok6qL\/WlakytdXt26UMak3Kfrr96ioN76drWW+OS6jxfKzE8RgZTAoAjEI3k3J\/pc3HQVkVhTMlh3emapreHYYxJpJik\/LhvSoNE6ExIF9vp71cFkkxrvcBNSblWlkSJevDfimLj0VsUpxBef\/BLbsYGUwKAIxCN5MS4p6quKcpjzf7xcAMRJlJsXfycdKLy6VJ2T+ohYRB0QHlJsXoGD2dWpUHJsWamvWxwqQAAHwLzsKkWFOym\/Y3j2bZPmVZwpefO0UmxSTB6BWDC2lM\/GeTQDPr64BSk5IzhyrM0xSn8WxSEk9dRIwMJgUARqG\/STGvdrQZ8a93Uk9VxKugM+alJkXe0RuTMoNJ2eLFJkUeE\/N5AZMCANCPviZFfEE2+7TErTPC05T2JsWuZz7zuifLKUyKMSfuM697AAD60NGkiL\/ukX\/ZE\/PaTMozvpPi61J39VBqUp7znRQV8lWQiJHBpADAKHQzKfP3Tt4cp9B+pF73vLI\/QX7GX\/fk7uqh3KQ86697VKSeZI0MJgUARqGTSYn+Hyk+\/BOV+XsqNkb4Poqm2KTocKZjJrrDX5kUFfZLtKFRgRqTosM+lVqInpIkTIo3N9KojAwmBQBGoZNJeZ1UmZRGAbUmpU2MDCYFAEYBk9IQTEofMCl1YFIAYBQwKQ3JjZcfGDwtW+cZPzC4BpMCAKOASWlIbrz6p\/1Tye6loduF7fPsFNqPrjsmBQBGAZPSkNx4H\/54MImt1V29bke3p9uF7fOspfavRXdMCgCMAialIUz+fUD3OtALAEYBk9IQJv8+oHsd6AUAo4BJaQiTfx\/QvQ70AoBRwKQ0hMm\/D+heB3oBwChgUhrC5N8HdK8DvQBgFDApDWHy7wO614FeADAKJzcplxR3d3fJcuK0ge51gV4EQYwSer4qgScpBVzaeM8FdK8DvQBgFErnK0xKAUz+fUD3OtALAEYBk9IQJv8+oHsd6AUAo4BJaQiTfx\/QvQ70AoBRwKQ0hMm\/D+heB3oBwChgUhqSGy8\/MHhats4zfmBwDSYFAEYBk9KQ3Hh1YkslvZeGbhe2z7NTaD+67pgUABgFTEpDcuNt9QQlDt0ubJ9np9B+dN0xKQAwCpiUhuTGm0p0rQK2z7OUZi1iZDApADAKHU3K\/XTY7aadj6t7V265v1rq9jePrvS8qTIpb2+nT67e8Ok6qL\/WlakytdXt26UMak3Kfrr96ioN76drWW+OS6jxfKzE8RgZTAoAjEI3k2JNyEFZFcXH47RXZuTwzlTZujfHSVuTx5u9Wm8\/HT\/aunOm2KR8eK9Kw0RoDMjX22kvl0VSjOt9QI1JuVaWRMn6sF\/K4mMRmxRnUN5\/cMsuRgaTAgCj0M2khLinKuZpiv08ytMTSZlJsXfycdKLy6VJ2T+ohYRB0QHlJsXoGD2dWpUHJsWamvWxwqQAAHwLzsKk2Kclzpj4pypXh\/l1j3\/Ccu4UmRSTBKNXDC6kMfGfTQLNrK8DSk1KzhyqME9TnMazSUk8dRExMpgUABiF\/iblnTcj7pWOMymv9nXPhkmRd\/TGpMxgUrZ4sUmRx8R8XsCkAAD0o69J8YZExfx6x5XNy87EjPD6p71JseuZz7zuyXIKk2LMifvM6x4AgD50NCnir3uCv+yJvpMSm5YzpsikPOM7Kb4udVcPpSblOd9JUSFfBYkYGUwKAIxCN5My\/4mxe60jkX\/5w1\/3uHUyd\/VQblKe9dc9KlJPskYGkwIAo9DJpET\/jxQf8xOVx+n4Zil\/VV+c9eFMx0x0h78yKSrsl2hDowI1JkWHfSq1ED0lSZgUb26kURkZTAoAjEInk\/I6qTIpjQJqTUqbGBlMCgCMAialIZiUPmBS6sCkAMAoYFIakhsvPzB4WrbOM35gcA0mBQBGAZPSkNx49U\/7p5LdS0O3C9vn2Sm0H113TAoAjAImpSG58T788WASW6u7et2Obk+3C9vnWUvtX4vumBQAGAVMSkOY\/PuA7nWgFwCMAialIUz+fUD3OtALAEYBk9IQJv8+oHsd6AUAo4BJaQiTfx\/QvQ70AoBRwKQ0hMm\/D+heB3oBwCic3KRcUtzd3SXLidMGutcFehEEMUro+aoEnqQUcGnjPRfQvQ70AoBRKJ2vMCkFMPn3Ad3rQC8AGAVMSkOY\/PuA7nWgFwCMAialIUz+fUD3OtALAEYBk9IQJv8+oHsd6AUAo4BJaQiTfx\/QvQ70AoBRwKQ0JDdefmDwtGydZ\/zA4BpMCgCMAialIbnx6sSWSnovDd0ubJ9np9B+dN0xKQAwCpiUhuTG2+oJShy6Xdg+z06h\/ei6Y1IAYBQwKQ3JjTeV6FoFbJ9nKc1axMhgUgBgFDqalPvpsNtNOx9X97b443Hay3IX+5tHW3\/GVJmUt7fTJ1dv+HQd1F\/rylSZ2ur27VIGtSZlP91+dZWG99O1rDfHJdR4PlbieIwMJgUARqGbSbm\/0ubjoKyKwhmTwztTJXicjm\/EemdOsUn58F6VhonQGJCvt9NeLoukGNf7gBqTcq0siZL1Yb+UxcciNinOoLz\/4JZdjAwmBQBGoZtJCXFPVfzTFM+7g3mKsjYv50mZSbF38nHSi8ulSdk\/qIWEQdEB5SbF6Bg9nVqVBybFmpr1scKkAAB8C87CpDze7BOvdNxTlDdH9WkMikyKSYLRKwYX0pj4zyaBZtbXAaUmJWcOVZinKU7j2aQknrqIGBlMCgCMQn+T4p6W7Hb76fjRlWncK6ARvoviealJkXf0xqTMYFK2eLFJkcfEfF7ApAAA9KOvSRFfko3NiH26EhmXM6e9SbHrmc+87slyCpNizIn7zOseAIA+dDQp4q974u+iDPiqR1NkUp7xnRRfl7qrh1KT8pzvpKiQr4JEjAwmBQBGoZtJsX\/dkzMimS\/SnjllJkXFM\/66J3dXD+Um5Vl\/3aMi9SRrZDApADAKnUxK9P9I8TGbklduUnQ40zET3eGvTIoK+yXa0KhAjUnRYZ9KLURPSRImxZsbaVRGBpMCAKPQyaS8TqpMSqOAWpPSJkYGkwIAo4BJaQgmpQ+YlDowKQAwCpiUhuTGyw8Mnpat84wfGFyDSQGAUcCkNCQ3Xv3T\/qlk99LQ7cL2eXYK7UfXHZMCAKOASWlIbrwPfzyYxNbqrl63o9vT7cL2edZS+9eiOyYFAEYBk9IQJv8+oHsd6AUAo4BJaQiTfx\/QvQ70AoBRwKQ0hMm\/D+heB3oBwChgUhrC5N8HdK8DvQBgFDApDWHy7wO614FeADAKJzcplxR3d3fJcuK0ge51gV4EQYwSer4qgScpBVzaeM8FdK8DvQBgFErnK0xKAUz+fUD3OtALAEYBk9IQJv8+oHsd6AUAo4BJaQiTfx\/QvQ70AoBRwKQ0hMm\/D+heB3oBwChgUhqSGy+\/3XNats4zfrtnDSYFAEYBk9KQ3Hh1YkslvZeGbhe2z7NTaD+67pgUABgFTEpDcuNt9QQlDt0ubJ9np9B+dN0xKQAwCpiUhuTGm0p0rQK2z7OUZi1iZDApADAKHU3K\/XTY7aadi\/3NoytXfDxO+1zdGVNlUt7eTp9cveHTdVB\/rStTZWqr27dLGdSalP10+9VVGt5P17LeHJdQ4\/lYieMxMpgUABiFbibl\/kobkIOyKtP0eLNXn\/fT8aOueZyOb1Tdm6P6pHh3EHXnTbFJ+fBelYaJ0BiQr7fTXi6LpBjX+4Aak3KtLImS9WG\/lMXHIjYpzqC8\/+CWXYwMJgUARqGbSZGEJiXCPVUZ4WlKmUmxd\/Jx0ovLpUnZP6iFhEHRAeUmxegYPZ1alQcmxZqa9bHCpAAAfAu6mxT5RCWFrd9Nh3eu4IwpMikmCUavGFxIY+I\/mwSaWV8HlJqUnDlUYZ6mOI1nk5J46iJiZDApADAK3U2KwbzSWRsR+4Rl28ScEy81KfKO3piUGUzKFi82KfKYmM8LmBQAgH6ch0nxX6K9ElbEGZdRnqJo2psUu575zOueLKcwKcacuM+87gEA6MN5mJT4eyfir3tG+cseTZFJecZ3Unxd6q4eSk3Kc76TokK+ChIxMpgUABiFTiYl\/Aue5F\/3aJMin6wMQJlJUfGMv+7J3dVDuUl51l\/3qEg9yRoZTAoAjEInk6KI\/l8o8yudqNzH6\/nrHhfOdMxEd\/grk6LCfok2NCpQY1J02KdSC9FTkoRJ8eZGGpWRwaQAwCj0MymvkCqT0iig1qS0iZHBpADAKGBSGoJJ6QMmpQ5MCgCMAialIbnx8gODp2XrPOMHBtdgUgBgFDApDcmNV\/+0fyrZvTR0u7B9np1C+9F1x6QAwChgUhqSG+\/DHw8msbW6q9ft6PZ0u7B9nrXU\/rXojkkBgFHApDSEyb8P6F4HegHAKGBSGsLk3wd0rwO9AGAUMCkNYfLvA7rXgV4AMAqYlIYw+fcB3etALwAYBUxKQ5j8+4DudaAXAIwCJqUhTP59QPc60AsARuHkJuWS4u7uLllOnDbQvS7QiyCIUULPVyXwJKWASxvvuYDudaAXAIxC6XyFSSmAyb8P6F4HegHAKGBSGsLk3wd0rwO9AGAUMCkNYfLvA7rXgV4AMAqYlIYw+fcB3etALwAYBUxKQ3Lj5QcGT8vWecYPDK7BpADAKGBSGpIbr05sqaT30tDtwvZ5dgrtR9cdkwIAo4BJaUhuvK2eoMSh24Xt8+wU2o+uOyYFAEahbL6apv8fIrdHs5avqwsAAAAASUVORK5CYII=~gge143318~0~","W~5110 -2060 5110 -2020~#008800~1~0~none~gge330601~0","W~4980 -1870 4980 -1815~#008800~1~0~none~gge330667~0","F~part_netLabel_+5V~5090~-1810~270~gge330670~~0^^5090~-1810^^+3.3V~#000000~5100.5~-1806.02~0~start~1~Times New Roman~9pt~flag_gge7^^PL~5100 -1810 5090 -1810~#000000~1~0~transparent~gge330682~0^^PL~5100 -1815 5100 -1805~#000000~1~0~transparent~gge330685~0","F~part_netLabel_+5V~5160~-1815~270~gge330688~~0^^5160~-1815^^+3.3V~#000000~5170.5~-1811~0~start~1~Times New Roman~9pt~flag_gge10^^PL~5170 -1815 5160 -1815~#000000~1~0~transparent~gge330700~0^^PL~5170 -1820 5170 -1810~#000000~1~0~transparent~gge330703~0","F~part_netLabel_+5V~4910~-2045~270~gge330706~~0^^4910~-2045^^+3.3V~#000000~4920.5~-2041~0~start~1~Times New Roman~9pt~flag_gge13^^PL~4920 -2045 4910 -2045~#000000~1~0~transparent~gge330718~0^^PL~4920 -2050 4920 -2040~#000000~1~0~transparent~gge330721~0","F~part_netLabel_+5V~4765~-1805~180~gge330724~~0^^4765~-1805^^+3.3V~#000000~4749.78~-1783.67~0~start~1~Times New Roman~9pt~flag_gge16^^PL~4765 -1795 4765 -1805~#000000~1~0~transparent~gge330736~0^^PL~4770 -1795 4760 -1795~#000000~1~0~transparent~gge330739~0","LIB~5110~-2105~package`R0805`BOM_Supplier`LCSC`BOM_Manufacturer`UniOhm`BOM_Manufacturer Part`0805W8F1200T5E`nameAlias`Resistance (Ohms)`BOM_Supplier Part`C17437`BOM_JLCPCB Part Class`Basic Part`spicePre`R`spiceSymbolName`0805W8F1200T5E`~90~0~ggefe89d0632cfce75f~b60f399a7a7e41848b2be1eb49c79141~a56a57f88a3983690427227df791f629~0~~yes~yes~~~#@$T~N~5116~-2092.75~0~#000080~Arial~~~~~comment~120~1~start~gge330766~0~#@$T~P~5116~-2101.75~0~#000080~Arial~~~~~comment~CAN0_T~1~start~gge330772~0~#@$P~show~1~2~5110~-2125~90~gge330778~0^^5110~-2125^^M 5110 -2125 v 10~#000000^^0~5113~-2110~270~2~end~~~#000000^^0~5109~-2120~270~2~start~~~#000000^^0~5110~-2118^^0~M 5107 -2115 L 5110 -2112 L 5113 -2115#@$P~show~1~1~5110~-2085~270~gge330799~0^^5110~-2085^^M 5110 -2085 v -10~#000000^^0~5113~-2100~270~1~start~~~#000000^^0~5109~-2090~270~1~end~~~#000000^^0~5110~-2092^^0~M 5113 -2095 L 5110 -2098 L 5107 -2095#@$R~5106~-2115~~~8~20~#880000~1~0~none~gge330820~0~","LIB~4980~-1900~package`R0805`BOM_Supplier`LCSC`BOM_Manufacturer`UniOhm`BOM_Manufacturer Part`0805W8F1200T5E`nameAlias`Resistance (Ohms)`BOM_Supplier Part`C17437`BOM_JLCPCB Part Class`Basic Part`spicePre`R`spiceSymbolName`0805W8F1200T5E`~90~0~ggee06ccd13940482ac~b60f399a7a7e41848b2be1eb49c79141~a56a57f88a3983690427227df791f629~0~~yes~yes~~~#@$T~N~4986~-1887.75~0~#000080~Arial~~~~~comment~120~1~start~gge330829~0~#@$T~P~4986~-1896.75~0~#000080~Arial~~~~~comment~CAN1_T~1~start~gge330835~0~#@$P~show~1~2~4980~-1920~90~gge330841~0^^4980~-1920^^M 4980 -1920 v 10~#000000^^0~4983~-1905~270~2~end~~~#000000^^0~4979~-1915~270~2~start~~~#000000^^0~4980~-1913^^0~M 4977 -1910 L 4980 -1907 L 4983 -1910#@$P~show~1~1~4980~-1880~270~gge330862~0^^4980~-1880^^M 4980 -1880 v -10~#000000^^0~4983~-1895~270~1~start~~~#000000^^0~4979~-1885~270~1~end~~~#000000^^0~4980~-1887^^0~M 4983 -1890 L 4980 -1893 L 4977 -1890#@$R~4976~-1910~~~8~20~#880000~1~0~none~gge330883~0~","LIB~5030~-2095~package`SOIC-8_L4.9-W3.9-P1.27-LS6.0-BL`BOM_Supplier`LCSC`BOM_Manufacturer`TI`BOM_Manufacturer Part`SN65HVD230DR`BOM_Supplier Part`C12084`BOM_JLCPCB Part Class`Basic Part`spicePre`U`spiceSymbolName`SN65HVD230DR`~~0~ggeb0e1f0dcff30c988~806a55eb4d3c40ab838f70f86785d85e~776fa0316e7c39fb77607054956fed3c~0~~yes~yes~~~#@$T~N~5023.96875~-2123~0~#000080~Arial~~~~~comment~SN65HVD230DR~1~start~gge330892~0~#@$T~P~5023.96875~-2131.328125~0~#000080~Arial~~~~~comment~CAN0_U2~1~start~gge330898~0~#@$R~5000~-2120~2~2~60~50~#880000~1~0~none~gge330904~0~#@$E~5005~-2115~1.5~1.5~#880000~1~0~#880000~gge330907~0#@$P~show~0~1~4990~-2110~180~gge330910~0^^4990~-2110^^M 4990 -2110 h 10~#880000^^1~5003.7~-2106~0~D~start~~~#0000FF^^1~4999.5~-2111~0~1~end~~~#0000FF^^0~4997~-2110^^0~M 5000 -2107 L 5003 -2110 L 5000 -2113#@$P~show~0~2~4990~-2100~180~gge330931~0^^4990~-2100^^M 4990 -2100 h 10~#000000^^1~5003.7~-2096~0~GND~start~~~#000000^^1~4999.5~-2101~0~2~end~~~#000000^^0~4997~-2100^^0~M 5000 -2097 L 5003 -2100 L 5000 -2103#@$P~show~0~3~4990~-2090~180~gge330952~0^^4990~-2090^^M 4990 -2090 h 10~#FF0000^^1~5003.7~-2086~0~VCC~start~~~#FF0000^^1~4999.5~-2091~0~3~end~~~#FF0000^^0~4997~-2090^^0~M 5000 -2087 L 5003 -2090 L 5000 -2093#@$P~show~0~4~4990~-2080~180~gge330973~0^^4990~-2080^^M 4990 -2080 h 10~#880000^^1~5003.7~-2076~0~R~start~~~#0000FF^^1~4999.5~-2081~0~4~end~~~#0000FF^^0~4997~-2080^^0~M 5000 -2077 L 5003 -2080 L 5000 -2083#@$P~show~0~5~5070~-2080~0~gge330994~0^^5070~-2080^^M 5070 -2080 h -10~#880000^^1~5056.3~-2076~0~VREF~end~~~#0000FF^^1~5060.5~-2081~0~5~start~~~#0000FF^^0~5063~-2080^^0~M 5060 -2083 L 5057 -2080 L 5060 -2077#@$P~show~0~6~5070~-2090~0~gge331015~0^^5070~-2090^^M 5070 -2090 h -10~#880000^^1~5056.3~-2086~0~CANL~end~~~#0000FF^^1~5060.5~-2091~0~6~start~~~#0000FF^^0~5063~-2090^^0~M 5060 -2093 L 5057 -2090 L 5060 -2087#@$P~show~0~7~5070~-2100~0~gge331036~0^^5070~-2100^^M 5070 -2100 h -10~#880000^^1~5056.3~-2096~0~CANH~end~~~#0000FF^^1~5060.5~-2101~0~7~start~~~#0000FF^^0~5063~-2100^^0~M 5060 -2103 L 5057 -2100 L 5060 -2097#@$P~show~0~8~5070~-2110~0~gge331057~0^^5070~-2110^^M 5070 -2110 h -10~#880000^^1~5056.3~-2106~0~RS~end~~~#0000FF^^1~5060.5~-2111~0~8~start~~~#0000FF^^0~5063~-2110^^0~M 5060 -2113 L 5057 -2110 L 5060 -2107","LIB~4880~-1860~package`SOIC-8_L4.9-W3.9-P1.27-LS6.0-BL`BOM_Supplier`LCSC`BOM_Manufacturer`TI`BOM_Manufacturer Part`SN65HVD230DR`BOM_Supplier Part`C12084`BOM_JLCPCB Part Class`Basic Part`spicePre`U`spiceSymbolName`SN65HVD230DR`~~0~gge4ec783ed4741de1f~806a55eb4d3c40ab838f70f86785d85e~776fa0316e7c39fb77607054956fed3c~0~~yes~yes~~~#@$T~N~4873.96875~-1888~0~#000080~Arial~~~~~comment~SN65HVD230DR~1~start~gge331084~0~#@$T~P~4873.96875~-1896.328125~0~#000080~Arial~~~~~comment~CAN1_U1~1~start~gge331090~0~#@$R~4850~-1885~2~2~60~50~#880000~1~0~none~gge331096~0~#@$E~4855~-1880~1.5~1.5~#880000~1~0~#880000~gge331099~0#@$P~show~0~1~4840~-1875~180~gge331102~0^^4840~-1875^^M 4840 -1875 h 10~#880000^^1~4853.7~-1871~0~D~start~~~#0000FF^^1~4849.5~-1876~0~1~end~~~#0000FF^^0~4847~-1875^^0~M 4850 -1872 L 4853 -1875 L 4850 -1878#@$P~show~0~2~4840~-1865~180~gge331123~0^^4840~-1865^^M 4840 -1865 h 10~#000000^^1~4853.7~-1861~0~GND~start~~~#000000^^1~4849.5~-1866~0~2~end~~~#000000^^0~4847~-1865^^0~M 4850 -1862 L 4853 -1865 L 4850 -1868#@$P~show~0~3~4840~-1855~180~gge331144~0^^4840~-1855^^M 4840 -1855 h 10~#FF0000^^1~4853.7~-1851~0~VCC~start~~~#FF0000^^1~4849.5~-1856~0~3~end~~~#FF0000^^0~4847~-1855^^0~M 4850 -1852 L 4853 -1855 L 4850 -1858#@$P~show~0~4~4840~-1845~180~gge331165~0^^4840~-1845^^M 4840 -1845 h 10~#880000^^1~4853.7~-1841~0~R~start~~~#0000FF^^1~4849.5~-1846~0~4~end~~~#0000FF^^0~4847~-1845^^0~M 4850 -1842 L 4853 -1845 L 4850 -1848#@$P~show~0~5~4920~-1845~0~gge331186~0^^4920~-1845^^M 4920 -1845 h -10~#880000^^1~4906.3~-1841~0~VREF~end~~~#0000FF^^1~4910.5~-1846~0~5~start~~~#0000FF^^0~4913~-1845^^0~M 4910 -1848 L 4907 -1845 L 4910 -1842#@$P~show~0~6~4920~-1855~0~gge331207~0^^4920~-1855^^M 4920 -1855 h -10~#880000^^1~4906.3~-1851~0~CANL~end~~~#0000FF^^1~4910.5~-1856~0~6~start~~~#0000FF^^0~4913~-1855^^0~M 4910 -1858 L 4907 -1855 L 4910 -1852#@$P~show~0~7~4920~-1865~0~gge331228~0^^4920~-1865^^M 4920 -1865 h -10~#880000^^1~4906.3~-1861~0~CANH~end~~~#0000FF^^1~4910.5~-1866~0~7~start~~~#0000FF^^0~4913~-1865^^0~M 4910 -1868 L 4907 -1865 L 4910 -1862#@$P~show~0~8~4920~-1875~0~gge331249~0^^4920~-1875^^M 4920 -1875 h -10~#880000^^1~4906.3~-1871~0~RS~end~~~#0000FF^^1~4910.5~-1876~0~8~start~~~#0000FF^^0~4913~-1875^^0~M 4910 -1878 L 4907 -1875 L 4910 -1872","LIB~5010~-1735~package`SOIC-18_L11.6-W7.5-P1.27-LS10.3-BL`BOM_Supplier`LCSC`BOM_Manufacturer`MICROCHIP`BOM_Manufacturer Part`MCP2515-I\/SO`BOM_Supplier Part`C12368`BOM_JLCPCB Part Class`Basic Part`spicePre`U`spiceSymbolName`MCP2515-I\/SO`~~0~gge484e3008dca2bfa8~45c3bbdf7fba47d1b4e39c9fc6f81f34~b8034411774843f29c6848b094e2346d~0~~yes~yes~~~#@$T~N~5004.046875~-1790~0~#000080~Arial~~~~~comment~MCP2515-I\/SO~1~start~gge331276~0~#@$T~P~5004.046875~-1799.125~0~#000080~Arial~~~~~comment~CAN1_U2~1~start~gge331282~0~#@$E~4965~-1782~1.5~1.5~#880000~1~0~#880000~gge331288~0#@$R~4960~-1787~2~2~100~104~#880000~1~0~none~gge331291~0~#@$E~4965~-1782~1.5~1.5~#880000~1~0~#880000~gge331294~0#@$P~show~0~1~4950~-1775~180~gge331297~0^^4950~-1775^^M 4950 -1775 h 10~#880000^^1~4963.7~-1771~0~TXCAN~start~~~#0000FF^^1~4959.5~-1776~0~1~end~~~#0000FF^^0~4957~-1775^^0~M 4960 -1772 L 4963 -1775 L 4960 -1778#@$P~show~0~2~4950~-1765~180~gge331318~0^^4950~-1765^^M 4950 -1765 h 10~#880000^^1~4963.7~-1761~0~RXCAN~start~~~#0000FF^^1~4959.5~-1766~0~2~end~~~#0000FF^^0~4957~-1765^^0~M 4960 -1762 L 4963 -1765 L 4960 -1768#@$P~show~0~3~4950~-1755~180~gge331339~0^^4950~-1755^^M 4950 -1755 h 10~#880000^^1~4963.7~-1751~0~CLKOUTSOF~start~~~#0000FF^^1~4959.5~-1756~0~3~end~~~#0000FF^^0~4957~-1755^^0~M 4960 -1752 L 4963 -1755 L 4960 -1758#@$P~show~0~4~4950~-1745~180~gge331360~0^^4950~-1745^^M 4950 -1745 h 10~#880000^^1~4963.7~-1741~0~TX0RTS#~start~~~#0000FF^^1~4959.5~-1746~0~4~end~~~#0000FF^^0~4957~-1745^^0~M 4960 -1742 L 4963 -1745 L 4960 -1748#@$P~show~0~5~4950~-1735~180~gge331381~0^^4950~-1735^^M 4950 -1735 h 10~#880000^^1~4963.7~-1731~0~TX1RTS#~start~~~#0000FF^^1~4959.5~-1736~0~5~end~~~#0000FF^^0~4957~-1735^^0~M 4960 -1732 L 4963 -1735 L 4960 -1738#@$P~show~0~6~4950~-1725~180~gge331402~0^^4950~-1725^^M 4950 -1725 h 10~#880000^^1~4963.7~-1721~0~TX2RTS#~start~~~#0000FF^^1~4959.5~-1726~0~6~end~~~#0000FF^^0~4957~-1725^^0~M 4960 -1722 L 4963 -1725 L 4960 -1728#@$P~show~0~7~4950~-1715~180~gge331423~0^^4950~-1715^^M 4950 -1715 h 10~#880000^^1~4963.7~-1711~0~OSC2~start~~~#0000FF^^1~4959.5~-1716~0~7~end~~~#0000FF^^0~4957~-1715^^0~M 4960 -1712 L 4963 -1715 L 4960 -1718#@$P~show~0~8~4950~-1705~180~gge331444~0^^4950~-1705^^M 4950 -1705 h 10~#880000^^1~4963.7~-1701~0~OSC1~start~~~#0000FF^^1~4959.5~-1706~0~8~end~~~#0000FF^^0~4957~-1705^^0~M 4960 -1702 L 4963 -1705 L 4960 -1708#@$P~show~0~9~4950~-1695~180~gge331465~0^^4950~-1695^^M 4950 -1695 h 10~#000000^^1~4963.7~-1691~0~VSS~start~~~#000000^^1~4959.5~-1696~0~9~end~~~#000000^^0~4957~-1695^^0~M 4960 -1692 L 4963 -1695 L 4960 -1698#@$P~show~0~10~5070~-1695~0~gge331486~0^^5070~-1695^^M 5070 -1695 h -10~#880000^^1~5056.3~-1691~0~RX1BF#~end~~~#0000FF^^1~5060.5~-1696~0~10~start~~~#0000FF^^0~5063~-1695^^0~M 5060 -1698 L 5057 -1695 L 5060 -1692#@$P~show~0~11~5070~-1705~0~gge331507~0^^5070~-1705^^M 5070 -1705 h -10~#880000^^1~5056.3~-1701~0~RX0BF#~end~~~#0000FF^^1~5060.5~-1706~0~11~start~~~#0000FF^^0~5063~-1705^^0~M 5060 -1708 L 5057 -1705 L 5060 -1702#@$P~show~0~12~5070~-1715~0~gge331528~0^^5070~-1715^^M 5070 -1715 h -10~#880000^^1~5056.3~-1711~0~INT#~end~~~#0000FF^^1~5060.5~-1716~0~12~start~~~#0000FF^^0~5063~-1715^^0~M 5060 -1718 L 5057 -1715 L 5060 -1712#@$P~show~0~13~5070~-1725~0~gge331549~0^^5070~-1725^^M 5070 -1725 h -10~#880000^^1~5056.3~-1721~0~SCK~end~~~#0000FF^^1~5060.5~-1726~0~13~start~~~#0000FF^^0~5063~-1725^^0~M 5060 -1728 L 5057 -1725 L 5060 -1722#@$P~show~0~14~5070~-1735~0~gge331570~0^^5070~-1735^^M 5070 -1735 h -10~#880000^^1~5056.3~-1731~0~SI~end~~~#0000FF^^1~5060.5~-1736~0~14~start~~~#0000FF^^0~5063~-1735^^0~M 5060 -1738 L 5057 -1735 L 5060 -1732#@$P~show~0~15~5070~-1745~0~gge331591~0^^5070~-1745^^M 5070 -1745 h -10~#880000^^1~5056.3~-1741~0~SO~end~~~#0000FF^^1~5060.5~-1746~0~15~start~~~#0000FF^^0~5063~-1745^^0~M 5060 -1748 L 5057 -1745 L 5060 -1742#@$P~show~0~16~5070~-1755~0~gge331612~0^^5070~-1755^^M 5070 -1755 h -10~#880000^^1~5056.3~-1751~0~CS#~end~~~#0000FF^^1~5060.5~-1756~0~16~start~~~#0000FF^^0~5063~-1755^^0~M 5060 -1758 L 5057 -1755 L 5060 -1752#@$P~show~0~17~5070~-1765~0~gge331633~0^^5070~-1765^^M 5070 -1765 h -10~#880000^^1~5056.3~-1761~0~RESET#~end~~~#0000FF^^1~5060.5~-1766~0~17~start~~~#0000FF^^0~5063~-1765^^0~M 5060 -1768 L 5057 -1765 L 5060 -1762#@$P~show~0~18~5070~-1775~0~gge331654~0^^5070~-1775^^M 5070 -1775 h -10~#FF0000^^1~5056.3~-1771~0~VDD~end~~~#FF0000^^1~5060.5~-1776~0~18~start~~~#FF0000^^0~5063~-1775^^0~M 5060 -1778 L 5057 -1775 L 5060 -1772","LIB~4755~-1705~package`OSC-SMD_4P-L3.2-W2.5-BL`BOM_Supplier`LCSC`BOM_Manufacturer`YXC`BOM_Manufacturer Part`X322516MLB4SI`nameAlias`Frequency`BOM_Supplier Part`C13738`BOM_JLCPCB Part Class`Basic Part`spicePre`X`spiceSymbolName`X322516MLB4SI`~90~0~gge220c9828e5ec91fa~fde525906f004b04890fe3f9fe02cca8~320400870eb297eb1df26973a3a5a9f4~0~~yes~yes~~~#@$T~N~4777~-1692.75~0~#000080~Arial~~~~~comment~16MHz~1~start~gge331681~0~#@$T~P~4777~-1701.75~0~#000080~Arial~~~~~comment~CAN1_X1~1~start~gge331687~0~#@$PL~4759 -1700 4751 -1700~#880011~1~0~none~gge331693~0#@$PL~4762 -1708 4762 -1702~#880011~1~0~none~gge331696~0#@$PL~4759 -1710 4751 -1710~#880011~1~0~none~gge331699~0#@$PL~4762 -1702 4748 -1702 4748 -1708 4762 -1708~#880011~1~0~none~gge331702~0#@$PL~4745 -1725 4745 -1715 4755 -1715 4755 -1711~#880011~1~0~none~gge331705~0#@$PL~4765 -1685 4765 -1695 4755 -1695 4755 -1699~#880011~1~0~none~gge331708~0#@$PL~4762 -1710 4748 -1710~#880011~1~0~none~gge331711~0#@$PL~4762 -1700 4748 -1700~#880011~1~0~none~gge331714~0#@$PL~4748 -1708 4762 -1708 4762 -1702 4748 -1702 4748 -1708~#880011~1~0~none~gge331717~0#@$P~show~0~4~4745~-1675~270~gge331720~0^^4745~-1675^^M 4745 -1675 v -10~#000000^^0~4748~-1687~270~GND~start~~~#000000^^1~4744~-1685~270~4~end~~~#000000^^0~4745~-1682^^0~M 4748 -1685 L 4745 -1688 L 4742 -1685#@$P~show~0~2~4765~-1735~90~gge331741~0^^4765~-1735^^M 4765 -1735 v 10~#000000^^0~4768~-1723~270~GND~end~~~#000000^^1~4764~-1725~270~2~start~~~#000000^^0~4765~-1728^^0~M 4762 -1725 L 4765 -1722 L 4768 -1725#@$R~4735~-1725~2~2~40~40~#880000~1~0~none~gge331762~0~#@$P~show~0~1~4765~-1675~270~gge331765~0^^4765~-1675^^M 4765 -1675 v -10~#880000^^0~4768~-1687~270~OSC1~start~~~#0000FF^^1~4764~-1685~270~1~end~~~#0000FF^^0~4765~-1682^^0~M 4768 -1685 L 4765 -1688 L 4762 -1685#@$P~show~0~3~4745~-1735~90~gge331786~0^^4745~-1735^^M 4745 -1735 v 10~#880000^^0~4748~-1723~270~OSC2~end~~~#0000FF^^1~4744~-1725~270~3~start~~~#0000FF^^0~4745~-1728^^0~M 4742 -1725 L 4745 -1722 L 4748 -1725","LIB~5145~-1785~package`R0805`BOM_Supplier`LCSC`BOM_Manufacturer`UniOhm`BOM_Manufacturer Part`0805W8F4701T5E`nameAlias`Resistance (Ohms)`BOM_Supplier Part`C17673`BOM_JLCPCB Part Class`Basic Part`spicePre`R`spiceSymbolName`0805W8F4701T5E`~90~0~ggeba2c6d155e7fd301~b60f399a7a7e41848b2be1eb49c79141~a5aacd49a37b1c69a99213318b5e7633~0~~yes~yes~~~#@$T~N~5151~-1772.765625~0~#000080~Arial~~~~~comment~4.7K~1~start~gge331876~0~#@$T~P~5151.0078125~-1781.8515625~0~#000080~Arial~~~~~comment~CAN1_R3~1~start~gge331882~0~#@$P~show~1~2~5145~-1805~90~gge331888~0^^5145~-1805^^M 5145 -1805 v 10~#000000^^0~5148~-1790~270~2~end~~~#000000^^0~5144~-1800~270~2~start~~~#000000^^0~5145~-1798^^0~M 5142 -1795 L 5145 -1792 L 5148 -1795#@$P~show~1~1~5145~-1765~270~gge331909~0^^5145~-1765^^M 5145 -1765 v -10~#000000^^0~5148~-1780~270~1~start~~~#000000^^0~5144~-1770~270~1~end~~~#000000^^0~5145~-1772^^0~M 5148 -1775 L 5145 -1778 L 5142 -1775#@$R~5141~-1795~~~8~20~#880000~1~0~none~gge331930~0~","LIB~4805~-1925~package`R0805`BOM_Supplier`LCSC`BOM_Manufacturer`UniOhm`BOM_Manufacturer Part`0805W8F1002T5E`nameAlias`Resistance (Ohms)`BOM_Supplier Part`C17414`BOM_JLCPCB Part Class`Basic Part`spicePre`R`spiceSymbolName`0805W8F1002T5E`~~0~gge9cdd622c9eeecfe7~b60f399a7a7e41848b2be1eb49c79141~d4a844d81a8421ba55bf9bbe0176c427~0~~yes~yes~~~#@$T~N~4799.03125~-1932~0~#000080~Arial~~~~~comment~10K~1~start~gge332065~0~#@$T~P~4799.0390625~-1941.109375~0~#000080~Arial~~~~~comment~CAN1_R1~1~start~gge332071~0~#@$P~show~1~2~4825~-1925~0~gge332077~0^^4825~-1925^^M 4825 -1925 h -10~#000000^^0~4810~-1922~0~2~end~~~#000000^^0~4820~-1926~0~2~start~~~#000000^^0~4818~-1925^^0~M 4815 -1928 L 4812 -1925 L 4815 -1922#@$P~show~1~1~4785~-1925~180~gge332098~0^^4785~-1925^^M 4785 -1925 h 10~#000000^^0~4800~-1922~0~1~start~~~#000000^^0~4790~-1926~0~1~end~~~#000000^^0~4792~-1925^^0~M 4795 -1922 L 4798 -1925 L 4795 -1928#@$R~4795~-1929~~~20~8~#880000~1~0~none~gge332119~0~","LIB~4950~-2140~package`R0805`BOM_Supplier`LCSC`BOM_Manufacturer`UniOhm`BOM_Manufacturer Part`0805W8F1002T5E`nameAlias`Resistance (Ohms)`BOM_Supplier Part`C17414`BOM_JLCPCB Part Class`Basic Part`spicePre`R`spiceSymbolName`0805W8F1002T5E`~~0~gge353b166cc2dee846~b60f399a7a7e41848b2be1eb49c79141~d4a844d81a8421ba55bf9bbe0176c427~0~~yes~yes~~~#@$T~N~4944.03125~-2147~0~#000080~Arial~~~~~comment~10K~1~start~gge332128~0~#@$T~P~4944.0390625~-2156.109375~0~#000080~Arial~~~~~comment~CAN0_R2~1~start~gge332134~0~#@$P~show~1~2~4970~-2140~0~gge332140~0^^4970~-2140^^M 4970 -2140 h -10~#000000^^0~4955~-2137~0~2~end~~~#000000^^0~4965~-2141~0~2~start~~~#000000^^0~4963~-2140^^0~M 4960 -2143 L 4957 -2140 L 4960 -2137#@$P~show~1~1~4930~-2140~180~gge332161~0^^4930~-2140^^M 4930 -2140 h 10~#000000^^0~4945~-2137~0~1~start~~~#000000^^0~4935~-2141~0~1~end~~~#000000^^0~4937~-2140^^0~M 4940 -2137 L 4943 -2140 L 4940 -2143#@$R~4940~-2144~~~20~8~#880000~1~0~none~gge332182~0~","LIB~4665~-1745~package`C0805`BOM_Supplier`LCSC`BOM_Manufacturer Part`CL21C220JBANNNC`BOM_Manufacturer`SAMSUNG`nameAlias`Capacitance`BOM_Supplier Part`C1804`BOM_JLCPCB Part Class`Basic Part`spicePre`C`spiceSymbolName`CL21C220JBANNNC`~~0~ggeddba3c46cf8b8e66~2ee8eb13a0124a108e622ce40c0c25a8~0ec43cbf0ecf4cbde7e6e842f901049f~0~~yes~yes~~~#@$T~N~4659.03125~-1756~0~#000080~Arial~~~~~comment~22pF~1~start~gge332191~0~#@$T~P~4659.0390625~-1765.109375~0~#000080~Arial~~~~~comment~CAN1_C4~1~start~gge332197~0~#@$PL~4663 -1753 4663 -1737~#880000~1~0~none~gge332203~0#@$PL~4667 -1753 4667 -1737~#880000~1~0~none~gge332206~0#@$P~show~1~1~4650~-1745~180~gge332209~0^^4650~-1745^^M 4650 -1745 h 10~#000000^^0~4665~-1742~0~1~start~~~#000000^^0~4655~-1746~0~1~end~~~#000000^^0~4657~-1745^^0~M 4660 -1742 L 4663 -1745 L 4660 -1748#@$P~show~1~2~4680~-1745~0~gge332230~0^^4680~-1745^^M 4680 -1745 h -10~#000000^^0~4665~-1742~0~2~end~~~#000000^^0~4675~-1746~0~2~start~~~#000000^^0~4673~-1745^^0~M 4670 -1748 L 4667 -1745 L 4670 -1742#@$PL~4660 -1745 4663 -1745~#880000~1~0~none~gge332251~0#@$PL~4667 -1745 4670 -1745~#880000~1~0~none~gge332254~0","LIB~4665~-1660~package`C0805`BOM_Supplier`LCSC`BOM_Manufacturer Part`CL21C220JBANNNC`BOM_Manufacturer`SAMSUNG`nameAlias`Capacitance`BOM_Supplier Part`C1804`BOM_JLCPCB Part Class`Basic Part`spicePre`C`spiceSymbolName`CL21C220JBANNNC`~~0~gge48d2dd422533522c~2ee8eb13a0124a108e622ce40c0c25a8~0ec43cbf0ecf4cbde7e6e842f901049f~0~~yes~yes~~~#@$T~N~4659.03125~-1671~0~#000080~Arial~~~~~comment~22pF~1~start~gge332263~0~#@$T~P~4659.0390625~-1680.109375~0~#000080~Arial~~~~~comment~CAN1_C5~1~start~gge332269~0~#@$PL~4663 -1668 4663 -1652~#880000~1~0~none~gge332275~0#@$PL~4667 -1668 4667 -1652~#880000~1~0~none~gge332278~0#@$P~show~1~1~4650~-1660~180~gge332281~0^^4650~-1660^^M 4650 -1660 h 10~#000000^^0~4665~-1657~0~1~start~~~#000000^^0~4655~-1661~0~1~end~~~#000000^^0~4657~-1660^^0~M 4660 -1657 L 4663 -1660 L 4660 -1663#@$P~show~1~2~4680~-1660~0~gge332302~0^^4680~-1660^^M 4680 -1660 h -10~#000000^^0~4665~-1657~0~2~end~~~#000000^^0~4675~-1661~0~2~start~~~#000000^^0~4673~-1660^^0~M 4670 -1663 L 4667 -1660 L 4670 -1657#@$PL~4660 -1660 4663 -1660~#880000~1~0~none~gge332323~0#@$PL~4667 -1660 4670 -1660~#880000~1~0~none~gge332326~0","LIB~4860~-2045~package`C0805`BOM_Supplier`LCSC`BOM_Manufacturer Part`CC0805KRX7R9BB104`BOM_Manufacturer`YAGEO`nameAlias`Capacitance`BOM_Supplier Part`C49678`BOM_JLCPCB Part Class`Basic Part`spicePre`C`spiceSymbolName`CC0805KRX7R9BB104`~~0~ggeb4693cfd16d534cd~2ee8eb13a0124a108e622ce40c0c25a8~2f2c771dc147fb0210616ca49e419712~0~~yes~yes~~~#@$T~N~4853.96875~-2056~0~#000080~Arial~~~~~comment~100nF~1~start~gge332335~0~#@$T~P~4853.96875~-2064.328125~0~#000080~Arial~~~~~comment~CAN0_C2~1~start~gge332341~0~#@$PL~4858 -2053 4858 -2037~#880000~1~0~none~gge332347~0#@$PL~4862 -2053 4862 -2037~#880000~1~0~none~gge332350~0#@$P~show~1~1~4845~-2045~180~gge332353~0^^4845~-2045^^M 4845 -2045 h 10~#000000^^0~4860~-2042~0~1~start~~~#000000^^0~4850~-2046~0~1~end~~~#000000^^0~4852~-2045^^0~M 4855 -2042 L 4858 -2045 L 4855 -2048#@$P~show~1~2~4875~-2045~0~gge332374~0^^4875~-2045^^M 4875 -2045 h -10~#000000^^0~4860~-2042~0~2~end~~~#000000^^0~4870~-2046~0~2~start~~~#000000^^0~4868~-2045^^0~M 4865 -2048 L 4862 -2045 L 4865 -2042#@$PL~4855 -2045 4858 -2045~#880000~1~0~none~gge332395~0#@$PL~4862 -2045 4865 -2045~#880000~1~0~none~gge332398~0","T~L~5085~-1990~0~#0000FF~~9pt~bold~~~comment~Can0 Chademo~1~start~gge332545~0~pinpart","O~4920~-1845~gge332698~M 4916 -1849 L 4924 -1841 M 4924 -1849 L 4916 -1841~#33cc33~0","W~4745 -1735 4725 -1735 4725 -1745~#008800~1~0~none~gge332716~0","W~4615 -1660 4615 -1745 4650 -1745~#008800~1~0~none~gge332722~0","W~4765 -1675 4765 -1660~#008800~1~0~none~gge332725~0","W~4950 -1705 4915 -1705 4915 -1660 4780 -1660 4680 -1660~#008800~1~0~none~gge332728~0","W~5070 -1725 5145 -1725~#008800~1~0~none~gge332737~0","F~part_netLabel_netPort~5145~-1725~0~gge332740~~0^^5145~-1725^^SPI_SCK~#0000FF~5210.71~-1721.4~0~end~1~Times New Roman~8pt~flag_gge19^^PL~5165 -1730.25 5165 -1719.5 5150.75 -1719.5 5145 -1725 5150.25 -1730.25 5165.25 -1730.25~#430AFF~1~0~#FFF7F8~gge332752~0","W~5070 -1735 5145 -1735~#008800~1~0~none~gge332755~0","W~5070 -1745 5145 -1745~#008800~1~0~none~gge332758~0","F~part_netLabel_netPort~5145~-1745~0~gge332761~~0^^5145~-1745^^SPI_MISO~#0000FF~5213.71~-1741.4~0~end~1~Times New Roman~8pt~flag_gge22^^PL~5165 -1750.25 5165 -1739.5 5150.75 -1739.5 5145 -1745 5150.25 -1750.25 5165.25 -1750.25~#430AFF~1~0~#FFF7F8~gge332773~0","F~part_netLabel_netPort~5145~-1735~0~gge332776~~0^^5145~-1735^^SPI_MOSI~#0000FF~5213.71~-1731.4~0~end~1~Times New Roman~8pt~flag_gge25^^PL~5165 -1740.25 5165 -1729.5 5150.75 -1729.5 5145 -1735 5150.25 -1740.25 5165.25 -1740.25~#430AFF~1~0~#FFF7F8~gge332788~0","W~5070 -1755 5145 -1755~#008800~1~0~none~gge332791~0","F~part_netLabel_netPort~5145~-1755~0~gge332794~~0^^5145~-1755^^SPI_CS~#0000FF~5201.9~-1751.4~0~end~1~Times New Roman~8pt~flag_gge28^^PL~5165 -1760.25 5165 -1749.5 5150.75 -1749.5 5145 -1755 5150.25 -1760.25 5165.25 -1760.25~#430AFF~1~0~#FFF7F8~gge332806~0","O~4950~-1745~gge332851~M 4946 -1749 L 4954 -1741 M 4954 -1749 L 4946 -1741~#33cc33~0","O~4950~-1735~gge332857~M 4946 -1739 L 4954 -1731 M 4954 -1739 L 4946 -1731~#33cc33~0","O~4950~-1725~gge332863~M 4946 -1729 L 4954 -1721 M 4954 -1729 L 4946 -1721~#33cc33~0","O~4950~-1755~gge332869~M 4946 -1759 L 4954 -1751 M 4954 -1759 L 4946 -1751~#33cc33~0","F~part_netLabel_netPort~5145~-1715~0~gge332875~~0^^5145~-1715^^SPI_INT~#0000FF~5204.2578125~-1711.4~0~end~1~Times New Roman~8pt~flag_gge31^^PL~5165 -1720.25 5165 -1709.5 5150.75 -1709.5 5145 -1715 5150.25 -1720.25 5165.25 -1720.25~#430AFF~1~0~#FFF7F8~gge332887~0","W~5070 -1715 5145 -1715~#008800~1~0~none~gge332890~0","W~4615 -1660 4650 -1660~#008800~1~0~none~gge332893~0","W~5160 -1815 5145 -1815 5145 -1805~#008800~1~0~none~gge332899~0","W~4680 -1745 4845 -1745 4845 -1720 4845 -1715~#008800~1~0~none~gge332902~0","O~5070~-1705~gge332914~M 5066 -1709 L 5074 -1701 M 5074 -1709 L 5066 -1701~#33cc33~0","O~5070~-1695~gge332920~M 5066 -1699 L 5074 -1691 M 5074 -1699 L 5066 -1691~#33cc33~0","W~4690 -1845 4700 -1845~#008800~1~0~none~gge332926~0","W~4840 -1855 4765 -1855 4765 -1810~#008800~1~0~none~gge332929~0","W~4705 -1820 4700 -1820 4700 -1865 4840 -1865~#008800~1~0~none~gge332932~0","W~4950 -1765 4910 -1765 4910 -1830 4835 -1830 4835 -1845 4840 -1845~#008800~1~0~none~gge332935~0","W~4920 -1875 4935 -1875 4935 -1925 4825 -1925~#008800~1~0~none~gge332938~0","W~4950 -1775 4895 -1775 4895 -1820 4820 -1820 4820 -1875 4840 -1875~#008800~1~0~none~gge332941~0","W~4920 -1855 4950 -1855 4950 -1815 5000 -1815~#008800~1~0~none~gge332944~0","W~4920 -1865 4950 -1865 4950 -1920 5000 -1920~#008800~1~0~none~gge332947~0","F~part_netLabel_netPort~5000~-1815~180~gge332950~~0^^5000~-1815^^CAN1_L~#0000FF~5027.15~-1812.99~0~start~1~Times New Roman~8pt~flag_gge34^^PL~5000 -1815 5005 -1820 5020 -1820 5020 -1810 5005 -1810 5000 -1815~#0000FF~1~0~transparent~gge332962~0","F~part_netLabel_netPort~5000~-1920~180~gge332965~~0^^5000~-1920^^CAN1_H~#0000FF~5027.15~-1917.99~0~start~1~Times New Roman~8pt~flag_gge37^^PL~5000 -1920 5005 -1925 5020 -1925 5020 -1915 5005 -1915 5000 -1920~#0000FF~1~0~transparent~gge332977~0","F~part_netLabel_gnD~4690~-1845~270~gge332980~~0^^4690~-1845^^GND~#000000~4647.5~-1841.07~0~start~1~Times New Roman~9pt~flag_gge40^^PL~4680 -1845 4690 -1845~#000000~1~0~transparent~gge332992~0^^PL~4680 -1854 4680 -1836~#000000~1~0~transparent~gge332995~0^^PL~4678 -1851 4678 -1839~#000000~1~0~transparent~gge332998~0^^PL~4676 -1848 4676 -1842~#000000~1~0~transparent~gge333001~0^^PL~4674 -1846 4674 -1844~#000000~1~0~transparent~gge333004~0","W~4765 -1805 4765 -1810~#008800~1~0~none~gge333007~0","F~part_netLabel_gnD~4600~-1700~270~gge333010~~0^^4600~-1700^^GND~#000000~4557.5~-1695.83~0~start~1~Times New Roman~9pt~flag_gge43^^PL~4590 -1700 4600 -1700~#000000~1~0~transparent~gge333022~0^^PL~4590 -1709 4590 -1691~#000000~1~0~transparent~gge333025~0^^PL~4588 -1706 4588 -1694~#000000~1~0~transparent~gge333028~0^^PL~4586 -1703 4586 -1697~#000000~1~0~transparent~gge333031~0^^PL~4584 -1701 4584 -1699~#000000~1~0~transparent~gge333034~0","O~5070~-2080~gge333040~M 5066 -2084 L 5074 -2076 M 5074 -2084 L 5066 -2076~#33cc33~0","W~4835 -2085 4845 -2085~#008800~1~0~none~gge333046~0","W~4990 -2090 4910 -2090 4910 -2045 4875 -2045~#008800~1~0~none~gge333049~0","W~4990 -2100 4845 -2100~#008800~1~0~none~gge333052~0","W~4990 -2080 4980 -2080~#008800~1~0~none~gge333055~0","W~5070 -2110 5080 -2110 5080 -2140 4970 -2140~#008800~1~0~none~gge333058~0","W~4930 -2140 4845 -2140 4845 -2100 4845 -2085 4845 -2075 4845 -2045~#008800~1~0~none~gge333061~0","R~4790~-2175~~~435~200~#000000~1~0~none~gge333064~0~","W~4990 -2110 4980 -2110~#008800~1~0~none~gge333067~0","W~5070 -2090 5095 -2090 5095 -2020 5145 -2020~#008800~1~0~none~gge333070~0","W~5070 -2100 5095 -2100 5095 -2125 5145 -2125~#008800~1~0~none~gge333073~0","F~part_netLabel_gnD~4840~-2085~270~gge333076~~0^^4840~-2085^^GND~#000000~4797.15625~-2081~0~start~1~Times New Roman~9pt~flag_gge46^^PL~4830 -2085 4840 -2085~#000000~1~0~transparent~gge333088~0^^PL~4830 -2094 4830 -2076~#000000~1~0~transparent~gge333091~0^^PL~4828 -2091 4828 -2079~#000000~1~0~transparent~gge333094~0^^PL~4826 -2088 4826 -2082~#000000~1~0~transparent~gge333097~0^^PL~4824 -2086 4824 -2084~#000000~1~0~transparent~gge333100~0","F~part_netLabel_netPort~5145~-2020~180~gge333103~~0^^5145~-2020^^CAN0_L~#0000FF~5172.15~-2017.99~0~start~1~Times New Roman~8pt~flag_gge49^^PL~5145 -2020 5150 -2025 5165 -2025 5165 -2015 5150 -2015 5145 -2020~#0000FF~1~0~transparent~gge333115~0","F~part_netLabel_netPort~5145~-2125~180~gge333118~~0^^5145~-2125^^CAN0_H~#0000FF~5172.15~-2122.99~0~start~1~Times New Roman~8pt~flag_gge52^^PL~5145 -2125 5150 -2130 5165 -2130 5165 -2120 5150 -2120 5145 -2125~#0000FF~1~0~transparent~gge333130~0","F~part_netLabel_netPort~4980~-2080~0~gge333133~~0^^4980~-2080^^CANRX~#0000FF~4958~-2076.442~0~end~1~Times New Roman~8pt~flag_gge55^^PL~4980 -2080 4975 -2075 4960 -2075 4960 -2085 4975 -2085 4980 -2080~#0000FF~1~0~transparent~gge333145~0","F~part_netLabel_netPort~4980~-2110~0~gge333148~~0^^4980~-2110^^CANTX~#0000FF~4958~-2106.442~0~end~1~Times New Roman~8pt~flag_gge58^^PL~4980 -2110 4975 -2105 4960 -2105 4960 -2115 4975 -2115 4980 -2110~#0000FF~1~0~transparent~gge333160~0","LIB~5110~-2065~package`SOLDER BRIDGE`BOM_Manufacturer Part`Solder bridge`Contributor`rstevens81`BOM_Supplier Part``BOM_Supplier``spicePre`S`spiceSymbolName`Solder bridge`~270~0~gged89f481c5f5a93cc~dbe7c809bc2a468485beb80acd7ba1b3~f1d532d2c72c49708d5971ac92ddac17~0~~yes~none~ec89db70470643da97f67f5c134f8b19~1655399653~#@$T~N~5115~-2052.81~0~#000080~Arial~~~~~comment~Solder bridge~1~start~gge333175~0~#@$T~P~5115~-2061.67~0~#000080~Arial~~~~~comment~CAN0_TERM_SB~1~start~gge333181~0~#@$P~show~0~2~5110~-2060~90~gge333187~0^^5110~-2060^^M 5110 -2060 v 0~#880000^^0~5113~-2058~270~2~end~~~#0000FF^^1~5105~-2057~270~2~start~~~#0000FF^^0~5110~-2063^^0~M 5107 -2060 L 5110 -2057 L 5113 -2060#@$P~show~0~1~5110~-2070~270~gge333208~0^^5110~-2070^^M 5110 -2070 v 0~#880000^^0~5113~-2072~270~1~start~~~#0000FF^^1~5105~-2073~270~1~end~~~#0000FF^^0~5110~-2067^^0~M 5113 -2070 L 5110 -2073 L 5107 -2070#@$R~5107~-2073~~~6~6~#880000~1~0~#880000~gge333229~0~#@$R~5107~-2063~~~6~6~#880000~1~0~#880000~gge333232~0~","W~5110 -2070 5110 -2085~#008800~1~0~none~gge333238~0","LIB~4980~-1875~package`SOLDER BRIDGE`BOM_Manufacturer Part`Solder bridge`Contributor`rstevens81`BOM_Supplier Part``BOM_Supplier``spicePre`S`spiceSymbolName`Solder bridge`~270~0~ggebe3af6509d87d2e6~dbe7c809bc2a468485beb80acd7ba1b3~f1d532d2c72c49708d5971ac92ddac17~0~~yes~none~ec89db70470643da97f67f5c134f8b19~1655399653~#@$T~N~4985~-1862.81~0~#000080~Arial~~~~~comment~Solder bridge~1~start~gge333253~0~#@$T~P~4985~-1871.67~0~#000080~Arial~~~~~comment~CAN1_TERM_SB~1~start~gge333259~0~#@$P~show~0~2~4980~-1870~90~gge333265~0^^4980~-1870^^M 4980 -1870 v 0~#880000^^0~4983~-1868~270~2~end~~~#0000FF^^1~4975~-1867~270~2~start~~~#0000FF^^0~4980~-1873^^0~M 4977 -1870 L 4980 -1867 L 4983 -1870#@$P~show~0~1~4980~-1880~270~gge333286~0^^4980~-1880^^M 4980 -1880 v 0~#880000^^0~4983~-1882~270~1~start~~~#0000FF^^1~4975~-1883~270~1~end~~~#0000FF^^0~4980~-1877^^0~M 4983 -1880 L 4980 -1883 L 4977 -1880#@$R~4977~-1883~~~6~6~#880000~1~0~#880000~gge333307~0~#@$R~4977~-1873~~~6~6~#880000~1~0~#880000~gge333310~0~","W~5005 -2490 5040 -2490 5040 -2385 4745 -2385 4745 -2460~#008800~1~0~none~gge335386~0","W~4695 -2400 4695 -2460 4745 -2460~#008800~1~0~none~gge335407~0","F~part_netLabel_+5V~4695~-2400~180~gge335410~~0^^4695~-2400^^+5V~#000000~4683.109375~-2378.390625~0~start~1~Times New Roman~9pt~flag_gge61^^PL~4695 -2390 4695 -2400~#000000~1~0~transparent~gge335422~0^^PL~4700 -2390 4690 -2390~#000000~1~0~transparent~gge335425~0","W~4745 -2500 4745 -2525 4840 -2525~#008800~1~0~none~gge335428~0","W~4825 -2460 4840 -2460~#008800~1~0~none~gge335431~0","W~4840 -2515 4840 -2525 4895 -2525~#008800~1~0~none~gge335506~0","W~4840 -2475 4840 -2475 4840 -2475 4840 -2475 4840 -2460 4865 -2460 4865 -2405 5025 -2405 5025 -2470 5005 -2470~#008800~1~0~none~gge335509~0","LIB~4840~-2495~package`SMA_L4.4-W2.8-LS5.4-R-RD`BOM_Supplier`LCSC`BOM_Manufacturer Part`SS54`BOM_Manufacturer`MDD`BOM_Supplier Part`C22452`BOM_JLCPCB Part Class`Basic Part`spicePre`D`spiceSymbolName`SS54_C22452`~90~0~ggebeb58e6e19735f0c~281331a006ef4c05b8ec457a626c4c60~73c5169ab63734333858011ac37dd7f9~0~~yes~yes~~~#@$T~N~4850~-2482.4375~0~#000080~Arial~~~~~comment~SS54_C22452~1~start~gge335518~0~#@$T~P~4850~-2493.1484375~0~#000080~Arial~~~~~comment~PSU_D2~1~start~gge335524~0~#@$P~show~0~1~4840~-2515~90~gge335530~0^^4840~-2515^^M 4840 -2515 v 15~#880000^^0~4843~-2497~270~A~end~~~#0000FF^^0~4839~-2506~270~1~start~~~#0000FF^^0~4840~-2503^^0~M 4837 -2500 L 4840 -2497 L 4843 -2500#@$P~show~0~2~4840~-2475~270~gge335551~0^^4840~-2475^^M 4840 -2475 v -15~#880000^^0~4843~-2493~270~K~start~~~#0000FF^^0~4839~-2484~270~2~end~~~#0000FF^^0~4840~-2487^^0~M 4843 -2490 L 4840 -2493 L 4837 -2490#@$PL~4834 -2487 4833 -2487 4833 -2489 4848 -2489 4848 -2491 4847 -2491~#880000~1~0~none~gge335572~0#@$PT~M 4834 -2500 L 4840 -2490 L 4847 -2500 Z ~#880000~1~0~#880000~gge335575~0~","W~5085 -2495 5085 -2510~#008800~1~0~none~gge335578~0","W~5085 -2465 5085 -2450~#008800~1~0~none~gge335581~0","W~5085 -2510 5005 -2510~#008800~1~0~none~gge335587~0","F~part_netLabel_gnD~5085~-2510~180~gge335590~~0^^5085~-2510^^GND~#000000~5070.8359375~-2530.203125~0~start~1~Times New Roman~9pt~flag_gge64^^PL~5085 -2520 5085 -2510~#000000~1~0~transparent~gge335602~0^^PL~5094 -2520 5076 -2520~#000000~1~0~transparent~gge335605~0^^PL~5091 -2522 5079 -2522~#000000~1~0~transparent~gge335608~0^^PL~5088 -2524 5082 -2524~#000000~1~0~transparent~gge335611~0^^PL~5086 -2526 5084 -2526~#000000~1~0~transparent~gge335614~0","W~5130 -2450 5005 -2450~#008800~1~0~none~gge335617~0","LIB~5150~-2450~package`SMA_L4.4-W2.8-LS5.4-R-RD`BOM_Supplier`LCSC`BOM_Manufacturer Part`SS54`BOM_Manufacturer`MDD`BOM_Supplier Part`C22452`BOM_JLCPCB Part Class`Basic Part`spicePre`D`spiceSymbolName`SS54_C22452`~~0~ggec9abf9ed454c42a2~281331a006ef4c05b8ec457a626c4c60~73c5169ab63734333858011ac37dd7f9~0~~yes~yes~~~#@$T~N~5133.4375~-2460~0~#000080~Arial~~~~~comment~SS54_C22452~1~start~gge335626~0~#@$T~P~5134.47~-2466.7871875~0~#000080~Arial~~~~~comment~PSU_D1~1~start~gge335632~0~#@$P~show~0~1~5170~-2450~0~gge335638~0^^5170~-2450^^M 5170 -2450 h -15~#880000^^0~5152~-2447~0~A~end~~~#0000FF^^0~5161~-2451~0~1~start~~~#0000FF^^0~5158~-2450^^0~M 5155 -2453 L 5152 -2450 L 5155 -2447#@$P~show~0~2~5130~-2450~180~gge335659~0^^5130~-2450^^M 5130 -2450 h 15~#880000^^0~5148~-2447~0~K~start~~~#0000FF^^0~5139~-2451~0~2~end~~~#0000FF^^0~5142~-2450^^0~M 5145 -2447 L 5148 -2450 L 5145 -2453#@$PL~5142 -2456 5142 -2457 5144 -2457 5144 -2442 5146 -2442 5146 -2443~#880000~1~0~none~gge335680~0#@$PT~M 5155 -2456 L 5145 -2450 L 5155 -2443 Z ~#880000~1~0~#880000~gge335683~0~","W~4895 -2545 4895 -2470~#008800~1~0~none~gge335686~0","W~4895 -2490 4895 -2510~#008800~1~0~none~gge335689~0","W~4895 -2490 4895 -2470 4895 -2450~#008800~1~0~none~gge335692~0","F~part_netLabel_gnD~4895~-2545~180~gge335695~~0^^4895~-2545^^GND~#000000~4880.8359375~-2565.203125~0~start~1~Times New Roman~9pt~flag_gge67^^PL~4895 -2555 4895 -2545~#000000~1~0~transparent~gge335707~0^^PL~4904 -2555 4886 -2555~#000000~1~0~transparent~gge335710~0^^PL~4901 -2557 4889 -2557~#000000~1~0~transparent~gge335713~0^^PL~4898 -2559 4892 -2559~#000000~1~0~transparent~gge335716~0^^PL~4896 -2561 4894 -2561~#000000~1~0~transparent~gge335719~0","LIB~4950~-2480~package`SOIC-8_L5.0-W4.0-P1.27-LS6.0-BL`BOM_Supplier`LCSC`BOM_Manufacturer`XLSEMI`BOM_Manufacturer Part`XL1509-5.0E1`BOM_Supplier Part`C61063`BOM_JLCPCB Part Class`Basic Part`spicePre`U`spiceSymbolName`XL1509-5.0E1`~180~0~gge9a0b354258b0a1dd~71450838f2174409b429143f6acc9d2a~463941ffc70c4e26a7431a56b07f8a2a~0~~yes~yes~~~#@$T~N~4933.4375~-2533~0~#000080~Arial~~~~~comment~XL1509-5.0E1~1~start~gge335728~0~#@$T~P~4933.4453125~-2543.7109375~0~#000080~Arial~~~~~comment~PSU_U1~1~start~gge335734~0~#@$P~show~0~1~5005~-2450~0~gge335740~0^^5005~-2450^^M 5005 -2450 h -20~#880000^^1~4983~-2447~0~VIN~end~~~#0000FF^^1~4990~-2451~0~1~start~~~#0000FF^^0~4988~-2450^^0~M 4985 -2453 L 4982 -2450 L 4985 -2447#@$P~show~0~2~5005~-2470~0~gge335761~0^^5005~-2470^^M 5005 -2470 h -20~#880000^^1~4983~-2467~0~OUTPUT~end~~~#0000FF^^1~4990~-2471~0~2~start~~~#0000FF^^0~4988~-2470^^0~M 4985 -2473 L 4982 -2470 L 4985 -2467#@$P~show~0~3~5005~-2490~0~gge335782~0^^5005~-2490^^M 5005 -2490 h -20~#880000^^1~4983~-2487~0~FB~end~~~#0000FF^^1~4990~-2491~0~3~start~~~#0000FF^^0~4988~-2490^^0~M 4985 -2493 L 4982 -2490 L 4985 -2487#@$P~show~0~4~5005~-2510~0~gge335803~0^^5005~-2510^^M 5005 -2510 h -20~#880000^^1~4983~-2507~0~ON\/OFF~end~~~#0000FF^^1~4990~-2511~0~4~start~~~#0000FF^^0~4988~-2510^^0~M 4985 -2513 L 4982 -2510 L 4985 -2507#@$P~show~0~5~4895~-2510~180~gge335824~0^^4895~-2510^^M 4895 -2510 h 20~#880000^^1~4917~-2507~0~GND~start~~~#0000FF^^1~4910~-2511~0~5~end~~~#0000FF^^0~4912~-2510^^0~M 4915 -2507 L 4918 -2510 L 4915 -2513#@$P~show~0~6~4895~-2490~180~gge335845~0^^4895~-2490^^M 4895 -2490 h 20~#880000^^1~4917~-2487~0~GND~start~~~#0000FF^^1~4910~-2491~0~6~end~~~#0000FF^^0~4912~-2490^^0~M 4915 -2487 L 4918 -2490 L 4915 -2493#@$P~show~0~7~4895~-2470~180~gge335866~0^^4895~-2470^^M 4895 -2470 h 20~#880000^^1~4917~-2467~0~GND~start~~~#0000FF^^1~4910~-2471~0~7~end~~~#0000FF^^0~4912~-2470^^0~M 4915 -2467 L 4918 -2470 L 4915 -2473#@$P~show~0~8~4895~-2450~180~gge335887~0^^4895~-2450^^M 4895 -2450 h 20~#880000^^1~4917~-2447~0~GND~start~~~#0000FF^^1~4910~-2451~0~8~end~~~#0000FF^^0~4912~-2450^^0~M 4915 -2447 L 4918 -2450 L 4915 -2453#@$R~4915~-2530~~~70~100~#000000~1~0~none~gge335908~0~","W~4785 -2460 4745 -2460~#008800~1~0~none~gge335911~0","F~part_netLabel_+5V~5170~-2390~180~par1~~0^^5170~-2390^^+12V~#000000~5159.23~-2368.97~0~start~1~Times New Roman~9pt~flag_gge70^^PL~5170 -2380 5170 -2390~#000000~1~0~transparent~gge335926~0^^PL~5175 -2380 5165 -2380~#000000~1~0~transparent~gge335929~0","LIB~3930~-1870~package`ESP32 DEVKITC V4 38PINS`BOM_Manufacturer`Espressif`BOM_Manufacturer Part`ESP32-DevKitC-32D`BOM_Supplier`Mouser`BOM_Supplier Part`356-ESP32-DEVKITC32D`link`https:\/\/esp-idf.readthedocs.io\/en\/latest\/get-started\/get-started-devkitc.html?highlight=devkitc`Contributor`\u0421\u0435\u0440\u0433\u0435\u0439 \u0422\u0440\u0435\u043f\u0443\u0437`spicePre`U`spiceSymbolName`ESP32D DEVKITC V4 38PINS`~~0~gge4139414e19567ccd~4b1ac445c04c4ae5910d74fea4eb2a37~47e8baefe23a4c9195a33776bdaea6a8~0~~yes~none~e983a1028e6441da9bcf143f217bc4f5~1643636004~587e3bdf66324985a40d025906d6e5b8#@$T~N~3989.03~-1883~0~#000080~Arial~~~~~comment~ESP32D DEVKITC V4 38PINS~0~start~gge350646~0~#@$T~P~3989.03~-1891.96~0~#000080~Arial~~~~~comment~U3~0~start~gge350652~0~#@$R~3945~-1880~2~2~100~199~#800000~1~0~#FFFFEE~gge350658~0~#@$P~show~0~1~3930~-1870~180~gge350661~0^^3930~-1870^^M 3930 -1870 h 15~#000000^^1~3948.7~-1868~0~+3.3V~start~Arial~4pt~#FF0000^^1~3941.5~-1871~0~1~end~Arial~4pt~#000066^^0~3942~-1870^^0~M 3945 -1867 L 3948 -1870 L 3945 -1873#@$P~show~0~2~3930~-1860~180~gge350682~0^^3930~-1860^^M 3930 -1860 h 15~#000000^^1~3948.7~-1857~0~EN~start~Arial~4pt~#000066^^1~3941.5~-1861~0~2~end~Arial~4pt~#000066^^0~3942~-1860^^0~M 3945 -1857 L 3948 -1860 L 3945 -1863#@$P~show~0~3~3930~-1850~180~gge350703~0^^3930~-1850^^M 3930 -1850 h 15~#000000^^1~3948.7~-1847~0~GPIO36~start~Arial~4pt~#00CC00^^1~3941.5~-1851~0~3~end~Arial~4pt~#000066^^0~3942~-1850^^0~M 3945 -1847 L 3948 -1850 L 3945 -1853#@$P~show~0~4~3930~-1840~180~gge350724~0^^3930~-1840^^M 3930 -1840 h 15~#000000^^1~3947.7~-1837~0~GPIO39~start~Arial~4pt~#00CC00^^1~3941.5~-1841~0~4~end~Arial~4pt~#000066^^0~3942~-1840^^0~M 3945 -1837 L 3948 -1840 L 3945 -1843#@$P~show~0~5~3930~-1830~180~gge350745~0^^3930~-1830^^M 3930 -1830 h 15~#000000^^1~3947.7~-1827~0~GPIO34~start~Arial~4pt~#00CC00^^1~3941.5~-1831~0~5~end~Arial~4pt~#000066^^0~3942~-1830^^0~M 3945 -1827 L 3948 -1830 L 3945 -1833#@$P~show~0~6~3930~-1820~180~gge350766~0^^3930~-1820^^M 3930 -1820 h 15~#000000^^1~3947.7~-1817~0~GPIO35~start~Arial~4pt~#00CC00^^1~3941.5~-1821~0~6~end~Arial~4pt~#000066^^0~3942~-1820^^0~M 3945 -1817 L 3948 -1820 L 3945 -1823#@$P~show~0~7~3930~-1810~180~gge350787~0^^3930~-1810^^M 3930 -1810 h 15~#000000^^1~3947.7~-1807~0~GPIO32~start~Arial~4pt~#FF33CC^^1~3941.5~-1811~0~7~end~Arial~4pt~#000066^^0~3942~-1810^^0~M 3945 -1807 L 3948 -1810 L 3945 -1813#@$P~show~0~8~3930~-1800~180~gge350808~0^^3930~-1800^^M 3930 -1800 h 15~#000000^^1~3947.7~-1797~0~GPIO33~start~Arial~4pt~#FF33CC^^1~3941.5~-1801~0~8~end~Arial~4pt~#000066^^0~3942~-1800^^0~M 3945 -1797 L 3948 -1800 L 3945 -1803#@$P~show~0~9~3930~-1790~180~gge350829~0^^3930~-1790^^M 3930 -1790 h 15~#000000^^1~3947.7~-1787~0~GPIO25~start~Arial~4pt~#000066^^1~3941.5~-1791~0~9~end~Arial~4pt~#000066^^0~3942~-1790^^0~M 3945 -1787 L 3948 -1790 L 3945 -1793#@$P~show~0~10~3930~-1780~180~gge350850~0^^3930~-1780^^M 3930 -1780 h 15~#000000^^1~3948.7~-1777~0~GPIO26~start~Arial~4pt~#000066^^1~3941.5~-1781~0~10~end~Arial~4pt~#000066^^0~3942~-1780^^0~M 3945 -1777 L 3948 -1780 L 3945 -1783#@$P~show~0~11~3930~-1770~180~gge350871~0^^3930~-1770^^M 3930 -1770 h 15~#000000^^1~3948.7~-1767~0~GPIO27~start~Arial~4pt~#FF33CC^^1~3941.5~-1771~0~11~end~Arial~4pt~#000066^^0~3942~-1770^^0~M 3945 -1767 L 3948 -1770 L 3945 -1773#@$P~show~0~12~3930~-1760~180~gge350892~0^^3930~-1760^^M 3930 -1760 h 15~#000000^^1~3948.7~-1757~0~GPIO14~start~Arial~4pt~#FF33CC^^1~3941.5~-1761~0~12~end~Arial~4pt~#000066^^0~3942~-1760^^0~M 3945 -1757 L 3948 -1760 L 3945 -1763#@$P~show~0~13~3930~-1750~180~gge350913~0^^3930~-1750^^M 3930 -1750 h 15~#000000^^1~3948.7~-1747~0~GPIO12~start~Arial~4pt~#FF33CC^^1~3941.5~-1751~0~13~end~Arial~4pt~#000066^^0~3942~-1750^^0~M 3945 -1747 L 3948 -1750 L 3945 -1753#@$P~show~0~14~3930~-1740~180~gge350934~0^^3930~-1740^^M 3930 -1740 h 15~#000000^^1~3948.7~-1737~0~GND~start~Arial~4pt~#00CCFF^^1~3941.5~-1741~0~14~end~Arial~4pt~#000066^^0~3942~-1740^^0~M 3945 -1737 L 3948 -1740 L 3945 -1743#@$P~show~0~15~3930~-1730~180~gge350955~0^^3930~-1730^^M 3930 -1730 h 15~#000000^^1~3948.7~-1727~0~GPIO13~start~Arial~4pt~#FF33CC^^1~3941.5~-1731~0~15~end~Arial~4pt~#000066^^0~3942~-1730^^0~M 3945 -1727 L 3948 -1730 L 3945 -1733#@$P~show~0~16~3930~-1720~180~gge350976~0^^3930~-1720^^M 3930 -1720 h 15~#000000^^1~3948.7~-1717~0~GPIO9~start~Arial~4pt~#0000CC^^1~3941.5~-1721~0~16~end~Arial~4pt~#000066^^0~3942~-1720^^0~M 3945 -1717 L 3948 -1720 L 3945 -1723#@$P~show~0~17~3930~-1710~180~gge350997~0^^3930~-1710^^M 3930 -1710 h 15~#000000^^1~3948.7~-1708~0~GPIO10~start~Arial~4pt~#0000FF^^1~3941.5~-1711~0~17~end~Arial~4pt~#000066^^0~3942~-1710^^0~M 3945 -1707 L 3948 -1710 L 3945 -1713#@$P~show~0~18~3930~-1700~180~gge351018~0^^3930~-1700^^M 3930 -1700 h 15~#000000^^1~3948.7~-1697~0~GPIO11~start~Arial~4pt~#0000FF^^1~3941.5~-1701~0~18~end~Arial~4pt~#000066^^0~3942~-1700^^0~M 3945 -1697 L 3948 -1700 L 3945 -1703#@$P~show~0~19~3930~-1690~180~gge351039~0^^3930~-1690^^M 3930 -1690 h 15~#000000^^1~3948.7~-1687~0~VIN \/ 5V~start~Arial~4pt~#FF0000^^1~3941.5~-1691~0~19~end~Arial~4pt~#000066^^0~3942~-1690^^0~M 3945 -1687 L 3948 -1690 L 3945 -1693#@$P~show~0~20~4060~-1690~0~gge351060~0^^4060~-1690^^M 4060 -1690 h -15~#000000^^1~4041.3~-1687~0~GPIO6~end~Arial~4pt~#0000FF^^1~4048.5~-1691~0~20~start~Arial~4pt~#000066^^0~4048~-1690^^0~M 4045 -1693 L 4042 -1690 L 4045 -1687#@$P~show~0~21~4060~-1700~0~gge351081~0^^4060~-1700^^M 4060 -1700 h -15~#000000^^1~4041.3~-1697~0~GPIO7~end~Arial~4pt~#0000FF^^1~4048.5~-1701~0~21~start~Arial~4pt~#000066^^0~4048~-1700^^0~M 4045 -1703 L 4042 -1700 L 4045 -1697#@$P~show~0~22~4060~-1710~0~gge351102~0^^4060~-1710^^M 4060 -1710 h -15~#000000^^1~4041.3~-1707~0~GPIO8~end~Arial~4pt~#0000FF^^1~4048.5~-1711~0~22~start~Arial~4pt~#000066^^0~4048~-1710^^0~M 4045 -1713 L 4042 -1710 L 4045 -1707#@$P~show~0~23~4060~-1720~0~gge351123~0^^4060~-1720^^M 4060 -1720 h -15~#000000^^1~4042.3~-1717~0~GPIO15~end~Arial~4pt~#FF33CC^^1~4048.5~-1721~0~23~start~Arial~4pt~#000066^^0~4048~-1720^^0~M 4045 -1723 L 4042 -1720 L 4045 -1717#@$P~show~0~24~4060~-1730~0~gge351144~0^^4060~-1730^^M 4060 -1730 h -15~#000000^^1~4042.3~-1727~0~GPIO2~end~Arial~4pt~#FF33CC^^1~4048.5~-1731~0~24~start~Arial~4pt~#000066^^0~4048~-1730^^0~M 4045 -1733 L 4042 -1730 L 4045 -1727#@$P~show~0~25~4060~-1740~0~gge351165~0^^4060~-1740^^M 4060 -1740 h -15~#000000^^1~4042.3~-1737~0~GPIO0~end~Arial~4pt~#FF33CC^^1~4048.5~-1741~0~25~start~Arial~4pt~#000066^^0~4048~-1740^^0~M 4045 -1743 L 4042 -1740 L 4045 -1737#@$P~show~0~26~4060~-1750~0~gge351186~0^^4060~-1750^^M 4060 -1750 h -15~#000000^^1~4042.3~-1747~0~GPIO4~end~Arial~4pt~#FF33CC^^1~4048.5~-1751~0~26~start~Arial~4pt~#000066^^0~4048~-1750^^0~M 4045 -1753 L 4042 -1750 L 4045 -1747#@$P~show~0~27~4060~-1760~0~gge351207~0^^4060~-1760^^M 4060 -1760 h -15~#000000^^1~4041.3~-1757~0~CANRX\/GPIO16~end~Arial~4pt~#000066^^1~4048.5~-1761~0~27~start~Arial~4pt~#000066^^0~4048~-1760^^0~M 4045 -1763 L 4042 -1760 L 4045 -1757#@$P~show~0~28~4060~-1770~0~gge351228~0^^4060~-1770^^M 4060 -1770 h -15~#000000^^1~4041.3~-1767~0~CANTX\/GPIO17~end~Arial~4pt~#000066^^1~4048.5~-1771~0~28~start~Arial~4pt~#000066^^0~4048~-1770^^0~M 4045 -1773 L 4042 -1770 L 4045 -1767#@$P~show~0~29~4060~-1780~0~gge351249~0^^4060~-1780^^M 4060 -1780 h -15~#000000^^1~4041.3~-1777~0~SS\/GPIO5~end~Arial~4pt~#000066^^1~4048.5~-1781~0~29~start~Arial~4pt~#000066^^0~4048~-1780^^0~M 4045 -1783 L 4042 -1780 L 4045 -1777#@$P~show~0~30~4060~-1790~0~gge351270~0^^4060~-1790^^M 4060 -1790 h -15~#000000^^1~4041.3~-1787~0~SCK\/GPIO18~end~Arial~4pt~#000066^^1~4048.5~-1791~0~30~start~Arial~4pt~#000066^^0~4048~-1790^^0~M 4045 -1793 L 4042 -1790 L 4045 -1787#@$P~show~0~31~4060~-1800~0~gge351291~0^^4060~-1800^^M 4060 -1800 h -15~#000000^^1~4041.3~-1797~0~MISO\/GPIO19~end~Arial~4pt~#000066^^1~4048.5~-1801~0~31~start~Arial~4pt~#000066^^0~4048~-1800^^0~M 4045 -1803 L 4042 -1800 L 4045 -1797#@$P~show~0~32~4060~-1810~0~gge351312~0^^4060~-1810^^M 4060 -1810 h -15~#000000^^1~4041.3~-1807~0~GND~end~Arial~4pt~#00CCFF^^1~4048.5~-1811~0~32~start~Arial~4pt~#000066^^0~4048~-1810^^0~M 4045 -1813 L 4042 -1810 L 4045 -1807#@$P~show~0~33~4060~-1820~0~gge351333~0^^4060~-1820^^M 4060 -1820 h -15~#000000^^1~4041.3~-1817~0~SDA\/GPIO21~end~Arial~4pt~#000066^^1~4048.5~-1821~0~33~start~Arial~4pt~#000066^^0~4048~-1820^^0~M 4045 -1823 L 4042 -1820 L 4045 -1817#@$P~show~0~34~4060~-1830~0~gge351354~0^^4060~-1830^^M 4060 -1830 h -15~#000000^^1~4041.3~-1827~0~GPIO3 \/ RXD0~end~Arial~4pt~#000066^^1~4048.5~-1831~0~34~start~Arial~4pt~#000066^^0~4048~-1830^^0~M 4045 -1833 L 4042 -1830 L 4045 -1827#@$P~show~0~35~4060~-1840~0~gge351375~0^^4060~-1840^^M 4060 -1840 h -15~#000000^^1~4041.3~-1837~0~GPIO1 \/ TXD0~end~Arial~4pt~#000066^^1~4048.5~-1841~0~35~start~Arial~4pt~#000066^^0~4048~-1840^^0~M 4045 -1843 L 4042 -1840 L 4045 -1837#@$P~show~0~36~4060~-1850~0~gge351396~0^^4060~-1850^^M 4060 -1850 h -15~#000000^^1~4042.3~-1847~0~SCL\/GPIO22~end~Arial~4pt~#000066^^1~4048.5~-1851~0~36~start~Arial~4pt~#000066^^0~4048~-1850^^0~M 4045 -1853 L 4042 -1850 L 4045 -1847#@$P~show~0~37~4060~-1860~0~gge351417~0^^4060~-1860^^M 4060 -1860 h -15~#000000^^1~4042.3~-1857~0~MOSI\/GPIO23~end~Arial~4pt~#000066^^1~4048.5~-1861~0~37~start~Arial~4pt~#000066^^0~4048~-1860^^0~M 4045 -1863 L 4042 -1860 L 4045 -1857#@$P~show~0~38~4060~-1870~0~gge351438~0^^4060~-1870^^M 4060 -1870 h -15~#000000^^1~4041.3~-1867~0~GND~end~Arial~4pt~#00CCFF^^1~4048.5~-1871~0~38~start~Arial~4pt~#000066^^0~4048~-1870^^0~M 4045 -1873 L 4042 -1870 L 4045 -1867#@$T~L~3976.87~-1823.23~270~#0000FF~~4pt~~~~comment~Input Only~1~start~gge351459~0~pinpart#@$R~3945~-1855~~~25~40~#000000~1~0~none~gge351465~0~#@$T~L~4009.05~-1737.14~0~#0000FF~~4pt~~~~comment~(STR)~1~start~gge351468~0~pinpart#@$T~L~4009.05~-1747.14~0~#0000FF~~4pt~~~~comment~(STR)~1~start~gge351474~0~pinpart#@$T~L~4009.05~-1727.14~0~#0000FF~~4pt~~~~comment~(STR)~1~start~gge351480~0~pinpart#@$T~L~3969.05~-1747.14~0~#0000FF~~4pt~~~~comment~(STR)~1~start~gge351486~0~pinpart#@$T~L~4009.05~-1717.14~0~#0000FF~~4pt~~~~comment~(STR)~1~start~gge351492~0~pinpart#@$T~L~3969.05~-1697.14~0~#0000FF~~4pt~~~~comment~(SPI Flash)~1~start~gge351498~0~pinpart#@$T~L~3969.05~-1707.14~0~#0000FF~~4pt~~~~comment~(SPI Flash)~1~start~gge351504~0~pinpart#@$T~L~3969.05~-1717.14~0~#0000FF~~4pt~~~~comment~(SPI Flash)~1~start~gge351510~0~pinpart#@$T~L~3999.05~-1687.14~0~#0000FF~~4pt~~~~comment~(SPI Flash)~1~start~gge351516~0~pinpart#@$T~L~3999.05~-1697.14~0~#0000FF~~4pt~~~~comment~(SPI Flash)~1~start~gge351522~0~pinpart#@$T~L~3999.05~-1706.14~0~#0000FF~~4pt~~~~comment~(SPI Flash)~1~start~gge351528~0~pinpart#@$T~L~3968.05~-1757.14~0~#0000FF~~4pt~~~~comment~(PWM@Boot)~1~start~gge351534~0~pinpart#@$T~L~4009.05~-1713.14~0~#0000FF~~4pt~~~~comment~(PWM@Boot)~1~start~gge351540~0~pinpart#@$T~L~3997~-1827~0~#0000FF~~4pt~~~~comment~(Hi)~1~start~gge351546~0~pinpart#@$T~L~3989~-1837~0~#0000FF~~4pt~~~~comment~(Debug)~1~start~gge351552~0~pinpart#@$T~L~3992~-1737~0~#0000FF~~4pt~~~~comment~(PWM)~1~start~gge351558~0~pinpart","F~part_netLabel_netPort~4065~-1860~180~gge351567~~0^^4065~-1860^^SPI_MOSI~#0000FF~4087~-1856.47~0~start~1~Times New Roman~8pt~flag_gge73^^PL~4065 -1860 4070 -1865 4085 -1865 4085 -1855 4070 -1855 4065 -1860~#0000FF~1~0~transparent~gge351579~0","F~part_netLabel_netPort~4065~-1800~180~gge351657~~0^^4065~-1800^^SPI_MISO~#0000FF~4087~-1796.47~0~start~1~Times New Roman~8pt~flag_gge76^^PL~4065 -1800 4070 -1805 4085 -1805 4085 -1795 4070 -1795 4065 -1800~#0000FF~1~0~transparent~gge351669~0","F~part_netLabel_netPort~4065~-1790~180~gge351675~~0^^4065~-1790^^SPI_SCK~#0000FF~4086.91~-1786.47~0~start~1~Times New Roman~8pt~flag_gge79^^PL~4065 -1790 4070 -1795 4085 -1795 4085 -1785 4070 -1785 4065 -1790~#0000FF~1~0~transparent~gge351687~0","F~part_netLabel_netPort~4065~-1780~180~gge351693~~0^^4065~-1780^^SPI_CS~#0000FF~4087~-1776.54~0~start~1~Times New Roman~8pt~flag_gge82^^PL~4065 -1780 4070 -1785 4085 -1785 4085 -1775 4070 -1775 4065 -1780~#0000FF~1~0~transparent~gge351705~0","F~part_netLabel_netPort~4065~-1770~180~gge351711~~0^^4065~-1770^^CanTX~#0000FF~4087~-1766.47~0~start~1~Times New Roman~8pt~flag_gge85^^PL~4065 -1770 4070 -1775 4085 -1775 4085 -1765 4070 -1765 4065 -1770~#0000FF~1~0~transparent~gge351723~0","F~part_netLabel_netPort~4065~-1760~180~gge351729~~0^^4065~-1760^^CanRX~#0000FF~4087~-1756.47~0~start~1~Times New Roman~8pt~flag_gge88^^PL~4065 -1760 4070 -1765 4085 -1765 4085 -1755 4070 -1755 4065 -1760~#0000FF~1~0~transparent~gge351741~0","O~4060~-1750~gge351762~M 4056 -1754 L 4064 -1746 M 4064 -1754 L 4056 -1746~#33cc33~0","O~4060~-1740~gge351768~M 4056 -1744 L 4064 -1736 M 4064 -1744 L 4056 -1736~#33cc33~0","O~4060~-1730~gge351774~M 4056 -1734 L 4064 -1726 M 4064 -1734 L 4056 -1726~#33cc33~0","O~4060~-1690~gge351780~M 4056 -1694 L 4064 -1686 M 4064 -1694 L 4056 -1686~#33cc33~0","O~4060~-1700~gge351786~M 4056 -1704 L 4064 -1696 M 4064 -1704 L 4056 -1696~#33cc33~0","O~4060~-1710~gge351792~M 4056 -1714 L 4064 -1706 M 4064 -1714 L 4056 -1706~#33cc33~0","F~part_netLabel_netPort~3925~-1830~0~gge351849~~0^^3925~-1830^^IN1~#0000FF~3903~-1826.38~0~end~1~Times New Roman~8pt~flag_gge91^^PL~3925 -1830 3920 -1825 3905 -1825 3905 -1835 3920 -1835 3925 -1830~#0000FF~1~0~transparent~gge351861~0","F~part_netLabel_netPort~3925~-1820~0~gge351864~~0^^3925~-1820^^IN2~#0000FF~3903~-1816.38~0~end~1~Times New Roman~8pt~flag_gge94^^PL~3925 -1820 3920 -1815 3905 -1815 3905 -1825 3920 -1825 3925 -1820~#0000FF~1~0~transparent~gge351876~0","W~3925 -1850 3930 -1850~#008800~1~0~none~gge351879~0","W~3925 -1840 3930 -1840~#008800~1~0~none~gge351882~0","W~3925 -1830 3930 -1830~#008800~1~0~none~gge351885~0","W~3925 -1820 3930 -1820~#008800~1~0~none~gge351888~0","W~4060 -1770 4065 -1770~#008800~1~0~none~gge351897~0","W~4060 -1780 4065 -1780~#008800~1~0~none~gge351900~0","W~4060 -1790 4065 -1790~#008800~1~0~none~gge351903~0","W~4060 -1800 4065 -1800~#008800~1~0~none~gge351906~0","W~4060 -1820 4065 -1820~#008800~1~0~none~gge351909~0","W~4060 -1830 4065 -1830~#008800~1~0~none~gge351912~0","W~4060 -1840 4065 -1840~#008800~1~0~none~gge351915~0","W~4060 -1850 4065 -1850~#008800~1~0~none~gge351918~0","W~4060 -1860 4065 -1860~#008800~1~0~none~gge351921~0","F~part_netLabel_netPort~3925~-1800~0~gge351942~~0^^3925~-1800^^OUT_CONTACTORS~#0000FF~3903~-1796.4~0~end~1~Times New Roman~8pt~flag_gge97^^PL~3925 -1800 3920 -1795 3905 -1795 3905 -1805 3920 -1805 3925 -1800~#0000FF~1~0~transparent~gge351954~0","W~3925 -1810 3930 -1810~#008800~1~0~none~gge351972~0","W~3925 -1800 3930 -1800~#008800~1~0~none~gge351975~0","W~3925 -1790 3930 -1790~#008800~1~0~none~gge351978~0","W~3925 -1780 3930 -1780~#008800~1~0~none~gge351999~0","F~part_netLabel_netPort~3925~-1770~0~gge352005~~0^^3925~-1770^^SPI_INT~#0000FF~3903~-1766.47~0~end~1~Times New Roman~8pt~flag_gge100^^PL~3925 -1770 3920 -1765 3905 -1765 3905 -1775 3920 -1775 3925 -1770~#0000FF~1~0~transparent~gge352017~0","W~3925 -1770 3930 -1770~#008800~1~0~none~gge352020~0","W~3925 -1760 3930 -1760~#008800~1~0~none~gge352041~0","W~3925 -1750 3930 -1750~#008800~1~0~none~gge352062~0","O~3930~-1720~gge352086~M 3926 -1724 L 3934 -1716 M 3934 -1724 L 3926 -1716~#33cc33~0","O~3930~-1710~gge352092~M 3926 -1714 L 3934 -1706 M 3934 -1714 L 3926 -1706~#33cc33~0","O~3930~-1700~gge352098~M 3926 -1704 L 3934 -1696 M 3934 -1704 L 3926 -1696~#33cc33~0","F~part_netLabel_gnD~3860~-1740~270~gge352110~~0^^3860~-1740^^GND~#000000~3817.5~-1736.02~0~start~1~Times New Roman~9pt~flag_gge103^^PL~3850 -1740 3860 -1740~#000000~1~0~transparent~gge352122~0^^PL~3850 -1749 3850 -1731~#000000~1~0~transparent~gge352125~0^^PL~3848 -1746 3848 -1734~#000000~1~0~transparent~gge352128~0^^PL~3846 -1743 3846 -1737~#000000~1~0~transparent~gge352131~0^^PL~3844 -1741 3844 -1739~#000000~1~0~transparent~gge352134~0","F~part_netLabel_gnD~4060~-1870~180~gge352137~~0^^4060~-1870^^GND~#000000~4047~-1889.5~0~start~1~Times New Roman~9pt~flag_gge106^^PL~4060 -1880 4060 -1870~#000000~1~0~transparent~gge352149~0^^PL~4069 -1880 4051 -1880~#000000~1~0~transparent~gge352152~0^^PL~4066 -1882 4054 -1882~#000000~1~0~transparent~gge352155~0^^PL~4063 -1884 4057 -1884~#000000~1~0~transparent~gge352158~0^^PL~4061 -1886 4059 -1886~#000000~1~0~transparent~gge352161~0","W~3860 -1740 3930 -1740~#008800~1~0~none~gge352191~0","F~part_netLabel_gnD~4140~-1810~90~gge352212~~0^^4140~-1810^^GND~#000000~4156.5~-1805.95~0~start~1~Times New Roman~9pt~flag_gge109^^PL~4150 -1810 4140 -1810~#000000~1~0~transparent~gge352224~0^^PL~4150 -1801 4150 -1819~#000000~1~0~transparent~gge352227~0^^PL~4152 -1804 4152 -1816~#000000~1~0~transparent~gge352230~0^^PL~4154 -1807 4154 -1813~#000000~1~0~transparent~gge352233~0^^PL~4156 -1809 4156 -1811~#000000~1~0~transparent~gge352236~0","W~4140 -1810 4060 -1810~#008800~1~0~none~gge352266~0","W~3925 -1860 3930 -1860~#008800~1~0~none~gge352379~0","LIB~4745~-2480~package`CAP-SMD_BD6.3-L6.6-W6.6-LS7.2-R-RD`BOM_Supplier`LCSC`BOM_Manufacturer`LELON`BOM_Manufacturer Part`VE-471M0JTR-0607`nameAlias`Capacitance`Contributor`LCSC`BOM_Supplier Part`C134738`BOM_JLCPCB Part Class`Extended Part`spicePre`C`spiceSymbolName`VE-471M0JTR-0607`~180~0~gge61ba1518df76ce78~e1fd29b57d5e4b95a31cad5a0b7220fb~48f922a461e347949cc4b629afd125e5~0~~yes~yes~97aa1218d06c459ab9bc854bae0641b8~1661910042~77b26740edd54e35b7be31e24d8db3a9#@$T~N~4757~-2467.75~0~#000080~Arial~~~~~comment~470uF~1~start~gge356414~0~#@$T~P~4757~-2476.75~0~#000080~Arial~~~~~comment~PSU_C2~1~start~gge356420~0~#@$P~show~0~1~4745~-2460~90~gge356426~0^^4745~-2460^^M 4745 -2460 v -17~#8D2323^^0~4748~-2480~270~1~start~~~#8D2323^^0~4744~-2471~270~1~end~~~#8D2323^^0~4745~-2480^^0~M 4742 -2477 L 4745 -2474 L 4748 -2477#@$P~show~0~2~4745~-2500~270~gge356447~0^^4745~-2500^^M 4745 -2500 v 19~#8D2323^^0~4748~-2478~270~2~end~~~#8D2323^^0~4744~-2487~270~2~start~~~#8D2323^^0~4745~-2478^^0~M 4748 -2481 L 4745 -2484 L 4742 -2481#@$PL~4755 -2477 4735 -2477~#8D2323~1~0~none~gge356468~0#@$A~M 4745 -2481 A 16.0836 16.0836 0 0 1 4735 -2484~~#8D2323~1~0~none~gge356471~0#@$A~M 4755 -2484 A 16.2917 16.2917 0 0 1 4745 -2481~~#8D2323~1~0~none~gge356474~0#@$R~4751~-2474.1~~~4~0.1~#8D2323~1~0~#8D2323~gge356477~0~#@$R~4752.9~-2476~~~0.1~4~#8D2323~1~0~#8D2323~gge356480~0~","LIB~5085~-2480~package`CAP-SMD_BD10.0-L10.3-W10.3-LS11.0-R-RD`BOM_Supplier`LCSC`BOM_Manufacturer`LELON`BOM_Manufacturer Part`VEJ471M1ETR-1010`nameAlias`Capacitance`Contributor`LCSC`BOM_Supplier Part`C176672`BOM_JLCPCB Part Class`Extended Part`spicePre`C`spiceSymbolName`VEJ471M1ETR-1010`~180~0~gge8284cbe61a77172f~90b2120a99344232ac80777fea2a6df1~c892761025c741f4a429014423d6baa5~0~~yes~yes~3520e08717334fc4a75a6bf227685e04~1661910053~394b6b63ee95447482f8d0ec2f7ebc55#@$T~N~5097~-2467.75~0~#000080~Arial~~~~~comment~470uF~1~start~gge356593~0~#@$T~P~5097~-2476.75~0~#000080~Arial~~~~~comment~PSU_C1~1~start~gge356599~0~#@$P~show~0~1~5085~-2460~90~gge356605~0^^5085~-2460^^M 5085 -2460 v -17~#8D2323^^0~5088~-2480~270~1~start~~~#8D2323^^0~5084~-2471~270~1~end~~~#8D2323^^0~5085~-2480^^0~M 5082 -2477 L 5085 -2474 L 5088 -2477#@$P~show~0~2~5085~-2500~270~gge356626~0^^5085~-2500^^M 5085 -2500 v 19~#8D2323^^0~5088~-2478~270~2~end~~~#8D2323^^0~5084~-2487~270~2~start~~~#8D2323^^0~5085~-2478^^0~M 5088 -2481 L 5085 -2484 L 5082 -2481#@$PL~5095 -2477 5075 -2477~#8D2323~1~0~none~gge356647~0#@$A~M 5085 -2481 A 16.0836 16.0836 0 0 1 5075 -2484~~#8D2323~1~0~none~gge356650~0#@$A~M 5095 -2484 A 16.2917 16.2917 0 0 1 5085 -2481~~#8D2323~1~0~none~gge356653~0#@$R~5091~-2474.1~~~4~0.1~#8D2323~1~0~#8D2323~gge356656~0~#@$R~5092.9~-2476~~~0.1~4~#8D2323~1~0~#8D2323~gge356659~0~","T~L~4405~-2565~0~#0000FF~~9pt~~~~comment~Contactor Relay~1~start~gge360712~0~pinpart","F~part_netLabel_netPort~4385~-2500~0~gge360721~~0^^4385~-2500^^OUT2~#0000FF~4334.27~-2496.25~0~start~1~Times New Roman~8pt~flag_gge112^^PL~4385 -2500 4380 -2495 4365 -2495 4365 -2505 4380 -2505 4385 -2500~#0000FF~1~0~transparent~gge360733~0","W~4500 -2510 4520 -2510 4520 -2540~#008800~1~0~none~gge360754~0","F~part_netLabel_netPort~4520~-2540~180~gge360760~~0^^4520~-2540^^OUT_CONTACTORS~#0000FF~4542~-2536.6~0~start~1~Times New Roman~8pt~flag_gge115^^PL~4520 -2540 4525 -2545 4540 -2545 4540 -2535 4525 -2535 4520 -2540~#0000FF~1~0~transparent~gge360772~0","W~4525 -2490 4500 -2490~#008800~1~0~none~gge360805~0","F~part_netLabel_gnD~4525~-2490~90~gge360835~~0^^4525~-2490^^GND~#000000~4541.5~-2485.875~0~start~1~Times New Roman~9pt~flag_gge118^^PL~4535 -2490 4525 -2490~#000000~1~0~transparent~gge360847~0^^PL~4535 -2481 4535 -2499~#000000~1~0~transparent~gge360850~0^^PL~4537 -2484 4537 -2496~#000000~1~0~transparent~gge360853~0^^PL~4539 -2487 4539 -2493~#000000~1~0~transparent~gge360856~0^^PL~4541 -2489 4541 -2491~#000000~1~0~transparent~gge360859~0","LIB~4430~-2500~package`SOT-223-3_L6.5-W3.4-P2.30-LS7.0-BR`BOM_Supplier`LCSC`BOM_Manufacturer`ON`BOM_Manufacturer Part`NCV8402ASTT1G`BOM_Supplier Part`C77755`BOM_JLCPCB Part Class`Extended Part`spicePre`U`spiceSymbolName`NCV8402ASTT1G`~~0~gge92a8cb75ad320d74~02ae667aca734971be8a5f58143dd564~cd906c7c2c704265ba9df7f33ce0987f~0~~yes~yes~cde8fe395e52457a9db315495cb987c0~1571380086~2f84d1299d984340b0892d9664b73427#@$T~N~4439.03125~-2523.5~0~#000080~Arial~~~~~comment~NCV8402ASTT1G~1~start~gge360868~0~#@$T~P~4439.03125~-2532.5~0~#000080~Arial~~~~~comment~U5~1~start~gge360874~0~#@$R~4410~-2520~1~1~70~40~#880000~1~0~NONE~gge360880~0~#@$P~show~0~4~4390~-2500~180~gge360883~0^^4390~-2500^^M 4390 -2500 h 20~#880000^^1~4413~-2497~0~DRAIN~start~~~#0000FF^^1~4404~-2501~0~4~end~~~#0000FF^^0~4407~-2500^^0~M 4410 -2497 L 4413 -2500 L 4410 -2503#@$P~show~0~3~4500~-2490~0~gge360904~0^^4500~-2490^^M 4500 -2490 h -20~#880000^^1~4477~-2487~0~SOURCE~end~~~#0000FF^^1~4486~-2491~0~3~start~~~#0000FF^^0~4483~-2490^^0~M 4480 -2493 L 4477 -2490 L 4480 -2487#@$P~show~0~1~4500~-2510~0~gge360925~0^^4500~-2510^^M 4500 -2510 h -20~#880000^^1~4477~-2507~0~GATE~end~~~#0000FF^^1~4486~-2511~0~1~start~~~#0000FF^^0~4483~-2510^^0~M 4480 -2513 L 4477 -2510 L 4480 -2507#@$P~show~0~2~4500~-2500~0~gge360946~0^^4500~-2500^^M 4500 -2500 h -20~#880000^^1~4477~-2497~0~DRAIN~end~~~#0000FF^^1~4486~-2501~0~2~start~~~#0000FF^^0~4483~-2500^^0~M 4480 -2503 L 4477 -2500 L 4480 -2497","LIB~4390~-1840~package`SMD-4_L4.6-W6.5-P2.54-LS10.2-TL`BOM_Supplier`LCSC`BOM_Manufacturer`SHARP`BOM_Manufacturer Part`PC817X2CSP9F`BOM_Supplier Part`C66405`BOM_JLCPCB Part Class`Extended Part`spicePre`U`spiceSymbolName`PC817X2CSP9F`~~0~gge9839a592feca33c9~e706e9f3ee874e6cb3b5586c317927b4~9dc176859b54ff0130284495e49d53bb~0~~yes~yes~465ef9ed62d043c88e132315b1fbdb7f~1641817940~1d0c60321020462b98fc00a92ccffac8#@$T~N~4384.04~-1861.14~0~#000080~Arial~~~~~comment~PC817X2CSP9F~1~start~gge361085~0~#@$T~P~4384.04~-1870.29~0~#000080~Arial~~~~~comment~OPTO1~1~start~gge361091~0~#@$R~4365~-1857~2~2~50~34~#880000~1~0~none~gge361097~0~#@$P~show~0~1~4345~-1850~180~gge361100~0^^4345~-1850^^M 4345 -1850 h 20~#880000^^0~4367~-1847~0~1~start~~5.5pt~#0000FF^^1~4360~-1851~0~1~end~~5.5pt~#0000FF^^0~4362~-1850^^0~M 4365 -1847 L 4368 -1850 L 4365 -1853#@$P~show~0~2~4345~-1830~180~gge361121~0^^4345~-1830^^M 4345 -1830 h 20~#880000^^0~4367~-1827~0~2~start~~5.5pt~#0000FF^^1~4360~-1831~0~2~end~~5.5pt~#0000FF^^0~4362~-1830^^0~M 4365 -1827 L 4368 -1830 L 4365 -1833#@$P~show~0~3~4435~-1830~0~gge361142~0^^4435~-1830^^M 4435 -1830 h -20~#880000^^0~4413~-1827~0~3~end~~5.5pt~#0000FF^^1~4420~-1831~0~3~start~~5.5pt~#0000FF^^0~4418~-1830^^0~M 4415 -1833 L 4412 -1830 L 4415 -1827#@$P~show~0~4~4435~-1850~0~gge361163~0^^4435~-1850^^M 4435 -1850 h -20~#880000^^0~4413~-1847~0~4~end~~5.5pt~#0000FF^^1~4420~-1851~0~4~start~~5.5pt~#0000FF^^0~4418~-1850^^0~M 4415 -1853 L 4412 -1850 L 4415 -1847#@$PL~4415 -1850 4405 -1843~#880000~1~0~none~gge361184~0#@$PL~4405 -1837 4415 -1830~#880000~1~0~none~gge361187~0#@$PL~4405 -1849 4405 -1831~#880000~1~0~none~gge361190~0#@$PG~4415 -1830 4412 -1835 4409 -1831~#880000~1~0~#880000~gge361193~0#@$PT~M 4393 -1832 L 4391 -1836 L 4389 -1834 Z ~#880000~1~0~#880000~gge361196~0~#@$PT~M 4396 -1836 L 4394 -1840 L 4392 -1838 Z ~#880000~1~0~#880000~gge361199~0~#@$PL~4386 -1839 4393 -1832~#880000~1~0~none~gge361202~0#@$PL~4389 -1843 4396 -1836~#880000~1~0~none~gge361205~0#@$PL~4386 -1835 4370 -1835~#880000~1~0~none~gge361208~0#@$PT~M 4372 -1845 L 4378 -1835 L 4385 -1845 Z ~#880000~1~0~#880000~gge361211~0~#@$PL~4365 -1850 4378 -1850 4378 -1830 4365 -1830~#880000~1~0~none~gge361214~0","LIB~4490~-2360~package`SMD-4_L4.6-W6.5-P2.54-LS10.2-TL`BOM_Supplier`LCSC`BOM_Manufacturer`SHARP`BOM_Manufacturer Part`PC817X2CSP9F`BOM_Supplier Part`C66405`BOM_JLCPCB Part Class`Extended Part`spicePre`U`spiceSymbolName`PC817X2CSP9F`~~0~ggec93cc5e886043b2e~e706e9f3ee874e6cb3b5586c317927b4~9dc176859b54ff0130284495e49d53bb~0~~yes~yes~465ef9ed62d043c88e132315b1fbdb7f~1641817940~1d0c60321020462b98fc00a92ccffac8#@$T~N~4484.04~-2381.14~0~#000080~Arial~~~~~comment~PC817X2CSP9F~1~start~gge361367~0~#@$T~P~4484.04~-2390.29~0~#000080~Arial~~~~~comment~OPTO3~1~start~gge361373~0~#@$R~4465~-2377~2~2~50~34~#880000~1~0~none~gge361379~0~#@$P~show~0~1~4445~-2370~180~gge361382~0^^4445~-2370^^M 4445 -2370 h 20~#880000^^0~4467~-2367~0~1~start~~5.5pt~#0000FF^^1~4460~-2371~0~1~end~~5.5pt~#0000FF^^0~4462~-2370^^0~M 4465 -2367 L 4468 -2370 L 4465 -2373#@$P~show~0~2~4445~-2350~180~gge361403~0^^4445~-2350^^M 4445 -2350 h 20~#880000^^0~4467~-2347~0~2~start~~5.5pt~#0000FF^^1~4460~-2351~0~2~end~~5.5pt~#0000FF^^0~4462~-2350^^0~M 4465 -2347 L 4468 -2350 L 4465 -2353#@$P~show~0~3~4535~-2350~0~gge361424~0^^4535~-2350^^M 4535 -2350 h -20~#880000^^0~4513~-2347~0~3~end~~5.5pt~#0000FF^^1~4520~-2351~0~3~start~~5.5pt~#0000FF^^0~4518~-2350^^0~M 4515 -2353 L 4512 -2350 L 4515 -2347#@$P~show~0~4~4535~-2370~0~gge361445~0^^4535~-2370^^M 4535 -2370 h -20~#880000^^0~4513~-2367~0~4~end~~5.5pt~#0000FF^^1~4520~-2371~0~4~start~~5.5pt~#0000FF^^0~4518~-2370^^0~M 4515 -2373 L 4512 -2370 L 4515 -2367#@$PL~4515 -2370 4505 -2363~#880000~1~0~none~gge361466~0#@$PL~4505 -2357 4515 -2350~#880000~1~0~none~gge361469~0#@$PL~4505 -2369 4505 -2351~#880000~1~0~none~gge361472~0#@$PG~4515 -2350 4512 -2355 4509 -2351~#880000~1~0~#880000~gge361475~0#@$PT~M 4493 -2352 L 4491 -2356 L 4489 -2354 Z ~#880000~1~0~#880000~gge361478~0~#@$PT~M 4496 -2356 L 4494 -2360 L 4492 -2358 Z ~#880000~1~0~#880000~gge361481~0~#@$PL~4486 -2359 4493 -2352~#880000~1~0~none~gge361484~0#@$PL~4489 -2363 4496 -2356~#880000~1~0~none~gge361487~0#@$PL~4486 -2355 4470 -2355~#880000~1~0~none~gge361490~0#@$PT~M 4472 -2365 L 4478 -2355 L 4485 -2365 Z ~#880000~1~0~#880000~gge361493~0~#@$PL~4465 -2370 4478 -2370 4478 -2350 4465 -2350~#880000~1~0~none~gge361496~0","F~part_netLabel_netPort~4275~-1920~0~gge361514~~0^^4275~-1920^^START1~#0000FF~4253~-1916.5~0~end~1~Times New Roman~8pt~flag_gge121^^PL~4275 -1920 4270 -1915 4255 -1915 4255 -1925 4270 -1925 4275 -1920~#0000FF~1~0~transparent~gge361526~0","W~4275 -1920 4345 -1920~#008800~1~0~none~gge361832~0","W~4345 -1880 4345 -1850 4345 -1850~#008800~1~0~none~gge361835~0","F~part_netLabel_gnD~4320~-1830~270~gge361838~~0^^4320~-1830^^GND~#000000~4277.5~-1825.83~0~start~1~Times New Roman~9pt~flag_gge124^^PL~4310 -1830 4320 -1830~#000000~1~0~transparent~gge361850~0^^PL~4310 -1839 4310 -1821~#000000~1~0~transparent~gge361853~0^^PL~4308 -1836 4308 -1824~#000000~1~0~transparent~gge361856~0^^PL~4306 -1833 4306 -1827~#000000~1~0~transparent~gge361859~0^^PL~4304 -1831 4304 -1829~#000000~1~0~transparent~gge361862~0","W~4320 -1830 4345 -1830~#008800~1~0~none~gge361895~0","LIB~4345~-1900~package`R0805`BOM_Supplier`LCSC`BOM_Manufacturer`UNI-ROYAL(\u539a\u58f0)`BOM_Manufacturer Part`0805W8F5600T5E`nameAlias`Resistance`BOM_Supplier Part`C28636`Resistance (Ohms)`560`BOM_JLCPCB Part Class`Basic Part`spicePre`R`spiceSymbolName`0805W8F5600T5E`~90~0~ggeaf62492a490cdd04~b60f399a7a7e41848b2be1eb49c79141~39efe64afe47a5fa9ef2169e5b0f97cc~0~~yes~yes~9cec4b423a8a437595c048b756d635ad~1666381199~768fa0f21e504cd5922bacdf10149564#@$T~N~4351~-1887.79~0~#000080~Arial~~~~~comment~560\u03a9~1~start~gge362018~0~#@$T~P~4351~-1896.88~0~#000080~Arial~~~~~comment~R1~1~start~gge362024~0~#@$P~show~1~2~4345~-1920~90~gge362030~0^^4345~-1920^^M 4345 -1920 v 10~#000000^^0~4348~-1905~270~2~end~~~#000000^^0~4344~-1915~270~2~start~~~#000000^^0~4345~-1913^^0~M 4342 -1910 L 4345 -1907 L 4348 -1910#@$P~show~1~1~4345~-1880~270~gge362051~0^^4345~-1880^^M 4345 -1880 v -10~#000000^^0~4348~-1895~270~1~start~~~#000000^^0~4344~-1885~270~1~end~~~#000000^^0~4345~-1887^^0~M 4348 -1890 L 4345 -1893 L 4342 -1890#@$R~4341~-1910~~~8~20~#880000~1~0~none~gge362072~0~","F~part_netLabel_netPort~4275~-1745~0~gge362141~~0^^4275~-1745^^START1~#0000FF~4253~-1741.499~0~end~1~Times New Roman~8pt~flag_gge127^^PL~4275 -1745 4270 -1740 4255 -1740 4255 -1750 4270 -1750 4275 -1745~#0000FF~1~0~transparent~gge362153~0","LIB~4290~-1715~package`R0805`BOM_Supplier`LCSC`BOM_Manufacturer`UNI-ROYAL(\u539a\u58f0)`BOM_Manufacturer Part`0805W8F5600T5E`nameAlias`Resistance`BOM_Supplier Part`C28636`Resistance (Ohms)`560`BOM_JLCPCB Part Class`Basic Part`spicePre`R`spiceSymbolName`0805W8F5600T5E`~90~0~gge6464813ed059779a~b60f399a7a7e41848b2be1eb49c79141~39efe64afe47a5fa9ef2169e5b0f97cc~0~~yes~yes~9cec4b423a8a437595c048b756d635ad~1666381199~768fa0f21e504cd5922bacdf10149564#@$T~N~4296~-1702.79~0~#000080~Arial~~~~~comment~560\u03a9~1~start~gge362165~0~#@$T~P~4296~-1711.88~0~#000080~Arial~~~~~comment~R2~1~start~gge362171~0~#@$P~show~1~2~4290~-1735~90~gge362177~0^^4290~-1735^^M 4290 -1735 v 10~#000000^^0~4293~-1720~270~2~end~~~#000000^^0~4289~-1730~270~2~start~~~#000000^^0~4290~-1728^^0~M 4287 -1725 L 4290 -1722 L 4293 -1725#@$P~show~1~1~4290~-1695~270~gge362198~0^^4290~-1695^^M 4290 -1695 v -10~#000000^^0~4293~-1710~270~1~start~~~#000000^^0~4289~-1700~270~1~end~~~#000000^^0~4290~-1702^^0~M 4293 -1705 L 4290 -1708 L 4287 -1705#@$R~4286~-1725~~~8~20~#880000~1~0~none~gge362219~0~","W~4275 -1745 4290 -1745 4290 -1735~#008800~1~0~none~gge362231~0","LIB~4330~-1845~package`C0805`BOM_Supplier`LCSC`BOM_Manufacturer Part`CL21B105KBFNNNE`BOM_Manufacturer`SAMSUNG`nameAlias`Capacitance`BOM_Supplier Part`C28323`BOM_JLCPCB Part Class`Basic Part`spicePre`C`spiceSymbolName`CL21B105KBFNNNE`~270~0~gge3c9801289a2d6f14~2ee8eb13a0124a108e622ce40c0c25a8~e11771cc556d68362545db4859eeb82e~0~~yes~yes~df80deae19454d47b2053058e4d69f62~1551665362~35c0dc1c2d2e43ae8bac7a702751658e#@$T~N~4340~-1832.75~0~#000080~Arial~~~~~comment~1uF~1~start~gge362267~0~#@$T~P~4314.03~-1851.75~0~#000080~Arial~~~~~comment~C1~1~start~gge362273~0~#@$PL~4338 -1847 4322 -1847~#880000~1~0~none~gge362279~0#@$PL~4338 -1843 4322 -1843~#880000~1~0~none~gge362282~0#@$P~show~1~1~4330~-1860~90~gge362285~0^^4330~-1860^^M 4330 -1860 v 10~#000000^^0~4333~-1845~270~1~end~~~#000000^^0~4329~-1855~270~1~start~~~#000000^^0~4330~-1853^^0~M 4327 -1850 L 4330 -1847 L 4333 -1850#@$P~show~1~2~4330~-1830~270~gge362306~0^^4330~-1830^^M 4330 -1830 v -10~#000000^^0~4333~-1845~270~2~start~~~#000000^^0~4329~-1835~270~2~end~~~#000000^^0~4330~-1837^^0~M 4333 -1840 L 4330 -1843 L 4327 -1840#@$PL~4330 -1850 4330 -1847~#880000~1~0~none~gge362327~0#@$PL~4330 -1843 4330 -1840~#880000~1~0~none~gge362330~0","LIB~4325~-1715~package`C0805`BOM_Supplier`LCSC`BOM_Manufacturer Part`CL21B105KBFNNNE`BOM_Manufacturer`SAMSUNG`nameAlias`Capacitance`BOM_Supplier Part`C28323`BOM_JLCPCB Part Class`Basic Part`spicePre`C`spiceSymbolName`CL21B105KBFNNNE`~270~0~ggef4db7c919ecb45d5~2ee8eb13a0124a108e622ce40c0c25a8~e11771cc556d68362545db4859eeb82e~0~~yes~yes~df80deae19454d47b2053058e4d69f62~1551665362~35c0dc1c2d2e43ae8bac7a702751658e#@$T~N~4335~-1702.75~0~#000080~Arial~~~~~comment~1uF~1~start~gge362349~0~#@$T~P~4335~-1711.75~0~#000080~Arial~~~~~comment~C2~1~start~gge362355~0~#@$PL~4333 -1717 4317 -1717~#880000~1~0~none~gge362361~0#@$PL~4333 -1713 4317 -1713~#880000~1~0~none~gge362364~0#@$P~show~1~1~4325~-1730~90~gge362367~0^^4325~-1730^^M 4325 -1730 v 10~#000000^^0~4328~-1715~270~1~end~~~#000000^^0~4324~-1725~270~1~start~~~#000000^^0~4325~-1723^^0~M 4322 -1720 L 4325 -1717 L 4328 -1720#@$P~show~1~2~4325~-1700~270~gge362388~0^^4325~-1700^^M 4325 -1700 v -10~#000000^^0~4328~-1715~270~2~start~~~#000000^^0~4324~-1705~270~2~end~~~#000000^^0~4325~-1707^^0~M 4328 -1710 L 4325 -1713 L 4322 -1710#@$PL~4325 -1720 4325 -1717~#880000~1~0~none~gge362409~0#@$PL~4325 -1713 4325 -1710~#880000~1~0~none~gge362412~0","F~part_netLabel_gnD~4440~-1815~0~gge362420~~0^^4440~-1815^^GND~#000000~4427~-1787.83~0~start~1~Times New Roman~9pt~flag_gge130^^PL~4440 -1805 4440 -1815~#000000~1~0~transparent~gge362432~0^^PL~4431 -1805 4449 -1805~#000000~1~0~transparent~gge362435~0^^PL~4434 -1803 4446 -1803~#000000~1~0~transparent~gge362438~0^^PL~4437 -1801 4443 -1801~#000000~1~0~transparent~gge362441~0^^PL~4439 -1799 4441 -1799~#000000~1~0~transparent~gge362444~0","W~4435 -1830 4440 -1830 4440 -1815~#008800~1~0~none~gge362480~0","F~part_netLabel_netPort~4490~-1850~180~gge362483~~0^^4490~-1850^^IN1~#0000FF~4512~-1846.54~0~start~1~Times New Roman~8pt~flag_gge133^^PL~4490 -1850 4495 -1855 4510 -1855 4510 -1845 4495 -1845 4490 -1850~#0000FF~1~0~transparent~gge362495~0","F~part_netLabel_netPort~4500~-1680~180~gge362498~~0^^4500~-1680^^IN2~#0000FF~4522~-1676.54~0~start~1~Times New Roman~8pt~flag_gge136^^PL~4500 -1680 4505 -1685 4520 -1685 4520 -1675 4505 -1675 4500 -1680~#0000FF~1~0~transparent~gge362510~0","W~4435 -1850 4490 -1850~#008800~1~0~none~gge362531~0","O~3925~-1750~gge362543~M 3921 -1754 L 3929 -1746 M 3929 -1754 L 3921 -1746~#33cc33~0","O~3930~-1730~gge362555~M 3926 -1734 L 3934 -1726 M 3934 -1734 L 3926 -1726~#33cc33~0","O~3925~-1760~gge362561~M 3921 -1764 L 3929 -1756 M 3929 -1764 L 3921 -1756~#33cc33~0","O~3925~-1860~gge362591~M 3921 -1864 L 3929 -1856 M 3929 -1864 L 3921 -1856~#33cc33~0","O~4060~-1720~gge362621~M 4056 -1724 L 4064 -1716 M 4064 -1724 L 4056 -1716~#33cc33~0","LIB~4470~-1880~package`R0805`BOM_Supplier`LCSC`BOM_Manufacturer`UNI-ROYAL(\u539a\u58f0)`BOM_Manufacturer Part`0805W8F1001T5E`nameAlias`Resistance`BOM_Supplier Part`C17513`Resistance (Ohms)`1K`BOM_JLCPCB Part Class`Basic Part`spicePre`R`spiceSymbolName`0805W8F1001T5E`~90~0~gge83d4f4ccb5fabb62~b60f399a7a7e41848b2be1eb49c79141~8aebd62994a05a89b2fc1c520ce2e64f~0~~yes~yes~c3344d799cc2416c9e76e5911d5f1f48~1667507007~768fa0f21e504cd5922bacdf10149564#@$T~N~4476~-1867.79~0~#000080~Arial~~~~~comment~1k\u03a9~1~start~gge362633~0~#@$T~P~4476~-1876.88~0~#000080~Arial~~~~~comment~R3~1~start~gge362639~0~#@$P~show~1~2~4470~-1900~90~gge362645~0^^4470~-1900^^M 4470 -1900 v 10~#000000^^0~4473~-1885~270~2~end~~~#000000^^0~4469~-1895~270~2~start~~~#000000^^0~4470~-1893^^0~M 4467 -1890 L 4470 -1887 L 4473 -1890#@$P~show~1~1~4470~-1860~270~gge362666~0^^4470~-1860^^M 4470 -1860 v -10~#000000^^0~4473~-1875~270~1~start~~~#000000^^0~4469~-1865~270~1~end~~~#000000^^0~4470~-1867^^0~M 4473 -1870 L 4470 -1873 L 4467 -1870#@$R~4466~-1890~~~8~20~#880000~1~0~none~gge362687~0~","LIB~4485~-1715~package`R0805`BOM_Supplier`LCSC`BOM_Manufacturer`UNI-ROYAL(\u539a\u58f0)`BOM_Manufacturer Part`0805W8F1001T5E`nameAlias`Resistance`BOM_Supplier Part`C17513`Resistance (Ohms)`1K`BOM_JLCPCB Part Class`Basic Part`spicePre`R`spiceSymbolName`0805W8F1001T5E`~90~0~gge3f270052d818fd6a~b60f399a7a7e41848b2be1eb49c79141~8aebd62994a05a89b2fc1c520ce2e64f~0~~yes~yes~c3344d799cc2416c9e76e5911d5f1f48~1667507007~768fa0f21e504cd5922bacdf10149564#@$T~N~4491~-1702.79~0~#000080~Arial~~~~~comment~1k\u03a9~1~start~gge362696~0~#@$T~P~4491~-1711.88~0~#000080~Arial~~~~~comment~R4~1~start~gge362702~0~#@$P~show~1~2~4485~-1735~90~gge362708~0^^4485~-1735^^M 4485 -1735 v 10~#000000^^0~4488~-1720~270~2~end~~~#000000^^0~4484~-1730~270~2~start~~~#000000^^0~4485~-1728^^0~M 4482 -1725 L 4485 -1722 L 4488 -1725#@$P~show~1~1~4485~-1695~270~gge362729~0^^4485~-1695^^M 4485 -1695 v -10~#000000^^0~4488~-1710~270~1~start~~~#000000^^0~4484~-1700~270~1~end~~~#000000^^0~4485~-1702^^0~M 4488 -1705 L 4485 -1708 L 4482 -1705#@$R~4481~-1725~~~8~20~#880000~1~0~none~gge362750~0~","W~4500 -1680 4485 -1680 4485 -1695~#008800~1~0~none~gge362816~0","W~4470 -1860 4470 -1850~#008800~1~0~none~gge362820~0","F~part_netLabel_+5V~4470~-1915~0~gge362830~~0^^4470~-1915^^+3.3V~#000000~4460~-1927~0~start~1~Times New Roman~9pt~flag_gge139^^PL~4470 -1925 4470 -1915~#000000~1~0~transparent~gge362842~0^^PL~4465 -1925 4475 -1925~#000000~1~0~transparent~gge362845~0","F~part_netLabel_+5V~4485~-1740~0~gge362851~~0^^4485~-1740^^+3.3V~#000000~4475~-1752~0~start~1~Times New Roman~9pt~flag_gge142^^PL~4485 -1750 4485 -1740~#000000~1~0~transparent~gge362863~0^^PL~4480 -1750 4490 -1750~#000000~1~0~transparent~gge362866~0","W~4485 -1740 4485 -1735~#008800~1~0~none~gge362869~0","F~part_netLabel_gnD~4445~-2330~0~gge362881~~0^^4445~-2330^^GND~#000000~4432~-2302.83~0~start~1~Times New Roman~9pt~flag_gge145^^PL~4445 -2320 4445 -2330~#000000~1~0~transparent~gge362893~0^^PL~4436 -2320 4454 -2320~#000000~1~0~transparent~gge362896~0^^PL~4439 -2318 4451 -2318~#000000~1~0~transparent~gge362899~0^^PL~4442 -2316 4448 -2316~#000000~1~0~transparent~gge362902~0^^PL~4444 -2314 4446 -2314~#000000~1~0~transparent~gge362905~0","W~4445 -2350 4445 -2330~#008800~1~0~none~gge362908~0","LIB~4425~-2370~package`R0805`BOM_Supplier`LCSC`BOM_Manufacturer`UNI-ROYAL(\u539a\u58f0)`BOM_Manufacturer Part`0805W8F1000T5E`nameAlias`Resistance`BOM_Supplier Part`C17408`Resistance (Ohms)`100`BOM_JLCPCB Part Class`Basic Part`spicePre`R`spiceSymbolName`0805W8F1000T5E`~~0~gge0aeeefe9c8546927~b60f399a7a7e41848b2be1eb49c79141~7cae9ab7891e48f11e47d23718393c41~0~~yes~yes~f631737c3d42420f8e4d4434d61238a3~1666640571~768fa0f21e504cd5922bacdf10149564#@$T~N~4419.03~-2377~0~#000080~Arial~~~~~comment~100\u03a9~1~start~gge362911~0~#@$T~P~4419.03~-2386~0~#000080~Arial~~~~~comment~R5~1~start~gge362917~0~#@$P~show~1~2~4445~-2370~0~gge362923~0^^4445~-2370^^M 4445 -2370 h -10~#000000^^0~4430~-2367~0~2~end~~~#000000^^0~4440~-2371~0~2~start~~~#000000^^0~4438~-2370^^0~M 4435 -2373 L 4432 -2370 L 4435 -2367#@$P~show~1~1~4405~-2370~180~gge362944~0^^4405~-2370^^M 4405 -2370 h 10~#000000^^0~4420~-2367~0~1~start~~~#000000^^0~4410~-2371~0~1~end~~~#000000^^0~4412~-2370^^0~M 4415 -2367 L 4418 -2370 L 4415 -2373#@$R~4415~-2374~~~20~8~#880000~1~0~none~gge362965~0~","F~part_netLabel_netPort~4360~-2370~90~gge363034~~0^^4360~-2370^^OUT_CHARGE_EN~#0000FF~4363.6~-2257.37~270~~1~Times New Roman~8pt~flag_gge148^^PL~4360 -2370 4365 -2365 4365 -2350 4355 -2350 4355 -2365 4360 -2370~#0000FF~1~0~transparent~gge363046~0","W~4360 -2370 4405 -2370~#008800~1~0~none~gge363049~0","F~part_netLabel_netPort~3925~-1810~0~gge363055~~0^^3925~-1810^^OUT_CHARGE_EN~#0000FF~3903~-1806.4~0~end~1~Times New Roman~8pt~flag_gge151^^PL~3925 -1810 3920 -1805 3905 -1805 3905 -1815 3920 -1815 3925 -1810~#0000FF~1~0~transparent~gge363067~0","F~part_netLabel_gnD~4535~-2335~0~gge363073~~0^^4535~-2335^^GND~#000000~4522~-2307.83~0~start~1~Times New Roman~9pt~flag_gge154^^PL~4535 -2325 4535 -2335~#000000~1~0~transparent~gge363085~0^^PL~4526 -2325 4544 -2325~#000000~1~0~transparent~gge363088~0^^PL~4529 -2323 4541 -2323~#000000~1~0~transparent~gge363091~0^^PL~4532 -2321 4538 -2321~#000000~1~0~transparent~gge363094~0^^PL~4534 -2319 4536 -2319~#000000~1~0~transparent~gge363097~0","W~4535 -2350 4535 -2335~#008800~1~0~none~gge363100~0","LIB~4565~-2370~package`R0805`BOM_Supplier`LCSC`BOM_Manufacturer`UNI-ROYAL(\u539a\u58f0)`BOM_Manufacturer Part`0805W8F2000T5E`nameAlias`Resistance`BOM_Supplier Part`C17540`Resistance (Ohms)`200`BOM_JLCPCB Part Class`Basic Part`spicePre`R`spiceSymbolName`0805W8F2000T5E`~~0~gge0d90fd6291f02125~b60f399a7a7e41848b2be1eb49c79141~4fde0f3445171488ec1c0ce303929fd9~0~~yes~yes~a70e5f890c5740f6aea4eeddadbac988~1666816046~768fa0f21e504cd5922bacdf10149564#@$T~N~4559.03~-2377~0~#000080~Arial~~~~~comment~200\u03a9~1~start~gge363103~0~#@$T~P~4559.03~-2386~0~#000080~Arial~~~~~comment~R6~1~start~gge363109~0~#@$P~show~1~2~4585~-2370~0~gge363115~0^^4585~-2370^^M 4585 -2370 h -10~#000000^^0~4570~-2367~0~2~end~~~#000000^^0~4580~-2371~0~2~start~~~#000000^^0~4578~-2370^^0~M 4575 -2373 L 4572 -2370 L 4575 -2367#@$P~show~1~1~4545~-2370~180~gge363136~0^^4545~-2370^^M 4545 -2370 h 10~#000000^^0~4560~-2367~0~1~start~~~#000000^^0~4550~-2371~0~1~end~~~#000000^^0~4552~-2370^^0~M 4555 -2367 L 4558 -2370 L 4555 -2373#@$R~4555~-2374~~~20~8~#880000~1~0~none~gge363157~0~","F~part_netLabel_netPort~4600~-2395~270~gge363226~~0^^4600~-2395^^OUT1~#0000FF~4603.47~-2416.99~270~start~1~Times New Roman~8pt~flag_gge157^^PL~4600 -2395 4595 -2400 4595 -2415 4605 -2415 4605 -2400 4600 -2395~#0000FF~1~0~transparent~gge363238~0","W~4585 -2370 4600 -2370 4600 -2395~#008800~1~0~none~gge363256~0","T~L~4435~-2420~0~#0000FF~~9pt~~~~comment~Charge Permission~1~start~gge363259~0~pinpart","W~4065 -1760 4060 -1760~#008800~1~0~none~gge363271~0","W~4225 -2485 4225 -2495~#008800~1~0~none~gge363484~0","W~4125 -2485 4125 -2495~#008800~1~0~none~gge363487~0","W~4125 -2540 4125 -2530~#008800~1~0~none~gge363490~0","W~4225 -2530 4225 -2540~#008800~1~0~none~gge363493~0","W~4125 -2295 4125 -2285~#008800~1~0~none~gge363532~0","W~4225 -2285 4225 -2295~#008800~1~0~none~gge363535~0","F~part_netLabel_gnD~4225~-2285~0~gge363538~~0^^4225~-2285^^GND~#000000~4212~-2259~0~start~1~Times New Roman~9pt~flag_gge160^^PL~4225 -2275 4225 -2285~#000000~1~0~transparent~gge363550~0^^PL~4216 -2275 4234 -2275~#000000~1~0~transparent~gge363553~0^^PL~4219 -2273 4231 -2273~#000000~1~0~transparent~gge363556~0^^PL~4222 -2271 4228 -2271~#000000~1~0~transparent~gge363559~0^^PL~4224 -2269 4226 -2269~#000000~1~0~transparent~gge363562~0","F~part_netLabel_+5V~4125~-2285~90~gge363565~~0^^4125~-2285^^+12V~#000000~4087.07~-2281.07~0~start~1~Times New Roman~9pt~flag_gge163^^PL~4115 -2285 4125 -2285~#000000~1~0~transparent~gge363577~0^^PL~4115 -2280 4115 -2290~#000000~1~0~transparent~gge363580~0","F~part_netLabel_netPort~4225~-2495~180~gge363607~~0^^4225~-2495^^Can1_L~#0000FF~4247~-2491.28~0~start~1~Times New Roman~8pt~flag_gge166^^PL~4225 -2495 4230 -2500 4245 -2500 4245 -2490 4230 -2490 4225 -2495~#0000FF~1~0~transparent~gge363619~0","F~part_netLabel_netPort~4125~-2495~0~gge363622~~0^^4125~-2495^^Can1_H~#0000FF~4103~-2491.367~0~end~1~Times New Roman~8pt~flag_gge169^^PL~4125 -2495 4120 -2490 4105 -2490 4105 -2500 4120 -2500 4125 -2495~#0000FF~1~0~transparent~gge363634~0","F~part_netLabel_netPort~4230~-2360~180~gge363667~~0^^4230~-2360^^START2~#0000FF~4252~-2356.26~0~~1~Times New Roman~8pt~flag_gge172^^PL~4230 -2360 4235 -2365 4250 -2365 4250 -2355 4235 -2355 4230 -2360~#0000FF~1~0~transparent~gge363679~0","F~part_netLabel_netPort~4120~-2360~0~gge363682~~0^^4120~-2360^^START1~#0000FF~4098~-2356.376~0~end~1~Times New Roman~8pt~flag_gge175^^PL~4120 -2360 4115 -2355 4100 -2355 4100 -2365 4115 -2365 4120 -2360~#0000FF~1~0~transparent~gge363694~0","F~part_netLabel_netPort~4225~-2540~180~gge363697~~0^^4225~-2540^^Can0_L~#0000FF~4247~-2536.63~0~start~1~Times New Roman~8pt~flag_gge178^^PL~4225 -2540 4230 -2545 4245 -2545 4245 -2535 4230 -2535 4225 -2540~#0000FF~1~0~transparent~gge363709~0","F~part_netLabel_netPort~4125~-2540~0~gge363712~~0^^4125~-2540^^Can0_H~#0000FF~4067.45~-2536.33~0~start~1~Times New Roman~8pt~flag_gge181^^PL~4125 -2540 4120 -2535 4105 -2535 4105 -2545 4120 -2545 4125 -2540~#0000FF~1~0~transparent~gge363724~0","W~4115 -2315 4115 -2305 4125 -2305~#008800~1~0~none~gge363727~0","F~part_netLabel_netPort~4115~-2315~0~gge363775~~0^^4115~-2315^^OUT1~#0000FF~4093~-2311.376~0~end~1~Times New Roman~8pt~flag_gge184^^PL~4115 -2315 4110 -2310 4095 -2310 4095 -2320 4110 -2320 4115 -2315~#0000FF~1~0~transparent~gge363787~0","O~4225~-2340~gge363790~M 4221 -2344 L 4229 -2336 M 4229 -2344 L 4221 -2336~#33cc33~0","O~4225~-2330~gge363796~M 4221 -2334 L 4229 -2326 M 4229 -2334 L 4221 -2326~#33cc33~0","W~4115 -2315 4125 -2315~#008800~1~0~none~gge363808~0","LIB~4175~-2410~package`MOLEX_5007620481`BOM_Manufacturer`Molex`BOM_Manufacturer Part`500762-0481`BOM_Supplier`Mouser`BOM_Supplier Part`538-500762-0481`link`https:\/\/co.mouser.com\/datasheet\/2\/276\/2\/5007620481_PCB_HEADERS-179151.pdf`Contributor`j.giraldo123`spicePre`J`spiceSymbolName`MOLEX 5007620481 COPY`~~0~ggee71eddd162280013~d6f4b42ec81d45ca8b3908ddd448275b~aee058a76a0e4ebf810ef7454885243e~0~~yes~none~~~#@$T~N~4131.4375~-2557~0~#000080~Arial~~~~~comment~MOLEX 5007620481~1~start~gge363817~0~#@$T~P~4140.078125~-2572~0~#000080~Arial~~~~~comment~EXT_CON1~1~start~gge363823~0~#@$R~4145~-2550~3~3~60~275~#880000~1~0~none~gge363829~0~#@$P~show~0~A1~4125~-2540~180~gge363832~0^^4125~-2540^^M 4125 -2540 h 20~#880000^^1~4147~-2537~0~A1~start~~5.5pt~#880000^^1~4140~-2541~0~A1~end~~5.5pt~#0000FF^^0~4142~-2540^^0~M 4145 -2537 L 4148 -2540 L 4145 -2543#@$P~show~0~2~4125~-2530~180~gge363853~0^^4125~-2530^^M 4125 -2530 h 20~#880000^^1~4147~-2527~0~A2~start~~5.5pt~#880000^^1~4140~-2531~0~A2~end~~5.5pt~#0000FF^^0~4142~-2530^^0~M 4145 -2527 L 4148 -2530 L 4145 -2533#@$P~show~0~3~4125~-2520~180~gge363874~0^^4125~-2520^^M 4125 -2520 h 20~#880000^^1~4147~-2517~0~A3~start~~5.5pt~#880000^^1~4140~-2521~0~A3~end~~5.5pt~#0000FF^^0~4142~-2520^^0~M 4145 -2517 L 4148 -2520 L 4145 -2523#@$P~show~0~4~4125~-2510~180~gge363895~0^^4125~-2510^^M 4125 -2510 h 20~#880000^^1~4147~-2507~0~A4~start~~5.5pt~#880000^^1~4140~-2511~0~A4~end~~5.5pt~#0000FF^^0~4142~-2510^^0~M 4145 -2507 L 4148 -2510 L 4145 -2513#@$P~show~0~B1~4225~-2540~0~gge363916~0^^4225~-2540^^M 4225 -2540 h -20~#880000^^1~4203~-2537~0~B1~end~~5.5pt~#880000^^1~4210~-2541~0~B1~start~~5.5pt~#0000FF^^0~4208~-2540^^0~M 4205 -2543 L 4202 -2540 L 4205 -2537#@$P~show~0~2~4225~-2530~0~gge363937~0^^4225~-2530^^M 4225 -2530 h -20~#880000^^1~4203~-2527~0~B2~end~~5.5pt~#880000^^1~4210~-2531~0~B2~start~~5.5pt~#0000FF^^0~4208~-2530^^0~M 4205 -2533 L 4202 -2530 L 4205 -2527#@$P~show~0~3~4225~-2520~0~gge363958~0^^4225~-2520^^M 4225 -2520 h -20~#880000^^1~4203~-2517~0~B3~end~~5.5pt~#880000^^1~4210~-2521~0~B3~start~~5.5pt~#0000FF^^0~4208~-2520^^0~M 4205 -2523 L 4202 -2520 L 4205 -2517#@$P~show~0~4~4225~-2510~0~gge363979~0^^4225~-2510^^M 4225 -2510 h -20~#880000^^1~4203~-2507~0~B4~end~~5.5pt~#880000^^1~4210~-2511~0~B4~start~~5.5pt~#0000FF^^0~4208~-2510^^0~M 4205 -2513 L 4202 -2510 L 4205 -2507#@$P~show~0~C1~4125~-2495~180~gge364000~0^^4125~-2495^^M 4125 -2495 h 20~#880000^^1~4147~-2492~0~C1~start~~5.5pt~#880000^^1~4140~-2496~0~C1~end~~5.5pt~#0000FF^^0~4142~-2495^^0~M 4145 -2492 L 4148 -2495 L 4145 -2498#@$P~show~0~2~4125~-2485~180~gge364021~0^^4125~-2485^^M 4125 -2485 h 20~#880000^^1~4147~-2482~0~C2~start~~5.5pt~#880000^^1~4140~-2486~0~C2~end~~5.5pt~#0000FF^^0~4142~-2485^^0~M 4145 -2482 L 4148 -2485 L 4145 -2488#@$P~show~0~3~4125~-2475~180~gge364042~0^^4125~-2475^^M 4125 -2475 h 20~#880000^^1~4147~-2472~0~C3~start~~5.5pt~#880000^^1~4140~-2476~0~C3~end~~5.5pt~#0000FF^^0~4142~-2475^^0~M 4145 -2472 L 4148 -2475 L 4145 -2478#@$P~show~0~4~4125~-2465~180~gge364063~0^^4125~-2465^^M 4125 -2465 h 20~#880000^^1~4147~-2462~0~C4~start~~5.5pt~#880000^^1~4140~-2466~0~C4~end~~5.5pt~#0000FF^^0~4142~-2465^^0~M 4145 -2462 L 4148 -2465 L 4145 -2468#@$P~show~0~D1~4225~-2495~0~gge364084~0^^4225~-2495^^M 4225 -2495 h -20~#880000^^1~4203~-2492~0~D1~end~~5.5pt~#880000^^1~4210~-2496~0~D1~start~~5.5pt~#0000FF^^0~4208~-2495^^0~M 4205 -2498 L 4202 -2495 L 4205 -2492#@$P~show~0~2~4225~-2485~0~gge364105~0^^4225~-2485^^M 4225 -2485 h -20~#880000^^1~4203~-2482~0~D2~end~~5.5pt~#880000^^1~4210~-2486~0~D2~start~~5.5pt~#0000FF^^0~4208~-2485^^0~M 4205 -2488 L 4202 -2485 L 4205 -2482#@$P~show~0~3~4225~-2475~0~gge364126~0^^4225~-2475^^M 4225 -2475 h -20~#880000^^1~4203~-2472~0~D3~end~~5.5pt~#880000^^1~4210~-2476~0~D3~start~~5.5pt~#0000FF^^0~4208~-2475^^0~M 4205 -2478 L 4202 -2475 L 4205 -2472#@$P~show~0~4~4225~-2465~0~gge364147~0^^4225~-2465^^M 4225 -2465 h -20~#880000^^1~4203~-2462~0~D4~end~~5.5pt~#880000^^1~4210~-2466~0~D4~start~~5.5pt~#0000FF^^0~4208~-2465^^0~M 4205 -2468 L 4202 -2465 L 4205 -2462#@$P~show~0~E1~4125~-2450~180~gge364168~0^^4125~-2450^^M 4125 -2450 h 20~#880000^^1~4147~-2447~0~E1~start~~5.5pt~#880000^^1~4140~-2451~0~E1~end~~5.5pt~#0000FF^^0~4142~-2450^^0~M 4145 -2447 L 4148 -2450 L 4145 -2453#@$P~show~0~2~4125~-2440~180~gge364189~0^^4125~-2440^^M 4125 -2440 h 20~#880000^^1~4147~-2437~0~E2~start~~5.5pt~#880000^^1~4140~-2441~0~E2~end~~5.5pt~#0000FF^^0~4142~-2440^^0~M 4145 -2437 L 4148 -2440 L 4145 -2443#@$P~show~0~3~4125~-2430~180~gge364210~0^^4125~-2430^^M 4125 -2430 h 20~#880000^^1~4147~-2427~0~E3~start~~5.5pt~#880000^^1~4140~-2431~0~E3~end~~5.5pt~#0000FF^^0~4142~-2430^^0~M 4145 -2427 L 4148 -2430 L 4145 -2433#@$P~show~0~4~4125~-2420~180~gge364231~0^^4125~-2420^^M 4125 -2420 h 20~#880000^^1~4147~-2417~0~E4~start~~5.5pt~#880000^^1~4140~-2421~0~E4~end~~5.5pt~#0000FF^^0~4142~-2420^^0~M 4145 -2417 L 4148 -2420 L 4145 -2423#@$P~show~0~F1~4225~-2450~0~gge364252~0^^4225~-2450^^M 4225 -2450 h -20~#880000^^1~4203~-2447~0~F1~end~~5.5pt~#880000^^1~4210~-2451~0~F1~start~~5.5pt~#0000FF^^0~4208~-2450^^0~M 4205 -2453 L 4202 -2450 L 4205 -2447#@$P~show~0~2~4225~-2440~0~gge364273~0^^4225~-2440^^M 4225 -2440 h -20~#880000^^1~4203~-2437~0~F2~end~~5.5pt~#880000^^1~4210~-2441~0~F2~start~~5.5pt~#0000FF^^0~4208~-2440^^0~M 4205 -2443 L 4202 -2440 L 4205 -2437#@$P~show~0~3~4225~-2430~0~gge364294~0^^4225~-2430^^M 4225 -2430 h -20~#880000^^1~4203~-2427~0~F3~end~~5.5pt~#880000^^1~4210~-2431~0~F3~start~~5.5pt~#0000FF^^0~4208~-2430^^0~M 4205 -2433 L 4202 -2430 L 4205 -2427#@$P~show~0~4~4225~-2420~0~gge364315~0^^4225~-2420^^M 4225 -2420 h -20~#880000^^1~4203~-2417~0~F4~end~~5.5pt~#880000^^1~4210~-2421~0~F4~start~~5.5pt~#0000FF^^0~4208~-2420^^0~M 4205 -2423 L 4202 -2420 L 4205 -2417#@$P~show~0~G1~4125~-2405~180~gge364336~0^^4125~-2405^^M 4125 -2405 h 20~#880000^^1~4147~-2402~0~G1~start~~5.5pt~#880000^^1~4140~-2406~0~G1~end~~5.5pt~#0000FF^^0~4142~-2405^^0~M 4145 -2402 L 4148 -2405 L 4145 -2408#@$P~show~0~2~4125~-2395~180~gge364357~0^^4125~-2395^^M 4125 -2395 h 20~#880000^^1~4147~-2392~0~G2~start~~5.5pt~#880000^^1~4140~-2396~0~G2~end~~5.5pt~#0000FF^^0~4142~-2395^^0~M 4145 -2392 L 4148 -2395 L 4145 -2398#@$P~show~0~3~4125~-2385~180~gge364378~0^^4125~-2385^^M 4125 -2385 h 20~#880000^^1~4147~-2382~0~G3~start~~5.5pt~#880000^^1~4140~-2386~0~G3~end~~5.5pt~#0000FF^^0~4142~-2385^^0~M 4145 -2382 L 4148 -2385 L 4145 -2388#@$P~show~0~4~4125~-2375~180~gge364399~0^^4125~-2375^^M 4125 -2375 h 20~#880000^^1~4147~-2372~0~G4~start~~5.5pt~#880000^^1~4140~-2376~0~G4~end~~5.5pt~#0000FF^^0~4142~-2375^^0~M 4145 -2372 L 4148 -2375 L 4145 -2378#@$P~show~0~H1~4225~-2405~0~gge364420~0^^4225~-2405^^M 4225 -2405 h -20~#880000^^1~4203~-2402~0~H1~end~~5.5pt~#880000^^1~4210~-2406~0~H1~start~~5.5pt~#0000FF^^0~4208~-2405^^0~M 4205 -2408 L 4202 -2405 L 4205 -2402#@$P~show~0~2~4225~-2395~0~gge364441~0^^4225~-2395^^M 4225 -2395 h -20~#880000^^1~4203~-2392~0~H2~end~~5.5pt~#880000^^1~4210~-2396~0~H2~start~~5.5pt~#0000FF^^0~4208~-2395^^0~M 4205 -2398 L 4202 -2395 L 4205 -2392#@$P~show~0~3~4225~-2385~0~gge364462~0^^4225~-2385^^M 4225 -2385 h -20~#880000^^1~4203~-2382~0~H3~end~~5.5pt~#880000^^1~4210~-2386~0~H3~start~~5.5pt~#0000FF^^0~4208~-2385^^0~M 4205 -2388 L 4202 -2385 L 4205 -2382#@$P~show~0~4~4225~-2375~0~gge364483~0^^4225~-2375^^M 4225 -2375 h -20~#880000^^1~4203~-2372~0~H4~end~~5.5pt~#880000^^1~4210~-2376~0~H4~start~~5.5pt~#0000FF^^0~4208~-2375^^0~M 4205 -2378 L 4202 -2375 L 4205 -2372#@$P~show~0~J1~4125~-2360~180~gge364504~0^^4125~-2360^^M 4125 -2360 h 20~#880000^^1~4147~-2357~0~J1~start~~5.5pt~#880000^^1~4140~-2361~0~J1~end~~5.5pt~#0000FF^^0~4142~-2360^^0~M 4145 -2357 L 4148 -2360 L 4145 -2363#@$P~show~0~2~4125~-2350~180~gge364525~0^^4125~-2350^^M 4125 -2350 h 20~#880000^^1~4147~-2347~0~J2~start~~5.5pt~#880000^^1~4140~-2351~0~J2~end~~5.5pt~#0000FF^^0~4142~-2350^^0~M 4145 -2347 L 4148 -2350 L 4145 -2353#@$P~show~0~3~4125~-2340~180~gge364546~0^^4125~-2340^^M 4125 -2340 h 20~#880000^^1~4147~-2337~0~J3~start~~5.5pt~#880000^^1~4140~-2341~0~J3~end~~5.5pt~#0000FF^^0~4142~-2340^^0~M 4145 -2337 L 4148 -2340 L 4145 -2343#@$P~show~0~4~4125~-2330~180~gge364567~0^^4125~-2330^^M 4125 -2330 h 20~#880000^^1~4147~-2327~0~J4~start~~5.5pt~#880000^^1~4140~-2331~0~J4~end~~5.5pt~#0000FF^^0~4142~-2330^^0~M 4145 -2327 L 4148 -2330 L 4145 -2333#@$P~show~0~K1~4225~-2360~0~gge364588~0^^4225~-2360^^M 4225 -2360 h -20~#880000^^1~4203~-2357~0~K1~end~~5.5pt~#880000^^1~4210~-2361~0~K1~start~~5.5pt~#0000FF^^0~4208~-2360^^0~M 4205 -2363 L 4202 -2360 L 4205 -2357#@$P~show~0~2~4225~-2350~0~gge364609~0^^4225~-2350^^M 4225 -2350 h -20~#880000^^1~4203~-2347~0~K2~end~~5.5pt~#880000^^1~4210~-2351~0~K2~start~~5.5pt~#0000FF^^0~4208~-2350^^0~M 4205 -2353 L 4202 -2350 L 4205 -2347#@$P~show~0~3~4225~-2340~0~gge364630~0^^4225~-2340^^M 4225 -2340 h -20~#880000^^1~4203~-2337~0~K3~end~~5.5pt~#880000^^1~4210~-2341~0~K3~start~~5.5pt~#0000FF^^0~4208~-2340^^0~M 4205 -2343 L 4202 -2340 L 4205 -2337#@$P~show~0~4~4225~-2330~0~gge364651~0^^4225~-2330^^M 4225 -2330 h -20~#880000^^1~4203~-2327~0~K4~end~~5.5pt~#880000^^1~4210~-2331~0~K4~start~~5.5pt~#0000FF^^0~4208~-2330^^0~M 4205 -2333 L 4202 -2330 L 4205 -2327#@$P~show~0~L1~4125~-2315~180~gge364672~0^^4125~-2315^^M 4125 -2315 h 20~#880000^^1~4147~-2312~0~L1~start~~5.5pt~#880000^^1~4140~-2316~0~L1~end~~5.5pt~#0000FF^^0~4142~-2315^^0~M 4145 -2312 L 4148 -2315 L 4145 -2318#@$P~show~0~2~4125~-2305~180~gge364693~0^^4125~-2305^^M 4125 -2305 h 20~#880000^^1~4147~-2302~0~L2~start~~5.5pt~#880000^^1~4140~-2306~0~L2~end~~5.5pt~#0000FF^^0~4142~-2305^^0~M 4145 -2302 L 4148 -2305 L 4145 -2308#@$P~show~0~3~4125~-2295~180~gge364714~0^^4125~-2295^^M 4125 -2295 h 20~#880000^^1~4147~-2292~0~L3~start~~5.5pt~#880000^^1~4140~-2296~0~L3~end~~5.5pt~#0000FF^^0~4142~-2295^^0~M 4145 -2292 L 4148 -2295 L 4145 -2298#@$P~show~0~4~4125~-2285~180~gge364735~0^^4125~-2285^^M 4125 -2285 h 20~#880000^^1~4147~-2282~0~L4~start~~5.5pt~#880000^^1~4140~-2286~0~L4~end~~5.5pt~#0000FF^^0~4142~-2285^^0~M 4145 -2282 L 4148 -2285 L 4145 -2288#@$P~show~0~M1~4225~-2315~0~gge364756~0^^4225~-2315^^M 4225 -2315 h -20~#880000^^1~4203~-2312~0~M1~end~~5.5pt~#880000^^1~4210~-2316~0~M1~start~~5.5pt~#0000FF^^0~4208~-2315^^0~M 4205 -2318 L 4202 -2315 L 4205 -2312#@$P~show~0~2~4225~-2305~0~gge364777~0^^4225~-2305^^M 4225 -2305 h -20~#880000^^1~4203~-2302~0~M2~end~~5.5pt~#880000^^1~4210~-2306~0~M2~start~~5.5pt~#0000FF^^0~4208~-2305^^0~M 4205 -2308 L 4202 -2305 L 4205 -2302#@$P~show~0~3~4225~-2295~0~gge364798~0^^4225~-2295^^M 4225 -2295 h -20~#880000^^1~4203~-2292~0~M3~end~~5.5pt~#880000^^1~4210~-2296~0~M3~start~~5.5pt~#0000FF^^0~4208~-2295^^0~M 4205 -2298 L 4202 -2295 L 4205 -2292#@$P~show~0~4~4225~-2285~0~gge364819~0^^4225~-2285^^M 4225 -2285 h -20~#880000^^1~4203~-2282~0~M4~end~~5.5pt~#880000^^1~4210~-2286~0~M4~start~~5.5pt~#0000FF^^0~4208~-2285^^0~M 4205 -2288 L 4202 -2285 L 4205 -2282","O~4125~-2340~gge364861~M 4121 -2344 L 4129 -2336 M 4129 -2344 L 4121 -2336~#33cc33~0","O~4125~-2330~gge364867~M 4121 -2334 L 4129 -2326 M 4129 -2334 L 4121 -2326~#33cc33~0","F~part_netLabel_netPort~4225~-2315~180~gge364888~~0^^4225~-2315^^OUT2~#0000FF~4246.99~-2311.45~0~start~1~Times New Roman~8pt~flag_gge187^^PL~4225 -2315 4230 -2320 4245 -2320 4245 -2310 4230 -2310 4225 -2315~#0000FF~1~0~transparent~gge364900~0","W~4225 -2315 4225 -2305~#008800~1~0~none~gge364903~0","LIB~4720~-1820~package`C0805`BOM_Supplier`LCSC`BOM_Manufacturer Part`CC0805KRX7R9BB104`BOM_Manufacturer`YAGEO`nameAlias`Capacitance`BOM_Supplier Part`C49678`BOM_JLCPCB Part Class`Basic Part`spicePre`C`spiceSymbolName`CC0805KRX7R9BB104`~~0~gge2fe1d3f7841b4f62~2ee8eb13a0124a108e622ce40c0c25a8~2f2c771dc147fb0210616ca49e419712~0~~yes~yes~~~#@$T~N~4713.96875~-1831~0~#000080~Arial~~~~~comment~100nF~1~start~gge365722~0~#@$T~P~4713.96875~-1839.328125~0~#000080~Arial~~~~~comment~CAN1_C1~1~start~gge365728~0~#@$PL~4718 -1828 4718 -1812~#880000~1~0~none~gge365734~0#@$PL~4722 -1828 4722 -1812~#880000~1~0~none~gge365737~0#@$P~show~1~1~4705~-1820~180~gge365740~0^^4705~-1820^^M 4705 -1820 h 10~#000000^^0~4720~-1817~0~1~start~~~#000000^^0~4710~-1821~0~1~end~~~#000000^^0~4712~-1820^^0~M 4715 -1817 L 4718 -1820 L 4715 -1823#@$P~show~1~2~4735~-1820~0~gge365761~0^^4735~-1820^^M 4735 -1820 h -10~#000000^^0~4720~-1817~0~2~end~~~#000000^^0~4730~-1821~0~2~start~~~#000000^^0~4728~-1820^^0~M 4725 -1823 L 4722 -1820 L 4725 -1817#@$PL~4715 -1820 4718 -1820~#880000~1~0~none~gge365782~0#@$PL~4722 -1820 4725 -1820~#880000~1~0~none~gge365785~0","W~4735 -1820 4765 -1820~#008800~1~0~none~gge365788~0","W~4385 -2500 4390 -2500~#008800~1~0~none~gge365796~0","O~4500~-2500~gge365799~M 4496 -2504 L 4504 -2496 M 4504 -2504 L 4496 -2496~#33cc33~0","W~4840 -2455 4840 -2460 4840 -2460~#008800~1~0~none~gge366980~0","F~part_netLabel_gnD~4400~-1660~0~gge367749~~0^^4400~-1660^^GND~#000000~4387~-1632.83~0~start~1~Times New Roman~9pt~flag_gge193^^PL~4400 -1650 4400 -1660~#000000~1~0~transparent~gge367761~0^^PL~4391 -1650 4409 -1650~#000000~1~0~transparent~gge367764~0^^PL~4394 -1648 4406 -1648~#000000~1~0~transparent~gge367767~0^^PL~4397 -1646 4403 -1646~#000000~1~0~transparent~gge367770~0^^PL~4399 -1644 4401 -1644~#000000~1~0~transparent~gge367773~0","F~part_netLabel_netPort~4305~-1660~0~gge367785~~0^^4305~-1660^^START2~#0000FF~4283~-1656.499~0~end~1~Times New Roman~8pt~flag_gge196^^PL~4305 -1660 4300 -1655 4285 -1655 4285 -1665 4300 -1665 4305 -1660~#0000FF~1~0~transparent~gge367797~0","W~4305 -1660 4310 -1660~#008800~1~0~none~gge367800~0","W~5170 -2390 5170 -2450~#008800~1~0~none~gge368164~0","LIB~4805~-2460~package`IND-SMD_L12.5-W12.5`BOM_Supplier`LCSC`BOM_Supplier Part`C169377`BOM_Manufacturer`Sunlord`BOM_Manufacturer Part`SWRB1207S-680MT`nameAlias`Inductance`Contributor`LCSC`BOM_JLCPCB Part Class`Extended Part`spicePre`L`spiceSymbolName`SWRB1207S-680MT`~~0~gged3b963950ef8e980~cd9f6077c95441b58dd10a834c719551~fadefeb939df4f77880a9872f50aa3ff~0~~yes~yes~9fdca9740e2e4c8c8732038df1fd4019~1649986527~a87aeb1d10bf4c948f87685ddf511f44#@$T~N~4799.81~-2467.33~0~#000080~Arial~~~~~comment~68uH~1~start~gge368674~0~#@$T~P~4799.81~-2476.56~0~#000080~Arial~~~~~comment~PSU_L1~1~start~gge368680~0~#@$P~show~0~2~4825~-2460~0~gge368686~0^^4825~-2460^^M 4825 -2460 h -3~#800^^0~4818~-2460~0~2~end~~~#800^^0~4826~-2464~0~2~start~~~#800^^0~4825~-2460^^0~M 4822 -2463 L 4819 -2460 L 4822 -2457#@$P~show~0~1~4785~-2460~180~gge368707~0^^4785~-2460^^M 4785 -2460 h 3~#800^^0~4792~-2460~0~1~start~~~#800^^0~4784~-2464~0~1~end~~~#800^^0~4785~-2460^^0~M 4788 -2457 L 4791 -2460 L 4788 -2463#@$A~M 4788.117 -2460.068 A 4 3.9 0 1 1 4796.082 -2460.064~~#880000~1~0~none~gge368728~0#@$A~M 4796.6 -2460.071 A 4 3.9 0 1 1 4804.565 -2460.066~~#880000~1~0~none~gge368731~0#@$A~M 4805.067 -2460.071 A 4 3.9 0 1 1 4813.032 -2460.066~~#880000~1~0~none~gge368734~0#@$A~M 4813.7 -2460.069 A 4 3.9 0 1 1 4821.665 -2460.064~~#880000~1~0~none~gge368737~0","W~4600 -1700 4615 -1700~#008800~1~0~none~gge368748~0","W~4950 -1715 4845 -1715~#008800~1~0~none~gge368760~0","W~5070 -1765 5145 -1765~#008800~1~0~none~gge368764~0","F~part_netLabel_gnD~4945~-1665~0~gge368770~~0^^4945~-1665^^GND~#000000~4932~-1637.91~0~start~1~Times New Roman~9pt~flag_gge199^^PL~4945 -1655 4945 -1665~#000000~1~0~transparent~gge368782~0^^PL~4936 -1655 4954 -1655~#000000~1~0~transparent~gge368785~0^^PL~4939 -1653 4951 -1653~#000000~1~0~transparent~gge368788~0^^PL~4942 -1651 4948 -1651~#000000~1~0~transparent~gge368791~0^^PL~4944 -1649 4946 -1649~#000000~1~0~transparent~gge368794~0","W~4950 -1695 4945 -1695 4945 -1665~#008800~1~0~none~gge368797~0","F~part_netLabel_gnD~4785~-1925~270~gge368803~~0^^4785~-1925^^GND~#000000~4742.5~-1921.07~0~start~1~Times New Roman~9pt~flag_gge202^^PL~4775 -1925 4785 -1925~#000000~1~0~transparent~gge368815~0^^PL~4775 -1934 4775 -1916~#000000~1~0~transparent~gge368818~0^^PL~4773 -1931 4773 -1919~#000000~1~0~transparent~gge368821~0^^PL~4771 -1928 4771 -1922~#000000~1~0~transparent~gge368824~0^^PL~4769 -1926 4769 -1924~#000000~1~0~transparent~gge368827~0","R~4655~-2600~~~570~275~#000000~1~0~none~gge368844~0~","R~4325~-2600~~~330~150~#000000~1~0~none~gge368847~0~","R~4545~-1975~~~680~350~#000000~1~0~none~gge368850~0~","R~4200~-1975~~~345~350~#000000~1~0~none~gge368856~0~","T~L~5090~-1955~0~#0000FF~~9pt~~~~comment~Can1 Car~1~start~gge368859~0~pinpart","W~4330 -1860 4345 -1860~#008800~1~0~none~gge368871~0","F~part_netLabel_gnD~4370~-1730~90~gge368887~~0^^4370~-1730^^GND~#000000~4386.5~-1726~0~start~1~Times New Roman~9pt~flag_gge205^^PL~4380 -1730 4370 -1730~#000000~1~0~transparent~gge368899~0^^PL~4380 -1721 4380 -1739~#000000~1~0~transparent~gge368902~0^^PL~4382 -1724 4382 -1736~#000000~1~0~transparent~gge368905~0^^PL~4384 -1727 4384 -1733~#000000~1~0~transparent~gge368908~0^^PL~4386 -1729 4386 -1731~#000000~1~0~transparent~gge368911~0","W~4400 -1680 4485 -1680~#008800~1~0~none~gge368934~0","W~4325 -1700 4310 -1700 4310 -1680 4290 -1680 4290 -1695~#008800~1~0~none~gge368939~0","W~4370 -1730 4325 -1730~#008800~1~0~none~gge368943~0","W~4470 -1915 4470 -1900~#008800~1~0~none~gge368956~0","T~L~4300~-1950~0~#0000FF~~9pt~~~~comment~Chademo Inputs~1~start~gge368960~0~pinpart","R~4040~-2600~~~285~400~#000000~1~0~none~gge368972~0~","T~L~4150~-2220~0~#0000FF~~9pt~~~~comment~Interface~1~start~gge368975~0~pinpart","R~3760~-1975~~~440~350~#000000~1~0~none~gge368990~0~","W~4470 -2030 4470 -2035~#008800~1~0~none~gge369093~0","F~part_netLabel_+5V~4470~-2030~180~gge369096~~0^^4470~-2030^^+3.3V~#000000~4459.1171875~-2009~0~start~1~Times New Roman~9pt~flag_gge208^^PL~4470 -2020 4470 -2030~#000000~1~0~transparent~gge369108~0^^PL~4475 -2020 4465 -2020~#000000~1~0~transparent~gge369111~0","W~4715 -2055 4745 -2055 4745 -2105 4585 -2105 4585 -2055~#008800~1~0~none~gge369114~0","W~4625 -2055 4585 -2055~#008800~1~0~none~gge369117~0","F~part_netLabel_+5V~4585~-2055~180~gge369120~~0^^4585~-2055^^+3.3V~#000000~4574.1171875~-2034~0~start~1~Times New Roman~9pt~flag_gge211^^PL~4585 -2045 4585 -2055~#000000~1~0~transparent~gge369132~0^^PL~4590 -2045 4580 -2045~#000000~1~0~transparent~gge369135~0","W~4715 -2065 4720 -2065 4720 -2080~#008800~1~0~none~gge369138~0","W~4585 -2140 4585 -2135~#008800~1~0~none~gge369141~0","LIB~4670~-2055~package`SOT-223-3_L6.5-W3.4-P2.30-LS7.0-BR`sourceId`dwIGgezVh`timeStamp`1476261164`BOM_Supplier`LCSC`BOM_Manufacturer`AMS`BOM_Manufacturer Part`AMS1117-3.3`BOM_Supplier Part`C6186`BOM_JLCPCB Part Class`Basic Part`spicePre`U`spiceSymbolName`AMS1117-3.3`~180~0~gge3a85941af4144c46~02ae667aca734971be8a5f58143dd564~588dac9f81df8f83843513972963b454~0~~yes~yes~~~#@$T~N~4653.44~-2078~0~#000080~Arial~~~~~comment~AMS1117-3.3~1~start~gge369150~0~#@$T~P~4653.45~-2088.71~0~#000080~Arial~~~~~comment~PSUU2~1~start~gge369156~0~#@$R~4635~-2075~2~2~70~40~#880000~1~0~none~gge369162~0~#@$E~4700~-2040~1.5~1.5~#880000~1~0~#880000~gge369165~0#@$P~show~0~1~4715~-2045~0~gge369168~0^^4715~-2045^^M 4715 -2045 h -10~#000000^^1~4701.3~-2041~0~GND\/ADJ~end~~~#000000^^1~4705.5~-2046~0~1~start~~~#000000^^0~4708~-2045^^0~M 4705 -2048 L 4702 -2045 L 4705 -2042#@$P~show~0~2~4715~-2055~0~gge369189~0^^4715~-2055^^M 4715 -2055 h -10~#880000^^1~4701.3~-2051~0~Vout~end~~~#0000FF^^1~4705.5~-2056~0~2~start~~~#0000FF^^0~4708~-2055^^0~M 4705 -2058 L 4702 -2055 L 4705 -2052#@$P~show~0~3~4715~-2065~0~gge369210~0^^4715~-2065^^M 4715 -2065 h -10~#880000^^1~4701.3~-2061~0~Vin~end~~~#0000FF^^1~4705.5~-2066~0~3~start~~~#0000FF^^0~4708~-2065^^0~M 4705 -2068 L 4702 -2065 L 4705 -2062#@$P~show~0~4~4625~-2055~180~gge369231~0^^4625~-2055^^M 4625 -2055 h 10~#880000^^1~4638.7~-2051~0~Vout~start~~~#0000FF^^1~4634.5~-2056~0~4~end~~~#0000FF^^0~4632~-2055^^0~M 4635 -2052 L 4638 -2055 L 4635 -2058","F~part_netLabel_gnD~4715~-2035~0~gge369252~~0^^4715~-2035^^GND~#000000~4700.84~-2007.39~0~start~1~Times New Roman~9pt~flag_gge214^^PL~4715 -2025 4715 -2035~#000000~1~0~transparent~gge369264~0^^PL~4706 -2025 4724 -2025~#000000~1~0~transparent~gge369267~0^^PL~4709 -2023 4721 -2023~#000000~1~0~transparent~gge369270~0^^PL~4712 -2021 4718 -2021~#000000~1~0~transparent~gge369273~0^^PL~4714 -2019 4716 -2019~#000000~1~0~transparent~gge369276~0","W~4715 -2045 4715 -2035~#008800~1~0~none~gge369279~0","F~part_netLabel_+5V~4720~-2080~0~gge369282~~0^^4720~-2080^^+5V~#000000~4709.28~-2093~0~start~1~Times New Roman~9pt~flag_gge217^^PL~4720 -2090 4720 -2080~#000000~1~0~transparent~gge369294~0^^PL~4715 -2090 4725 -2090~#000000~1~0~transparent~gge369297~0","F~part_netLabel_gnD~4585~-2140~180~gge369300~~0^^4585~-2140^^GND~#000000~4570.84~-2160.2~0~start~1~Times New Roman~9pt~flag_gge220^^PL~4585 -2150 4585 -2140~#000000~1~0~transparent~gge369312~0^^PL~4594 -2150 4576 -2150~#000000~1~0~transparent~gge369315~0^^PL~4591 -2152 4579 -2152~#000000~1~0~transparent~gge369318~0^^PL~4588 -2154 4582 -2154~#000000~1~0~transparent~gge369321~0^^PL~4586 -2156 4584 -2156~#000000~1~0~transparent~gge369324~0","LIB~4470~-2105~package`LED0805-RD`BOM_Supplier`LCSC`BOM_Manufacturer`NATIONSTAR`BOM_Manufacturer Part`FC-2012HRK-620D`BOM_Supplier Part`C84256`BOM_JLCPCB Part Class`Basic Part`spicePre`L`spiceSymbolName`FC-2012HRK-620D`~270~0~gge02c8934deb68440d~a267edbe7c3c4a16b85fd51e936458d0~45aa9db41fe55f139f756074a7ef37a0~0~~yes~yes~~~#@$T~N~4489~-2092.44~0~#000080~Arial~~~~~comment~FC-2012HRK-620D~1~start~gge369333~0~#@$T~P~4489.01~-2103.15~0~#000080~Arial~~~~~comment~PSULED1~1~start~gge369339~0~#@$PT~M 4483 -2120.0001 L 4481 -2116.0001 L 4479 -2118.0001 Z ~#880000~1~0~#880000~gge369345~0~#@$PT~M 4487 -2116.0001 L 4485 -2112.0001 L 4483 -2114.0001 Z ~#880000~1~0~#880000~gge369348~0~#@$P~show~0~1~4470~-2125~90~gge369351~0^^4470~-2125^^M 4470 -2125 v 15~#800^^0~4470~-2106~270~-~end~~~#800^^0~4466~-2114~270~1~start~~~#800^^0~4470~-2113^^0~M 4467 -2110 L 4470 -2107 L 4473 -2110#@$PL~4476 -2113 4483 -2120~#880000~1~0~none~gge369372~0#@$PL~4480 -2109 4487 -2116~#880000~1~0~none~gge369375~0#@$P~show~0~2~4470~-2085~270~gge369378~0^^4470~-2085^^M 4470 -2085 v -15~#800^^0~4470~-2104~270~+~start~~~#800^^0~4466~-2096~270~2~end~~~#800^^0~4470~-2097^^0~M 4473 -2100 L 4470 -2103 L 4467 -2100#@$PL~4478 -2110 4462 -2110~#880000~1~0~none~gge369399~0#@$PT~M 4464 -2100.0001 L 4470 -2110.0001 L 4477 -2100.0001 Z ~#880000~1~0~#880000~gge369402~0~","LIB~4470~-2055~package`R0805`BOM_Supplier`LCSC`BOM_Manufacturer`UniOhm`BOM_Manufacturer Part`0805W8F6800T5E`nameAlias`Resistance (Ohms)`BOM_Supplier Part`C17798`BOM_JLCPCB Part Class`Basic Part`spicePre`R`spiceSymbolName`0805W8F6800T5E`~270~0~ggefe51436444506905~b60f399a7a7e41848b2be1eb49c79141~1f5fd4818fbe07400514ad8d83fd7258~0~~yes~yes~~~#@$T~N~4476~-2042.44~0~#000080~Arial~~~~~comment~680~1~start~gge369411~0~#@$T~P~4476~-2053.15~0~#000080~Arial~~~~~comment~PSUR1~1~start~gge369417~0~#@$P~show~1~2~4470~-2035~270~gge369423~0^^4470~-2035^^M 4470 -2035 v -10~#000000^^0~4473~-2050~270~2~start~~~#000000^^0~4469~-2040~270~2~end~~~#000000^^0~4470~-2042^^0~M 4473 -2045 L 4470 -2048 L 4467 -2045#@$P~show~1~1~4470~-2075~90~gge369444~0^^4470~-2075^^M 4470 -2075 v 10~#000000^^0~4473~-2060~270~1~end~~~#000000^^0~4469~-2070~270~1~start~~~#000000^^0~4470~-2068^^0~M 4467 -2065 L 4470 -2062 L 4473 -2065#@$R~4466~-2065~~~8~20~#880000~1~0~none~gge369465~0~","W~4470 -2085 4470 -2075~#008800~1~0~none~gge369468~0","F~part_netLabel_gnD~4470~-2140~180~gge369471~~0^^4470~-2140^^GND~#000000~4455.84~-2160.2~0~start~1~Times New Roman~9pt~flag_gge223^^PL~4470 -2150 4470 -2140~#000000~1~0~transparent~gge369483~0^^PL~4479 -2150 4461 -2150~#000000~1~0~transparent~gge369486~0^^PL~4476 -2152 4464 -2152~#000000~1~0~transparent~gge369489~0^^PL~4473 -2154 4467 -2154~#000000~1~0~transparent~gge369492~0^^PL~4471 -2156 4469 -2156~#000000~1~0~transparent~gge369495~0","W~4470 -2140 4470 -2125~#008800~1~0~none~gge369498~0","T~L~4635~-2140~0~#0000FF~~9pt~bold~~~comment~3.3V supply~1~start~gge369501~0~pinpart","W~4545 -2370 4535 -2370~#008800~1~0~none~gge369508~0","LIB~4585~-2120~package`CAP-SMD_BD6.3-L6.6-W6.6-LS7.2-R-RD`BOM_Supplier`LCSC`BOM_Manufacturer`LELON`BOM_Manufacturer Part`VE-471M0JTR-0607`nameAlias`Capacitance`Contributor`LCSC`BOM_Supplier Part`C134738`BOM_JLCPCB Part Class`Extended Part`spicePre`C`spiceSymbolName`VE-471M0JTR-0607`~180~0~gge471133621751a68f~e1fd29b57d5e4b95a31cad5a0b7220fb~48f922a461e347949cc4b629afd125e5~0~~yes~yes~97aa1218d06c459ab9bc854bae0641b8~1661910042~77b26740edd54e35b7be31e24d8db3a9#@$T~N~4597~-2107.63~0~#000080~Arial~~~~~comment~470uF~1~start~gge369520~0~#@$T~P~4597~-2116.85~0~#000080~Arial~~~~~comment~PSU_C3~1~start~gge369526~0~#@$P~show~0~1~4585~-2100~90~gge369532~0^^4585~-2100^^M 4585 -2100 v -17~#8D2323^^0~4588~-2120~270~1~start~~~#8D2323^^0~4584~-2111~270~1~end~~~#8D2323^^0~4585~-2120^^0~M 4582 -2117 L 4585 -2114 L 4588 -2117#@$P~show~0~2~4585~-2140~270~gge369553~0^^4585~-2140^^M 4585 -2140 v 19~#8D2323^^0~4588~-2118~270~2~end~~~#8D2323^^0~4584~-2127~270~2~start~~~#8D2323^^0~4585~-2118^^0~M 4588 -2121 L 4585 -2124 L 4582 -2121#@$PL~4595 -2117 4575 -2117~#8D2323~1~0~none~gge369574~0#@$A~M 4585 -2121 A 16.0836 16.0836 0 0 1 4575 -2124~~#8D2323~1~0~none~gge369577~0#@$A~M 4595 -2124 A 16.2917 16.2917 0 0 1 4585 -2121~~#8D2323~1~0~none~gge369580~0#@$R~4591~-2114.1~~~4~0.1~#8D2323~1~0~#8D2323~gge369583~0~#@$R~4592.9~-2116~~~0.1~4~#8D2323~1~0~#8D2323~gge369586~0~","LIB~4355~-1670~package`SMD-4_L4.6-W6.5-P2.54-LS10.2-TL`BOM_Supplier`LCSC`BOM_Manufacturer`SHARP`BOM_Manufacturer Part`PC817X2CSP9F`BOM_Supplier Part`C66405`BOM_JLCPCB Part Class`Extended Part`spicePre`U`spiceSymbolName`PC817X2CSP9F`~~0~gge753249c1f9271cea~e706e9f3ee874e6cb3b5586c317927b4~9dc176859b54ff0130284495e49d53bb~0~~yes~yes~465ef9ed62d043c88e132315b1fbdb7f~1641817940~1d0c60321020462b98fc00a92ccffac8#@$T~N~4349.04~-1691.14~0~#000080~Arial~~~~~comment~PC817X2CSP9F~1~start~gge369601~0~#@$T~P~4349.04~-1700.29~0~#000080~Arial~~~~~comment~OPTO2~1~start~gge369607~0~#@$R~4330~-1687~2~2~50~34~#880000~1~0~none~gge369613~0~#@$P~show~0~1~4310~-1680~180~gge369616~0^^4310~-1680^^M 4310 -1680 h 20~#880000^^0~4332~-1677~0~1~start~~5.5pt~#0000FF^^1~4325~-1681~0~1~end~~5.5pt~#0000FF^^0~4327~-1680^^0~M 4330 -1677 L 4333 -1680 L 4330 -1683#@$P~show~0~2~4310~-1660~180~gge369637~0^^4310~-1660^^M 4310 -1660 h 20~#880000^^0~4332~-1657~0~2~start~~5.5pt~#0000FF^^1~4325~-1661~0~2~end~~5.5pt~#0000FF^^0~4327~-1660^^0~M 4330 -1657 L 4333 -1660 L 4330 -1663#@$P~show~0~3~4400~-1660~0~gge369658~0^^4400~-1660^^M 4400 -1660 h -20~#880000^^0~4378~-1657~0~3~end~~5.5pt~#0000FF^^1~4385~-1661~0~3~start~~5.5pt~#0000FF^^0~4383~-1660^^0~M 4380 -1663 L 4377 -1660 L 4380 -1657#@$P~show~0~4~4400~-1680~0~gge369679~0^^4400~-1680^^M 4400 -1680 h -20~#880000^^0~4378~-1677~0~4~end~~5.5pt~#0000FF^^1~4385~-1681~0~4~start~~5.5pt~#0000FF^^0~4383~-1680^^0~M 4380 -1683 L 4377 -1680 L 4380 -1677#@$PL~4380 -1680 4370 -1673~#880000~1~0~none~gge369700~0#@$PL~4370 -1667 4380 -1660~#880000~1~0~none~gge369703~0#@$PL~4370 -1679 4370 -1661~#880000~1~0~none~gge369706~0#@$PG~4380 -1660 4377 -1665 4374 -1661~#880000~1~0~#880000~gge369709~0#@$PT~M 4358 -1662 L 4356 -1666 L 4354 -1664 Z ~#880000~1~0~#880000~gge369712~0~#@$PT~M 4361 -1666 L 4359 -1670 L 4357 -1668 Z ~#880000~1~0~#880000~gge369715~0~#@$PL~4351 -1669 4358 -1662~#880000~1~0~none~gge369718~0#@$PL~4354 -1673 4361 -1666~#880000~1~0~none~gge369721~0#@$PL~4351 -1665 4335 -1665~#880000~1~0~none~gge369724~0#@$PT~M 4337 -1675 L 4343 -1665 L 4350 -1675 Z ~#880000~1~0~#880000~gge369727~0~#@$PL~4330 -1680 4343 -1680 4343 -1660 4330 -1660~#880000~1~0~none~gge369730~0","F~part_netLabel_gnD~4745~-1650~0~gge369740~~0^^4745~-1650^^GND~#000000~4732~-1624~0~start~1~Times New Roman~9pt~flag_gge226^^PL~4745 -1640 4745 -1650~#000000~1~0~transparent~gge369752~0^^PL~4736 -1640 4754 -1640~#000000~1~0~transparent~gge369755~0^^PL~4739 -1638 4751 -1638~#000000~1~0~transparent~gge369758~0^^PL~4742 -1636 4748 -1636~#000000~1~0~transparent~gge369761~0^^PL~4744 -1634 4746 -1634~#000000~1~0~transparent~gge369764~0","F~part_netLabel_gnD~4765~-1750~180~gge369767~~0^^4765~-1750^^GND~#000000~4752~-1769.46~0~start~1~Times New Roman~9pt~flag_gge229^^PL~4765 -1760 4765 -1750~#000000~1~0~transparent~gge369779~0^^PL~4774 -1760 4756 -1760~#000000~1~0~transparent~gge369782~0^^PL~4771 -1762 4759 -1762~#000000~1~0~transparent~gge369785~0^^PL~4768 -1764 4762 -1764~#000000~1~0~transparent~gge369788~0^^PL~4766 -1766 4764 -1766~#000000~1~0~transparent~gge369791~0","W~4745 -1650 4745 -1675~#008800~1~0~none~gge369821~0","W~4765 -1750 4765 -1735~#008800~1~0~none~gge369824~0","LIB~3895~-1880~package`CAP-SMD_BD6.3-L6.6-W6.6-LS7.2-R-RD`BOM_Supplier`LCSC`BOM_Manufacturer`LELON`BOM_Manufacturer Part`VE-471M0JTR-0607`nameAlias`Capacitance`Contributor`LCSC`BOM_Supplier Part`C134738`BOM_JLCPCB Part Class`Extended Part`spicePre`C`spiceSymbolName`VE-471M0JTR-0607`~270~0~ggeab474d572f1040cf~e1fd29b57d5e4b95a31cad5a0b7220fb~48f922a461e347949cc4b629afd125e5~0~~yes~yes~97aa1218d06c459ab9bc854bae0641b8~1661910042~77b26740edd54e35b7be31e24d8db3a9#@$T~N~3876.84~-1893~0~#000080~Arial~~~~~comment~470uF~1~start~gge369851~0~#@$T~P~3876.84~-1902~0~#000080~Arial~~~~~comment~PSU_C4~1~start~gge369857~0~#@$P~show~0~1~3915~-1880~180~gge369863~0^^3915~-1880^^M 3915 -1880 h -17~#8D2323^^0~3895~-1877~0~1~end~~~#8D2323^^0~3904~-1881~0~1~start~~~#8D2323^^0~3895~-1880^^0~M 3898 -1877 L 3901 -1880 L 3898 -1883#@$P~show~0~2~3875~-1880~0~gge369884~0^^3875~-1880^^M 3875 -1880 h 19~#8D2323^^0~3897~-1877~0~2~start~~~#8D2323^^0~3888~-1881~0~2~end~~~#8D2323^^0~3897~-1880^^0~M 3894 -1883 L 3891 -1880 L 3894 -1877#@$PL~3898 -1890 3898 -1870~#8D2323~1~0~none~gge369905~0#@$A~M 3894 -1880 A 16.0836 16.0836 0 0 1 3891 -1870~~#8D2323~1~0~none~gge369908~0#@$A~M 3891 -1890 A 16.2917 16.2917 0 0 1 3894 -1880~~#8D2323~1~0~none~gge369911~0#@$R~3900.9~-1890~~~0.1~4~#8D2323~1~0~#8D2323~gge369914~0~#@$R~3899~-1888~~~4~0.1~#8D2323~1~0~#8D2323~gge369917~0~","F~part_netLabel_gnD~3850~-1880~0~gge369921~~0^^3850~-1880^^GND~#000000~3837~-1852.5~0~start~1~Times New Roman~9pt~flag_gge232^^PL~3850 -1870 3850 -1880~#000000~1~0~transparent~gge369933~0^^PL~3841 -1870 3859 -1870~#000000~1~0~transparent~gge369936~0^^PL~3844 -1868 3856 -1868~#000000~1~0~transparent~gge369939~0^^PL~3847 -1866 3853 -1866~#000000~1~0~transparent~gge369942~0^^PL~3849 -1864 3851 -1864~#000000~1~0~transparent~gge369945~0","W~3850 -1880 3875 -1880~#008800~1~0~none~gge369975~0","W~3930 -1870 3930 -1880 3915 -1880~#008800~1~0~none~gge370079~0","O~3930~-1690~gge370082~M 3926 -1694 L 3934 -1686 M 3934 -1694 L 3926 -1686~#33cc33~0","LIB~5075~-1845~package`C0805`BOM_Supplier`LCSC`BOM_Manufacturer Part`CC0805KRX7R9BB104`BOM_Manufacturer`YAGEO`nameAlias`Capacitance`BOM_Supplier Part`C49678`BOM_JLCPCB Part Class`Basic Part`spicePre`C`spiceSymbolName`CC0805KRX7R9BB104`~90~0~gge071d240d8e5f0119~2ee8eb13a0124a108e622ce40c0c25a8~2f2c771dc147fb0210616ca49e419712~0~~yes~yes~~~#@$T~N~5085~-1832.75~0~#000080~Arial~~~~~comment~100nF~1~start~gge370103~0~#@$T~P~5085~-1841.75~0~#000080~Arial~~~~~comment~CAN1_C2~1~start~gge370109~0~#@$PL~5067 -1843 5083 -1843~#880000~1~0~none~gge370115~0#@$PL~5067 -1847 5083 -1847~#880000~1~0~none~gge370118~0#@$P~show~1~1~5075~-1830~270~gge370121~0^^5075~-1830^^M 5075 -1830 v -10~#000000^^0~5078~-1845~270~1~start~~~#000000^^0~5074~-1835~270~1~end~~~#000000^^0~5075~-1837^^0~M 5078 -1840 L 5075 -1843 L 5072 -1840#@$P~show~1~2~5075~-1860~90~gge370142~0^^5075~-1860^^M 5075 -1860 v 10~#000000^^0~5078~-1845~270~2~end~~~#000000^^0~5074~-1855~270~2~start~~~#000000^^0~5075~-1853^^0~M 5072 -1850 L 5075 -1847 L 5078 -1850#@$PL~5075 -1840 5075 -1843~#880000~1~0~none~gge370163~0#@$PL~5075 -1847 5075 -1850~#880000~1~0~none~gge370166~0","F~part_netLabel_gnD~5075~-1860~90~gge370169~~0^^5075~-1860^^GND~#000000~5091.5~-1856~0~start~1~Times New Roman~9pt~gge370175^^PL~5085 -1860 5075 -1860~#000000~1~0~transparent~gge370181~0^^PL~5085 -1851 5085 -1869~#000000~1~0~transparent~gge370184~0^^PL~5087 -1854 5087 -1866~#000000~1~0~transparent~gge370187~0^^PL~5089 -1857 5089 -1863~#000000~1~0~transparent~gge370190~0^^PL~5091 -1859 5091 -1861~#000000~1~0~transparent~gge370193~0","W~5070 -1775 5090 -1775 5090 -1810 5075 -1810 5075 -1830~#008800~1~0~none~gge370223~0","F~part_netLabel_netPort~4215~-2050~0~gge370392~~0^^4215~-2050^^START1~#0000FF~4193~-2046.5~0~end~1~Times New Roman~8pt~gge370398^^PL~4215 -2050 4210 -2045 4195 -2045 4195 -2055 4210 -2055 4215 -2050~#0000FF~1~0~transparent~gge370404~0","F~part_netLabel_netPort~4215~-2040~0~gge370407~~0^^4215~-2040^^START2~#0000FF~4193.81~-2036.43~0~end~1~Times New Roman~8pt~gge370413^^PL~4215 -2040 4210 -2035 4195 -2035 4195 -2045 4210 -2045 4215 -2040~#0000FF~1~0~transparent~gge370419~0","W~4215 -2050 4230 -2050~#008800~1~0~none~gge370422~0","W~4215 -2040 4230 -2040~#008800~1~0~none~gge370425~0","F~part_netLabel_netPort~4215~-2030~0~gge370645~~0^^4215~-2030^^OUT1~#0000FF~4165.76~-2026.47~0~~1~Times New Roman~8pt~gge370651^^PL~4215 -2030 4210 -2025 4195 -2025 4195 -2035 4210 -2035 4215 -2030~#0000FF~1~0~transparent~gge370657~0","F~part_netLabel_netPort~4215~-2020~0~gge370660~~0^^4215~-2020^^OUT2~#0000FF~4164.27~-2016.25~0~~1~Times New Roman~8pt~gge370666^^PL~4215 -2020 4210 -2015 4195 -2015 4195 -2025 4210 -2025 4215 -2020~#0000FF~1~0~transparent~gge370672~0","W~4215 -2030 4230 -2030~#008800~1~0~none~gge370675~0","W~4215 -2020 4230 -2020~#008800~1~0~none~gge370678~0","F~part_netLabel_+5V~4620~-2220~90~gge370924~~0^^4620~-2220^^+5V~#000000~4588.07~-2216~0~start~1~Times New Roman~9pt~gge370930^^PL~4610 -2220 4620 -2220~#000000~1~0~transparent~gge370936~0^^PL~4610 -2215 4610 -2225~#000000~1~0~transparent~gge370939~0","W~4620 -2220 4635 -2220~#008800~1~0~none~gge370942~0","F~part_netLabel_+5V~4620~-2240~90~gge370948~~0^^4620~-2240^^+12V~#000000~4582.07~-2236.07~0~start~1~Times New Roman~9pt~gge370954^^PL~4610 -2240 4620 -2240~#000000~1~0~transparent~gge370960~0^^PL~4610 -2235 4610 -2245~#000000~1~0~transparent~gge370963~0","W~4620 -2240 4635 -2240~#008800~1~0~none~gge370966~0","F~part_netLabel_+5V~4635~-2210~180~gge370972~~0^^4635~-2210^^+3.3V~#000000~4624.1171875~-2189~0~start~1~Times New Roman~9pt~gge370978^^PL~4635 -2200 4635 -2210~#000000~1~0~transparent~gge370984~0^^PL~4640 -2200 4630 -2200~#000000~1~0~transparent~gge370987~0","F~part_netLabel_gnD~4585~-2230~270~gge370993~~0^^4585~-2230^^GND~#000000~4542.5~-2226.11~0~start~1~Times New Roman~9pt~gge370999^^PL~4575 -2230 4585 -2230~#000000~1~0~transparent~gge371005~0^^PL~4575 -2239 4575 -2221~#000000~1~0~transparent~gge371008~0^^PL~4573 -2236 4573 -2224~#000000~1~0~transparent~gge371011~0^^PL~4571 -2233 4571 -2227~#000000~1~0~transparent~gge371014~0^^PL~4569 -2231 4569 -2229~#000000~1~0~transparent~gge371017~0","W~4585 -2230 4635 -2230~#008800~1~0~none~gge371020~0","F~part_netLabel_netPort~4870~-2260~0~gge371149~~0^^4870~-2260^^CAN0_H~#0000FF~4801.97~-2255.01~0~~1~Times New Roman~8pt~gge371155^^PL~4870 -2260 4865 -2255 4850 -2255 4850 -2265 4865 -2265 4870 -2260~#0000FF~1~0~transparent~gge371161~0","F~part_netLabel_netPort~4870~-2250~0~gge371164~~0^^4870~-2250^^CAN0_L~#0000FF~4803.15~-2245.01~0~~1~Times New Roman~8pt~gge371170^^PL~4870 -2250 4865 -2245 4850 -2245 4850 -2255 4865 -2255 4870 -2250~#0000FF~1~0~transparent~gge371176~0","F~part_netLabel_netPort~4870~-2240~0~gge371182~~0^^4870~-2240^^CAN1_H~#0000FF~4801.97~-2235.01~0~~1~Times New Roman~8pt~gge371188^^PL~4870 -2240 4865 -2235 4850 -2235 4850 -2245 4865 -2245 4870 -2240~#0000FF~1~0~transparent~gge371194~0","F~part_netLabel_netPort~4870~-2230~0~gge371197~~0^^4870~-2230^^CAN1_L~#0000FF~4803.15~-2224.87~0~~1~Times New Roman~8pt~gge371203^^PL~4870 -2230 4865 -2225 4850 -2225 4850 -2235 4865 -2235 4870 -2230~#0000FF~1~0~transparent~gge371209~0","F~part_netLabel_netPort~4065~-1840~180~gge371332~~0^^4065~-1840^^TX~#0000FF~4087~-1836.63~0~~1~Times New Roman~8pt~gge371338^^PL~4065 -1840 4070 -1845 4085 -1845 4085 -1835 4070 -1835 4065 -1840~#0000FF~1~0~transparent~gge371344~0","F~part_netLabel_netPort~4065~-1830~180~gge371347~~0^^4065~-1830^^RX~#0000FF~4087~-1826.63~0~~1~Times New Roman~8pt~gge371353^^PL~4065 -1830 4070 -1835 4085 -1835 4085 -1825 4070 -1825 4065 -1830~#0000FF~1~0~transparent~gge371359~0","F~part_netLabel_netPort~4065~-1820~180~gge371362~~0^^4065~-1820^^SDA~#0000FF~4087~-1816.63~0~~1~Times New Roman~8pt~gge371368^^PL~4065 -1820 4070 -1825 4085 -1825 4085 -1815 4070 -1815 4065 -1820~#0000FF~1~0~transparent~gge371374~0","F~part_netLabel_netPort~4065~-1850~180~gge371377~~0^^4065~-1850^^SCL~#0000FF~4087~-1846.63~0~~1~Times New Roman~8pt~gge371383^^PL~4065 -1850 4070 -1855 4085 -1855 4085 -1845 4070 -1845 4065 -1850~#0000FF~1~0~transparent~gge371389~0","F~part_netLabel_netPort~4155~-1935~0~gge371410~~0^^4155~-1935^^TX~#0000FF~4118.78~-1931.33~0~~1~Times New Roman~8pt~gge371416^^PL~4155 -1935 4150 -1930 4135 -1930 4135 -1940 4150 -1940 4155 -1935~#0000FF~1~0~transparent~gge371422~0","F~part_netLabel_netPort~4155~-1925~0~gge371425~~0^^4155~-1925^^RX~#0000FF~4118.19~-1921.33~0~~1~Times New Roman~8pt~gge371431^^PL~4155 -1925 4150 -1920 4135 -1920 4135 -1930 4150 -1930 4155 -1925~#0000FF~1~0~transparent~gge371437~0","W~4155 -1935 4160 -1935~#008800~1~0~none~gge371440~0","W~4155 -1925 4160 -1925~#008800~1~0~none~gge371443~0","F~part_netLabel_netPort~4155~-1915~0~gge371449~~0^^4155~-1915^^SCL~#0000FF~4113.44~-1911.33~0~~1~Times New Roman~8pt~gge371455^^PL~4155 -1915 4150 -1910 4135 -1910 4135 -1920 4150 -1920 4155 -1915~#0000FF~1~0~transparent~gge371461~0","W~4155 -1915 4160 -1915~#008800~1~0~none~gge371464~0","F~part_netLabel_netPort~4155~-1905~0~gge371470~~0^^4155~-1905^^SDA~#0000FF~4111.66~-1901.33~0~~1~Times New Roman~8pt~gge371476^^PL~4155 -1905 4150 -1900 4135 -1900 4135 -1910 4150 -1910 4155 -1905~#0000FF~1~0~transparent~gge371482~0","W~4155 -1905 4160 -1905~#008800~1~0~none~gge371485~0","F~part_netLabel_netPort~4110~-2450~0~gge371491~~0^^4110~-2450^^TX~#0000FF~4073.78~-2446.33~0~~1~Times New Roman~8pt~gge371497^^PL~4110 -2450 4105 -2445 4090 -2445 4090 -2455 4105 -2455 4110 -2450~#0000FF~1~0~transparent~gge371503~0","F~part_netLabel_netPort~4230~-2450~180~gge371506~~0^^4230~-2450^^RX~#0000FF~4251.99~-2446.3~0~~1~Times New Roman~8pt~gge371512^^PL~4230 -2450 4235 -2455 4250 -2455 4250 -2445 4235 -2445 4230 -2450~#0000FF~1~0~transparent~gge371518~0","F~part_netLabel_netPort~4110~-2430~0~gge371521~~0^^4110~-2430^^SCL~#0000FF~4068.44~-2426.33~0~~1~Times New Roman~8pt~gge371527^^PL~4110 -2430 4105 -2425 4090 -2425 4090 -2435 4105 -2435 4110 -2430~#0000FF~1~0~transparent~gge371533~0","F~part_netLabel_netPort~4230~-2430~180~gge371536~~0^^4230~-2430^^SDA~#0000FF~4252~-2426.45~0~~1~Times New Roman~8pt~gge371542^^PL~4230 -2430 4235 -2435 4250 -2435 4250 -2425 4235 -2425 4230 -2430~#0000FF~1~0~transparent~gge371548~0","W~4125 -2440 4125 -2450 4110 -2450~#008800~1~0~none~gge371551~0","W~4125 -2420 4125 -2430 4110 -2430~#008800~1~0~none~gge371557~0","W~4225 -2440 4225 -2450 4230 -2450~#008800~1~0~none~gge371563~0","W~4225 -2420 4225 -2430 4230 -2430~#008800~1~0~none~gge371566~0","W~4225 -2350 4225 -2360 4230 -2360~#008800~1~0~none~gge371588~0","W~4125 -2350 4125 -2360 4120 -2360~#008800~1~0~none~gge371591~0","F~part_netLabel_netPort~4125~-2405~180~gge371605~~0^^4125~-2405^^SPI_MISO~#0000FF~4056.29~-2401.23~0~~1~Times New Roman~8pt~gge371611^^PL~4105 -2399.75 4105 -2410.5 4119.25 -2410.5 4125 -2405 4119.75 -2399.75 4104.75 -2399.75~#430AFF~1~0~#FFF7F8~gge371617~0","F~part_netLabel_netPort~4225~-2405~0~gge371620~~0^^4225~-2405^^SPI_MOSI~#0000FF~4293.71~-2401.4~0~end~1~Times New Roman~8pt~gge371626^^PL~4245 -2410.25 4245 -2399.5 4230.75 -2399.5 4225 -2405 4230.25 -2410.25 4245.25 -2410.25~#430AFF~1~0~#FFF7F8~gge371632~0","F~part_netLabel_netPort~4125~-2385~180~gge371635~~0^^4125~-2385^^SPI_SCK~#0000FF~4059.29~-2381.23~0~~1~Times New Roman~8pt~gge371641^^PL~4105 -2379.75 4105 -2390.5 4119.25 -2390.5 4125 -2385 4119.75 -2379.75 4104.75 -2379.75~#430AFF~1~0~#FFF7F8~gge371647~0","W~4125 -2375 4125 -2385~#008800~1~0~none~gge371650~0","W~4125 -2395 4125 -2405~#008800~1~0~none~gge371654~0","W~4225 -2395 4225 -2405~#008800~1~0~none~gge371658~0","F~part_netLabel_netPort~3925~-1790~0~gge371707~~0^^3925~-1790^^GPIO25~#0000FF~3903~-1786.367~0~end~1~Times New Roman~8pt~gge371713^^PL~3925 -1790 3920 -1785 3905 -1785 3905 -1795 3920 -1795 3925 -1790~#0000FF~1~0~transparent~gge371719~0","F~part_netLabel_netPort~3925~-1780~0~gge371722~~0^^3925~-1780^^GPIO27~#0000FF~3903~-1776.367~0~end~1~Times New Roman~8pt~gge371728^^PL~3925 -1780 3920 -1775 3905 -1775 3905 -1785 3920 -1785 3925 -1780~#0000FF~1~0~transparent~gge371734~0","F~part_netLabel_netPort~4015~-2065~180~gge371911~~0^^4015~-2065^^SPI_MISO~#0000FF~3946.29~-2061.56~0~~1~Times New Roman~8pt~gge371917^^PL~3995 -2059.75 3995 -2070.5 4009.25 -2070.5 4015 -2065 4009.75 -2059.75 3994.75 -2059.75~#430AFF~1~0~#FFF7F8~gge371923~0","F~part_netLabel_netPort~4015~-2055~180~gge371929~~0^^4015~-2055^^SPI_MOSI~#0000FF~3946.29~-2051.56~0~~1~Times New Roman~8pt~gge371935^^PL~3995 -2049.75 3995 -2060.5 4009.25 -2060.5 4015 -2055 4009.75 -2049.75 3994.75 -2049.75~#430AFF~1~0~#FFF7F8~gge371941~0","F~part_netLabel_netPort~4015~-2045~180~gge371947~~0^^4015~-2045^^SPI_SCK~#0000FF~3949.29~-2041.56~0~~1~Times New Roman~8pt~gge371953^^PL~3995 -2039.75 3995 -2050.5 4009.25 -2050.5 4015 -2045 4009.75 -2039.75 3994.75 -2039.75~#430AFF~1~0~#FFF7F8~gge371959~0","W~4030 -2065 4015 -2065~#008800~1~0~none~gge371962~0","W~4030 -2055 4015 -2055~#008800~1~0~none~gge371965~0","W~4030 -2045 4015 -2045~#008800~1~0~none~gge371968~0","O~4030~-2035~gge371971~M 4026 -2039 L 4034 -2031 M 4034 -2039 L 4026 -2031~#33cc33~0","F~part_netLabel_netPort~3925~-1850~0~gge371986~~0^^3925~-1850^^GPIO36~#0000FF~3903~-1846.388~0~end~1~Times New Roman~8pt~gge371992^^PL~3925 -1850 3920 -1845 3905 -1845 3905 -1855 3920 -1855 3925 -1850~#0000FF~1~0~transparent~gge371998~0","F~part_netLabel_netPort~3925~-1840~0~gge372004~~0^^3925~-1840^^GPIO39~#0000FF~3903~-1836.388~0~end~1~Times New Roman~8pt~gge372010^^PL~3925 -1840 3920 -1835 3905 -1835 3905 -1845 3920 -1845 3925 -1840~#0000FF~1~0~transparent~gge372016~0","F~part_netLabel_netPort~4110~-2475~0~gge372022~~0^^4110~-2475^^GPIO36~#0000FF~4088~-2471.388~0~end~1~Times New Roman~8pt~gge372028^^PL~4110 -2475 4105 -2470 4090 -2470 4090 -2480 4105 -2480 4110 -2475~#0000FF~1~0~transparent~gge372034~0","F~part_netLabel_netPort~4235~-2475~180~gge372037~~0^^4235~-2475^^GPIO39~#0000FF~4257~-2471.25~0~~1~Times New Roman~8pt~gge372043^^PL~4235 -2475 4240 -2480 4255 -2480 4255 -2470 4240 -2470 4235 -2475~#0000FF~1~0~transparent~gge372049~0","W~4125 -2465 4110 -2465 4110 -2475 4125 -2475~#008800~1~0~none~gge372052~0","W~4225 -2465 4235 -2465 4235 -2475 4225 -2475~#008800~1~0~none~gge372055~0","F~part_netLabel_netPort~4120~-2520~0~gge372072~~0^^4120~-2520^^GPIO25~#0000FF~4062.45~-2516.22~0~~1~Times New Roman~8pt~gge372078^^PL~4120 -2520 4115 -2515 4100 -2515 4100 -2525 4115 -2525 4120 -2520~#0000FF~1~0~transparent~gge372084~0","F~part_netLabel_netPort~4235~-2520~180~gge372087~~0^^4235~-2520^^GPIO27~#0000FF~4257~-2516.41~0~~1~Times New Roman~8pt~gge372093^^PL~4235 -2520 4240 -2525 4255 -2525 4255 -2515 4240 -2515 4235 -2520~#0000FF~1~0~transparent~gge372099~0","O~4225~-2375~gge372102~M 4221 -2379 L 4229 -2371 M 4229 -2379 L 4221 -2371~#33cc33~0","O~4225~-2385~gge372108~M 4221 -2389 L 4229 -2381 M 4229 -2389 L 4221 -2381~#33cc33~0","W~4225 -2510 4225 -2520 4235 -2520~#008800~1~0~none~gge372120~0","W~4125 -2510 4125 -2520 4120 -2520~#008800~1~0~none~gge372123~0","F~part_netLabel_netPort~4210~-2165~0~gge372290~~0^^4210~-2165^^GPIO25~#0000FF~4188~-2161.367~0~end~1~Times New Roman~8pt~gge372296^^PL~4210 -2165 4205 -2160 4190 -2160 4190 -2170 4205 -2170 4210 -2165~#0000FF~1~0~transparent~gge372302~0","F~part_netLabel_netPort~4210~-2155~0~gge372305~~0^^4210~-2155^^GPIO27~#0000FF~4188~-2151.367~0~end~1~Times New Roman~8pt~gge372311^^PL~4210 -2155 4205 -2150 4190 -2150 4190 -2160 4205 -2160 4210 -2155~#0000FF~1~0~transparent~gge372317~0","LIB~4055~-2050~package`HDR-TH_4P-P2.54-V_RE-H042TD-1190`BOM_Supplier`LCSC`BOM_Supplier Part`C160334`BOM_Manufacturer`JST`BOM_Manufacturer Part`RE-H042TD-1190(LF)(SN)`Contributor`LCSC`BOM_JLCPCB Part Class`Extended Part`spicePre`C`spiceSymbolName`RE-H042TD-1190 (LF)(SN)`~~0~gge837697eff36881ee~74a121d1141148f386015af5c97939a9~1ad1fb8b32674fa883fa52562b8b3ba6~0~~yes~none~d2bcd8ada2a747b6b8a01673a2b446af~1673340627~490aad90dd3a46fba378e753d0b75d36#@$T~N~4044.66~-2078.33~0~#000080~Arial~~~~~comment~RE-H042TD-1190 (LF)(SN)~1~start~gge372320~0~#@$T~P~4044.66~-2087.67~0~#000080~Arial~~~~~comment~CN1~1~start~gge372326~0~#@$R~4040~-2075~2~2~40~50~#880000~1~0~none~gge372332~0~#@$E~4045~-2070~1.5~1.5~#880000~1~0~#880000~gge372335~0#@$P~show~0~1~4030~-2065~180~gge372338~0^^4030~-2065^^M 4030 -2065 h 10~#880000^^1~4043.7~-2061~0~1~start~~~#0000FF^^1~4039.5~-2066~0~1~end~~~#0000FF^^0~4037~-2065^^0~M 4040 -2062 L 4043 -2065 L 4040 -2068#@$P~show~0~2~4030~-2055~180~gge372359~0^^4030~-2055^^M 4030 -2055 h 10~#880000^^1~4043.7~-2051~0~2~start~~~#0000FF^^1~4039.5~-2056~0~2~end~~~#0000FF^^0~4037~-2055^^0~M 4040 -2052 L 4043 -2055 L 4040 -2058#@$P~show~0~3~4030~-2045~180~gge372380~0^^4030~-2045^^M 4030 -2045 h 10~#880000^^1~4043.7~-2041~0~3~start~~~#0000FF^^1~4039.5~-2046~0~3~end~~~#0000FF^^0~4037~-2045^^0~M 4040 -2042 L 4043 -2045 L 4040 -2048#@$P~show~0~4~4030~-2035~180~gge372401~0^^4030~-2035^^M 4030 -2035 h 10~#880000^^1~4043.7~-2031~0~4~start~~~#0000FF^^1~4039.5~-2036~0~4~end~~~#0000FF^^0~4037~-2035^^0~M 4040 -2032 L 4043 -2035 L 4040 -2038","LIB~4255~-2035~package`HDR-TH_4P-P2.54-V_RE-H042TD-1190`BOM_Supplier`LCSC`BOM_Supplier Part`C160334`BOM_Manufacturer`JST`BOM_Manufacturer Part`RE-H042TD-1190(LF)(SN)`Contributor`LCSC`BOM_JLCPCB Part Class`Extended Part`spicePre`C`spiceSymbolName`RE-H042TD-1190 (LF)(SN)`~~0~gge41bc461751e1d3e1~74a121d1141148f386015af5c97939a9~1ad1fb8b32674fa883fa52562b8b3ba6~0~~yes~none~d2bcd8ada2a747b6b8a01673a2b446af~1673340627~490aad90dd3a46fba378e753d0b75d36#@$T~N~4244.66~-2063.33~0~#000080~Arial~~~~~comment~RE-H042TD-1190 (LF)(SN)~1~start~gge372572~0~#@$T~P~4244.66~-2072.67~0~#000080~Arial~~~~~comment~CN2~1~start~gge372578~0~#@$R~4240~-2060~2~2~40~50~#880000~1~0~none~gge372584~0~#@$E~4245~-2055~1.5~1.5~#880000~1~0~#880000~gge372587~0#@$P~show~0~1~4230~-2050~180~gge372590~0^^4230~-2050^^M 4230 -2050 h 10~#880000^^1~4243.7~-2046~0~1~start~~~#0000FF^^1~4239.5~-2051~0~1~end~~~#0000FF^^0~4237~-2050^^0~M 4240 -2047 L 4243 -2050 L 4240 -2053#@$P~show~0~2~4230~-2040~180~gge372611~0^^4230~-2040^^M 4230 -2040 h 10~#880000^^1~4243.7~-2036~0~2~start~~~#0000FF^^1~4239.5~-2041~0~2~end~~~#0000FF^^0~4237~-2040^^0~M 4240 -2037 L 4243 -2040 L 4240 -2043#@$P~show~0~3~4230~-2030~180~gge372632~0^^4230~-2030^^M 4230 -2030 h 10~#880000^^1~4243.7~-2026~0~3~start~~~#0000FF^^1~4239.5~-2031~0~3~end~~~#0000FF^^0~4237~-2030^^0~M 4240 -2027 L 4243 -2030 L 4240 -2033#@$P~show~0~4~4230~-2020~180~gge372653~0^^4230~-2020^^M 4230 -2020 h 10~#880000^^1~4243.7~-2016~0~4~start~~~#0000FF^^1~4239.5~-2021~0~4~end~~~#0000FF^^0~4237~-2020^^0~M 4240 -2017 L 4243 -2020 L 4240 -2023","LIB~4235~-2150~package`HDR-TH_4P-P2.54-V_RE-H042TD-1190`BOM_Supplier`LCSC`BOM_Supplier Part`C160334`BOM_Manufacturer`JST`BOM_Manufacturer Part`RE-H042TD-1190(LF)(SN)`Contributor`LCSC`BOM_JLCPCB Part Class`Extended Part`spicePre`C`spiceSymbolName`RE-H042TD-1190 (LF)(SN)`~~0~ggec2c0d7ebb5797b9d~74a121d1141148f386015af5c97939a9~1ad1fb8b32674fa883fa52562b8b3ba6~0~~yes~none~d2bcd8ada2a747b6b8a01673a2b446af~1673340627~490aad90dd3a46fba378e753d0b75d36#@$T~N~4224.66~-2178.33~0~#000080~Arial~~~~~comment~RE-H042TD-1190 (LF)(SN)~1~start~gge372704~0~#@$T~P~4224.66~-2187.67~0~#000080~Arial~~~~~comment~CN3~1~start~gge372710~0~#@$R~4220~-2175~2~2~40~50~#880000~1~0~none~gge372716~0~#@$E~4225~-2170~1.5~1.5~#880000~1~0~#880000~gge372719~0#@$P~show~0~1~4210~-2165~180~gge372722~0^^4210~-2165^^M 4210 -2165 h 10~#880000^^1~4223.7~-2161~0~1~start~~~#0000FF^^1~4219.5~-2166~0~1~end~~~#0000FF^^0~4217~-2165^^0~M 4220 -2162 L 4223 -2165 L 4220 -2168#@$P~show~0~2~4210~-2155~180~gge372743~0^^4210~-2155^^M 4210 -2155 h 10~#880000^^1~4223.7~-2151~0~2~start~~~#0000FF^^1~4219.5~-2156~0~2~end~~~#0000FF^^0~4217~-2155^^0~M 4220 -2152 L 4223 -2155 L 4220 -2158#@$P~show~0~3~4210~-2145~180~gge372764~0^^4210~-2145^^M 4210 -2145 h 10~#880000^^1~4223.7~-2141~0~3~start~~~#0000FF^^1~4219.5~-2146~0~3~end~~~#0000FF^^0~4217~-2145^^0~M 4220 -2142 L 4223 -2145 L 4220 -2148#@$P~show~0~4~4210~-2135~180~gge372785~0^^4210~-2135^^M 4210 -2135 h 10~#880000^^1~4223.7~-2131~0~4~start~~~#0000FF^^1~4219.5~-2136~0~4~end~~~#0000FF^^0~4217~-2135^^0~M 4220 -2132 L 4223 -2135 L 4220 -2138","LIB~4660~-2225~package`HDR-TH_4P-P2.54-V_RE-H042TD-1190`BOM_Supplier`LCSC`BOM_Supplier Part`C160334`BOM_Manufacturer`JST`BOM_Manufacturer Part`RE-H042TD-1190(LF)(SN)`Contributor`LCSC`BOM_JLCPCB Part Class`Extended Part`spicePre`C`spiceSymbolName`RE-H042TD-1190 (LF)(SN)`~~0~ggebbbf478bdf6805bb~74a121d1141148f386015af5c97939a9~1ad1fb8b32674fa883fa52562b8b3ba6~0~~yes~none~d2bcd8ada2a747b6b8a01673a2b446af~1673340627~490aad90dd3a46fba378e753d0b75d36#@$T~N~4649.66~-2253.33~0~#000080~Arial~~~~~comment~RE-H042TD-1190 (LF)(SN)~1~start~gge372827~0~#@$T~P~4649.66~-2262.67~0~#000080~Arial~~~~~comment~CN4~1~start~gge372833~0~#@$R~4645~-2250~2~2~40~50~#880000~1~0~none~gge372839~0~#@$E~4650~-2245~1.5~1.5~#880000~1~0~#880000~gge372842~0#@$P~show~0~1~4635~-2240~180~gge372845~0^^4635~-2240^^M 4635 -2240 h 10~#880000^^1~4648.7~-2236~0~1~start~~~#0000FF^^1~4644.5~-2241~0~1~end~~~#0000FF^^0~4642~-2240^^0~M 4645 -2237 L 4648 -2240 L 4645 -2243#@$P~show~0~2~4635~-2230~180~gge372866~0^^4635~-2230^^M 4635 -2230 h 10~#880000^^1~4648.7~-2226~0~2~start~~~#0000FF^^1~4644.5~-2231~0~2~end~~~#0000FF^^0~4642~-2230^^0~M 4645 -2227 L 4648 -2230 L 4645 -2233#@$P~show~0~3~4635~-2220~180~gge372887~0^^4635~-2220^^M 4635 -2220 h 10~#880000^^1~4648.7~-2216~0~3~start~~~#0000FF^^1~4644.5~-2221~0~3~end~~~#0000FF^^0~4642~-2220^^0~M 4645 -2217 L 4648 -2220 L 4645 -2223#@$P~show~0~4~4635~-2210~180~gge372908~0^^4635~-2210^^M 4635 -2210 h 10~#880000^^1~4648.7~-2206~0~4~start~~~#0000FF^^1~4644.5~-2211~0~4~end~~~#0000FF^^0~4642~-2210^^0~M 4645 -2207 L 4648 -2210 L 4645 -2213","LIB~4895~-2245~package`HDR-TH_4P-P2.54-V_RE-H042TD-1190`BOM_Supplier`LCSC`BOM_Supplier Part`C160334`BOM_Manufacturer`JST`BOM_Manufacturer Part`RE-H042TD-1190(LF)(SN)`Contributor`LCSC`BOM_JLCPCB Part Class`Extended Part`spicePre`C`spiceSymbolName`RE-H042TD-1190 (LF)(SN)`~~0~ggec68769cca673da22~74a121d1141148f386015af5c97939a9~1ad1fb8b32674fa883fa52562b8b3ba6~0~~yes~none~d2bcd8ada2a747b6b8a01673a2b446af~1673340627~490aad90dd3a46fba378e753d0b75d36#@$T~N~4884.66~-2273.33~0~#000080~Arial~~~~~comment~RE-H042TD-1190 (LF)(SN)~1~start~gge372959~0~#@$T~P~4884.66~-2282.67~0~#000080~Arial~~~~~comment~CN5~1~start~gge372965~0~#@$R~4880~-2270~2~2~40~50~#880000~1~0~none~gge372971~0~#@$E~4885~-2265~1.5~1.5~#880000~1~0~#880000~gge372974~0#@$P~show~0~1~4870~-2260~180~gge372977~0^^4870~-2260^^M 4870 -2260 h 10~#880000^^1~4883.7~-2256~0~1~start~~~#0000FF^^1~4879.5~-2261~0~1~end~~~#0000FF^^0~4877~-2260^^0~M 4880 -2257 L 4883 -2260 L 4880 -2263#@$P~show~0~2~4870~-2250~180~gge372998~0^^4870~-2250^^M 4870 -2250 h 10~#880000^^1~4883.7~-2246~0~2~start~~~#0000FF^^1~4879.5~-2251~0~2~end~~~#0000FF^^0~4877~-2250^^0~M 4880 -2247 L 4883 -2250 L 4880 -2253#@$P~show~0~3~4870~-2240~180~gge373019~0^^4870~-2240^^M 4870 -2240 h 10~#880000^^1~4883.7~-2236~0~3~start~~~#0000FF^^1~4879.5~-2241~0~3~end~~~#0000FF^^0~4877~-2240^^0~M 4880 -2237 L 4883 -2240 L 4880 -2243#@$P~show~0~4~4870~-2230~180~gge373040~0^^4870~-2230^^M 4870 -2230 h 10~#880000^^1~4883.7~-2226~0~4~start~~~#0000FF^^1~4879.5~-2231~0~4~end~~~#0000FF^^0~4877~-2230^^0~M 4880 -2227 L 4883 -2230 L 4880 -2233","LIB~4185~-1920~package`HDR-TH_4P-P2.54-V_RE-H042TD-1190`BOM_Supplier`LCSC`BOM_Supplier Part`C160334`BOM_Manufacturer`JST`BOM_Manufacturer Part`RE-H042TD-1190(LF)(SN)`Contributor`LCSC`BOM_JLCPCB Part Class`Extended Part`spicePre`C`spiceSymbolName`RE-H042TD-1190 (LF)(SN)`~~0~gge8227da218f3ee02b~74a121d1141148f386015af5c97939a9~1ad1fb8b32674fa883fa52562b8b3ba6~0~~yes~yes~d2bcd8ada2a747b6b8a01673a2b446af~1673340627~490aad90dd3a46fba378e753d0b75d36#@$T~N~4174.66~-1948.33~0~#000080~Arial~~~~~comment~RE-H042TD-1190 (LF)(SN)~1~start~gge373079~0~#@$T~P~4174.66~-1957.67~0~#000080~Arial~~~~~comment~CN6~1~start~gge373085~0~#@$R~4170~-1945~2~2~40~50~#880000~1~0~none~gge373091~0~#@$E~4175~-1940~1.5~1.5~#880000~1~0~#880000~gge373094~0#@$P~show~0~1~4160~-1935~180~gge373097~0^^4160~-1935^^M 4160 -1935 h 10~#880000^^1~4173.7~-1931~0~1~start~~~#0000FF^^1~4169.5~-1936~0~1~end~~~#0000FF^^0~4167~-1935^^0~M 4170 -1932 L 4173 -1935 L 4170 -1938#@$P~show~0~2~4160~-1925~180~gge373118~0^^4160~-1925^^M 4160 -1925 h 10~#880000^^1~4173.7~-1921~0~2~start~~~#0000FF^^1~4169.5~-1926~0~2~end~~~#0000FF^^0~4167~-1925^^0~M 4170 -1922 L 4173 -1925 L 4170 -1928#@$P~show~0~3~4160~-1915~180~gge373139~0^^4160~-1915^^M 4160 -1915 h 10~#880000^^1~4173.7~-1911~0~3~start~~~#0000FF^^1~4169.5~-1916~0~3~end~~~#0000FF^^0~4167~-1915^^0~M 4170 -1912 L 4173 -1915 L 4170 -1918#@$P~show~0~4~4160~-1905~180~gge373160~0^^4160~-1905^^M 4160 -1905 h 10~#880000^^1~4173.7~-1901~0~4~start~~~#0000FF^^1~4169.5~-1906~0~4~end~~~#0000FF^^0~4167~-1905^^0~M 4170 -1902 L 4173 -1905 L 4170 -1908","F~part_netLabel_netPort~4210~-2135~0~gge373196~~0^^4210~-2135^^GPIO39~#0000FF~4188~-2131.388~0~end~1~Times New Roman~8pt~gge373202^^PL~4210 -2135 4205 -2130 4190 -2130 4190 -2140 4205 -2140 4210 -2135~#0000FF~1~0~transparent~gge373208~0","F~part_netLabel_netPort~4210~-2145~0~gge373217~~0^^4210~-2145^^GPIO36~#0000FF~4188~-2141.388~0~end~1~Times New Roman~8pt~gge373223^^PL~4210 -2145 4205 -2140 4190 -2140 4190 -2150 4205 -2150 4210 -2145~#0000FF~1~0~transparent~gge373229~0","J~5110~-2020~2.5~#CC0000~gge330280~0","J~5110~-2125~2.5~#CC0000~gge330289~0","J~4980~-1815~2.5~#CC0000~gge330298~0","J~4910~-2045~2.5~#CC0000~gge330325~0","J~4725~-1745~2.5~#CC0000~gge330361~0","J~4765~-1660~2.5~#CC0000~gge330397~0","J~4845~-2100~2.5~#CC0000~gge330478~0","J~4845~-2085~2.5~#CC0000~gge330487~0","J~4840~-2085~2.5~#CC0000~gge330496~0","J~4895~-2525~2.5~#CC0000~gge335053~0","J~4895~-2510~2.5~#CC0000~gge335062~0","J~5085~-2510~2.5~#CC0000~gge335071~0","J~5085~-2450~2.5~#CC0000~gge335080~0","J~5085~-2510~2.5~#CC0000~gge335098~0","J~4895~-2470~2.5~#CC0000~gge335107~0","J~4895~-2490~2.5~#CC0000~gge335116~0","J~4840~-2525~2.5~#CC0000~gge335125~0","J~4745~-2460~2.5~#CC0000~gge335134~0","J~5085~-2460~2.5~#CC0000~gge356735~0","J~5085~-2500~2.5~#CC0000~gge356736~0","J~4330~-1830~2.5~#CC0000~gge362331~0","J~4470~-1850~2.5~#CC0000~gge362821~0","J~4225~-2495~2.5~#CC0000~gge363316~0","J~4125~-2495~2.5~#CC0000~gge363325~0","J~4125~-2540~2.5~#CC0000~gge363334~0","J~4225~-2540~2.5~#CC0000~gge363343~0","J~4125~-2285~2.5~#CC0000~gge363352~0","J~4225~-2285~2.5~#CC0000~gge363361~0","J~4225~-2315~2.5~#CC0000~gge364904~0","J~4765~-1820~2.5~#CC0000~gge365789~0","J~4615~-1700~2.5~#CC0000~gge368749~0","J~4700~-1845~2.5~#CC0000~gge368831~0","J~4980~-1920~2.5~#CC0000~gge368835~0","J~4345~-1860~2.5~#CC0000~gge368872~0","J~4485~-1680~2.5~#CC0000~gge368935~0","J~4840~-2460~2.5~#CC0000~gge335044~0","J~4585~-2055~2.5~#CC0000~gge369006~0","J~4585~-2100~2.5~#CC0000~gge369587~0","J~4585~-2140~2.5~#CC0000~gge369588~0","J~4310~-1680~2.5~#CC0000~gge369736~0","J~5090~-1810~2.5~#CC0000~gge370224~0","J~4115~-2315~2.5~#CC0000~gge370429~0","J~4125~-2450~2.5~#CC0000~gge371570~0","J~4225~-2450~2.5~#CC0000~gge371574~0","J~4225~-2430~2.5~#CC0000~gge371578~0","J~4125~-2430~2.5~#CC0000~gge371582~0","J~4125~-2360~2.5~#CC0000~gge371595~0","J~4225~-2360~2.5~#CC0000~gge371599~0","J~4125~-2385~2.5~#CC0000~gge371651~0","J~4125~-2405~2.5~#CC0000~gge371655~0","J~4225~-2405~2.5~#CC0000~gge371659~0","J~4235~-2475~2.5~#CC0000~gge372059~0","J~4110~-2475~2.5~#CC0000~gge372063~0","J~4125~-2520~2.5~#CC0000~gge372127~0","J~4225~-2520~2.5~#CC0000~gge372131~0"],"BBox":{"x":3110,"y":-2600,"width":2115,"height":978.9},"colors":[]}}],"docType":5,"title":"ESP32-Chademo","name":"ESP32-Chademo"} \ No newline at end of file diff --git a/Hardware/BOM_PCB_ESP32-Chademo_2_Layer_2023-02-13.csv b/Hardware/BOM_PCB_ESP32-Chademo_2_Layer_2023-02-13.csv new file mode 100644 index 0000000000000000000000000000000000000000..f5913b49cee78fc1fdcdd22128db50bd49166fae GIT binary patch literal 5026 zcmb`K%W@lK5QYCLR^};ES>dY4%;>JAE!*)$wuLUXvr185zy&0!5HH|Scmv*!Cjh=P zJx3#rE!jyZm8AJ^-RE@o-`(@?KgVf5ZKd<{ZTdCc@U+kGZ|OGunBFk=A-zrSnLXtH zEu(jgZdv)j+&Aft9eTdy`#Upd#rQ7$!2fs5-Ld%bN#ypRaw39lF8tIbRO*#U_Q_wt&{+S z=X~keQl>A*N7 z&580`Q2s>jdKjM~r$@v%&H|Ou?h+UBwmv=V+rsOWpJm-S>_YMsJ+s0mP4;N7V#yJ7 zRh(6Zh-}dUX@m7Ca&<==+>c2q$^15HkF|$6bwS&&SzJB{ZoN`V8_gLR)mb2{t{l+f zhE${W%E)Y$Bb58%=DY^|e!*4DgLQR-^kk;GGs>S;+}WO&MP?SN9II#P1Z!$%hTM!< zb3H(o;?CoG4pjE*!NDH&4U!&3oaYrUcifziW4)#okcER5!mb=jyjcnS1~T#b%re79Hk-#h{$empnKGm9lr` zBj1paQO%Folb0E}L+02c3eJm_OjcStDw0R-SCK>)j&K zqP|2uQFJYjoe!!i@-TL>l#Nfou4<)^E8$bH>xNX-$jD`(KyHsJ)1Q_ss=7Eq_cHGF zxym-TCn8rx1y=v@vAL>^-&_NX)jAZDws?hgwu01ASkI}JQO7BXpORDCMf8U6jMH(V z`r4~mRnah6L{c4{y|IceGFbizR#azUG)8Bus`KmOmm_+)eJrX>t)4HqRCZP7Uygw} zo{2rG1jj^UgBWu^F<=xmKu=@#s((;TQD#(?h#KH-!v5HdMm0Eej?lN-3(9kr_SP%9RcEXFo>ShxU%%wZ@SJPH`U-9i;#IHG;Ri*V z{HC~&PgK$T938H_r(LVn+LBeRPl`&bYMnERYAq@H+Cz_3>mK&eZFIaxCYIOC*7bUd z{q&9%Zz)ZlI*U`T-s*F!-bJ@JaHxjwF7Bebu<%~Lu!7|7Ag|7~IvturmfjTHGuM45 zpD*JIHoAvq`#ns%R z{!(3;Gib2XduOmz=82Q)`?K`d7co+md_g?fuJtVM`PD2RGU_$x9CY&6Mbew(h&T2> zr+;5>uR*L%MRPSKMrg$H{Ib7o@24S*)1Qw}S;7%$g!ZPo#7ppNN0Z3W k+v^OQyT_g5f$;PH|33Ga?)7gqdJj-+7@KaKx;?S`52qy-SO5S3 literal 0 HcmV?d00001 diff --git a/Hardware/Gerber_PCB_ESP32-Chademo_2_Layer.zip b/Hardware/Gerber_PCB_ESP32-Chademo_2_Layer.zip new file mode 100644 index 0000000000000000000000000000000000000000..e23e27cde5140a13ac080dc4043e7cfebf785c74 GIT binary patch literal 91986 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

Bk$~us^YK1e;gKmoM6~l3iN*+DQTYmS=6sYG8 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 literal 0 HcmV?d00001 diff --git a/Hardware/PickAndPlace_PCB_ESP32-Chademo_2_Layer_2023-02-13.csv b/Hardware/PickAndPlace_PCB_ESP32-Chademo_2_Layer_2023-02-13.csv new file mode 100644 index 0000000000000000000000000000000000000000..8eb6e3858e3320f08f48016936ba21266a909a75 GIT binary patch literal 10656 zcmb_i+iu%N5M7{8$yXS8Y98cL6m@%aY$rAn+k)gv`V_QCS_EyAqD>y!Kk84mJ!eOw zomrA5b%7CyTn%^U%ovz0m`~;Pn&WRU{uiF%I?K2U*ZqjAPZ&AH_iy<75LbN~ zo?&E&&nNM!2(wUx@%nxk=HWPuFvcfDro{bmn1;%X^_QE)`NrnirulByYZV(kzQSV9 zf@oW=M^B+?UE6V(xY-M=SU}%|K(y_aEAiYhY%w>_%9x)|wH-!n#7e_pH9iT~nCl%Z z-KP5hRxPnw=vF#+OafP|l^G$Oq3h##^yxv5PB2dXT{fAi$jj{eD^MWAlCn*;9aao^JwetEi z;xzJ;{^!W-D@4>PyjW+$D%>FR&jNor!ss$w;_emhB_i7_&TO8!sC!&8_ad=PGk@3T zRBSfFR;Wb3qJptf9fcobC47%M`JsmQZWD1td5Jt4K<9VBTVeG%?jB-Q;?)9iat!$? zuHV2u%%B3-FL0-pDB(-ym5)+N`nooNM1M(IVwP14W`mEMW=mX0sf%zApRpnq_+C0Y z3}gLhtJL%vaSvgUlqE7&V7@fAza;CFpR)y zLm;RudumSfk(1oB7OBstx_4>5g#LnU2^~G_2+ty;%(P@MBDqFWXSMr?P zqw%3Q%>wd|H){@Zw~&!HGnp7!HFqPp9}|6w?g zxjuKy!1&GCY7qIaj~sK$q9?nud$wJV;e)6@6j6mb`uFV z_?^Ab3ccVNEK%Wkc0KIBN?bkQQ>8 z{uklz4N`KI)Xa<62Mv(Z7aM%E5m8k@c#qK~@_m5cSw~Aqp5cxWku1x5#}nC^*27qYdu#SqcBfewG~K^5&wa$(=M}m3I=iB-4xSy1gsH35;}{97M#-DZ zj{PLrSru*_wTb0~UG1X1?O~!py7$sWgVd3nFQneusA-aut}T*WgJ{`L-W&iyKLfOU*Wm4k%&C$3kL zbAkM9kbE-3U+!bit7YV!ZaKxCcq8e1)S@ptg&TAMxA;{3r90s6Ku=7hQ=fodt)-)?bc1GtO+vJo5W4wSnyy7VsjyGlkzuT(5w4zS-+4dgaPP zqPKpPN^hfIv3E%kc?IlNPIAdc&hE&S6AytruUTXOGKJN&j||VHSotk#VN*Z0J?aJg ze}_0dN8hIrFL!!MFhGZRwyuZF0(Ppb?aBUC{5H_t@!2(@HYN&!iC%F~dC0Hc9%cTQWy9fpv*4Y3}!Jx4>6M zOVRtRM_PsC1eZO%^!Gdil@nZMnw;SBM3nETI0r56>n|%uUVpcdls7Pb$4XXUwAgr8 z%(f<-U$v>Vvi=C|<$UPdLr{M%B)4uIRj9soIn5B|%ulj&zWJe*kkex22mhoST z>->Cz`y*zm?c^nU?MRc9jhUw36~9I??OvGoT@tbWZC4$yR6L^MRbnJwk%j0>a!?(o zc*LG7R1xb8R=3eEmh*eQZ6wKxyFNLvqDwO=YpB!QKrC9N1ZzCKA3slD3~v?m*8oWbXsx}DZR8*Zn+j&RxR&C zIjy(#rH>3*ob}RHfci}8PaCu3=C9~7ya(IQl^Ka-nuoX|ue#r@iZ}f}p^6OVYe|1O zsrGfW-EURjf=8Gq1+q!%M1d}mzGHXN-ciwJc^@Hrz#PLqauSV}i`8c-8rh2!;h%3* zW6ibvZH%0>`fji3)ULlAk#*0f8fzzz>#Gcy>&v|GG19b`++B*@m-m%wnru4^zZlC_ z>x}N!RHB3WraDsBw6BzOId-ltP4$c`*Hk(~_SQ)++QC~V5WMZWWXVg&h!B{R~0GdHKyu_orWl|ErO z>xqID@eV5q9=>%t%ubC~vD(TWYvQt}j|?s0_w4fa#=oghA6r{o!*lnrB3Y$eSf7Uf0m<}gmjD0& literal 0 HcmV?d00001 diff --git a/Hardware/README.txt b/Hardware/README.txt new file mode 100644 index 0000000..61b7848 --- /dev/null +++ b/Hardware/README.txt @@ -0,0 +1,9 @@ +

Dashboard/WiFi AP for canbus data

+How to use: + +At editor, open the document via: Top menu - File - Open - EasyEDA... , and select the json file, then open it at the editor, you can save it into a project. + + +如何使用: + +打开编辑器,通过:顶部菜单 - 文件 - 打开 - 立创EDA... ,选择 json 文件打开在编辑器,你可以保存文档进工程里面。 \ No newline at end of file diff --git a/ReadMe.md b/ReadMe.md new file mode 100644 index 0000000..904824d --- /dev/null +++ b/ReadMe.md @@ -0,0 +1,17 @@ +# CHAdeMOSoftware +This code will help you add CHAdeMO DC fast charging to your EV, whether it is OEM or DIY. Currently Untested + +Based on https://github.com/Isaac96/CHAdeMOSoftware + +# Required hardware +- CHAdeMO connector +- 2x contactors +- ESP32-Chademo Board +- Relay +- 1k pullup resistor +- Isabellenhutte IVT or IVT-S shunt + + + + +