commit 6bdf750c623e724270ddc62646e1c345b4844b52 Author: simon Date: Thu Aug 1 00:10:13 2019 +0200 first commit diff --git a/01_base_glass_ikea_rund_Version2.scad b/01_base_glass_ikea_rund_Version2.scad new file mode 100644 index 0000000..166a6dd --- /dev/null +++ b/01_base_glass_ikea_rund_Version2.scad @@ -0,0 +1,48 @@ +//use +//use + +$fn=50; //100 +h = 20; + + + +//motor-rad +//color("blue") + +union(){ + + +difference(){ +union(){ + translate([0, 0, 0]) cylinder (h+1.5,35,35); //platform zylinder +// translate([0, 0, 50]) cube ([60,5,6]); //Motorwelle + +} + //translate([0, 0, 2]) cylinder (20,33,33,$fn=8); //ausschnitt glas 8eck + translate([0, 0, 2]) cylinder (22,31.5,31.5); //platform zylinder + translate([0, 0, 16]) cylinder (4,33,33); //dichtring + +//color("blue") translate([-10.5, 6, 2]) cube ([21,26,4]); //Charger module +//color("blue") translate([-10.5, 6, 6]) cube ([21,20,2]); //Charger space +//color("blue") translate([-10.5, 6, 6]) cube ([21,12,4]); //Charger space +//color("blue") translate([-4.5, 30, 2]) cube ([9,5.5,4]); //Charger usb +//color("red") translate([26-14-2, 18, h-6-11]) cube ([14,6,11]); //Power-Switch +//color("black") translate([24, 10, 3]) cube ([2,10,11]); //Power-Switch-cable +//color("red") translate([26-14-2, 16, 14-6]) cube ([14,2,2]);//Power-Switch-cable + + +//color("yellow") translate([-10, -10-8, 4]) cube ([20,24,15]); //WLAN module + + //lipo 50x35x3 +// translate([-26, -18, h-6-5]) cube ([52,36,5]); //AKKU +// color("red") translate([-5, -25, h-6-5]) cube ([10,6,5]); //LED +// color("red") translate([-5, 19, h-6-5]) cube ([10,6,5]); //LED +// color("red") translate([-2, -25, h-6-5-2]) cube ([4,50,2]); //LED kabel + +} + +// color("red") translate([-3, 18, 2]) cube ([6,1,6]); //support +// color("black") translate([-1, 27, 2]) cube ([1,7,6]); //support +// color("black") translate([10, 19, 3]) cube ([1,4,6]); //support + +} \ No newline at end of file diff --git a/Artnet/ola_recv_dmx.py b/Artnet/ola_recv_dmx.py new file mode 100755 index 0000000..6f1abdf --- /dev/null +++ b/Artnet/ola_recv_dmx.py @@ -0,0 +1,66 @@ +#!/usr/bin/env python +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Library General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +# +# ola_recv_dmx.py +# Copyright (C) 2005 Simon Newton + +"""Receive DMX data.""" + +import getopt +import textwrap +import sys +from ola.ClientWrapper import ClientWrapper + +__author__ = 'nomis52@gmail.com (Simon Newton)' + + +def NewData(data): + print(data) + + +def Usage(): + print(textwrap.dedent(""" + Usage: ola_recv_dmx.py --universe + + Display the DXM512 data for the universe. + + -h, --help Display this help message and exit. + -u, --universe Universe number.""")) + + +def main(): + try: + opts, args = getopt.getopt(sys.argv[1:], "hu:", ["help", "universe="]) + except getopt.GetoptError as err: + print(str(err)) + Usage() + sys.exit(2) + + universe = 1 + for o, a in opts: + if o in ("-h", "--help"): + Usage() + sys.exit() + elif o in ("-u", "--universe"): + universe = int(a) + + wrapper = ClientWrapper() + client = wrapper.Client() + client.RegisterUniverse(universe, client.REGISTER, NewData) + wrapper.Run() + + +if __name__ == "__main__": + main() diff --git a/Artnet/send-DMX.py b/Artnet/send-DMX.py new file mode 100644 index 0000000..6afe628 --- /dev/null +++ b/Artnet/send-DMX.py @@ -0,0 +1,39 @@ +#zeile aufnehmen und an glaeser senden +#python ola_recv_dmx.py | grep array + +#python ola_recv_dmx.py | python send-DMX.py + +import sys +import os + +i = 1 +line = sys.stdin.readline() +while line: + line = sys.stdin.readline() + data = line.split("[")[1] + ch1 = int(data.split(", ")[0]) + ch2 = int(data.split(", ")[1]) + ch3 = int(data.split(", ")[2]) + ch4 = int(data.split(", ")[3]) + ch5 = int(data.split(", ")[4]) + ch6 = int(data.split(", ")[5]) + print (ch1,ch2,ch3,ch4,ch5,ch6) +# echo -n "170000070150000050" >/dev/udp/172.23.92.16/31302 + if i == 1: + +# 172.23.92.16 ist Lounge, 172.23.92.19 ist flur + cmd="/bin/bash -c \"echo -n \"%03i%03i%03i%03i%03i%03i\" >/dev/udp/172.23.92.16/31302\"" %(ch1,ch2,ch3,ch4,ch5,ch6) +# print cmd + os.system(cmd) + cmd="/bin/bash -c \"echo -n \"%03i%03i%03i%03i%03i%03i\" >/dev/udp/172.23.92.19/31302\"" %(ch1,ch2,ch3,ch4,ch5,ch6) + os.system(cmd) + os.system(cmd) + cmd="/bin/bash -c \"echo -n \"%03i%03i%03i%03i%03i%03i\" >/dev/udp/192.168.1.114/31302\"" %(ch1,ch2,ch3,ch4,ch5,ch6) + os.system(cmd) + cmd="/bin/bash -c \"echo -n \"%03i%03i%03i%03i%03i%03i\" >/dev/udp/192.168.1.202/31302\"" %(ch1,ch2,ch3,ch4,ch5,ch6) + os.system(cmd) + + + i = i+1 + if i > 5: + i = 0 diff --git a/Artnet/send-DMX_Arduino.py b/Artnet/send-DMX_Arduino.py new file mode 100644 index 0000000..ee09e0f --- /dev/null +++ b/Artnet/send-DMX_Arduino.py @@ -0,0 +1,65 @@ +#zeile aufnehmen und an glaeser senden +#python ola_recv_dmx.py | grep array + +#python ola_recv_dmx.py | python send-DMX.py +#python ola_recv_dmx.py | python3 send-DMX_Arduino.py + +import sys +import os +import struct +import socket + +UDP_IP = "172.23.92.15" + +UDP_PORT = 49152 +sock = socket.socket(socket.AF_INET, # Internet + socket.SOCK_DGRAM) # UDP + + +i = 1 +line = sys.stdin.readline() +while line: + line = sys.stdin.readline() + data = line.split("[")[1] + ch1 = int(data.split(", ")[0]) + ch2 = int(data.split(", ")[1]) + ch3 = int(data.split(", ")[2]) + ch4 = int(data.split(", ")[3]) + ch5 = int(data.split(", ")[4]) + ch6 = int(data.split(", ")[5]) + print (ch1,ch2,ch3,ch4,ch5,ch6) +# echo -n "170000070150000050" >/dev/udp/172.23.92.16/31302 + if (i == 1 or i == 6 or i == 11 or i == 16): + +# 172.23.92.16 ist Lounge, 172.23.92.19 ist flur + cmd="/bin/bash -c \"echo -n \"%03i%03i%03i%03i%03i%03i\" >/dev/udp/172.23.92.16/31302\"" %(ch1,ch2,ch3,ch4,ch5,ch6) + os.system(cmd) + +# 172.23.92.19 ist flur + cmd="/bin/bash -c \"echo -n \"%03i%03i%03i%03i%03i%03i\" >/dev/udp/172.23.92.19/31302\"" %(ch1,ch2,ch3,ch4,ch5,ch6) + os.system(cmd) + os.system(cmd) +# gläser + # cmd="/bin/bash -c \"echo -n \"%03i%03i%03i%03i%03i%03i\" >/dev/udp/192.168.1.114/31302\"" %(ch1,ch2,ch3,ch4,ch5,ch6) + # os.system(cmd) + # cmd="/bin/bash -c \"echo -n \"%03i%03i%03i%03i%03i%03i\" >/dev/udp/192.168.1.202/31302\"" %(ch1,ch2,ch3,ch4,ch5,ch6) + # os.system(cmd) + # cmd="/bin/bash -c \"echo -n \"%03i%03i%03i%03i%03i%03i\" >/dev/udp/172.23.92.154/31302\"" %(ch1,ch2,ch3,ch4,ch5,ch6) + # os.system(cmd) + # cmd="/bin/bash -c \"echo -n \"%03i%03i%03i%03i%03i%03i\" >/dev/udp/172.23.92.153/31302\"" %(ch1,ch2,ch3,ch4,ch5,ch6) + # os.system(cmd) + # cmd="/bin/bash -c \"echo -n \"%03i%03i%03i%03i%03i%03i\" >/dev/udp/172.23.92.185/31302\"" %(ch1,ch2,ch3,ch4,ch5,ch6) + # os.system(cmd) +# neue gläser + # cmd="/bin/bash -c \"echo -n \"%03i%03i%03i%03i%03i%03i\" >/dev/udp/172.23.92.191/31302\"" %(ch1,ch2,ch3,ch4,ch5,ch6) + # os.system(cmd) + +# Fensterbogenbeleuchtung + if i == 20: + data = [ch2,ch1,ch3]*116 + sock.sendto(b'r' + struct.pack(">H", len(data) + 2) + b'\x00\x00' + bytes(data), (UDP_IP, UDP_PORT)) + + + i = i+1 + if i > 20: + i = 0 diff --git a/Glas/fp-lib-table b/Glas/fp-lib-table new file mode 100644 index 0000000..10d9fde --- /dev/null +++ b/Glas/fp-lib-table @@ -0,0 +1,3 @@ +(fp_lib_table + (lib (name receive_v1_1)(type KiCad)(uri "$(KIPRJMOD)/receive_v1_1.pretty")(options "")(descr "")) +) diff --git a/Glas/gerber/receive_v1_1-B.Mask.gbr b/Glas/gerber/receive_v1_1-B.Mask.gbr new file mode 100644 index 0000000..0df7c7a --- /dev/null +++ b/Glas/gerber/receive_v1_1-B.Mask.gbr @@ -0,0 +1,15 @@ +G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,5.0.0+dfsg1-1~bpo9+1* +G04 #@! TF.CreationDate,2018-12-28T11:25:29+01:00* +G04 #@! TF.ProjectId,receive_v1_1,726563656976655F76315F312E6B6963,rev?* +G04 #@! TF.SameCoordinates,Original* +G04 #@! TF.FileFunction,Soldermask,Bot* +G04 #@! TF.FilePolarity,Negative* +%FSLAX46Y46*% +G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* +G04 Created by KiCad (PCBNEW 5.0.0+dfsg1-1~bpo9+1) date Fri Dec 28 11:25:29 2018* +%MOMM*% +%LPD*% +G01* +G04 APERTURE LIST* +G04 APERTURE END LIST* +M02* diff --git a/Glas/gerber/receive_v1_1-B.Paste.gbr b/Glas/gerber/receive_v1_1-B.Paste.gbr new file mode 100644 index 0000000..27d8c30 --- /dev/null +++ b/Glas/gerber/receive_v1_1-B.Paste.gbr @@ -0,0 +1,15 @@ +G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,5.0.0+dfsg1-1~bpo9+1* +G04 #@! TF.CreationDate,2018-12-28T11:25:29+01:00* +G04 #@! TF.ProjectId,receive_v1_1,726563656976655F76315F312E6B6963,rev?* +G04 #@! TF.SameCoordinates,Original* +G04 #@! TF.FileFunction,Paste,Bot* +G04 #@! TF.FilePolarity,Positive* +%FSLAX46Y46*% +G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* +G04 Created by KiCad (PCBNEW 5.0.0+dfsg1-1~bpo9+1) date Fri Dec 28 11:25:29 2018* +%MOMM*% +%LPD*% +G01* +G04 APERTURE LIST* +G04 APERTURE END LIST* +M02* diff --git a/Glas/gerber/receive_v1_1-B.SilkS.gbr b/Glas/gerber/receive_v1_1-B.SilkS.gbr new file mode 100644 index 0000000..872790f --- /dev/null +++ b/Glas/gerber/receive_v1_1-B.SilkS.gbr @@ -0,0 +1,15 @@ +G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,5.0.0+dfsg1-1~bpo9+1* +G04 #@! TF.CreationDate,2018-12-28T11:25:29+01:00* +G04 #@! TF.ProjectId,receive_v1_1,726563656976655F76315F312E6B6963,rev?* +G04 #@! TF.SameCoordinates,Original* +G04 #@! TF.FileFunction,Legend,Bot* +G04 #@! TF.FilePolarity,Positive* +%FSLAX46Y46*% +G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* +G04 Created by KiCad (PCBNEW 5.0.0+dfsg1-1~bpo9+1) date Fri Dec 28 11:25:29 2018* +%MOMM*% +%LPD*% +G01* +G04 APERTURE LIST* +G04 APERTURE END LIST* +M02* diff --git a/Glas/gerber/receive_v1_1-Bottom.gbr b/Glas/gerber/receive_v1_1-Bottom.gbr new file mode 100644 index 0000000..eb18ed0 --- /dev/null +++ b/Glas/gerber/receive_v1_1-Bottom.gbr @@ -0,0 +1,2359 @@ +G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,5.0.0+dfsg1-1~bpo9+1* +G04 #@! TF.CreationDate,2018-12-28T11:25:29+01:00* +G04 #@! TF.ProjectId,receive_v1_1,726563656976655F76315F312E6B6963,rev?* +G04 #@! TF.SameCoordinates,Original* +G04 #@! TF.FileFunction,Copper,L2,Bot,Signal* +G04 #@! TF.FilePolarity,Positive* +%FSLAX46Y46*% +G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* +G04 Created by KiCad (PCBNEW 5.0.0+dfsg1-1~bpo9+1) date Fri Dec 28 11:25:29 2018* +%MOMM*% +%LPD*% +G01* +G04 APERTURE LIST* +G04 #@! TA.AperFunction,ViaPad* +%ADD10C,1.500000*% +G04 #@! TD* +G04 #@! TA.AperFunction,Conductor* +%ADD11C,1.016000*% +G04 #@! TD* +G04 APERTURE END LIST* +D10* +G04 #@! TO.N,/receive_v1_1_1/IND* +X103104850Y-104998600D03* +X88525250Y-104897000D03* +X88669547Y-106680000D03* +X103113926Y-103335161D03* +G04 #@! TD* +D11* +G04 #@! TO.N,/receive_v1_1_1/IND* +X117786050Y-78074600D02* +X117786050Y-78074600D01* +X117786050Y-78074600D02* +X116755113Y-78095364D01* +X116755113Y-78095364D02* +X115725848Y-78157623D01* +X115725848Y-78157623D02* +X114699925Y-78261276D01* +X114699925Y-78261276D02* +X113679008Y-78406155D01* +X113679008Y-78406155D02* +X112664752Y-78592024D01* +X112664752Y-78592024D02* +X111658803Y-78818582D01* +X111658803Y-78818582D02* +X110662793Y-79085463D01* +X110662793Y-79085463D02* +X109678336Y-79392232D01* +X109678336Y-79392232D02* +X108707030Y-79738392D01* +X108707030Y-79738392D02* +X107750450Y-80123382D01* +X107750450Y-80123382D02* +X106810149Y-80546578D01* +X106810149Y-80546578D02* +X105887650Y-81007292D01* +X105887650Y-81007292D02* +X104984450Y-81504778D01* +X104984450Y-81504778D02* +X104102015Y-82038229D01* +X104102015Y-82038229D02* +X103241775Y-82606779D01* +X103241775Y-82606779D02* +X102405126Y-83209507D01* +X102405126Y-83209507D02* +X101593425Y-83845434D01* +X101593425Y-83845434D02* +X100807988Y-84513530D01* +X100807988Y-84513530D02* +X100050090Y-85212710D01* +X100050090Y-85212710D02* +X99320960Y-85941840D01* +X99320960Y-85941840D02* +X98621780Y-86699738D01* +X98621780Y-86699738D02* +X97953684Y-87485175D01* +X97953684Y-87485175D02* +X97317757Y-88296876D01* +X97317757Y-88296876D02* +X96715029Y-89133525D01* +X96715029Y-89133525D02* +X96146479Y-89993765D01* +X96146479Y-89993765D02* +X95613028Y-90876200D01* +X95613028Y-90876200D02* +X95115542Y-91779400D01* +X95115542Y-91779400D02* +X94654828Y-92701899D01* +X94654828Y-92701899D02* +X94231632Y-93642200D01* +X94231632Y-93642200D02* +X93846642Y-94598780D01* +X93846642Y-94598780D02* +X93500482Y-95570086D01* +X93500482Y-95570086D02* +X93193713Y-96554543D01* +X93193713Y-96554543D02* +X92926832Y-97550553D01* +X92926832Y-97550553D02* +X92700274Y-98556502D01* +X92700274Y-98556502D02* +X92514405Y-99570758D01* +X92514405Y-99570758D02* +X92369526Y-100591675D01* +X92369526Y-100591675D02* +X92265873Y-101617598D01* +X92265873Y-101617598D02* +X92203614Y-102646863D01* +X92203614Y-102646863D02* +X92182850Y-103677800D01* +X92182850Y-103677800D02* +X92203614Y-104708737D01* +X92203614Y-104708737D02* +X92265873Y-105738002D01* +X92265873Y-105738002D02* +X92369526Y-106763925D01* +X92369526Y-106763925D02* +X92514405Y-107784842D01* +X92514405Y-107784842D02* +X92700274Y-108799098D01* +X92700274Y-108799098D02* +X92926832Y-109805047D01* +X92926832Y-109805047D02* +X93193713Y-110801057D01* +X93193713Y-110801057D02* +X93500482Y-111785514D01* +X93500482Y-111785514D02* +X93846642Y-112756820D01* +X93846642Y-112756820D02* +X94231632Y-113713400D01* +X94231632Y-113713400D02* +X94654828Y-114653701D01* +X94654828Y-114653701D02* +X95115542Y-115576200D01* +X95115542Y-115576200D02* +X95613028Y-116479400D01* +X95613028Y-116479400D02* +X96146479Y-117361835D01* +X96146479Y-117361835D02* +X96715029Y-118222075D01* +X96715029Y-118222075D02* +X97317757Y-119058724D01* +X97317757Y-119058724D02* +X97953684Y-119870425D01* +X97953684Y-119870425D02* +X98621780Y-120655862D01* +X98621780Y-120655862D02* +X99320960Y-121413760D01* +X99320960Y-121413760D02* +X100050090Y-122142890D01* +X100050090Y-122142890D02* +X100807988Y-122842070D01* +X100807988Y-122842070D02* +X101593425Y-123510166D01* +X101593425Y-123510166D02* +X102405126Y-124146093D01* +X102405126Y-124146093D02* +X103241775Y-124748821D01* +X103241775Y-124748821D02* +X104102015Y-125317371D01* +X104102015Y-125317371D02* +X104984450Y-125850822D01* +X104984450Y-125850822D02* +X105887650Y-126348308D01* +X105887650Y-126348308D02* +X106810149Y-126809022D01* +X106810149Y-126809022D02* +X107750450Y-127232218D01* +X107750450Y-127232218D02* +X108707030Y-127617208D01* +X108707030Y-127617208D02* +X109678336Y-127963368D01* +X109678336Y-127963368D02* +X110662793Y-128270137D01* +X110662793Y-128270137D02* +X111658803Y-128537018D01* +X111658803Y-128537018D02* +X112664752Y-128763576D01* +X112664752Y-128763576D02* +X113679008Y-128949445D01* +X113679008Y-128949445D02* +X114699925Y-129094324D01* +X114699925Y-129094324D02* +X115725848Y-129197977D01* +X115725848Y-129197977D02* +X116755113Y-129260236D01* +X116755113Y-129260236D02* +X117786050Y-129281000D01* +X117786050Y-129281000D02* +X117786050Y-129281000D01* +X117786050Y-129281000D02* +X118793071Y-129260454D01* +X118793071Y-129260454D02* +X119798416Y-129198850D01* +X119798416Y-129198850D02* +X120800412Y-129096291D01* +X120800412Y-129096291D02* +X121797391Y-128952947D01* +X121797391Y-128952947D02* +X122787693Y-128769057D01* +X122787693Y-128769057D02* +X123769670Y-128544927D01* +X123769670Y-128544927D02* +X124741689Y-128280930D01* +X124741689Y-128280930D02* +X125702130Y-127977506D01* +X125702130Y-127977506D02* +X126649396Y-127635159D01* +X126649396Y-127635159D02* +X127581909Y-127254459D01* +X127581909Y-127254459D02* +X128498119Y-126836040D01* +X128498119Y-126836040D02* +X129396499Y-126380599D01* +X129396499Y-126380599D02* +X130275555Y-125888893D01* +X130275555Y-125888893D02* +X131133823Y-125361740D01* +X131133823Y-125361740D02* +X131969875Y-124800019D01* +X131969875Y-124800019D02* +X132782320Y-124204664D01* +X132782320Y-124204664D02* +X133569805Y-123576666D01* +X133569805Y-123576666D02* +X134331019Y-122917070D01* +X134331019Y-122917070D02* +X135064696Y-122226974D01* +X135064696Y-122226974D02* +X135769614Y-121507527D01* +X135769614Y-121507527D02* +X136444600Y-120759926D01* +X136444600Y-120759926D02* +X137088531Y-119985415D01* +X137088531Y-119985415D02* +X137700335Y-119185284D01* +X137700335Y-119185284D02* +X138278994Y-118360864D01* +X138278994Y-118360864D02* +X138823544Y-117513527D01* +X138823544Y-117513527D02* +X139333079Y-116644685D01* +X139333079Y-116644685D02* +X139806751Y-115755782D01* +X139806751Y-115755782D02* +X140243772Y-114848298D01* +X140243772Y-114848298D02* +X140643415Y-113923744D01* +X140643415Y-113923744D02* +X141005013Y-112983659D01* +X141005013Y-112983659D02* +X141327966Y-112029607D01* +X141327966Y-112029607D02* +X141611736Y-111063176D01* +X141611736Y-111063176D02* +X141855850Y-110085975D01* +X141855850Y-110085975D02* +X142059903Y-109099630D01* +X142059903Y-109099630D02* +X142223554Y-108105783D01* +X142223554Y-108105783D02* +X142346531Y-107106087D01* +X142346531Y-107106087D02* +X142428629Y-106102208D01* +X142428629Y-106102208D02* +X142469713Y-105095815D01* +X142469713Y-105095815D02* +X142469713Y-104088585D01* +X142469713Y-104088585D02* +X142428629Y-103082192D01* +X142428629Y-103082192D02* +X142346531Y-102078313D01* +X142346531Y-102078313D02* +X142223554Y-101078617D01* +X142223554Y-101078617D02* +X142059903Y-100084770D01* +X142059903Y-100084770D02* +X141855850Y-99098425D01* +X141855850Y-99098425D02* +X141611736Y-98121224D01* +X141611736Y-98121224D02* +X141327966Y-97154793D01* +X141327966Y-97154793D02* +X141005013Y-96200741D01* +X141005013Y-96200741D02* +X140643415Y-95260656D01* +X140643415Y-95260656D02* +X140243772Y-94336102D01* +X140243772Y-94336102D02* +X139806751Y-93428618D01* +X139806751Y-93428618D02* +X139333079Y-92539715D01* +X139333079Y-92539715D02* +X138823544Y-91670873D01* +X138823544Y-91670873D02* +X138278994Y-90823536D01* +X138278994Y-90823536D02* +X137700335Y-89999116D01* +X137700335Y-89999116D02* +X137088531Y-89198985D01* +X137088531Y-89198985D02* +X136444600Y-88424474D01* +X136444600Y-88424474D02* +X135769614Y-87676873D01* +X135769614Y-87676873D02* +X135064696Y-86957426D01* +X135064696Y-86957426D02* +X134331019Y-86267330D01* +X134331019Y-86267330D02* +X133569805Y-85607734D01* +X133569805Y-85607734D02* +X132782320Y-84979736D01* +X132782320Y-84979736D02* +X131969875Y-84384381D01* +X131969875Y-84384381D02* +X131133823Y-83822660D01* +X131133823Y-83822660D02* +X130275555Y-83295507D01* +X130275555Y-83295507D02* +X129396499Y-82803801D01* +X129396499Y-82803801D02* +X128498119Y-82348360D01* +X128498119Y-82348360D02* +X127581909Y-81929941D01* +X127581909Y-81929941D02* +X126649396Y-81549241D01* +X126649396Y-81549241D02* +X125702130Y-81206894D01* +X125702130Y-81206894D02* +X124741689Y-80903470D01* +X124741689Y-80903470D02* +X123769670Y-80639473D01* +X123769670Y-80639473D02* +X122787693Y-80415343D01* +X122787693Y-80415343D02* +X121797391Y-80231453D01* +X121797391Y-80231453D02* +X120800412Y-80088109D01* +X120800412Y-80088109D02* +X119798416Y-79985550D01* +X119798416Y-79985550D02* +X117786050Y-79903400D01* +X117786050Y-79903400D02* +X117786050Y-79903400D01* +X117786050Y-79903400D02* +X116803574Y-79923709D01* +X116803574Y-79923709D02* +X115822776Y-79984602D01* +X115822776Y-79984602D02* +X114845332Y-80085974D01* +X114845332Y-80085974D02* +X113872912Y-80227652D01* +X113872912Y-80227652D02* +X112907178Y-80409394D01* +X112907178Y-80409394D02* +X111949780Y-80630890D01* +X111949780Y-80630890D02* +X111002352Y-80891762D01* +X111002352Y-80891762D02* +X110066515Y-81191563D01* +X110066515Y-81191563D02* +X109143866Y-81529781D01* +X109143866Y-81529781D02* +X108235982Y-81905839D01* +X108235982Y-81905839D02* +X107344415Y-82319093D01* +X107344415Y-82319093D02* +X106470686Y-82768839D01* +X106470686Y-82768839D02* +X105616290Y-83254308D01* +X105616290Y-83254308D02* +X104782686Y-83774669D01* +X104782686Y-83774669D02* +X103971297Y-84329035D01* +X103971297Y-84329035D02* +X103183511Y-84916458D01* +X103183511Y-84916458D02* +X102420673Y-85535934D01* +X102420673Y-85535934D02* +X101684087Y-86186405D01* +X101684087Y-86186405D02* +X100975011Y-86866761D01* +X100975011Y-86866761D02* +X100294655Y-87575837D01* +X100294655Y-87575837D02* +X99644184Y-88312423D01* +X99644184Y-88312423D02* +X99024708Y-89075261D01* +X99024708Y-89075261D02* +X98437285Y-89863047D01* +X98437285Y-89863047D02* +X97882919Y-90674436D01* +X97882919Y-90674436D02* +X97362558Y-91508040D01* +X97362558Y-91508040D02* +X96877089Y-92362436D01* +X96877089Y-92362436D02* +X96427343Y-93236165D01* +X96427343Y-93236165D02* +X96014089Y-94127732D01* +X96014089Y-94127732D02* +X95638031Y-95035616D01* +X95638031Y-95035616D02* +X95299813Y-95958265D01* +X95299813Y-95958265D02* +X95000012Y-96894102D01* +X95000012Y-96894102D02* +X94739140Y-97841530D01* +X94739140Y-97841530D02* +X94517644Y-98798928D01* +X94517644Y-98798928D02* +X94335902Y-99764662D01* +X94335902Y-99764662D02* +X94194224Y-100737082D01* +X94194224Y-100737082D02* +X94092852Y-101714526D01* +X94092852Y-101714526D02* +X94031959Y-102695324D01* +X94031959Y-102695324D02* +X94011650Y-103677800D01* +X94011650Y-103677800D02* +X94031959Y-104660276D01* +X94031959Y-104660276D02* +X94092852Y-105641074D01* +X94092852Y-105641074D02* +X94194224Y-106618518D01* +X94194224Y-106618518D02* +X94335902Y-107590938D01* +X94335902Y-107590938D02* +X94517644Y-108556672D01* +X94517644Y-108556672D02* +X94739140Y-109514070D01* +X94739140Y-109514070D02* +X95000012Y-110461498D01* +X95000012Y-110461498D02* +X95299813Y-111397335D01* +X95299813Y-111397335D02* +X95638031Y-112319984D01* +X95638031Y-112319984D02* +X96014089Y-113227868D01* +X96014089Y-113227868D02* +X96427343Y-114119435D01* +X96427343Y-114119435D02* +X96877089Y-114993164D01* +X96877089Y-114993164D02* +X97362558Y-115847560D01* +X97362558Y-115847560D02* +X97882919Y-116681164D01* +X97882919Y-116681164D02* +X98437285Y-117492553D01* +X98437285Y-117492553D02* +X99024708Y-118280339D01* +X99024708Y-118280339D02* +X99644184Y-119043177D01* +X99644184Y-119043177D02* +X100294655Y-119779763D01* +X100294655Y-119779763D02* +X100975011Y-120488839D01* +X100975011Y-120488839D02* +X101684087Y-121169195D01* +X101684087Y-121169195D02* +X102420673Y-121819666D01* +X102420673Y-121819666D02* +X103183511Y-122439142D01* +X103183511Y-122439142D02* +X103971297Y-123026565D01* +X103971297Y-123026565D02* +X104782686Y-123580931D01* +X104782686Y-123580931D02* +X105616290Y-124101292D01* +X105616290Y-124101292D02* +X106470686Y-124586761D01* +X106470686Y-124586761D02* +X107344415Y-125036507D01* +X107344415Y-125036507D02* +X108235982Y-125449761D01* +X108235982Y-125449761D02* +X109143866Y-125825819D01* +X109143866Y-125825819D02* +X110066515Y-126164037D01* +X110066515Y-126164037D02* +X111002352Y-126463838D01* +X111002352Y-126463838D02* +X111949780Y-126724710D01* +X111949780Y-126724710D02* +X112907178Y-126946206D01* +X112907178Y-126946206D02* +X113872912Y-127127948D01* +X113872912Y-127127948D02* +X114845332Y-127269626D01* +X114845332Y-127269626D02* +X115822776Y-127370998D01* +X115822776Y-127370998D02* +X117786050Y-127452200D01* +X117786050Y-127452200D02* +X117786050Y-127452200D01* +X117786050Y-127452200D02* +X118756256Y-127431602D01* +X118756256Y-127431602D02* +X119724713Y-127369847D01* +X119724713Y-127369847D02* +X120689677Y-127267044D01* +X120689677Y-127267044D02* +X121649409Y-127123380D01* +X121649409Y-127123380D02* +X122602178Y-126939113D01* +X122602178Y-126939113D02* +X123546268Y-126714575D01* +X123546268Y-126714575D02* +X124479979Y-126450172D01* +X124479979Y-126450172D02* +X125401626Y-126146378D01* +X125401626Y-126146378D02* +X126309549Y-125803743D01* +X126309549Y-125803743D02* +X127202113Y-125422883D01* +X127202113Y-125422883D02* +X128077708Y-125004485D01* +X128077708Y-125004485D02* +X128934756Y-124549303D01* +X128934756Y-124549303D02* +X129771715Y-124058156D01* +X129771715Y-124058156D02* +X130587074Y-123531931D01* +X130587074Y-123531931D02* +X131379364Y-122971574D01* +X131379364Y-122971574D02* +X132147159Y-122378097D01* +X132147159Y-122378097D02* +X132889074Y-121752569D01* +X132889074Y-121752569D02* +X133603773Y-121096116D01* +X133603773Y-121096116D02* +X134289966Y-120409923D01* +X134289966Y-120409923D02* +X134946419Y-119695224D01* +X134946419Y-119695224D02* +X135571947Y-118953309D01* +X135571947Y-118953309D02* +X136165424Y-118185514D01* +X136165424Y-118185514D02* +X136725781Y-117393224D01* +X136725781Y-117393224D02* +X137252006Y-116577865D01* +X137252006Y-116577865D02* +X137743153Y-115740906D01* +X137743153Y-115740906D02* +X138198335Y-114883858D01* +X138198335Y-114883858D02* +X138616733Y-114008263D01* +X138616733Y-114008263D02* +X138997593Y-113115699D01* +X138997593Y-113115699D02* +X139340228Y-112207776D01* +X139340228Y-112207776D02* +X139644022Y-111286129D01* +X139644022Y-111286129D02* +X139908425Y-110352418D01* +X139908425Y-110352418D02* +X140132963Y-109408328D01* +X140132963Y-109408328D02* +X140317230Y-108455559D01* +X140317230Y-108455559D02* +X140460894Y-107495827D01* +X140460894Y-107495827D02* +X140563697Y-106530863D01* +X140563697Y-106530863D02* +X140625452Y-105562406D01* +X140625452Y-105562406D02* +X140646050Y-104592200D01* +X140646050Y-104592200D02* +X140625452Y-103621994D01* +X140625452Y-103621994D02* +X140563697Y-102653537D01* +X140563697Y-102653537D02* +X140460894Y-101688573D01* +X140460894Y-101688573D02* +X140317230Y-100728841D01* +X140317230Y-100728841D02* +X140132963Y-99776072D01* +X140132963Y-99776072D02* +X139908425Y-98831982D01* +X139908425Y-98831982D02* +X139644022Y-97898271D01* +X139644022Y-97898271D02* +X139340228Y-96976624D01* +X139340228Y-96976624D02* +X138997593Y-96068701D01* +X138997593Y-96068701D02* +X138616733Y-95176137D01* +X138616733Y-95176137D02* +X138198335Y-94300542D01* +X138198335Y-94300542D02* +X137743153Y-93443494D01* +X137743153Y-93443494D02* +X137252006Y-92606535D01* +X137252006Y-92606535D02* +X136725781Y-91791176D01* +X136725781Y-91791176D02* +X136165424Y-90998886D01* +X136165424Y-90998886D02* +X135571947Y-90231091D01* +X135571947Y-90231091D02* +X134946419Y-89489176D01* +X134946419Y-89489176D02* +X134289966Y-88774477D01* +X134289966Y-88774477D02* +X133603773Y-88088284D01* +X133603773Y-88088284D02* +X132889074Y-87431831D01* +X132889074Y-87431831D02* +X132147159Y-86806303D01* +X132147159Y-86806303D02* +X131379364Y-86212826D01* +X131379364Y-86212826D02* +X130587074Y-85652469D01* +X130587074Y-85652469D02* +X129771715Y-85126244D01* +X129771715Y-85126244D02* +X128934756Y-84635097D01* +X128934756Y-84635097D02* +X128077708Y-84179915D01* +X128077708Y-84179915D02* +X127202113Y-83761517D01* +X127202113Y-83761517D02* +X126309549Y-83380657D01* +X126309549Y-83380657D02* +X125401626Y-83038022D01* +X125401626Y-83038022D02* +X124479979Y-82734228D01* +X124479979Y-82734228D02* +X123546268Y-82469825D01* +X123546268Y-82469825D02* +X122602178Y-82245287D01* +X122602178Y-82245287D02* +X121649409Y-82061020D01* +X121649409Y-82061020D02* +X120689677Y-81917356D01* +X120689677Y-81917356D02* +X119724713Y-81814553D01* +X119724713Y-81814553D02* +X117786050Y-81732200D01* +X117786050Y-81732200D02* +X117786050Y-81732200D01* +X117786050Y-81732200D02* +X116841901Y-81752519D01* +X116841901Y-81752519D02* +X115899501Y-81813439D01* +X115899501Y-81813439D02* +X114960594Y-81914846D01* +X114960594Y-81914846D02* +X114026919Y-82056554D01* +X114026919Y-82056554D02* +X113100205Y-82238299D01* +X113100205Y-82238299D02* +X112182169Y-82459745D01* +X112182169Y-82459745D02* +X111274509Y-82720482D01* +X111274509Y-82720482D02* +X110378907Y-83020027D01* +X110378907Y-83020027D02* +X109497022Y-83357825D01* +X109497022Y-83357825D02* +X108630486Y-83733252D01* +X108630486Y-83733252D02* +X107780904Y-84145611D01* +X107780904Y-84145611D02* +X106949849Y-84594139D01* +X106949849Y-84594139D02* +X106138861Y-85078006D01* +X106138861Y-85078006D02* +X105349440Y-85596315D01* +X105349440Y-85596315D02* +X104583049Y-86148107D01* +X104583049Y-86148107D02* +X103841107Y-86732360D01* +X103841107Y-86732360D02* +X103124988Y-87347993D01* +X103124988Y-87347993D02* +X102436017Y-87993864D01* +X102436017Y-87993864D02* +X101775472Y-88668778D01* +X101775472Y-88668778D02* +X101144574Y-89371485D01* +X101144574Y-89371485D02* +X100544493Y-90100685D01* +X100544493Y-90100685D02* +X99976338Y-90855026D01* +X99976338Y-90855026D02* +X99441164Y-91633112D01* +X99441164Y-91633112D02* +X98939960Y-92433502D01* +X98939960Y-92433502D02* +X98473654Y-93254714D01* +X98473654Y-93254714D02* +X98043111Y-94095227D01* +X98043111Y-94095227D02* +X97649127Y-94953484D01* +X97649127Y-94953484D02* +X97292432Y-95827898D01* +X97292432Y-95827898D02* +X96973686Y-96716847D01* +X96973686Y-96716847D02* +X96693480Y-97618686D01* +X96693480Y-97618686D02* +X96452333Y-98531746D01* +X96452333Y-98531746D02* +X96250691Y-99454335D01* +X96250691Y-99454335D02* +X96088927Y-100384744D01* +X96088927Y-100384744D02* +X95967342Y-101321252D01* +X95967342Y-101321252D02* +X95886159Y-102262123D01* +X95886159Y-102262123D02* +X95845530Y-103205616D01* +X95845530Y-103205616D02* +X95845530Y-104149984D01* +X95845530Y-104149984D02* +X95886159Y-105093477D01* +X95886159Y-105093477D02* +X95967342Y-106034348D01* +X95967342Y-106034348D02* +X96088927Y-106970856D01* +X96088927Y-106970856D02* +X96250691Y-107901265D01* +X96250691Y-107901265D02* +X96452333Y-108823854D01* +X96452333Y-108823854D02* +X96693480Y-109736914D01* +X96693480Y-109736914D02* +X96973686Y-110638753D01* +X96973686Y-110638753D02* +X97292432Y-111527702D01* +X97292432Y-111527702D02* +X97649127Y-112402116D01* +X97649127Y-112402116D02* +X98043111Y-113260373D01* +X98043111Y-113260373D02* +X98473654Y-114100886D01* +X98473654Y-114100886D02* +X98939960Y-114922098D01* +X98939960Y-114922098D02* +X99441164Y-115722488D01* +X99441164Y-115722488D02* +X99976338Y-116500574D01* +X99976338Y-116500574D02* +X100544493Y-117254915D01* +X100544493Y-117254915D02* +X101144574Y-117984115D01* +X101144574Y-117984115D02* +X101775472Y-118686822D01* +X101775472Y-118686822D02* +X102436017Y-119361736D01* +X102436017Y-119361736D02* +X103124988Y-120007607D01* +X103124988Y-120007607D02* +X103841107Y-120623240D01* +X103841107Y-120623240D02* +X104583049Y-121207493D01* +X104583049Y-121207493D02* +X105349440Y-121759285D01* +X105349440Y-121759285D02* +X106138861Y-122277594D01* +X106138861Y-122277594D02* +X106949849Y-122761461D01* +X106949849Y-122761461D02* +X107780904Y-123209989D01* +X107780904Y-123209989D02* +X108630486Y-123622348D01* +X108630486Y-123622348D02* +X109497022Y-123997775D01* +X109497022Y-123997775D02* +X110378907Y-124335573D01* +X110378907Y-124335573D02* +X111274509Y-124635118D01* +X111274509Y-124635118D02* +X112182169Y-124895855D01* +X112182169Y-124895855D02* +X113100205Y-125117301D01* +X113100205Y-125117301D02* +X114026919Y-125299046D01* +X114026919Y-125299046D02* +X114960594Y-125440754D01* +X114960594Y-125440754D02* +X115899501Y-125542161D01* +X115899501Y-125542161D02* +X116841901Y-125603081D01* +X116841901Y-125603081D02* +X117786050Y-125623400D01* +X117786050Y-125623400D02* +X117786050Y-125623400D01* +X117786050Y-125623400D02* +X118716330Y-125602815D01* +X118716330Y-125602815D02* +X119644790Y-125541101D01* +X119644790Y-125541101D02* +X120569610Y-125438379D01* +X120569610Y-125438379D02* +X121488982Y-125294849D01* +X121488982Y-125294849D02* +X122401105Y-125110793D01* +X122401105Y-125110793D02* +X123304194Y-124886570D01* +X123304194Y-124886570D02* +X124196481Y-124622621D01* +X124196481Y-124622621D02* +X125076219Y-124319460D01* +X125076219Y-124319460D02* +X125941687Y-123977683D01* +X125941687Y-123977683D02* +X126791189Y-123597958D01* +X126791189Y-123597958D02* +X127623063Y-123181029D01* +X127623063Y-123181029D02* +X128435681Y-122727710D01* +X128435681Y-122727710D02* +X129227452Y-122238891D01* +X129227452Y-122238891D02* +X129996825Y-121715527D01* +X129996825Y-121715527D02* +X130742296Y-121158644D01* +X130742296Y-121158644D02* +X131462404Y-120569331D01* +X131462404Y-120569331D02* +X132155740Y-119948742D01* +X132155740Y-119948742D02* +X132820946Y-119298092D01* +X132820946Y-119298092D02* +X133456722Y-118618655D01* +X133456722Y-118618655D02* +X134061821Y-117911760D01* +X134061821Y-117911760D02* +X134635059Y-117178791D01* +X134635059Y-117178791D02* +X135175315Y-116421183D01* +X135175315Y-116421183D02* +X135681530Y-115640420D01* +X135681530Y-115640420D02* +X136152714Y-114838030D01* +X136152714Y-114838030D02* +X136587945Y-114015582D01* +X136587945Y-114015582D02* +X136986370Y-113174688D01* +X136986370Y-113174688D02* +X137347209Y-112316993D01* +X137347209Y-112316993D02* +X137669757Y-111444177D01* +X137669757Y-111444177D02* +X137953381Y-110557948D01* +X137953381Y-110557948D02* +X138197526Y-109660040D01* +X138197526Y-109660040D02* +X138401716Y-108752212D01* +X138401716Y-108752212D02* +X138565549Y-107836240D01* +X138565549Y-107836240D02* +X138688705Y-106913918D01* +X138688705Y-106913918D02* +X138770944Y-105987051D01* +X138770944Y-105987051D02* +X138812103Y-105057454D01* +X138812103Y-105057454D02* +X138812103Y-104126946D01* +X138812103Y-104126946D02* +X138770944Y-103197349D01* +X138770944Y-103197349D02* +X138688705Y-102270482D01* +X138688705Y-102270482D02* +X138565549Y-101348160D01* +X138565549Y-101348160D02* +X138401716Y-100432188D01* +X138401716Y-100432188D02* +X138197526Y-99524360D01* +X138197526Y-99524360D02* +X137953381Y-98626452D01* +X137953381Y-98626452D02* +X137669757Y-97740223D01* +X137669757Y-97740223D02* +X137347209Y-96867407D01* +X137347209Y-96867407D02* +X136986370Y-96009712D01* +X136986370Y-96009712D02* +X136587945Y-95168818D01* +X136587945Y-95168818D02* +X136152714Y-94346370D01* +X136152714Y-94346370D02* +X135681530Y-93543980D01* +X135681530Y-93543980D02* +X135175315Y-92763217D01* +X135175315Y-92763217D02* +X134635059Y-92005609D01* +X134635059Y-92005609D02* +X134061821Y-91272640D01* +X134061821Y-91272640D02* +X133456722Y-90565745D01* +X133456722Y-90565745D02* +X132820946Y-89886308D01* +X132820946Y-89886308D02* +X132155740Y-89235658D01* +X132155740Y-89235658D02* +X131462404Y-88615069D01* +X131462404Y-88615069D02* +X130742296Y-88025756D01* +X130742296Y-88025756D02* +X129996825Y-87468873D01* +X129996825Y-87468873D02* +X129227452Y-86945509D01* +X129227452Y-86945509D02* +X128435681Y-86456690D01* +X128435681Y-86456690D02* +X127623063Y-86003371D01* +X127623063Y-86003371D02* +X126791189Y-85586442D01* +X126791189Y-85586442D02* +X125941687Y-85206717D01* +X125941687Y-85206717D02* +X125076219Y-84864940D01* +X125076219Y-84864940D02* +X124196481Y-84561779D01* +X124196481Y-84561779D02* +X123304194Y-84297830D01* +X123304194Y-84297830D02* +X122401105Y-84073607D01* +X122401105Y-84073607D02* +X121488982Y-83889551D01* +X121488982Y-83889551D02* +X120569610Y-83746021D01* +X120569610Y-83746021D02* +X119644790Y-83643299D01* +X119644790Y-83643299D02* +X118716330Y-83581585D01* +X118716330Y-83581585D02* +X117786050Y-83561000D01* +X117786050Y-83561000D02* +X117786050Y-83561000D01* +X117786050Y-123794600D02* +X117786050Y-123794600D01* +X117786050Y-123794600D02* +X118672883Y-123774111D01* +X118672883Y-123774111D02* +X119557824Y-123712686D01* +X119557824Y-123712686D02* +X120438984Y-123610457D01* +X120438984Y-123610457D02* +X121314482Y-123467643D01* +X121314482Y-123467643D02* +X122182450Y-123284547D01* +X122182450Y-123284547D02* +X123041036Y-123061561D01* +X123041036Y-123061561D02* +X123888408Y-122799160D01* +X123888408Y-122799160D02* +X124722757Y-122497905D01* +X124722757Y-122497905D02* +X125542303Y-122158438D01* +X125542303Y-122158438D02* +X126345296Y-121781484D01* +X126345296Y-121781484D02* +X127130024Y-121367847D01* +X127130024Y-121367847D02* +X127894811Y-120918410D01* +X127894811Y-120918410D02* +X128638025Y-120434132D01* +X128638025Y-120434132D02* +X129358081Y-119916046D01* +X129358081Y-119916046D02* +X130053442Y-119365259D01* +X130053442Y-119365259D02* +X130722623Y-118782945D01* +X130722623Y-118782945D02* +X131364197Y-118170347D01* +X131364197Y-118170347D02* +X131976795Y-117528773D01* +X131976795Y-117528773D02* +X132559109Y-116859592D01* +X132559109Y-116859592D02* +X133109896Y-116164231D01* +X133109896Y-116164231D02* +X133627982Y-115444175D01* +X133627982Y-115444175D02* +X134112260Y-114700961D01* +X134112260Y-114700961D02* +X134561697Y-113936174D01* +X134561697Y-113936174D02* +X134975334Y-113151446D01* +X134975334Y-113151446D02* +X135352288Y-112348453D01* +X135352288Y-112348453D02* +X135691755Y-111528907D01* +X135691755Y-111528907D02* +X135993010Y-110694558D01* +X135993010Y-110694558D02* +X136255411Y-109847186D01* +X136255411Y-109847186D02* +X136478397Y-108988600D01* +X136478397Y-108988600D02* +X136661493Y-108120632D01* +X136661493Y-108120632D02* +X136804307Y-107245134D01* +X136804307Y-107245134D02* +X136906536Y-106363974D01* +X136906536Y-106363974D02* +X136967961Y-105479033D01* +X136967961Y-105479033D02* +X136988450Y-104592200D01* +X136988450Y-104592200D02* +X136967961Y-103705367D01* +X136967961Y-103705367D02* +X136906536Y-102820426D01* +X136906536Y-102820426D02* +X136804307Y-101939266D01* +X136804307Y-101939266D02* +X136661493Y-101063768D01* +X136661493Y-101063768D02* +X136478397Y-100195800D01* +X136478397Y-100195800D02* +X136255411Y-99337214D01* +X136255411Y-99337214D02* +X135993010Y-98489842D01* +X135993010Y-98489842D02* +X135691755Y-97655493D01* +X135691755Y-97655493D02* +X135352288Y-96835947D01* +X135352288Y-96835947D02* +X134975334Y-96032954D01* +X134975334Y-96032954D02* +X134561697Y-95248226D01* +X134561697Y-95248226D02* +X134112260Y-94483439D01* +X134112260Y-94483439D02* +X133627982Y-93740225D01* +X133627982Y-93740225D02* +X133109896Y-93020169D01* +X133109896Y-93020169D02* +X132559109Y-92324808D01* +X132559109Y-92324808D02* +X131976795Y-91655627D01* +X131976795Y-91655627D02* +X131364197Y-91014053D01* +X131364197Y-91014053D02* +X130722623Y-90401455D01* +X130722623Y-90401455D02* +X130053442Y-89819141D01* +X130053442Y-89819141D02* +X129358081Y-89268354D01* +X129358081Y-89268354D02* +X128638025Y-88750268D01* +X128638025Y-88750268D02* +X127894811Y-88265990D01* +X127894811Y-88265990D02* +X127130024Y-87816553D01* +X127130024Y-87816553D02* +X126345296Y-87402916D01* +X126345296Y-87402916D02* +X125542303Y-87025962D01* +X125542303Y-87025962D02* +X124722757Y-86686495D01* +X124722757Y-86686495D02* +X123888408Y-86385240D01* +X123888408Y-86385240D02* +X123041036Y-86122839D01* +X123041036Y-86122839D02* +X122182450Y-85899853D01* +X122182450Y-85899853D02* +X121314482Y-85716757D01* +X121314482Y-85716757D02* +X120438984Y-85573943D01* +X120438984Y-85573943D02* +X119557824Y-85471714D01* +X119557824Y-85471714D02* +X118672883Y-85410289D01* +X118672883Y-85410289D02* +X117786050Y-85389800D01* +X117786050Y-85389800D02* +X117786050Y-85389800D01* +X117786050Y-85389800D02* +X116915872Y-85410514D01* +X116915872Y-85410514D02* +X116047665Y-85472609D01* +X116047665Y-85472609D02* +X115183396Y-85575945D01* +X115183396Y-85575945D02* +X114325023Y-85720288D01* +X114325023Y-85720288D02* +X113474491Y-85905310D01* +X113474491Y-85905310D02* +X112633725Y-86130592D01* +X112633725Y-86130592D02* +X111804631Y-86395625D01* +X111804631Y-86395625D02* +X110989087Y-86699807D01* +X110989087Y-86699807D02* +X110188940Y-87042450D01* +X110188940Y-87042450D02* +X109406003Y-87422777D01* +X109406003Y-87422777D02* +X108642050Y-87839927D01* +X108642050Y-87839927D02* +X107898811Y-88292955D01* +X107898811Y-88292955D02* +X107177969Y-88780835D01* +X107177969Y-88780835D02* +X106481158Y-89302461D01* +X106481158Y-89302461D02* +X105809957Y-89856652D01* +X105809957Y-89856652D02* +X105165885Y-90442152D01* +X105165885Y-90442152D02* +X104550402Y-91057635D01* +X104550402Y-91057635D02* +X103964902Y-91701707D01* +X103964902Y-91701707D02* +X103410711Y-92372908D01* +X103410711Y-92372908D02* +X102889085Y-93069719D01* +X102889085Y-93069719D02* +X102401205Y-93790561D01* +X102401205Y-93790561D02* +X101948177Y-94533800D01* +X101948177Y-94533800D02* +X101531027Y-95297753D01* +X101531027Y-95297753D02* +X101150700Y-96080690D01* +X101150700Y-96080690D02* +X100808057Y-96880837D01* +X100808057Y-96880837D02* +X100503875Y-97696381D01* +X100503875Y-97696381D02* +X100238842Y-98525475D01* +X100238842Y-98525475D02* +X100013560Y-99366241D01* +X100013560Y-99366241D02* +X99828538Y-100216773D01* +X99828538Y-100216773D02* +X99684195Y-101075146D01* +X99684195Y-101075146D02* +X99580859Y-101939415D01* +X99580859Y-101939415D02* +X99518764Y-102807622D01* +X99518764Y-102807622D02* +X99498050Y-103677800D01* +X99498050Y-103677800D02* +X99518764Y-104547978D01* +X99518764Y-104547978D02* +X99580859Y-105416185D01* +X99580859Y-105416185D02* +X99684195Y-106280454D01* +X99684195Y-106280454D02* +X99828538Y-107138827D01* +X99828538Y-107138827D02* +X100013560Y-107989359D01* +X100013560Y-107989359D02* +X100238842Y-108830125D01* +X100238842Y-108830125D02* +X100503875Y-109659219D01* +X100503875Y-109659219D02* +X100808057Y-110474763D01* +X100808057Y-110474763D02* +X101150700Y-111274910D01* +X101150700Y-111274910D02* +X101531027Y-112057847D01* +X101531027Y-112057847D02* +X101948177Y-112821800D01* +X101948177Y-112821800D02* +X102401205Y-113565039D01* +X102401205Y-113565039D02* +X102889085Y-114285881D01* +X102889085Y-114285881D02* +X103410711Y-114982692D01* +X103410711Y-114982692D02* +X103964902Y-115653893D01* +X103964902Y-115653893D02* +X104550402Y-116297965D01* +X104550402Y-116297965D02* +X105165885Y-116913448D01* +X105165885Y-116913448D02* +X105809957Y-117498948D01* +X105809957Y-117498948D02* +X106481158Y-118053139D01* +X106481158Y-118053139D02* +X107177969Y-118574765D01* +X107177969Y-118574765D02* +X107898811Y-119062645D01* +X107898811Y-119062645D02* +X108642050Y-119515673D01* +X108642050Y-119515673D02* +X109406003Y-119932823D01* +X109406003Y-119932823D02* +X110188940Y-120313150D01* +X110188940Y-120313150D02* +X110989087Y-120655793D01* +X110989087Y-120655793D02* +X111804631Y-120959975D01* +X111804631Y-120959975D02* +X112633725Y-121225008D01* +X112633725Y-121225008D02* +X113474491Y-121450290D01* +X113474491Y-121450290D02* +X114325023Y-121635312D01* +X114325023Y-121635312D02* +X115183396Y-121779655D01* +X115183396Y-121779655D02* +X116047665Y-121882991D01* +X116047665Y-121882991D02* +X116915872Y-121945086D01* +X116915872Y-121945086D02* +X117786050Y-121965800D01* +X117786050Y-121965800D02* +X117786050Y-121965800D01* +X117786050Y-121965800D02* +X118638532Y-121944873D01* +X118638532Y-121944873D02* +X119488961Y-121882141D01* +X119488961Y-121882141D02* +X120335287Y-121777757D01* +X120335287Y-121777757D02* +X121175471Y-121631971D01* +X121175471Y-121631971D02* +X122007490Y-121445135D01* +X122007490Y-121445135D02* +X122829340Y-121217699D01* +X122829340Y-121217699D02* +X123639040Y-120950210D01* +X123639040Y-120950210D02* +X124434639Y-120643313D01* +X124434639Y-120643313D02* +X125214221Y-120297748D01* +X125214221Y-120297748D02* +X125975908Y-119914347D01* +X125975908Y-119914347D02* +X126717865Y-119494034D01* +X126717865Y-119494034D02* +X127438305Y-119037820D01* +X127438305Y-119037820D02* +X128135491Y-118546806D01* +X128135491Y-118546806D02* +X128807745Y-118022174D01* +X128807745Y-118022174D02* +X129453447Y-117465188D01* +X129453447Y-117465188D02* +X130071040Y-116877190D01* +X130071040Y-116877190D02* +X130659038Y-116259597D01* +X130659038Y-116259597D02* +X131216024Y-115613895D01* +X131216024Y-115613895D02* +X131740656Y-114941641D01* +X131740656Y-114941641D02* +X132231670Y-114244455D01* +X132231670Y-114244455D02* +X132687884Y-113524015D01* +X132687884Y-113524015D02* +X133108197Y-112782058D01* +X133108197Y-112782058D02* +X133491598Y-112020371D01* +X133491598Y-112020371D02* +X133837163Y-111240789D01* +X133837163Y-111240789D02* +X134144060Y-110445190D01* +X134144060Y-110445190D02* +X134411549Y-109635490D01* +X134411549Y-109635490D02* +X134638985Y-108813640D01* +X134638985Y-108813640D02* +X134825821Y-107981621D01* +X134825821Y-107981621D02* +X134971607Y-107141437D01* +X134971607Y-107141437D02* +X135075991Y-106295111D01* +X135075991Y-106295111D02* +X135138723Y-105444682D01* +X135138723Y-105444682D02* +X135159650Y-104592200D01* +X135159650Y-104592200D02* +X135138723Y-103739718D01* +X135138723Y-103739718D02* +X135075991Y-102889289D01* +X135075991Y-102889289D02* +X134971607Y-102042963D01* +X134971607Y-102042963D02* +X134825821Y-101202779D01* +X134825821Y-101202779D02* +X134638985Y-100370760D01* +X134638985Y-100370760D02* +X134411549Y-99548910D01* +X134411549Y-99548910D02* +X134144060Y-98739210D01* +X134144060Y-98739210D02* +X133837163Y-97943611D01* +X133837163Y-97943611D02* +X133491598Y-97164029D01* +X133491598Y-97164029D02* +X133108197Y-96402342D01* +X133108197Y-96402342D02* +X132687884Y-95660385D01* +X132687884Y-95660385D02* +X132231670Y-94939945D01* +X132231670Y-94939945D02* +X131740656Y-94242759D01* +X131740656Y-94242759D02* +X131216024Y-93570505D01* +X131216024Y-93570505D02* +X130659038Y-92924803D01* +X130659038Y-92924803D02* +X130071040Y-92307210D01* +X130071040Y-92307210D02* +X129453447Y-91719212D01* +X129453447Y-91719212D02* +X128807745Y-91162226D01* +X128807745Y-91162226D02* +X128135491Y-90637594D01* +X128135491Y-90637594D02* +X127438305Y-90146580D01* +X127438305Y-90146580D02* +X126717865Y-89690366D01* +X126717865Y-89690366D02* +X125975908Y-89270053D01* +X125975908Y-89270053D02* +X125214221Y-88886652D01* +X125214221Y-88886652D02* +X124434639Y-88541087D01* +X124434639Y-88541087D02* +X123639040Y-88234190D01* +X123639040Y-88234190D02* +X122829340Y-87966701D01* +X122829340Y-87966701D02* +X122007490Y-87739265D01* +X122007490Y-87739265D02* +X121175471Y-87552429D01* +X121175471Y-87552429D02* +X120335287Y-87406643D01* +X120335287Y-87406643D02* +X119488961Y-87302259D01* +X119488961Y-87302259D02* +X118638532Y-87239527D01* +X118638532Y-87239527D02* +X117786050Y-87218600D01* +X117786050Y-87218600D02* +X117786050Y-87218600D01* +X117786050Y-87218600D02* +X116965627Y-87239060D01* +X116965627Y-87239060D02* +X116147243Y-87300389D01* +X116147243Y-87300389D02* +X115332934Y-87402436D01* +X115332934Y-87402436D02* +X114524723Y-87544945D01* +X114524723Y-87544945D02* +X113724621Y-87727563D01* +X113724621Y-87727563D02* +X112934616Y-87949836D01* +X112934616Y-87949836D02* +X112156672Y-88211211D01* +X112156672Y-88211211D02* +X111392724Y-88511039D01* +X111392724Y-88511039D02* +X110644671Y-88848573D01* +X110644671Y-88848573D02* +X109914372Y-89222975D01* +X109914372Y-89222975D02* +X109203644Y-89633315D01* +X109203644Y-89633315D02* +X108514253Y-90078571D01* +X108514253Y-90078571D02* +X107847912Y-90557637D01* +X107847912Y-90557637D02* +X107206280Y-91069321D01* +X107206280Y-91069321D02* +X106590951Y-91612353D01* +X106590951Y-91612353D02* +X106003454Y-92185381D01* +X106003454Y-92185381D02* +X105445251Y-92786980D01* +X105445251Y-92786980D02* +X104917729Y-93415657D01* +X104917729Y-93415657D02* +X104422200Y-94069846D01* +X104422200Y-94069846D02* +X103959895Y-94747923D01* +X103959895Y-94747923D02* +X103531965Y-95448200D01* +X103531965Y-95448200D02* +X103139472Y-96168938D01* +X103139472Y-96168938D02* +X102783393Y-96908343D01* +X102783393Y-96908343D02* +X102464613Y-97664579D01* +X102464613Y-97664579D02* +X102183924Y-98435765D01* +X102183924Y-98435765D02* +X101942025Y-99219983D01* +X101942025Y-99219983D02* +X101739517Y-100015283D01* +X101739517Y-100015283D02* +X101576902Y-100819690D01* +X101576902Y-100819690D02* +X101454586Y-101631202D01* +X101454586Y-101631202D02* +X101372873Y-102447802D01* +X101372873Y-102447802D02* +X101331966Y-103267461D01* +X101331966Y-103267461D02* +X101331966Y-104088139D01* +X101331966Y-104088139D02* +X101372873Y-104907798D01* +X101372873Y-104907798D02* +X101454586Y-105724398D01* +X101454586Y-105724398D02* +X101576902Y-106535910D01* +X101576902Y-106535910D02* +X101739517Y-107340317D01* +X101739517Y-107340317D02* +X101942025Y-108135617D01* +X101942025Y-108135617D02* +X102183924Y-108919835D01* +X102183924Y-108919835D02* +X102464613Y-109691021D01* +X102464613Y-109691021D02* +X102783393Y-110447257D01* +X102783393Y-110447257D02* +X103139472Y-111186662D01* +X103139472Y-111186662D02* +X103531965Y-111907400D01* +X103531965Y-111907400D02* +X103959895Y-112607677D01* +X103959895Y-112607677D02* +X104422200Y-113285754D01* +X104422200Y-113285754D02* +X104917729Y-113939943D01* +X104917729Y-113939943D02* +X105445251Y-114568620D01* +X105445251Y-114568620D02* +X106003454Y-115170219D01* +X106003454Y-115170219D02* +X106590951Y-115743247D01* +X106590951Y-115743247D02* +X107206280Y-116286279D01* +X107206280Y-116286279D02* +X107847912Y-116797963D01* +X107847912Y-116797963D02* +X108514253Y-117277029D01* +X108514253Y-117277029D02* +X109203644Y-117722285D01* +X109203644Y-117722285D02* +X109914372Y-118132625D01* +X109914372Y-118132625D02* +X110644671Y-118507027D01* +X110644671Y-118507027D02* +X111392724Y-118844561D01* +X111392724Y-118844561D02* +X112156672Y-119144389D01* +X112156672Y-119144389D02* +X112934616Y-119405764D01* +X112934616Y-119405764D02* +X113724621Y-119628037D01* +X113724621Y-119628037D02* +X114524723Y-119810655D01* +X114524723Y-119810655D02* +X115332934Y-119953164D01* +X115332934Y-119953164D02* +X116147243Y-120055211D01* +X116147243Y-120055211D02* +X117786050Y-120137000D01* +X117786050Y-120137000D02* +X117786050Y-120137000D01* +X117786050Y-120137000D02* +X118586277Y-120116389D01* +X118586277Y-120116389D02* +X119384382Y-120054611D01* +X119384382Y-120054611D02* +X120178248Y-119951829D01* +X120178248Y-119951829D02* +X120965771Y-119808316D01* +X120965771Y-119808316D02* +X121744862Y-119624453D01* +X121744862Y-119624453D02* +X122513454Y-119400726D01* +X122513454Y-119400726D02* +X123269511Y-119137731D01* +X123269511Y-119137731D02* +X124011026Y-118836163D01* +X124011026Y-118836163D02* +X124736034Y-118496823D01* +X124736034Y-118496823D02* +X125442611Y-118120610D01* +X125442611Y-118120610D02* +X126128885Y-117708522D01* +X126128885Y-117708522D02* +X126793035Y-117261653D01* +X126793035Y-117261653D02* +X127433300Y-116781186D01* +X127433300Y-116781186D02* +X128047983Y-116268396D01* +X128047983Y-116268396D02* +X128635452Y-115724643D01* +X128635452Y-115724643D02* +X129194151Y-115151368D01* +X129194151Y-115151368D02* +X129722598Y-114550093D01* +X129722598Y-114550093D02* +X130219391Y-113922411D01* +X130219391Y-113922411D02* +X130683213Y-113269987D01* +X130683213Y-113269987D02* +X131112834Y-112594551D01* +X131112834Y-112594551D02* +X131507115Y-111897894D01* +X131507115Y-111897894D02* +X131865011Y-111181864D01* +X131865011Y-111181864D02* +X132185571Y-110448360D01* +X132185571Y-110448360D02* +X132467946Y-109699326D01* +X132467946Y-109699326D02* +X132711388Y-108936748D01* +X132711388Y-108936748D02* +X132915250Y-108162650D01* +X132915250Y-108162650D02* +X133078992Y-107379084D01* +X133078992Y-107379084D02* +X133202181Y-106588127D01* +X133202181Y-106588127D02* +X133284488Y-105791877D01* +X133284488Y-105791877D02* +X133325696Y-104992446D01* +X133325696Y-104992446D02* +X133325696Y-104191954D01* +X133325696Y-104191954D02* +X133284488Y-103392523D01* +X133284488Y-103392523D02* +X133202181Y-102596273D01* +X133202181Y-102596273D02* +X133078992Y-101805316D01* +X133078992Y-101805316D02* +X132915250Y-101021750D01* +X132915250Y-101021750D02* +X132711388Y-100247652D01* +X132711388Y-100247652D02* +X132467946Y-99485074D01* +X132467946Y-99485074D02* +X132185571Y-98736040D01* +X132185571Y-98736040D02* +X131865011Y-98002536D01* +X131865011Y-98002536D02* +X131507115Y-97286506D01* +X131507115Y-97286506D02* +X131112834Y-96589849D01* +X131112834Y-96589849D02* +X130683213Y-95914413D01* +X130683213Y-95914413D02* +X130219391Y-95261989D01* +X130219391Y-95261989D02* +X129722598Y-94634307D01* +X129722598Y-94634307D02* +X129194151Y-94033032D01* +X129194151Y-94033032D02* +X128635452Y-93459757D01* +X128635452Y-93459757D02* +X128047983Y-92916004D01* +X128047983Y-92916004D02* +X127433300Y-92403214D01* +X127433300Y-92403214D02* +X126793035Y-91922747D01* +X126793035Y-91922747D02* +X126128885Y-91475878D01* +X126128885Y-91475878D02* +X125442611Y-91063790D01* +X125442611Y-91063790D02* +X124736034Y-90687577D01* +X124736034Y-90687577D02* +X124011026Y-90348237D01* +X124011026Y-90348237D02* +X123269511Y-90046669D01* +X123269511Y-90046669D02* +X122513454Y-89783674D01* +X122513454Y-89783674D02* +X121744862Y-89559947D01* +X121744862Y-89559947D02* +X120965771Y-89376084D01* +X120965771Y-89376084D02* +X120178248Y-89232571D01* +X120178248Y-89232571D02* +X119384382Y-89129789D01* +X119384382Y-89129789D02* +X117786050Y-89047400D01* +X117786050Y-89047400D02* +X117786050Y-89047400D01* +X117786050Y-89047400D02* +X117004852Y-89068204D01* +X117004852Y-89068204D02* +X116225868Y-89130558D01* +X116225868Y-89130558D02* +X115451307Y-89234286D01* +X115451307Y-89234286D02* +X114683366Y-89379092D01* +X114683366Y-89379092D02* +X113924219Y-89564566D01* +X113924219Y-89564566D02* +X113176021Y-89790183D01* +X113176021Y-89790183D02* +X112440892Y-90055303D01* +X112440892Y-90055303D02* +X111720916Y-90359175D01* +X111720916Y-90359175D02* +X111018134Y-90700936D01* +X111018134Y-90700936D02* +X110334538Y-91079619D01* +X110334538Y-91079619D02* +X109672067Y-91494149D01* +X109672067Y-91494149D02* +X109032598Y-91943352D01* +X109032598Y-91943352D02* +X108417944Y-92425953D01* +X108417944Y-92425953D02* +X107829848Y-92940586D01* +X107829848Y-92940586D02* +X107269976Y-93485790D01* +X107269976Y-93485790D02* +X106739917Y-94060021D01* +X106739917Y-94060021D02* +X106241173Y-94661650D01* +X106241173Y-94661650D02* +X105775157Y-95288972D01* +X105775157Y-95288972D02* +X105343191Y-95940208D01* +X105343191Y-95940208D02* +X104946499Y-96613513D01* +X104946499Y-96613513D02* +X104586206Y-97306977D01* +X104586206Y-97306977D02* +X104263334Y-98018635D01* +X104263334Y-98018635D02* +X103978797Y-98746469D01* +X103978797Y-98746469D02* +X103733402Y-99488416D01* +X103733402Y-99488416D02* +X103527846Y-100242372D01* +X103527846Y-100242372D02* +X103362709Y-101006200D01* +X103362709Y-101006200D02* +X103238462Y-101777735D01* +X103238462Y-101777735D02* +X103113926Y-103335161D01* +X103155456Y-102554790D02* +X103113926Y-103335161D01* +X103113926Y-103335161D02* +X103155650Y-104897000D01* +X117786050Y-78074600D02* +X117786050Y-78074600D01* +X117786050Y-78074600D02* +X118827126Y-78095044D01* +X118827126Y-78095044D02* +X119866597Y-78156345D01* +X119866597Y-78156345D02* +X120902860Y-78258408D01* +X120902860Y-78258408D02* +X121934317Y-78401076D01* +X121934317Y-78401076D02* +X122959377Y-78584128D01* +X122959377Y-78584128D02* +X123976461Y-78807283D01* +X123976461Y-78807283D02* +X124983999Y-79070197D01* +X124983999Y-79070197D02* +X125980439Y-79372464D01* +X125980439Y-79372464D02* +X126964244Y-79713617D01* +X126964244Y-79713617D02* +X127933896Y-80093132D01* +X127933896Y-80093132D02* +X128887901Y-80510423D01* +X128887901Y-80510423D02* +X129824788Y-80964845D01* +X129824788Y-80964845D02* +X130743113Y-81455700D01* +X130743113Y-81455700D02* +X131641458Y-81982229D01* +X131641458Y-81982229D02* +X132518439Y-82543621D01* +X132518439Y-82543621D02* +X133372704Y-83139011D01* +X133372704Y-83139011D02* +X134202936Y-83767480D01* +X134202936Y-83767480D02* +X135007854Y-84428059D01* +X135007854Y-84428059D02* +X135786217Y-85119729D01* +X135786217Y-85119729D02* +X136536825Y-85841425D01* +X136536825Y-85841425D02* +X137258521Y-86592033D01* +X137258521Y-86592033D02* +X137950191Y-87370396D01* +X137950191Y-87370396D02* +X138610770Y-88175314D01* +X138610770Y-88175314D02* +X139239239Y-89005546D01* +X139239239Y-89005546D02* +X139834629Y-89859811D01* +X139834629Y-89859811D02* +X140396021Y-90736792D01* +X140396021Y-90736792D02* +X140922550Y-91635137D01* +X140922550Y-91635137D02* +X141413405Y-92553462D01* +X141413405Y-92553462D02* +X141867827Y-93490349D01* +X141867827Y-93490349D02* +X142285118Y-94444354D01* +X142285118Y-94444354D02* +X142664633Y-95414006D01* +X142664633Y-95414006D02* +X143005786Y-96397811D01* +X143005786Y-96397811D02* +X143308053Y-97394251D01* +X143308053Y-97394251D02* +X143570967Y-98401789D01* +X143570967Y-98401789D02* +X143794122Y-99418873D01* +X143794122Y-99418873D02* +X143977174Y-100443933D01* +X143977174Y-100443933D02* +X144119842Y-101475390D01* +X144119842Y-101475390D02* +X144221905Y-102511653D01* +X144221905Y-102511653D02* +X144283206Y-103551124D01* +X144283206Y-103551124D02* +X144303650Y-104592200D01* +X144303650Y-104592200D02* +X144283206Y-105633276D01* +X144283206Y-105633276D02* +X144221905Y-106672747D01* +X144221905Y-106672747D02* +X144119842Y-107709010D01* +X144119842Y-107709010D02* +X143977174Y-108740467D01* +X143977174Y-108740467D02* +X143794122Y-109765527D01* +X143794122Y-109765527D02* +X143570967Y-110782611D01* +X143570967Y-110782611D02* +X143308053Y-111790149D01* +X143308053Y-111790149D02* +X143005786Y-112786589D01* +X143005786Y-112786589D02* +X142664633Y-113770394D01* +X142664633Y-113770394D02* +X142285118Y-114740046D01* +X142285118Y-114740046D02* +X141867827Y-115694051D01* +X141867827Y-115694051D02* +X141413405Y-116630938D01* +X141413405Y-116630938D02* +X140922550Y-117549263D01* +X140922550Y-117549263D02* +X140396021Y-118447608D01* +X140396021Y-118447608D02* +X139834629Y-119324589D01* +X139834629Y-119324589D02* +X139239239Y-120178854D01* +X139239239Y-120178854D02* +X138610770Y-121009086D01* +X138610770Y-121009086D02* +X137950191Y-121814004D01* +X137950191Y-121814004D02* +X137258521Y-122592367D01* +X137258521Y-122592367D02* +X136536825Y-123342975D01* +X136536825Y-123342975D02* +X135786217Y-124064671D01* +X135786217Y-124064671D02* +X135007854Y-124756341D01* +X135007854Y-124756341D02* +X134202936Y-125416920D01* +X134202936Y-125416920D02* +X133372704Y-126045389D01* +X133372704Y-126045389D02* +X132518439Y-126640779D01* +X132518439Y-126640779D02* +X131641458Y-127202171D01* +X131641458Y-127202171D02* +X130743113Y-127728700D01* +X130743113Y-127728700D02* +X129824788Y-128219555D01* +X129824788Y-128219555D02* +X128887901Y-128673977D01* +X128887901Y-128673977D02* +X127933896Y-129091268D01* +X127933896Y-129091268D02* +X126964244Y-129470783D01* +X126964244Y-129470783D02* +X125980439Y-129811936D01* +X125980439Y-129811936D02* +X124983999Y-130114203D01* +X124983999Y-130114203D02* +X123976461Y-130377117D01* +X123976461Y-130377117D02* +X122959377Y-130600272D01* +X122959377Y-130600272D02* +X121934317Y-130783324D01* +X121934317Y-130783324D02* +X120902860Y-130925992D01* +X120902860Y-130925992D02* +X119866597Y-131028055D01* +X119866597Y-131028055D02* +X117786050Y-131109800D01* +X117786050Y-131109800D02* +X117786050Y-131109800D01* +X117786050Y-131109800D02* +X116722364Y-131089170D01* +X116722364Y-131089170D02* +X115660278Y-131027310D01* +X115660278Y-131027310D02* +X114601389Y-130924315D01* +X114601389Y-130924315D02* +X113547290Y-130780338D01* +X113547290Y-130780338D02* +X112499567Y-130595596D01* +X112499567Y-130595596D02* +X111459795Y-130370367D01* +X111459795Y-130370367D02* +X110429539Y-130104990D01* +X110429539Y-130104990D02* +X109410347Y-129799864D01* +X109410347Y-129799864D02* +X108403753Y-129455448D01* +X108403753Y-129455448D02* +X107411271Y-129072260D01* +X107411271Y-129072260D02* +X106434394Y-128650876D01* +X106434394Y-128650876D02* +X105474591Y-128191931D01* +X105474591Y-128191931D02* +X104533305Y-127696113D01* +X104533305Y-127696113D02* +X103611953Y-127164170D01* +X103611953Y-127164170D02* +X102711920Y-126596902D01* +X102711920Y-126596902D02* +X101834560Y-125995160D01* +X101834560Y-125995160D02* +X100981192Y-125359852D01* +X100981192Y-125359852D02* +X100153100Y-124691931D01* +X100153100Y-124691931D02* +X99351530Y-123992403D01* +X99351530Y-123992403D02* +X98577688Y-123262320D01* +X98577688Y-123262320D02* +X97832736Y-122502781D01* +X97832736Y-122502781D02* +X97117796Y-121714926D01* +X97117796Y-121714926D02* +X96433944Y-120899942D01* +X96433944Y-120899942D02* +X95782207Y-120059054D01* +X95782207Y-120059054D02* +X95163565Y-119193528D01* +X95163565Y-119193528D02* +X94578950Y-118304664D01* +X94578950Y-118304664D02* +X94029241Y-117393800D01* +X94029241Y-117393800D02* +X93515264Y-116462306D01* +X93515264Y-116462306D02* +X93037793Y-115511583D01* +X93037793Y-115511583D02* +X92597546Y-114543060D01* +X92597546Y-114543060D02* +X92195184Y-113558195D01* +X92195184Y-113558195D02* +X91831314Y-112558469D01* +X91831314Y-112558469D02* +X91506482Y-111545386D01* +X91506482Y-111545386D02* +X91221177Y-110520469D01* +X91221177Y-110520469D02* +X90975828Y-109485261D01* +X90975828Y-109485261D02* +X90770804Y-108441317D01* +X90770804Y-108441317D02* +X90606413Y-107390208D01* +X90606413Y-107390208D02* +X90482904Y-106333516D01* +X90482904Y-106333516D02* +X90400461Y-105272829D01* +X90400461Y-105272829D02* +X90359208Y-104209743D01* +X90359208Y-104209743D02* +X90359208Y-103145857D01* +X90359208Y-103145857D02* +X90400461Y-102082771D01* +X90400461Y-102082771D02* +X90482904Y-101022084D01* +X90482904Y-101022084D02* +X90606413Y-99965392D01* +X90606413Y-99965392D02* +X90770804Y-98914283D01* +X90770804Y-98914283D02* +X90975828Y-97870339D01* +X90975828Y-97870339D02* +X91221177Y-96835131D01* +X91221177Y-96835131D02* +X91506482Y-95810214D01* +X91506482Y-95810214D02* +X91831314Y-94797131D01* +X91831314Y-94797131D02* +X92195184Y-93797405D01* +X92195184Y-93797405D02* +X92597546Y-92812540D01* +X92597546Y-92812540D02* +X93037793Y-91844017D01* +X93037793Y-91844017D02* +X93515264Y-90893294D01* +X93515264Y-90893294D02* +X94029241Y-89961800D01* +X94029241Y-89961800D02* +X94578950Y-89050936D01* +X94578950Y-89050936D02* +X95163565Y-88162072D01* +X95163565Y-88162072D02* +X95782207Y-87296546D01* +X95782207Y-87296546D02* +X96433944Y-86455658D01* +X96433944Y-86455658D02* +X97117796Y-85640674D01* +X97117796Y-85640674D02* +X97832736Y-84852819D01* +X97832736Y-84852819D02* +X98577688Y-84093280D01* +X98577688Y-84093280D02* +X99351530Y-83363197D01* +X99351530Y-83363197D02* +X100153100Y-82663669D01* +X100153100Y-82663669D02* +X100981192Y-81995748D01* +X100981192Y-81995748D02* +X101834560Y-81360440D01* +X101834560Y-81360440D02* +X102711920Y-80758698D01* +X102711920Y-80758698D02* +X103611953Y-80191430D01* +X103611953Y-80191430D02* +X104533305Y-79659487D01* +X104533305Y-79659487D02* +X105474591Y-79163669D01* +X105474591Y-79163669D02* +X106434394Y-78704724D01* +X106434394Y-78704724D02* +X107411271Y-78283340D01* +X107411271Y-78283340D02* +X108403753Y-77900152D01* +X108403753Y-77900152D02* +X109410347Y-77555736D01* +X109410347Y-77555736D02* +X110429539Y-77250610D01* +X110429539Y-77250610D02* +X111459795Y-76985233D01* +X111459795Y-76985233D02* +X112499567Y-76760004D01* +X112499567Y-76760004D02* +X113547290Y-76575262D01* +X113547290Y-76575262D02* +X114601389Y-76431285D01* +X114601389Y-76431285D02* +X115660278Y-76328290D01* +X115660278Y-76328290D02* +X117786050Y-76245800D01* +X117786050Y-76245800D02* +X117786050Y-76245800D01* +X98296709Y-98692700D02* +X98090011Y-99584916D01* +X98543801Y-97810817D02* +X98296709Y-98692700D01* +X98830775Y-96941094D02* +X98543801Y-97810817D01* +X99157038Y-96085334D02* +X98830775Y-96941094D01* +X99521912Y-95245310D02* +X99157038Y-96085334D01* +X99924641Y-94422764D02* +X99521912Y-95245310D01* +X100364390Y-93619400D02* +X99924641Y-94422764D01* +X100840249Y-92836884D02* +X100364390Y-93619400D01* +X101351230Y-92076837D02* +X100840249Y-92836884D01* +X101896275Y-91340835D02* +X101351230Y-92076837D01* +X102474254Y-90630404D02* +X101896275Y-91340835D01* +X103083969Y-89947015D02* +X102474254Y-90630404D01* +X98830775Y-110414506D02* +X99157038Y-111270266D01* +X98543801Y-109544783D02* +X98830775Y-110414506D01* +X98296709Y-108662900D02* +X98543801Y-109544783D01* +X98090011Y-107770684D02* +X98296709Y-108662900D01* +X97924137Y-106869985D02* +X98090011Y-107770684D01* +X97799429Y-105962670D02* +X97924137Y-106869985D01* +X97716147Y-105050619D02* +X97799429Y-105962670D01* +X97674463Y-104135723D02* +X97716147Y-105050619D01* +X97674463Y-103219877D02* +X97674463Y-104135723D01* +X97716147Y-102304981D02* +X97674463Y-103219877D01* +X97799429Y-101392930D02* +X97716147Y-102304981D01* +X97924137Y-100485615D02* +X97799429Y-101392930D01* +X98090011Y-99584916D02* +X97924137Y-100485615D01* +X116870442Y-123773752D02* +X117786050Y-123794600D01* +X115956732Y-123711253D02* +X116870442Y-123773752D01* +X115046813Y-123607231D02* +X115956732Y-123711253D01* +X114142571Y-123461902D02* +X115046813Y-123607231D01* +X113245882Y-123275568D02* +X114142571Y-123461902D01* +X112358602Y-123048614D02* +X113245882Y-123275568D01* +X111482572Y-122781512D02* +X112358602Y-123048614D01* +X110619607Y-122474814D02* +X111482572Y-122781512D01* +X109771495Y-122129156D02* +X110619607Y-122474814D01* +X108939995Y-121745255D02* +X109771495Y-122129156D01* +X108126829Y-121323907D02* +X108939995Y-121745255D01* +X107333684Y-120865984D02* +X108126829Y-121323907D01* +X106562202Y-120372436D02* +X107333684Y-120865984D01* +X103724156Y-89292085D02* +X103083969Y-89947015D01* +X104393489Y-88666972D02* +X103724156Y-89292085D01* +X105090580Y-88072971D02* +X104393489Y-88666972D01* +X105813984Y-87511314D02* +X105090580Y-88072971D01* +X106562202Y-86983164D02* +X105813984Y-87511314D01* +X107333684Y-86489616D02* +X106562202Y-86983164D01* +X108126829Y-86031693D02* +X107333684Y-86489616D01* +X108939995Y-85610345D02* +X108126829Y-86031693D01* +X109771495Y-85226444D02* +X108939995Y-85610345D01* +X110619607Y-84880786D02* +X109771495Y-85226444D01* +X111482572Y-84574088D02* +X110619607Y-84880786D01* +X112358602Y-84306986D02* +X111482572Y-84574088D01* +X113245882Y-84080032D02* +X112358602Y-84306986D01* +X114142571Y-83893698D02* +X113245882Y-84080032D01* +X115046813Y-83748369D02* +X114142571Y-83893698D01* +X115956732Y-83644347D02* +X115046813Y-83748369D01* +X116870442Y-83581848D02* +X115956732Y-83644347D01* +X117786050Y-83561000D02* +X116870442Y-83581848D01* +X105813984Y-119844286D02* +X106562202Y-120372436D01* +X105090580Y-119282629D02* +X105813984Y-119844286D01* +X104393489Y-118688628D02* +X105090580Y-119282629D01* +X103724156Y-118063515D02* +X104393489Y-118688628D01* +X103083969Y-117408585D02* +X103724156Y-118063515D01* +X102474254Y-116725196D02* +X103083969Y-117408585D01* +X101896275Y-116014765D02* +X102474254Y-116725196D01* +X101351230Y-115278763D02* +X101896275Y-116014765D01* +X100840249Y-114518716D02* +X101351230Y-115278763D01* +X100364390Y-113736200D02* +X100840249Y-114518716D01* +X99924641Y-112932836D02* +X100364390Y-113736200D01* +X99521912Y-112110290D02* +X99924641Y-112932836D01* +X99157038Y-111270266D02* +X99521912Y-112110290D01* +X133922585Y-81287037D02* +X134792929Y-81914359D01* +X133029126Y-80693099D02* +X133922585Y-81287037D01* +X132113830Y-80133396D02* +X133029126Y-80693099D01* +X131178011Y-79608730D02* +X132113830Y-80133396D01* +X130223008Y-79119853D02* +X131178011Y-79608730D01* +X129250189Y-78667464D02* +X130223008Y-79119853D01* +X128260947Y-78252213D02* +X129250189Y-78667464D01* +X127256700Y-77874693D02* +X128260947Y-78252213D01* +X126238887Y-77535446D02* +X127256700Y-77874693D01* +X125208965Y-77234957D02* +X126238887Y-77535446D01* +X124168410Y-76973658D02* +X125208965Y-77234957D01* +X123118713Y-76751922D02* +X124168410Y-76973658D01* +X122061376Y-76570066D02* +X123118713Y-76751922D01* +X120997915Y-76428352D02* +X122061376Y-76570066D01* +X119929853Y-76326983D02* +X120997915Y-76428352D01* +X118858720Y-76266103D02* +X119929853Y-76326983D01* +X117786050Y-76245800D02* +X118858720Y-76266103D01* +X97522006Y-124796384D02* +X96729117Y-124006928D01* +X98344472Y-125554977D02* +X97522006Y-124796384D01* +X99195314Y-126281602D02* +X98344472Y-125554977D01* +X100073289Y-126975196D02* +X99195314Y-126281602D01* +X100977117Y-127634748D02* +X100073289Y-126975196D01* +X101905478Y-128259296D02* +X100977117Y-127634748D01* +X102857018Y-128847927D02* +X101905478Y-128259296D01* +X103830347Y-129399782D02* +X102857018Y-128847927D01* +X104824045Y-129914057D02* +X103830347Y-129399782D01* +X105836662Y-130390000D02* +X104824045Y-129914057D01* +X106866719Y-130826917D02* +X105836662Y-130390000D01* +X107912713Y-131224170D02* +X106866719Y-130826917D01* +X108973118Y-131581180D02* +X107912713Y-131224170D01* +X110046385Y-131897425D02* +X108973118Y-131581180D01* +X111130949Y-132172443D02* +X110046385Y-131897425D01* +X128260947Y-130932187D02* +X127256700Y-131309707D01* +X129250189Y-130516936D02* +X128260947Y-130932187D01* +X130223008Y-130064547D02* +X129250189Y-130516936D01* +X131178011Y-129575670D02* +X130223008Y-130064547D01* +X132113830Y-129051004D02* +X131178011Y-129575670D01* +X133029126Y-128491301D02* +X132113830Y-129051004D01* +X133922585Y-127897363D02* +X133029126Y-128491301D01* +X134792929Y-127270041D02* +X133922585Y-127897363D01* +X135638911Y-126610232D02* +X134792929Y-127270041D01* +X136459319Y-125918883D02* +X135638911Y-126610232D01* +X137252977Y-125196984D02* +X136459319Y-125918883D01* +X138018750Y-124445569D02* +X137252977Y-125196984D01* +X138755539Y-123665714D02* +X138018750Y-124445569D01* +X139462290Y-122858536D02* +X138755539Y-123665714D01* +X140137989Y-122025192D02* +X139462290Y-122858536D01* +X88705728Y-107127080D02* +X88669547Y-106680000D01* +X88859715Y-108235323D02* +X88705728Y-107127080D01* +X89055920Y-109336875D02* +X88859715Y-108235323D01* +X89294058Y-110430129D02* +X89055920Y-109336875D01* +X112225227Y-132405834D02* +X111130949Y-132172443D01* +X113327620Y-132597256D02* +X112225227Y-132405834D01* +X114436521Y-132746430D02* +X113327620Y-132597256D01* +X115550311Y-132853139D02* +X114436521Y-132746430D01* +X116667363Y-132917227D02* +X115550311Y-132853139D01* +X117786049Y-132938600D02* +X116667363Y-132917227D01* +X117786050Y-132938600D02* +X117786049Y-132938600D01* +X119929853Y-132857417D02* +X117786050Y-132938600D01* +X120997915Y-132756048D02* +X119929853Y-132857417D01* +X122061376Y-132614334D02* +X120997915Y-132756048D01* +X123118713Y-132432478D02* +X122061376Y-132614334D01* +X124168410Y-132210742D02* +X123118713Y-132432478D01* +X125208965Y-131949443D02* +X124168410Y-132210742D01* +X126238887Y-131648954D02* +X125208965Y-131949443D01* +X127256700Y-131309707D02* +X126238887Y-131648954D01* +X89573781Y-111513489D02* +X89294058Y-110430129D01* +X89894681Y-112585374D02* +X89573781Y-111513489D01* +X90256290Y-113644219D02* +X89894681Y-112585374D01* +X90658080Y-114688480D02* +X90256290Y-113644219D01* +X91099464Y-115716631D02* +X90658080Y-114688480D01* +X91579797Y-116727172D02* +X91099464Y-115716631D01* +X92098380Y-117718628D02* +X91579797Y-116727172D01* +X92654456Y-118689553D02* +X92098380Y-117718628D01* +X93247211Y-119638528D02* +X92654456Y-118689553D01* +X93875782Y-120564170D02* +X93247211Y-119638528D01* +X94539252Y-121465127D02* +X93875782Y-120564170D01* +X95236650Y-122340083D02* +X94539252Y-121465127D01* +X95966961Y-123187763D02* +X95236650Y-122340083D01* +X96729117Y-124006928D02* +X95966961Y-123187763D01* +X140781670Y-121166875D02* +X140137989Y-122025192D01* +X141392410Y-120284815D02* +X140781670Y-121166875D01* +X141969333Y-119380276D02* +X141392410Y-120284815D01* +X142511615Y-118454553D02* +X141969333Y-119380276D01* +X143018477Y-117508972D02* +X142511615Y-118454553D01* +X143489194Y-116544889D02* +X143018477Y-117508972D01* +X143923092Y-115563683D02* +X143489194Y-116544889D01* +X144319549Y-114566760D02* +X143923092Y-115563683D01* +X144677996Y-113555549D02* +X144319549Y-114566760D01* +X144997921Y-112531498D02* +X144677996Y-113555549D01* +X145278866Y-111496074D02* +X144997921Y-112531498D01* +X145520427Y-110450761D02* +X145278866Y-111496074D01* +X145722259Y-109397055D02* +X145520427Y-110450761D01* +X145884072Y-108336466D02* +X145722259Y-109397055D01* +X146005636Y-107270513D02* +X145884072Y-108336466D01* +X146086775Y-106200724D02* +X146005636Y-107270513D01* +X146127374Y-105128631D02* +X146086775Y-106200724D01* +X146127374Y-104055769D02* +X146127374Y-105128631D01* +X146086775Y-102983676D02* +X146127374Y-104055769D01* +X146005636Y-101913887D02* +X146086775Y-102983676D01* +X145884072Y-100847934D02* +X146005636Y-101913887D01* +X145722259Y-99787345D02* +X145884072Y-100847934D01* +X145520427Y-98733639D02* +X145722259Y-99787345D01* +X145278866Y-97688326D02* +X145520427Y-98733639D01* +X144997921Y-96652902D02* +X145278866Y-97688326D01* +X144677996Y-95628851D02* +X144997921Y-96652902D01* +X144319549Y-94617640D02* +X144677996Y-95628851D01* +X143923092Y-93620717D02* +X144319549Y-94617640D01* +X143489194Y-92639511D02* +X143923092Y-93620717D01* +X143018477Y-91675428D02* +X143489194Y-92639511D01* +X142511615Y-90729847D02* +X143018477Y-91675428D01* +X141969333Y-89804124D02* +X142511615Y-90729847D01* +X141392410Y-88899585D02* +X141969333Y-89804124D01* +X140781670Y-88017525D02* +X141392410Y-88899585D01* +X140137989Y-87159208D02* +X140781670Y-88017525D01* +X139462290Y-86325864D02* +X140137989Y-87159208D01* +X138755539Y-85518686D02* +X139462290Y-86325864D01* +X138018750Y-84738831D02* +X138755539Y-85518686D01* +X137252977Y-83987416D02* +X138018750Y-84738831D01* +X136459319Y-83265517D02* +X137252977Y-83987416D01* +X135638911Y-82574168D02* +X136459319Y-83265517D01* +X134792929Y-81914359D02* +X135638911Y-82574168D01* +X141611736Y-98121224D02* +X141611736Y-98121224D01* +X103113926Y-103335161D02* +X103155456Y-102554790D01* +G04 #@! TD* +M02* diff --git a/Glas/gerber/receive_v1_1-Edge.Cuts.gbr b/Glas/gerber/receive_v1_1-Edge.Cuts.gbr new file mode 100644 index 0000000..27ceb57 --- /dev/null +++ b/Glas/gerber/receive_v1_1-Edge.Cuts.gbr @@ -0,0 +1,20 @@ +G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,5.0.0+dfsg1-1~bpo9+1* +G04 #@! TF.CreationDate,2018-12-28T11:25:29+01:00* +G04 #@! TF.ProjectId,receive_v1_1,726563656976655F76315F312E6B6963,rev?* +G04 #@! TF.SameCoordinates,Original* +G04 #@! TF.FileFunction,Profile,NP* +%FSLAX46Y46*% +G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* +G04 Created by KiCad (PCBNEW 5.0.0+dfsg1-1~bpo9+1) date Fri Dec 28 11:25:29 2018* +%MOMM*% +%LPD*% +G01* +G04 APERTURE LIST* +%ADD10C,0.152400*% +G04 APERTURE END LIST* +D10* +X148266050Y-104897000D02* +G75* +G03X148266050Y-104897000I-30480000J0D01* +G01* +M02* diff --git a/Glas/gerber/receive_v1_1-F.Mask.gbr b/Glas/gerber/receive_v1_1-F.Mask.gbr new file mode 100644 index 0000000..035aaed --- /dev/null +++ b/Glas/gerber/receive_v1_1-F.Mask.gbr @@ -0,0 +1,234 @@ +G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,5.0.0+dfsg1-1~bpo9+1* +G04 #@! TF.CreationDate,2018-12-28T11:25:29+01:00* +G04 #@! TF.ProjectId,receive_v1_1,726563656976655F76315F312E6B6963,rev?* +G04 #@! TF.SameCoordinates,Original* +G04 #@! TF.FileFunction,Soldermask,Top* +G04 #@! TF.FilePolarity,Negative* +%FSLAX46Y46*% +G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* +G04 Created by KiCad (PCBNEW 5.0.0+dfsg1-1~bpo9+1) date Fri Dec 28 11:25:29 2018* +%MOMM*% +%LPD*% +G01* +G04 APERTURE LIST* +%ADD10R,2.006200X1.803200*% +%ADD11R,1.400000X1.400000*% +%ADD12R,1.503200X1.703200*% +%ADD13R,1.403200X1.403200*% +%ADD14R,1.803200X2.003200*% +%ADD15R,1.403200X0.753200*% +%ADD16R,2.003200X1.803200*% +%ADD17R,1.703200X1.503200*% +%ADD18R,1.703200X1.203200*% +%ADD19R,2.400000X2.400000*% +%ADD20R,1.403200X1.203200*% +%ADD21R,1.983200X2.363200*% +%ADD22R,0.803200X1.003200*% +%ADD23R,1.803200X2.903200*% +%ADD24R,3.203200X5.203200*% +%ADD25R,1.803200X2.006200*% +%ADD26R,2.603200X2.603200*% +G04 APERTURE END LIST* +D10* +G04 #@! TO.C,R4* +X139700000Y-93497000D03* +X139700000Y-90653000D03* +G04 #@! TD* +G04 #@! TO.C,R11* +X133096000Y-99416000D03* +X133096000Y-102260000D03* +G04 #@! TD* +D11* +G04 #@! TO.C,TP8* +X135890000Y-93218000D03* +G04 #@! TD* +G04 #@! TO.C,TP7* +X128524000Y-102362000D03* +G04 #@! TD* +D10* +G04 #@! TO.C,R10* +X120015000Y-95774599D03* +X120015000Y-98618599D03* +G04 #@! TD* +D12* +G04 #@! TO.C,R2* +X113096000Y-106681065D03* +X114996000Y-106681065D03* +G04 #@! TD* +D13* +G04 #@! TO.C,LED1* +X108517259Y-106681065D03* +X110617259Y-106681065D03* +G04 #@! TD* +D14* +G04 #@! TO.C,C2* +X113795000Y-97155000D03* +X110995000Y-97155000D03* +G04 #@! TD* +D15* +G04 #@! TO.C,IC1* +X111276375Y-104009509D03* +X111276375Y-102109509D03* +X113876375Y-102109509D03* +X113876375Y-103059509D03* +X113876375Y-104009509D03* +G04 #@! TD* +D16* +G04 #@! TO.C,C3* +X117187259Y-104271065D03* +X117187259Y-101471065D03* +G04 #@! TD* +D12* +G04 #@! TO.C,C4* +X111445000Y-99695000D03* +X113345000Y-99695000D03* +G04 #@! TD* +D17* +G04 #@! TO.C,R1* +X108585000Y-104455000D03* +X108585000Y-102555000D03* +G04 #@! TD* +D10* +G04 #@! TO.C,R3* +X123190000Y-98618599D03* +X123190000Y-95774599D03* +G04 #@! TD* +D18* +G04 #@! TO.C,U$1* +X124160000Y-92200000D03* +X124160000Y-90200000D03* +X124160000Y-88200000D03* +X124160000Y-86200000D03* +X124160000Y-84200000D03* +X124160000Y-82200000D03* +X124160000Y-80200000D03* +X111560000Y-92200000D03* +X111560000Y-90200000D03* +X111560000Y-88200000D03* +X111560000Y-86200000D03* +X111560000Y-84200000D03* +X111560000Y-82200000D03* +X111560000Y-80200000D03* +G04 #@! TD* +D19* +G04 #@! TO.C,TP4* +X106680000Y-92710000D03* +G04 #@! TD* +G04 #@! TO.C,TP6* +X129540000Y-88900000D03* +G04 #@! TD* +G04 #@! TO.C,TP5* +X129540000Y-85090000D03* +G04 #@! TD* +G04 #@! TO.C,TP3* +X129540000Y-96520000D03* +G04 #@! TD* +G04 #@! TO.C,TP2* +X129540000Y-92710000D03* +G04 #@! TD* +G04 #@! TO.C,TP1* +X129540000Y-81280000D03* +G04 #@! TD* +D20* +G04 #@! TO.C,IC3* +X91603800Y-112293200D03* +X91603800Y-110693200D03* +X96203800Y-112293200D03* +X96203800Y-110693200D03* +X96203800Y-109093200D03* +G04 #@! TD* +D14* +G04 #@! TO.C,C1* +X91310000Y-105410000D03* +X94110000Y-105410000D03* +G04 #@! TD* +D12* +G04 #@! TO.C,C5* +X98347350Y-105316100D03* +X100247350Y-105316100D03* +G04 #@! TD* +D21* +G04 #@! TO.C,D1* +X93210000Y-92710000D03* +X97280000Y-92710000D03* +G04 #@! TD* +D20* +G04 #@! TO.C,IC2* +X143905000Y-96520200D03* +X143905000Y-98120200D03* +X139305000Y-96520200D03* +X139305000Y-98120200D03* +X139305000Y-99720200D03* +G04 #@! TD* +D22* +G04 #@! TO.C,D2* +X107188000Y-81514000D03* +X107188000Y-79014000D03* +G04 #@! TD* +D12* +G04 #@! TO.C,R5* +X100015000Y-90805000D03* +X101915000Y-90805000D03* +G04 #@! TD* +D17* +G04 #@! TO.C,R6* +X107630000Y-84140000D03* +X107630000Y-86040000D03* +G04 #@! TD* +G04 #@! TO.C,C6* +X101600000Y-93980000D03* +X101600000Y-95880000D03* +G04 #@! TD* +D22* +G04 #@! TO.C,D3* +X109030000Y-81450000D03* +X109030000Y-78950000D03* +G04 #@! TD* +D17* +G04 #@! TO.C,C7* +X133350000Y-95565000D03* +X133350000Y-93665000D03* +G04 #@! TD* +D23* +G04 #@! TO.C,C8* +X100962000Y-82804000D03* +X103762000Y-82804000D03* +G04 #@! TD* +D12* +G04 #@! TO.C,R7* +X96520000Y-88900000D03* +X94620000Y-88900000D03* +G04 #@! TD* +D24* +G04 #@! TO.C,X1* +X121444000Y-105918000D03* +X125444000Y-105918000D03* +G04 #@! TD* +D25* +G04 #@! TO.C,R8* +X104292000Y-111125000D03* +X101448000Y-111125000D03* +G04 #@! TD* +G04 #@! TO.C,R9* +X104927000Y-87630000D03* +X102083000Y-87630000D03* +G04 #@! TD* +D16* +G04 #@! TO.C,C9* +X104775000Y-101095000D03* +X104775000Y-98295000D03* +G04 #@! TD* +G04 #@! TO.C,C10* +X101600000Y-98295000D03* +X101600000Y-101095000D03* +G04 #@! TD* +D26* +G04 #@! TO.C,D4* +X97790000Y-101260000D03* +X97790000Y-96860000D03* +G04 #@! TD* +G04 #@! TO.C,D5* +X92710000Y-96860000D03* +X92710000Y-101260000D03* +G04 #@! TD* +M02* diff --git a/Glas/gerber/receive_v1_1-F.Paste.gbr b/Glas/gerber/receive_v1_1-F.Paste.gbr new file mode 100644 index 0000000..16df676 --- /dev/null +++ b/Glas/gerber/receive_v1_1-F.Paste.gbr @@ -0,0 +1,205 @@ +G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,5.0.0+dfsg1-1~bpo9+1* +G04 #@! TF.CreationDate,2018-12-28T11:25:29+01:00* +G04 #@! TF.ProjectId,receive_v1_1,726563656976655F76315F312E6B6963,rev?* +G04 #@! TF.SameCoordinates,Original* +G04 #@! TF.FileFunction,Paste,Top* +G04 #@! TF.FilePolarity,Positive* +%FSLAX46Y46*% +G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* +G04 Created by KiCad (PCBNEW 5.0.0+dfsg1-1~bpo9+1) date Fri Dec 28 11:25:29 2018* +%MOMM*% +%LPD*% +G01* +G04 APERTURE LIST* +%ADD10R,1.803000X1.600000*% +%ADD11R,1.300000X1.500000*% +%ADD12R,1.200000X1.200000*% +%ADD13R,1.600000X1.800000*% +%ADD14R,1.200000X0.550000*% +%ADD15R,1.800000X1.600000*% +%ADD16R,1.500000X1.300000*% +%ADD17R,1.500000X1.000000*% +%ADD18R,1.200000X1.000000*% +%ADD19R,1.780000X2.160000*% +%ADD20R,0.600000X0.800000*% +%ADD21R,1.600000X2.700000*% +%ADD22R,3.000000X5.000000*% +%ADD23R,1.600000X1.803000*% +%ADD24R,2.400000X2.400000*% +G04 APERTURE END LIST* +D10* +G04 #@! TO.C,R4* +X139700000Y-93497000D03* +X139700000Y-90653000D03* +G04 #@! TD* +G04 #@! TO.C,R11* +X133096000Y-99416000D03* +X133096000Y-102260000D03* +G04 #@! TD* +G04 #@! TO.C,R10* +X120015000Y-95774599D03* +X120015000Y-98618599D03* +G04 #@! TD* +D11* +G04 #@! TO.C,R2* +X113096000Y-106681065D03* +X114996000Y-106681065D03* +G04 #@! TD* +D12* +G04 #@! TO.C,LED1* +X108517259Y-106681065D03* +X110617259Y-106681065D03* +G04 #@! TD* +D13* +G04 #@! TO.C,C2* +X113795000Y-97155000D03* +X110995000Y-97155000D03* +G04 #@! TD* +D14* +G04 #@! TO.C,IC1* +X111276375Y-104009509D03* +X111276375Y-102109509D03* +X113876375Y-102109509D03* +X113876375Y-103059509D03* +X113876375Y-104009509D03* +G04 #@! TD* +D15* +G04 #@! TO.C,C3* +X117187259Y-104271065D03* +X117187259Y-101471065D03* +G04 #@! TD* +D11* +G04 #@! TO.C,C4* +X111445000Y-99695000D03* +X113345000Y-99695000D03* +G04 #@! TD* +D16* +G04 #@! TO.C,R1* +X108585000Y-104455000D03* +X108585000Y-102555000D03* +G04 #@! TD* +D10* +G04 #@! TO.C,R3* +X123190000Y-98618599D03* +X123190000Y-95774599D03* +G04 #@! TD* +D17* +G04 #@! TO.C,U$1* +X124160000Y-92200000D03* +X124160000Y-90200000D03* +X124160000Y-88200000D03* +X124160000Y-86200000D03* +X124160000Y-84200000D03* +X124160000Y-82200000D03* +X124160000Y-80200000D03* +X111560000Y-92200000D03* +X111560000Y-90200000D03* +X111560000Y-88200000D03* +X111560000Y-86200000D03* +X111560000Y-84200000D03* +X111560000Y-82200000D03* +X111560000Y-80200000D03* +G04 #@! TD* +D18* +G04 #@! TO.C,IC3* +X91603800Y-112293200D03* +X91603800Y-110693200D03* +X96203800Y-112293200D03* +X96203800Y-110693200D03* +X96203800Y-109093200D03* +G04 #@! TD* +D13* +G04 #@! TO.C,C1* +X91310000Y-105410000D03* +X94110000Y-105410000D03* +G04 #@! TD* +D11* +G04 #@! TO.C,C5* +X98347350Y-105316100D03* +X100247350Y-105316100D03* +G04 #@! TD* +D19* +G04 #@! TO.C,D1* +X93210000Y-92710000D03* +X97280000Y-92710000D03* +G04 #@! TD* +D18* +G04 #@! TO.C,IC2* +X143905000Y-96520200D03* +X143905000Y-98120200D03* +X139305000Y-96520200D03* +X139305000Y-98120200D03* +X139305000Y-99720200D03* +G04 #@! TD* +D20* +G04 #@! TO.C,D2* +X107188000Y-81514000D03* +X107188000Y-79014000D03* +G04 #@! TD* +D11* +G04 #@! TO.C,R5* +X100015000Y-90805000D03* +X101915000Y-90805000D03* +G04 #@! TD* +D16* +G04 #@! TO.C,R6* +X107630000Y-84140000D03* +X107630000Y-86040000D03* +G04 #@! TD* +G04 #@! TO.C,C6* +X101600000Y-93980000D03* +X101600000Y-95880000D03* +G04 #@! TD* +D20* +G04 #@! TO.C,D3* +X109030000Y-81450000D03* +X109030000Y-78950000D03* +G04 #@! TD* +D16* +G04 #@! TO.C,C7* +X133350000Y-95565000D03* +X133350000Y-93665000D03* +G04 #@! TD* +D21* +G04 #@! TO.C,C8* +X100962000Y-82804000D03* +X103762000Y-82804000D03* +G04 #@! TD* +D11* +G04 #@! TO.C,R7* +X96520000Y-88900000D03* +X94620000Y-88900000D03* +G04 #@! TD* +D22* +G04 #@! TO.C,X1* +X121444000Y-105918000D03* +X125444000Y-105918000D03* +G04 #@! TD* +D23* +G04 #@! TO.C,R8* +X104292000Y-111125000D03* +X101448000Y-111125000D03* +G04 #@! TD* +G04 #@! TO.C,R9* +X104927000Y-87630000D03* +X102083000Y-87630000D03* +G04 #@! TD* +D15* +G04 #@! TO.C,C9* +X104775000Y-101095000D03* +X104775000Y-98295000D03* +G04 #@! TD* +G04 #@! TO.C,C10* +X101600000Y-98295000D03* +X101600000Y-101095000D03* +G04 #@! TD* +D24* +G04 #@! TO.C,D4* +X97790000Y-101260000D03* +X97790000Y-96860000D03* +G04 #@! TD* +G04 #@! TO.C,D5* +X92710000Y-96860000D03* +X92710000Y-101260000D03* +G04 #@! TD* +M02* diff --git a/Glas/gerber/receive_v1_1-F.SilkS.gbr b/Glas/gerber/receive_v1_1-F.SilkS.gbr new file mode 100644 index 0000000..a20e63e --- /dev/null +++ b/Glas/gerber/receive_v1_1-F.SilkS.gbr @@ -0,0 +1,1592 @@ +G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,5.0.0+dfsg1-1~bpo9+1* +G04 #@! TF.CreationDate,2018-12-28T11:25:29+01:00* +G04 #@! TF.ProjectId,receive_v1_1,726563656976655F76315F312E6B6963,rev?* +G04 #@! TF.SameCoordinates,Original* +G04 #@! TF.FileFunction,Legend,Top* +G04 #@! TF.FilePolarity,Positive* +%FSLAX46Y46*% +G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* +G04 Created by KiCad (PCBNEW 5.0.0+dfsg1-1~bpo9+1) date Fri Dec 28 11:25:29 2018* +%MOMM*% +%LPD*% +G01* +G04 APERTURE LIST* +%ADD10C,0.250000*% +%ADD11C,0.300000*% +%ADD12C,0.120000*% +%ADD13C,0.100000*% +%ADD14C,0.152400*% +%ADD15C,0.127000*% +%ADD16C,0.101600*% +%ADD17C,0.203200*% +%ADD18C,0.150000*% +%ADD19C,0.048768*% +G04 APERTURE END LIST* +D10* +X132588095Y-82677380D02* +X132588095Y-81677380D01* +X132969047Y-81677380D01* +X133064285Y-81725000D01* +X133111904Y-81772619D01* +X133159523Y-81867857D01* +X133159523Y-82010714D01* +X133111904Y-82105952D01* +X133064285Y-82153571D01* +X132969047Y-82201190D01* +X132588095Y-82201190D01* +X133588095Y-82677380D02* +X133588095Y-81677380D01* +X133826190Y-81677380D01* +X133969047Y-81725000D01* +X134064285Y-81820238D01* +X134111904Y-81915476D01* +X134159523Y-82105952D01* +X134159523Y-82248809D01* +X134111904Y-82439285D01* +X134064285Y-82534523D01* +X133969047Y-82629761D01* +X133826190Y-82677380D01* +X133588095Y-82677380D01* +X132088095Y-83427380D02* +X132659523Y-83427380D01* +X132373809Y-84427380D02* +X132373809Y-83427380D01* +X132897619Y-83427380D02* +X133564285Y-84427380D01* +X133564285Y-83427380D02* +X132897619Y-84427380D01* +X133945238Y-84427380D02* +X133945238Y-83427380D01* +X134183333Y-83427380D01* +X134326190Y-83475000D01* +X134421428Y-83570238D01* +X134469047Y-83665476D01* +X134516666Y-83855952D01* +X134516666Y-83998809D01* +X134469047Y-84189285D01* +X134421428Y-84284523D01* +X134326190Y-84379761D01* +X134183333Y-84427380D01* +X133945238Y-84427380D01* +X132683333Y-86177380D02* +X132350000Y-85701190D01* +X132111904Y-86177380D02* +X132111904Y-85177380D01* +X132492857Y-85177380D01* +X132588095Y-85225000D01* +X132635714Y-85272619D01* +X132683333Y-85367857D01* +X132683333Y-85510714D01* +X132635714Y-85605952D01* +X132588095Y-85653571D01* +X132492857Y-85701190D01* +X132111904Y-85701190D01* +X133016666Y-85177380D02* +X133683333Y-86177380D01* +X133683333Y-85177380D02* +X133016666Y-86177380D01* +X134064285Y-86177380D02* +X134064285Y-85177380D01* +X134302380Y-85177380D01* +X134445238Y-85225000D01* +X134540476Y-85320238D01* +X134588095Y-85415476D01* +X134635714Y-85605952D01* +X134635714Y-85748809D01* +X134588095Y-85939285D01* +X134540476Y-86034523D01* +X134445238Y-86129761D01* +X134302380Y-86177380D01* +X134064285Y-86177380D01* +X132588095Y-86975000D02* +X132492857Y-86927380D01* +X132350000Y-86927380D01* +X132207142Y-86975000D01* +X132111904Y-87070238D01* +X132064285Y-87165476D01* +X132016666Y-87355952D01* +X132016666Y-87498809D01* +X132064285Y-87689285D01* +X132111904Y-87784523D01* +X132207142Y-87879761D01* +X132350000Y-87927380D01* +X132445238Y-87927380D01* +X132588095Y-87879761D01* +X132635714Y-87832142D01* +X132635714Y-87498809D01* +X132445238Y-87498809D01* +X133064285Y-87927380D02* +X133064285Y-86927380D01* +X133635714Y-87927380D01* +X133635714Y-86927380D01* +X134111904Y-87927380D02* +X134111904Y-86927380D01* +X134350000Y-86927380D01* +X134492857Y-86975000D01* +X134588095Y-87070238D01* +X134635714Y-87165476D01* +X134683333Y-87355952D01* +X134683333Y-87498809D01* +X134635714Y-87689285D01* +X134588095Y-87784523D01* +X134492857Y-87879761D01* +X134350000Y-87927380D01* +X134111904Y-87927380D01* +X132016666Y-88677380D02* +X132350000Y-89677380D01* +X132683333Y-88677380D01* +X133588095Y-89582142D02* +X133540476Y-89629761D01* +X133397619Y-89677380D01* +X133302380Y-89677380D01* +X133159523Y-89629761D01* +X133064285Y-89534523D01* +X133016666Y-89439285D01* +X132969047Y-89248809D01* +X132969047Y-89105952D01* +X133016666Y-88915476D01* +X133064285Y-88820238D01* +X133159523Y-88725000D01* +X133302380Y-88677380D01* +X133397619Y-88677380D01* +X133540476Y-88725000D01* +X133588095Y-88772619D01* +X134588095Y-89582142D02* +X134540476Y-89629761D01* +X134397619Y-89677380D01* +X134302380Y-89677380D01* +X134159523Y-89629761D01* +X134064285Y-89534523D01* +X134016666Y-89439285D01* +X133969047Y-89248809D01* +X133969047Y-89105952D01* +X134016666Y-88915476D01* +X134064285Y-88820238D01* +X134159523Y-88725000D01* +X134302380Y-88677380D01* +X134397619Y-88677380D01* +X134540476Y-88725000D01* +X134588095Y-88772619D01* +D11* +X121182142Y-101707142D02* +X122325000Y-101707142D01* +X125325000Y-101707142D02* +X126467857Y-101707142D01* +X125896428Y-102278571D02* +X125896428Y-101135714D01* +D12* +G04 #@! TO.C,TP8* +X135190000Y-93918000D02* +X135190000Y-92518000D01* +X136590000Y-93918000D02* +X135190000Y-93918000D01* +X136590000Y-92518000D02* +X136590000Y-93918000D01* +X135190000Y-92518000D02* +X136590000Y-92518000D01* +G04 #@! TO.C,TP7* +X127824000Y-101662000D02* +X129224000Y-101662000D01* +X129224000Y-101662000D02* +X129224000Y-103062000D01* +X129224000Y-103062000D02* +X127824000Y-103062000D01* +X127824000Y-103062000D02* +X127824000Y-101662000D01* +D13* +G04 #@! TO.C,LED1* +G36* +X109567259Y-106531065D02* +X109567259Y-106831065D01* +X109867259Y-106831065D01* +X109867259Y-106531065D01* +X109567259Y-106531065D01* +G37* +G36* +X109567259Y-107206065D02* +X109567259Y-107356065D01* +X109867259Y-107356065D01* +X109867259Y-107206065D01* +X109567259Y-107206065D01* +G37* +G36* +X109567259Y-106006065D02* +X109567259Y-106156065D01* +X109867259Y-106156065D01* +X109867259Y-106006065D01* +X109567259Y-106006065D01* +G37* +D14* +G04 #@! TO.C,IC1* +X111766375Y-104481509D02* +X111766375Y-104387509D01* +X111766375Y-101731509D02* +X111766375Y-101637509D01* +X113386375Y-101637509D02* +X113386375Y-101731509D01* +X113386375Y-104387509D02* +X113386375Y-104481509D01* +X113386375Y-102537509D02* +X113386375Y-102631509D01* +X113386375Y-103487509D02* +X113386375Y-103581509D01* +X111766375Y-103581509D02* +X111766375Y-102537509D01* +X113386375Y-104481509D02* +X111766375Y-104481509D01* +X111766375Y-101637509D02* +X113386375Y-101637509D01* +D15* +G04 #@! TO.C,U$1* +X119160000Y-93400000D02* +X119160000Y-88400000D01* +X114360000Y-93400000D02* +X119160000Y-93400000D01* +X114360000Y-88400000D02* +X114360000Y-93400000D01* +X119160000Y-88400000D02* +X114360000Y-88400000D01* +X122560000Y-89800000D02* +X122560000Y-87200000D01* +X120160000Y-89800000D02* +X122560000Y-89800000D01* +X120160000Y-87200000D02* +X120160000Y-89800000D01* +X122560000Y-87200000D02* +X120160000Y-87200000D01* +X119160000Y-87000000D02* +X119160000Y-82000000D01* +X114360000Y-87000000D02* +X119160000Y-87000000D01* +X114360000Y-82000000D02* +X114360000Y-87000000D01* +X119160000Y-82000000D02* +X114360000Y-82000000D01* +X111760000Y-76200000D02* +X111760000Y-93600000D01* +D13* +G36* +X112360000Y-76800000D02* +X112360000Y-78800000D01* +X123160000Y-78800000D01* +X123160000Y-76800000D01* +X112360000Y-76800000D01* +G37* +D15* +X123960000Y-76200000D02* +X123960000Y-93600000D01* +X111760000Y-76200000D02* +X123960000Y-76200000D01* +X111760000Y-93600000D02* +X123960000Y-93600000D01* +D12* +G04 #@! TO.C,TP4* +X105480000Y-93910000D02* +X105480000Y-91510000D01* +X107880000Y-93910000D02* +X105480000Y-93910000D01* +X107880000Y-91510000D02* +X107880000Y-93910000D01* +X105480000Y-91510000D02* +X107880000Y-91510000D01* +G04 #@! TO.C,TP6* +X128340000Y-90100000D02* +X128340000Y-87700000D01* +X130740000Y-90100000D02* +X128340000Y-90100000D01* +X130740000Y-87700000D02* +X130740000Y-90100000D01* +X128340000Y-87700000D02* +X130740000Y-87700000D01* +G04 #@! TO.C,TP5* +X128340000Y-83890000D02* +X130740000Y-83890000D01* +X130740000Y-83890000D02* +X130740000Y-86290000D01* +X130740000Y-86290000D02* +X128340000Y-86290000D01* +X128340000Y-86290000D02* +X128340000Y-83890000D01* +G04 #@! TO.C,TP3* +X128340000Y-95320000D02* +X130740000Y-95320000D01* +X130740000Y-95320000D02* +X130740000Y-97720000D01* +X130740000Y-97720000D02* +X128340000Y-97720000D01* +X128340000Y-97720000D02* +X128340000Y-95320000D01* +G04 #@! TO.C,TP2* +X128340000Y-93910000D02* +X128340000Y-91510000D01* +X130740000Y-93910000D02* +X128340000Y-93910000D01* +X130740000Y-91510000D02* +X130740000Y-93910000D01* +X128340000Y-91510000D02* +X130740000Y-91510000D01* +G04 #@! TO.C,TP1* +X128340000Y-80080000D02* +X130740000Y-80080000D01* +X130740000Y-80080000D02* +X130740000Y-82480000D01* +X130740000Y-82480000D02* +X128340000Y-82480000D01* +X128340000Y-82480000D02* +X128340000Y-80080000D01* +D15* +G04 #@! TO.C,IC3* +X96103800Y-113193200D02* +X96403800Y-112893200D01* +X96403800Y-112893200D02* +X96403800Y-108193200D01* +X96403800Y-113193200D02* +X96403800Y-112893200D01* +X96103800Y-113193200D02* +X96403800Y-113193200D01* +X91403800Y-113193200D02* +X96103800Y-113193200D01* +X91403800Y-108193200D02* +X91403800Y-113193200D01* +X96403800Y-108193200D02* +X91403800Y-108193200D01* +D16* +G04 #@! TO.C,D1* +X97490000Y-94630000D02* +X93010000Y-94630000D01* +X93010000Y-90790000D02* +X97490000Y-90790000D01* +D15* +G04 #@! TO.C,IC2* +X139405000Y-95620200D02* +X139105000Y-95920200D01* +X139105000Y-95920200D02* +X139105000Y-100620200D01* +X139105000Y-95620200D02* +X139105000Y-95920200D01* +X139405000Y-95620200D02* +X139105000Y-95620200D01* +X144105000Y-95620200D02* +X139405000Y-95620200D01* +X144105000Y-100620200D02* +X144105000Y-95620200D01* +X139105000Y-100620200D02* +X144105000Y-100620200D01* +D13* +G04 #@! TO.C,D2* +G36* +X106638000Y-79614000D02* +X106638000Y-80214000D01* +X107738000Y-80214000D01* +X107738000Y-79614000D01* +X106638000Y-79614000D01* +G37* +D16* +X106638000Y-81114000D02* +X106638000Y-79414000D01* +X107738000Y-79414000D02* +X107738000Y-81114000D01* +D13* +G04 #@! TO.C,D3* +G36* +X108480000Y-79550000D02* +X108480000Y-80150000D01* +X109580000Y-80150000D01* +X109580000Y-79550000D01* +X108480000Y-79550000D01* +G37* +D16* +X108480000Y-81050000D02* +X108480000Y-79350000D01* +X109580000Y-79350000D02* +X109580000Y-81050000D01* +G04 #@! TO.C,X1* +X119527100Y-108374300D02* +X119527100Y-103472600D01* +X127361100Y-103472600D02* +X127361100Y-108374300D01* +D17* +G04 #@! TO.C,D4* +X96790000Y-99253000D02* +X98790000Y-99253000D01* +X97790000Y-98230000D02* +X96790000Y-99253000D01* +X98790000Y-99253000D02* +X97790000Y-98230000D01* +D16* +X95885000Y-96799400D02* +X95885000Y-101320600D01* +X99695000Y-96799400D02* +X99695000Y-101320600D01* +D17* +G04 #@! TO.C,D5* +X93710000Y-98867000D02* +X91710000Y-98867000D01* +X92710000Y-99890000D02* +X93710000Y-98867000D01* +X91710000Y-98867000D02* +X92710000Y-99890000D01* +D16* +X94615000Y-101320600D02* +X94615000Y-96799400D01* +X90805000Y-101320600D02* +X90805000Y-96799400D01* +G04 #@! TO.C,R4* +X140912547Y-89762269D02* +X140338023Y-90164436D01* +X140912547Y-90451698D02* +X139706047Y-90451698D01* +X139706047Y-89992079D01* +X139763500Y-89877174D01* +X139820952Y-89819721D01* +X139935857Y-89762269D01* +X140108214Y-89762269D01* +X140223119Y-89819721D01* +X140280571Y-89877174D01* +X140338023Y-89992079D01* +X140338023Y-90451698D01* +X140108214Y-88728126D02* +X140912547Y-88728126D01* +X139648595Y-89015388D02* +X140510380Y-89302650D01* +X140510380Y-88555769D01* +G04 #@! TO.C,R11* +X131768547Y-101065269D02* +X131194023Y-101467436D01* +X131768547Y-101754698D02* +X130562047Y-101754698D01* +X130562047Y-101295079D01* +X130619500Y-101180174D01* +X130676952Y-101122721D01* +X130791857Y-101065269D01* +X130964214Y-101065269D01* +X131079119Y-101122721D01* +X131136571Y-101180174D01* +X131194023Y-101295079D01* +X131194023Y-101754698D01* +X131768547Y-99916221D02* +X131768547Y-100605650D01* +X131768547Y-100260936D02* +X130562047Y-100260936D01* +X130734404Y-100375840D01* +X130849309Y-100490745D01* +X130906761Y-100605650D01* +X131768547Y-98767174D02* +X131768547Y-99456602D01* +X131768547Y-99111888D02* +X130562047Y-99111888D01* +X130734404Y-99226793D01* +X130849309Y-99341698D01* +X130906761Y-99456602D01* +G04 #@! TO.C,TP8* +D18* +X134628095Y-91222380D02* +X135199523Y-91222380D01* +X134913809Y-92222380D02* +X134913809Y-91222380D01* +X135532857Y-92222380D02* +X135532857Y-91222380D01* +X135913809Y-91222380D01* +X136009047Y-91270000D01* +X136056666Y-91317619D01* +X136104285Y-91412857D01* +X136104285Y-91555714D01* +X136056666Y-91650952D01* +X136009047Y-91698571D01* +X135913809Y-91746190D01* +X135532857Y-91746190D01* +X136675714Y-91650952D02* +X136580476Y-91603333D01* +X136532857Y-91555714D01* +X136485238Y-91460476D01* +X136485238Y-91412857D01* +X136532857Y-91317619D01* +X136580476Y-91270000D01* +X136675714Y-91222380D01* +X136866190Y-91222380D01* +X136961428Y-91270000D01* +X137009047Y-91317619D01* +X137056666Y-91412857D01* +X137056666Y-91460476D01* +X137009047Y-91555714D01* +X136961428Y-91603333D01* +X136866190Y-91650952D01* +X136675714Y-91650952D01* +X136580476Y-91698571D01* +X136532857Y-91746190D01* +X136485238Y-91841428D01* +X136485238Y-92031904D01* +X136532857Y-92127142D01* +X136580476Y-92174761D01* +X136675714Y-92222380D01* +X136866190Y-92222380D01* +X136961428Y-92174761D01* +X137009047Y-92127142D01* +X137056666Y-92031904D01* +X137056666Y-91841428D01* +X137009047Y-91746190D01* +X136961428Y-91698571D01* +X136866190Y-91650952D01* +G04 #@! TO.C,TP7* +X127262095Y-100366380D02* +X127833523Y-100366380D01* +X127547809Y-101366380D02* +X127547809Y-100366380D01* +X128166857Y-101366380D02* +X128166857Y-100366380D01* +X128547809Y-100366380D01* +X128643047Y-100414000D01* +X128690666Y-100461619D01* +X128738285Y-100556857D01* +X128738285Y-100699714D01* +X128690666Y-100794952D01* +X128643047Y-100842571D01* +X128547809Y-100890190D01* +X128166857Y-100890190D01* +X129071619Y-100366380D02* +X129738285Y-100366380D01* +X129309714Y-101366380D01* +G04 #@! TO.C,R10* +D16* +X118687547Y-97423868D02* +X118113023Y-97826035D01* +X118687547Y-98113297D02* +X117481047Y-98113297D01* +X117481047Y-97653678D01* +X117538500Y-97538773D01* +X117595952Y-97481320D01* +X117710857Y-97423868D01* +X117883214Y-97423868D01* +X117998119Y-97481320D01* +X118055571Y-97538773D01* +X118113023Y-97653678D01* +X118113023Y-98113297D01* +X118687547Y-96274820D02* +X118687547Y-96964249D01* +X118687547Y-96619535D02* +X117481047Y-96619535D01* +X117653404Y-96734439D01* +X117768309Y-96849344D01* +X117825761Y-96964249D01* +X117481047Y-95527939D02* +X117481047Y-95413035D01* +X117538500Y-95298130D01* +X117595952Y-95240678D01* +X117710857Y-95183225D01* +X117940666Y-95125773D01* +X118227928Y-95125773D01* +X118457738Y-95183225D01* +X118572642Y-95240678D01* +X118630095Y-95298130D01* +X118687547Y-95413035D01* +X118687547Y-95527939D01* +X118630095Y-95642844D01* +X118572642Y-95700297D01* +X118457738Y-95757749D01* +X118227928Y-95815201D01* +X117940666Y-95815201D01* +X117710857Y-95757749D01* +X117595952Y-95700297D01* +X117538500Y-95642844D01* +X117481047Y-95527939D01* +G04 #@! TO.C,R2* +X113236102Y-109100112D02* +X112833936Y-108525588D01* +X112546674Y-109100112D02* +X112546674Y-107893612D01* +X113006293Y-107893612D01* +X113121198Y-107951065D01* +X113178650Y-108008517D01* +X113236102Y-108123422D01* +X113236102Y-108295779D01* +X113178650Y-108410684D01* +X113121198Y-108468136D01* +X113006293Y-108525588D01* +X112546674Y-108525588D01* +X113695721Y-108008517D02* +X113753174Y-107951065D01* +X113868079Y-107893612D01* +X114155340Y-107893612D01* +X114270245Y-107951065D01* +X114327698Y-108008517D01* +X114385150Y-108123422D01* +X114385150Y-108238326D01* +X114327698Y-108410684D01* +X113638269Y-109100112D01* +X114385150Y-109100112D01* +G04 #@! TO.C,LED1* +X108242825Y-109162547D02* +X107668301Y-109162547D01* +X107668301Y-107956047D01* +X108644992Y-108530571D02* +X109047159Y-108530571D01* +X109219516Y-109162547D02* +X108644992Y-109162547D01* +X108644992Y-107956047D01* +X109219516Y-107956047D01* +X109736587Y-109162547D02* +X109736587Y-107956047D01* +X110023849Y-107956047D01* +X110196206Y-108013500D01* +X110311111Y-108128404D01* +X110368563Y-108243309D01* +X110426016Y-108473119D01* +X110426016Y-108645476D01* +X110368563Y-108875285D01* +X110311111Y-108990190D01* +X110196206Y-109105095D01* +X110023849Y-109162547D01* +X109736587Y-109162547D01* +X111575063Y-109162547D02* +X110885635Y-109162547D01* +X111230349Y-109162547D02* +X111230349Y-107956047D01* +X111115444Y-108128404D01* +X111000540Y-108243309D01* +X110885635Y-108300761D01* +G04 #@! TO.C,C2* +X112167730Y-95712642D02* +X112110278Y-95770095D01* +X111937920Y-95827547D01* +X111823016Y-95827547D01* +X111650659Y-95770095D01* +X111535754Y-95655190D01* +X111478301Y-95540285D01* +X111420849Y-95310476D01* +X111420849Y-95138119D01* +X111478301Y-94908309D01* +X111535754Y-94793404D01* +X111650659Y-94678500D01* +X111823016Y-94621047D01* +X111937920Y-94621047D01* +X112110278Y-94678500D01* +X112167730Y-94735952D01* +X112627349Y-94735952D02* +X112684801Y-94678500D01* +X112799706Y-94621047D01* +X113086968Y-94621047D01* +X113201873Y-94678500D01* +X113259325Y-94735952D01* +X113316778Y-94850857D01* +X113316778Y-94965761D01* +X113259325Y-95138119D01* +X112569897Y-95827547D01* +X113316778Y-95827547D01* +G04 #@! TO.C,IC1* +X111820422Y-107673358D02* +X110613922Y-107673358D01* +X111705517Y-106409406D02* +X111762970Y-106466858D01* +X111820422Y-106639215D01* +X111820422Y-106754120D01* +X111762970Y-106926477D01* +X111648065Y-107041382D01* +X111533160Y-107098834D01* +X111303351Y-107156287D01* +X111130994Y-107156287D01* +X110901184Y-107098834D01* +X110786279Y-107041382D01* +X110671375Y-106926477D01* +X110613922Y-106754120D01* +X110613922Y-106639215D01* +X110671375Y-106466858D01* +X110728827Y-106409406D01* +X111820422Y-105260358D02* +X111820422Y-105949787D01* +X111820422Y-105605072D02* +X110613922Y-105605072D01* +X110786279Y-105719977D01* +X110901184Y-105834882D01* +X110958636Y-105949787D01* +G04 #@! TO.C,C3* +X119842642Y-101192269D02* +X119900095Y-101249721D01* +X119957547Y-101422079D01* +X119957547Y-101536983D01* +X119900095Y-101709340D01* +X119785190Y-101824245D01* +X119670285Y-101881698D01* +X119440476Y-101939150D01* +X119268119Y-101939150D01* +X119038309Y-101881698D01* +X118923404Y-101824245D01* +X118808500Y-101709340D01* +X118751047Y-101536983D01* +X118751047Y-101422079D01* +X118808500Y-101249721D01* +X118865952Y-101192269D01* +X118751047Y-100790102D02* +X118751047Y-100043221D01* +X119210666Y-100445388D01* +X119210666Y-100273031D01* +X119268119Y-100158126D01* +X119325571Y-100100674D01* +X119440476Y-100043221D01* +X119727738Y-100043221D01* +X119842642Y-100100674D01* +X119900095Y-100158126D01* +X119957547Y-100273031D01* +X119957547Y-100617745D01* +X119900095Y-100732650D01* +X119842642Y-100790102D01* +G04 #@! TO.C,C4* +X112167730Y-98252642D02* +X112110278Y-98310095D01* +X111937920Y-98367547D01* +X111823016Y-98367547D01* +X111650659Y-98310095D01* +X111535754Y-98195190D01* +X111478301Y-98080285D01* +X111420849Y-97850476D01* +X111420849Y-97678119D01* +X111478301Y-97448309D01* +X111535754Y-97333404D01* +X111650659Y-97218500D01* +X111823016Y-97161047D01* +X111937920Y-97161047D01* +X112110278Y-97218500D01* +X112167730Y-97275952D01* +X113201873Y-97563214D02* +X113201873Y-98367547D01* +X112914611Y-97103595D02* +X112627349Y-97965380D01* +X113374230Y-97965380D01* +G04 #@! TO.C,R1* +X107194047Y-104949897D02* +X106619523Y-105352063D01* +X107194047Y-105639325D02* +X105987547Y-105639325D01* +X105987547Y-105179706D01* +X106045000Y-105064801D01* +X106102452Y-105007349D01* +X106217357Y-104949897D01* +X106389714Y-104949897D01* +X106504619Y-105007349D01* +X106562071Y-105064801D01* +X106619523Y-105179706D01* +X106619523Y-105639325D01* +X107194047Y-103800849D02* +X107194047Y-104490278D01* +X107194047Y-104145563D02* +X105987547Y-104145563D01* +X106159904Y-104260468D01* +X106274809Y-104375373D01* +X106332261Y-104490278D01* +G04 #@! TO.C,R3* +X125672547Y-97382269D02* +X125098023Y-97784436D01* +X125672547Y-98071698D02* +X124466047Y-98071698D01* +X124466047Y-97612079D01* +X124523500Y-97497174D01* +X124580952Y-97439721D01* +X124695857Y-97382269D01* +X124868214Y-97382269D01* +X124983119Y-97439721D01* +X125040571Y-97497174D01* +X125098023Y-97612079D01* +X125098023Y-98071698D01* +X124466047Y-96980102D02* +X124466047Y-96233221D01* +X124925666Y-96635388D01* +X124925666Y-96463031D01* +X124983119Y-96348126D01* +X125040571Y-96290674D01* +X125155476Y-96233221D01* +X125442738Y-96233221D01* +X125557642Y-96290674D01* +X125615095Y-96348126D01* +X125672547Y-96463031D01* +X125672547Y-96807745D01* +X125615095Y-96922650D01* +X125557642Y-96980102D01* +G04 #@! TO.C,TP4* +D18* +X105418095Y-90164380D02* +X105989523Y-90164380D01* +X105703809Y-91164380D02* +X105703809Y-90164380D01* +X106322857Y-91164380D02* +X106322857Y-90164380D01* +X106703809Y-90164380D01* +X106799047Y-90212000D01* +X106846666Y-90259619D01* +X106894285Y-90354857D01* +X106894285Y-90497714D01* +X106846666Y-90592952D01* +X106799047Y-90640571D01* +X106703809Y-90688190D01* +X106322857Y-90688190D01* +X107751428Y-90497714D02* +X107751428Y-91164380D01* +X107513333Y-90116761D02* +X107275238Y-90831047D01* +X107894285Y-90831047D01* +G04 #@! TO.C,TP6* +X128278095Y-86354380D02* +X128849523Y-86354380D01* +X128563809Y-87354380D02* +X128563809Y-86354380D01* +X129182857Y-87354380D02* +X129182857Y-86354380D01* +X129563809Y-86354380D01* +X129659047Y-86402000D01* +X129706666Y-86449619D01* +X129754285Y-86544857D01* +X129754285Y-86687714D01* +X129706666Y-86782952D01* +X129659047Y-86830571D01* +X129563809Y-86878190D01* +X129182857Y-86878190D01* +X130611428Y-86354380D02* +X130420952Y-86354380D01* +X130325714Y-86402000D01* +X130278095Y-86449619D01* +X130182857Y-86592476D01* +X130135238Y-86782952D01* +X130135238Y-87163904D01* +X130182857Y-87259142D01* +X130230476Y-87306761D01* +X130325714Y-87354380D01* +X130516190Y-87354380D01* +X130611428Y-87306761D01* +X130659047Y-87259142D01* +X130706666Y-87163904D01* +X130706666Y-86925809D01* +X130659047Y-86830571D01* +X130611428Y-86782952D01* +X130516190Y-86735333D01* +X130325714Y-86735333D01* +X130230476Y-86782952D01* +X130182857Y-86830571D01* +X130135238Y-86925809D01* +G04 #@! TO.C,TP5* +X128278095Y-82544380D02* +X128849523Y-82544380D01* +X128563809Y-83544380D02* +X128563809Y-82544380D01* +X129182857Y-83544380D02* +X129182857Y-82544380D01* +X129563809Y-82544380D01* +X129659047Y-82592000D01* +X129706666Y-82639619D01* +X129754285Y-82734857D01* +X129754285Y-82877714D01* +X129706666Y-82972952D01* +X129659047Y-83020571D01* +X129563809Y-83068190D01* +X129182857Y-83068190D01* +X130659047Y-82544380D02* +X130182857Y-82544380D01* +X130135238Y-83020571D01* +X130182857Y-82972952D01* +X130278095Y-82925333D01* +X130516190Y-82925333D01* +X130611428Y-82972952D01* +X130659047Y-83020571D01* +X130706666Y-83115809D01* +X130706666Y-83353904D01* +X130659047Y-83449142D01* +X130611428Y-83496761D01* +X130516190Y-83544380D01* +X130278095Y-83544380D01* +X130182857Y-83496761D01* +X130135238Y-83449142D01* +G04 #@! TO.C,TP3* +X128278095Y-93974380D02* +X128849523Y-93974380D01* +X128563809Y-94974380D02* +X128563809Y-93974380D01* +X129182857Y-94974380D02* +X129182857Y-93974380D01* +X129563809Y-93974380D01* +X129659047Y-94022000D01* +X129706666Y-94069619D01* +X129754285Y-94164857D01* +X129754285Y-94307714D01* +X129706666Y-94402952D01* +X129659047Y-94450571D01* +X129563809Y-94498190D01* +X129182857Y-94498190D01* +X130087619Y-93974380D02* +X130706666Y-93974380D01* +X130373333Y-94355333D01* +X130516190Y-94355333D01* +X130611428Y-94402952D01* +X130659047Y-94450571D01* +X130706666Y-94545809D01* +X130706666Y-94783904D01* +X130659047Y-94879142D01* +X130611428Y-94926761D01* +X130516190Y-94974380D01* +X130230476Y-94974380D01* +X130135238Y-94926761D01* +X130087619Y-94879142D01* +G04 #@! TO.C,TP2* +X128278095Y-90164380D02* +X128849523Y-90164380D01* +X128563809Y-91164380D02* +X128563809Y-90164380D01* +X129182857Y-91164380D02* +X129182857Y-90164380D01* +X129563809Y-90164380D01* +X129659047Y-90212000D01* +X129706666Y-90259619D01* +X129754285Y-90354857D01* +X129754285Y-90497714D01* +X129706666Y-90592952D01* +X129659047Y-90640571D01* +X129563809Y-90688190D01* +X129182857Y-90688190D01* +X130135238Y-90259619D02* +X130182857Y-90212000D01* +X130278095Y-90164380D01* +X130516190Y-90164380D01* +X130611428Y-90212000D01* +X130659047Y-90259619D01* +X130706666Y-90354857D01* +X130706666Y-90450095D01* +X130659047Y-90592952D01* +X130087619Y-91164380D01* +X130706666Y-91164380D01* +G04 #@! TO.C,TP1* +X128278095Y-78734380D02* +X128849523Y-78734380D01* +X128563809Y-79734380D02* +X128563809Y-78734380D01* +X129182857Y-79734380D02* +X129182857Y-78734380D01* +X129563809Y-78734380D01* +X129659047Y-78782000D01* +X129706666Y-78829619D01* +X129754285Y-78924857D01* +X129754285Y-79067714D01* +X129706666Y-79162952D01* +X129659047Y-79210571D01* +X129563809Y-79258190D01* +X129182857Y-79258190D01* +X130706666Y-79734380D02* +X130135238Y-79734380D01* +X130420952Y-79734380D02* +X130420952Y-78734380D01* +X130325714Y-78877238D01* +X130230476Y-78972476D01* +X130135238Y-79020095D01* +G04 #@! TO.C,IC3* +D19* +X94133552Y-110924742D02* +X94133552Y-110345622D01* +X94740249Y-110869588D02* +X94712672Y-110897165D01* +X94629940Y-110924742D01* +X94574786Y-110924742D01* +X94492055Y-110897165D01* +X94436900Y-110842011D01* +X94409323Y-110786857D01* +X94381746Y-110676548D01* +X94381746Y-110593817D01* +X94409323Y-110483508D01* +X94436900Y-110428354D01* +X94492055Y-110373200D01* +X94574786Y-110345622D01* +X94629940Y-110345622D01* +X94712672Y-110373200D01* +X94740249Y-110400777D01* +X94933289Y-110345622D02* +X95291792Y-110345622D01* +X95098752Y-110566240D01* +X95181483Y-110566240D01* +X95236637Y-110593817D01* +X95264215Y-110621394D01* +X95291792Y-110676548D01* +X95291792Y-110814434D01* +X95264215Y-110869588D01* +X95236637Y-110897165D01* +X95181483Y-110924742D01* +X95016020Y-110924742D01* +X94960866Y-110897165D01* +X94933289Y-110869588D01* +G04 #@! TO.C,C1* +D16* +X92535102Y-107714142D02* +X92477650Y-107771595D01* +X92305293Y-107829047D01* +X92190388Y-107829047D01* +X92018031Y-107771595D01* +X91903126Y-107656690D01* +X91845674Y-107541785D01* +X91788221Y-107311976D01* +X91788221Y-107139619D01* +X91845674Y-106909809D01* +X91903126Y-106794904D01* +X92018031Y-106680000D01* +X92190388Y-106622547D01* +X92305293Y-106622547D01* +X92477650Y-106680000D01* +X92535102Y-106737452D01* +X93684150Y-107829047D02* +X92994721Y-107829047D01* +X93339436Y-107829047D02* +X93339436Y-106622547D01* +X93224531Y-106794904D01* +X93109626Y-106909809D01* +X92994721Y-106967261D01* +G04 #@! TO.C,C5* +X99122452Y-107620242D02* +X99065000Y-107677695D01* +X98892643Y-107735147D01* +X98777738Y-107735147D01* +X98605381Y-107677695D01* +X98490476Y-107562790D01* +X98433024Y-107447885D01* +X98375571Y-107218076D01* +X98375571Y-107045719D01* +X98433024Y-106815909D01* +X98490476Y-106701004D01* +X98605381Y-106586100D01* +X98777738Y-106528647D01* +X98892643Y-106528647D01* +X99065000Y-106586100D01* +X99122452Y-106643552D01* +X100214048Y-106528647D02* +X99639524Y-106528647D01* +X99582071Y-107103171D01* +X99639524Y-107045719D01* +X99754429Y-106988266D01* +X100041690Y-106988266D01* +X100156595Y-107045719D01* +X100214048Y-107103171D01* +X100271500Y-107218076D01* +X100271500Y-107505338D01* +X100214048Y-107620242D01* +X100156595Y-107677695D01* +X100041690Y-107735147D01* +X99754429Y-107735147D01* +X99639524Y-107677695D01* +X99582071Y-107620242D01* +G04 #@! TO.C,D1* +X91382547Y-92991698D02* +X90176047Y-92991698D01* +X90176047Y-92704436D01* +X90233500Y-92532079D01* +X90348404Y-92417174D01* +X90463309Y-92359721D01* +X90693119Y-92302269D01* +X90865476Y-92302269D01* +X91095285Y-92359721D01* +X91210190Y-92417174D01* +X91325095Y-92532079D01* +X91382547Y-92704436D01* +X91382547Y-92991698D01* +X91382547Y-91153221D02* +X91382547Y-91842650D01* +X91382547Y-91497936D02* +X90176047Y-91497936D01* +X90348404Y-91612840D01* +X90463309Y-91727745D01* +X90520761Y-91842650D01* +G04 #@! TO.C,IC2* +D19* +X140939752Y-100246542D02* +X140939752Y-99667422D01* +X141546449Y-100191388D02* +X141518872Y-100218965D01* +X141436140Y-100246542D01* +X141380986Y-100246542D01* +X141298255Y-100218965D01* +X141243100Y-100163811D01* +X141215523Y-100108657D01* +X141187946Y-99998348D01* +X141187946Y-99915617D01* +X141215523Y-99805308D01* +X141243100Y-99750154D01* +X141298255Y-99695000D01* +X141380986Y-99667422D01* +X141436140Y-99667422D01* +X141518872Y-99695000D01* +X141546449Y-99722577D01* +X141767066Y-99722577D02* +X141794643Y-99695000D01* +X141849797Y-99667422D01* +X141987683Y-99667422D01* +X142042837Y-99695000D01* +X142070415Y-99722577D01* +X142097992Y-99777731D01* +X142097992Y-99832885D01* +X142070415Y-99915617D01* +X141739489Y-100246542D01* +X142097992Y-100246542D01* +G04 #@! TO.C,D2* +D16* +X107829047Y-78334325D02* +X106622547Y-78334325D01* +X106622547Y-78047063D01* +X106680000Y-77874706D01* +X106794904Y-77759801D01* +X106909809Y-77702349D01* +X107139619Y-77644897D01* +X107311976Y-77644897D01* +X107541785Y-77702349D01* +X107656690Y-77759801D01* +X107771595Y-77874706D01* +X107829047Y-78047063D01* +X107829047Y-78334325D01* +X106737452Y-77185278D02* +X106680000Y-77127825D01* +X106622547Y-77012920D01* +X106622547Y-76725659D01* +X106680000Y-76610754D01* +X106737452Y-76553301D01* +X106852357Y-76495849D01* +X106967261Y-76495849D01* +X107139619Y-76553301D01* +X107829047Y-77242730D01* +X107829047Y-76495849D01* +G04 #@! TO.C,R5* +X100155102Y-93224047D02* +X99752936Y-92649523D01* +X99465674Y-93224047D02* +X99465674Y-92017547D01* +X99925293Y-92017547D01* +X100040198Y-92075000D01* +X100097650Y-92132452D01* +X100155102Y-92247357D01* +X100155102Y-92419714D01* +X100097650Y-92534619D01* +X100040198Y-92592071D01* +X99925293Y-92649523D01* +X99465674Y-92649523D01* +X101246698Y-92017547D02* +X100672174Y-92017547D01* +X100614721Y-92592071D01* +X100672174Y-92534619D01* +X100787079Y-92477166D01* +X101074340Y-92477166D01* +X101189245Y-92534619D01* +X101246698Y-92592071D01* +X101304150Y-92706976D01* +X101304150Y-92994238D01* +X101246698Y-93109142D01* +X101189245Y-93166595D01* +X101074340Y-93224047D01* +X100787079Y-93224047D01* +X100672174Y-93166595D01* +X100614721Y-93109142D01* +G04 #@! TO.C,R6* +X106302547Y-84682269D02* +X105728023Y-85084436D01* +X106302547Y-85371698D02* +X105096047Y-85371698D01* +X105096047Y-84912079D01* +X105153500Y-84797174D01* +X105210952Y-84739721D01* +X105325857Y-84682269D01* +X105498214Y-84682269D01* +X105613119Y-84739721D01* +X105670571Y-84797174D01* +X105728023Y-84912079D01* +X105728023Y-85371698D01* +X105096047Y-83648126D02* +X105096047Y-83877936D01* +X105153500Y-83992840D01* +X105210952Y-84050293D01* +X105383309Y-84165198D01* +X105613119Y-84222650D01* +X106072738Y-84222650D01* +X106187642Y-84165198D01* +X106245095Y-84107745D01* +X106302547Y-83992840D01* +X106302547Y-83763031D01* +X106245095Y-83648126D01* +X106187642Y-83590674D01* +X106072738Y-83533221D01* +X105785476Y-83533221D01* +X105670571Y-83590674D01* +X105613119Y-83648126D01* +X105555666Y-83763031D01* +X105555666Y-83992840D01* +X105613119Y-84107745D01* +X105670571Y-84165198D01* +X105785476Y-84222650D01* +G04 #@! TO.C,C6* +X103904142Y-96059897D02* +X103961595Y-96117349D01* +X104019047Y-96289706D01* +X104019047Y-96404611D01* +X103961595Y-96576968D01* +X103846690Y-96691873D01* +X103731785Y-96749325D01* +X103501976Y-96806778D01* +X103329619Y-96806778D01* +X103099809Y-96749325D01* +X102984904Y-96691873D01* +X102870000Y-96576968D01* +X102812547Y-96404611D01* +X102812547Y-96289706D01* +X102870000Y-96117349D01* +X102927452Y-96059897D01* +X102812547Y-95025754D02* +X102812547Y-95255563D01* +X102870000Y-95370468D01* +X102927452Y-95427920D01* +X103099809Y-95542825D01* +X103329619Y-95600278D01* +X103789238Y-95600278D01* +X103904142Y-95542825D01* +X103961595Y-95485373D01* +X104019047Y-95370468D01* +X104019047Y-95140659D01* +X103961595Y-95025754D01* +X103904142Y-94968301D01* +X103789238Y-94910849D01* +X103501976Y-94910849D01* +X103387071Y-94968301D01* +X103329619Y-95025754D01* +X103272166Y-95140659D01* +X103272166Y-95370468D01* +X103329619Y-95485373D01* +X103387071Y-95542825D01* +X103501976Y-95600278D01* +G04 #@! TO.C,D3* +X109722547Y-78196698D02* +X108516047Y-78196698D01* +X108516047Y-77909436D01* +X108573500Y-77737079D01* +X108688404Y-77622174D01* +X108803309Y-77564721D01* +X109033119Y-77507269D01* +X109205476Y-77507269D01* +X109435285Y-77564721D01* +X109550190Y-77622174D01* +X109665095Y-77737079D01* +X109722547Y-77909436D01* +X109722547Y-78196698D01* +X108516047Y-77105102D02* +X108516047Y-76358221D01* +X108975666Y-76760388D01* +X108975666Y-76588031D01* +X109033119Y-76473126D01* +X109090571Y-76415674D01* +X109205476Y-76358221D01* +X109492738Y-76358221D01* +X109607642Y-76415674D01* +X109665095Y-76473126D01* +X109722547Y-76588031D01* +X109722547Y-76932745D01* +X109665095Y-77047650D01* +X109607642Y-77105102D01* +G04 #@! TO.C,C7* +X135654142Y-96059897D02* +X135711595Y-96117349D01* +X135769047Y-96289706D01* +X135769047Y-96404611D01* +X135711595Y-96576968D01* +X135596690Y-96691873D01* +X135481785Y-96749325D01* +X135251976Y-96806778D01* +X135079619Y-96806778D01* +X134849809Y-96749325D01* +X134734904Y-96691873D01* +X134620000Y-96576968D01* +X134562547Y-96404611D01* +X134562547Y-96289706D01* +X134620000Y-96117349D01* +X134677452Y-96059897D01* +X134562547Y-95657730D02* +X134562547Y-94853397D01* +X135769047Y-95370468D01* +G04 #@! TO.C,C8* +X102822102Y-85743142D02* +X102764650Y-85800595D01* +X102592293Y-85858047D01* +X102477388Y-85858047D01* +X102305031Y-85800595D01* +X102190126Y-85685690D01* +X102132674Y-85570785D01* +X102075221Y-85340976D01* +X102075221Y-85168619D01* +X102132674Y-84938809D01* +X102190126Y-84823904D01* +X102305031Y-84709000D01* +X102477388Y-84651547D01* +X102592293Y-84651547D01* +X102764650Y-84709000D01* +X102822102Y-84766452D01* +X103511531Y-85168619D02* +X103396626Y-85111166D01* +X103339174Y-85053714D01* +X103281721Y-84938809D01* +X103281721Y-84881357D01* +X103339174Y-84766452D01* +X103396626Y-84709000D01* +X103511531Y-84651547D01* +X103741340Y-84651547D01* +X103856245Y-84709000D01* +X103913698Y-84766452D01* +X103971150Y-84881357D01* +X103971150Y-84938809D01* +X103913698Y-85053714D01* +X103856245Y-85111166D01* +X103741340Y-85168619D01* +X103511531Y-85168619D01* +X103396626Y-85226071D01* +X103339174Y-85283523D01* +X103281721Y-85398428D01* +X103281721Y-85628238D01* +X103339174Y-85743142D01* +X103396626Y-85800595D01* +X103511531Y-85858047D01* +X103741340Y-85858047D01* +X103856245Y-85800595D01* +X103913698Y-85743142D01* +X103971150Y-85628238D01* +X103971150Y-85398428D01* +X103913698Y-85283523D01* +X103856245Y-85226071D01* +X103741340Y-85168619D01* +G04 #@! TO.C,R7* +X94440102Y-87509047D02* +X94037936Y-86934523D01* +X93750674Y-87509047D02* +X93750674Y-86302547D01* +X94210293Y-86302547D01* +X94325198Y-86360000D01* +X94382650Y-86417452D01* +X94440102Y-86532357D01* +X94440102Y-86704714D01* +X94382650Y-86819619D01* +X94325198Y-86877071D01* +X94210293Y-86934523D01* +X93750674Y-86934523D01* +X94842269Y-86302547D02* +X95646602Y-86302547D01* +X95129531Y-87509047D01* +G04 #@! TO.C,X1* +X125002221Y-108610547D02* +X125806555Y-109817047D01* +X125806555Y-108610547D02* +X125002221Y-109817047D01* +X126898150Y-109817047D02* +X126208721Y-109817047D01* +X126553436Y-109817047D02* +X126553436Y-108610547D01* +X126438531Y-108782904D01* +X126323626Y-108897809D01* +X126208721Y-108955261D01* +G04 #@! TO.C,R8* +X105182730Y-112337547D02* +X104780563Y-111763023D01* +X104493301Y-112337547D02* +X104493301Y-111131047D01* +X104952920Y-111131047D01* +X105067825Y-111188500D01* +X105125278Y-111245952D01* +X105182730Y-111360857D01* +X105182730Y-111533214D01* +X105125278Y-111648119D01* +X105067825Y-111705571D01* +X104952920Y-111763023D01* +X104493301Y-111763023D01* +X105872159Y-111648119D02* +X105757254Y-111590666D01* +X105699801Y-111533214D01* +X105642349Y-111418309D01* +X105642349Y-111360857D01* +X105699801Y-111245952D01* +X105757254Y-111188500D01* +X105872159Y-111131047D01* +X106101968Y-111131047D01* +X106216873Y-111188500D01* +X106274325Y-111245952D01* +X106331778Y-111360857D01* +X106331778Y-111418309D01* +X106274325Y-111533214D01* +X106216873Y-111590666D01* +X106101968Y-111648119D01* +X105872159Y-111648119D01* +X105757254Y-111705571D01* +X105699801Y-111763023D01* +X105642349Y-111877928D01* +X105642349Y-112107738D01* +X105699801Y-112222642D01* +X105757254Y-112280095D01* +X105872159Y-112337547D01* +X106101968Y-112337547D01* +X106216873Y-112280095D01* +X106274325Y-112222642D01* +X106331778Y-112107738D01* +X106331778Y-111877928D01* +X106274325Y-111763023D01* +X106216873Y-111705571D01* +X106101968Y-111648119D01* +G04 #@! TO.C,R9* +X107087730Y-88842547D02* +X106685563Y-88268023D01* +X106398301Y-88842547D02* +X106398301Y-87636047D01* +X106857920Y-87636047D01* +X106972825Y-87693500D01* +X107030278Y-87750952D01* +X107087730Y-87865857D01* +X107087730Y-88038214D01* +X107030278Y-88153119D01* +X106972825Y-88210571D01* +X106857920Y-88268023D01* +X106398301Y-88268023D01* +X107662254Y-88842547D02* +X107892063Y-88842547D01* +X108006968Y-88785095D01* +X108064420Y-88727642D01* +X108179325Y-88555285D01* +X108236778Y-88325476D01* +X108236778Y-87865857D01* +X108179325Y-87750952D01* +X108121873Y-87693500D01* +X108006968Y-87636047D01* +X107777159Y-87636047D01* +X107662254Y-87693500D01* +X107604801Y-87750952D01* +X107547349Y-87865857D01* +X107547349Y-88153119D01* +X107604801Y-88268023D01* +X107662254Y-88325476D01* +X107777159Y-88382928D01* +X108006968Y-88382928D01* +X108121873Y-88325476D01* +X108179325Y-88268023D01* +X108236778Y-88153119D01* +G04 #@! TO.C,C9* +X107142642Y-98652269D02* +X107200095Y-98709721D01* +X107257547Y-98882079D01* +X107257547Y-98996983D01* +X107200095Y-99169340D01* +X107085190Y-99284245D01* +X106970285Y-99341698D01* +X106740476Y-99399150D01* +X106568119Y-99399150D01* +X106338309Y-99341698D01* +X106223404Y-99284245D01* +X106108500Y-99169340D01* +X106051047Y-98996983D01* +X106051047Y-98882079D01* +X106108500Y-98709721D01* +X106165952Y-98652269D01* +X107257547Y-98077745D02* +X107257547Y-97847936D01* +X107200095Y-97733031D01* +X107142642Y-97675579D01* +X106970285Y-97560674D01* +X106740476Y-97503221D01* +X106280857Y-97503221D01* +X106165952Y-97560674D01* +X106108500Y-97618126D01* +X106051047Y-97733031D01* +X106051047Y-97962840D01* +X106108500Y-98077745D01* +X106165952Y-98135198D01* +X106280857Y-98192650D01* +X106568119Y-98192650D01* +X106683023Y-98135198D01* +X106740476Y-98077745D01* +X106797928Y-97962840D01* +X106797928Y-97733031D01* +X106740476Y-97618126D01* +X106683023Y-97560674D01* +X106568119Y-97503221D01* +G04 #@! TO.C,C10* +X103332642Y-104367269D02* +X103390095Y-104424721D01* +X103447547Y-104597079D01* +X103447547Y-104711983D01* +X103390095Y-104884340D01* +X103275190Y-104999245D01* +X103160285Y-105056698D01* +X102930476Y-105114150D01* +X102758119Y-105114150D01* +X102528309Y-105056698D01* +X102413404Y-104999245D01* +X102298500Y-104884340D01* +X102241047Y-104711983D01* +X102241047Y-104597079D01* +X102298500Y-104424721D01* +X102355952Y-104367269D01* +X103447547Y-103218221D02* +X103447547Y-103907650D01* +X103447547Y-103562936D02* +X102241047Y-103562936D01* +X102413404Y-103677840D01* +X102528309Y-103792745D01* +X102585761Y-103907650D01* +X102241047Y-102471340D02* +X102241047Y-102356436D01* +X102298500Y-102241531D01* +X102355952Y-102184079D01* +X102470857Y-102126626D01* +X102700666Y-102069174D01* +X102987928Y-102069174D01* +X103217738Y-102126626D01* +X103332642Y-102184079D01* +X103390095Y-102241531D01* +X103447547Y-102356436D01* +X103447547Y-102471340D01* +X103390095Y-102586245D01* +X103332642Y-102643698D01* +X103217738Y-102701150D01* +X102987928Y-102758602D01* +X102700666Y-102758602D01* +X102470857Y-102701150D01* +X102355952Y-102643698D01* +X102298500Y-102586245D01* +X102241047Y-102471340D01* +G04 #@! TO.C,D4* +X100272547Y-96166698D02* +X99066047Y-96166698D01* +X99066047Y-95879436D01* +X99123500Y-95707079D01* +X99238404Y-95592174D01* +X99353309Y-95534721D01* +X99583119Y-95477269D01* +X99755476Y-95477269D01* +X99985285Y-95534721D01* +X100100190Y-95592174D01* +X100215095Y-95707079D01* +X100272547Y-95879436D01* +X100272547Y-96166698D01* +X99468214Y-94443126D02* +X100272547Y-94443126D01* +X99008595Y-94730388D02* +X99870380Y-95017650D01* +X99870380Y-94270769D01* +G04 #@! TO.C,D5* +X90493547Y-100865698D02* +X89287047Y-100865698D01* +X89287047Y-100578436D01* +X89344500Y-100406079D01* +X89459404Y-100291174D01* +X89574309Y-100233721D01* +X89804119Y-100176269D01* +X89976476Y-100176269D01* +X90206285Y-100233721D01* +X90321190Y-100291174D01* +X90436095Y-100406079D01* +X90493547Y-100578436D01* +X90493547Y-100865698D01* +X89287047Y-99084674D02* +X89287047Y-99659198D01* +X89861571Y-99716650D01* +X89804119Y-99659198D01* +X89746666Y-99544293D01* +X89746666Y-99257031D01* +X89804119Y-99142126D01* +X89861571Y-99084674D01* +X89976476Y-99027221D01* +X90263738Y-99027221D01* +X90378642Y-99084674D01* +X90436095Y-99142126D01* +X90493547Y-99257031D01* +X90493547Y-99544293D01* +X90436095Y-99659198D01* +X90378642Y-99716650D01* +G04 #@! TD* +M02* diff --git a/Glas/gerber/receive_v1_1-NPTH-drl_map.ps b/Glas/gerber/receive_v1_1-NPTH-drl_map.ps new file mode 100644 index 0000000..626ec84 --- /dev/null +++ b/Glas/gerber/receive_v1_1-NPTH-drl_map.ps @@ -0,0 +1,179 @@ +%!PS-Adobe-3.0 +%%Creator: PCBNEW +%%CreationDate: Fri Sep 14 22:35:38 2018 +%%Title: /home/s/Dokumente/09_KiCad/glas/V1_1/gerber/receive_v1_1-NPTH-drl_map.ps +%%Pages: 1 +%%PageOrder: Ascend +%%BoundingBox: 0 0 596 842 +%%DocumentMedia: A4 595 842 0 () () +%%Orientation: Landscape +%%EndComments +%%BeginProlog +/line { newpath moveto lineto stroke } bind def +/cir0 { newpath 0 360 arc stroke } bind def +/cir1 { newpath 0 360 arc gsave fill grestore stroke } bind def +/cir2 { newpath 0 360 arc gsave fill grestore stroke } bind def +/arc0 { newpath arc stroke } bind def +/arc1 { newpath 4 index 4 index moveto arc closepath gsave fill + grestore stroke } bind def +/arc2 { newpath 4 index 4 index moveto arc closepath gsave fill + grestore stroke } bind def +/poly0 { stroke } bind def +/poly1 { closepath gsave fill grestore stroke } bind def +/poly2 { closepath gsave fill grestore stroke } bind def +/rect0 { rectstroke } bind def +/rect1 { rectfill } bind def +/rect2 { rectfill } bind def +/linemode0 { 0 setlinecap 0 setlinejoin 0 setlinewidth } bind def +/linemode1 { 1 setlinecap 1 setlinejoin } bind def +/dashedline { [200] 100 setdash } bind def +/solidline { [] 0 setdash } bind def +/phantomshow { moveto + /KicadFont findfont 0.000001 scalefont setfont + show } bind def +/textshow { gsave + findfont exch scalefont setfont concat 1 scale 0 0 moveto show + } bind def +/reencodefont { + findfont dup length dict begin + { 1 index /FID ne + { def } + { pop pop } ifelse + } forall + /Encoding ISOLatin1Encoding def + currentdict + end } bind def +/KicadFont /Helvetica reencodefont definefont pop +/KicadFont-Bold /Helvetica-Bold reencodefont definefont pop +/KicadFont-Oblique /Helvetica-Oblique reencodefont definefont pop +/KicadFont-BoldOblique /Helvetica-BoldOblique reencodefont definefont pop +%%EndProlog +%%Page: 1 1 +%%BeginPageSetup +gsave +0.0072 0.0072 scale +linemode1 +82680 0 translate 90 rotate +86.729 setlinewidth +%%EndPageSetup +0 0 0 setrgbcolor +104.075 setlinewidth +58465 57876 20815 cir0 +78.7397 setlinewidth +118.111 setlinewidth +0 0 0 setrgbcolor +0 0 0 setrgbcolor +newpath +38725.7 35175.5 moveto +38725.7 36356.6 lineto +39006.9 36356.6 lineto +39175.6 36300.3 lineto +39288.1 36187.9 lineto +39344.4 36075.4 lineto +39400.6 35850.4 lineto +39400.6 35681.7 lineto +39344.4 35456.7 lineto +39288.1 35344.2 lineto +39175.6 35231.7 lineto +39006.9 35175.5 lineto +38725.7 35175.5 lineto +stroke +newpath +39906.8 35175.5 moveto +39906.8 35962.9 lineto +stroke +newpath +39906.8 35737.9 moveto +39963 35850.4 lineto +40019.3 35906.6 lineto +40131.8 35962.9 lineto +40244.2 35962.9 lineto +stroke +newpath +40637.9 35175.5 moveto +40637.9 35962.9 lineto +stroke +newpath +40637.9 36356.6 moveto +40581.7 36300.3 lineto +40637.9 36244.1 lineto +40694.2 36300.3 lineto +40637.9 36356.6 lineto +40637.9 36244.1 lineto +stroke +newpath +41369.1 35175.5 moveto +41256.6 35231.7 lineto +41200.4 35344.2 lineto +41200.4 36356.6 lineto +stroke +newpath +41987.8 35175.5 moveto +41875.3 35231.7 lineto +41819 35344.2 lineto +41819 36356.6 lineto +stroke +newpath +43337.6 35175.5 moveto +43337.6 36356.6 lineto +43731.3 35512.9 lineto +44125 36356.6 lineto +44125 35175.5 lineto +stroke +newpath +45193.6 35175.5 moveto +45193.6 35794.2 lineto +45137.4 35906.6 lineto +45024.9 35962.9 lineto +44799.9 35962.9 lineto +44687.4 35906.6 lineto +stroke +newpath +45193.6 35231.7 moveto +45081.1 35175.5 lineto +44799.9 35175.5 lineto +44687.4 35231.7 lineto +44631.2 35344.2 lineto +44631.2 35456.7 lineto +44687.4 35569.2 lineto +44799.9 35625.4 lineto +45081.1 35625.4 lineto +45193.6 35681.7 lineto +stroke +newpath +45756.1 35962.9 moveto +45756.1 34781.8 lineto +stroke +newpath +45756.1 35906.6 moveto +45868.5 35962.9 lineto +46093.5 35962.9 lineto +46206 35906.6 lineto +46262.2 35850.4 lineto +46318.5 35737.9 lineto +46318.5 35400.5 lineto +46262.2 35288 lineto +46206 35231.7 lineto +46093.5 35175.5 lineto +45868.5 35175.5 lineto +45756.1 35231.7 lineto +stroke +newpath +46824.7 35288 moveto +46880.9 35231.7 lineto +46824.7 35175.5 lineto +46768.4 35231.7 lineto +46824.7 35288 lineto +46824.7 35175.5 lineto +stroke +newpath +46824.7 35906.6 moveto +46880.9 35850.4 lineto +46824.7 35794.2 lineto +46768.4 35850.4 lineto +46824.7 35906.6 lineto +46824.7 35794.2 lineto +stroke +showpage +grestore +%%EOF diff --git a/Glas/gerber/receive_v1_1-NPTH.drl b/Glas/gerber/receive_v1_1-NPTH.drl new file mode 100644 index 0000000..045cfae --- /dev/null +++ b/Glas/gerber/receive_v1_1-NPTH.drl @@ -0,0 +1,11 @@ +M48 +;DRILL file {KiCad 5.0.0+dfsg1-1~bpo9+1} date Fri Dec 28 11:25:32 2018 +;FORMAT={-:-/ absolute / inch / decimal} +FMAT,2 +INCH,TZ +% +G90 +G05 +M72 +T0 +M30 diff --git a/Glas/gerber/receive_v1_1-PTH-drl_map.ps b/Glas/gerber/receive_v1_1-PTH-drl_map.ps new file mode 100644 index 0000000..5fbc66b --- /dev/null +++ b/Glas/gerber/receive_v1_1-PTH-drl_map.ps @@ -0,0 +1,539 @@ +%!PS-Adobe-3.0 +%%Creator: PCBNEW +%%CreationDate: Fri Sep 14 22:35:38 2018 +%%Title: /home/s/Dokumente/09_KiCad/glas/V1_1/gerber/receive_v1_1-PTH-drl_map.ps +%%Pages: 1 +%%PageOrder: Ascend +%%BoundingBox: 0 0 596 842 +%%DocumentMedia: A4 595 842 0 () () +%%Orientation: Landscape +%%EndComments +%%BeginProlog +/line { newpath moveto lineto stroke } bind def +/cir0 { newpath 0 360 arc stroke } bind def +/cir1 { newpath 0 360 arc gsave fill grestore stroke } bind def +/cir2 { newpath 0 360 arc gsave fill grestore stroke } bind def +/arc0 { newpath arc stroke } bind def +/arc1 { newpath 4 index 4 index moveto arc closepath gsave fill + grestore stroke } bind def +/arc2 { newpath 4 index 4 index moveto arc closepath gsave fill + grestore stroke } bind def +/poly0 { stroke } bind def +/poly1 { closepath gsave fill grestore stroke } bind def +/poly2 { closepath gsave fill grestore stroke } bind def +/rect0 { rectstroke } bind def +/rect1 { rectfill } bind def +/rect2 { rectfill } bind def +/linemode0 { 0 setlinecap 0 setlinejoin 0 setlinewidth } bind def +/linemode1 { 1 setlinecap 1 setlinejoin } bind def +/dashedline { [200] 100 setdash } bind def +/solidline { [] 0 setdash } bind def +/phantomshow { moveto + /KicadFont findfont 0.000001 scalefont setfont + show } bind def +/textshow { gsave + findfont exch scalefont setfont concat 1 scale 0 0 moveto show + } bind def +/reencodefont { + findfont dup length dict begin + { 1 index /FID ne + { def } + { pop pop } ifelse + } forall + /Encoding ISOLatin1Encoding def + currentdict + end } bind def +/KicadFont /Helvetica reencodefont definefont pop +/KicadFont-Bold /Helvetica-Bold reencodefont definefont pop +/KicadFont-Oblique /Helvetica-Oblique reencodefont definefont pop +/KicadFont-BoldOblique /Helvetica-BoldOblique reencodefont definefont pop +%%EndProlog +%%Page: 1 1 +%%BeginPageSetup +gsave +0.0072 0.0072 scale +linemode1 +82680 0 translate 90 rotate +86.729 setlinewidth +%%EndPageSetup +0 0 0 setrgbcolor +104.075 setlinewidth +58465 57876 20815 cir0 +78.7397 setlinewidth +newpath +38277.8 58080.9 moveto +38687.5 57671.1 lineto +stroke +newpath +38687.5 58080.9 moveto +38277.8 57671.1 lineto +stroke +newpath +38376.3 56863.3 moveto +38786.1 56453.5 lineto +stroke +newpath +38786.1 56863.3 moveto +38376.3 56453.5 lineto +stroke +newpath +48234.3 58011.5 moveto +48644 57601.7 lineto +stroke +newpath +48644 58011.5 moveto +48234.3 57601.7 lineto +stroke +newpath +48240.5 59147.5 moveto +48650.2 58737.7 lineto +stroke +newpath +48650.2 59147.5 moveto +48240.5 58737.7 lineto +stroke +118.111 setlinewidth +0 0 0 setrgbcolor +0 0 0 setrgbcolor +newpath +38725.7 35175.5 moveto +38725.7 36356.6 lineto +39006.9 36356.6 lineto +39175.6 36300.3 lineto +39288.1 36187.9 lineto +39344.4 36075.4 lineto +39400.6 35850.4 lineto +39400.6 35681.7 lineto +39344.4 35456.7 lineto +39288.1 35344.2 lineto +39175.6 35231.7 lineto +39006.9 35175.5 lineto +38725.7 35175.5 lineto +stroke +newpath +39906.8 35175.5 moveto +39906.8 35962.9 lineto +stroke +newpath +39906.8 35737.9 moveto +39963 35850.4 lineto +40019.3 35906.6 lineto +40131.8 35962.9 lineto +40244.2 35962.9 lineto +stroke +newpath +40637.9 35175.5 moveto +40637.9 35962.9 lineto +stroke +newpath +40637.9 36356.6 moveto +40581.7 36300.3 lineto +40637.9 36244.1 lineto +40694.2 36300.3 lineto +40637.9 36356.6 lineto +40637.9 36244.1 lineto +stroke +newpath +41369.1 35175.5 moveto +41256.6 35231.7 lineto +41200.4 35344.2 lineto +41200.4 36356.6 lineto +stroke +newpath +41987.8 35175.5 moveto +41875.3 35231.7 lineto +41819 35344.2 lineto +41819 36356.6 lineto +stroke +newpath +43337.6 35175.5 moveto +43337.6 36356.6 lineto +43731.3 35512.9 lineto +44125 36356.6 lineto +44125 35175.5 lineto +stroke +newpath +45193.6 35175.5 moveto +45193.6 35794.2 lineto +45137.4 35906.6 lineto +45024.9 35962.9 lineto +44799.9 35962.9 lineto +44687.4 35906.6 lineto +stroke +newpath +45193.6 35231.7 moveto +45081.1 35175.5 lineto +44799.9 35175.5 lineto +44687.4 35231.7 lineto +44631.2 35344.2 lineto +44631.2 35456.7 lineto +44687.4 35569.2 lineto +44799.9 35625.4 lineto +45081.1 35625.4 lineto +45193.6 35681.7 lineto +stroke +newpath +45756.1 35962.9 moveto +45756.1 34781.8 lineto +stroke +newpath +45756.1 35906.6 moveto +45868.5 35962.9 lineto +46093.5 35962.9 lineto +46206 35906.6 lineto +46262.2 35850.4 lineto +46318.5 35737.9 lineto +46318.5 35400.5 lineto +46262.2 35288 lineto +46206 35231.7 lineto +46093.5 35175.5 lineto +45868.5 35175.5 lineto +45756.1 35231.7 lineto +stroke +newpath +46824.7 35288 moveto +46880.9 35231.7 lineto +46824.7 35175.5 lineto +46768.4 35231.7 lineto +46824.7 35288 lineto +46824.7 35175.5 lineto +stroke +newpath +46824.7 35906.6 moveto +46880.9 35850.4 lineto +46824.7 35794.2 lineto +46768.4 35850.4 lineto +46824.7 35906.6 lineto +46824.7 35794.2 lineto +stroke +newpath +37188.3 33434.4 moveto +37598 33024.6 lineto +stroke +newpath +37598 33434.4 moveto +37188.3 33024.6 lineto +stroke +0 0 0 setrgbcolor +0 0 0 setrgbcolor +newpath +38950.7 33876.3 moveto +39063.1 33876.3 lineto +39175.6 33820 lineto +39231.9 33763.8 lineto +39288.1 33651.3 lineto +39344.4 33426.3 lineto +39344.4 33145.1 lineto +39288.1 32920.1 lineto +39231.9 32807.7 lineto +39175.6 32751.4 lineto +39063.1 32695.2 lineto +38950.7 32695.2 lineto +38838.2 32751.4 lineto +38781.9 32807.7 lineto +38725.7 32920.1 lineto +38669.4 33145.1 lineto +38669.4 33426.3 lineto +38725.7 33651.3 lineto +38781.9 33763.8 lineto +38838.2 33820 lineto +38950.7 33876.3 lineto +stroke +newpath +39850.5 32807.7 moveto +39906.8 32751.4 lineto +39850.5 32695.2 lineto +39794.3 32751.4 lineto +39850.5 32807.7 lineto +39850.5 32695.2 lineto +stroke +newpath +40919.2 33876.3 moveto +40694.2 33876.3 lineto +40581.7 33820 lineto +40525.5 33763.8 lineto +40413 33595.1 lineto +40356.7 33370.1 lineto +40356.7 32920.1 lineto +40413 32807.7 lineto +40469.2 32751.4 lineto +40581.7 32695.2 lineto +40806.7 32695.2 lineto +40919.2 32751.4 lineto +40975.4 32807.7 lineto +41031.6 32920.1 lineto +41031.6 33201.4 lineto +40975.4 33313.8 lineto +40919.2 33370.1 lineto +40806.7 33426.3 lineto +40581.7 33426.3 lineto +40469.2 33370.1 lineto +40413 33313.8 lineto +40356.7 33201.4 lineto +stroke +newpath +41762.8 33876.3 moveto +41875.3 33876.3 lineto +41987.8 33820 lineto +42044 33763.8 lineto +42100.3 33651.3 lineto +42156.5 33426.3 lineto +42156.5 33145.1 lineto +42100.3 32920.1 lineto +42044 32807.7 lineto +41987.8 32751.4 lineto +41875.3 32695.2 lineto +41762.8 32695.2 lineto +41650.3 32751.4 lineto +41594.1 32807.7 lineto +41537.8 32920.1 lineto +41481.6 33145.1 lineto +41481.6 33426.3 lineto +41537.8 33651.3 lineto +41594.1 33763.8 lineto +41650.3 33820 lineto +41762.8 33876.3 lineto +stroke +newpath +42662.7 32695.2 moveto +42662.7 33482.6 lineto +stroke +newpath +42662.7 33370.1 moveto +42718.9 33426.3 lineto +42831.4 33482.6 lineto +43000.1 33482.6 lineto +43112.6 33426.3 lineto +43168.9 33313.8 lineto +43168.9 32695.2 lineto +stroke +newpath +43168.9 33313.8 moveto +43225.1 33426.3 lineto +43337.6 33482.6 lineto +43506.3 33482.6 lineto +43618.8 33426.3 lineto +43675.1 33313.8 lineto +43675.1 32695.2 lineto +stroke +newpath +44237.5 32695.2 moveto +44237.5 33482.6 lineto +stroke +newpath +44237.5 33370.1 moveto +44293.7 33426.3 lineto +44406.2 33482.6 lineto +44574.9 33482.6 lineto +44687.4 33426.3 lineto +44743.7 33313.8 lineto +44743.7 32695.2 lineto +stroke +newpath +44743.7 33313.8 moveto +44799.9 33426.3 lineto +44912.4 33482.6 lineto +45081.1 33482.6 lineto +45193.6 33426.3 lineto +45249.9 33313.8 lineto +45249.9 32695.2 lineto +stroke +newpath +47555.8 33932.5 moveto +46543.5 32414 lineto +stroke +newpath +49074.4 33876.3 moveto +49186.9 33876.3 lineto +49299.4 33820 lineto +49355.6 33763.8 lineto +49411.8 33651.3 lineto +49468.1 33426.3 lineto +49468.1 33145.1 lineto +49411.8 32920.1 lineto +49355.6 32807.7 lineto +49299.4 32751.4 lineto +49186.9 32695.2 lineto +49074.4 32695.2 lineto +48961.9 32751.4 lineto +48905.7 32807.7 lineto +48849.4 32920.1 lineto +48793.2 33145.1 lineto +48793.2 33426.3 lineto +48849.4 33651.3 lineto +48905.7 33763.8 lineto +48961.9 33820 lineto +49074.4 33876.3 lineto +stroke +newpath +49974.3 32807.7 moveto +50030.5 32751.4 lineto +49974.3 32695.2 lineto +49918 32751.4 lineto +49974.3 32807.7 lineto +49974.3 32695.2 lineto +stroke +newpath +50761.7 33876.3 moveto +50874.2 33876.3 lineto +50986.6 33820 lineto +51042.9 33763.8 lineto +51099.1 33651.3 lineto +51155.4 33426.3 lineto +51155.4 33145.1 lineto +51099.1 32920.1 lineto +51042.9 32807.7 lineto +50986.6 32751.4 lineto +50874.2 32695.2 lineto +50761.7 32695.2 lineto +50649.2 32751.4 lineto +50592.9 32807.7 lineto +50536.7 32920.1 lineto +50480.5 33145.1 lineto +50480.5 33426.3 lineto +50536.7 33651.3 lineto +50592.9 33763.8 lineto +50649.2 33820 lineto +50761.7 33876.3 lineto +stroke +newpath +51605.3 33763.8 moveto +51661.6 33820 lineto +51774 33876.3 lineto +52055.3 33876.3 lineto +52167.8 33820 lineto +52224 33763.8 lineto +52280.2 33651.3 lineto +52280.2 33538.8 lineto +52224 33370.1 lineto +51549.1 32695.2 lineto +52280.2 32695.2 lineto +stroke +newpath +53292.6 33482.6 moveto +53292.6 32695.2 lineto +stroke +newpath +53011.4 33932.5 moveto +52730.2 33088.9 lineto +53461.3 33088.9 lineto +stroke +newpath +53855 33876.3 moveto +53855 33651.3 lineto +stroke +newpath +54305 33876.3 moveto +54305 33651.3 lineto +stroke +newpath +56048.5 32245.2 moveto +55992.3 32301.5 lineto +55879.8 32470.2 lineto +55823.5 32582.7 lineto +55767.3 32751.4 lineto +55711.1 33032.6 lineto +55711.1 33257.6 lineto +55767.3 33538.8 lineto +55823.5 33707.5 lineto +55879.8 33820 lineto +55992.3 33988.8 lineto +56048.5 34045 lineto +stroke +newpath +57004.6 33482.6 moveto +57004.6 32695.2 lineto +stroke +newpath +56723.4 33932.5 moveto +56442.2 33088.9 lineto +57173.4 33088.9 lineto +stroke +newpath +58523.2 32695.2 moveto +58523.2 33876.3 lineto +stroke +newpath +59029.4 32695.2 moveto +59029.4 33313.8 lineto +58973.2 33426.3 lineto +58860.7 33482.6 lineto +58691.9 33482.6 lineto +58579.4 33426.3 lineto +58523.2 33370.1 lineto +stroke +newpath +59760.6 32695.2 moveto +59648.1 32751.4 lineto +59591.8 32807.7 lineto +59535.6 32920.1 lineto +59535.6 33257.6 lineto +59591.8 33370.1 lineto +59648.1 33426.3 lineto +59760.6 33482.6 lineto +59929.3 33482.6 lineto +60041.8 33426.3 lineto +60098 33370.1 lineto +60154.3 33257.6 lineto +60154.3 32920.1 lineto +60098 32807.7 lineto +60041.8 32751.4 lineto +59929.3 32695.2 lineto +59760.6 32695.2 lineto +stroke +newpath +60829.2 32695.2 moveto +60716.7 32751.4 lineto +60660.4 32863.9 lineto +60660.4 33876.3 lineto +stroke +newpath +61729.1 32751.4 moveto +61616.6 32695.2 lineto +61391.6 32695.2 lineto +61279.1 32751.4 lineto +61222.9 32863.9 lineto +61222.9 33313.8 lineto +61279.1 33426.3 lineto +61391.6 33482.6 lineto +61616.6 33482.6 lineto +61729.1 33426.3 lineto +61785.3 33313.8 lineto +61785.3 33201.4 lineto +61222.9 33088.9 lineto +stroke +newpath +62235.2 32751.4 moveto +62347.7 32695.2 lineto +62572.7 32695.2 lineto +62685.2 32751.4 lineto +62741.4 32863.9 lineto +62741.4 32920.1 lineto +62685.2 33032.6 lineto +62572.7 33088.9 lineto +62404 33088.9 lineto +62291.5 33145.1 lineto +62235.2 33257.6 lineto +62235.2 33313.8 lineto +62291.5 33426.3 lineto +62404 33482.6 lineto +62572.7 33482.6 lineto +62685.2 33426.3 lineto +stroke +newpath +63135.1 32245.2 moveto +63191.4 32301.5 lineto +63303.9 32470.2 lineto +63360.1 32582.7 lineto +63416.3 32751.4 lineto +63472.6 33032.6 lineto +63472.6 33257.6 lineto +63416.3 33538.8 lineto +63360.1 33707.5 lineto +63303.9 33820 lineto +63191.4 33988.8 lineto +63135.1 34045 lineto +stroke +showpage +grestore +%%EOF diff --git a/Glas/gerber/receive_v1_1-PTH.drl b/Glas/gerber/receive_v1_1-PTH.drl new file mode 100644 index 0000000..d8cd151 --- /dev/null +++ b/Glas/gerber/receive_v1_1-PTH.drl @@ -0,0 +1,17 @@ +M48 +;DRILL file {KiCad 5.0.0+dfsg1-1~bpo9+1} date Fri Dec 28 11:25:32 2018 +;FORMAT={-:-/ absolute / inch / decimal} +FMAT,2 +INCH,TZ +T1C0.0236 +% +G90 +G05 +M72 +T1 +X3.4852Y-4.1298 +X3.4909Y-4.2 +X4.0592Y-4.1338 +X4.0596Y-4.0683 +T0 +M30 diff --git a/Glas/gerber/receive_v1_1-Top.gbr b/Glas/gerber/receive_v1_1-Top.gbr new file mode 100644 index 0000000..662d9db --- /dev/null +++ b/Glas/gerber/receive_v1_1-Top.gbr @@ -0,0 +1,1178 @@ +G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,5.0.0+dfsg1-1~bpo9+1* +G04 #@! TF.CreationDate,2018-12-28T11:25:29+01:00* +G04 #@! TF.ProjectId,receive_v1_1,726563656976655F76315F312E6B6963,rev?* +G04 #@! TF.SameCoordinates,Original* +G04 #@! TF.FileFunction,Copper,L1,Top,Signal* +G04 #@! TF.FilePolarity,Positive* +%FSLAX46Y46*% +G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* +G04 Created by KiCad (PCBNEW 5.0.0+dfsg1-1~bpo9+1) date Fri Dec 28 11:25:29 2018* +%MOMM*% +%LPD*% +G01* +G04 APERTURE LIST* +G04 #@! TA.AperFunction,NonConductor* +%ADD10C,0.142240*% +G04 #@! TD* +G04 #@! TA.AperFunction,SMDPad,CuDef* +%ADD11R,1.803000X1.600000*% +G04 #@! TD* +G04 #@! TA.AperFunction,SMDPad,CuDef* +%ADD12R,1.000000X1.000000*% +G04 #@! TD* +G04 #@! TA.AperFunction,SMDPad,CuDef* +%ADD13R,1.300000X1.500000*% +G04 #@! TD* +G04 #@! TA.AperFunction,SMDPad,CuDef* +%ADD14R,1.200000X1.200000*% +G04 #@! TD* +G04 #@! TA.AperFunction,SMDPad,CuDef* +%ADD15R,1.600000X1.800000*% +G04 #@! TD* +G04 #@! TA.AperFunction,SMDPad,CuDef* +%ADD16R,1.200000X0.550000*% +G04 #@! TD* +G04 #@! TA.AperFunction,SMDPad,CuDef* +%ADD17R,1.800000X1.600000*% +G04 #@! TD* +G04 #@! TA.AperFunction,SMDPad,CuDef* +%ADD18R,1.500000X1.300000*% +G04 #@! TD* +G04 #@! TA.AperFunction,SMDPad,CuDef* +%ADD19R,1.500000X1.000000*% +G04 #@! TD* +G04 #@! TA.AperFunction,SMDPad,CuDef* +%ADD20R,2.000000X2.000000*% +G04 #@! TD* +G04 #@! TA.AperFunction,SMDPad,CuDef* +%ADD21R,1.200000X1.000000*% +G04 #@! TD* +G04 #@! TA.AperFunction,SMDPad,CuDef* +%ADD22R,1.780000X2.160000*% +G04 #@! TD* +G04 #@! TA.AperFunction,SMDPad,CuDef* +%ADD23R,0.600000X0.800000*% +G04 #@! TD* +G04 #@! TA.AperFunction,SMDPad,CuDef* +%ADD24R,1.600000X2.700000*% +G04 #@! TD* +G04 #@! TA.AperFunction,SMDPad,CuDef* +%ADD25R,3.000000X5.000000*% +G04 #@! TD* +G04 #@! TA.AperFunction,SMDPad,CuDef* +%ADD26R,1.600000X1.803000*% +G04 #@! TD* +G04 #@! TA.AperFunction,SMDPad,CuDef* +%ADD27R,2.400000X2.400000*% +G04 #@! TD* +G04 #@! TA.AperFunction,ViaPad* +%ADD28C,1.500000*% +G04 #@! TD* +G04 #@! TA.AperFunction,Conductor* +%ADD29C,0.500000*% +G04 #@! TD* +G04 #@! TA.AperFunction,Conductor* +%ADD30C,0.800000*% +G04 #@! TD* +G04 APERTURE END LIST* +D10* +X138209189Y-106519133D02* +X138450489Y-106599566D01* +X138852656Y-106599566D01* +X139013522Y-106519133D01* +X139093956Y-106438700D01* +X139174389Y-106277833D01* +X139174389Y-106116966D01* +X139093956Y-105956100D01* +X139013522Y-105875666D01* +X138852656Y-105795233D01* +X138530922Y-105714800D01* +X138370056Y-105634366D01* +X138289622Y-105553933D01* +X138209189Y-105393066D01* +X138209189Y-105232200D01* +X138289622Y-105071333D01* +X138370056Y-104990900D01* +X138530922Y-104910466D01* +X138933089Y-104910466D01* +X139174389Y-104990900D01* +X140783056Y-104990900D02* +X140622189Y-104910466D01* +X140380889Y-104910466D01* +X140139589Y-104990900D01* +X139978722Y-105151766D01* +X139898289Y-105312633D01* +X139817856Y-105634366D01* +X139817856Y-105875666D01* +X139898289Y-106197400D01* +X139978722Y-106358266D01* +X140139589Y-106519133D01* +X140380889Y-106599566D01* +X140541756Y-106599566D01* +X140783056Y-106519133D01* +X140863489Y-106438700D01* +X140863489Y-105875666D01* +X140541756Y-105875666D01* +X111314822Y-131838700D02* +X111234389Y-131919133D01* +X110993089Y-131999566D01* +X110832222Y-131999566D01* +X110590922Y-131919133D01* +X110430056Y-131758266D01* +X110349622Y-131597400D01* +X110269189Y-131275666D01* +X110269189Y-131034366D01* +X110349622Y-130712633D01* +X110430056Y-130551766D01* +X110590922Y-130390900D01* +X110832222Y-130310466D01* +X110993089Y-130310466D01* +X111234389Y-130390900D01* +X111314822Y-130471333D01* +X112280022Y-131999566D02* +X112119156Y-131919133D01* +X112038722Y-131838700D01* +X111958289Y-131677833D01* +X111958289Y-131195233D01* +X112038722Y-131034366D01* +X112119156Y-130953933D01* +X112280022Y-130873500D01* +X112521322Y-130873500D01* +X112682189Y-130953933D01* +X112762622Y-131034366D01* +X112843056Y-131195233D01* +X112843056Y-131677833D01* +X112762622Y-131838700D01* +X112682189Y-131919133D01* +X112521322Y-131999566D01* +X112280022Y-131999566D01* +X114290856Y-131919133D02* +X114129989Y-131999566D01* +X113808256Y-131999566D01* +X113647389Y-131919133D01* +X113566956Y-131838700D01* +X113486522Y-131677833D01* +X113486522Y-131195233D01* +X113566956Y-131034366D01* +X113647389Y-130953933D01* +X113808256Y-130873500D01* +X114129989Y-130873500D01* +X114290856Y-130953933D01* +X115014756Y-131999566D02* +X115014756Y-130310466D01* +X115175622Y-131356100D02* +X115658222Y-131999566D01* +X115658222Y-130873500D02* +X115014756Y-131516966D01* +X116140822Y-130873500D02* +X116784289Y-130873500D01* +X116382122Y-130310466D02* +X116382122Y-131758266D01* +X116462556Y-131919133D01* +X116623422Y-131999566D01* +X116784289Y-131999566D01* +X118071222Y-131999566D02* +X118071222Y-131114800D01* +X117990789Y-130953933D01* +X117829922Y-130873500D01* +X117508189Y-130873500D01* +X117347322Y-130953933D01* +X118071222Y-131919133D02* +X117910356Y-131999566D01* +X117508189Y-131999566D01* +X117347322Y-131919133D01* +X117266889Y-131758266D01* +X117266889Y-131597400D01* +X117347322Y-131436533D01* +X117508189Y-131356100D01* +X117910356Y-131356100D01* +X118071222Y-131275666D01* +X118875556Y-131999566D02* +X118875556Y-130873500D01* +X118875556Y-130310466D02* +X118795122Y-130390900D01* +X118875556Y-130471333D01* +X118955989Y-130390900D01* +X118875556Y-130310466D01* +X118875556Y-130471333D01* +X119921189Y-131999566D02* +X119760322Y-131919133D01* +X119679889Y-131758266D01* +X119679889Y-130310466D01* +X121288556Y-130873500D02* +X121288556Y-132240866D01* +X121208122Y-132401733D01* +X121127689Y-132482166D01* +X120966822Y-132562600D01* +X120725522Y-132562600D01* +X120564656Y-132482166D01* +X121288556Y-131919133D02* +X121127689Y-131999566D01* +X120805956Y-131999566D01* +X120645089Y-131919133D01* +X120564656Y-131838700D01* +X120484222Y-131677833D01* +X120484222Y-131195233D01* +X120564656Y-131034366D01* +X120645089Y-130953933D01* +X120805956Y-130873500D01* +X121127689Y-130873500D01* +X121288556Y-130953933D01* +X122334189Y-131999566D02* +X122173322Y-131919133D01* +X122092889Y-131758266D01* +X122092889Y-130310466D01* +X123701556Y-131999566D02* +X123701556Y-131114800D01* +X123621122Y-130953933D01* +X123460256Y-130873500D01* +X123138522Y-130873500D01* +X122977656Y-130953933D01* +X123701556Y-131919133D02* +X123540689Y-131999566D01* +X123138522Y-131999566D01* +X122977656Y-131919133D01* +X122897222Y-131758266D01* +X122897222Y-131597400D01* +X122977656Y-131436533D01* +X123138522Y-131356100D01* +X123540689Y-131356100D01* +X123701556Y-131275666D01* +X124425456Y-131919133D02* +X124586322Y-131999566D01* +X124908056Y-131999566D01* +X125068922Y-131919133D01* +X125149356Y-131758266D01* +X125149356Y-131677833D01* +X125068922Y-131516966D01* +X124908056Y-131436533D01* +X124666756Y-131436533D01* +X124505889Y-131356100D01* +X124425456Y-131195233D01* +X124425456Y-131114800D01* +X124505889Y-130953933D01* +X124666756Y-130873500D01* +X124908056Y-130873500D01* +X125068922Y-130953933D01* +D11* +G04 #@! TO.P,R4,2* +G04 #@! TO.N,GND* +X139700000Y-93497000D03* +G04 #@! TO.P,R4,1* +G04 #@! TO.N,Net-(D2-PadC)* +X139700000Y-90653000D03* +G04 #@! TD* +G04 #@! TO.P,R11,2* +G04 #@! TO.N,PWR_LED* +X133096000Y-99416000D03* +G04 #@! TO.P,R11,1* +X133096000Y-102260000D03* +G04 #@! TD* +D12* +G04 #@! TO.P,TP8,1* +G04 #@! TO.N,VCC* +X135890000Y-93218000D03* +G04 #@! TD* +G04 #@! TO.P,TP7,1* +G04 #@! TO.N,VCC* +X128524000Y-102362000D03* +G04 #@! TD* +D11* +G04 #@! TO.P,R10,2* +G04 #@! TO.N,DOUT* +X120015000Y-95774599D03* +G04 #@! TO.P,R10,1* +X120015000Y-98618599D03* +G04 #@! TD* +D13* +G04 #@! TO.P,R2,2* +G04 #@! TO.N,Net-(LED1-PadC)* +X113096000Y-106681065D03* +G04 #@! TO.P,R2,1* +G04 #@! TO.N,Net-(IC1-Pad1)* +X114996000Y-106681065D03* +G04 #@! TD* +D14* +G04 #@! TO.P,LED1,A* +G04 #@! TO.N,PWR_IN* +X108517259Y-106681065D03* +G04 #@! TO.P,LED1,C* +G04 #@! TO.N,Net-(LED1-PadC)* +X110617259Y-106681065D03* +G04 #@! TD* +D15* +G04 #@! TO.P,C2,2* +G04 #@! TO.N,GND* +X113795000Y-97155000D03* +G04 #@! TO.P,C2,1* +G04 #@! TO.N,PWR_IN* +X110995000Y-97155000D03* +G04 #@! TD* +D16* +G04 #@! TO.P,IC1,5* +G04 #@! TO.N,Net-(IC1-Pad5)* +X111276375Y-104009509D03* +G04 #@! TO.P,IC1,4* +G04 #@! TO.N,PWR_IN* +X111276375Y-102109509D03* +G04 #@! TO.P,IC1,3* +G04 #@! TO.N,VCC* +X113876375Y-102109509D03* +G04 #@! TO.P,IC1,2* +G04 #@! TO.N,GND* +X113876375Y-103059509D03* +G04 #@! TO.P,IC1,1* +G04 #@! TO.N,Net-(IC1-Pad1)* +X113876375Y-104009509D03* +G04 #@! TD* +D17* +G04 #@! TO.P,C3,2* +G04 #@! TO.N,GND* +X117187259Y-104271065D03* +G04 #@! TO.P,C3,1* +G04 #@! TO.N,VCC* +X117187259Y-101471065D03* +G04 #@! TD* +D13* +G04 #@! TO.P,C4,1* +G04 #@! TO.N,PWR_IN* +X111445000Y-99695000D03* +G04 #@! TO.P,C4,2* +G04 #@! TO.N,GND* +X113345000Y-99695000D03* +G04 #@! TD* +D18* +G04 #@! TO.P,R1,2* +G04 #@! TO.N,Net-(IC1-Pad5)* +X108585000Y-104455000D03* +G04 #@! TO.P,R1,1* +G04 #@! TO.N,GND* +X108585000Y-102555000D03* +G04 #@! TD* +D11* +G04 #@! TO.P,R3,1* +G04 #@! TO.N,PWR_LED* +X123190000Y-98618599D03* +G04 #@! TO.P,R3,2* +X123190000Y-95774599D03* +G04 #@! TD* +D19* +G04 #@! TO.P,U$1,GND* +G04 #@! TO.N,GND* +X124160000Y-92200000D03* +G04 #@! TO.P,U$1,NC* +G04 #@! TO.N,VCC* +X124160000Y-90200000D03* +G04 #@! TO.P,U$1,UTXD* +G04 #@! TO.N,/receive_v1_1_2/TXD* +X124160000Y-88200000D03* +G04 #@! TO.P,U$1,URXD* +G04 #@! TO.N,/receive_v1_1_2/RXD* +X124160000Y-86200000D03* +G04 #@! TO.P,U$1,GPIO18* +G04 #@! TO.N,Net-(U$1-PadGPIO18)* +X124160000Y-84200000D03* +G04 #@! TO.P,U$1,CH_PD* +G04 #@! TO.N,Net-(D2-PadC)* +X124160000Y-82200000D03* +G04 #@! TO.P,U$1,ANT* +G04 #@! TO.N,Net-(U$1-PadANT)* +X124160000Y-80200000D03* +G04 #@! TO.P,U$1,GPIO0* +G04 #@! TO.N,Net-(TP4-Pad1)* +X111560000Y-92200000D03* +G04 #@! TO.P,U$1,GPIO2* +G04 #@! TO.N,DOUT* +X111560000Y-90200000D03* +G04 #@! TO.P,U$1,GPIO15* +G04 #@! TO.N,GND* +X111560000Y-88200000D03* +G04 #@! TO.P,U$1,GPIO13* +G04 #@! TO.N,PWR_LED* +X111560000Y-86200000D03* +G04 #@! TO.P,U$1,GPIO12* +G04 #@! TO.N,Net-(U$1-PadGPIO12)* +X111560000Y-84200000D03* +G04 #@! TO.P,U$1,GPIO14* +G04 #@! TO.N,GPIO14* +X111560000Y-82200000D03* +G04 #@! TO.P,U$1,VCC* +G04 #@! TO.N,VCC* +X111560000Y-80200000D03* +G04 #@! TD* +D20* +G04 #@! TO.P,TP4,1* +G04 #@! TO.N,Net-(TP4-Pad1)* +X106680000Y-92710000D03* +G04 #@! TD* +G04 #@! TO.P,TP6,1* +G04 #@! TO.N,/receive_v1_1_2/TXD* +X129540000Y-88900000D03* +G04 #@! TD* +G04 #@! TO.P,TP5,1* +G04 #@! TO.N,/receive_v1_1_2/RXD* +X129540000Y-85090000D03* +G04 #@! TD* +G04 #@! TO.P,TP3,1* +G04 #@! TO.N,GND* +X129540000Y-96520000D03* +G04 #@! TD* +G04 #@! TO.P,TP2,1* +G04 #@! TO.N,VCC* +X129540000Y-92710000D03* +G04 #@! TD* +G04 #@! TO.P,TP1,1* +G04 #@! TO.N,Net-(D2-PadC)* +X129540000Y-81280000D03* +G04 #@! TD* +D21* +G04 #@! TO.P,IC3,6* +G04 #@! TO.N,GND* +X91603800Y-112293200D03* +G04 #@! TO.P,IC3,5* +G04 #@! TO.N,VCC* +X91603800Y-110693200D03* +G04 #@! TO.P,IC3,1* +G04 #@! TO.N,Net-(IC3-Pad1)* +X96203800Y-112293200D03* +G04 #@! TO.P,IC3,2* +G04 #@! TO.N,Net-(IC3-Pad2)* +X96203800Y-110693200D03* +G04 #@! TO.P,IC3,3* +G04 #@! TO.N,PWR_LED* +X96203800Y-109093200D03* +G04 #@! TD* +D15* +G04 #@! TO.P,C1,2* +G04 #@! TO.N,/receive_v1_1_1/IND* +X91310000Y-105410000D03* +G04 #@! TO.P,C1,1* +G04 #@! TO.N,Net-(C1-Pad1)* +X94110000Y-105410000D03* +G04 #@! TD* +D13* +G04 #@! TO.P,C5,2* +G04 #@! TO.N,Net-(C1-Pad1)* +X98347350Y-105316100D03* +G04 #@! TO.P,C5,1* +G04 #@! TO.N,/receive_v1_1_1/IND* +X100247350Y-105316100D03* +G04 #@! TD* +D22* +G04 #@! TO.P,D1,A* +G04 #@! TO.N,GND* +X93210000Y-92710000D03* +G04 #@! TO.P,D1,C* +G04 #@! TO.N,PWR_IN* +X97280000Y-92710000D03* +G04 #@! TD* +D21* +G04 #@! TO.P,IC2,6* +G04 #@! TO.N,GND* +X143905000Y-96520200D03* +G04 #@! TO.P,IC2,5* +G04 #@! TO.N,VCC* +X143905000Y-98120200D03* +G04 #@! TO.P,IC2,1* +G04 #@! TO.N,Net-(IC2-Pad1)* +X139305000Y-96520200D03* +G04 #@! TO.P,IC2,2* +G04 #@! TO.N,DOUT* +X139305000Y-98120200D03* +G04 #@! TO.P,IC2,3* +G04 #@! TO.N,PWR_LED* +X139305000Y-99720200D03* +G04 #@! TD* +D23* +G04 #@! TO.P,D2,A* +G04 #@! TO.N,Net-(D2-PadA)* +X107188000Y-81514000D03* +G04 #@! TO.P,D2,C* +G04 #@! TO.N,Net-(D2-PadC)* +X107188000Y-79014000D03* +G04 #@! TD* +D13* +G04 #@! TO.P,R5,2* +G04 #@! TO.N,Net-(C6-Pad2)* +X100015000Y-90805000D03* +G04 #@! TO.P,R5,1* +G04 #@! TO.N,Net-(D2-PadA)* +X101915000Y-90805000D03* +G04 #@! TD* +D18* +G04 #@! TO.P,R6,2* +G04 #@! TO.N,Net-(D3-PadA)* +X107630000Y-84140000D03* +G04 #@! TO.P,R6,1* +G04 #@! TO.N,GPIO14* +X107630000Y-86040000D03* +G04 #@! TD* +G04 #@! TO.P,C6,2* +G04 #@! TO.N,Net-(C6-Pad2)* +X101600000Y-93980000D03* +G04 #@! TO.P,C6,1* +G04 #@! TO.N,PWR_IN* +X101600000Y-95880000D03* +G04 #@! TD* +D23* +G04 #@! TO.P,D3,A* +G04 #@! TO.N,Net-(D3-PadA)* +X109030000Y-81450000D03* +G04 #@! TO.P,D3,C* +G04 #@! TO.N,Net-(D2-PadC)* +X109030000Y-78950000D03* +G04 #@! TD* +D18* +G04 #@! TO.P,C7,2* +G04 #@! TO.N,GND* +X133350000Y-95565000D03* +G04 #@! TO.P,C7,1* +G04 #@! TO.N,VCC* +X133350000Y-93665000D03* +G04 #@! TD* +D24* +G04 #@! TO.P,C8,2* +G04 #@! TO.N,GND* +X100962000Y-82804000D03* +G04 #@! TO.P,C8,1* +G04 #@! TO.N,VCC* +X103762000Y-82804000D03* +G04 #@! TD* +D13* +G04 #@! TO.P,R7,2* +G04 #@! TO.N,PWR_IN* +X96520000Y-88900000D03* +G04 #@! TO.P,R7,1* +G04 #@! TO.N,GND* +X94620000Y-88900000D03* +G04 #@! TD* +D25* +G04 #@! TO.P,X1,2* +G04 #@! TO.N,GND* +X121444000Y-105918000D03* +G04 #@! TO.P,X1,1* +G04 #@! TO.N,VCC* +X125444000Y-105918000D03* +G04 #@! TD* +D26* +G04 #@! TO.P,R8,1* +G04 #@! TO.N,Net-(IC2-Pad1)* +X104292000Y-111125000D03* +G04 #@! TO.P,R8,2* +G04 #@! TO.N,Net-(IC3-Pad2)* +X101448000Y-111125000D03* +G04 #@! TD* +G04 #@! TO.P,R9,1* +G04 #@! TO.N,GND* +X104927000Y-87630000D03* +G04 #@! TO.P,R9,2* +X102083000Y-87630000D03* +G04 #@! TD* +D17* +G04 #@! TO.P,C9,2* +G04 #@! TO.N,/receive_v1_1_1/IND* +X104775000Y-101095000D03* +G04 #@! TO.P,C9,1* +G04 #@! TO.N,PWR_IN* +X104775000Y-98295000D03* +G04 #@! TD* +G04 #@! TO.P,C10,2* +G04 #@! TO.N,GND* +X101600000Y-98295000D03* +G04 #@! TO.P,C10,1* +G04 #@! TO.N,/receive_v1_1_1/IND* +X101600000Y-101095000D03* +G04 #@! TD* +D27* +G04 #@! TO.P,D4,A* +G04 #@! TO.N,Net-(C1-Pad1)* +X97790000Y-101260000D03* +G04 #@! TO.P,D4,C* +G04 #@! TO.N,PWR_IN* +X97790000Y-96860000D03* +G04 #@! TD* +G04 #@! TO.P,D5,A* +G04 #@! TO.N,GND* +X92710000Y-96860000D03* +G04 #@! TO.P,D5,C* +G04 #@! TO.N,Net-(C1-Pad1)* +X92710000Y-101260000D03* +G04 #@! TD* +D28* +G04 #@! TO.N,/receive_v1_1_1/IND* +X103104850Y-104998600D03* +X88525250Y-104897000D03* +X88669547Y-106680000D03* +X103113926Y-103335161D03* +G04 #@! TD* +D29* +G04 #@! TO.N,GND* +X101470000Y-99060000D02* +X101600000Y-98930000D01* +X93210000Y-99060000D02* +X101470000Y-99060000D01* +X92710000Y-98560000D02* +X93210000Y-99060000D01* +X92710000Y-96860000D02* +X92710000Y-98560000D01* +X101429998Y-81280000D02* +X101600000Y-81280000D01* +X97790000Y-85070000D02* +X97790000Y-84919998D01* +X97810000Y-85090000D02* +X97790000Y-85070000D01* +D30* +X97790000Y-84919998D02* +X101429998Y-81280000D01* +D29* +X94620000Y-88900000D02* +X93809998Y-88900000D01* +D30* +X92710000Y-89999998D02* +X93809998Y-88900000D01* +D29* +X93210000Y-91940000D02* +X92710000Y-91440000D01* +X93210000Y-92710000D02* +X93210000Y-91940000D01* +D30* +X92710000Y-91440000D02* +X92710000Y-89999998D01* +X92710000Y-96860000D02* +X92710000Y-91440000D01* +D29* +X108975000Y-89535000D02* +X104775000Y-89535000D01* +D30* +X104775000Y-89535000D02* +X104140000Y-90170000D01* +D29* +X110310000Y-88200000D02* +X108975000Y-89535000D01* +X111560000Y-88200000D02* +X110310000Y-88200000D01* +D30* +X104140000Y-90170000D02* +X104140000Y-94615000D01* +X104140000Y-94615000D02* +X104775000Y-95250000D01* +X104775000Y-95250000D02* +X107950000Y-95250000D01* +D29* +X132395000Y-96520000D02* +X133350000Y-95565000D01* +X129540000Y-96520000D02* +X132395000Y-96520000D01* +X124160000Y-92640000D02* +X124160000Y-92200000D01* +D30* +X128040000Y-96520000D02* +X124160000Y-92640000D01* +D29* +X129540000Y-96520000D02* +X128040000Y-96520000D01* +X114007259Y-97021065D02* +X113507259Y-96521065D01* +X113876375Y-103059509D02* +X112776375Y-103059509D01* +X112776375Y-103059509D02* +X112726374Y-103009508D01* +X112726374Y-101020396D02* +X114007259Y-99739511D01* +X112726374Y-103009508D02* +X112726374Y-101020396D01* +X114007259Y-99739511D02* +X114007259Y-99249509D01* +X110361373Y-103059509D02* +X112776375Y-103059509D01* +X113876375Y-103059509D02* +X115975703Y-103059509D01* +X115975703Y-103059509D02* +X117187259Y-104271065D01* +D30* +X114007259Y-99249509D02* +X114007259Y-97021065D01* +X113795000Y-95380000D02* +X113795000Y-97155000D01* +X107950000Y-95250000D02* +X108585000Y-95250000D01* +X113030000Y-94615000D02* +X113795000Y-95380000D01* +X108585000Y-95250000D02* +X109220000Y-94615000D01* +X109220000Y-94615000D02* +X113030000Y-94615000D01* +D29* +X127635000Y-96520000D02* +X128040000Y-96520000D01* +X127000000Y-97155000D02* +X127635000Y-96520000D01* +X113795000Y-97155000D02* +X127000000Y-97155000D01* +X104927000Y-89383000D02* +X104775000Y-89535000D01* +D30* +X104927000Y-87630000D02* +X104927000Y-89383000D01* +X96603998Y-86106000D02* +X97790000Y-84919998D01* +X93809998Y-88900000D02* +X96603998Y-86106000D01* +D29* +X142805000Y-96520200D02* +X143905000Y-96520200D01* +X133350000Y-95565000D02* +X134600000Y-95565000D01* +X134600000Y-95565000D02* +X134661000Y-95504000D01* +X134661000Y-95504000D02* +X137668000Y-95504000D01* +X137668000Y-95504000D02* +X138176000Y-94996000D01* +X119797065Y-104271065D02* +X121444000Y-105918000D01* +D30* +X117187259Y-104271065D02* +X119797065Y-104271065D01* +D29* +X102083000Y-87630000D02* +X101854000Y-87630000D01* +D30* +X100962000Y-86738000D02* +X100962000Y-82804000D01* +X101854000Y-87630000D02* +X100962000Y-86738000D01* +D29* +X113962748Y-99695000D02* +X114007259Y-99739511D01* +X113345000Y-99695000D02* +X113962748Y-99695000D01* +X142405010Y-96120210D02* +X142240000Y-95955200D01* +X141280800Y-94996000D02* +X142240000Y-95955200D01* +X142240000Y-95955200D02* +X142367000Y-96082200D01* +X142367000Y-96082200D02* +X142805000Y-96520200D01* +X140400758Y-103416010D02* +X142367000Y-101449768D01* +X127889000Y-111633000D02* +X136105990Y-103416010D01* +X142367000Y-101449768D02* +X142367000Y-96082200D01* +X107823000Y-111633000D02* +X127889000Y-111633000D01* +X91603800Y-112293200D02* +X92703800Y-112293200D01* +X92703800Y-112293200D02* +X93948600Y-113538000D01* +X136105990Y-103416010D02* +X140400758Y-103416010D01* +X93948600Y-113538000D02* +X105918000Y-113538000D01* +X105918000Y-113538000D02* +X107823000Y-111633000D01* +X100962000Y-81747998D02* +X101429998Y-81280000D01* +X100962000Y-82804000D02* +X100962000Y-81747998D01* +X139700000Y-93497000D02* +X139700000Y-94996000D01* +X139700000Y-94996000D02* +X141280800Y-94996000D01* +X138176000Y-94996000D02* +X139700000Y-94996000D01* +X109856864Y-102555000D02* +X108585000Y-102555000D01* +X110361373Y-103059509D02* +X109856864Y-102555000D01* +D30* +G04 #@! TO.N,PWR_IN* +X97670000Y-88900000D02* +X96520000Y-88900000D01* +D29* +X97790000Y-89020000D02* +X97670000Y-88900000D01* +X97280000Y-93470000D02* +X97790000Y-93980000D01* +X97280000Y-92710000D02* +X97280000Y-93470000D01* +D30* +X97790000Y-93980000D02* +X97790000Y-89020000D01* +X97790000Y-96860000D02* +X97790000Y-93980000D01* +X104640000Y-96860000D02* +X110367259Y-96860000D01* +D29* +X104775000Y-96995000D02* +X104640000Y-96860000D01* +X110707259Y-100151277D02* +X111276375Y-100720393D01* +X111276375Y-102109509D02* +X111276375Y-100720393D01* +X108517259Y-106681065D02* +X107417259Y-106681065D01* +X107417259Y-106681065D02* +X106860001Y-106123807D01* +X106860001Y-106123807D02* +X106860001Y-101889997D01* +X106860001Y-101889997D02* +X108598721Y-100151277D01* +X108598721Y-100151277D02* +X110707259Y-100151277D01* +X101600000Y-95880000D02* +X101600000Y-96098000D01* +D30* +X110995000Y-99245000D02* +X111445000Y-99695000D01* +X110995000Y-97155000D02* +X110995000Y-99245000D01* +D29* +X111163536Y-99695000D02* +X110707259Y-100151277D01* +X111445000Y-99695000D02* +X111163536Y-99695000D01* +D30* +X98770000Y-95880000D02* +X97790000Y-96860000D01* +X101600000Y-95880000D02* +X98770000Y-95880000D01* +X103830000Y-96860000D02* +X104640000Y-96860000D01* +X101600000Y-95880000D02* +X102850000Y-95880000D01* +X102850000Y-95880000D02* +X103830000Y-96860000D01* +X104775000Y-98295000D02* +X104775000Y-96995000D01* +G04 #@! TO.N,VCC* +X111560000Y-80200000D02* +X109030000Y-80200000D01* +X109855000Y-80200000D02* +X106045000Y-80200000D01* +X106045000Y-80200000D02* +X103695000Y-82550000D01* +X121315000Y-90200000D02* +X124160000Y-90200000D01* +X111560000Y-80200000D02* +X116395000Y-80200000D01* +X116395000Y-80200000D02* +X119380000Y-83185000D01* +X119380000Y-88265000D02* +X121315000Y-90200000D01* +X119380000Y-83185000D02* +X119380000Y-88265000D01* +X128905000Y-92710000D02* +X132715000Y-92710000D01* +X124160000Y-90200000D02* +X125410000Y-90200000D01* +X126365000Y-90170000D02* +X128905000Y-92710000D01* +D29* +X125410000Y-90200000D02* +X125440000Y-90170000D01* +D30* +X125440000Y-90170000D02* +X126365000Y-90170000D01* +X133350000Y-93345000D02* +X132715000Y-92710000D01* +D29* +X133350000Y-93665000D02* +X133350000Y-93345000D01* +X113876375Y-102109509D02* +X116548815Y-102109509D01* +X116548815Y-102109509D02* +X117187259Y-101471065D01* +D30* +X118587259Y-101471065D02* +X119224194Y-102108000D01* +X119224194Y-102108000D02* +X124634000Y-102108000D01* +X125444000Y-102918000D02* +X125444000Y-105918000D01* +X117187259Y-101471065D02* +X118587259Y-101471065D01* +X124634000Y-102108000D02* +X125444000Y-102918000D01* +D29* +X124888000Y-102362000D02* +X124634000Y-102108000D01* +D30* +X128524000Y-102362000D02* +X124888000Y-102362000D01* +D29* +X135890000Y-93218000D02* +X135890000Y-93665000D01* +X135890000Y-93665000D02* +X133350000Y-93665000D01* +X92252800Y-110693200D02* +X91603800Y-110693200D01* +X95114934Y-107831066D02* +X92252800Y-110693200D01* +X106307066Y-107831066D02* +X95114934Y-107831066D01* +X125444000Y-105918000D02* +X125444000Y-106918000D01* +X125444000Y-106918000D02* +X123129033Y-109232967D01* +X123129033Y-109232967D02* +X107708967Y-109232967D01* +X107708967Y-109232967D02* +X106307066Y-107831066D01* +X145005000Y-98120200D02* +X143905000Y-98120200D01* +X145542000Y-97583200D02* +X145005000Y-98120200D01* +X145542000Y-95504000D02* +X145542000Y-97583200D01* +X135890000Y-93218000D02* +X136890000Y-93218000D01* +X138033000Y-92075000D02* +X142113000Y-92075000D01* +X136890000Y-93218000D02* +X138033000Y-92075000D01* +X142113000Y-92075000D02* +X145542000Y-95504000D01* +G04 #@! TO.N,DOUT* +X120015000Y-93980000D02* +X120015000Y-95774599D01* +X111560000Y-90200000D02* +X111810000Y-90200000D01* +X111840000Y-90170000D02* +X116205000Y-90170000D01* +X111810000Y-90200000D02* +X111840000Y-90170000D01* +X116205000Y-90170000D02* +X120015000Y-93980000D01* +X120015000Y-98618599D02* +X120116500Y-98618599D01* +X120142000Y-98644099D02* +X120142000Y-99314000D01* +X120116500Y-98618599D02* +X120142000Y-98644099D01* +X120142000Y-99314000D02* +X121666000Y-100838000D01* +X121666000Y-100838000D02* +X137160000Y-100838000D01* +X137160000Y-100838000D02* +X137668000Y-101346000D01* +X137668000Y-101346000D02* +X140208000Y-101346000D01* +X140208000Y-101346000D02* +X140716000Y-100838000D01* +X140405000Y-98120200D02* +X139305000Y-98120200D01* +X140716000Y-98431200D02* +X140405000Y-98120200D01* +X140716000Y-100838000D02* +X140716000Y-98431200D01* +G04 #@! TO.N,/receive_v1_1_1/IND* +X102787350Y-105316100D02* +X103104850Y-104998600D01* +D30* +X89038250Y-105410000D02* +X88525250Y-104897000D01* +X91310000Y-105410000D02* +X89038250Y-105410000D01* +X101600000Y-105316100D02* +X102787350Y-105316100D01* +X100247350Y-105316100D02* +X101600000Y-105316100D01* +D29* +X101197350Y-105316100D02* +X101600000Y-105316100D01* +D30* +X103104850Y-102765150D02* +X104775000Y-101095000D01* +X103104850Y-104998600D02* +X103104850Y-102765150D01* +X103113926Y-102608926D02* +X101600000Y-101095000D01* +D29* +X103113926Y-103335161D02* +X103113926Y-102608926D01* +X88669547Y-105041297D02* +X88525250Y-104897000D01* +D30* +X88669547Y-106680000D02* +X88669547Y-105041297D01* +D29* +G04 #@! TO.N,Net-(C1-Pad1)* +X94203900Y-105316100D02* +X94110000Y-105410000D01* +X98253450Y-105410000D02* +X98347350Y-105316100D01* +D30* +X94110000Y-105410000D02* +X98253450Y-105410000D01* +X92710000Y-101260000D02* +X97790000Y-101260000D01* +D29* +X97790000Y-104758750D02* +X98347350Y-105316100D01* +D30* +X97790000Y-101260000D02* +X97790000Y-104758750D01* +D29* +G04 #@! TO.N,Net-(IC1-Pad5)* +X109030491Y-104009509D02* +X108585000Y-104455000D01* +X111276375Y-104009509D02* +X109030491Y-104009509D01* +G04 #@! TO.N,Net-(IC1-Pad1)* +X114996000Y-105129134D02* +X114996000Y-106681065D01* +X113876375Y-104009509D02* +X114996000Y-105129134D01* +G04 #@! TO.N,Net-(LED1-PadC)* +X110617259Y-106681065D02* +X113096000Y-106681065D01* +G04 #@! TO.N,Net-(IC2-Pad1)* +X104292000Y-111125000D02* +X105592000Y-111125000D01* +X141516010Y-97631210D02* +X140405000Y-96520200D01* +X127557625Y-110832989D02* +X136028614Y-102362000D01* +X105884011Y-110832989D02* +X127557625Y-110832989D01* +X141516010Y-101169372D02* +X141516010Y-97631210D01* +X105592000Y-111125000D02* +X105884011Y-110832989D01* +X136028614Y-102362000D02* +X140323382Y-102362000D01* +X140405000Y-96520200D02* +X139305000Y-96520200D01* +X140323382Y-102362000D02* +X141516010Y-101169372D01* +G04 #@! TO.N,Net-(IC3-Pad2)* +X101016200Y-110693200D02* +X101448000Y-111125000D01* +X96203800Y-110693200D02* +X101016200Y-110693200D01* +G04 #@! TO.N,/receive_v1_1_2/TXD* +X124160000Y-88200000D02* +X126300000Y-88200000D01* +X127000000Y-88900000D02* +X129540000Y-88900000D01* +X126300000Y-88200000D02* +X127000000Y-88900000D01* +G04 #@! TO.N,/receive_v1_1_2/RXD* +X124160000Y-86200000D02* +X126525000Y-86200000D01* +X127635000Y-85090000D02* +X129540000Y-85090000D01* +X126525000Y-86200000D02* +X127635000Y-85090000D01* +G04 #@! TO.N,Net-(D2-PadC)* +X108966000Y-79014000D02* +X109030000Y-78950000D01* +X107188000Y-79014000D02* +X108966000Y-79014000D01* +X123910000Y-82200000D02* +X124160000Y-82200000D01* +X120389998Y-82200000D02* +X124160000Y-82200000D01* +X117139998Y-78950000D02* +X120389998Y-82200000D01* +X109030000Y-78950000D02* +X117139998Y-78950000D01* +X124160000Y-82200000D02* +X126080000Y-82200000D01* +X126080000Y-82200000D02* +X126680000Y-81600000D01* +X126680000Y-81600000D02* +X127000000Y-81600000D01* +X129220000Y-81600000D02* +X129540000Y-81280000D01* +X127000000Y-81600000D02* +X129220000Y-81600000D01* +X139700000Y-89940000D02* +X139700000Y-90653000D01* +X131040000Y-81280000D02* +X139700000Y-89940000D01* +X129540000Y-81280000D02* +X131040000Y-81280000D01* +G04 #@! TO.N,Net-(D2-PadA)* +X107188000Y-81614000D02* +X105664000Y-83138000D01* +X107188000Y-81514000D02* +X107188000Y-81614000D01* +X101915000Y-90705000D02* +X101915000Y-90805000D01* +X103433001Y-89186999D02* +X101915000Y-90705000D01* +X103433001Y-86432497D02* +X103433001Y-89186999D01* +X105664000Y-84201498D02* +X103433001Y-86432497D01* +X105664000Y-83138000D02* +X105664000Y-84201498D01* +G04 #@! TO.N,Net-(C6-Pad2)* +X100015000Y-92395000D02* +X101600000Y-93980000D01* +X100015000Y-90805000D02* +X100015000Y-92395000D01* +G04 #@! TO.N,GPIO14* +X111560000Y-82200000D02* +X110840000Y-82200000D01* +X110840000Y-82200000D02* +X109601000Y-83439000D01* +X109601000Y-85319000D02* +X108880000Y-86040000D01* +X108880000Y-86040000D02* +X107630000Y-86040000D01* +X109601000Y-83439000D02* +X109601000Y-85319000D01* +G04 #@! TO.N,Net-(D3-PadA)* +X109030000Y-81550000D02* +X108966000Y-81614000D01* +X109030000Y-81450000D02* +X109030000Y-81550000D01* +X108966000Y-81614000D02* +X108966000Y-82423000D01* +X108966000Y-82423000D02* +X108077000Y-83312000D01* +X108077000Y-83693000D02* +X107630000Y-84140000D01* +X108077000Y-83312000D02* +X108077000Y-83693000D01* +G04 #@! TO.N,Net-(TP4-Pad1)* +X111050000Y-92710000D02* +X111560000Y-92200000D01* +X106680000Y-92710000D02* +X111050000Y-92710000D01* +G04 #@! TO.N,PWR_LED* +X114140000Y-86200000D02* +X123190000Y-95250000D01* +X123190000Y-95250000D02* +X123190000Y-95774599D01* +X111560000Y-86200000D02* +X114140000Y-86200000D01* +X123190000Y-98618599D02* +X123383599Y-98618599D01* +X123383599Y-98618599D02* +X124460000Y-99695000D01* +X134112000Y-99720200D02* +X133400200Y-99720200D01* +X139305000Y-99720200D02* +X134112000Y-99720200D01* +X133400200Y-99720200D02* +X133096000Y-99416000D01* +X134112000Y-99720200D02* +X124641501Y-99720200D01* +X133096000Y-104140000D02* +X133096000Y-102260000D01* +X96203800Y-109093200D02* +X106220472Y-109093200D01* +X106220472Y-109093200D02* +X107160250Y-110032978D01* +X107160250Y-110032978D02* +X127203022Y-110032978D01* +X127203022Y-110032978D02* +X133096000Y-104140000D01* +G04 #@! TD* +M02* diff --git a/Glas/gerber/receive_v1_1.zip b/Glas/gerber/receive_v1_1.zip new file mode 100644 index 0000000..d15a3d4 Binary files /dev/null and b/Glas/gerber/receive_v1_1.zip differ diff --git a/Glas/receive_v1_1-cache.lib b/Glas/receive_v1_1-cache.lib new file mode 100644 index 0000000..3447bed --- /dev/null +++ b/Glas/receive_v1_1-cache.lib @@ -0,0 +1,345 @@ +EESchema-LIBRARY Version 2.4 +#encoding utf-8 +# +# Connector:TestPoint +# +DEF Connector:TestPoint TP 0 30 N N 1 F N +F0 "TP" 0 270 50 H V C CNN +F1 "Connector:TestPoint" 0 200 50 H V C CNN +F2 "" 200 0 50 H I C CNN +F3 "" 200 0 50 H I C CNN +$FPLIST + Pin* + Test* +$ENDFPLIST +DRAW +C 0 130 30 0 1 0 N +X 1 1 0 0 100 U 50 50 1 1 P +ENDDRAW +ENDDEF +# +# receive_v1_1-eagle-import:00917?0026 +# +DEF receive_v1_1-eagle-import:00917?0026 X 0 40 Y Y 1 L N +F0 "X" 0 100 59 H V L BNN +F1 "receive_v1_1-eagle-import:00917?0026" 0 -250 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +A 42 -130 21 291 1495 1 0 10 N 60 -120 25 -120 +A 42 -69 20 -1471 -314 1 0 10 N 25 -80 60 -80 +A 42 -30 21 291 1495 1 0 10 N 60 -20 25 -20 +A 42 30 20 -1495 -291 1 0 10 N 25 20 60 20 +P 2 1 0 0 0 -120 25 -120 N +P 2 1 0 0 0 -80 0 -120 N +P 2 1 0 0 0 -20 25 -20 N +P 2 1 0 0 0 20 0 -20 N +P 2 1 0 0 25 -80 0 -80 N +P 2 1 0 0 25 20 0 20 N +X 1 1 -100 0 100 R 0 50 1 0 P +X 2 2 -100 -100 100 R 0 50 1 0 P +ENDDRAW +ENDDEF +# +# receive_v1_1-eagle-import:A4L-LOC +# +DEF ~receive_v1_1-eagle-import:A4L-LOC #FRAME 0 40 Y Y 1 L N +F0 "#FRAME" 0 0 50 H I C CNN +F1 "receive_v1_1-eagle-import:A4L-LOC" 0 0 50 H I C CNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +T 0 8550 600 85 0 1 0 >DRAWING_NAME Normal 0 L B +T 0 8550 400 76 0 1 0 >LAST_DATE_TIME Normal 0 L B +T 0 9075 200 85 0 1 0 >SHEET Normal 0 L B +T 0 8540 195 85 0 1 0 Sheet: Normal 0 L B +P 2 1 0 0 6350 150 6350 950 N +P 2 1 0 0 6350 950 8475 950 N +P 2 1 0 0 8475 350 8475 150 N +P 2 1 0 0 8475 350 8475 550 N +P 2 1 0 0 8475 550 8475 750 N +P 2 1 0 0 8475 550 10100 550 N +P 2 1 0 0 8475 750 8475 950 N +P 2 1 0 0 8475 750 10100 750 N +P 2 1 0 0 8475 950 10100 950 N +P 2 1 0 0 9700 150 9700 350 N +P 2 1 0 0 9700 350 8475 350 N +P 2 1 0 0 9700 350 10100 350 N +P 2 1 0 0 10100 150 10100 350 N +P 2 1 0 0 10100 350 10100 550 N +P 2 1 0 0 10100 550 10100 750 N +P 2 1 0 0 10100 750 10100 950 N +ENDDRAW +ENDDEF +# +# receive_v1_1-eagle-import:BAT60J +# +DEF receive_v1_1-eagle-import:BAT60J D 0 40 Y Y 1 L N +F0 "D" -90 75 59 H V L BNN +F1 "receive_v1_1-eagle-import:BAT60J" -90 -135 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -50 -50 50 0 N +P 2 1 0 0 -50 50 -50 -50 N +P 2 1 0 0 25 -40 25 -50 N +P 2 1 0 0 50 -50 25 -50 N +P 2 1 0 0 50 0 -50 50 N +P 2 1 0 0 50 0 50 -50 N +P 2 1 0 0 50 50 50 0 N +P 2 1 0 0 75 50 50 50 N +P 2 1 0 0 75 50 75 40 N +X A A -100 0 100 R 0 0 1 0 P +X C C 100 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# receive_v1_1-eagle-import:C-EUC0805 +# +DEF receive_v1_1-eagle-import:C-EUC0805 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "receive_v1_1-eagle-import:C-EUC0805" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# receive_v1_1-eagle-import:C-EUC1206 +# +DEF receive_v1_1-eagle-import:C-EUC1206 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "receive_v1_1-eagle-import:C-EUC1206" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# receive_v1_1-eagle-import:C-EUC1210 +# +DEF receive_v1_1-eagle-import:C-EUC1210 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "receive_v1_1-eagle-import:C-EUC1210" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# receive_v1_1-eagle-import:ESP8266-03 +# +DEF ~receive_v1_1-eagle-import:ESP8266-03 ~ 0 40 Y Y 1 L N +F0 "" 0 0 50 H I C CNN +F1 "receive_v1_1-eagle-import:ESP8266-03" 0 0 50 H I C CNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +T 0 300 1300 42 0 1 0 ESP8266 Normal 0 L B +P 2 1 0 0 200 -100 1100 -100 N +P 2 1 0 0 200 1400 200 -100 N +P 2 1 0 0 1100 -100 1100 1400 N +P 2 1 0 0 1100 1400 200 1400 N +X ANT ANT 1300 1200 200 L 50 50 1 0 U +X CH_PD CH_PD 1300 1000 200 L 50 50 1 0 U +X GND GND 1300 0 200 L 50 50 1 0 U +X GPIO0 GPIO0 0 0 200 R 50 50 1 0 U +X GPIO12 GPIO12 0 800 200 R 50 50 1 0 U +X GPIO13 GPIO13 0 600 200 R 50 50 1 0 U +X GPIO14 GPIO14 0 1000 200 R 50 50 1 0 U +X GPIO15 GPIO15 0 400 200 R 50 50 1 0 U +X GPIO18 GPIO18 1300 800 200 L 50 50 1 0 U +X GPIO2 GPIO2 0 200 200 R 50 50 1 0 U +X NC NC 1300 200 200 L 50 50 1 0 U +X URXD URXD 1300 600 200 L 50 50 1 0 U +X UTXD UTXD 1300 400 200 L 50 50 1 0 U +X VCC VCC 0 1200 200 R 50 50 1 0 U +ENDDRAW +ENDDEF +# +# receive_v1_1-eagle-import:GND +# +DEF receive_v1_1-eagle-import:GND #GND 0 40 Y Y 1 L P +F0 "#GND" 0 0 50 H I C CNN +F1 "receive_v1_1-eagle-import:GND" -100 -100 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -75 0 75 0 N +X GND 1 0 100 100 D 0 0 1 0 W +ENDDRAW +ENDDEF +# +# receive_v1_1-eagle-import:LEDCHIP-LED0805 +# +DEF receive_v1_1-eagle-import:LEDCHIP-LED0805 LED 0 40 Y Y 1 L N +F0 "LED" 140 -180 59 V V L BNN +F1 "receive_v1_1-eagle-import:LEDCHIP-LED0805" 225 -180 59 V V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -80 -30 -135 -85 N +P 2 1 0 0 -75 -75 -130 -130 N +P 2 1 0 0 0 -100 -50 -100 N +P 2 1 0 0 0 -100 -50 0 N +P 2 1 0 0 0 0 -50 0 N +P 2 1 0 0 0 0 0 -100 N +P 2 1 0 0 50 -100 0 -100 N +P 2 1 0 0 50 0 0 -100 N +P 2 1 0 0 50 0 0 0 N +P 3 1 0 0 -135 -85 -120 -50 -100 -70 F +P 3 1 0 0 -130 -130 -115 -95 -95 -115 F +X A A 0 100 100 D 0 0 1 0 P +X C C 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# receive_v1_1-eagle-import:MCP73831 +# +DEF receive_v1_1-eagle-import:MCP73831 IC 0 40 Y Y 1 L N +F0 "IC" -200 300 59 H V L BNN +F1 "receive_v1_1-eagle-import:MCP73831" -200 -400 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -200 -300 -200 300 N +P 2 1 0 0 -200 300 200 300 N +P 2 1 0 0 200 -300 -200 -300 N +P 2 1 0 0 200 300 200 -300 N +X STAT 1 -400 -100 200 R 50 50 1 0 U +X VSS 2 400 -200 200 L 50 50 1 0 U +X VBAT 3 400 200 200 L 50 50 1 0 U +X VDD 4 -400 100 200 R 50 50 1 0 U +X PROG 5 400 0 200 L 50 50 1 0 U +ENDDRAW +ENDDEF +# +# receive_v1_1-eagle-import:R-EU_R0805 +# +DEF receive_v1_1-eagle-import:R-EU_R0805 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "receive_v1_1-eagle-import:R-EU_R0805" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# receive_v1_1-eagle-import:R-EU_R1206 +# +DEF receive_v1_1-eagle-import:R-EU_R1206 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "receive_v1_1-eagle-import:R-EU_R1206" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# receive_v1_1-eagle-import:SCHOTTKY-DIODESMD +# +DEF receive_v1_1-eagle-import:SCHOTTKY-DIODESMD D 0 40 Y Y 1 L N +F0 "D" -90 75 59 H V L BNN +F1 "receive_v1_1-eagle-import:SCHOTTKY-DIODESMD" -90 -135 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -50 -50 50 0 N +P 2 1 0 0 -50 50 -50 -50 N +P 2 1 0 0 25 -40 25 -50 N +P 2 1 0 0 50 -50 25 -50 N +P 2 1 0 0 50 0 -50 50 N +P 2 1 0 0 50 0 50 -50 N +P 2 1 0 0 50 50 50 0 N +P 2 1 0 0 75 50 50 50 N +P 2 1 0 0 75 50 75 40 N +X A A -100 0 100 R 0 0 1 0 P +X C C 100 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# receive_v1_1-eagle-import:SUPPRESSOR-SMBJ +# +DEF receive_v1_1-eagle-import:SUPPRESSOR-SMBJ D 0 40 Y Y 1 L N +F0 "D" 110 75 59 H V L BNN +F1 "receive_v1_1-eagle-import:SUPPRESSOR-SMBJ" 110 -35 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -50 -50 50 -50 N +P 2 1 0 0 -50 50 -50 25 N +P 2 1 0 0 0 50 -50 -50 N +P 2 1 0 0 0 50 -50 50 N +P 2 1 0 0 50 -50 0 50 N +P 2 1 0 0 50 50 0 50 N +P 2 1 0 0 50 75 50 50 N +X A A 0 -100 100 U 0 0 1 0 P +X C C 0 100 100 D 0 0 1 0 P +ENDDRAW +ENDDEF +# +# receive_v1_1-eagle-import:VCC +# +DEF receive_v1_1-eagle-import:VCC #P+ 0 40 Y Y 1 L P +F0 "#P+" 0 0 50 H I C CNN +F1 "receive_v1_1-eagle-import:VCC" -100 -100 59 V V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 0 0 -50 -75 N +P 2 1 0 0 50 -75 0 0 N +X VCC 1 0 -100 100 U 0 0 1 0 W +ENDDRAW +ENDDEF +# +# receive_v1_1-eagle-import:WS2812 +# +DEF ~receive_v1_1-eagle-import:WS2812 IC 0 40 Y Y 2 L N +F0 "IC" -100 -60 59 H V L BNN +F1 "receive_v1_1-eagle-import:WS2812" 0 0 50 H I C CNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -200 -200 -200 100 N +P 2 1 0 0 -200 100 200 100 N +P 2 1 0 0 200 -200 -200 -200 N +P 2 1 0 0 200 100 200 -200 N +X DOUT 1 300 -100 100 L 50 50 1 0 O +X DIN 2 -300 0 100 R 50 50 1 0 I +X VCNTL 3 100 500 100 D 50 50 2 0 W +X VLED 5 0 600 100 D 50 50 2 0 W +X GND 6 0 -500 100 U 50 50 2 0 W +ENDDRAW +ENDDEF +# +#End Library diff --git a/Glas/receive_v1_1-eagle-import.dcm b/Glas/receive_v1_1-eagle-import.dcm new file mode 100644 index 0000000..5f3ed79 --- /dev/null +++ b/Glas/receive_v1_1-eagle-import.dcm @@ -0,0 +1,3 @@ +EESchema-DOCLIB Version 2.0 +# +#End Doc Library diff --git a/Glas/receive_v1_1-eagle-import.lib b/Glas/receive_v1_1-eagle-import.lib new file mode 100644 index 0000000..6c7d35e --- /dev/null +++ b/Glas/receive_v1_1-eagle-import.lib @@ -0,0 +1,4240 @@ +EESchema-LIBRARY Version 2.4 +#encoding utf-8 +# +# 00917?0026 +# +DEF 00917?0026 X 0 40 Y Y 1 L N +F0 "X" 0 100 59 H V L BNN +F1 "00917?0026" 0 -250 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +A 42 -130 21 291 1495 1 0 10 N 60 -120 25 -120 +A 42 -69 20 -1471 -314 1 0 10 N 25 -80 60 -80 +A 42 -30 21 291 1495 1 0 10 N 60 -20 25 -20 +A 42 30 20 -1495 -291 1 0 10 N 25 20 60 20 +P 2 1 0 0 0 -120 25 -120 N +P 2 1 0 0 0 -80 0 -120 N +P 2 1 0 0 0 -20 25 -20 N +P 2 1 0 0 0 20 0 -20 N +P 2 1 0 0 25 -80 0 -80 N +P 2 1 0 0 25 20 0 20 N +X 1 1 -100 0 100 R 0 50 1 0 P +X 2 2 -100 -100 100 R 0 50 1 0 P +ENDDRAW +ENDDEF +# +# 00917?0027 +# +DEF 00917?0027 X 0 40 Y Y 1 L N +F0 "X" 0 100 59 H V L BNN +F1 "00917?0027" 0 -250 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +A 42 -130 21 291 1495 1 0 10 N 60 -120 25 -120 +A 42 -69 20 -1471 -314 1 0 10 N 25 -80 60 -80 +A 42 -30 21 291 1495 1 0 10 N 60 -20 25 -20 +A 42 30 20 -1495 -291 1 0 10 N 25 20 60 20 +P 2 1 0 0 0 -120 25 -120 N +P 2 1 0 0 0 -80 0 -120 N +P 2 1 0 0 0 -20 25 -20 N +P 2 1 0 0 0 20 0 -20 N +P 2 1 0 0 25 -80 0 -80 N +P 2 1 0 0 25 20 0 20 N +X 1 1 -100 0 100 R 0 50 1 0 P +X 2 2 -100 -100 100 R 0 50 1 0 P +ENDDRAW +ENDDEF +# +# A4L-LOC +# +DEF ~A4L-LOC #FRAME 0 40 Y Y 1 L N +F0 "#FRAME" 0 0 50 H I C CNN +F1 "A4L-LOC" 0 0 50 H I C CNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +T 0 8550 600 85 0 1 0 >DRAWING_NAME Normal 0 L B +T 0 8550 400 76 0 1 0 >LAST_DATE_TIME Normal 0 L B +T 0 9075 200 85 0 1 0 >SHEET Normal 0 L B +T 0 8540 195 85 0 1 0 Sheet: Normal 0 L B +P 2 1 0 0 6350 150 6350 950 N +P 2 1 0 0 6350 950 8475 950 N +P 2 1 0 0 8475 350 8475 150 N +P 2 1 0 0 8475 350 8475 550 N +P 2 1 0 0 8475 550 8475 750 N +P 2 1 0 0 8475 550 10100 550 N +P 2 1 0 0 8475 750 8475 950 N +P 2 1 0 0 8475 750 10100 750 N +P 2 1 0 0 8475 950 10100 950 N +P 2 1 0 0 9700 150 9700 350 N +P 2 1 0 0 9700 350 8475 350 N +P 2 1 0 0 9700 350 10100 350 N +P 2 1 0 0 10100 150 10100 350 N +P 2 1 0 0 10100 350 10100 550 N +P 2 1 0 0 10100 550 10100 750 N +P 2 1 0 0 10100 750 10100 950 N +ENDDRAW +ENDDEF +# +# BAT60J +# +DEF BAT60J D 0 40 Y Y 1 L N +F0 "D" -90 75 59 H V L BNN +F1 "BAT60J" -90 -135 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -50 -50 50 0 N +P 2 1 0 0 -50 50 -50 -50 N +P 2 1 0 0 25 -40 25 -50 N +P 2 1 0 0 50 -50 25 -50 N +P 2 1 0 0 50 0 -50 50 N +P 2 1 0 0 50 0 50 -50 N +P 2 1 0 0 50 50 50 0 N +P 2 1 0 0 75 50 50 50 N +P 2 1 0 0 75 50 75 40 N +X A A -100 0 100 R 0 0 1 0 P +X C C 100 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EU01005 +# +DEF C-EU01005 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EU01005" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EU025-024X044 +# +DEF C-EU025-024X044 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EU025-024X044" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EU025-025X050 +# +DEF C-EU025-025X050 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EU025-025X050" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EU025-030X050 +# +DEF C-EU025-030X050 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EU025-030X050" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EU025-040X050 +# +DEF C-EU025-040X050 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EU025-040X050" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EU025-050X050 +# +DEF C-EU025-050X050 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EU025-050X050" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EU025-060X050 +# +DEF C-EU025-060X050 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EU025-060X050" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EU025_050-025X075 +# +DEF C-EU025_050-025X075 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EU025_050-025X075" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EU025_050-035X075 +# +DEF C-EU025_050-035X075 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EU025_050-035X075" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EU025_050-045X075 +# +DEF C-EU025_050-045X075 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EU025_050-045X075" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EU025_050-055X075 +# +DEF C-EU025_050-055X075 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EU025_050-055X075" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EU050-024X044 +# +DEF C-EU050-024X044 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EU050-024X044" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EU050-025X075 +# +DEF C-EU050-025X075 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EU050-025X075" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EU050-030X075 +# +DEF C-EU050-030X075 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EU050-030X075" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EU050-035X075 +# +DEF C-EU050-035X075 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EU050-035X075" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EU050-045X075 +# +DEF C-EU050-045X075 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EU050-045X075" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EU050-050X075 +# +DEF C-EU050-050X075 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EU050-050X075" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EU050-055X075 +# +DEF C-EU050-055X075 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EU050-055X075" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EU050-075X075 +# +DEF C-EU050-075X075 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EU050-075X075" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EU050H075X075 +# +DEF C-EU050H075X075 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EU050H075X075" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EU075-032X103 +# +DEF C-EU075-032X103 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EU075-032X103" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EU075-042X103 +# +DEF C-EU075-042X103 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EU075-042X103" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EU075-052X106 +# +DEF C-EU075-052X106 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EU075-052X106" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EU075-063X106 +# +DEF C-EU075-063X106 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EU075-063X106" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EU102-043X133 +# +DEF C-EU102-043X133 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EU102-043X133" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EU102-054X133 +# +DEF C-EU102-054X133 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EU102-054X133" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EU102-064X133 +# +DEF C-EU102-064X133 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EU102-064X133" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EU102_152-062X184 +# +DEF C-EU102_152-062X184 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EU102_152-062X184" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EU150-054X183 +# +DEF C-EU150-054X183 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EU150-054X183" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EU150-064X183 +# +DEF C-EU150-064X183 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EU150-064X183" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EU150-072X183 +# +DEF C-EU150-072X183 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EU150-072X183" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EU150-084X183 +# +DEF C-EU150-084X183 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EU150-084X183" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EU150-091X182 +# +DEF C-EU150-091X182 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EU150-091X182" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EU225-062X268 +# +DEF C-EU225-062X268 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EU225-062X268" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EU225-074X268 +# +DEF C-EU225-074X268 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EU225-074X268" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EU225-087X268 +# +DEF C-EU225-087X268 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EU225-087X268" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EU225-108X268 +# +DEF C-EU225-108X268 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EU225-108X268" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EU225-113X268 +# +DEF C-EU225-113X268 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EU225-113X268" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EU275-093X316 +# +DEF C-EU275-093X316 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EU275-093X316" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EU275-113X316 +# +DEF C-EU275-113X316 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EU275-113X316" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EU275-134X316 +# +DEF C-EU275-134X316 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EU275-134X316" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EU275-154X316 +# +DEF C-EU275-154X316 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EU275-154X316" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EU275-173X316 +# +DEF C-EU275-173X316 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EU275-173X316" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EU275-205X316 +# +DEF C-EU275-205X316 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EU275-205X316" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EU325-137X374 +# +DEF C-EU325-137X374 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EU325-137X374" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EU325-162X374 +# +DEF C-EU325-162X374 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EU325-162X374" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EU325-182X374 +# +DEF C-EU325-182X374 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EU325-182X374" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EU375-155X418 +# +DEF C-EU375-155X418 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EU375-155X418" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EU375-192X418 +# +DEF C-EU375-192X418 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EU375-192X418" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EU375-203X418 +# +DEF C-EU375-203X418 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EU375-203X418" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EUC0201 +# +DEF C-EUC0201 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EUC0201" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EUC025_050-024X070 +# +DEF C-EUC025_050-024X070 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EUC025_050-024X070" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EUC0402 +# +DEF C-EUC0402 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EUC0402" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EUC0402K +# +DEF C-EUC0402K C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EUC0402K" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EUC0504 +# +DEF C-EUC0504 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EUC0504" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EUC0603 +# +DEF C-EUC0603 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EUC0603" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EUC0603K +# +DEF C-EUC0603K C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EUC0603K" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EUC0805 +# +DEF C-EUC0805 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EUC0805" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EUC0805K +# +DEF C-EUC0805K C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EUC0805K" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EUC1206 +# +DEF C-EUC1206 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EUC1206" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EUC1206K +# +DEF C-EUC1206K C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EUC1206K" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EUC1210 +# +DEF C-EUC1210 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EUC1210" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EUC1210K +# +DEF C-EUC1210K C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EUC1210K" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EUC1310 +# +DEF C-EUC1310 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EUC1310" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EUC1608 +# +DEF C-EUC1608 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EUC1608" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EUC1808 +# +DEF C-EUC1808 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EUC1808" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EUC1812 +# +DEF C-EUC1812 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EUC1812" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EUC1812K +# +DEF C-EUC1812K C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EUC1812K" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EUC1825 +# +DEF C-EUC1825 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EUC1825" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EUC1825K +# +DEF C-EUC1825K C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EUC1825K" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EUC2012 +# +DEF C-EUC2012 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EUC2012" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EUC2220K +# +DEF C-EUC2220K C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EUC2220K" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EUC2225K +# +DEF C-EUC2225K C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EUC2225K" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EUC3216 +# +DEF C-EUC3216 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EUC3216" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EUC3225 +# +DEF C-EUC3225 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EUC3225" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EUC3640 +# +DEF C-EUC3640 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EUC3640" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EUC4532 +# +DEF C-EUC4532 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EUC4532" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EUC4564 +# +DEF C-EUC4564 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EUC4564" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# C-EUHPC0201 +# +DEF C-EUHPC0201 C 0 40 Y Y 1 L N +F0 "C" 60 15 59 H V L BNN +F1 "C-EUHPC0201" 60 -185 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +S -80 -80 80 -60 1 0 0 F +S -80 -40 80 -20 1 0 0 F +P 2 1 0 0 0 -100 0 -80 N +P 2 1 0 0 0 0 0 -20 N +X 1 1 0 100 100 D 0 0 1 0 P +X 2 2 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# ESP8266-03 +# +DEF ~ESP8266-03 ~ 0 40 Y Y 1 L N +F0 "" 0 0 50 H I C CNN +F1 "ESP8266-03" 0 0 50 H I C CNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +T 0 300 1300 42 0 1 0 ESP8266 Normal 0 L B +P 2 1 0 0 200 -100 1100 -100 N +P 2 1 0 0 200 1400 200 -100 N +P 2 1 0 0 1100 -100 1100 1400 N +P 2 1 0 0 1100 1400 200 1400 N +X ANT ANT 1300 1200 200 L 50 50 1 0 U +X CH_PD CH_PD 1300 1000 200 L 50 50 1 0 U +X GND GND 1300 0 200 L 50 50 1 0 U +X GPIO0 GPIO0 0 0 200 R 50 50 1 0 U +X GPIO12 GPIO12 0 800 200 R 50 50 1 0 U +X GPIO13 GPIO13 0 600 200 R 50 50 1 0 U +X GPIO14 GPIO14 0 1000 200 R 50 50 1 0 U +X GPIO15 GPIO15 0 400 200 R 50 50 1 0 U +X GPIO18 GPIO18 1300 800 200 L 50 50 1 0 U +X GPIO2 GPIO2 0 200 200 R 50 50 1 0 U +X NC NC 1300 200 200 L 50 50 1 0 U +X URXD URXD 1300 600 200 L 50 50 1 0 U +X UTXD UTXD 1300 400 200 L 50 50 1 0 U +X VCC VCC 0 1200 200 R 50 50 1 0 U +ENDDRAW +ENDDEF +# +# GND +# +DEF GND #GND 0 40 Y Y 1 L P +F0 "#GND" 0 0 50 H I C CNN +F1 "GND" -100 -100 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -75 0 75 0 N +X GND 1 0 100 100 D 0 0 1 0 W +ENDDRAW +ENDDEF +# +# LED +# +DEF LED LED 0 40 Y Y 1 L N +F0 "LED" 140 -180 59 V V L BNN +F1 "LED" 225 -180 59 V V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -80 -30 -135 -85 N +P 2 1 0 0 -75 -75 -130 -130 N +P 2 1 0 0 0 -100 -50 -100 N +P 2 1 0 0 0 -100 -50 0 N +P 2 1 0 0 0 0 -50 0 N +P 2 1 0 0 0 0 0 -100 N +P 2 1 0 0 50 -100 0 -100 N +P 2 1 0 0 50 0 0 -100 N +P 2 1 0 0 50 0 0 0 N +P 3 1 0 0 -135 -85 -120 -50 -100 -70 F +P 3 1 0 0 -130 -130 -115 -95 -95 -115 F +X A A@1 0 100 100 D 0 0 1 0 P +X C C@1 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# LED-LUMILED +# +DEF LED-LUMILED LED 0 40 Y Y 1 L N +F0 "LED" 140 -180 59 V V L BNN +F1 "LED-LUMILED" 225 -180 59 V V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -80 -30 -135 -85 N +P 2 1 0 0 -75 -75 -130 -130 N +P 2 1 0 0 0 -100 -50 -100 N +P 2 1 0 0 0 -100 -50 0 N +P 2 1 0 0 0 0 -50 0 N +P 2 1 0 0 0 0 0 -100 N +P 2 1 0 0 50 -100 0 -100 N +P 2 1 0 0 50 0 0 -100 N +P 2 1 0 0 50 0 0 0 N +P 3 1 0 0 -135 -85 -120 -50 -100 -70 F +P 3 1 0 0 -130 -130 -115 -95 -95 -115 F +X A 2+ 0 100 100 D 0 0 1 0 P +X C 4- 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# LED-LUMILED+ +# +DEF LED-LUMILED+ LED 0 40 Y Y 1 L N +F0 "LED" 140 -180 59 V V L BNN +F1 "LED-LUMILED+" 225 -180 59 V V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -80 -30 -135 -85 N +P 2 1 0 0 -75 -75 -130 -130 N +P 2 1 0 0 0 -100 -50 -100 N +P 2 1 0 0 0 -100 -50 0 N +P 2 1 0 0 0 0 -50 0 N +P 2 1 0 0 0 0 0 -100 N +P 2 1 0 0 50 -100 0 -100 N +P 2 1 0 0 50 0 0 -100 N +P 2 1 0 0 50 0 0 0 N +P 3 1 0 0 -135 -85 -120 -50 -100 -70 F +P 3 1 0 0 -130 -130 -115 -95 -95 -115 F +X A 2+ 0 100 100 D 0 0 1 0 P +X C 4- 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# LED10MM +# +DEF LED10MM LED 0 40 Y Y 1 L N +F0 "LED" 140 -180 59 V V L BNN +F1 "LED10MM" 225 -180 59 V V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -80 -30 -135 -85 N +P 2 1 0 0 -75 -75 -130 -130 N +P 2 1 0 0 0 -100 -50 -100 N +P 2 1 0 0 0 -100 -50 0 N +P 2 1 0 0 0 0 -50 0 N +P 2 1 0 0 0 0 0 -100 N +P 2 1 0 0 50 -100 0 -100 N +P 2 1 0 0 50 0 0 -100 N +P 2 1 0 0 50 0 0 0 N +P 3 1 0 0 -135 -85 -120 -50 -100 -70 F +P 3 1 0 0 -130 -130 -115 -95 -95 -115 F +X A A 0 100 100 D 0 0 1 0 P +X C K 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# LED3MM +# +DEF LED3MM LED 0 40 Y Y 1 L N +F0 "LED" 140 -180 59 V V L BNN +F1 "LED3MM" 225 -180 59 V V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -80 -30 -135 -85 N +P 2 1 0 0 -75 -75 -130 -130 N +P 2 1 0 0 0 -100 -50 -100 N +P 2 1 0 0 0 -100 -50 0 N +P 2 1 0 0 0 0 -50 0 N +P 2 1 0 0 0 0 0 -100 N +P 2 1 0 0 50 -100 0 -100 N +P 2 1 0 0 50 0 0 -100 N +P 2 1 0 0 50 0 0 0 N +P 3 1 0 0 -135 -85 -120 -50 -100 -70 F +P 3 1 0 0 -130 -130 -115 -95 -95 -115 F +X A A 0 100 100 D 0 0 1 0 P +X C K 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# LED5MM +# +DEF LED5MM LED 0 40 Y Y 1 L N +F0 "LED" 140 -180 59 V V L BNN +F1 "LED5MM" 225 -180 59 V V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -80 -30 -135 -85 N +P 2 1 0 0 -75 -75 -130 -130 N +P 2 1 0 0 0 -100 -50 -100 N +P 2 1 0 0 0 -100 -50 0 N +P 2 1 0 0 0 0 -50 0 N +P 2 1 0 0 0 0 0 -100 N +P 2 1 0 0 50 -100 0 -100 N +P 2 1 0 0 50 0 0 -100 N +P 2 1 0 0 50 0 0 0 N +P 3 1 0 0 -135 -85 -120 -50 -100 -70 F +P 3 1 0 0 -130 -130 -115 -95 -95 -115 F +X A A 0 100 100 D 0 0 1 0 P +X C K 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# LEDB152 +# +DEF LEDB152 LED 0 40 Y Y 1 L N +F0 "LED" 140 -180 59 V V L BNN +F1 "LEDB152" 225 -180 59 V V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -80 -30 -135 -85 N +P 2 1 0 0 -75 -75 -130 -130 N +P 2 1 0 0 0 -100 -50 -100 N +P 2 1 0 0 0 -100 -50 0 N +P 2 1 0 0 0 0 -50 0 N +P 2 1 0 0 0 0 0 -100 N +P 2 1 0 0 50 -100 0 -100 N +P 2 1 0 0 50 0 0 -100 N +P 2 1 0 0 50 0 0 0 N +P 3 1 0 0 -135 -85 -120 -50 -100 -70 F +P 3 1 0 0 -130 -130 -115 -95 -95 -115 F +X A A 0 100 100 D 0 0 1 0 P +X C K 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# LEDB153 +# +DEF LEDB153 LED 0 40 Y Y 1 L N +F0 "LED" 140 -180 59 V V L BNN +F1 "LEDB153" 225 -180 59 V V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -80 -30 -135 -85 N +P 2 1 0 0 -75 -75 -130 -130 N +P 2 1 0 0 0 -100 -50 -100 N +P 2 1 0 0 0 -100 -50 0 N +P 2 1 0 0 0 0 -50 0 N +P 2 1 0 0 0 0 0 -100 N +P 2 1 0 0 50 -100 0 -100 N +P 2 1 0 0 50 0 0 -100 N +P 2 1 0 0 50 0 0 0 N +P 3 1 0 0 -135 -85 -120 -50 -100 -70 F +P 3 1 0 0 -130 -130 -115 -95 -95 -115 F +X A A 0 100 100 D 0 0 1 0 P +X C K 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# LEDB155 +# +DEF LEDB155 LED 0 40 Y Y 1 L N +F0 "LED" 140 -180 59 V V L BNN +F1 "LEDB155" 225 -180 59 V V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -80 -30 -135 -85 N +P 2 1 0 0 -75 -75 -130 -130 N +P 2 1 0 0 0 -100 -50 -100 N +P 2 1 0 0 0 -100 -50 0 N +P 2 1 0 0 0 0 -50 0 N +P 2 1 0 0 0 0 0 -100 N +P 2 1 0 0 50 -100 0 -100 N +P 2 1 0 0 50 0 0 -100 N +P 2 1 0 0 50 0 0 0 N +P 3 1 0 0 -135 -85 -120 -50 -100 -70 F +P 3 1 0 0 -130 -130 -115 -95 -95 -115 F +X A A 0 100 100 D 0 0 1 0 P +X C K 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# LEDB156 +# +DEF LEDB156 LED 0 40 Y Y 1 L N +F0 "LED" 140 -180 59 V V L BNN +F1 "LEDB156" 225 -180 59 V V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -80 -30 -135 -85 N +P 2 1 0 0 -75 -75 -130 -130 N +P 2 1 0 0 0 -100 -50 -100 N +P 2 1 0 0 0 -100 -50 0 N +P 2 1 0 0 0 0 -50 0 N +P 2 1 0 0 0 0 0 -100 N +P 2 1 0 0 50 -100 0 -100 N +P 2 1 0 0 50 0 0 -100 N +P 2 1 0 0 50 0 0 0 N +P 3 1 0 0 -135 -85 -120 -50 -100 -70 F +P 3 1 0 0 -130 -130 -115 -95 -95 -115 F +X A A 0 100 100 D 0 0 1 0 P +X C K 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# LEDCHIP-LED0603 +# +DEF LEDCHIP-LED0603 LED 0 40 Y Y 1 L N +F0 "LED" 140 -180 59 V V L BNN +F1 "LEDCHIP-LED0603" 225 -180 59 V V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -80 -30 -135 -85 N +P 2 1 0 0 -75 -75 -130 -130 N +P 2 1 0 0 0 -100 -50 -100 N +P 2 1 0 0 0 -100 -50 0 N +P 2 1 0 0 0 0 -50 0 N +P 2 1 0 0 0 0 0 -100 N +P 2 1 0 0 50 -100 0 -100 N +P 2 1 0 0 50 0 0 -100 N +P 2 1 0 0 50 0 0 0 N +P 3 1 0 0 -135 -85 -120 -50 -100 -70 F +P 3 1 0 0 -130 -130 -115 -95 -95 -115 F +X A A 0 100 100 D 0 0 1 0 P +X C C 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# LEDCHIP-LED0805 +# +DEF LEDCHIP-LED0805 LED 0 40 Y Y 1 L N +F0 "LED" 140 -180 59 V V L BNN +F1 "LEDCHIP-LED0805" 225 -180 59 V V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -80 -30 -135 -85 N +P 2 1 0 0 -75 -75 -130 -130 N +P 2 1 0 0 0 -100 -50 -100 N +P 2 1 0 0 0 -100 -50 0 N +P 2 1 0 0 0 0 -50 0 N +P 2 1 0 0 0 0 0 -100 N +P 2 1 0 0 50 -100 0 -100 N +P 2 1 0 0 50 0 0 -100 N +P 2 1 0 0 50 0 0 0 N +P 3 1 0 0 -135 -85 -120 -50 -100 -70 F +P 3 1 0 0 -130 -130 -115 -95 -95 -115 F +X A A 0 100 100 D 0 0 1 0 P +X C C 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# LEDCHIPLED-0603-TTW +# +DEF LEDCHIPLED-0603-TTW LED 0 40 Y Y 1 L N +F0 "LED" 140 -180 59 V V L BNN +F1 "LEDCHIPLED-0603-TTW" 225 -180 59 V V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -80 -30 -135 -85 N +P 2 1 0 0 -75 -75 -130 -130 N +P 2 1 0 0 0 -100 -50 -100 N +P 2 1 0 0 0 -100 -50 0 N +P 2 1 0 0 0 0 -50 0 N +P 2 1 0 0 0 0 0 -100 N +P 2 1 0 0 50 -100 0 -100 N +P 2 1 0 0 50 0 0 -100 N +P 2 1 0 0 50 0 0 0 N +P 3 1 0 0 -135 -85 -120 -50 -100 -70 F +P 3 1 0 0 -130 -130 -115 -95 -95 -115 F +X A A@1 0 100 100 D 0 0 1 0 P +X C C@1 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# LEDCHIPLED_0603 +# +DEF LEDCHIPLED_0603 LED 0 40 Y Y 1 L N +F0 "LED" 140 -180 59 V V L BNN +F1 "LEDCHIPLED_0603" 225 -180 59 V V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -80 -30 -135 -85 N +P 2 1 0 0 -75 -75 -130 -130 N +P 2 1 0 0 0 -100 -50 -100 N +P 2 1 0 0 0 -100 -50 0 N +P 2 1 0 0 0 0 -50 0 N +P 2 1 0 0 0 0 0 -100 N +P 2 1 0 0 50 -100 0 -100 N +P 2 1 0 0 50 0 0 -100 N +P 2 1 0 0 50 0 0 0 N +P 3 1 0 0 -135 -85 -120 -50 -100 -70 F +P 3 1 0 0 -130 -130 -115 -95 -95 -115 F +X A A 0 100 100 D 0 0 1 0 P +X C C 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# LEDCHIPLED_0805 +# +DEF LEDCHIPLED_0805 LED 0 40 Y Y 1 L N +F0 "LED" 140 -180 59 V V L BNN +F1 "LEDCHIPLED_0805" 225 -180 59 V V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -80 -30 -135 -85 N +P 2 1 0 0 -75 -75 -130 -130 N +P 2 1 0 0 0 -100 -50 -100 N +P 2 1 0 0 0 -100 -50 0 N +P 2 1 0 0 0 0 -50 0 N +P 2 1 0 0 0 0 0 -100 N +P 2 1 0 0 50 -100 0 -100 N +P 2 1 0 0 50 0 0 -100 N +P 2 1 0 0 50 0 0 0 N +P 3 1 0 0 -135 -85 -120 -50 -100 -70 F +P 3 1 0 0 -130 -130 -115 -95 -95 -115 F +X A A 0 100 100 D 0 0 1 0 P +X C C 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# LEDCHIPLED_1206 +# +DEF LEDCHIPLED_1206 LED 0 40 Y Y 1 L N +F0 "LED" 140 -180 59 V V L BNN +F1 "LEDCHIPLED_1206" 225 -180 59 V V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -80 -30 -135 -85 N +P 2 1 0 0 -75 -75 -130 -130 N +P 2 1 0 0 0 -100 -50 -100 N +P 2 1 0 0 0 -100 -50 0 N +P 2 1 0 0 0 0 -50 0 N +P 2 1 0 0 0 0 0 -100 N +P 2 1 0 0 50 -100 0 -100 N +P 2 1 0 0 50 0 0 -100 N +P 2 1 0 0 50 0 0 0 N +P 3 1 0 0 -135 -85 -120 -50 -100 -70 F +P 3 1 0 0 -130 -130 -115 -95 -95 -115 F +X A A 0 100 100 D 0 0 1 0 P +X C C 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# LEDIRL80A +# +DEF LEDIRL80A LED 0 40 Y Y 1 L N +F0 "LED" 140 -180 59 V V L BNN +F1 "LEDIRL80A" 225 -180 59 V V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -80 -30 -135 -85 N +P 2 1 0 0 -75 -75 -130 -130 N +P 2 1 0 0 0 -100 -50 -100 N +P 2 1 0 0 0 -100 -50 0 N +P 2 1 0 0 0 0 -50 0 N +P 2 1 0 0 0 0 0 -100 N +P 2 1 0 0 50 -100 0 -100 N +P 2 1 0 0 50 0 0 -100 N +P 2 1 0 0 50 0 0 0 N +P 3 1 0 0 -135 -85 -120 -50 -100 -70 F +P 3 1 0 0 -130 -130 -115 -95 -95 -115 F +X A A 0 100 100 D 0 0 1 0 P +X C K 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# LEDKA-3528ASYC +# +DEF LEDKA-3528ASYC LED 0 40 Y Y 1 L N +F0 "LED" 140 -180 59 V V L BNN +F1 "LEDKA-3528ASYC" 225 -180 59 V V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -80 -30 -135 -85 N +P 2 1 0 0 -75 -75 -130 -130 N +P 2 1 0 0 0 -100 -50 -100 N +P 2 1 0 0 0 -100 -50 0 N +P 2 1 0 0 0 0 -50 0 N +P 2 1 0 0 0 0 0 -100 N +P 2 1 0 0 50 -100 0 -100 N +P 2 1 0 0 50 0 0 -100 N +P 2 1 0 0 50 0 0 0 N +P 3 1 0 0 -135 -85 -120 -50 -100 -70 F +P 3 1 0 0 -130 -130 -115 -95 -95 -115 F +X A A 0 100 100 D 0 0 1 0 P +X C C 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# LEDLD260 +# +DEF LEDLD260 LED 0 40 Y Y 1 L N +F0 "LED" 140 -180 59 V V L BNN +F1 "LEDLD260" 225 -180 59 V V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -80 -30 -135 -85 N +P 2 1 0 0 -75 -75 -130 -130 N +P 2 1 0 0 0 -100 -50 -100 N +P 2 1 0 0 0 -100 -50 0 N +P 2 1 0 0 0 0 -50 0 N +P 2 1 0 0 0 0 0 -100 N +P 2 1 0 0 50 -100 0 -100 N +P 2 1 0 0 50 0 0 -100 N +P 2 1 0 0 50 0 0 0 N +P 3 1 0 0 -135 -85 -120 -50 -100 -70 F +P 3 1 0 0 -130 -130 -115 -95 -95 -115 F +X A A 0 100 100 D 0 0 1 0 P +X C K 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# LEDLSU260 +# +DEF LEDLSU260 LED 0 40 Y Y 1 L N +F0 "LED" 140 -180 59 V V L BNN +F1 "LEDLSU260" 225 -180 59 V V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -80 -30 -135 -85 N +P 2 1 0 0 -75 -75 -130 -130 N +P 2 1 0 0 0 -100 -50 -100 N +P 2 1 0 0 0 -100 -50 0 N +P 2 1 0 0 0 0 -50 0 N +P 2 1 0 0 0 0 0 -100 N +P 2 1 0 0 50 -100 0 -100 N +P 2 1 0 0 50 0 0 -100 N +P 2 1 0 0 50 0 0 0 N +P 3 1 0 0 -135 -85 -120 -50 -100 -70 F +P 3 1 0 0 -130 -130 -115 -95 -95 -115 F +X A A 0 100 100 D 0 0 1 0 P +X C K 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# LEDLZR181 +# +DEF LEDLZR181 LED 0 40 Y Y 1 L N +F0 "LED" 140 -180 59 V V L BNN +F1 "LEDLZR181" 225 -180 59 V V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -80 -30 -135 -85 N +P 2 1 0 0 -75 -75 -130 -130 N +P 2 1 0 0 0 -100 -50 -100 N +P 2 1 0 0 0 -100 -50 0 N +P 2 1 0 0 0 0 -50 0 N +P 2 1 0 0 0 0 0 -100 N +P 2 1 0 0 50 -100 0 -100 N +P 2 1 0 0 50 0 0 -100 N +P 2 1 0 0 50 0 0 0 N +P 3 1 0 0 -135 -85 -120 -50 -100 -70 F +P 3 1 0 0 -130 -130 -115 -95 -95 -115 F +X A A 0 100 100 D 0 0 1 0 P +X C K 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# LEDMICRO-SIDELED +# +DEF LEDMICRO-SIDELED LED 0 40 Y Y 1 L N +F0 "LED" 140 -180 59 V V L BNN +F1 "LEDMICRO-SIDELED" 225 -180 59 V V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -80 -30 -135 -85 N +P 2 1 0 0 -75 -75 -130 -130 N +P 2 1 0 0 0 -100 -50 -100 N +P 2 1 0 0 0 -100 -50 0 N +P 2 1 0 0 0 0 -50 0 N +P 2 1 0 0 0 0 0 -100 N +P 2 1 0 0 50 -100 0 -100 N +P 2 1 0 0 50 0 0 -100 N +P 2 1 0 0 50 0 0 0 N +P 3 1 0 0 -135 -85 -120 -50 -100 -70 F +P 3 1 0 0 -130 -130 -115 -95 -95 -115 F +X A A 0 100 100 D 0 0 1 0 P +X C C 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# LEDMINI-TOP +# +DEF LEDMINI-TOP LED 0 40 Y Y 1 L N +F0 "LED" 140 -180 59 V V L BNN +F1 "LEDMINI-TOP" 225 -180 59 V V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -80 -30 -135 -85 N +P 2 1 0 0 -75 -75 -130 -130 N +P 2 1 0 0 0 -100 -50 -100 N +P 2 1 0 0 0 -100 -50 0 N +P 2 1 0 0 0 0 -50 0 N +P 2 1 0 0 0 0 0 -100 N +P 2 1 0 0 50 -100 0 -100 N +P 2 1 0 0 50 0 0 -100 N +P 2 1 0 0 50 0 0 0 N +P 3 1 0 0 -135 -85 -120 -50 -100 -70 F +P 3 1 0 0 -130 -130 -115 -95 -95 -115 F +X A A 0 100 100 D 0 0 1 0 P +X C C 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# LEDP-LCC-2 +# +DEF LEDP-LCC-2 LED 0 40 Y Y 1 L N +F0 "LED" 140 -180 59 V V L BNN +F1 "LEDP-LCC-2" 225 -180 59 V V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -80 -30 -135 -85 N +P 2 1 0 0 -75 -75 -130 -130 N +P 2 1 0 0 0 -100 -50 -100 N +P 2 1 0 0 0 -100 -50 0 N +P 2 1 0 0 0 0 -50 0 N +P 2 1 0 0 0 0 0 -100 N +P 2 1 0 0 50 -100 0 -100 N +P 2 1 0 0 50 0 0 -100 N +P 2 1 0 0 50 0 0 0 N +P 3 1 0 0 -135 -85 -120 -50 -100 -70 F +P 3 1 0 0 -130 -130 -115 -95 -95 -115 F +X A A 0 100 100 D 0 0 1 0 P +X C C 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# LEDP-LCC-2-BACK +# +DEF LEDP-LCC-2-BACK LED 0 40 Y Y 1 L N +F0 "LED" 140 -180 59 V V L BNN +F1 "LEDP-LCC-2-BACK" 225 -180 59 V V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -80 -30 -135 -85 N +P 2 1 0 0 -75 -75 -130 -130 N +P 2 1 0 0 0 -100 -50 -100 N +P 2 1 0 0 0 -100 -50 0 N +P 2 1 0 0 0 0 -50 0 N +P 2 1 0 0 0 0 0 -100 N +P 2 1 0 0 50 -100 0 -100 N +P 2 1 0 0 50 0 0 -100 N +P 2 1 0 0 50 0 0 0 N +P 3 1 0 0 -135 -85 -120 -50 -100 -70 F +P 3 1 0 0 -130 -130 -115 -95 -95 -115 F +X A A 0 100 100 D 0 0 1 0 P +X C C 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# LEDP-LCC-4 +# +DEF LEDP-LCC-4 LED 0 40 Y Y 1 L N +F0 "LED" 140 -180 59 V V L BNN +F1 "LEDP-LCC-4" 225 -180 59 V V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -80 -30 -135 -85 N +P 2 1 0 0 -75 -75 -130 -130 N +P 2 1 0 0 0 -100 -50 -100 N +P 2 1 0 0 0 -100 -50 0 N +P 2 1 0 0 0 0 -50 0 N +P 2 1 0 0 0 0 0 -100 N +P 2 1 0 0 50 -100 0 -100 N +P 2 1 0 0 50 0 0 -100 N +P 2 1 0 0 50 0 0 0 N +P 3 1 0 0 -135 -85 -120 -50 -100 -70 F +P 3 1 0 0 -130 -130 -115 -95 -95 -115 F +X A A 0 100 100 D 0 0 1 0 P +X C C@4 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# LEDSFH480 +# +DEF LEDSFH480 LED 0 40 Y Y 1 L N +F0 "LED" 140 -180 59 V V L BNN +F1 "LEDSFH480" 225 -180 59 V V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -80 -30 -135 -85 N +P 2 1 0 0 -75 -75 -130 -130 N +P 2 1 0 0 0 -100 -50 -100 N +P 2 1 0 0 0 -100 -50 0 N +P 2 1 0 0 0 0 -50 0 N +P 2 1 0 0 0 0 0 -100 N +P 2 1 0 0 50 -100 0 -100 N +P 2 1 0 0 50 0 0 -100 N +P 2 1 0 0 50 0 0 0 N +P 3 1 0 0 -135 -85 -120 -50 -100 -70 F +P 3 1 0 0 -130 -130 -115 -95 -95 -115 F +X A A 0 100 100 D 0 0 1 0 P +X C K 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# LEDSFH482 +# +DEF LEDSFH482 LED 0 40 Y Y 1 L N +F0 "LED" 140 -180 59 V V L BNN +F1 "LEDSFH482" 225 -180 59 V V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -80 -30 -135 -85 N +P 2 1 0 0 -75 -75 -130 -130 N +P 2 1 0 0 0 -100 -50 -100 N +P 2 1 0 0 0 -100 -50 0 N +P 2 1 0 0 0 0 -50 0 N +P 2 1 0 0 0 0 0 -100 N +P 2 1 0 0 50 -100 0 -100 N +P 2 1 0 0 50 0 0 -100 N +P 2 1 0 0 50 0 0 0 N +P 3 1 0 0 -135 -85 -120 -50 -100 -70 F +P 3 1 0 0 -130 -130 -115 -95 -95 -115 F +X A A 0 100 100 D 0 0 1 0 P +X C K 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# LEDSIDELED +# +DEF LEDSIDELED LED 0 40 Y Y 1 L N +F0 "LED" 140 -180 59 V V L BNN +F1 "LEDSIDELED" 225 -180 59 V V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -80 -30 -135 -85 N +P 2 1 0 0 -75 -75 -130 -130 N +P 2 1 0 0 0 -100 -50 -100 N +P 2 1 0 0 0 -100 -50 0 N +P 2 1 0 0 0 0 -50 0 N +P 2 1 0 0 0 0 0 -100 N +P 2 1 0 0 50 -100 0 -100 N +P 2 1 0 0 50 0 0 -100 N +P 2 1 0 0 50 0 0 0 N +P 3 1 0 0 -135 -85 -120 -50 -100 -70 F +P 3 1 0 0 -130 -130 -115 -95 -95 -115 F +X A A 0 100 100 D 0 0 1 0 P +X C C 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# LEDSMART-LED +# +DEF LEDSMART-LED LED 0 40 Y Y 1 L N +F0 "LED" 140 -180 59 V V L BNN +F1 "LEDSMART-LED" 225 -180 59 V V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -80 -30 -135 -85 N +P 2 1 0 0 -75 -75 -130 -130 N +P 2 1 0 0 0 -100 -50 -100 N +P 2 1 0 0 0 -100 -50 0 N +P 2 1 0 0 0 0 -50 0 N +P 2 1 0 0 0 0 0 -100 N +P 2 1 0 0 50 -100 0 -100 N +P 2 1 0 0 50 0 0 -100 N +P 2 1 0 0 50 0 0 0 N +P 3 1 0 0 -135 -85 -120 -50 -100 -70 F +P 3 1 0 0 -130 -130 -115 -95 -95 -115 F +X A A 0 100 100 D 0 0 1 0 P +X C B 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# LEDSML0603 +# +DEF LEDSML0603 LED 0 40 Y Y 1 L N +F0 "LED" 140 -180 59 V V L BNN +F1 "LEDSML0603" 225 -180 59 V V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -80 -30 -135 -85 N +P 2 1 0 0 -75 -75 -130 -130 N +P 2 1 0 0 0 -100 -50 -100 N +P 2 1 0 0 0 -100 -50 0 N +P 2 1 0 0 0 0 -50 0 N +P 2 1 0 0 0 0 0 -100 N +P 2 1 0 0 50 -100 0 -100 N +P 2 1 0 0 50 0 0 -100 N +P 2 1 0 0 50 0 0 0 N +P 3 1 0 0 -135 -85 -120 -50 -100 -70 F +P 3 1 0 0 -130 -130 -115 -95 -95 -115 F +X A A 0 100 100 D 0 0 1 0 P +X C C 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# LEDSML0805 +# +DEF LEDSML0805 LED 0 40 Y Y 1 L N +F0 "LED" 140 -180 59 V V L BNN +F1 "LEDSML0805" 225 -180 59 V V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -80 -30 -135 -85 N +P 2 1 0 0 -75 -75 -130 -130 N +P 2 1 0 0 0 -100 -50 -100 N +P 2 1 0 0 0 -100 -50 0 N +P 2 1 0 0 0 0 -50 0 N +P 2 1 0 0 0 0 0 -100 N +P 2 1 0 0 50 -100 0 -100 N +P 2 1 0 0 50 0 0 -100 N +P 2 1 0 0 50 0 0 0 N +P 3 1 0 0 -135 -85 -120 -50 -100 -70 F +P 3 1 0 0 -130 -130 -115 -95 -95 -115 F +X A A 0 100 100 D 0 0 1 0 P +X C C 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# LEDSML1206 +# +DEF LEDSML1206 LED 0 40 Y Y 1 L N +F0 "LED" 140 -180 59 V V L BNN +F1 "LEDSML1206" 225 -180 59 V V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -80 -30 -135 -85 N +P 2 1 0 0 -75 -75 -130 -130 N +P 2 1 0 0 0 -100 -50 -100 N +P 2 1 0 0 0 -100 -50 0 N +P 2 1 0 0 0 0 -50 0 N +P 2 1 0 0 0 0 0 -100 N +P 2 1 0 0 50 -100 0 -100 N +P 2 1 0 0 50 0 0 -100 N +P 2 1 0 0 50 0 0 0 N +P 3 1 0 0 -135 -85 -120 -50 -100 -70 F +P 3 1 0 0 -130 -130 -115 -95 -95 -115 F +X A A 0 100 100 D 0 0 1 0 P +X C C 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# LEDSMT1206 +# +DEF LEDSMT1206 LED 0 40 Y Y 1 L N +F0 "LED" 140 -180 59 V V L BNN +F1 "LEDSMT1206" 225 -180 59 V V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -80 -30 -135 -85 N +P 2 1 0 0 -75 -75 -130 -130 N +P 2 1 0 0 0 -100 -50 -100 N +P 2 1 0 0 0 -100 -50 0 N +P 2 1 0 0 0 0 -50 0 N +P 2 1 0 0 0 0 0 -100 N +P 2 1 0 0 50 -100 0 -100 N +P 2 1 0 0 50 0 0 -100 N +P 2 1 0 0 50 0 0 0 N +P 3 1 0 0 -135 -85 -120 -50 -100 -70 F +P 3 1 0 0 -130 -130 -115 -95 -95 -115 F +X A A 0 100 100 D 0 0 1 0 P +X C C 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# LEDSQR2X5 +# +DEF LEDSQR2X5 LED 0 40 Y Y 1 L N +F0 "LED" 140 -180 59 V V L BNN +F1 "LEDSQR2X5" 225 -180 59 V V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -80 -30 -135 -85 N +P 2 1 0 0 -75 -75 -130 -130 N +P 2 1 0 0 0 -100 -50 -100 N +P 2 1 0 0 0 -100 -50 0 N +P 2 1 0 0 0 0 -50 0 N +P 2 1 0 0 0 0 0 -100 N +P 2 1 0 0 50 -100 0 -100 N +P 2 1 0 0 50 0 0 -100 N +P 2 1 0 0 50 0 0 0 N +P 3 1 0 0 -135 -85 -120 -50 -100 -70 F +P 3 1 0 0 -130 -130 -115 -95 -95 -115 F +X A A 0 100 100 D 0 0 1 0 P +X C K 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# LEDSQR5.7X3.2 +# +DEF LEDSQR5.7X3.2 LED 0 40 Y Y 1 L N +F0 "LED" 140 -180 59 V V L BNN +F1 "LEDSQR5.7X3.2" 225 -180 59 V V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -80 -30 -135 -85 N +P 2 1 0 0 -75 -75 -130 -130 N +P 2 1 0 0 0 -100 -50 -100 N +P 2 1 0 0 0 -100 -50 0 N +P 2 1 0 0 0 0 -50 0 N +P 2 1 0 0 0 0 0 -100 N +P 2 1 0 0 50 -100 0 -100 N +P 2 1 0 0 50 0 0 -100 N +P 2 1 0 0 50 0 0 0 N +P 3 1 0 0 -135 -85 -120 -50 -100 -70 F +P 3 1 0 0 -130 -130 -115 -95 -95 -115 F +X A A 0 100 100 D 0 0 1 0 P +X C K 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# LEDTOPLED-SANTANA +# +DEF LEDTOPLED-SANTANA LED 0 40 Y Y 1 L N +F0 "LED" 140 -180 59 V V L BNN +F1 "LEDTOPLED-SANTANA" 225 -180 59 V V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -80 -30 -135 -85 N +P 2 1 0 0 -75 -75 -130 -130 N +P 2 1 0 0 0 -100 -50 -100 N +P 2 1 0 0 0 -100 -50 0 N +P 2 1 0 0 0 0 -50 0 N +P 2 1 0 0 0 0 0 -100 N +P 2 1 0 0 50 -100 0 -100 N +P 2 1 0 0 50 0 0 -100 N +P 2 1 0 0 50 0 0 0 N +P 3 1 0 0 -135 -85 -120 -50 -100 -70 F +P 3 1 0 0 -130 -130 -115 -95 -95 -115 F +X A A 0 100 100 D 0 0 1 0 P +X C C 0 -200 100 U 0 0 1 0 P +ENDDRAW +ENDDEF +# +# MA03-1 +# +DEF MA03-1 SV 0 40 Y Y 1 L N +F0 "SV" -50 230 59 H V L BNN +F1 "MA03-1" -50 -300 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -50 200 -50 -200 N +P 2 1 0 0 -50 200 150 200 N +P 2 1 0 0 50 -100 100 -100 N +P 2 1 0 0 50 0 100 0 N +P 2 1 0 0 50 100 100 100 N +P 2 1 0 0 150 -200 -50 -200 N +P 2 1 0 0 150 -200 150 200 N +X 1 1 300 -100 200 L 50 0 1 0 P +X 2 2 300 0 200 L 50 0 1 0 P +X 3 3 300 100 200 L 50 0 1 0 P +ENDDRAW +ENDDEF +# +# MCP73831 +# +DEF MCP73831 IC 0 40 Y Y 1 L N +F0 "IC" -200 300 59 H V L BNN +F1 "MCP73831" -200 -400 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -200 -300 -200 300 N +P 2 1 0 0 -200 300 200 300 N +P 2 1 0 0 200 -300 -200 -300 N +P 2 1 0 0 200 300 200 -300 N +X STAT 1 -400 -100 200 R 50 50 1 0 U +X VSS 2 400 -200 200 L 50 50 1 0 U +X VBAT 3 400 200 200 L 50 50 1 0 U +X VDD 4 -400 100 200 R 50 50 1 0 U +X PROG 5 400 0 200 L 50 50 1 0 U +ENDDRAW +ENDDEF +# +# R-EU_01005 +# +DEF R-EU_01005 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_01005" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_0204_2V +# +DEF R-EU_0204_2V R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_0204_2V" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_0204_5 +# +DEF R-EU_0204_5 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_0204_5" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_0204_7 +# +DEF R-EU_0204_7 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_0204_7" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_0207_10 +# +DEF R-EU_0207_10 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_0207_10" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_0207_12 +# +DEF R-EU_0207_12 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_0207_12" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_0207_15 +# +DEF R-EU_0207_15 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_0207_15" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_0207_2V +# +DEF R-EU_0207_2V R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_0207_2V" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_0207_5V +# +DEF R-EU_0207_5V R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_0207_5V" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_0207_7 +# +DEF R-EU_0207_7 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_0207_7" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_0309_10 +# +DEF R-EU_0309_10 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_0309_10" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_0309_12 +# +DEF R-EU_0309_12 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_0309_12" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_0309_V +# +DEF R-EU_0309_V R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_0309_V" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_0411_12 +# +DEF R-EU_0411_12 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_0411_12" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_0411_15 +# +DEF R-EU_0411_15 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_0411_15" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_0411_3V +# +DEF R-EU_0411_3V R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_0411_3V" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_0414_15 +# +DEF R-EU_0414_15 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_0414_15" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_0414_5V +# +DEF R-EU_0414_5V R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_0414_5V" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_0613_15 +# +DEF R-EU_0613_15 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_0613_15" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_0613_5V +# +DEF R-EU_0613_5V R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_0613_5V" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_0617_17 +# +DEF R-EU_0617_17 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_0617_17" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_0617_22 +# +DEF R-EU_0617_22 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_0617_22" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_0617_5V +# +DEF R-EU_0617_5V R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_0617_5V" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_0817_22 +# +DEF R-EU_0817_22 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_0817_22" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_0817_7V +# +DEF R-EU_0817_7V R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_0817_7V" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_0922V +# +DEF R-EU_0922V R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_0922V" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_0922_22 +# +DEF R-EU_0922_22 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_0922_22" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_1812X7R +# +DEF R-EU_1812X7R R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_1812X7R" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_M0805 +# +DEF R-EU_M0805 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_M0805" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_M1206 +# +DEF R-EU_M1206 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_M1206" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_M1406 +# +DEF R-EU_M1406 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_M1406" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_M2012 +# +DEF R-EU_M2012 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_M2012" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_M2309 +# +DEF R-EU_M2309 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_M2309" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_M3216 +# +DEF R-EU_M3216 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_M3216" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_M3516 +# +DEF R-EU_M3516 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_M3516" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_M5923 +# +DEF R-EU_M5923 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_M5923" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_MELF0102AX +# +DEF R-EU_MELF0102AX R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_MELF0102AX" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_MELF0102R +# +DEF R-EU_MELF0102R R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_MELF0102R" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_MELF0102W +# +DEF R-EU_MELF0102W R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_MELF0102W" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_MELF0204R +# +DEF R-EU_MELF0204R R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_MELF0204R" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_MELF0204W +# +DEF R-EU_MELF0204W R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_MELF0204W" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_MELF0207R +# +DEF R-EU_MELF0207R R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_MELF0207R" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_MELF0207W +# +DEF R-EU_MELF0207W R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_MELF0207W" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_PRL1632 +# +DEF R-EU_PRL1632 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_PRL1632" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_R0201 +# +DEF R-EU_R0201 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_R0201" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_R0402 +# +DEF R-EU_R0402 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_R0402" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_R0603 +# +DEF R-EU_R0603 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_R0603" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_R0805 +# +DEF R-EU_R0805 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_R0805" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_R0805W +# +DEF R-EU_R0805W R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_R0805W" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_R1206 +# +DEF R-EU_R1206 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_R1206" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_R1206W +# +DEF R-EU_R1206W R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_R1206W" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_R1210 +# +DEF R-EU_R1210 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_R1210" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_R1210W +# +DEF R-EU_R1210W R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_R1210W" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_R1218 +# +DEF R-EU_R1218 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_R1218" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_R2010 +# +DEF R-EU_R2010 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_R2010" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_R2010W +# +DEF R-EU_R2010W R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_R2010W" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_R2012 +# +DEF R-EU_R2012 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_R2012" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_R2012W +# +DEF R-EU_R2012W R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_R2012W" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_R2512 +# +DEF R-EU_R2512 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_R2512" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_R2512W +# +DEF R-EU_R2512W R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_R2512W" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_R3216 +# +DEF R-EU_R3216 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_R3216" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_R3216W +# +DEF R-EU_R3216W R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_R3216W" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_R3225 +# +DEF R-EU_R3225 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_R3225" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_R3225W +# +DEF R-EU_R3225W R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_R3225W" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_R4527 +# +DEF R-EU_R4527 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_R4527" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_R5025 +# +DEF R-EU_R5025 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_R5025" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_R5025W +# +DEF R-EU_R5025W R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_R5025W" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_R6332 +# +DEF R-EU_R6332 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_R6332" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_R6332W +# +DEF R-EU_R6332W R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_R6332W" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_RDH_15 +# +DEF R-EU_RDH_15 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_RDH_15" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_V234_12 +# +DEF R-EU_V234_12 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_V234_12" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_V235_17 +# +DEF R-EU_V235_17 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_V235_17" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_V526-0 +# +DEF R-EU_V526-0 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_V526-0" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_VMTA55 +# +DEF R-EU_VMTA55 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_VMTA55" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_VMTB60 +# +DEF R-EU_VMTB60 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_VMTB60" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_VTA52 +# +DEF R-EU_VTA52 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_VTA52" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_VTA53 +# +DEF R-EU_VTA53 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_VTA53" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_VTA54 +# +DEF R-EU_VTA54 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_VTA54" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_VTA55 +# +DEF R-EU_VTA55 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_VTA55" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_VTA56 +# +DEF R-EU_VTA56 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_VTA56" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_WSC0001 +# +DEF R-EU_WSC0001 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_WSC0001" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_WSC0002 +# +DEF R-EU_WSC0002 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_WSC0002" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_WSC01_2 +# +DEF R-EU_WSC01_2 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_WSC01_2" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_WSC2515 +# +DEF R-EU_WSC2515 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_WSC2515" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_WSC4527 +# +DEF R-EU_WSC4527 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_WSC4527" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# R-EU_WSC6927 +# +DEF R-EU_WSC6927 R 0 40 Y Y 1 L N +F0 "R" -150 59 59 H V L BNN +F1 "R-EU_WSC6927" -150 -130 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -100 -35 -100 35 N +P 2 1 0 0 -100 -35 100 -35 N +P 2 1 0 0 100 -35 100 35 N +P 2 1 0 0 100 35 -100 35 N +X 1 1 -200 0 100 R 0 0 1 0 P +X 2 2 200 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# SCHOTTKY-DIODEAG +# +DEF SCHOTTKY-DIODEAG D 0 40 Y Y 1 L N +F0 "D" -90 75 59 H V L BNN +F1 "SCHOTTKY-DIODEAG" -90 -135 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -50 -50 50 0 N +P 2 1 0 0 -50 50 -50 -50 N +P 2 1 0 0 25 -40 25 -50 N +P 2 1 0 0 50 -50 25 -50 N +P 2 1 0 0 50 0 -50 50 N +P 2 1 0 0 50 0 50 -50 N +P 2 1 0 0 50 50 50 0 N +P 2 1 0 0 75 50 50 50 N +P 2 1 0 0 75 50 75 40 N +X A A -100 0 100 R 0 0 1 0 P +X C C 100 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# SCHOTTKY-DIODEC4111-15 +# +DEF SCHOTTKY-DIODEC4111-15 D 0 40 Y Y 1 L N +F0 "D" -90 75 59 H V L BNN +F1 "SCHOTTKY-DIODEC4111-15" -90 -135 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -50 -50 50 0 N +P 2 1 0 0 -50 50 -50 -50 N +P 2 1 0 0 25 -40 25 -50 N +P 2 1 0 0 50 -50 25 -50 N +P 2 1 0 0 50 0 -50 50 N +P 2 1 0 0 50 0 50 -50 N +P 2 1 0 0 50 50 50 0 N +P 2 1 0 0 75 50 50 50 N +P 2 1 0 0 75 50 75 40 N +X A A -100 0 100 R 0 0 1 0 P +X C C 100 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# SCHOTTKY-DIODECB417-15 +# +DEF SCHOTTKY-DIODECB417-15 D 0 40 Y Y 1 L N +F0 "D" -90 75 59 H V L BNN +F1 "SCHOTTKY-DIODECB417-15" -90 -135 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -50 -50 50 0 N +P 2 1 0 0 -50 50 -50 -50 N +P 2 1 0 0 25 -40 25 -50 N +P 2 1 0 0 50 -50 25 -50 N +P 2 1 0 0 50 0 -50 50 N +P 2 1 0 0 50 0 50 -50 N +P 2 1 0 0 50 50 50 0 N +P 2 1 0 0 75 50 50 50 N +P 2 1 0 0 75 50 75 40 N +X A A -100 0 100 R 0 0 1 0 P +X C C 100 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# SCHOTTKY-DIODECB429-15 +# +DEF SCHOTTKY-DIODECB429-15 D 0 40 Y Y 1 L N +F0 "D" -90 75 59 H V L BNN +F1 "SCHOTTKY-DIODECB429-15" -90 -135 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -50 -50 50 0 N +P 2 1 0 0 -50 50 -50 -50 N +P 2 1 0 0 25 -40 25 -50 N +P 2 1 0 0 50 -50 25 -50 N +P 2 1 0 0 50 0 -50 50 N +P 2 1 0 0 50 0 50 -50 N +P 2 1 0 0 50 50 50 0 N +P 2 1 0 0 75 50 50 50 N +P 2 1 0 0 75 50 75 40 N +X A A -100 0 100 R 0 0 1 0 P +X C C 100 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# SCHOTTKY-DIODECB429-17 +# +DEF SCHOTTKY-DIODECB429-17 D 0 40 Y Y 1 L N +F0 "D" -90 75 59 H V L BNN +F1 "SCHOTTKY-DIODECB429-17" -90 -135 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -50 -50 50 0 N +P 2 1 0 0 -50 50 -50 -50 N +P 2 1 0 0 25 -40 25 -50 N +P 2 1 0 0 50 -50 25 -50 N +P 2 1 0 0 50 0 -50 50 N +P 2 1 0 0 50 0 50 -50 N +P 2 1 0 0 50 50 50 0 N +P 2 1 0 0 75 50 50 50 N +P 2 1 0 0 75 50 75 40 N +X A A -100 0 100 R 0 0 1 0 P +X C C 100 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# SCHOTTKY-DIODEDO13M +# +DEF SCHOTTKY-DIODEDO13M D 0 40 Y Y 1 L N +F0 "D" -90 75 59 H V L BNN +F1 "SCHOTTKY-DIODEDO13M" -90 -135 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -50 -50 50 0 N +P 2 1 0 0 -50 50 -50 -50 N +P 2 1 0 0 25 -40 25 -50 N +P 2 1 0 0 50 -50 25 -50 N +P 2 1 0 0 50 0 -50 50 N +P 2 1 0 0 50 0 50 -50 N +P 2 1 0 0 50 50 50 0 N +P 2 1 0 0 75 50 50 50 N +P 2 1 0 0 75 50 75 40 N +X A A -100 0 100 R 0 0 1 0 P +X C C 100 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# SCHOTTKY-DIODEDO201T15 +# +DEF SCHOTTKY-DIODEDO201T15 D 0 40 Y Y 1 L N +F0 "D" -90 75 59 H V L BNN +F1 "SCHOTTKY-DIODEDO201T15" -90 -135 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -50 -50 50 0 N +P 2 1 0 0 -50 50 -50 -50 N +P 2 1 0 0 25 -40 25 -50 N +P 2 1 0 0 50 -50 25 -50 N +P 2 1 0 0 50 0 -50 50 N +P 2 1 0 0 50 0 50 -50 N +P 2 1 0 0 50 50 50 0 N +P 2 1 0 0 75 50 50 50 N +P 2 1 0 0 75 50 75 40 N +X A A -100 0 100 R 0 0 1 0 P +X C C 100 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# SCHOTTKY-DIODEDO35-7 +# +DEF SCHOTTKY-DIODEDO35-7 D 0 40 Y Y 1 L N +F0 "D" -90 75 59 H V L BNN +F1 "SCHOTTKY-DIODEDO35-7" -90 -135 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -50 -50 50 0 N +P 2 1 0 0 -50 50 -50 -50 N +P 2 1 0 0 25 -40 25 -50 N +P 2 1 0 0 50 -50 25 -50 N +P 2 1 0 0 50 0 -50 50 N +P 2 1 0 0 50 0 50 -50 N +P 2 1 0 0 50 50 50 0 N +P 2 1 0 0 75 50 50 50 N +P 2 1 0 0 75 50 75 40 N +X A A -100 0 100 R 0 0 1 0 P +X C C 100 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# SCHOTTKY-DIODEF126Z12 +# +DEF SCHOTTKY-DIODEF126Z12 D 0 40 Y Y 1 L N +F0 "D" -90 75 59 H V L BNN +F1 "SCHOTTKY-DIODEF126Z12" -90 -135 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -50 -50 50 0 N +P 2 1 0 0 -50 50 -50 -50 N +P 2 1 0 0 25 -40 25 -50 N +P 2 1 0 0 50 -50 25 -50 N +P 2 1 0 0 50 0 -50 50 N +P 2 1 0 0 50 0 50 -50 N +P 2 1 0 0 50 50 50 0 N +P 2 1 0 0 75 50 50 50 N +P 2 1 0 0 75 50 75 40 N +X A A -100 0 100 R 0 0 1 0 P +X C C 100 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# SCHOTTKY-DIODEP6T15 +# +DEF SCHOTTKY-DIODEP6T15 D 0 40 Y Y 1 L N +F0 "D" -90 75 59 H V L BNN +F1 "SCHOTTKY-DIODEP6T15" -90 -135 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -50 -50 50 0 N +P 2 1 0 0 -50 50 -50 -50 N +P 2 1 0 0 25 -40 25 -50 N +P 2 1 0 0 50 -50 25 -50 N +P 2 1 0 0 50 0 -50 50 N +P 2 1 0 0 50 0 50 -50 N +P 2 1 0 0 50 50 50 0 N +P 2 1 0 0 75 50 50 50 N +P 2 1 0 0 75 50 75 40 N +X A A -100 0 100 R 0 0 1 0 P +X C C 100 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# SCHOTTKY-DIODESMC +# +DEF SCHOTTKY-DIODESMC D 0 40 Y Y 1 L N +F0 "D" -90 75 59 H V L BNN +F1 "SCHOTTKY-DIODESMC" -90 -135 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -50 -50 50 0 N +P 2 1 0 0 -50 50 -50 -50 N +P 2 1 0 0 25 -40 25 -50 N +P 2 1 0 0 50 -50 25 -50 N +P 2 1 0 0 50 0 -50 50 N +P 2 1 0 0 50 0 50 -50 N +P 2 1 0 0 50 50 50 0 N +P 2 1 0 0 75 50 50 50 N +P 2 1 0 0 75 50 75 40 N +X A A -100 0 100 R 0 0 1 0 P +X C C 100 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# SCHOTTKY-DIODESMD +# +DEF SCHOTTKY-DIODESMD D 0 40 Y Y 1 L N +F0 "D" -90 75 59 H V L BNN +F1 "SCHOTTKY-DIODESMD" -90 -135 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -50 -50 50 0 N +P 2 1 0 0 -50 50 -50 -50 N +P 2 1 0 0 25 -40 25 -50 N +P 2 1 0 0 50 -50 25 -50 N +P 2 1 0 0 50 0 -50 50 N +P 2 1 0 0 50 0 50 -50 N +P 2 1 0 0 50 50 50 0 N +P 2 1 0 0 75 50 50 50 N +P 2 1 0 0 75 50 75 40 N +X A A -100 0 100 R 0 0 1 0 P +X C C 100 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# SCHOTTKY-DIODETO92H +# +DEF SCHOTTKY-DIODETO92H D 0 40 Y Y 1 L N +F0 "D" -90 75 59 H V L BNN +F1 "SCHOTTKY-DIODETO92H" -90 -135 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -50 -50 50 0 N +P 2 1 0 0 -50 50 -50 -50 N +P 2 1 0 0 25 -40 25 -50 N +P 2 1 0 0 50 -50 25 -50 N +P 2 1 0 0 50 0 -50 50 N +P 2 1 0 0 50 0 50 -50 N +P 2 1 0 0 50 50 50 0 N +P 2 1 0 0 75 50 50 50 N +P 2 1 0 0 75 50 75 40 N +X A 1 -100 0 100 R 0 0 1 0 P +X C 2 100 0 100 L 0 0 1 0 P +ENDDRAW +ENDDEF +# +# SUPPRESSOR-SMBG +# +DEF SUPPRESSOR-SMBG D 0 40 Y Y 1 L N +F0 "D" 110 75 59 H V L BNN +F1 "SUPPRESSOR-SMBG" 110 -35 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -50 -50 50 -50 N +P 2 1 0 0 -50 50 -50 25 N +P 2 1 0 0 0 50 -50 -50 N +P 2 1 0 0 0 50 -50 50 N +P 2 1 0 0 50 -50 0 50 N +P 2 1 0 0 50 50 0 50 N +P 2 1 0 0 50 75 50 50 N +X A A 0 -100 100 U 0 0 1 0 P +X C C 0 100 100 D 0 0 1 0 P +ENDDRAW +ENDDEF +# +# SUPPRESSOR-SMBJ +# +DEF SUPPRESSOR-SMBJ D 0 40 Y Y 1 L N +F0 "D" 110 75 59 H V L BNN +F1 "SUPPRESSOR-SMBJ" 110 -35 59 H V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -50 -50 50 -50 N +P 2 1 0 0 -50 50 -50 25 N +P 2 1 0 0 0 50 -50 -50 N +P 2 1 0 0 0 50 -50 50 N +P 2 1 0 0 50 -50 0 50 N +P 2 1 0 0 50 50 0 50 N +P 2 1 0 0 50 75 50 50 N +X A A 0 -100 100 U 0 0 1 0 P +X C C 0 100 100 D 0 0 1 0 P +ENDDRAW +ENDDEF +# +# VCC +# +DEF VCC #P+ 0 40 Y Y 1 L P +F0 "#P+" 0 0 50 H I C CNN +F1 "VCC" -100 -100 59 V V L BNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 0 0 -50 -75 N +P 2 1 0 0 50 -75 0 0 N +X VCC 1 0 -100 100 U 0 0 1 0 W +ENDDRAW +ENDDEF +# +# WS2812 +# +DEF ~WS2812 IC 0 40 Y Y 2 L N +F0 "IC" -100 -60 59 H V L BNN +F1 "WS2812" 0 0 50 H I C CNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 1 0 0 -200 -200 -200 100 N +P 2 1 0 0 -200 100 200 100 N +P 2 1 0 0 200 -200 -200 -200 N +P 2 1 0 0 200 100 200 -200 N +X DOUT 1 300 -100 100 L 50 50 1 0 O +X DIN 2 -300 0 100 R 50 50 1 0 I +X VCNTL 3 100 500 100 D 50 50 2 0 W +X VLED 5 0 600 100 D 50 50 2 0 W +X GND 6 0 -500 100 U 50 50 2 0 W +ENDDRAW +ENDDEF +# +#End Library diff --git a/Glas/receive_v1_1.brd b/Glas/receive_v1_1.brd new file mode 100644 index 0000000..a24c552 --- /dev/null +++ b/Glas/receive_v1_1.brd @@ -0,0 +1,2203 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +SG +Cocktailglass + + + + +<b>Resistors, Capacitors, Inductors</b><p> +Based on the previous libraries: +<ul> +<li>r.lbr +<li>cap.lbr +<li>cap-fe.lbr +<li>captant.lbr +<li>polcap.lbr +<li>ipc-smd.lbr +</ul> +All SMD packages are defined according to the IPC specifications and CECC<p> +<author>Created by librarian@cadsoft.de</author><p> +<p> +for Electrolyt Capacitors see also :<p> +www.bccomponents.com <p> +www.panasonic.com<p> +www.kemet.com<p> +http://www.secc.co.jp/pdf/os_e/2004/e_os_all.pdf <b>(SANYO)</b> +<p> +for trimmer refence see : <u>www.electrospec-inc.com/cross_references/trimpotcrossref.asp</u><p> + +<table border=0 cellspacing=0 cellpadding=0 width="100%" cellpaddding=0> +<tr valign="top"> + +<! <td width="10">&nbsp;</td> +<td width="90%"> + +<b><font color="#0000FF" size="4">TRIM-POT CROSS REFERENCE</font></b> +<P> +<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=2> + <TR> + <TD COLSPAN=8> + <FONT SIZE=3 FACE=ARIAL><B>RECTANGULAR MULTI-TURN</B></FONT> + </TD> + </TR> + <TR> + <TD ALIGN=CENTER> + <B> + <FONT SIZE=3 FACE=ARIAL color="#FF0000">BOURNS</FONT> + </B> + </TD> + <TD ALIGN=CENTER> + <B> + <FONT SIZE=3 FACE=ARIAL color="#FF0000">BI&nbsp;TECH</FONT> + </B> + </TD> + <TD ALIGN=CENTER> + <B> + <FONT SIZE=3 FACE=ARIAL color="#FF0000">DALE-VISHAY</FONT> + </B> + </TD> + <TD ALIGN=CENTER> + <B> + <FONT SIZE=3 FACE=ARIAL color="#FF0000">PHILIPS/MEPCO</FONT> + </B> + </TD> + <TD ALIGN=CENTER> + <B> + <FONT SIZE=3 FACE=ARIAL color="#FF0000">MURATA</FONT> + </B> + </TD> + <TD ALIGN=CENTER> + <B> + <FONT SIZE=3 FACE=ARIAL color="#FF0000">PANASONIC</FONT> + </B> + </TD> + <TD ALIGN=CENTER> + <B> + <FONT SIZE=3 FACE=ARIAL color="#FF0000">SPECTROL</FONT> + </B> + </TD> + <TD ALIGN=CENTER> + <B> + <FONT SIZE=3 FACE=ARIAL color="#FF0000">MILSPEC</FONT> + </B> + </TD><TD>&nbsp;</TD> + </TR> + <TR> + <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3 > + 3005P<BR> + 3006P<BR> + 3006W<BR> + 3006Y<BR> + 3009P<BR> + 3009W<BR> + 3009Y<BR> + 3057J<BR> + 3057L<BR> + 3057P<BR> + 3057Y<BR> + 3059J<BR> + 3059L<BR> + 3059P<BR> + 3059Y<BR></FONT> + </TD> + <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> + -<BR> + 89P<BR> + 89W<BR> + 89X<BR> + 89PH<BR> + 76P<BR> + 89XH<BR> + 78SLT<BR> + 78L&nbsp;ALT<BR> + 56P&nbsp;ALT<BR> + 78P&nbsp;ALT<BR> + T8S<BR> + 78L<BR> + 56P<BR> + 78P<BR></FONT> + </TD> + <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> + -<BR> + T18/784<BR> + 783<BR> + 781<BR> + -<BR> + -<BR> + -<BR> + 2199<BR> + 1697/1897<BR> + 1680/1880<BR> + 2187<BR> + -<BR> + -<BR> + -<BR> + -<BR></FONT> + </TD> + <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> + -<BR> + 8035EKP/CT20/RJ-20P<BR> + -<BR> + RJ-20X<BR> + -<BR> + -<BR> + -<BR> + 1211L<BR> + 8012EKQ&nbsp;ALT<BR> + 8012EKR&nbsp;ALT<BR> + 1211P<BR> + 8012EKJ<BR> + 8012EKL<BR> + 8012EKQ<BR> + 8012EKR<BR></FONT> + </TD> + <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> + -<BR> + 2101P<BR> + 2101W<BR> + 2101Y<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + 2102L<BR> + 2102S<BR> + 2102Y<BR></FONT> + </TD> + <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> + -<BR> + EVMCOG<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR></FONT> + </TD> + <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> + -<BR> + 43P<BR> + 43W<BR> + 43Y<BR> + -<BR> + -<BR> + -<BR> + -<BR> + 40L<BR> + 40P<BR> + 40Y<BR> + 70Y-T602<BR> + 70L<BR> + 70P<BR> + 70Y<BR></FONT> + </TD> + <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + RT/RTR12<BR> + RT/RTR12<BR> + RT/RTR12<BR> + -<BR> + RJ/RJR12<BR> + RJ/RJR12<BR> + RJ/RJR12<BR></FONT> + </TD> + </TR> + <TR> + <TD COLSPAN=8>&nbsp; + </TD> + </TR> + <TR> + <TD COLSPAN=8> + <FONT SIZE=4 FACE=ARIAL><B>SQUARE MULTI-TURN</B></FONT> + </TD> + </TR> + <TR> + <TD ALIGN=CENTER> + <FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT> + </TD> + <TD ALIGN=CENTER> + <FONT SIZE=3 FACE=ARIAL><B>BI&nbsp;TECH</B></FONT> + </TD> + <TD ALIGN=CENTER> + <FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT> + </TD> + <TD ALIGN=CENTER> + <FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT> + </TD> + <TD ALIGN=CENTER> + <FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT> + </TD> + <TD ALIGN=CENTER> + <FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT> + </TD> + <TD ALIGN=CENTER> + <FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT> + </TD> + <TD ALIGN=CENTER> + <FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT> + </TD> + </TR> + <TR> + <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> + 3250L<BR> + 3250P<BR> + 3250W<BR> + 3250X<BR> + 3252P<BR> + 3252W<BR> + 3252X<BR> + 3260P<BR> + 3260W<BR> + 3260X<BR> + 3262P<BR> + 3262W<BR> + 3262X<BR> + 3266P<BR> + 3266W<BR> + 3266X<BR> + 3290H<BR> + 3290P<BR> + 3290W<BR> + 3292P<BR> + 3292W<BR> + 3292X<BR> + 3296P<BR> + 3296W<BR> + 3296X<BR> + 3296Y<BR> + 3296Z<BR> + 3299P<BR> + 3299W<BR> + 3299X<BR> + 3299Y<BR> + 3299Z<BR></FONT> + </TD> + <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> + -<BR> + 66P&nbsp;ALT<BR> + 66W&nbsp;ALT<BR> + 66X&nbsp;ALT<BR> + 66P&nbsp;ALT<BR> + 66W&nbsp;ALT<BR> + 66X&nbsp;ALT<BR> + -<BR> + 64W&nbsp;ALT<BR> + -<BR> + 64P&nbsp;ALT<BR> + 64W&nbsp;ALT<BR> + 64X&nbsp;ALT<BR> + 64P<BR> + 64W<BR> + 64X<BR> + 66X&nbsp;ALT<BR> + 66P&nbsp;ALT<BR> + 66W&nbsp;ALT<BR> + 66P<BR> + 66W<BR> + 66X<BR> + 67P<BR> + 67W<BR> + 67X<BR> + 67Y<BR> + 67Z<BR> + 68P<BR> + 68W<BR> + 68X<BR> + 67Y&nbsp;ALT<BR> + 67Z&nbsp;ALT<BR></FONT> + </TD> + <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> + 5050<BR> + 5091<BR> + 5080<BR> + 5087<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + T63YB<BR> + T63XB<BR> + -<BR> + -<BR> + -<BR> + 5887<BR> + 5891<BR> + 5880<BR> + -<BR> + -<BR> + -<BR> + T93Z<BR> + T93YA<BR> + T93XA<BR> + T93YB<BR> + T93XB<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR></FONT> + </TD> + <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + 8026EKP<BR> + 8026EKW<BR> + 8026EKM<BR> + 8026EKP<BR> + 8026EKB<BR> + 8026EKM<BR> + 1309X<BR> + 1309P<BR> + 1309W<BR> + 8024EKP<BR> + 8024EKW<BR> + 8024EKN<BR> + RJ-9P/CT9P<BR> + RJ-9W<BR> + RJ-9X<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR></FONT> + </TD> + <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + 3103P<BR> + 3103Y<BR> + 3103Z<BR> + 3103P<BR> + 3103Y<BR> + 3103Z<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + 3105P/3106P<BR> + 3105W/3106W<BR> + 3105X/3106X<BR> + 3105Y/3106Y<BR> + 3105Z/3105Z<BR> + 3102P<BR> + 3102W<BR> + 3102X<BR> + 3102Y<BR> + 3102Z<BR></FONT> + </TD> + <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + EVMCBG<BR> + EVMCCG<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR></FONT> + </TD> + <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> + 55-1-X<BR> + 55-4-X<BR> + 55-3-X<BR> + 55-2-X<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + 50-2-X<BR> + 50-4-X<BR> + 50-3-X<BR> + -<BR> + -<BR> + -<BR> + 64P<BR> + 64W<BR> + 64X<BR> + 64Y<BR> + 64Z<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR></FONT> + </TD> + <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> + RT/RTR22<BR> + RT/RTR22<BR> + RT/RTR22<BR> + RT/RTR22<BR> + RJ/RJR22<BR> + RJ/RJR22<BR> + RJ/RJR22<BR> + RT/RTR26<BR> + RT/RTR26<BR> + RT/RTR26<BR> + RJ/RJR26<BR> + RJ/RJR26<BR> + RJ/RJR26<BR> + RJ/RJR26<BR> + RJ/RJR26<BR> + RJ/RJR26<BR> + RT/RTR24<BR> + RT/RTR24<BR> + RT/RTR24<BR> + RJ/RJR24<BR> + RJ/RJR24<BR> + RJ/RJR24<BR> + RJ/RJR24<BR> + RJ/RJR24<BR> + RJ/RJR24<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR></FONT> + </TD> + </TR> + <TR> + <TD COLSPAN=8>&nbsp; + </TD> + </TR> + <TR> + <TD COLSPAN=8> + <FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT> + </TD> + </TR> + <TR> + <TD ALIGN=CENTER> + <FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT> + </TD> + <TD ALIGN=CENTER> + <FONT SIZE=3 FACE=ARIAL><B>BI&nbsp;TECH</B></FONT> + </TD> + <TD ALIGN=CENTER> + <FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT> + </TD> + <TD ALIGN=CENTER> + <FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT> + </TD> + <TD ALIGN=CENTER> + <FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT> + </TD> + <TD ALIGN=CENTER> + <FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT> + </TD> + <TD ALIGN=CENTER> + <FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT> + </TD> + <TD ALIGN=CENTER> + <FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT> + </TD> + </TR> + <TR> + <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> + 3323P<BR> + 3323S<BR> + 3323W<BR> + 3329H<BR> + 3329P<BR> + 3329W<BR> + 3339H<BR> + 3339P<BR> + 3339W<BR> + 3352E<BR> + 3352H<BR> + 3352K<BR> + 3352P<BR> + 3352T<BR> + 3352V<BR> + 3352W<BR> + 3362H<BR> + 3362M<BR> + 3362P<BR> + 3362R<BR> + 3362S<BR> + 3362U<BR> + 3362W<BR> + 3362X<BR> + 3386B<BR> + 3386C<BR> + 3386F<BR> + 3386H<BR> + 3386K<BR> + 3386M<BR> + 3386P<BR> + 3386S<BR> + 3386W<BR> + 3386X<BR></FONT> + </TD> + <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> + 25P<BR> + 25S<BR> + 25RX<BR> + 82P<BR> + 82M<BR> + 82PA<BR> + -<BR> + -<BR> + -<BR> + 91E<BR> + 91X<BR> + 91T<BR> + 91B<BR> + 91A<BR> + 91V<BR> + 91W<BR> + 25W<BR> + 25V<BR> + 25P<BR> + -<BR> + 25S<BR> + 25U<BR> + 25RX<BR> + 25X<BR> + 72XW<BR> + 72XL<BR> + 72PM<BR> + 72RX<BR> + -<BR> + 72PX<BR> + 72P<BR> + 72RXW<BR> + 72RXL<BR> + 72X<BR></FONT> + </TD> + <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> + -<BR> + -<BR> + -<BR> + T7YB<BR> + T7YA<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + TXD<BR> + TYA<BR> + TYP<BR> + -<BR> + TYD<BR> + TX<BR> + -<BR> + 150SX<BR> + 100SX<BR> + 102T<BR> + 101S<BR> + 190T<BR> + 150TX<BR> + 101<BR> + -<BR> + -<BR> + 101SX<BR></FONT> + </TD> + <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> + ET6P<BR> + ET6S<BR> + ET6X<BR> + RJ-6W/8014EMW<BR> + RJ-6P/8014EMP<BR> + RJ-6X/8014EMX<BR> + TM7W<BR> + TM7P<BR> + TM7X<BR> + -<BR> + 8017SMS<BR> + -<BR> + 8017SMB<BR> + 8017SMA<BR> + -<BR> + -<BR> + CT-6W<BR> + CT-6H<BR> + CT-6P<BR> + CT-6R<BR> + -<BR> + CT-6V<BR> + CT-6X<BR> + -<BR> + -<BR> + 8038EKV<BR> + -<BR> + 8038EKX<BR> + -<BR> + -<BR> + 8038EKP<BR> + 8038EKZ<BR> + 8038EKW<BR> + -<BR></FONT> + </TD> + <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> + -<BR> + -<BR> + -<BR> + 3321H<BR> + 3321P<BR> + 3321N<BR> + 1102H<BR> + 1102P<BR> + 1102T<BR> + RVA0911V304A<BR> + -<BR> + RVA0911H413A<BR> + RVG0707V100A<BR> + RVA0607V(H)306A<BR> + RVA1214H213A<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + 3104B<BR> + 3104C<BR> + 3104F<BR> + 3104H<BR> + -<BR> + 3104M<BR> + 3104P<BR> + 3104S<BR> + 3104W<BR> + 3104X<BR></FONT> + </TD> + <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> + EVMQ0G<BR> + EVMQIG<BR> + EVMQ3G<BR> + EVMS0G<BR> + EVMQ0G<BR> + EVMG0G<BR> + -<BR> + -<BR> + -<BR> + EVMK4GA00B<BR> + EVM30GA00B<BR> + EVMK0GA00B<BR> + EVM38GA00B<BR> + EVMB6<BR> + EVLQ0<BR> + -<BR> + EVMMSG<BR> + EVMMBG<BR> + EVMMAG<BR> + -<BR> + -<BR> + EVMMCS<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + EVMM1<BR> + -<BR> + -<BR> + EVMM0<BR> + -<BR> + -<BR> + EVMM3<BR></FONT> + </TD> + <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> + -<BR> + -<BR> + -<BR> + 62-3-1<BR> + 62-1-2<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + 67R<BR> + -<BR> + 67P<BR> + -<BR> + -<BR> + -<BR> + -<BR> + 67X<BR> + 63V<BR> + 63S<BR> + 63M<BR> + -<BR> + -<BR> + 63H<BR> + 63P<BR> + -<BR> + -<BR> + 63X<BR></FONT> + </TD> + <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> + -<BR> + -<BR> + -<BR> + RJ/RJR50<BR> + RJ/RJR50<BR> + RJ/RJR50<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR></FONT> + </TD> + </TR> +</TABLE> +<P>&nbsp;<P> +<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=3> + <TR> + <TD COLSPAN=7> + <FONT color="#0000FF" SIZE=4 FACE=ARIAL><B>SMD TRIM-POT CROSS REFERENCE</B></FONT> + <P> + <FONT SIZE=4 FACE=ARIAL><B>MULTI-TURN</B></FONT> + </TD> + </TR> + <TR> + <TD> + <FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT> + </TD> + <TD> + <FONT SIZE=3 FACE=ARIAL><B>BI&nbsp;TECH</B></FONT> + </TD> + <TD> + <FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT> + </TD> + <TD> + <FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT> + </TD> + <TD> + <FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT> + </TD> + <TD> + <FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT> + </TD> + <TD> + <FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT> + </TD> + </TR> + <TR> + <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> + 3224G<BR> + 3224J<BR> + 3224W<BR> + 3269P<BR> + 3269W<BR> + 3269X<BR></FONT> + </TD> + <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> + 44G<BR> + 44J<BR> + 44W<BR> + 84P<BR> + 84W<BR> + 84X<BR></FONT> + </TD> + <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> + -<BR> + -<BR> + -<BR> + ST63Z<BR> + ST63Y<BR> + -<BR></FONT> + </TD> + <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> + -<BR> + -<BR> + -<BR> + ST5P<BR> + ST5W<BR> + ST5X<BR></FONT> + </TD> + <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR></FONT> + </TD> + <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR></FONT> + </TD> + <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR> + -<BR></FONT> + </TD> + </TR> + <TR> + <TD COLSPAN=7>&nbsp; + </TD> + </TR> + <TR> + <TD COLSPAN=7> + <FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT> + </TD> + </TR> + <TR> + <TD> + <FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT> + </TD> + <TD> + <FONT SIZE=3 FACE=ARIAL><B>BI&nbsp;TECH</B></FONT> + </TD> + <TD> + <FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT> + </TD> + <TD> + <FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT> + </TD> + <TD> + <FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT> + </TD> + <TD> + <FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT> + </TD> + <TD> + <FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT> + </TD> + </TR> + <TR> + <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> + 3314G<BR> + 3314J<BR> + 3364A/B<BR> + 3364C/D<BR> + 3364W/X<BR> + 3313G<BR> + 3313J<BR></FONT> + </TD> + <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> + 23B<BR> + 23A<BR> + 21X<BR> + 21W<BR> + -<BR> + 22B<BR> + 22A<BR></FONT> + </TD> + <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> + ST5YL/ST53YL<BR> + ST5YJ/5T53YJ<BR> + ST-23A<BR> + ST-22B<BR> + ST-22<BR> + -<BR> + -<BR></FONT> + </TD> + <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> + ST-4B<BR> + ST-4A<BR> + -<BR> + -<BR> + -<BR> + ST-3B<BR> + ST-3A<BR></FONT> + </TD> + <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> + -<BR> + EVM-6YS<BR> + EVM-1E<BR> + EVM-1G<BR> + EVM-1D<BR> + -<BR> + -<BR></FONT> + </TD> + <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> + G4B<BR> + G4A<BR> + TR04-3S1<BR> + TRG04-2S1<BR> + -<BR> + -<BR> + -<BR></FONT> + </TD> + <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> + -<BR> + -<BR> + DVR-43A<BR> + CVR-42C<BR> + CVR-42A/C<BR> + -<BR> + -<BR></FONT> + </TD> + </TR> +</TABLE> +<P> +<FONT SIZE=4 FACE=ARIAL><B>ALT =&nbsp;ALTERNATE</B></FONT> +<P> + +&nbsp; +<P> +</td> +</tr> +</table> + + +<b>CAPACITOR</b> + + + + + + + + +>NAME +>VALUE + + + + + +<b>CAPACITOR</b> + + + + + + + + +>NAME +>VALUE + + + + + +<b>CAPACITOR</b><p> + + + + + + + + +>NAME +>VALUE + + + + + +<b>RESISTOR</b> + + + + + + + + +>NAME +>VALUE + + + + + +<b>RESISTOR</b><p> + + + + + + + + +>NAME +>VALUE + + + + + + + +<b>Diodes</b><p> +Based on the following sources: +<ul> +<li>Motorola : www.onsemi.com +<li>Fairchild : www.fairchildsemi.com +<li>Philips : www.semiconductors.com +<li>Vishay : www.vishay.de +</ul> +<author>Created by librarian@cadsoft.de</author> + + +<b>DO-214AA Modified J_BEND</b><p> +Source: www.rsonline.de .. SMBJ12/C/15/C/24/C/30/C/5.0/C/7.5/C Voltage Suppressor. Data Sheet + + + + + + +>NAME +>VALUE + + + + +<b>SOD-323</b><p> +Source: www.st.com, BAT60J.pdf + + + + + + +>NAME +>VALUE + + + + + + +<B>DIODE</B> + + + + + + + + + +>NAME +>VALUE + + + + + + + +<b>Microchip PIC Microcontrollers and other Devices</b><p> +Based on the following sources : +<ul> +<li>Microchip Data Book, 1993 +<li>THE EMERGING WORLD STANDARD, 1995/1996 +<li>Microchip, Technical Library CD-ROM, June 1998 +<li>www.microchip.com +</ul> +<author>Created by librarian@cadsoft.de</author> + + +<b>Small Outline Transistor</b><p> +package type OT + + + + + + + + + + + + + + + + +>NAME +>VALUE + + + + + + + + + +<b>LEDs</b><p> +<author>Created by librarian@cadsoft.de</author><br> +Extended by Federico Battaglin <author>&lt;federico.rd@fdpinternational.com&gt;</author> with DUOLED + + +<b>Hyper CHIPLED Hyper-Bright LED</b><p> +LB R99A<br> +Source: http://www.osram.convergy.de/ ... lb_r99a.pdf + + + + +>NAME +>VALUE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +<b>Pin Headers</b><p> +Naming:<p> +MA = male<p> +# contacts - # rows<p> +W = angled<p> +<author>Created by librarian@cadsoft.de</author> + + +<b>PIN HEADER</b> + + + + + + + + + + + + + + + + + + + + + + + +>NAME +1 +>VALUE + + + + + + + + + + + + + + + + + + + +>NAME + + + + + + + + + + + + + + + + + + + + + + +<b>AVX Connectors</b><p> + <author>Created by librarian@cadsoft.de</author> + + +<b>Wire to Board Strip IDC Connector</b> 2 WAY<p> +Source: http://www.avx.com/docs/Catalogs/9176.pdf + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +>NAME +>VALUE + + + + + + + + + + + + + +<b>EAGLE Design Rules</b> +<p> +Die Standard-Design-Rules sind so gewählt, dass sie für +die meisten Anwendungen passen. Sollte ihre Platine +besondere Anforderungen haben, treffen Sie die erforderlichen +Einstellungen hier und speichern die Design Rules unter +einem neuen Namen ab. +<b>EAGLE Design Rules</b> +<p> +The default Design Rules have been set to cover +a wide range of applications. Your particular design +may have different requirements, so please make the +necessary adjustments and save your customized +design rules under a new name. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Glas/receive_v1_1.kicad_pcb b/Glas/receive_v1_1.kicad_pcb new file mode 100644 index 0000000..c472534 --- /dev/null +++ b/Glas/receive_v1_1.kicad_pcb @@ -0,0 +1,2756 @@ +(kicad_pcb (version 20171130) (host pcbnew 5.0.0+dfsg1-1~bpo9+1) + + (general + (thickness 1.6) + (drawings 5) + (tracks 1420) + (zones 0) + (modules 40) + (nets 25) + ) + + (page A4) + (layers + (0 Top signal) + (31 Bottom signal) + (32 B.Adhes user hide) + (33 F.Adhes user hide) + (34 B.Paste user hide) + (35 F.Paste user hide) + (36 B.SilkS user hide) + (37 F.SilkS user) + (38 B.Mask user hide) + (39 F.Mask user hide) + (40 Dwgs.User user hide) + (41 Cmts.User user hide) + (42 Eco1.User user hide) + (43 Eco2.User user hide) + (44 Edge.Cuts user) + (45 Margin user hide) + (46 B.CrtYd user hide) + (47 F.CrtYd user hide) + (48 B.Fab user hide) + (49 F.Fab user hide) + ) + + (setup + (last_trace_width 0.5) + (trace_clearance 0.3) + (zone_clearance 0.508) + (zone_45_only no) + (trace_min 0.2) + (segment_width 0.2) + (edge_width 0.15) + (via_size 0.8) + (via_drill 0.4) + (via_min_size 0.4) + (via_min_drill 0.3) + (uvia_size 0.3) + (uvia_drill 0.1) + (uvias_allowed no) + (uvia_min_size 0.2) + (uvia_min_drill 0.1) + (pcb_text_width 0.3) + (pcb_text_size 1.5 1.5) + (mod_edge_width 0.15) + (mod_text_size 1 1) + (mod_text_width 0.15) + (pad_size 1.524 1.524) + (pad_drill 0.762) + (pad_to_mask_clearance 0.2) + (aux_axis_origin 0 0) + (visible_elements FFFFFFFF) + (pcbplotparams + (layerselection 0x010fc_ffffffff) + (usegerberextensions false) + (usegerberattributes false) + (usegerberadvancedattributes false) + (creategerberjobfile false) + (excludeedgelayer true) + (linewidth 0.100000) + (plotframeref false) + (viasonmask false) + (mode 1) + (useauxorigin false) + (hpglpennumber 1) + (hpglpenspeed 20) + (hpglpendiameter 15.000000) + (psnegative false) + (psa4output false) + (plotreference true) + (plotvalue true) + (plotinvisibletext false) + (padsonsilk false) + (subtractmaskfromsilk false) + (outputformat 1) + (mirror false) + (drillshape 0) + (scaleselection 1) + (outputdirectory "gerber/")) + ) + + (net 0 "") + (net 1 GND) + (net 2 PWR_IN) + (net 3 VCC) + (net 4 DOUT) + (net 5 /receive_v1_1_1/IND) + (net 6 "Net-(C1-Pad1)") + (net 7 "Net-(IC1-Pad5)") + (net 8 "Net-(IC1-Pad1)") + (net 9 "Net-(LED1-PadC)") + (net 10 "Net-(IC2-Pad1)") + (net 11 "Net-(IC3-Pad1)") + (net 12 "Net-(IC3-Pad2)") + (net 13 /receive_v1_1_2/TXD) + (net 14 /receive_v1_1_2/RXD) + (net 15 "Net-(U$1-PadGPIO18)") + (net 16 "Net-(D2-PadC)") + (net 17 "Net-(U$1-PadANT)") + (net 18 "Net-(U$1-PadGPIO12)") + (net 19 "Net-(D2-PadA)") + (net 20 "Net-(C6-Pad2)") + (net 21 GPIO14) + (net 22 "Net-(D3-PadA)") + (net 23 "Net-(TP4-Pad1)") + (net 24 PWR_LED) + + (net_class Default "Dies ist die voreingestellte Netzklasse." + (clearance 0.3) + (trace_width 0.5) + (via_dia 0.8) + (via_drill 0.4) + (uvia_dia 0.3) + (uvia_drill 0.1) + (add_net /receive_v1_1_1/IND) + (add_net /receive_v1_1_2/RXD) + (add_net /receive_v1_1_2/TXD) + (add_net DOUT) + (add_net GND) + (add_net GPIO14) + (add_net "Net-(C1-Pad1)") + (add_net "Net-(C6-Pad2)") + (add_net "Net-(D2-PadA)") + (add_net "Net-(D2-PadC)") + (add_net "Net-(D3-PadA)") + (add_net "Net-(IC1-Pad1)") + (add_net "Net-(IC1-Pad5)") + (add_net "Net-(IC2-Pad1)") + (add_net "Net-(IC3-Pad1)") + (add_net "Net-(IC3-Pad2)") + (add_net "Net-(LED1-PadC)") + (add_net "Net-(TP4-Pad1)") + (add_net "Net-(U$1-PadANT)") + (add_net "Net-(U$1-PadGPIO12)") + (add_net "Net-(U$1-PadGPIO18)") + (add_net PWR_IN) + (add_net PWR_LED) + (add_net VCC) + ) + + (net_class Dick "" + (clearance 0.3) + (trace_width 0.8) + (via_dia 0.8) + (via_drill 0.4) + (uvia_dia 0.3) + (uvia_drill 0.1) + ) + + (module receive_v1_1:R1206 (layer Top) (tedit 0) (tstamp 5B6FFECE) + (at 139.7 92.075 270) + (descr RESISTOR) + (path /5B6DFC7E/5B70118C) + (fp_text reference R4 (at -1.27 -1.27 270) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_text value "n.b. 10K" (at -1.27 2.54 270) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_line (start 0.9525 0.8128) (end -0.9652 0.8128) (layer F.Fab) (width 0.1524)) + (fp_line (start 0.9525 -0.8128) (end -0.9652 -0.8128) (layer F.Fab) (width 0.1524)) + (fp_line (start -2.473 -0.983) (end 2.473 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 2.473 -0.983) (end 2.473 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 2.473 0.983) (end -2.473 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -2.473 0.983) (end -2.473 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_poly (pts (xy -1.6891 0.8763) (xy -0.9525 0.8763) (xy -0.9525 -0.8763) (xy -1.6891 -0.8763)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy 0.9525 0.8763) (xy 1.6891 0.8763) (xy 1.6891 -0.8763) (xy 0.9525 -0.8763)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -0.3 0.7) (xy 0.3 0.7) (xy 0.3 -0.7) (xy -0.3 -0.7)) (layer F.Adhes) (width 0)) + (pad 2 smd rect (at 1.422 0 270) (size 1.6 1.803) (layers Top F.Paste F.Mask) + (net 1 GND) (solder_mask_margin 0.1016)) + (pad 1 smd rect (at -1.422 0 270) (size 1.6 1.803) (layers Top F.Paste F.Mask) + (net 16 "Net-(D2-PadC)") (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:R1206 (layer Top) (tedit 0) (tstamp 5B6EEF4B) + (at 133.096 100.838 90) + (descr RESISTOR) + (path /5B6DFC7E/5B6F4871) + (fp_text reference R11 (at -1.27 -1.27 90) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_text value 0R (at -1.27 2.54 90) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_line (start 0.9525 0.8128) (end -0.9652 0.8128) (layer F.Fab) (width 0.1524)) + (fp_line (start 0.9525 -0.8128) (end -0.9652 -0.8128) (layer F.Fab) (width 0.1524)) + (fp_line (start -2.473 -0.983) (end 2.473 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 2.473 -0.983) (end 2.473 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 2.473 0.983) (end -2.473 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -2.473 0.983) (end -2.473 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_poly (pts (xy -1.6891 0.8763) (xy -0.9525 0.8763) (xy -0.9525 -0.8763) (xy -1.6891 -0.8763)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy 0.9525 0.8763) (xy 1.6891 0.8763) (xy 1.6891 -0.8763) (xy 0.9525 -0.8763)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -0.3 0.7) (xy 0.3 0.7) (xy 0.3 -0.7) (xy -0.3 -0.7)) (layer F.Adhes) (width 0)) + (pad 2 smd rect (at 1.422 0 90) (size 1.6 1.803) (layers Top F.Paste F.Mask) + (net 24 PWR_LED) (solder_mask_margin 0.1016)) + (pad 1 smd rect (at -1.422 0 90) (size 1.6 1.803) (layers Top F.Paste F.Mask) + (net 24 PWR_LED) (solder_mask_margin 0.1016)) + ) + + (module TestPoint:TestPoint_Pad_1.0x1.0mm (layer Top) (tedit 5A0F774F) (tstamp 5B6EE776) + (at 135.89 93.218) + (descr "SMD rectangular pad as test Point, square 1.0mm side length") + (tags "test point SMD pad rectangle square") + (path /5B6DFACA/5B6EF29E) + (attr virtual) + (fp_text reference TP8 (at 0 -1.448) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value VCC (at 0 1.55) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start 1 1) (end -1 1) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1 1) (end 1 -1) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1 -1) (end -1 1) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1 -1) (end 1 -1) (layer F.CrtYd) (width 0.05)) + (fp_line (start -0.7 0.7) (end -0.7 -0.7) (layer F.SilkS) (width 0.12)) + (fp_line (start 0.7 0.7) (end -0.7 0.7) (layer F.SilkS) (width 0.12)) + (fp_line (start 0.7 -0.7) (end 0.7 0.7) (layer F.SilkS) (width 0.12)) + (fp_line (start -0.7 -0.7) (end 0.7 -0.7) (layer F.SilkS) (width 0.12)) + (fp_text user %R (at 0 -1.45) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (pad 1 smd rect (at 0 0) (size 1 1) (layers Top F.Mask) + (net 3 VCC)) + ) + + (module TestPoint:TestPoint_Pad_1.0x1.0mm (layer Top) (tedit 5A0F774F) (tstamp 5B6EE768) + (at 128.524 102.362) + (descr "SMD rectangular pad as test Point, square 1.0mm side length") + (tags "test point SMD pad rectangle square") + (path /5B6DFACA/5B6EF211) + (attr virtual) + (fp_text reference TP7 (at 0 -1.448) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value VCC (at 0 1.55) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text user %R (at 0 -1.45) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start -0.7 -0.7) (end 0.7 -0.7) (layer F.SilkS) (width 0.12)) + (fp_line (start 0.7 -0.7) (end 0.7 0.7) (layer F.SilkS) (width 0.12)) + (fp_line (start 0.7 0.7) (end -0.7 0.7) (layer F.SilkS) (width 0.12)) + (fp_line (start -0.7 0.7) (end -0.7 -0.7) (layer F.SilkS) (width 0.12)) + (fp_line (start -1 -1) (end 1 -1) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1 -1) (end -1 1) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1 1) (end 1 -1) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1 1) (end -1 1) (layer F.CrtYd) (width 0.05)) + (pad 1 smd rect (at 0 0) (size 1 1) (layers Top F.Mask) + (net 3 VCC)) + ) + + (module receive_v1_1:R1206 (layer Top) (tedit 0) (tstamp 5B6EB823) + (at 120.015 97.196599 90) + (descr RESISTOR) + (path /5B6DFC7E/5B6EB2AE) + (fp_text reference R10 (at -1.27 -1.27 90) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_text value 0R (at -1.27 2.54 90) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_line (start 0.9525 0.8128) (end -0.9652 0.8128) (layer F.Fab) (width 0.1524)) + (fp_line (start 0.9525 -0.8128) (end -0.9652 -0.8128) (layer F.Fab) (width 0.1524)) + (fp_line (start -2.473 -0.983) (end 2.473 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 2.473 -0.983) (end 2.473 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 2.473 0.983) (end -2.473 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -2.473 0.983) (end -2.473 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_poly (pts (xy -1.6891 0.8763) (xy -0.9525 0.8763) (xy -0.9525 -0.8763) (xy -1.6891 -0.8763)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy 0.9525 0.8763) (xy 1.6891 0.8763) (xy 1.6891 -0.8763) (xy 0.9525 -0.8763)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -0.3 0.7) (xy 0.3 0.7) (xy 0.3 -0.7) (xy -0.3 -0.7)) (layer F.Adhes) (width 0)) + (pad 2 smd rect (at 1.422 0 90) (size 1.6 1.803) (layers Top F.Paste F.Mask) + (net 4 DOUT) (solder_mask_margin 0.1016)) + (pad 1 smd rect (at -1.422 0 90) (size 1.6 1.803) (layers Top F.Paste F.Mask) + (net 4 DOUT) (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:R0805 (layer Top) (tedit 0) (tstamp 5B6DEAC5) + (at 114.046 106.681065 180) + (descr RESISTOR

) + (path /5B6DFACA/2AF825E8B40906EE) + (fp_text reference R2 (at -0.635 -1.27 180) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_text value 1K (at -0.635 2.54 180) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_poly (pts (xy -0.1999 0.5001) (xy 0.1999 0.5001) (xy 0.1999 -0.5001) (xy -0.1999 -0.5001)) (layer F.Adhes) (width 0)) + (fp_poly (pts (xy -1.0668 0.6985) (xy -0.4168 0.6985) (xy -0.4168 -0.7015) (xy -1.0668 -0.7015)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy 0.4064 0.6985) (xy 1.0564 0.6985) (xy 1.0564 -0.7015) (xy 0.4064 -0.7015)) (layer F.Fab) (width 0)) + (fp_line (start -1.973 0.983) (end -1.973 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 1.973 0.983) (end -1.973 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 1.973 -0.983) (end 1.973 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -1.973 -0.983) (end 1.973 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -0.41 0.635) (end 0.41 0.635) (layer F.Fab) (width 0.1524)) + (fp_line (start -0.41 -0.635) (end 0.41 -0.635) (layer F.Fab) (width 0.1524)) + (pad 2 smd rect (at 0.95 0 180) (size 1.3 1.5) (layers Top F.Paste F.Mask) + (net 9 "Net-(LED1-PadC)") (solder_mask_margin 0.1016)) + (pad 1 smd rect (at -0.95 0 180) (size 1.3 1.5) (layers Top F.Paste F.Mask) + (net 8 "Net-(IC1-Pad1)") (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:CHIP-LED0805 (layer Top) (tedit 5B6E092D) (tstamp 5B6DEAD3) + (at 109.567259 106.681065 270) + (descr "Hyper CHIPLED Hyper-Bright LED

\nLB R99A
\nSource: http://www.osram.convergy.de/ ... lb_r99a.pdf") + (path /5B6DFACA/56580ACBD5D4A691) + (fp_text reference LED1 (at 2.538935 2.252259) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_text value LEDCHIP-LED0805 (at 2.54 1.27) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_poly (pts (xy -0.675 1.05) (xy 0.675 1.05) (xy 0.675 0.45) (xy -0.675 0.45)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -0.675 -0.45) (xy 0.675 -0.45) (xy 0.675 -1.05) (xy -0.675 -1.05)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -0.15 0) (xy 0.15 0) (xy 0.15 -0.3) (xy -0.15 -0.3)) (layer F.SilkS) (width 0)) + (fp_poly (pts (xy 0.525 0) (xy 0.675 0) (xy 0.675 -0.3) (xy 0.525 -0.3)) (layer F.SilkS) (width 0)) + (fp_poly (pts (xy -0.675 0) (xy -0.525 0) (xy -0.525 -0.3) (xy -0.675 -0.3)) (layer F.SilkS) (width 0)) + (fp_line (start 0.625 -0.45) (end 0.625 0.475) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.625 -0.45) (end -0.625 0.45) (layer F.Fab) (width 0.1016)) + (pad A smd rect (at 0 1.05 270) (size 1.2 1.2) (layers Top F.Paste F.Mask) + (net 2 PWR_IN) (solder_mask_margin 0.1016)) + (pad C smd rect (at 0 -1.05 270) (size 1.2 1.2) (layers Top F.Paste F.Mask) + (net 9 "Net-(LED1-PadC)") (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:C1206 (layer Top) (tedit 0) (tstamp 5B6DEA5C) + (at 112.395 97.155) + (descr CAPACITOR) + (path /5B6DFACA/A437799099D41F3B) + (fp_text reference C2 (at -1.27 -1.27) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_text value 10uF (at -1.27 2.54) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_poly (pts (xy -0.1999 0.4001) (xy 0.1999 0.4001) (xy 0.1999 -0.4001) (xy -0.1999 -0.4001)) (layer F.Adhes) (width 0)) + (fp_poly (pts (xy 0.9517 0.8491) (xy 1.7018 0.8491) (xy 1.7018 -0.8509) (xy 0.9517 -0.8509)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -1.7018 0.8509) (xy -0.9517 0.8509) (xy -0.9517 -0.8491) (xy -1.7018 -0.8491)) (layer F.Fab) (width 0)) + (fp_line (start -0.965 0.787) (end 0.965 0.787) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.965 -0.787) (end 0.965 -0.787) (layer F.Fab) (width 0.1016)) + (fp_line (start 2.473 -0.983) (end 2.473 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -2.473 0.983) (end -2.473 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 2.473 0.983) (end -2.473 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -2.473 -0.983) (end 2.473 -0.983) (layer Dwgs.User) (width 0.0508)) + (pad 2 smd rect (at 1.4 0) (size 1.6 1.8) (layers Top F.Paste F.Mask) + (net 1 GND) (solder_mask_margin 0.1016)) + (pad 1 smd rect (at -1.4 0) (size 1.6 1.8) (layers Top F.Paste F.Mask) + (net 2 PWR_IN) (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:SOT23-5L (layer Top) (tedit 0) (tstamp 5B6DEA9F) + (at 112.576375 103.059509 90) + (descr "Small Outline Transistor

\npackage type OT") + (path /5B6DFACA/7C8C299E06F92037) + (fp_text reference IC1 (at -1.905 -1.905 90) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_text value MCP73831 (at -1.905 3.429 90) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_poly (pts (xy -1.2 -0.85) (xy -0.7 -0.85) (xy -0.7 -1.5) (xy -1.2 -1.5)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy 0.7 -0.85) (xy 1.2 -0.85) (xy 1.2 -1.5) (xy 0.7 -1.5)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy 0.7 1.5) (xy 1.2 1.5) (xy 1.2 0.85) (xy 0.7 0.85)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -0.25 1.5) (xy 0.25 1.5) (xy 0.25 0.85) (xy -0.25 0.85)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -1.2 1.5) (xy -0.7 1.5) (xy -0.7 0.85) (xy -1.2 0.85)) (layer F.Fab) (width 0)) + (fp_line (start -1.422 -0.81) (end -1.328 -0.81) (layer F.SilkS) (width 0.1524)) + (fp_line (start 1.328 -0.81) (end 1.422 -0.81) (layer F.SilkS) (width 0.1524)) + (fp_line (start 1.422 0.81) (end 1.328 0.81) (layer F.SilkS) (width 0.1524)) + (fp_line (start -1.328 0.81) (end -1.422 0.81) (layer F.SilkS) (width 0.1524)) + (fp_line (start 0.522 0.81) (end 0.428 0.81) (layer F.SilkS) (width 0.1524)) + (fp_line (start -0.428 0.81) (end -0.522 0.81) (layer F.SilkS) (width 0.1524)) + (fp_line (start -0.522 -0.81) (end 0.522 -0.81) (layer F.SilkS) (width 0.1524)) + (fp_line (start -1.422 -0.81) (end 1.422 -0.81) (layer F.Fab) (width 0.1524)) + (fp_line (start -1.422 0.81) (end -1.422 -0.81) (layer F.SilkS) (width 0.1524)) + (fp_line (start 1.422 0.81) (end -1.422 0.81) (layer F.Fab) (width 0.1524)) + (fp_line (start 1.422 -0.81) (end 1.422 0.81) (layer F.SilkS) (width 0.1524)) + (pad 5 smd rect (at -0.95 -1.3 90) (size 0.55 1.2) (layers Top F.Paste F.Mask) + (net 7 "Net-(IC1-Pad5)") (solder_mask_margin 0.1016)) + (pad 4 smd rect (at 0.95 -1.3 90) (size 0.55 1.2) (layers Top F.Paste F.Mask) + (net 2 PWR_IN) (solder_mask_margin 0.1016)) + (pad 3 smd rect (at 0.95 1.3 90) (size 0.55 1.2) (layers Top F.Paste F.Mask) + (net 3 VCC) (solder_mask_margin 0.1016)) + (pad 2 smd rect (at 0 1.3 90) (size 0.55 1.2) (layers Top F.Paste F.Mask) + (net 1 GND) (solder_mask_margin 0.1016)) + (pad 1 smd rect (at -0.95 1.3 90) (size 0.55 1.2) (layers Top F.Paste F.Mask) + (net 8 "Net-(IC1-Pad1)") (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:C1206 (layer Top) (tedit 0) (tstamp 5B6DEA6A) + (at 117.187259 102.871065 270) + (descr CAPACITOR) + (path /5B6DFACA/ACEB8AA80C7BD23D) + (fp_text reference C3 (at -0.636065 -2.827741 270) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_text value 4.7uF (at -1.27 2.54 270) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_poly (pts (xy -0.1999 0.4001) (xy 0.1999 0.4001) (xy 0.1999 -0.4001) (xy -0.1999 -0.4001)) (layer F.Adhes) (width 0)) + (fp_poly (pts (xy 0.9517 0.8491) (xy 1.7018 0.8491) (xy 1.7018 -0.8509) (xy 0.9517 -0.8509)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -1.7018 0.8509) (xy -0.9517 0.8509) (xy -0.9517 -0.8491) (xy -1.7018 -0.8491)) (layer F.Fab) (width 0)) + (fp_line (start -0.965 0.787) (end 0.965 0.787) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.965 -0.787) (end 0.965 -0.787) (layer F.Fab) (width 0.1016)) + (fp_line (start 2.473 -0.983) (end 2.473 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -2.473 0.983) (end -2.473 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 2.473 0.983) (end -2.473 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -2.473 -0.983) (end 2.473 -0.983) (layer Dwgs.User) (width 0.0508)) + (pad 2 smd rect (at 1.4 0 270) (size 1.6 1.8) (layers Top F.Paste F.Mask) + (net 1 GND) (solder_mask_margin 0.1016)) + (pad 1 smd rect (at -1.4 0 270) (size 1.6 1.8) (layers Top F.Paste F.Mask) + (net 3 VCC) (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:C0805 (layer Top) (tedit 0) (tstamp 5B6DEA78) + (at 112.395 99.695) + (descr CAPACITOR

) + (path /5B6DFACA/18AF332D375CDECD) + (fp_text reference C4 (at -1.27 -1.27) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_text value 100nF (at -1.27 2.54) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_line (start -1.973 -0.983) (end 1.973 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 1.973 0.983) (end -1.973 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -1.973 0.983) (end -1.973 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -0.381 -0.66) (end 0.381 -0.66) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.356 0.66) (end 0.381 0.66) (layer F.Fab) (width 0.1016)) + (fp_line (start 1.973 -0.983) (end 1.973 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_poly (pts (xy -1.0922 0.7239) (xy -0.3421 0.7239) (xy -0.3421 -0.7262) (xy -1.0922 -0.7262)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy 0.3556 0.7239) (xy 1.1057 0.7239) (xy 1.1057 -0.7262) (xy 0.3556 -0.7262)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -0.1001 0.4001) (xy 0.1001 0.4001) (xy 0.1001 -0.4001) (xy -0.1001 -0.4001)) (layer F.Adhes) (width 0)) + (pad 1 smd rect (at -0.95 0) (size 1.3 1.5) (layers Top F.Paste F.Mask) + (net 2 PWR_IN) (solder_mask_margin 0.1016)) + (pad 2 smd rect (at 0.95 0) (size 1.3 1.5) (layers Top F.Paste F.Mask) + (net 1 GND) (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:R0805 (layer Top) (tedit 0) (tstamp 5B6DEAB7) + (at 108.585 103.505 270) + (descr RESISTOR

) + (path /5B6DFACA/27FD2D81B18B4CD) + (fp_text reference R1 (at 0 2.54 270) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_text value 2.7K (at -0.635 2.54 270) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_poly (pts (xy -0.1999 0.5001) (xy 0.1999 0.5001) (xy 0.1999 -0.5001) (xy -0.1999 -0.5001)) (layer F.Adhes) (width 0)) + (fp_poly (pts (xy -1.0668 0.6985) (xy -0.4168 0.6985) (xy -0.4168 -0.7015) (xy -1.0668 -0.7015)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy 0.4064 0.6985) (xy 1.0564 0.6985) (xy 1.0564 -0.7015) (xy 0.4064 -0.7015)) (layer F.Fab) (width 0)) + (fp_line (start -1.973 0.983) (end -1.973 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 1.973 0.983) (end -1.973 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 1.973 -0.983) (end 1.973 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -1.973 -0.983) (end 1.973 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -0.41 0.635) (end 0.41 0.635) (layer F.Fab) (width 0.1524)) + (fp_line (start -0.41 -0.635) (end 0.41 -0.635) (layer F.Fab) (width 0.1524)) + (pad 2 smd rect (at 0.95 0 270) (size 1.3 1.5) (layers Top F.Paste F.Mask) + (net 7 "Net-(IC1-Pad5)") (solder_mask_margin 0.1016)) + (pad 1 smd rect (at -0.95 0 270) (size 1.3 1.5) (layers Top F.Paste F.Mask) + (net 1 GND) (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:R1206 (layer Top) (tedit 0) (tstamp 5B6EB84E) + (at 123.19 97.196599 90) + (descr RESISTOR) + (path /5B6DFC7E/5B6EB162) + (fp_text reference R3 (at -1.228401 2.54 90) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_text value 0R (at -1.27 2.54 90) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_poly (pts (xy -0.3 0.7) (xy 0.3 0.7) (xy 0.3 -0.7) (xy -0.3 -0.7)) (layer F.Adhes) (width 0)) + (fp_poly (pts (xy 0.9525 0.8763) (xy 1.6891 0.8763) (xy 1.6891 -0.8763) (xy 0.9525 -0.8763)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -1.6891 0.8763) (xy -0.9525 0.8763) (xy -0.9525 -0.8763) (xy -1.6891 -0.8763)) (layer F.Fab) (width 0)) + (fp_line (start -2.473 0.983) (end -2.473 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 2.473 0.983) (end -2.473 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 2.473 -0.983) (end 2.473 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -2.473 -0.983) (end 2.473 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 0.9525 -0.8128) (end -0.9652 -0.8128) (layer F.Fab) (width 0.1524)) + (fp_line (start 0.9525 0.8128) (end -0.9652 0.8128) (layer F.Fab) (width 0.1524)) + (pad 1 smd rect (at -1.422 0 90) (size 1.6 1.803) (layers Top F.Paste F.Mask) + (net 24 PWR_LED) (solder_mask_margin 0.1016)) + (pad 2 smd rect (at 1.422 0 90) (size 1.6 1.803) (layers Top F.Paste F.Mask) + (net 24 PWR_LED) (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:ESP-03 (layer Top) (tedit 0) (tstamp 5B6DEADF) + (at 111.76 76.2 270) + (path /5B6DFC7E/850A8AB0BABD3B23) + (fp_text reference U$1 (at 0 0 270) (layer F.SilkS) hide + (effects (font (size 1.27 1.27) (thickness 0.15)) (justify right top)) + ) + (fp_text value ESP8266-03 (at 3.81 -3.175 270) (layer F.SilkS) hide + (effects (font (size 1.27 1.27) (thickness 0.15)) (justify right top)) + ) + (fp_line (start 17.2 -7.4) (end 12.2 -7.4) (layer F.SilkS) (width 0.127)) + (fp_line (start 17.2 -2.6) (end 17.2 -7.4) (layer F.SilkS) (width 0.127)) + (fp_line (start 12.2 -2.6) (end 17.2 -2.6) (layer F.SilkS) (width 0.127)) + (fp_line (start 12.2 -7.4) (end 12.2 -2.6) (layer F.SilkS) (width 0.127)) + (fp_line (start 13.6 -10.8) (end 11 -10.8) (layer F.SilkS) (width 0.127)) + (fp_line (start 13.6 -8.4) (end 13.6 -10.8) (layer F.SilkS) (width 0.127)) + (fp_line (start 11 -8.4) (end 13.6 -8.4) (layer F.SilkS) (width 0.127)) + (fp_line (start 11 -10.8) (end 11 -8.4) (layer F.SilkS) (width 0.127)) + (fp_line (start 10.8 -7.4) (end 5.8 -7.4) (layer F.SilkS) (width 0.127)) + (fp_line (start 10.8 -2.6) (end 10.8 -7.4) (layer F.SilkS) (width 0.127)) + (fp_line (start 5.8 -2.6) (end 10.8 -2.6) (layer F.SilkS) (width 0.127)) + (fp_line (start 5.8 -7.4) (end 5.8 -2.6) (layer F.SilkS) (width 0.127)) + (fp_line (start 0 0) (end 17.4 0) (layer F.SilkS) (width 0.127)) + (fp_poly (pts (xy 0.6 -0.6) (xy 2.6 -0.6) (xy 2.6 -11.4) (xy 0.6 -11.4)) (layer F.SilkS) (width 0)) + (fp_line (start 0 -12.2) (end 17.4 -12.2) (layer F.SilkS) (width 0.127)) + (fp_line (start 0 0) (end 0 -12.2) (layer F.SilkS) (width 0.127)) + (fp_line (start 17.4 0) (end 17.4 -12.2) (layer F.SilkS) (width 0.127)) + (pad GND smd rect (at 16 -12.4) (size 1.5 1) (layers Top F.Paste F.Mask) + (net 1 GND) (solder_mask_margin 0.1016)) + (pad NC smd rect (at 14 -12.4) (size 1.5 1) (layers Top F.Paste F.Mask) + (net 3 VCC) (solder_mask_margin 0.1016)) + (pad UTXD smd rect (at 12 -12.4) (size 1.5 1) (layers Top F.Paste F.Mask) + (net 13 /receive_v1_1_2/TXD) (solder_mask_margin 0.1016)) + (pad URXD smd rect (at 10 -12.4) (size 1.5 1) (layers Top F.Paste F.Mask) + (net 14 /receive_v1_1_2/RXD) (solder_mask_margin 0.1016)) + (pad GPIO18 smd rect (at 8 -12.4) (size 1.5 1) (layers Top F.Paste F.Mask) + (net 15 "Net-(U$1-PadGPIO18)") (solder_mask_margin 0.1016)) + (pad CH_PD smd rect (at 6 -12.4) (size 1.5 1) (layers Top F.Paste F.Mask) + (net 16 "Net-(D2-PadC)") (solder_mask_margin 0.1016)) + (pad ANT smd rect (at 4 -12.4) (size 1.5 1) (layers Top F.Paste F.Mask) + (net 17 "Net-(U$1-PadANT)") (solder_mask_margin 0.1016)) + (pad GPIO0 smd rect (at 16 0.2) (size 1.5 1) (layers Top F.Paste F.Mask) + (net 23 "Net-(TP4-Pad1)") (solder_mask_margin 0.1016)) + (pad GPIO2 smd rect (at 14 0.2) (size 1.5 1) (layers Top F.Paste F.Mask) + (net 4 DOUT) (solder_mask_margin 0.1016)) + (pad GPIO15 smd rect (at 12 0.2) (size 1.5 1) (layers Top F.Paste F.Mask) + (net 1 GND) (solder_mask_margin 0.1016)) + (pad GPIO13 smd rect (at 10 0.2) (size 1.5 1) (layers Top F.Paste F.Mask) + (net 24 PWR_LED) (solder_mask_margin 0.1016)) + (pad GPIO12 smd rect (at 8 0.2) (size 1.5 1) (layers Top F.Paste F.Mask) + (net 18 "Net-(U$1-PadGPIO12)") (solder_mask_margin 0.1016)) + (pad GPIO14 smd rect (at 6 0.2) (size 1.5 1) (layers Top F.Paste F.Mask) + (net 21 GPIO14) (solder_mask_margin 0.1016)) + (pad VCC smd rect (at 4 0.2) (size 1.5 1) (layers Top F.Paste F.Mask) + (net 3 VCC) (solder_mask_margin 0.1016)) + ) + + (module TestPoint:TestPoint_Pad_2.0x2.0mm (layer Top) (tedit 5A0F774F) (tstamp 5B6E0AA0) + (at 106.68 92.71) + (descr "SMD rectangular pad as test Point, square 2.0mm side length") + (tags "test point SMD pad rectangle square") + (path /5B6DFC7E/5B6E346D) + (attr virtual) + (fp_text reference TP4 (at 0 -1.998) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value TestPoint (at 0 2.05) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start 1.5 1.5) (end -1.5 1.5) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.5 1.5) (end 1.5 -1.5) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.5 -1.5) (end 1.5 -1.5) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.2 1.2) (end -1.2 -1.2) (layer F.SilkS) (width 0.12)) + (fp_line (start 1.2 1.2) (end -1.2 1.2) (layer F.SilkS) (width 0.12)) + (fp_line (start 1.2 -1.2) (end 1.2 1.2) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.2 -1.2) (end 1.2 -1.2) (layer F.SilkS) (width 0.12)) + (fp_text user %R (at 0 -2) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (pad 1 smd rect (at 0 0) (size 2 2) (layers Top F.Mask) + (net 23 "Net-(TP4-Pad1)")) + ) + + (module TestPoint:TestPoint_Pad_2.0x2.0mm (layer Top) (tedit 5A0F774F) (tstamp 5B6E0ABC) + (at 129.54 88.9) + (descr "SMD rectangular pad as test Point, square 2.0mm side length") + (tags "test point SMD pad rectangle square") + (path /5B6DFC7E/5B6E0D07) + (attr virtual) + (fp_text reference TP6 (at 0 -1.998) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value TestPoint (at 0 2.05) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start 1.5 1.5) (end -1.5 1.5) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.5 1.5) (end 1.5 -1.5) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.5 -1.5) (end 1.5 -1.5) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.2 1.2) (end -1.2 -1.2) (layer F.SilkS) (width 0.12)) + (fp_line (start 1.2 1.2) (end -1.2 1.2) (layer F.SilkS) (width 0.12)) + (fp_line (start 1.2 -1.2) (end 1.2 1.2) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.2 -1.2) (end 1.2 -1.2) (layer F.SilkS) (width 0.12)) + (fp_text user %R (at 0 -2) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (pad 1 smd rect (at 0 0) (size 2 2) (layers Top F.Mask) + (net 13 /receive_v1_1_2/TXD)) + ) + + (module TestPoint:TestPoint_Pad_2.0x2.0mm (layer Top) (tedit 5A0F774F) (tstamp 5B6E0AAE) + (at 129.54 85.09) + (descr "SMD rectangular pad as test Point, square 2.0mm side length") + (tags "test point SMD pad rectangle square") + (path /5B6DFC7E/5B6E0753) + (attr virtual) + (fp_text reference TP5 (at 0 -1.998) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value TestPoint (at 0 2.05) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text user %R (at 0 -2) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start -1.2 -1.2) (end 1.2 -1.2) (layer F.SilkS) (width 0.12)) + (fp_line (start 1.2 -1.2) (end 1.2 1.2) (layer F.SilkS) (width 0.12)) + (fp_line (start 1.2 1.2) (end -1.2 1.2) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.2 1.2) (end -1.2 -1.2) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.5 -1.5) (end 1.5 -1.5) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.5 1.5) (end 1.5 -1.5) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.5 1.5) (end -1.5 1.5) (layer F.CrtYd) (width 0.05)) + (pad 1 smd rect (at 0 0) (size 2 2) (layers Top F.Mask) + (net 14 /receive_v1_1_2/RXD)) + ) + + (module TestPoint:TestPoint_Pad_2.0x2.0mm (layer Top) (tedit 5A0F774F) (tstamp 5B6E0A92) + (at 129.54 96.52) + (descr "SMD rectangular pad as test Point, square 2.0mm side length") + (tags "test point SMD pad rectangle square") + (path /5B6DFACA/5B6E67FF) + (attr virtual) + (fp_text reference TP3 (at 0 -1.998) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value TestPoint (at 0 2.05) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text user %R (at 0 -2) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start -1.2 -1.2) (end 1.2 -1.2) (layer F.SilkS) (width 0.12)) + (fp_line (start 1.2 -1.2) (end 1.2 1.2) (layer F.SilkS) (width 0.12)) + (fp_line (start 1.2 1.2) (end -1.2 1.2) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.2 1.2) (end -1.2 -1.2) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.5 -1.5) (end 1.5 -1.5) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.5 1.5) (end 1.5 -1.5) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.5 1.5) (end -1.5 1.5) (layer F.CrtYd) (width 0.05)) + (pad 1 smd rect (at 0 0) (size 2 2) (layers Top F.Mask) + (net 1 GND)) + ) + + (module TestPoint:TestPoint_Pad_2.0x2.0mm (layer Top) (tedit 5A0F774F) (tstamp 5B6E4045) + (at 129.54 92.71) + (descr "SMD rectangular pad as test Point, square 2.0mm side length") + (tags "test point SMD pad rectangle square") + (path /5B6DFACA/5B6E1710) + (attr virtual) + (fp_text reference TP2 (at 0 -1.998) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value TestPoint (at 0 2.05) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start 1.5 1.5) (end -1.5 1.5) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.5 1.5) (end 1.5 -1.5) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.5 -1.5) (end 1.5 -1.5) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.2 1.2) (end -1.2 -1.2) (layer F.SilkS) (width 0.12)) + (fp_line (start 1.2 1.2) (end -1.2 1.2) (layer F.SilkS) (width 0.12)) + (fp_line (start 1.2 -1.2) (end 1.2 1.2) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.2 -1.2) (end 1.2 -1.2) (layer F.SilkS) (width 0.12)) + (fp_text user %R (at 0 -2) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (pad 1 smd rect (at 0 0) (size 2 2) (layers Top F.Mask) + (net 3 VCC)) + ) + + (module TestPoint:TestPoint_Pad_2.0x2.0mm (layer Top) (tedit 5A0F774F) (tstamp 5B6E0A76) + (at 129.54 81.28) + (descr "SMD rectangular pad as test Point, square 2.0mm side length") + (tags "test point SMD pad rectangle square") + (path /5B6DFC7E/5B70A1B5) + (attr virtual) + (fp_text reference TP1 (at 0 -1.998) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value TestPoint (at 0 2.05) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text user %R (at 0 -2) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start -1.2 -1.2) (end 1.2 -1.2) (layer F.SilkS) (width 0.12)) + (fp_line (start 1.2 -1.2) (end 1.2 1.2) (layer F.SilkS) (width 0.12)) + (fp_line (start 1.2 1.2) (end -1.2 1.2) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.2 1.2) (end -1.2 -1.2) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.5 -1.5) (end 1.5 -1.5) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.5 1.5) (end 1.5 -1.5) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.5 1.5) (end -1.5 1.5) (layer F.CrtYd) (width 0.05)) + (pad 1 smd rect (at 0 0) (size 2 2) (layers Top F.Mask) + (net 16 "Net-(D2-PadC)")) + ) + + (module receive_v1_1:WS2812 (layer Top) (tedit 0) (tstamp 5B6E5464) + (at 93.9038 110.6932 180) + (path /5B6DFACA/B33006915ED25CA7) + (fp_text reference IC3 (at -1.53 0.32 180) (layer F.SilkS) + (effects (font (size 0.57912 0.57912) (thickness 0.048768)) (justify right top)) + ) + (fp_text value WS2812 (at 0 0 180) (layer F.SilkS) hide + (effects (font (size 1.27 1.27) (thickness 0.15)) (justify right top)) + ) + (fp_line (start -2.2 -2.5) (end -2.5 -2.2) (layer F.SilkS) (width 0.127)) + (fp_line (start -2.5 -2.2) (end -2.5 2.5) (layer F.SilkS) (width 0.127)) + (fp_poly (pts (xy 1.7 2.1) (xy 2.7 2.1) (xy 2.7 1.1) (xy 1.7 1.1)) (layer Dwgs.User) (width 0)) + (fp_poly (pts (xy 1.7 0.5) (xy 2.7 0.5) (xy 2.7 -0.5) (xy 1.7 -0.5)) (layer Dwgs.User) (width 0)) + (fp_poly (pts (xy -2.7 2.1) (xy -1.7 2.1) (xy -1.7 1.1) (xy -2.7 1.1)) (layer Dwgs.User) (width 0)) + (fp_poly (pts (xy -2.7 0.5) (xy -1.7 0.5) (xy -1.7 -0.5) (xy -2.7 -0.5)) (layer Dwgs.User) (width 0)) + (fp_poly (pts (xy 1.7 -1.1) (xy 2.7 -1.1) (xy 2.7 -2.1) (xy 1.7 -2.1)) (layer Dwgs.User) (width 0)) + (fp_poly (pts (xy -2.7 -1.1) (xy -1.7 -1.1) (xy -1.7 -2.1) (xy -2.7 -2.1)) (layer Dwgs.User) (width 0)) + (fp_line (start -2.5 -2.5) (end -2.5 -2.2) (layer F.SilkS) (width 0.127)) + (fp_line (start -2.2 -2.5) (end -2.5 -2.5) (layer F.SilkS) (width 0.127)) + (fp_line (start 2.5 -2.5) (end -2.2 -2.5) (layer F.SilkS) (width 0.127)) + (fp_line (start 2.5 2.5) (end 2.5 -2.5) (layer F.SilkS) (width 0.127)) + (fp_line (start -2.5 2.5) (end 2.5 2.5) (layer F.SilkS) (width 0.127)) + (pad 6 smd rect (at 2.3 -1.6 180) (size 1.2 1) (layers Top F.Paste F.Mask) + (net 1 GND) (solder_mask_margin 0.1016)) + (pad 5 smd rect (at 2.3 0 180) (size 1.2 1) (layers Top F.Paste F.Mask) + (net 3 VCC) (solder_mask_margin 0.1016)) + (pad 1 smd rect (at -2.3 -1.6 180) (size 1.2 1) (layers Top F.Paste F.Mask) + (net 11 "Net-(IC3-Pad1)") (solder_mask_margin 0.1016)) + (pad 2 smd rect (at -2.3 0 180) (size 1.2 1) (layers Top F.Paste F.Mask) + (net 12 "Net-(IC3-Pad2)") (solder_mask_margin 0.1016)) + (pad 3 smd rect (at -2.3 1.6 180) (size 1.2 1) (layers Top F.Paste F.Mask) + (net 24 PWR_LED) (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:C1206 (layer Top) (tedit 0) (tstamp 5B6DEA4E) + (at 92.71 105.41 180) + (descr CAPACITOR) + (path /5B6DFACA/33354583271174E6) + (fp_text reference C1 (at -1.27 -1.27 180) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_text value 4.7uF (at -1.27 2.54 180) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_poly (pts (xy -0.1999 0.4001) (xy 0.1999 0.4001) (xy 0.1999 -0.4001) (xy -0.1999 -0.4001)) (layer F.Adhes) (width 0)) + (fp_poly (pts (xy 0.9517 0.8491) (xy 1.7018 0.8491) (xy 1.7018 -0.8509) (xy 0.9517 -0.8509)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -1.7018 0.8509) (xy -0.9517 0.8509) (xy -0.9517 -0.8491) (xy -1.7018 -0.8491)) (layer F.Fab) (width 0)) + (fp_line (start -0.965 0.787) (end 0.965 0.787) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.965 -0.787) (end 0.965 -0.787) (layer F.Fab) (width 0.1016)) + (fp_line (start 2.473 -0.983) (end 2.473 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -2.473 0.983) (end -2.473 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 2.473 0.983) (end -2.473 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -2.473 -0.983) (end 2.473 -0.983) (layer Dwgs.User) (width 0.0508)) + (pad 2 smd rect (at 1.4 0 180) (size 1.6 1.8) (layers Top F.Paste F.Mask) + (net 5 /receive_v1_1_1/IND) (solder_mask_margin 0.1016)) + (pad 1 smd rect (at -1.4 0 180) (size 1.6 1.8) (layers Top F.Paste F.Mask) + (net 6 "Net-(C1-Pad1)") (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:C0805 (layer Top) (tedit 0) (tstamp 5B6DEA86) + (at 99.29735 105.3161 180) + (descr CAPACITOR

) + (path /5B6DFACA/D9A42AEA629E9F7E) + (fp_text reference C5 (at -1.27 -1.27 180) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_text value 1uF (at -1.27 2.54 180) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_poly (pts (xy -0.1001 0.4001) (xy 0.1001 0.4001) (xy 0.1001 -0.4001) (xy -0.1001 -0.4001)) (layer F.Adhes) (width 0)) + (fp_poly (pts (xy 0.3556 0.7239) (xy 1.1057 0.7239) (xy 1.1057 -0.7262) (xy 0.3556 -0.7262)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -1.0922 0.7239) (xy -0.3421 0.7239) (xy -0.3421 -0.7262) (xy -1.0922 -0.7262)) (layer F.Fab) (width 0)) + (fp_line (start 1.973 -0.983) (end 1.973 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -0.356 0.66) (end 0.381 0.66) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.381 -0.66) (end 0.381 -0.66) (layer F.Fab) (width 0.1016)) + (fp_line (start -1.973 0.983) (end -1.973 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 1.973 0.983) (end -1.973 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -1.973 -0.983) (end 1.973 -0.983) (layer Dwgs.User) (width 0.0508)) + (pad 2 smd rect (at 0.95 0 180) (size 1.3 1.5) (layers Top F.Paste F.Mask) + (net 6 "Net-(C1-Pad1)") (solder_mask_margin 0.1016)) + (pad 1 smd rect (at -0.95 0 180) (size 1.3 1.5) (layers Top F.Paste F.Mask) + (net 5 /receive_v1_1_1/IND) (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:SMBJ (layer Top) (tedit 0) (tstamp 5B6DEA94) + (at 95.25 92.71 180) + (descr "DO-214AA Modified J_BEND

\nSource: www.rsonline.de .. SMBJ12/C/15/C/24/C/30/C/5.0/C/7.5/C Voltage Suppressor. Data Sheet") + (path /5B6DFACA/D34E0B9D7F8C6C1C) + (fp_text reference D1 (at 3.81 -0.635 270) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_text value "TVS 6V8" (at -1.905 3.81 180) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_poly (pts (xy 2.25 1.1) (xy 2.8 1.1) (xy 2.8 -1.1) (xy 2.25 -1.1)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -2.8 1.1) (xy -2.25 1.1) (xy -2.25 -1.1) (xy -2.8 -1.1)) (layer F.Fab) (width 0)) + (fp_line (start -2.24 -1.92) (end 2.24 -1.92) (layer F.SilkS) (width 0.1016)) + (fp_line (start -2.24 1.92) (end -2.24 -1.92) (layer F.Fab) (width 0.1016)) + (fp_line (start 2.24 1.92) (end -2.24 1.92) (layer F.SilkS) (width 0.1016)) + (fp_line (start 2.24 -1.92) (end 2.24 1.92) (layer F.Fab) (width 0.1016)) + (pad A smd rect (at 2.04 0) (size 1.78 2.16) (layers Top F.Paste F.Mask) + (net 1 GND) (solder_mask_margin 0.1016)) + (pad C smd rect (at -2.03 0 180) (size 1.78 2.16) (layers Top F.Paste F.Mask) + (net 2 PWR_IN) (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:WS2812 (layer Top) (tedit 0) (tstamp 5B6DEB3B) + (at 141.605 98.1202) + (path /5B6DFACA/53D52AEB541775CA) + (fp_text reference IC2 (at 0.635 1.5748) (layer F.SilkS) + (effects (font (size 0.57912 0.57912) (thickness 0.048768)) (justify right top)) + ) + (fp_text value WS2812 (at 3.175 3.4798) (layer F.SilkS) hide + (effects (font (size 1.27 1.27) (thickness 0.15)) (justify right top)) + ) + (fp_line (start -2.2 -2.5) (end -2.5 -2.2) (layer F.SilkS) (width 0.127)) + (fp_line (start -2.5 -2.2) (end -2.5 2.5) (layer F.SilkS) (width 0.127)) + (fp_poly (pts (xy 1.7 2.1) (xy 2.7 2.1) (xy 2.7 1.1) (xy 1.7 1.1)) (layer Dwgs.User) (width 0)) + (fp_poly (pts (xy 1.7 0.5) (xy 2.7 0.5) (xy 2.7 -0.5) (xy 1.7 -0.5)) (layer Dwgs.User) (width 0)) + (fp_poly (pts (xy -2.7 2.1) (xy -1.7 2.1) (xy -1.7 1.1) (xy -2.7 1.1)) (layer Dwgs.User) (width 0)) + (fp_poly (pts (xy -2.7 0.5) (xy -1.7 0.5) (xy -1.7 -0.5) (xy -2.7 -0.5)) (layer Dwgs.User) (width 0)) + (fp_poly (pts (xy 1.7 -1.1) (xy 2.7 -1.1) (xy 2.7 -2.1) (xy 1.7 -2.1)) (layer Dwgs.User) (width 0)) + (fp_poly (pts (xy -2.7 -1.1) (xy -1.7 -1.1) (xy -1.7 -2.1) (xy -2.7 -2.1)) (layer Dwgs.User) (width 0)) + (fp_line (start -2.5 -2.5) (end -2.5 -2.2) (layer F.SilkS) (width 0.127)) + (fp_line (start -2.2 -2.5) (end -2.5 -2.5) (layer F.SilkS) (width 0.127)) + (fp_line (start 2.5 -2.5) (end -2.2 -2.5) (layer F.SilkS) (width 0.127)) + (fp_line (start 2.5 2.5) (end 2.5 -2.5) (layer F.SilkS) (width 0.127)) + (fp_line (start -2.5 2.5) (end 2.5 2.5) (layer F.SilkS) (width 0.127)) + (pad 6 smd rect (at 2.3 -1.6) (size 1.2 1) (layers Top F.Paste F.Mask) + (net 1 GND) (solder_mask_margin 0.1016)) + (pad 5 smd rect (at 2.3 0) (size 1.2 1) (layers Top F.Paste F.Mask) + (net 3 VCC) (solder_mask_margin 0.1016)) + (pad 1 smd rect (at -2.3 -1.6) (size 1.2 1) (layers Top F.Paste F.Mask) + (net 10 "Net-(IC2-Pad1)") (solder_mask_margin 0.1016)) + (pad 2 smd rect (at -2.3 0) (size 1.2 1) (layers Top F.Paste F.Mask) + (net 4 DOUT) (solder_mask_margin 0.1016)) + (pad 3 smd rect (at -2.3 1.6) (size 1.2 1) (layers Top F.Paste F.Mask) + (net 24 PWR_LED) (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:SOD323_ST (layer Top) (tedit 0) (tstamp 5B6DEB65) + (at 107.188 80.264 270) + (descr "SOD-323

\nSource: www.st.com, BAT60J.pdf") + (path /5B6DFC7E/4C475A1A20478EC3) + (fp_text reference D2 (at -4.064 0.508 270) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_text value BAT60J (at -1.65 2 270) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_poly (pts (xy -0.85 0.55) (xy -0.05 0.55) (xy -0.05 -0.55) (xy -0.85 -0.55)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy 0.8 0.15) (xy 1.35 0.15) (xy 1.35 -0.15) (xy 0.8 -0.15)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -1.35 0.15) (xy -0.8 0.15) (xy -0.8 -0.15) (xy -1.35 -0.15)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -0.65 0.55) (xy -0.05 0.55) (xy -0.05 -0.55) (xy -0.65 -0.55)) (layer F.SilkS) (width 0)) + (fp_line (start -0.85 0.55) (end -0.85 -0.55) (layer F.Fab) (width 0.1016)) + (fp_line (start 0.85 0.55) (end -0.85 0.55) (layer F.SilkS) (width 0.1016)) + (fp_line (start 0.85 -0.55) (end 0.85 0.55) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.85 -0.55) (end 0.85 -0.55) (layer F.SilkS) (width 0.1016)) + (pad A smd rect (at 1.25 0 270) (size 0.8 0.6) (layers Top F.Paste F.Mask) + (net 19 "Net-(D2-PadA)") (solder_mask_margin 0.1016)) + (pad C smd rect (at -1.25 0 270) (size 0.8 0.6) (layers Top F.Paste F.Mask) + (net 16 "Net-(D2-PadC)") (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:R0805 (layer Top) (tedit 0) (tstamp 5B6DEB72) + (at 100.965 90.805 180) + (descr RESISTOR

) + (path /5B6DFC7E/CCADE161F5E59E3A) + (fp_text reference R5 (at -0.635 -1.27 180) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_text value 1k (at -0.635 2.54 180) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_poly (pts (xy -0.1999 0.5001) (xy 0.1999 0.5001) (xy 0.1999 -0.5001) (xy -0.1999 -0.5001)) (layer F.Adhes) (width 0)) + (fp_poly (pts (xy -1.0668 0.6985) (xy -0.4168 0.6985) (xy -0.4168 -0.7015) (xy -1.0668 -0.7015)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy 0.4064 0.6985) (xy 1.0564 0.6985) (xy 1.0564 -0.7015) (xy 0.4064 -0.7015)) (layer F.Fab) (width 0)) + (fp_line (start -1.973 0.983) (end -1.973 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 1.973 0.983) (end -1.973 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 1.973 -0.983) (end 1.973 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -1.973 -0.983) (end 1.973 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -0.41 0.635) (end 0.41 0.635) (layer F.Fab) (width 0.1524)) + (fp_line (start -0.41 -0.635) (end 0.41 -0.635) (layer F.Fab) (width 0.1524)) + (pad 2 smd rect (at 0.95 0 180) (size 1.3 1.5) (layers Top F.Paste F.Mask) + (net 20 "Net-(C6-Pad2)") (solder_mask_margin 0.1016)) + (pad 1 smd rect (at -0.95 0 180) (size 1.3 1.5) (layers Top F.Paste F.Mask) + (net 19 "Net-(D2-PadA)") (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:R0805 (layer Top) (tedit 0) (tstamp 5B6DEB80) + (at 107.63 85.09 90) + (descr RESISTOR

) + (path /5B6DFC7E/EF632DAE64669C67) + (fp_text reference R6 (at -0.635 -1.27 90) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_text value 1k (at -0.635 2.54 90) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_poly (pts (xy -0.1999 0.5001) (xy 0.1999 0.5001) (xy 0.1999 -0.5001) (xy -0.1999 -0.5001)) (layer F.Adhes) (width 0)) + (fp_poly (pts (xy -1.0668 0.6985) (xy -0.4168 0.6985) (xy -0.4168 -0.7015) (xy -1.0668 -0.7015)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy 0.4064 0.6985) (xy 1.0564 0.6985) (xy 1.0564 -0.7015) (xy 0.4064 -0.7015)) (layer F.Fab) (width 0)) + (fp_line (start -1.973 0.983) (end -1.973 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 1.973 0.983) (end -1.973 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 1.973 -0.983) (end 1.973 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -1.973 -0.983) (end 1.973 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -0.41 0.635) (end 0.41 0.635) (layer F.Fab) (width 0.1524)) + (fp_line (start -0.41 -0.635) (end 0.41 -0.635) (layer F.Fab) (width 0.1524)) + (pad 2 smd rect (at 0.95 0 90) (size 1.3 1.5) (layers Top F.Paste F.Mask) + (net 22 "Net-(D3-PadA)") (solder_mask_margin 0.1016)) + (pad 1 smd rect (at -0.95 0 90) (size 1.3 1.5) (layers Top F.Paste F.Mask) + (net 21 GPIO14) (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:C0805 (layer Top) (tedit 0) (tstamp 5B6E51B2) + (at 101.6 94.93 90) + (descr CAPACITOR

) + (path /5B6DFC7E/A3ABC6EF65EADBD0) + (fp_text reference C6 (at 0.315 1.27 90) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_text value 1uF (at -1.27 2.54 90) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_poly (pts (xy -0.1001 0.4001) (xy 0.1001 0.4001) (xy 0.1001 -0.4001) (xy -0.1001 -0.4001)) (layer F.Adhes) (width 0)) + (fp_poly (pts (xy 0.3556 0.7239) (xy 1.1057 0.7239) (xy 1.1057 -0.7262) (xy 0.3556 -0.7262)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -1.0922 0.7239) (xy -0.3421 0.7239) (xy -0.3421 -0.7262) (xy -1.0922 -0.7262)) (layer F.Fab) (width 0)) + (fp_line (start 1.973 -0.983) (end 1.973 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -0.356 0.66) (end 0.381 0.66) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.381 -0.66) (end 0.381 -0.66) (layer F.Fab) (width 0.1016)) + (fp_line (start -1.973 0.983) (end -1.973 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 1.973 0.983) (end -1.973 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -1.973 -0.983) (end 1.973 -0.983) (layer Dwgs.User) (width 0.0508)) + (pad 2 smd rect (at 0.95 0 90) (size 1.3 1.5) (layers Top F.Paste F.Mask) + (net 20 "Net-(C6-Pad2)") (solder_mask_margin 0.1016)) + (pad 1 smd rect (at -0.95 0 90) (size 1.3 1.5) (layers Top F.Paste F.Mask) + (net 2 PWR_IN) (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:SOD323_ST (layer Top) (tedit 0) (tstamp 5B6DEB9C) + (at 109.03 80.2 270) + (descr "SOD-323

\nSource: www.st.com, BAT60J.pdf") + (path /5B6DFC7E/40D44ED439967F7A) + (fp_text reference D3 (at -1.65 -0.75 270) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_text value BAT60J (at -1.65 2 270) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_poly (pts (xy -0.85 0.55) (xy -0.05 0.55) (xy -0.05 -0.55) (xy -0.85 -0.55)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy 0.8 0.15) (xy 1.35 0.15) (xy 1.35 -0.15) (xy 0.8 -0.15)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -1.35 0.15) (xy -0.8 0.15) (xy -0.8 -0.15) (xy -1.35 -0.15)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -0.65 0.55) (xy -0.05 0.55) (xy -0.05 -0.55) (xy -0.65 -0.55)) (layer F.SilkS) (width 0)) + (fp_line (start -0.85 0.55) (end -0.85 -0.55) (layer F.Fab) (width 0.1016)) + (fp_line (start 0.85 0.55) (end -0.85 0.55) (layer F.SilkS) (width 0.1016)) + (fp_line (start 0.85 -0.55) (end 0.85 0.55) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.85 -0.55) (end 0.85 -0.55) (layer F.SilkS) (width 0.1016)) + (pad A smd rect (at 1.25 0 270) (size 0.8 0.6) (layers Top F.Paste F.Mask) + (net 22 "Net-(D3-PadA)") (solder_mask_margin 0.1016)) + (pad C smd rect (at -1.25 0 270) (size 0.8 0.6) (layers Top F.Paste F.Mask) + (net 16 "Net-(D2-PadC)") (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:C0805 (layer Top) (tedit 0) (tstamp 5B6DEBA9) + (at 133.35 94.615 270) + (descr CAPACITOR

) + (path /5B6DFC7E/EBEB2313A6F2A611) + (fp_text reference C7 (at 0 -1.27 270) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_text value 100nF (at -1.27 2.54 270) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_poly (pts (xy -0.1001 0.4001) (xy 0.1001 0.4001) (xy 0.1001 -0.4001) (xy -0.1001 -0.4001)) (layer F.Adhes) (width 0)) + (fp_poly (pts (xy 0.3556 0.7239) (xy 1.1057 0.7239) (xy 1.1057 -0.7262) (xy 0.3556 -0.7262)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -1.0922 0.7239) (xy -0.3421 0.7239) (xy -0.3421 -0.7262) (xy -1.0922 -0.7262)) (layer F.Fab) (width 0)) + (fp_line (start 1.973 -0.983) (end 1.973 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -0.356 0.66) (end 0.381 0.66) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.381 -0.66) (end 0.381 -0.66) (layer F.Fab) (width 0.1016)) + (fp_line (start -1.973 0.983) (end -1.973 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 1.973 0.983) (end -1.973 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -1.973 -0.983) (end 1.973 -0.983) (layer Dwgs.User) (width 0.0508)) + (pad 2 smd rect (at 0.95 0 270) (size 1.3 1.5) (layers Top F.Paste F.Mask) + (net 1 GND) (solder_mask_margin 0.1016)) + (pad 1 smd rect (at -0.95 0 270) (size 1.3 1.5) (layers Top F.Paste F.Mask) + (net 3 VCC) (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:C1210 (layer Top) (tedit 0) (tstamp 5B6DEBB7) + (at 102.362 82.804 180) + (descr CAPACITOR) + (path /5B6DFC7E/A7C735F03607F4DE) + (fp_text reference C8 (at -1.905 -1.905 180) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_text value 4,7uF (at -1.905 3.175 180) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_poly (pts (xy -0.1999 0.4001) (xy 0.1999 0.4001) (xy 0.1999 -0.4001) (xy -0.1999 -0.4001)) (layer F.Adhes) (width 0)) + (fp_poly (pts (xy 0.9517 1.3045) (xy 1.7018 1.3045) (xy 1.7018 -1.2954) (xy 0.9517 -1.2954)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -1.7018 1.2954) (xy -0.9517 1.2954) (xy -0.9517 -1.3045) (xy -1.7018 -1.3045)) (layer F.Fab) (width 0)) + (fp_line (start 2.473 -1.483) (end 2.473 1.483) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -0.9652 1.2446) (end 0.9652 1.2446) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.9652 -1.2446) (end 0.9652 -1.2446) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.473 1.483) (end -2.473 -1.483) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 2.473 1.483) (end -2.473 1.483) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -2.473 -1.483) (end 2.473 -1.483) (layer Dwgs.User) (width 0.0508)) + (pad 2 smd rect (at 1.4 0 180) (size 1.6 2.7) (layers Top F.Paste F.Mask) + (net 1 GND) (solder_mask_margin 0.1016)) + (pad 1 smd rect (at -1.4 0 180) (size 1.6 2.7) (layers Top F.Paste F.Mask) + (net 3 VCC) (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:R0805 (layer Top) (tedit 0) (tstamp 5B6DEBC5) + (at 95.57 88.9) + (descr RESISTOR

) + (path /5B6DFACA/BBCFCC776C012852) + (fp_text reference R7 (at 0.315 -2.54) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_text value 10k (at -0.635 2.54) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_poly (pts (xy -0.1999 0.5001) (xy 0.1999 0.5001) (xy 0.1999 -0.5001) (xy -0.1999 -0.5001)) (layer F.Adhes) (width 0)) + (fp_poly (pts (xy -1.0668 0.6985) (xy -0.4168 0.6985) (xy -0.4168 -0.7015) (xy -1.0668 -0.7015)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy 0.4064 0.6985) (xy 1.0564 0.6985) (xy 1.0564 -0.7015) (xy 0.4064 -0.7015)) (layer F.Fab) (width 0)) + (fp_line (start -1.973 0.983) (end -1.973 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 1.973 0.983) (end -1.973 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 1.973 -0.983) (end 1.973 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -1.973 -0.983) (end 1.973 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -0.41 0.635) (end 0.41 0.635) (layer F.Fab) (width 0.1524)) + (fp_line (start -0.41 -0.635) (end 0.41 -0.635) (layer F.Fab) (width 0.1524)) + (pad 2 smd rect (at 0.95 0) (size 1.3 1.5) (layers Top F.Paste F.Mask) + (net 2 PWR_IN) (solder_mask_margin 0.1016)) + (pad 1 smd rect (at -0.95 0) (size 1.3 1.5) (layers Top F.Paste F.Mask) + (net 1 GND) (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:009176002 (layer Top) (tedit 0) (tstamp 5B6DEBD3) + (at 123.444 105.918 180) + (descr "Wire to Board Strip IDC Connector 2 WAY

\nSource: http://www.avx.com/docs/Catalogs/9176.pdf") + (path /5B6DFACA/97C2823C753049C4) + (fp_text reference X1 (at -3.75 -2.75 180) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_text value 00917?0026 (at -3.75 4 180) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_line (start -1.4476 -2.0305) (end -1.4476 -2.4563) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.452 -2.0305) (end -2.452 -2.4563) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.452 -2.0305) (end -2.976 -2.0305) (layer F.Fab) (width 0.1016)) + (fp_line (start -1.4476 -2.0305) (end -2.452 -2.0305) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.9127 -2.0305) (end -1.4476 -2.0305) (layer F.Fab) (width 0.1016)) + (fp_line (start -1.5896 -0.7314) (end -1.5896 -1.2773) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.321 -0.7314) (end -2.321 -1.2773) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.321 -1.2773) (end -2.976 -1.2773) (layer F.Fab) (width 0.1016)) + (fp_line (start -1.5896 -1.2773) (end -2.321 -1.2773) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.9127 -1.2773) (end -1.5896 -1.2773) (layer F.Fab) (width 0.1016)) + (fp_line (start -1.5896 -0.7314) (end -0.9127 -0.7314) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.321 -0.7314) (end -1.5896 -0.7314) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.976 -0.7314) (end -2.321 -0.7314) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.3101 1.2664) (end -2.3101 0.7205) (layer F.Fab) (width 0.1016)) + (fp_line (start -1.5896 1.2664) (end -1.5896 0.7205) (layer F.Fab) (width 0.1016)) + (fp_line (start -1.5896 1.2664) (end -0.9127 1.2664) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.3101 1.2664) (end -1.5896 1.2664) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.976 1.2664) (end -2.3101 1.2664) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.3101 0.7205) (end -2.976 0.7205) (layer F.Fab) (width 0.1016)) + (fp_line (start -1.5896 0.7205) (end -2.3101 0.7205) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.9127 0.7205) (end -1.5896 0.7205) (layer F.Fab) (width 0.1016)) + (fp_line (start -1.4695 2.0415) (end -0.9127 2.0415) (layer F.Fab) (width 0.1016)) + (fp_line (start -1.4586 2.0415) (end -1.4586 2.4454) (layer F.Fab) (width 0.1016)) + (fp_line (start -1.4695 2.0415) (end -1.4586 2.0415) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.4738 2.0415) (end -1.4695 2.0415) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.4629 2.0415) (end -2.4629 2.4454) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.4738 2.0415) (end -2.4629 2.0415) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.976 2.0415) (end -2.4738 2.0415) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.976 -2.0305) (end -2.976 -2.4563) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.976 -1.2773) (end -2.976 -2.0305) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.976 -0.7314) (end -2.976 -1.2773) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.976 0.7205) (end -2.976 -0.7314) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.976 1.2664) (end -2.976 0.7205) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.976 2.0415) (end -2.976 1.2664) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.976 2.4454) (end -2.976 2.0415) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.9127 -2.0305) (end -0.9127 -2.4563) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.9127 -1.2773) (end -0.9127 -2.0305) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.9127 -0.7314) (end -0.9127 -1.2773) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.9127 0.7205) (end -0.9127 -0.7314) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.9127 1.2664) (end -0.9127 0.7205) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.9127 2.0415) (end -0.9127 1.2664) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.9127 2.4454) (end -0.9127 2.0415) (layer F.Fab) (width 0.1016)) + (fp_line (start 2.4978 -2.0305) (end 2.4978 -2.4563) (layer F.Fab) (width 0.1016)) + (fp_line (start 1.4934 -2.0305) (end 1.4934 -2.4563) (layer F.Fab) (width 0.1016)) + (fp_line (start 1.4934 -2.0305) (end 0.9694 -2.0305) (layer F.Fab) (width 0.1016)) + (fp_line (start 2.4978 -2.0305) (end 1.4934 -2.0305) (layer F.Fab) (width 0.1016)) + (fp_line (start 3.0327 -2.0305) (end 2.4978 -2.0305) (layer F.Fab) (width 0.1016)) + (fp_line (start 2.3558 -0.7314) (end 2.3558 -1.2773) (layer F.Fab) (width 0.1016)) + (fp_line (start 1.6244 -0.7314) (end 1.6244 -1.2773) (layer F.Fab) (width 0.1016)) + (fp_line (start 1.6244 -1.2773) (end 0.9694 -1.2773) (layer F.Fab) (width 0.1016)) + (fp_line (start 2.3558 -1.2773) (end 1.6244 -1.2773) (layer F.Fab) (width 0.1016)) + (fp_line (start 3.0327 -1.2773) (end 2.3558 -1.2773) (layer F.Fab) (width 0.1016)) + (fp_line (start 2.3558 -0.7314) (end 3.0327 -0.7314) (layer F.Fab) (width 0.1016)) + (fp_line (start 1.6244 -0.7314) (end 2.3558 -0.7314) (layer F.Fab) (width 0.1016)) + (fp_line (start 0.9694 -0.7314) (end 1.6244 -0.7314) (layer F.Fab) (width 0.1016)) + (fp_line (start 1.6353 1.2664) (end 1.6353 0.7205) (layer F.Fab) (width 0.1016)) + (fp_line (start 2.3558 1.2664) (end 2.3558 0.7205) (layer F.Fab) (width 0.1016)) + (fp_line (start 2.3558 1.2664) (end 3.0327 1.2664) (layer F.Fab) (width 0.1016)) + (fp_line (start 1.6353 1.2664) (end 2.3558 1.2664) (layer F.Fab) (width 0.1016)) + (fp_line (start 0.9694 1.2664) (end 1.6353 1.2664) (layer F.Fab) (width 0.1016)) + (fp_line (start 1.6353 0.7205) (end 0.9694 0.7205) (layer F.Fab) (width 0.1016)) + (fp_line (start 2.3558 0.7205) (end 1.6353 0.7205) (layer F.Fab) (width 0.1016)) + (fp_line (start 3.0327 0.7205) (end 2.3558 0.7205) (layer F.Fab) (width 0.1016)) + (fp_line (start 2.4759 2.0415) (end 3.0327 2.0415) (layer F.Fab) (width 0.1016)) + (fp_line (start 2.4868 2.0415) (end 2.4868 2.4454) (layer F.Fab) (width 0.1016)) + (fp_line (start 2.4759 2.0415) (end 2.4868 2.0415) (layer F.Fab) (width 0.1016)) + (fp_line (start 1.4716 2.0415) (end 2.4759 2.0415) (layer F.Fab) (width 0.1016)) + (fp_line (start 1.4825 2.0415) (end 1.4825 2.4454) (layer F.Fab) (width 0.1016)) + (fp_line (start 1.4716 2.0415) (end 1.4825 2.0415) (layer F.Fab) (width 0.1016)) + (fp_line (start 0.9694 2.0415) (end 1.4716 2.0415) (layer F.Fab) (width 0.1016)) + (fp_line (start 0.9694 -2.0305) (end 0.9694 -2.4563) (layer F.Fab) (width 0.1016)) + (fp_line (start 0.9694 -1.2773) (end 0.9694 -2.0305) (layer F.Fab) (width 0.1016)) + (fp_line (start 0.9694 -0.7314) (end 0.9694 -1.2773) (layer F.Fab) (width 0.1016)) + (fp_line (start 0.9694 0.7205) (end 0.9694 -0.7314) (layer F.Fab) (width 0.1016)) + (fp_line (start 0.9694 1.2664) (end 0.9694 0.7205) (layer F.Fab) (width 0.1016)) + (fp_line (start 0.9694 2.0415) (end 0.9694 1.2664) (layer F.Fab) (width 0.1016)) + (fp_line (start 0.9694 2.4454) (end 0.9694 2.0415) (layer F.Fab) (width 0.1016)) + (fp_line (start 3.0327 -2.0305) (end 3.0327 -2.4563) (layer F.Fab) (width 0.1016)) + (fp_line (start 3.0327 -1.2773) (end 3.0327 -2.0305) (layer F.Fab) (width 0.1016)) + (fp_line (start 3.0327 -0.7314) (end 3.0327 -1.2773) (layer F.Fab) (width 0.1016)) + (fp_line (start 3.0327 0.7205) (end 3.0327 -0.7314) (layer F.Fab) (width 0.1016)) + (fp_line (start 3.0327 1.2664) (end 3.0327 0.7205) (layer F.Fab) (width 0.1016)) + (fp_line (start 3.0327 2.0415) (end 3.0327 1.2664) (layer F.Fab) (width 0.1016)) + (fp_line (start 3.0327 2.4454) (end 3.0327 2.0415) (layer F.Fab) (width 0.1016)) + (fp_line (start 3.9169 -2.4563) (end 3.9169 2.4454) (layer F.SilkS) (width 0.1016)) + (fp_line (start 3.0327 -2.4563) (end 3.9169 -2.4563) (layer F.Fab) (width 0.1016)) + (fp_line (start 0.9694 -2.4563) (end 3.0327 -2.4563) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.9127 -2.4563) (end 0.9694 -2.4563) (layer F.Fab) (width 0.1016)) + (fp_line (start -1.4476 -2.4563) (end -0.9127 -2.4563) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.976 -2.4563) (end -1.4476 -2.4563) (layer F.Fab) (width 0.1016)) + (fp_line (start -3.9171 -2.4563) (end -2.976 -2.4563) (layer F.Fab) (width 0.1016)) + (fp_line (start -3.9171 2.4454) (end -3.9171 -2.4563) (layer F.SilkS) (width 0.1016)) + (fp_line (start -2.976 2.4454) (end -3.9171 2.4454) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.9127 2.4454) (end -2.976 2.4454) (layer F.Fab) (width 0.1016)) + (fp_line (start 0.9694 2.4454) (end -0.9127 2.4454) (layer F.Fab) (width 0.1016)) + (fp_line (start 3.0327 2.4454) (end 0.9694 2.4454) (layer F.Fab) (width 0.1016)) + (fp_line (start 3.9169 2.4454) (end 3.0327 2.4454) (layer F.Fab) (width 0.1016)) + (pad 2 smd rect (at 2 0 180) (size 3 5) (layers Top F.Paste F.Mask) + (net 1 GND) (solder_mask_margin 0.1016)) + (pad 1 smd rect (at -2 0 180) (size 3 5) (layers Top F.Paste F.Mask) + (net 3 VCC) (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:R1206 (layer Top) (tedit 0) (tstamp 5B6DEC39) + (at 102.87 111.125 180) + (descr RESISTOR) + (path /5B6DFACA/3776C06BD4B64AA6) + (fp_text reference R8 (at -1.27 -1.27 180) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_text value 100R (at -1.27 2.54 180) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_poly (pts (xy -0.3 0.7) (xy 0.3 0.7) (xy 0.3 -0.7) (xy -0.3 -0.7)) (layer F.Adhes) (width 0)) + (fp_poly (pts (xy 0.9525 0.8763) (xy 1.6891 0.8763) (xy 1.6891 -0.8763) (xy 0.9525 -0.8763)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -1.6891 0.8763) (xy -0.9525 0.8763) (xy -0.9525 -0.8763) (xy -1.6891 -0.8763)) (layer F.Fab) (width 0)) + (fp_line (start -2.473 0.983) (end -2.473 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 2.473 0.983) (end -2.473 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 2.473 -0.983) (end 2.473 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -2.473 -0.983) (end 2.473 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 0.9525 -0.8128) (end -0.9652 -0.8128) (layer F.Fab) (width 0.1524)) + (fp_line (start 0.9525 0.8128) (end -0.9652 0.8128) (layer F.Fab) (width 0.1524)) + (pad 1 smd rect (at -1.422 0 180) (size 1.6 1.803) (layers Top F.Paste F.Mask) + (net 10 "Net-(IC2-Pad1)") (solder_mask_margin 0.1016)) + (pad 2 smd rect (at 1.422 0 180) (size 1.6 1.803) (layers Top F.Paste F.Mask) + (net 12 "Net-(IC3-Pad2)") (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:R1206 (layer Top) (tedit 0) (tstamp 5B6DEC47) + (at 103.505 87.63 180) + (descr RESISTOR) + (path /5B6DFACA/5B6EC5DC) + (fp_text reference R9 (at -2.54 -1.27 180) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_text value 0R (at -1.27 2.54 180) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_poly (pts (xy -0.3 0.7) (xy 0.3 0.7) (xy 0.3 -0.7) (xy -0.3 -0.7)) (layer F.Adhes) (width 0)) + (fp_poly (pts (xy 0.9525 0.8763) (xy 1.6891 0.8763) (xy 1.6891 -0.8763) (xy 0.9525 -0.8763)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -1.6891 0.8763) (xy -0.9525 0.8763) (xy -0.9525 -0.8763) (xy -1.6891 -0.8763)) (layer F.Fab) (width 0)) + (fp_line (start -2.473 0.983) (end -2.473 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 2.473 0.983) (end -2.473 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 2.473 -0.983) (end 2.473 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -2.473 -0.983) (end 2.473 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 0.9525 -0.8128) (end -0.9652 -0.8128) (layer F.Fab) (width 0.1524)) + (fp_line (start 0.9525 0.8128) (end -0.9652 0.8128) (layer F.Fab) (width 0.1524)) + (pad 1 smd rect (at -1.422 0 180) (size 1.6 1.803) (layers Top F.Paste F.Mask) + (net 1 GND) (solder_mask_margin 0.1016)) + (pad 2 smd rect (at 1.422 0 180) (size 1.6 1.803) (layers Top F.Paste F.Mask) + (net 1 GND) (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:C1206 (layer Top) (tedit 0) (tstamp 5B6DEC55) + (at 104.775 99.695 270) + (descr CAPACITOR) + (path /5B6DFACA/6FF1E0DBD736F15A) + (fp_text reference C9 (at 0 -2.54 270) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_text value 10uF (at -1.27 2.54 270) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_poly (pts (xy -0.1999 0.4001) (xy 0.1999 0.4001) (xy 0.1999 -0.4001) (xy -0.1999 -0.4001)) (layer F.Adhes) (width 0)) + (fp_poly (pts (xy 0.9517 0.8491) (xy 1.7018 0.8491) (xy 1.7018 -0.8509) (xy 0.9517 -0.8509)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -1.7018 0.8509) (xy -0.9517 0.8509) (xy -0.9517 -0.8491) (xy -1.7018 -0.8491)) (layer F.Fab) (width 0)) + (fp_line (start -0.965 0.787) (end 0.965 0.787) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.965 -0.787) (end 0.965 -0.787) (layer F.Fab) (width 0.1016)) + (fp_line (start 2.473 -0.983) (end 2.473 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -2.473 0.983) (end -2.473 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 2.473 0.983) (end -2.473 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -2.473 -0.983) (end 2.473 -0.983) (layer Dwgs.User) (width 0.0508)) + (pad 2 smd rect (at 1.4 0 270) (size 1.6 1.8) (layers Top F.Paste F.Mask) + (net 5 /receive_v1_1_1/IND) (solder_mask_margin 0.1016)) + (pad 1 smd rect (at -1.4 0 270) (size 1.6 1.8) (layers Top F.Paste F.Mask) + (net 2 PWR_IN) (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:C1206 (layer Top) (tedit 0) (tstamp 5B6DEC63) + (at 101.6 99.695 90) + (descr CAPACITOR) + (path /5B6DFACA/21F9ED814F457455) + (fp_text reference C10 (at -5.715 1.905 90) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_text value 10uF (at -1.27 2.54 90) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_poly (pts (xy -0.1999 0.4001) (xy 0.1999 0.4001) (xy 0.1999 -0.4001) (xy -0.1999 -0.4001)) (layer F.Adhes) (width 0)) + (fp_poly (pts (xy 0.9517 0.8491) (xy 1.7018 0.8491) (xy 1.7018 -0.8509) (xy 0.9517 -0.8509)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -1.7018 0.8509) (xy -0.9517 0.8509) (xy -0.9517 -0.8491) (xy -1.7018 -0.8491)) (layer F.Fab) (width 0)) + (fp_line (start -0.965 0.787) (end 0.965 0.787) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.965 -0.787) (end 0.965 -0.787) (layer F.Fab) (width 0.1016)) + (fp_line (start 2.473 -0.983) (end 2.473 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -2.473 0.983) (end -2.473 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 2.473 0.983) (end -2.473 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -2.473 -0.983) (end 2.473 -0.983) (layer Dwgs.User) (width 0.0508)) + (pad 2 smd rect (at 1.4 0 90) (size 1.6 1.8) (layers Top F.Paste F.Mask) + (net 1 GND) (solder_mask_margin 0.1016)) + (pad 1 smd rect (at -1.4 0 90) (size 1.6 1.8) (layers Top F.Paste F.Mask) + (net 5 /receive_v1_1_1/IND) (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:SMB (layer Top) (tedit 0) (tstamp 5B6DEC71) + (at 97.79 99.06 270) + (descr DIODE) + (path /5B6DFACA/378136B8DCE5EB0D) + (fp_text reference D4 (at -2.54 -2.54 270) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_text value SCHOTTKY-DIODESMD (at -2.159 3.429 270) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_poly (pts (xy -1.35 1.9) (xy -0.8 1.9) (xy -0.8 -1.9) (xy -1.35 -1.9)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy 2.2606 1.0922) (xy 2.794 1.0922) (xy 2.794 -1.0922) (xy 2.2606 -1.0922)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -2.794 1.0922) (xy -2.2606 1.0922) (xy -2.2606 -1.0922) (xy -2.794 -1.0922)) (layer F.Fab) (width 0)) + (fp_line (start 0.193 1) (end 0.193 -1) (layer F.SilkS) (width 0.2032)) + (fp_line (start -0.83 0) (end 0.193 1) (layer F.SilkS) (width 0.2032)) + (fp_line (start 0.193 -1) (end -0.83 0) (layer F.SilkS) (width 0.2032)) + (fp_line (start 2.2606 1.905) (end 2.2606 -1.905) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.2606 1.905) (end -2.2606 -1.905) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.2606 1.905) (end 2.2606 1.905) (layer F.SilkS) (width 0.1016)) + (fp_line (start -2.2606 -1.905) (end 2.2606 -1.905) (layer F.SilkS) (width 0.1016)) + (pad A smd rect (at 2.2 0 270) (size 2.4 2.4) (layers Top F.Paste F.Mask) + (net 6 "Net-(C1-Pad1)") (solder_mask_margin 0.1016)) + (pad C smd rect (at -2.2 0 270) (size 2.4 2.4) (layers Top F.Paste F.Mask) + (net 2 PWR_IN) (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:SMB (layer Top) (tedit 0) (tstamp 5B6DEC80) + (at 92.71 99.06 90) + (descr DIODE) + (path /5B6DFACA/E8A02D8F73B70CE6) + (fp_text reference D5 (at -2.159 -2.159 90) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_text value SCHOTTKY-DIODESMD (at -2.159 3.429 90) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_poly (pts (xy -1.35 1.9) (xy -0.8 1.9) (xy -0.8 -1.9) (xy -1.35 -1.9)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy 2.2606 1.0922) (xy 2.794 1.0922) (xy 2.794 -1.0922) (xy 2.2606 -1.0922)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -2.794 1.0922) (xy -2.2606 1.0922) (xy -2.2606 -1.0922) (xy -2.794 -1.0922)) (layer F.Fab) (width 0)) + (fp_line (start 0.193 1) (end 0.193 -1) (layer F.SilkS) (width 0.2032)) + (fp_line (start -0.83 0) (end 0.193 1) (layer F.SilkS) (width 0.2032)) + (fp_line (start 0.193 -1) (end -0.83 0) (layer F.SilkS) (width 0.2032)) + (fp_line (start 2.2606 1.905) (end 2.2606 -1.905) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.2606 1.905) (end -2.2606 -1.905) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.2606 1.905) (end 2.2606 1.905) (layer F.SilkS) (width 0.1016)) + (fp_line (start -2.2606 -1.905) (end 2.2606 -1.905) (layer F.SilkS) (width 0.1016)) + (pad A smd rect (at 2.2 0 90) (size 2.4 2.4) (layers Top F.Paste F.Mask) + (net 1 GND) (solder_mask_margin 0.1016)) + (pad C smd rect (at -2.2 0 90) (size 2.4 2.4) (layers Top F.Paste F.Mask) + (net 6 "Net-(C1-Pad1)") (solder_mask_margin 0.1016)) + ) + + (gr_text "PD\nTXD\nRXD\nGND\nVCC" (at 133.35 85.725) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.25))) + ) + (gr_text "- +" (at 123.825 101.6) (layer F.SilkS) + (effects (font (size 1.5 1.5) (thickness 0.3))) + ) + (gr_circle (center 117.78605 104.897) (end 148.26605 104.897) (layer Edge.Cuts) (width 0.1524) (tstamp 55745BF74AF0)) + (gr_text SG (at 137.795 106.68) (layer Top) (tstamp 55745BF74FD0) + (effects (font (size 1.6891 1.6891) (thickness 0.14224)) (justify left bottom)) + ) + (gr_text Cocktailglas (at 109.855 132.08) (layer Top) (tstamp 55745BF674C0) + (effects (font (size 1.6891 1.6891) (thickness 0.14224)) (justify left bottom)) + ) + + (segment (start 101.47 99.06) (end 101.6 98.93) (width 0.5) (layer Top) (net 1)) + (segment (start 93.21 99.06) (end 101.47 99.06) (width 0.5) (layer Top) (net 1)) + (segment (start 92.71 98.56) (end 93.21 99.06) (width 0.5) (layer Top) (net 1)) + (segment (start 92.71 96.86) (end 92.71 98.56) (width 0.5) (layer Top) (net 1)) + (segment (start 101.429998 81.28) (end 101.6 81.28) (width 0.5) (layer Top) (net 1)) + (segment (start 97.79 85.07) (end 97.79 84.919998) (width 0.5) (layer Top) (net 1)) + (segment (start 97.81 85.09) (end 97.79 85.07) (width 0.5) (layer Top) (net 1)) + (segment (start 97.79 84.919998) (end 101.429998 81.28) (width 0.8) (layer Top) (net 1)) + (segment (start 94.62 88.9) (end 93.809998 88.9) (width 0.5) (layer Top) (net 1)) + (segment (start 92.71 89.999998) (end 93.809998 88.9) (width 0.8) (layer Top) (net 1)) + (segment (start 93.21 91.94) (end 92.71 91.44) (width 0.5) (layer Top) (net 1)) + (segment (start 93.21 92.71) (end 93.21 91.94) (width 0.5) (layer Top) (net 1)) + (segment (start 92.71 91.44) (end 92.71 89.999998) (width 0.8) (layer Top) (net 1)) + (segment (start 92.71 96.86) (end 92.71 91.44) (width 0.8) (layer Top) (net 1)) + (segment (start 108.975 89.535) (end 104.775 89.535) (width 0.5) (layer Top) (net 1)) + (segment (start 104.775 89.535) (end 104.14 90.17) (width 0.8) (layer Top) (net 1)) + (segment (start 110.31 88.2) (end 108.975 89.535) (width 0.5) (layer Top) (net 1)) + (segment (start 111.56 88.2) (end 110.31 88.2) (width 0.5) (layer Top) (net 1)) + (segment (start 104.14 90.17) (end 104.14 94.615) (width 0.8) (layer Top) (net 1)) + (segment (start 104.14 94.615) (end 104.775 95.25) (width 0.8) (layer Top) (net 1)) + (segment (start 104.775 95.25) (end 107.95 95.25) (width 0.8) (layer Top) (net 1)) + (segment (start 132.395 96.52) (end 133.35 95.565) (width 0.5) (layer Top) (net 1)) + (segment (start 129.54 96.52) (end 132.395 96.52) (width 0.5) (layer Top) (net 1)) + (segment (start 124.16 92.64) (end 124.16 92.2) (width 0.5) (layer Top) (net 1)) + (segment (start 128.04 96.52) (end 124.16 92.64) (width 0.8) (layer Top) (net 1)) + (segment (start 129.54 96.52) (end 128.04 96.52) (width 0.5) (layer Top) (net 1)) + (segment (start 114.007259 97.021065) (end 113.507259 96.521065) (width 0.5) (layer Top) (net 1)) + (segment (start 113.876375 103.059509) (end 112.776375 103.059509) (width 0.5) (layer Top) (net 1)) + (segment (start 112.776375 103.059509) (end 112.726374 103.009508) (width 0.5) (layer Top) (net 1)) + (segment (start 112.726374 101.020396) (end 114.007259 99.739511) (width 0.5) (layer Top) (net 1)) + (segment (start 112.726374 103.009508) (end 112.726374 101.020396) (width 0.5) (layer Top) (net 1)) + (segment (start 114.007259 99.739511) (end 114.007259 99.249509) (width 0.5) (layer Top) (net 1)) + (segment (start 110.361373 103.059509) (end 112.776375 103.059509) (width 0.5) (layer Top) (net 1)) + (segment (start 113.876375 103.059509) (end 115.975703 103.059509) (width 0.5) (layer Top) (net 1)) + (segment (start 115.975703 103.059509) (end 117.187259 104.271065) (width 0.5) (layer Top) (net 1)) + (segment (start 114.007259 99.249509) (end 114.007259 97.021065) (width 0.8) (layer Top) (net 1)) + (segment (start 113.795 95.38) (end 113.795 97.155) (width 0.8) (layer Top) (net 1)) + (segment (start 107.95 95.25) (end 108.585 95.25) (width 0.8) (layer Top) (net 1)) + (segment (start 113.03 94.615) (end 113.795 95.38) (width 0.8) (layer Top) (net 1)) + (segment (start 108.585 95.25) (end 109.22 94.615) (width 0.8) (layer Top) (net 1)) + (segment (start 109.22 94.615) (end 113.03 94.615) (width 0.8) (layer Top) (net 1)) + (segment (start 127.635 96.52) (end 128.04 96.52) (width 0.5) (layer Top) (net 1)) + (segment (start 127 97.155) (end 127.635 96.52) (width 0.5) (layer Top) (net 1)) + (segment (start 113.795 97.155) (end 127 97.155) (width 0.5) (layer Top) (net 1)) + (segment (start 104.927 89.383) (end 104.775 89.535) (width 0.5) (layer Top) (net 1)) + (segment (start 104.927 87.63) (end 104.927 89.383) (width 0.8) (layer Top) (net 1)) + (segment (start 96.603998 86.106) (end 97.79 84.919998) (width 0.8) (layer Top) (net 1)) + (segment (start 93.809998 88.9) (end 96.603998 86.106) (width 0.8) (layer Top) (net 1)) + (segment (start 142.805 96.5202) (end 143.905 96.5202) (width 0.5) (layer Top) (net 1)) + (segment (start 133.35 95.565) (end 134.6 95.565) (width 0.5) (layer Top) (net 1)) + (segment (start 134.6 95.565) (end 134.661 95.504) (width 0.5) (layer Top) (net 1)) + (segment (start 134.661 95.504) (end 137.668 95.504) (width 0.5) (layer Top) (net 1)) + (segment (start 137.668 95.504) (end 138.176 94.996) (width 0.5) (layer Top) (net 1)) + (segment (start 119.797065 104.271065) (end 121.444 105.918) (width 0.5) (layer Top) (net 1)) + (segment (start 117.187259 104.271065) (end 119.797065 104.271065) (width 0.8) (layer Top) (net 1)) + (segment (start 102.083 87.63) (end 101.854 87.63) (width 0.5) (layer Top) (net 1)) + (segment (start 100.962 86.738) (end 100.962 82.804) (width 0.8) (layer Top) (net 1)) + (segment (start 101.854 87.63) (end 100.962 86.738) (width 0.8) (layer Top) (net 1)) + (segment (start 113.962748 99.695) (end 114.007259 99.739511) (width 0.5) (layer Top) (net 1)) + (segment (start 113.345 99.695) (end 113.962748 99.695) (width 0.5) (layer Top) (net 1)) + (segment (start 142.40501 96.12021) (end 142.24 95.9552) (width 0.5) (layer Top) (net 1)) + (segment (start 141.2808 94.996) (end 142.24 95.9552) (width 0.5) (layer Top) (net 1)) + (segment (start 142.24 95.9552) (end 142.367 96.0822) (width 0.5) (layer Top) (net 1)) + (segment (start 142.367 96.0822) (end 142.805 96.5202) (width 0.5) (layer Top) (net 1)) + (segment (start 140.400758 103.41601) (end 142.367 101.449768) (width 0.5) (layer Top) (net 1)) + (segment (start 127.889 111.633) (end 136.10599 103.41601) (width 0.5) (layer Top) (net 1)) + (segment (start 142.367 101.449768) (end 142.367 96.0822) (width 0.5) (layer Top) (net 1)) + (segment (start 107.823 111.633) (end 127.889 111.633) (width 0.5) (layer Top) (net 1)) + (segment (start 91.6038 112.2932) (end 92.7038 112.2932) (width 0.5) (layer Top) (net 1)) + (segment (start 92.7038 112.2932) (end 93.9486 113.538) (width 0.5) (layer Top) (net 1)) + (segment (start 136.10599 103.41601) (end 140.400758 103.41601) (width 0.5) (layer Top) (net 1)) + (segment (start 93.9486 113.538) (end 105.918 113.538) (width 0.5) (layer Top) (net 1)) + (segment (start 105.918 113.538) (end 107.823 111.633) (width 0.5) (layer Top) (net 1)) + (segment (start 100.962 81.747998) (end 101.429998 81.28) (width 0.5) (layer Top) (net 1)) + (segment (start 100.962 82.804) (end 100.962 81.747998) (width 0.5) (layer Top) (net 1)) + (segment (start 139.7 93.497) (end 139.7 94.996) (width 0.5) (layer Top) (net 1)) + (segment (start 139.7 94.996) (end 141.2808 94.996) (width 0.5) (layer Top) (net 1)) + (segment (start 138.176 94.996) (end 139.7 94.996) (width 0.5) (layer Top) (net 1)) + (segment (start 109.856864 102.555) (end 108.585 102.555) (width 0.5) (layer Top) (net 1)) + (segment (start 110.361373 103.059509) (end 109.856864 102.555) (width 0.5) (layer Top) (net 1)) + (segment (start 97.67 88.9) (end 96.52 88.9) (width 0.8) (layer Top) (net 2)) + (segment (start 97.79 89.02) (end 97.67 88.9) (width 0.5) (layer Top) (net 2)) + (segment (start 97.28 93.47) (end 97.79 93.98) (width 0.5) (layer Top) (net 2)) + (segment (start 97.28 92.71) (end 97.28 93.47) (width 0.5) (layer Top) (net 2)) + (segment (start 97.79 93.98) (end 97.79 89.02) (width 0.8) (layer Top) (net 2)) + (segment (start 97.79 96.86) (end 97.79 93.98) (width 0.8) (layer Top) (net 2)) + (segment (start 104.64 96.86) (end 110.367259 96.86) (width 0.8) (layer Top) (net 2)) + (segment (start 104.775 96.995) (end 104.64 96.86) (width 0.5) (layer Top) (net 2)) + (segment (start 110.707259 100.151277) (end 111.276375 100.720393) (width 0.5) (layer Top) (net 2)) + (segment (start 111.276375 102.109509) (end 111.276375 100.720393) (width 0.5) (layer Top) (net 2)) + (segment (start 108.517259 106.681065) (end 107.417259 106.681065) (width 0.5) (layer Top) (net 2)) + (segment (start 107.417259 106.681065) (end 106.860001 106.123807) (width 0.5) (layer Top) (net 2)) + (segment (start 106.860001 106.123807) (end 106.860001 101.889997) (width 0.5) (layer Top) (net 2)) + (segment (start 106.860001 101.889997) (end 108.598721 100.151277) (width 0.5) (layer Top) (net 2)) + (segment (start 108.598721 100.151277) (end 110.707259 100.151277) (width 0.5) (layer Top) (net 2)) + (segment (start 101.6 95.88) (end 101.6 96.098) (width 0.5) (layer Top) (net 2)) + (segment (start 110.995 99.245) (end 111.445 99.695) (width 0.8) (layer Top) (net 2)) + (segment (start 110.995 97.155) (end 110.995 99.245) (width 0.8) (layer Top) (net 2)) + (segment (start 111.163536 99.695) (end 110.707259 100.151277) (width 0.5) (layer Top) (net 2)) + (segment (start 111.445 99.695) (end 111.163536 99.695) (width 0.5) (layer Top) (net 2)) + (segment (start 98.77 95.88) (end 97.79 96.86) (width 0.8) (layer Top) (net 2)) + (segment (start 101.6 95.88) (end 98.77 95.88) (width 0.8) (layer Top) (net 2)) + (segment (start 103.83 96.86) (end 104.64 96.86) (width 0.8) (layer Top) (net 2)) + (segment (start 101.6 95.88) (end 102.85 95.88) (width 0.8) (layer Top) (net 2)) + (segment (start 102.85 95.88) (end 103.83 96.86) (width 0.8) (layer Top) (net 2)) + (segment (start 104.775 98.295) (end 104.775 96.995) (width 0.8) (layer Top) (net 2)) + (segment (start 111.56 80.2) (end 109.03 80.2) (width 0.8) (layer Top) (net 3)) + (segment (start 109.855 80.2) (end 106.045 80.2) (width 0.8) (layer Top) (net 3)) + (segment (start 106.045 80.2) (end 103.695 82.55) (width 0.8) (layer Top) (net 3)) + (segment (start 121.315 90.2) (end 124.16 90.2) (width 0.8) (layer Top) (net 3)) + (segment (start 111.56 80.2) (end 116.395 80.2) (width 0.8) (layer Top) (net 3)) + (segment (start 116.395 80.2) (end 119.38 83.185) (width 0.8) (layer Top) (net 3)) + (segment (start 119.38 88.265) (end 121.315 90.2) (width 0.8) (layer Top) (net 3)) + (segment (start 119.38 83.185) (end 119.38 88.265) (width 0.8) (layer Top) (net 3)) + (segment (start 128.905 92.71) (end 132.715 92.71) (width 0.8) (layer Top) (net 3)) + (segment (start 124.16 90.2) (end 125.41 90.2) (width 0.8) (layer Top) (net 3)) + (segment (start 126.365 90.17) (end 128.905 92.71) (width 0.8) (layer Top) (net 3)) + (segment (start 125.41 90.2) (end 125.44 90.17) (width 0.5) (layer Top) (net 3)) + (segment (start 125.44 90.17) (end 126.365 90.17) (width 0.8) (layer Top) (net 3)) + (segment (start 133.35 93.345) (end 132.715 92.71) (width 0.8) (layer Top) (net 3)) + (segment (start 133.35 93.665) (end 133.35 93.345) (width 0.5) (layer Top) (net 3)) + (segment (start 113.876375 102.109509) (end 116.548815 102.109509) (width 0.5) (layer Top) (net 3)) + (segment (start 116.548815 102.109509) (end 117.187259 101.471065) (width 0.5) (layer Top) (net 3)) + (segment (start 118.587259 101.471065) (end 119.224194 102.108) (width 0.8) (layer Top) (net 3)) + (segment (start 119.224194 102.108) (end 124.634 102.108) (width 0.8) (layer Top) (net 3)) + (segment (start 125.444 102.918) (end 125.444 105.918) (width 0.8) (layer Top) (net 3)) + (segment (start 117.187259 101.471065) (end 118.587259 101.471065) (width 0.8) (layer Top) (net 3)) + (segment (start 124.634 102.108) (end 125.444 102.918) (width 0.8) (layer Top) (net 3)) + (segment (start 124.888 102.362) (end 124.634 102.108) (width 0.5) (layer Top) (net 3)) + (segment (start 128.524 102.362) (end 124.888 102.362) (width 0.8) (layer Top) (net 3)) + (segment (start 135.89 93.218) (end 135.89 93.665) (width 0.5) (layer Top) (net 3)) + (segment (start 135.89 93.665) (end 133.35 93.665) (width 0.5) (layer Top) (net 3)) + (segment (start 92.2528 110.6932) (end 91.6038 110.6932) (width 0.5) (layer Top) (net 3)) + (segment (start 95.114934 107.831066) (end 92.2528 110.6932) (width 0.5) (layer Top) (net 3)) + (segment (start 106.307066 107.831066) (end 95.114934 107.831066) (width 0.5) (layer Top) (net 3)) + (segment (start 125.444 105.918) (end 125.444 106.918) (width 0.5) (layer Top) (net 3)) + (segment (start 125.444 106.918) (end 123.129033 109.232967) (width 0.5) (layer Top) (net 3)) + (segment (start 123.129033 109.232967) (end 107.708967 109.232967) (width 0.5) (layer Top) (net 3)) + (segment (start 107.708967 109.232967) (end 106.307066 107.831066) (width 0.5) (layer Top) (net 3)) + (segment (start 145.005 98.1202) (end 143.905 98.1202) (width 0.5) (layer Top) (net 3)) + (segment (start 145.542 97.5832) (end 145.005 98.1202) (width 0.5) (layer Top) (net 3)) + (segment (start 145.542 95.504) (end 145.542 97.5832) (width 0.5) (layer Top) (net 3)) + (segment (start 135.89 93.218) (end 136.89 93.218) (width 0.5) (layer Top) (net 3)) + (segment (start 138.033 92.075) (end 142.113 92.075) (width 0.5) (layer Top) (net 3)) + (segment (start 136.89 93.218) (end 138.033 92.075) (width 0.5) (layer Top) (net 3)) + (segment (start 142.113 92.075) (end 145.542 95.504) (width 0.5) (layer Top) (net 3)) + (segment (start 120.015 93.98) (end 120.015 95.774599) (width 0.5) (layer Top) (net 4)) + (segment (start 111.56 90.2) (end 111.81 90.2) (width 0.5) (layer Top) (net 4)) + (segment (start 111.84 90.17) (end 116.205 90.17) (width 0.5) (layer Top) (net 4)) + (segment (start 111.81 90.2) (end 111.84 90.17) (width 0.5) (layer Top) (net 4)) + (segment (start 116.205 90.17) (end 120.015 93.98) (width 0.5) (layer Top) (net 4)) + (segment (start 120.015 98.618599) (end 120.1165 98.618599) (width 0.5) (layer Top) (net 4)) + (segment (start 120.142 98.644099) (end 120.142 99.314) (width 0.5) (layer Top) (net 4)) + (segment (start 120.1165 98.618599) (end 120.142 98.644099) (width 0.5) (layer Top) (net 4)) + (segment (start 120.142 99.314) (end 121.666 100.838) (width 0.5) (layer Top) (net 4)) + (segment (start 121.666 100.838) (end 137.16 100.838) (width 0.5) (layer Top) (net 4)) + (segment (start 137.16 100.838) (end 137.668 101.346) (width 0.5) (layer Top) (net 4)) + (segment (start 137.668 101.346) (end 140.208 101.346) (width 0.5) (layer Top) (net 4)) + (segment (start 140.208 101.346) (end 140.716 100.838) (width 0.5) (layer Top) (net 4)) + (segment (start 140.405 98.1202) (end 139.305 98.1202) (width 0.5) (layer Top) (net 4)) + (segment (start 140.716 98.4312) (end 140.405 98.1202) (width 0.5) (layer Top) (net 4)) + (segment (start 140.716 100.838) (end 140.716 98.4312) (width 0.5) (layer Top) (net 4)) + (segment (start 117.78605 78.0746) (end 117.78605 78.0746) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70154)) + (segment (start 117.78605 78.0746) (end 116.755113 78.095364) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70151)) + (segment (start 116.755113 78.095364) (end 115.725848 78.157623) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7014F)) + (segment (start 115.725848 78.157623) (end 114.699925 78.261276) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7014D)) + (segment (start 114.699925 78.261276) (end 113.679008 78.406155) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7014A)) + (segment (start 113.679008 78.406155) (end 112.664752 78.592024) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70148)) + (segment (start 112.664752 78.592024) (end 111.658803 78.818582) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70146)) + (segment (start 111.658803 78.818582) (end 110.662793 79.085463) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70143)) + (segment (start 110.662793 79.085463) (end 109.678336 79.392232) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70141)) + (segment (start 109.678336 79.392232) (end 108.70703 79.738392) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7013F)) + (segment (start 108.70703 79.738392) (end 107.75045 80.123382) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7013C)) + (segment (start 107.75045 80.123382) (end 106.810149 80.546578) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7013A)) + (segment (start 106.810149 80.546578) (end 105.88765 81.007292) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70138)) + (segment (start 105.88765 81.007292) (end 104.98445 81.504778) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70136)) + (segment (start 104.98445 81.504778) (end 104.102015 82.038229) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70133)) + (segment (start 104.102015 82.038229) (end 103.241775 82.606779) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70131)) + (segment (start 103.241775 82.606779) (end 102.405126 83.209507) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7012F)) + (segment (start 102.405126 83.209507) (end 101.593425 83.845434) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7012C)) + (segment (start 101.593425 83.845434) (end 100.807988 84.51353) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7012A)) + (segment (start 100.807988 84.51353) (end 100.05009 85.21271) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70128)) + (segment (start 100.05009 85.21271) (end 99.32096 85.94184) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70125)) + (segment (start 99.32096 85.94184) (end 98.62178 86.699738) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70123)) + (segment (start 98.62178 86.699738) (end 97.953684 87.485175) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70121)) + (segment (start 97.953684 87.485175) (end 97.317757 88.296876) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7011E)) + (segment (start 97.317757 88.296876) (end 96.715029 89.133525) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7011C)) + (segment (start 96.715029 89.133525) (end 96.146479 89.993765) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7011A)) + (segment (start 96.146479 89.993765) (end 95.613028 90.8762) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70118)) + (segment (start 95.613028 90.8762) (end 95.115542 91.7794) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70115)) + (segment (start 95.115542 91.7794) (end 94.654828 92.701899) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70113)) + (segment (start 94.654828 92.701899) (end 94.231632 93.6422) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70111)) + (segment (start 94.231632 93.6422) (end 93.846642 94.59878) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7010E)) + (segment (start 93.846642 94.59878) (end 93.500482 95.570086) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7010C)) + (segment (start 93.500482 95.570086) (end 93.193713 96.554543) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7010A)) + (segment (start 93.193713 96.554543) (end 92.926832 97.550553) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70107)) + (segment (start 92.926832 97.550553) (end 92.700274 98.556502) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70105)) + (segment (start 92.700274 98.556502) (end 92.514405 99.570758) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70103)) + (segment (start 92.514405 99.570758) (end 92.369526 100.591675) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70100)) + (segment (start 92.369526 100.591675) (end 92.265873 101.617598) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700FE)) + (segment (start 92.265873 101.617598) (end 92.203614 102.646863) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700FC)) + (segment (start 92.203614 102.646863) (end 92.18285 103.6778) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700FA)) + (segment (start 92.18285 103.6778) (end 92.203614 104.708737) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700F7)) + (segment (start 92.203614 104.708737) (end 92.265873 105.738002) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700F5)) + (segment (start 92.265873 105.738002) (end 92.369526 106.763925) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700F3)) + (segment (start 92.369526 106.763925) (end 92.514405 107.784842) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700F0)) + (segment (start 92.514405 107.784842) (end 92.700274 108.799098) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700EE)) + (segment (start 92.700274 108.799098) (end 92.926832 109.805047) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700EC)) + (segment (start 92.926832 109.805047) (end 93.193713 110.801057) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700E9)) + (segment (start 93.193713 110.801057) (end 93.500482 111.785514) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700E7)) + (segment (start 93.500482 111.785514) (end 93.846642 112.75682) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700E5)) + (segment (start 93.846642 112.75682) (end 94.231632 113.7134) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700E2)) + (segment (start 94.231632 113.7134) (end 94.654828 114.653701) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700E0)) + (segment (start 94.654828 114.653701) (end 95.115542 115.5762) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700DE)) + (segment (start 95.115542 115.5762) (end 95.613028 116.4794) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700DC)) + (segment (start 95.613028 116.4794) (end 96.146479 117.361835) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700D9)) + (segment (start 96.146479 117.361835) (end 96.715029 118.222075) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700D7)) + (segment (start 96.715029 118.222075) (end 97.317757 119.058724) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700D5)) + (segment (start 97.317757 119.058724) (end 97.953684 119.870425) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700D2)) + (segment (start 97.953684 119.870425) (end 98.62178 120.655862) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700D0)) + (segment (start 98.62178 120.655862) (end 99.32096 121.41376) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700CE)) + (segment (start 99.32096 121.41376) (end 100.05009 122.14289) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700CB)) + (segment (start 100.05009 122.14289) (end 100.807988 122.84207) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700C9)) + (segment (start 100.807988 122.84207) (end 101.593425 123.510166) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700C7)) + (segment (start 101.593425 123.510166) (end 102.405126 124.146093) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700C4)) + (segment (start 102.405126 124.146093) (end 103.241775 124.748821) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700C2)) + (segment (start 103.241775 124.748821) (end 104.102015 125.317371) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700C0)) + (segment (start 104.102015 125.317371) (end 104.98445 125.850822) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700BE)) + (segment (start 104.98445 125.850822) (end 105.88765 126.348308) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700BB)) + (segment (start 105.88765 126.348308) (end 106.810149 126.809022) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700B9)) + (segment (start 106.810149 126.809022) (end 107.75045 127.232218) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700B7)) + (segment (start 107.75045 127.232218) (end 108.70703 127.617208) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700B4)) + (segment (start 108.70703 127.617208) (end 109.678336 127.963368) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700B2)) + (segment (start 109.678336 127.963368) (end 110.662793 128.270137) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700B0)) + (segment (start 110.662793 128.270137) (end 111.658803 128.537018) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700AD)) + (segment (start 111.658803 128.537018) (end 112.664752 128.763576) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700AB)) + (segment (start 112.664752 128.763576) (end 113.679008 128.949445) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700A9)) + (segment (start 113.679008 128.949445) (end 114.699925 129.094324) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700A6)) + (segment (start 114.699925 129.094324) (end 115.725848 129.197977) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700A4)) + (segment (start 115.725848 129.197977) (end 116.755113 129.260236) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700A2)) + (segment (start 116.755113 129.260236) (end 117.78605 129.281) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700A0)) + (segment (start 117.78605 129.281) (end 117.78605 129.281) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70734)) + (segment (start 117.78605 129.281) (end 118.793071 129.260454) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70731)) + (segment (start 118.793071 129.260454) (end 119.798416 129.19885) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7072F)) + (segment (start 119.798416 129.19885) (end 120.800412 129.096291) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7072C)) + (segment (start 120.800412 129.096291) (end 121.797391 128.952947) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7072A)) + (segment (start 121.797391 128.952947) (end 122.787693 128.769057) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70728)) + (segment (start 122.787693 128.769057) (end 123.76967 128.544927) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70725)) + (segment (start 123.76967 128.544927) (end 124.741689 128.28093) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70723)) + (segment (start 124.741689 128.28093) (end 125.70213 127.977506) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70721)) + (segment (start 125.70213 127.977506) (end 126.649396 127.635159) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7071E)) + (segment (start 126.649396 127.635159) (end 127.581909 127.254459) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7071C)) + (segment (start 127.581909 127.254459) (end 128.498119 126.83604) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7071A)) + (segment (start 128.498119 126.83604) (end 129.396499 126.380599) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70717)) + (segment (start 129.396499 126.380599) (end 130.275555 125.888893) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70715)) + (segment (start 130.275555 125.888893) (end 131.133823 125.36174) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70713)) + (segment (start 131.133823 125.36174) (end 131.969875 124.800019) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70710)) + (segment (start 131.969875 124.800019) (end 132.78232 124.204664) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7070E)) + (segment (start 132.78232 124.204664) (end 133.569805 123.576666) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7070C)) + (segment (start 133.569805 123.576666) (end 134.331019 122.91707) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70709)) + (segment (start 134.331019 122.91707) (end 135.064696 122.226974) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70707)) + (segment (start 135.064696 122.226974) (end 135.769614 121.507527) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70705)) + (segment (start 135.769614 121.507527) (end 136.4446 120.759926) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70702)) + (segment (start 136.4446 120.759926) (end 137.088531 119.985415) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70700)) + (segment (start 137.088531 119.985415) (end 137.700335 119.185284) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706FE)) + (segment (start 137.700335 119.185284) (end 138.278994 118.360864) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706FB)) + (segment (start 138.278994 118.360864) (end 138.823544 117.513527) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706F9)) + (segment (start 138.823544 117.513527) (end 139.333079 116.644685) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706F7)) + (segment (start 139.333079 116.644685) (end 139.806751 115.755782) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706F4)) + (segment (start 139.806751 115.755782) (end 140.243772 114.848298) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706F2)) + (segment (start 140.243772 114.848298) (end 140.643415 113.923744) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706F0)) + (segment (start 140.643415 113.923744) (end 141.005013 112.983659) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706ED)) + (segment (start 141.005013 112.983659) (end 141.327966 112.029607) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706EB)) + (segment (start 141.327966 112.029607) (end 141.611736 111.063176) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706E9)) + (segment (start 141.611736 111.063176) (end 141.85585 110.085975) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706E6)) + (segment (start 141.85585 110.085975) (end 142.059903 109.09963) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706E4)) + (segment (start 142.059903 109.09963) (end 142.223554 108.105783) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706E2)) + (segment (start 142.223554 108.105783) (end 142.346531 107.106087) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706DF)) + (segment (start 142.346531 107.106087) (end 142.428629 106.102208) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706DD)) + (segment (start 142.428629 106.102208) (end 142.469713 105.095815) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706DB)) + (segment (start 142.469713 105.095815) (end 142.469713 104.088585) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706D8)) + (segment (start 142.469713 104.088585) (end 142.428629 103.082192) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706D6)) + (segment (start 142.428629 103.082192) (end 142.346531 102.078313) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706D4)) + (segment (start 142.346531 102.078313) (end 142.223554 101.078617) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706D1)) + (segment (start 142.223554 101.078617) (end 142.059903 100.08477) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706CF)) + (segment (start 142.059903 100.08477) (end 141.85585 99.098425) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706CD)) + (segment (start 141.85585 99.098425) (end 141.611736 98.121224) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706CA)) + (segment (start 141.611736 98.121224) (end 141.327966 97.154793) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706C8)) + (segment (start 141.327966 97.154793) (end 141.005013 96.200741) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706C6)) + (segment (start 141.005013 96.200741) (end 140.643415 95.260656) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706C3)) + (segment (start 140.643415 95.260656) (end 140.243772 94.336102) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706C1)) + (segment (start 140.243772 94.336102) (end 139.806751 93.428618) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706BF)) + (segment (start 139.806751 93.428618) (end 139.333079 92.539715) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706BC)) + (segment (start 139.333079 92.539715) (end 138.823544 91.670873) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706BA)) + (segment (start 138.823544 91.670873) (end 138.278994 90.823536) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706B8)) + (segment (start 138.278994 90.823536) (end 137.700335 89.999116) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706B5)) + (segment (start 137.700335 89.999116) (end 137.088531 89.198985) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706B3)) + (segment (start 137.088531 89.198985) (end 136.4446 88.424474) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706B1)) + (segment (start 136.4446 88.424474) (end 135.769614 87.676873) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706AE)) + (segment (start 135.769614 87.676873) (end 135.064696 86.957426) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706AC)) + (segment (start 135.064696 86.957426) (end 134.331019 86.26733) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706AA)) + (segment (start 134.331019 86.26733) (end 133.569805 85.607734) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706A7)) + (segment (start 133.569805 85.607734) (end 132.78232 84.979736) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706A5)) + (segment (start 132.78232 84.979736) (end 131.969875 84.384381) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706A3)) + (segment (start 131.969875 84.384381) (end 131.133823 83.82266) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706A0)) + (segment (start 131.133823 83.82266) (end 130.275555 83.295507) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7069E)) + (segment (start 130.275555 83.295507) (end 129.396499 82.803801) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7069C)) + (segment (start 129.396499 82.803801) (end 128.498119 82.34836) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70699)) + (segment (start 128.498119 82.34836) (end 127.581909 81.929941) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70697)) + (segment (start 127.581909 81.929941) (end 126.649396 81.549241) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70695)) + (segment (start 126.649396 81.549241) (end 125.70213 81.206894) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70692)) + (segment (start 125.70213 81.206894) (end 124.741689 80.90347) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70690)) + (segment (start 124.741689 80.90347) (end 123.76967 80.639473) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7068E)) + (segment (start 123.76967 80.639473) (end 122.787693 80.415343) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7068B)) + (segment (start 122.787693 80.415343) (end 121.797391 80.231453) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70689)) + (segment (start 121.797391 80.231453) (end 120.800412 80.088109) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70687)) + (segment (start 120.800412 80.088109) (end 119.798416 79.98555) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70684)) + (segment (start 119.798416 79.98555) (end 117.78605 79.9034) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70680)) + (segment (start 117.78605 79.9034) (end 117.78605 79.9034) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70CB4)) + (segment (start 117.78605 79.9034) (end 116.803574 79.923709) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70CB1)) + (segment (start 116.803574 79.923709) (end 115.822776 79.984602) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70CAF)) + (segment (start 115.822776 79.984602) (end 114.845332 80.085974) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70CAC)) + (segment (start 114.845332 80.085974) (end 113.872912 80.227652) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70CAA)) + (segment (start 113.872912 80.227652) (end 112.907178 80.409394) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70CA8)) + (segment (start 112.907178 80.409394) (end 111.94978 80.63089) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70CA5)) + (segment (start 111.94978 80.63089) (end 111.002352 80.891762) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70CA3)) + (segment (start 111.002352 80.891762) (end 110.066515 81.191563) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70CA1)) + (segment (start 110.066515 81.191563) (end 109.143866 81.529781) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C9E)) + (segment (start 109.143866 81.529781) (end 108.235982 81.905839) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C9C)) + (segment (start 108.235982 81.905839) (end 107.344415 82.319093) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C99)) + (segment (start 107.344415 82.319093) (end 106.470686 82.768839) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C97)) + (segment (start 106.470686 82.768839) (end 105.61629 83.254308) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C95)) + (segment (start 105.61629 83.254308) (end 104.782686 83.774669) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C92)) + (segment (start 104.782686 83.774669) (end 103.971297 84.329035) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C90)) + (segment (start 103.971297 84.329035) (end 103.183511 84.916458) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C8E)) + (segment (start 103.183511 84.916458) (end 102.420673 85.535934) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C8B)) + (segment (start 102.420673 85.535934) (end 101.684087 86.186405) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C89)) + (segment (start 101.684087 86.186405) (end 100.975011 86.866761) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C86)) + (segment (start 100.975011 86.866761) (end 100.294655 87.575837) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C84)) + (segment (start 100.294655 87.575837) (end 99.644184 88.312423) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C82)) + (segment (start 99.644184 88.312423) (end 99.024708 89.075261) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C7F)) + (segment (start 99.024708 89.075261) (end 98.437285 89.863047) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C7D)) + (segment (start 98.437285 89.863047) (end 97.882919 90.674436) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C7B)) + (segment (start 97.882919 90.674436) (end 97.362558 91.50804) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C78)) + (segment (start 97.362558 91.50804) (end 96.877089 92.362436) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C76)) + (segment (start 96.877089 92.362436) (end 96.427343 93.236165) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C74)) + (segment (start 96.427343 93.236165) (end 96.014089 94.127732) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C71)) + (segment (start 96.014089 94.127732) (end 95.638031 95.035616) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C6F)) + (segment (start 95.638031 95.035616) (end 95.299813 95.958265) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C6C)) + (segment (start 95.299813 95.958265) (end 95.000012 96.894102) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C6A)) + (segment (start 95.000012 96.894102) (end 94.73914 97.84153) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C68)) + (segment (start 94.73914 97.84153) (end 94.517644 98.798928) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C65)) + (segment (start 94.517644 98.798928) (end 94.335902 99.764662) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C63)) + (segment (start 94.335902 99.764662) (end 94.194224 100.737082) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C61)) + (segment (start 94.194224 100.737082) (end 94.092852 101.714526) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C5E)) + (segment (start 94.092852 101.714526) (end 94.031959 102.695324) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C5C)) + (segment (start 94.031959 102.695324) (end 94.01165 103.6778) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C59)) + (segment (start 94.01165 103.6778) (end 94.031959 104.660276) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C57)) + (segment (start 94.031959 104.660276) (end 94.092852 105.641074) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C55)) + (segment (start 94.092852 105.641074) (end 94.194224 106.618518) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C52)) + (segment (start 94.194224 106.618518) (end 94.335902 107.590938) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C50)) + (segment (start 94.335902 107.590938) (end 94.517644 108.556672) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C4E)) + (segment (start 94.517644 108.556672) (end 94.73914 109.51407) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C4B)) + (segment (start 94.73914 109.51407) (end 95.000012 110.461498) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C49)) + (segment (start 95.000012 110.461498) (end 95.299813 111.397335) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C47)) + (segment (start 95.299813 111.397335) (end 95.638031 112.319984) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C44)) + (segment (start 95.638031 112.319984) (end 96.014089 113.227868) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C42)) + (segment (start 96.014089 113.227868) (end 96.427343 114.119435) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C3F)) + (segment (start 96.427343 114.119435) (end 96.877089 114.993164) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C3D)) + (segment (start 96.877089 114.993164) (end 97.362558 115.84756) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C3B)) + (segment (start 97.362558 115.84756) (end 97.882919 116.681164) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C38)) + (segment (start 97.882919 116.681164) (end 98.437285 117.492553) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C36)) + (segment (start 98.437285 117.492553) (end 99.024708 118.280339) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C34)) + (segment (start 99.024708 118.280339) (end 99.644184 119.043177) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C31)) + (segment (start 99.644184 119.043177) (end 100.294655 119.779763) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C2F)) + (segment (start 100.294655 119.779763) (end 100.975011 120.488839) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C2C)) + (segment (start 100.975011 120.488839) (end 101.684087 121.169195) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C2A)) + (segment (start 101.684087 121.169195) (end 102.420673 121.819666) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C28)) + (segment (start 102.420673 121.819666) (end 103.183511 122.439142) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C25)) + (segment (start 103.183511 122.439142) (end 103.971297 123.026565) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C23)) + (segment (start 103.971297 123.026565) (end 104.782686 123.580931) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C21)) + (segment (start 104.782686 123.580931) (end 105.61629 124.101292) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C1E)) + (segment (start 105.61629 124.101292) (end 106.470686 124.586761) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C1C)) + (segment (start 106.470686 124.586761) (end 107.344415 125.036507) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C1A)) + (segment (start 107.344415 125.036507) (end 108.235982 125.449761) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C17)) + (segment (start 108.235982 125.449761) (end 109.143866 125.825819) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C15)) + (segment (start 109.143866 125.825819) (end 110.066515 126.164037) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C12)) + (segment (start 110.066515 126.164037) (end 111.002352 126.463838) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C10)) + (segment (start 111.002352 126.463838) (end 111.94978 126.72471) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C0E)) + (segment (start 111.94978 126.72471) (end 112.907178 126.946206) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C0B)) + (segment (start 112.907178 126.946206) (end 113.872912 127.127948) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C09)) + (segment (start 113.872912 127.127948) (end 114.845332 127.269626) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C07)) + (segment (start 114.845332 127.269626) (end 115.822776 127.370998) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C04)) + (segment (start 115.822776 127.370998) (end 117.78605 127.4522) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C00)) + (segment (start 117.78605 127.4522) (end 117.78605 127.4522) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71234)) + (segment (start 117.78605 127.4522) (end 118.756256 127.431602) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71231)) + (segment (start 118.756256 127.431602) (end 119.724713 127.369847) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7122F)) + (segment (start 119.724713 127.369847) (end 120.689677 127.267044) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7122C)) + (segment (start 120.689677 127.267044) (end 121.649409 127.12338) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7122A)) + (segment (start 121.649409 127.12338) (end 122.602178 126.939113) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71227)) + (segment (start 122.602178 126.939113) (end 123.546268 126.714575) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71225)) + (segment (start 123.546268 126.714575) (end 124.479979 126.450172) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71222)) + (segment (start 124.479979 126.450172) (end 125.401626 126.146378) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71220)) + (segment (start 125.401626 126.146378) (end 126.309549 125.803743) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7121E)) + (segment (start 126.309549 125.803743) (end 127.202113 125.422883) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7121B)) + (segment (start 127.202113 125.422883) (end 128.077708 125.004485) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71219)) + (segment (start 128.077708 125.004485) (end 128.934756 124.549303) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71216)) + (segment (start 128.934756 124.549303) (end 129.771715 124.058156) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71214)) + (segment (start 129.771715 124.058156) (end 130.587074 123.531931) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71211)) + (segment (start 130.587074 123.531931) (end 131.379364 122.971574) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7120F)) + (segment (start 131.379364 122.971574) (end 132.147159 122.378097) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7120D)) + (segment (start 132.147159 122.378097) (end 132.889074 121.752569) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7120A)) + (segment (start 132.889074 121.752569) (end 133.603773 121.096116) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71208)) + (segment (start 133.603773 121.096116) (end 134.289966 120.409923) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71205)) + (segment (start 134.289966 120.409923) (end 134.946419 119.695224) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71203)) + (segment (start 134.946419 119.695224) (end 135.571947 118.953309) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71200)) + (segment (start 135.571947 118.953309) (end 136.165424 118.185514) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711FE)) + (segment (start 136.165424 118.185514) (end 136.725781 117.393224) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711FC)) + (segment (start 136.725781 117.393224) (end 137.252006 116.577865) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711F9)) + (segment (start 137.252006 116.577865) (end 137.743153 115.740906) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711F7)) + (segment (start 137.743153 115.740906) (end 138.198335 114.883858) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711F4)) + (segment (start 138.198335 114.883858) (end 138.616733 114.008263) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711F2)) + (segment (start 138.616733 114.008263) (end 138.997593 113.115699) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711EF)) + (segment (start 138.997593 113.115699) (end 139.340228 112.207776) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711ED)) + (segment (start 139.340228 112.207776) (end 139.644022 111.286129) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711EB)) + (segment (start 139.644022 111.286129) (end 139.908425 110.352418) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711E8)) + (segment (start 139.908425 110.352418) (end 140.132963 109.408328) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711E6)) + (segment (start 140.132963 109.408328) (end 140.31723 108.455559) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711E3)) + (segment (start 140.31723 108.455559) (end 140.460894 107.495827) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711E1)) + (segment (start 140.460894 107.495827) (end 140.563697 106.530863) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711DE)) + (segment (start 140.563697 106.530863) (end 140.625452 105.562406) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711DC)) + (segment (start 140.625452 105.562406) (end 140.64605 104.5922) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711D9)) + (segment (start 140.64605 104.5922) (end 140.625452 103.621994) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711D7)) + (segment (start 140.625452 103.621994) (end 140.563697 102.653537) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711D5)) + (segment (start 140.563697 102.653537) (end 140.460894 101.688573) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711D2)) + (segment (start 140.460894 101.688573) (end 140.31723 100.728841) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711D0)) + (segment (start 140.31723 100.728841) (end 140.132963 99.776072) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711CD)) + (segment (start 140.132963 99.776072) (end 139.908425 98.831982) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711CB)) + (segment (start 139.908425 98.831982) (end 139.644022 97.898271) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711C8)) + (segment (start 139.644022 97.898271) (end 139.340228 96.976624) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711C6)) + (segment (start 139.340228 96.976624) (end 138.997593 96.068701) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711C4)) + (segment (start 138.997593 96.068701) (end 138.616733 95.176137) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711C1)) + (segment (start 138.616733 95.176137) (end 138.198335 94.300542) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711BF)) + (segment (start 138.198335 94.300542) (end 137.743153 93.443494) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711BC)) + (segment (start 137.743153 93.443494) (end 137.252006 92.606535) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711BA)) + (segment (start 137.252006 92.606535) (end 136.725781 91.791176) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711B7)) + (segment (start 136.725781 91.791176) (end 136.165424 90.998886) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711B5)) + (segment (start 136.165424 90.998886) (end 135.571947 90.231091) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711B3)) + (segment (start 135.571947 90.231091) (end 134.946419 89.489176) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711B0)) + (segment (start 134.946419 89.489176) (end 134.289966 88.774477) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711AE)) + (segment (start 134.289966 88.774477) (end 133.603773 88.088284) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711AB)) + (segment (start 133.603773 88.088284) (end 132.889074 87.431831) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711A9)) + (segment (start 132.889074 87.431831) (end 132.147159 86.806303) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711A6)) + (segment (start 132.147159 86.806303) (end 131.379364 86.212826) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711A4)) + (segment (start 131.379364 86.212826) (end 130.587074 85.652469) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711A2)) + (segment (start 130.587074 85.652469) (end 129.771715 85.126244) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7119F)) + (segment (start 129.771715 85.126244) (end 128.934756 84.635097) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7119D)) + (segment (start 128.934756 84.635097) (end 128.077708 84.179915) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7119A)) + (segment (start 128.077708 84.179915) (end 127.202113 83.761517) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71198)) + (segment (start 127.202113 83.761517) (end 126.309549 83.380657) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71195)) + (segment (start 126.309549 83.380657) (end 125.401626 83.038022) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71193)) + (segment (start 125.401626 83.038022) (end 124.479979 82.734228) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71191)) + (segment (start 124.479979 82.734228) (end 123.546268 82.469825) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7118E)) + (segment (start 123.546268 82.469825) (end 122.602178 82.245287) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7118C)) + (segment (start 122.602178 82.245287) (end 121.649409 82.06102) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71189)) + (segment (start 121.649409 82.06102) (end 120.689677 81.917356) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71187)) + (segment (start 120.689677 81.917356) (end 119.724713 81.814553) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71184)) + (segment (start 119.724713 81.814553) (end 117.78605 81.7322) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71180)) + (segment (start 117.78605 81.7322) (end 117.78605 81.7322) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E717B4)) + (segment (start 117.78605 81.7322) (end 116.841901 81.752519) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E717B1)) + (segment (start 116.841901 81.752519) (end 115.899501 81.813439) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E717AF)) + (segment (start 115.899501 81.813439) (end 114.960594 81.914846) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E717AC)) + (segment (start 114.960594 81.914846) (end 114.026919 82.056554) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E717AA)) + (segment (start 114.026919 82.056554) (end 113.100205 82.238299) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E717A7)) + (segment (start 113.100205 82.238299) (end 112.182169 82.459745) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E717A5)) + (segment (start 112.182169 82.459745) (end 111.274509 82.720482) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E717A2)) + (segment (start 111.274509 82.720482) (end 110.378907 83.020027) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E717A0)) + (segment (start 110.378907 83.020027) (end 109.497022 83.357825) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7179D)) + (segment (start 109.497022 83.357825) (end 108.630486 83.733252) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7179B)) + (segment (start 108.630486 83.733252) (end 107.780904 84.145611) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71798)) + (segment (start 107.780904 84.145611) (end 106.949849 84.594139) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71796)) + (segment (start 106.949849 84.594139) (end 106.138861 85.078006) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71793)) + (segment (start 106.138861 85.078006) (end 105.34944 85.596315) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71791)) + (segment (start 105.34944 85.596315) (end 104.583049 86.148107) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7178F)) + (segment (start 104.583049 86.148107) (end 103.841107 86.73236) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7178C)) + (segment (start 103.841107 86.73236) (end 103.124988 87.347993) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7178A)) + (segment (start 103.124988 87.347993) (end 102.436017 87.993864) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71787)) + (segment (start 102.436017 87.993864) (end 101.775472 88.668778) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71785)) + (segment (start 101.775472 88.668778) (end 101.144574 89.371485) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71782)) + (segment (start 101.144574 89.371485) (end 100.544493 90.100685) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71780)) + (segment (start 100.544493 90.100685) (end 99.976338 90.855026) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7177D)) + (segment (start 99.976338 90.855026) (end 99.441164 91.633112) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7177B)) + (segment (start 99.441164 91.633112) (end 98.93996 92.433502) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71778)) + (segment (start 98.93996 92.433502) (end 98.473654 93.254714) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71776)) + (segment (start 98.473654 93.254714) (end 98.043111 94.095227) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71773)) + (segment (start 98.043111 94.095227) (end 97.649127 94.953484) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71771)) + (segment (start 97.649127 94.953484) (end 97.292432 95.827898) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7176E)) + (segment (start 97.292432 95.827898) (end 96.973686 96.716847) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7176C)) + (segment (start 96.973686 96.716847) (end 96.69348 97.618686) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7176A)) + (segment (start 96.69348 97.618686) (end 96.452333 98.531746) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71767)) + (segment (start 96.452333 98.531746) (end 96.250691 99.454335) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71765)) + (segment (start 96.250691 99.454335) (end 96.088927 100.384744) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71762)) + (segment (start 96.088927 100.384744) (end 95.967342 101.321252) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71760)) + (segment (start 95.967342 101.321252) (end 95.886159 102.262123) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7175D)) + (segment (start 95.886159 102.262123) (end 95.84553 103.205616) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7175B)) + (segment (start 95.84553 103.205616) (end 95.84553 104.149984) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71758)) + (segment (start 95.84553 104.149984) (end 95.886159 105.093477) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71756)) + (segment (start 95.886159 105.093477) (end 95.967342 106.034348) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71753)) + (segment (start 95.967342 106.034348) (end 96.088927 106.970856) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71751)) + (segment (start 96.088927 106.970856) (end 96.250691 107.901265) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7174E)) + (segment (start 96.250691 107.901265) (end 96.452333 108.823854) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7174C)) + (segment (start 96.452333 108.823854) (end 96.69348 109.736914) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71749)) + (segment (start 96.69348 109.736914) (end 96.973686 110.638753) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71747)) + (segment (start 96.973686 110.638753) (end 97.292432 111.527702) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71745)) + (segment (start 97.292432 111.527702) (end 97.649127 112.402116) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71742)) + (segment (start 97.649127 112.402116) (end 98.043111 113.260373) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71740)) + (segment (start 98.043111 113.260373) (end 98.473654 114.100886) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7173D)) + (segment (start 98.473654 114.100886) (end 98.93996 114.922098) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7173B)) + (segment (start 98.93996 114.922098) (end 99.441164 115.722488) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71738)) + (segment (start 99.441164 115.722488) (end 99.976338 116.500574) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71736)) + (segment (start 99.976338 116.500574) (end 100.544493 117.254915) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71733)) + (segment (start 100.544493 117.254915) (end 101.144574 117.984115) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71731)) + (segment (start 101.144574 117.984115) (end 101.775472 118.686822) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7172E)) + (segment (start 101.775472 118.686822) (end 102.436017 119.361736) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7172C)) + (segment (start 102.436017 119.361736) (end 103.124988 120.007607) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71729)) + (segment (start 103.124988 120.007607) (end 103.841107 120.62324) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71727)) + (segment (start 103.841107 120.62324) (end 104.583049 121.207493) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71724)) + (segment (start 104.583049 121.207493) (end 105.34944 121.759285) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71722)) + (segment (start 105.34944 121.759285) (end 106.138861 122.277594) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71720)) + (segment (start 106.138861 122.277594) (end 106.949849 122.761461) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7171D)) + (segment (start 106.949849 122.761461) (end 107.780904 123.209989) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7171B)) + (segment (start 107.780904 123.209989) (end 108.630486 123.622348) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71718)) + (segment (start 108.630486 123.622348) (end 109.497022 123.997775) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71716)) + (segment (start 109.497022 123.997775) (end 110.378907 124.335573) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71713)) + (segment (start 110.378907 124.335573) (end 111.274509 124.635118) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71711)) + (segment (start 111.274509 124.635118) (end 112.182169 124.895855) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7170E)) + (segment (start 112.182169 124.895855) (end 113.100205 125.117301) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7170C)) + (segment (start 113.100205 125.117301) (end 114.026919 125.299046) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71709)) + (segment (start 114.026919 125.299046) (end 114.960594 125.440754) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71707)) + (segment (start 114.960594 125.440754) (end 115.899501 125.542161) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71704)) + (segment (start 115.899501 125.542161) (end 116.841901 125.603081) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71702)) + (segment (start 116.841901 125.603081) (end 117.78605 125.6234) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71700)) + (segment (start 117.78605 125.6234) (end 117.78605 125.6234) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71D34)) + (segment (start 117.78605 125.6234) (end 118.71633 125.602815) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71D31)) + (segment (start 118.71633 125.602815) (end 119.64479 125.541101) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71D2E)) + (segment (start 119.64479 125.541101) (end 120.56961 125.438379) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71D2C)) + (segment (start 120.56961 125.438379) (end 121.488982 125.294849) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71D29)) + (segment (start 121.488982 125.294849) (end 122.401105 125.110793) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71D27)) + (segment (start 122.401105 125.110793) (end 123.304194 124.88657) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71D24)) + (segment (start 123.304194 124.88657) (end 124.196481 124.622621) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71D22)) + (segment (start 124.196481 124.622621) (end 125.076219 124.31946) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71D1F)) + (segment (start 125.076219 124.31946) (end 125.941687 123.977683) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71D1D)) + (segment (start 125.941687 123.977683) (end 126.791189 123.597958) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71D1A)) + (segment (start 126.791189 123.597958) (end 127.623063 123.181029) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71D18)) + (segment (start 127.623063 123.181029) (end 128.435681 122.72771) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71D15)) + (segment (start 128.435681 122.72771) (end 129.227452 122.238891) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71D13)) + (segment (start 129.227452 122.238891) (end 129.996825 121.715527) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71D10)) + (segment (start 129.996825 121.715527) (end 130.742296 121.158644) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71D0D)) + (segment (start 130.742296 121.158644) (end 131.462404 120.569331) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71D0B)) + (segment (start 131.462404 120.569331) (end 132.15574 119.948742) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71D08)) + (segment (start 132.15574 119.948742) (end 132.820946 119.298092) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71D06)) + (segment (start 132.820946 119.298092) (end 133.456722 118.618655) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71D03)) + (segment (start 133.456722 118.618655) (end 134.061821 117.91176) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71D01)) + (segment (start 134.061821 117.91176) (end 134.635059 117.178791) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CFE)) + (segment (start 134.635059 117.178791) (end 135.175315 116.421183) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CFC)) + (segment (start 135.175315 116.421183) (end 135.68153 115.64042) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CF9)) + (segment (start 135.68153 115.64042) (end 136.152714 114.83803) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CF7)) + (segment (start 136.152714 114.83803) (end 136.587945 114.015582) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CF4)) + (segment (start 136.587945 114.015582) (end 136.98637 113.174688) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CF2)) + (segment (start 136.98637 113.174688) (end 137.347209 112.316993) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CEF)) + (segment (start 137.347209 112.316993) (end 137.669757 111.444177) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CED)) + (segment (start 137.669757 111.444177) (end 137.953381 110.557948) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CEA)) + (segment (start 137.953381 110.557948) (end 138.197526 109.66004) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CE7)) + (segment (start 138.197526 109.66004) (end 138.401716 108.752212) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CE5)) + (segment (start 138.401716 108.752212) (end 138.565549 107.83624) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CE2)) + (segment (start 138.565549 107.83624) (end 138.688705 106.913918) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CE0)) + (segment (start 138.688705 106.913918) (end 138.770944 105.987051) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CDD)) + (segment (start 138.770944 105.987051) (end 138.812103 105.057454) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CDB)) + (segment (start 138.812103 105.057454) (end 138.812103 104.126946) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CD8)) + (segment (start 138.812103 104.126946) (end 138.770944 103.197349) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CD6)) + (segment (start 138.770944 103.197349) (end 138.688705 102.270482) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CD3)) + (segment (start 138.688705 102.270482) (end 138.565549 101.34816) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CD1)) + (segment (start 138.565549 101.34816) (end 138.401716 100.432188) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CCE)) + (segment (start 138.401716 100.432188) (end 138.197526 99.52436) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CCC)) + (segment (start 138.197526 99.52436) (end 137.953381 98.626452) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CC9)) + (segment (start 137.953381 98.626452) (end 137.669757 97.740223) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CC6)) + (segment (start 137.669757 97.740223) (end 137.347209 96.867407) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CC4)) + (segment (start 137.347209 96.867407) (end 136.98637 96.009712) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CC1)) + (segment (start 136.98637 96.009712) (end 136.587945 95.168818) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CBF)) + (segment (start 136.587945 95.168818) (end 136.152714 94.34637) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CBC)) + (segment (start 136.152714 94.34637) (end 135.68153 93.54398) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CBA)) + (segment (start 135.68153 93.54398) (end 135.175315 92.763217) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CB7)) + (segment (start 135.175315 92.763217) (end 134.635059 92.005609) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CB5)) + (segment (start 134.635059 92.005609) (end 134.061821 91.27264) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CB2)) + (segment (start 134.061821 91.27264) (end 133.456722 90.565745) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CB0)) + (segment (start 133.456722 90.565745) (end 132.820946 89.886308) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CAD)) + (segment (start 132.820946 89.886308) (end 132.15574 89.235658) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CAB)) + (segment (start 132.15574 89.235658) (end 131.462404 88.615069) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CA8)) + (segment (start 131.462404 88.615069) (end 130.742296 88.025756) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CA6)) + (segment (start 130.742296 88.025756) (end 129.996825 87.468873) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CA3)) + (segment (start 129.996825 87.468873) (end 129.227452 86.945509) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CA0)) + (segment (start 129.227452 86.945509) (end 128.435681 86.45669) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71C9E)) + (segment (start 128.435681 86.45669) (end 127.623063 86.003371) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71C9B)) + (segment (start 127.623063 86.003371) (end 126.791189 85.586442) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71C99)) + (segment (start 126.791189 85.586442) (end 125.941687 85.206717) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71C96)) + (segment (start 125.941687 85.206717) (end 125.076219 84.86494) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71C94)) + (segment (start 125.076219 84.86494) (end 124.196481 84.561779) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71C91)) + (segment (start 124.196481 84.561779) (end 123.304194 84.29783) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71C8F)) + (segment (start 123.304194 84.29783) (end 122.401105 84.073607) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71C8C)) + (segment (start 122.401105 84.073607) (end 121.488982 83.889551) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71C8A)) + (segment (start 121.488982 83.889551) (end 120.56961 83.746021) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71C87)) + (segment (start 120.56961 83.746021) (end 119.64479 83.643299) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71C85)) + (segment (start 119.64479 83.643299) (end 118.71633 83.581585) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71C82)) + (segment (start 118.71633 83.581585) (end 117.78605 83.561) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71C80)) + (segment (start 117.78605 83.561) (end 117.78605 83.561) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598842B4)) + (segment (start 117.78605 123.7946) (end 117.78605 123.7946) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884834)) + (segment (start 117.78605 123.7946) (end 118.672883 123.774111) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884831)) + (segment (start 118.672883 123.774111) (end 119.557824 123.712686) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988482E)) + (segment (start 119.557824 123.712686) (end 120.438984 123.610457) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988482C)) + (segment (start 120.438984 123.610457) (end 121.314482 123.467643) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884829)) + (segment (start 121.314482 123.467643) (end 122.18245 123.284547) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884826)) + (segment (start 122.18245 123.284547) (end 123.041036 123.061561) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884824)) + (segment (start 123.041036 123.061561) (end 123.888408 122.79916) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884821)) + (segment (start 123.888408 122.79916) (end 124.722757 122.497905) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988481E)) + (segment (start 124.722757 122.497905) (end 125.542303 122.158438) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988481C)) + (segment (start 125.542303 122.158438) (end 126.345296 121.781484) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884819)) + (segment (start 126.345296 121.781484) (end 127.130024 121.367847) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884816)) + (segment (start 127.130024 121.367847) (end 127.894811 120.91841) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884814)) + (segment (start 127.894811 120.91841) (end 128.638025 120.434132) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884811)) + (segment (start 128.638025 120.434132) (end 129.358081 119.916046) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988480E)) + (segment (start 129.358081 119.916046) (end 130.053442 119.365259) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988480C)) + (segment (start 130.053442 119.365259) (end 130.722623 118.782945) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884809)) + (segment (start 130.722623 118.782945) (end 131.364197 118.170347) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884807)) + (segment (start 131.364197 118.170347) (end 131.976795 117.528773) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884804)) + (segment (start 131.976795 117.528773) (end 132.559109 116.859592) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884801)) + (segment (start 132.559109 116.859592) (end 133.109896 116.164231) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847FF)) + (segment (start 133.109896 116.164231) (end 133.627982 115.444175) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847FC)) + (segment (start 133.627982 115.444175) (end 134.11226 114.700961) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847F9)) + (segment (start 134.11226 114.700961) (end 134.561697 113.936174) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847F7)) + (segment (start 134.561697 113.936174) (end 134.975334 113.151446) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847F4)) + (segment (start 134.975334 113.151446) (end 135.352288 112.348453) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847F1)) + (segment (start 135.352288 112.348453) (end 135.691755 111.528907) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847EF)) + (segment (start 135.691755 111.528907) (end 135.99301 110.694558) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847EC)) + (segment (start 135.99301 110.694558) (end 136.255411 109.847186) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847E9)) + (segment (start 136.255411 109.847186) (end 136.478397 108.9886) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847E7)) + (segment (start 136.478397 108.9886) (end 136.661493 108.120632) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847E4)) + (segment (start 136.661493 108.120632) (end 136.804307 107.245134) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847E1)) + (segment (start 136.804307 107.245134) (end 136.906536 106.363974) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847DF)) + (segment (start 136.906536 106.363974) (end 136.967961 105.479033) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847DC)) + (segment (start 136.967961 105.479033) (end 136.98845 104.5922) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847DA)) + (segment (start 136.98845 104.5922) (end 136.967961 103.705367) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847D7)) + (segment (start 136.967961 103.705367) (end 136.906536 102.820426) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847D4)) + (segment (start 136.906536 102.820426) (end 136.804307 101.939266) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847D2)) + (segment (start 136.804307 101.939266) (end 136.661493 101.063768) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847CF)) + (segment (start 136.661493 101.063768) (end 136.478397 100.1958) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847CC)) + (segment (start 136.478397 100.1958) (end 136.255411 99.337214) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847CA)) + (segment (start 136.255411 99.337214) (end 135.99301 98.489842) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847C7)) + (segment (start 135.99301 98.489842) (end 135.691755 97.655493) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847C4)) + (segment (start 135.691755 97.655493) (end 135.352288 96.835947) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847C2)) + (segment (start 135.352288 96.835947) (end 134.975334 96.032954) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847BF)) + (segment (start 134.975334 96.032954) (end 134.561697 95.248226) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847BC)) + (segment (start 134.561697 95.248226) (end 134.11226 94.483439) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847BA)) + (segment (start 134.11226 94.483439) (end 133.627982 93.740225) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847B7)) + (segment (start 133.627982 93.740225) (end 133.109896 93.020169) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847B4)) + (segment (start 133.109896 93.020169) (end 132.559109 92.324808) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847B2)) + (segment (start 132.559109 92.324808) (end 131.976795 91.655627) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847AF)) + (segment (start 131.976795 91.655627) (end 131.364197 91.014053) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847AD)) + (segment (start 131.364197 91.014053) (end 130.722623 90.401455) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847AA)) + (segment (start 130.722623 90.401455) (end 130.053442 89.819141) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847A7)) + (segment (start 130.053442 89.819141) (end 129.358081 89.268354) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847A5)) + (segment (start 129.358081 89.268354) (end 128.638025 88.750268) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847A2)) + (segment (start 128.638025 88.750268) (end 127.894811 88.26599) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988479F)) + (segment (start 127.894811 88.26599) (end 127.130024 87.816553) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988479D)) + (segment (start 127.130024 87.816553) (end 126.345296 87.402916) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988479A)) + (segment (start 126.345296 87.402916) (end 125.542303 87.025962) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884797)) + (segment (start 125.542303 87.025962) (end 124.722757 86.686495) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884795)) + (segment (start 124.722757 86.686495) (end 123.888408 86.38524) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884792)) + (segment (start 123.888408 86.38524) (end 123.041036 86.122839) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988478F)) + (segment (start 123.041036 86.122839) (end 122.18245 85.899853) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988478D)) + (segment (start 122.18245 85.899853) (end 121.314482 85.716757) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988478A)) + (segment (start 121.314482 85.716757) (end 120.438984 85.573943) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884787)) + (segment (start 120.438984 85.573943) (end 119.557824 85.471714) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884785)) + (segment (start 119.557824 85.471714) (end 118.672883 85.410289) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884782)) + (segment (start 118.672883 85.410289) (end 117.78605 85.3898) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884780)) + (segment (start 117.78605 85.3898) (end 117.78605 85.3898) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884DB4)) + (segment (start 117.78605 85.3898) (end 116.915872 85.410514) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884DB1)) + (segment (start 116.915872 85.410514) (end 116.047665 85.472609) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884DAE)) + (segment (start 116.047665 85.472609) (end 115.183396 85.575945) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884DAB)) + (segment (start 115.183396 85.575945) (end 114.325023 85.720288) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884DA9)) + (segment (start 114.325023 85.720288) (end 113.474491 85.90531) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884DA6)) + (segment (start 113.474491 85.90531) (end 112.633725 86.130592) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884DA3)) + (segment (start 112.633725 86.130592) (end 111.804631 86.395625) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884DA0)) + (segment (start 111.804631 86.395625) (end 110.989087 86.699807) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D9E)) + (segment (start 110.989087 86.699807) (end 110.18894 87.04245) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D9B)) + (segment (start 110.18894 87.04245) (end 109.406003 87.422777) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D98)) + (segment (start 109.406003 87.422777) (end 108.64205 87.839927) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D96)) + (segment (start 108.64205 87.839927) (end 107.898811 88.292955) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D93)) + (segment (start 107.898811 88.292955) (end 107.177969 88.780835) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D90)) + (segment (start 107.177969 88.780835) (end 106.481158 89.302461) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D8D)) + (segment (start 106.481158 89.302461) (end 105.809957 89.856652) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D8B)) + (segment (start 105.809957 89.856652) (end 105.165885 90.442152) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D88)) + (segment (start 105.165885 90.442152) (end 104.550402 91.057635) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D85)) + (segment (start 104.550402 91.057635) (end 103.964902 91.701707) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D82)) + (segment (start 103.964902 91.701707) (end 103.410711 92.372908) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D80)) + (segment (start 103.410711 92.372908) (end 102.889085 93.069719) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D7D)) + (segment (start 102.889085 93.069719) (end 102.401205 93.790561) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D7A)) + (segment (start 102.401205 93.790561) (end 101.948177 94.5338) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D78)) + (segment (start 101.948177 94.5338) (end 101.531027 95.297753) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D75)) + (segment (start 101.531027 95.297753) (end 101.1507 96.08069) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D72)) + (segment (start 101.1507 96.08069) (end 100.808057 96.880837) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D6F)) + (segment (start 100.808057 96.880837) (end 100.503875 97.696381) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D6D)) + (segment (start 100.503875 97.696381) (end 100.238842 98.525475) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D6A)) + (segment (start 100.238842 98.525475) (end 100.01356 99.366241) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D67)) + (segment (start 100.01356 99.366241) (end 99.828538 100.216773) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D64)) + (segment (start 99.828538 100.216773) (end 99.684195 101.075146) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D62)) + (segment (start 99.684195 101.075146) (end 99.580859 101.939415) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D5F)) + (segment (start 99.580859 101.939415) (end 99.518764 102.807622) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D5C)) + (segment (start 99.518764 102.807622) (end 99.49805 103.6778) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D5A)) + (segment (start 99.49805 103.6778) (end 99.518764 104.547978) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D57)) + (segment (start 99.518764 104.547978) (end 99.580859 105.416185) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D54)) + (segment (start 99.580859 105.416185) (end 99.684195 106.280454) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D51)) + (segment (start 99.684195 106.280454) (end 99.828538 107.138827) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D4F)) + (segment (start 99.828538 107.138827) (end 100.01356 107.989359) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D4C)) + (segment (start 100.01356 107.989359) (end 100.238842 108.830125) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D49)) + (segment (start 100.238842 108.830125) (end 100.503875 109.659219) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D46)) + (segment (start 100.503875 109.659219) (end 100.808057 110.474763) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D44)) + (segment (start 100.808057 110.474763) (end 101.1507 111.27491) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D41)) + (segment (start 101.1507 111.27491) (end 101.531027 112.057847) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D3E)) + (segment (start 101.531027 112.057847) (end 101.948177 112.8218) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D3C)) + (segment (start 101.948177 112.8218) (end 102.401205 113.565039) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D39)) + (segment (start 102.401205 113.565039) (end 102.889085 114.285881) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D36)) + (segment (start 102.889085 114.285881) (end 103.410711 114.982692) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D33)) + (segment (start 103.410711 114.982692) (end 103.964902 115.653893) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D31)) + (segment (start 103.964902 115.653893) (end 104.550402 116.297965) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D2E)) + (segment (start 104.550402 116.297965) (end 105.165885 116.913448) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D2B)) + (segment (start 105.165885 116.913448) (end 105.809957 117.498948) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D28)) + (segment (start 105.809957 117.498948) (end 106.481158 118.053139) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D26)) + (segment (start 106.481158 118.053139) (end 107.177969 118.574765) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D23)) + (segment (start 107.177969 118.574765) (end 107.898811 119.062645) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D20)) + (segment (start 107.898811 119.062645) (end 108.64205 119.515673) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D1E)) + (segment (start 108.64205 119.515673) (end 109.406003 119.932823) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D1B)) + (segment (start 109.406003 119.932823) (end 110.18894 120.31315) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D18)) + (segment (start 110.18894 120.31315) (end 110.989087 120.655793) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D15)) + (segment (start 110.989087 120.655793) (end 111.804631 120.959975) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D13)) + (segment (start 111.804631 120.959975) (end 112.633725 121.225008) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D10)) + (segment (start 112.633725 121.225008) (end 113.474491 121.45029) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D0D)) + (segment (start 113.474491 121.45029) (end 114.325023 121.635312) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D0A)) + (segment (start 114.325023 121.635312) (end 115.183396 121.779655) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D08)) + (segment (start 115.183396 121.779655) (end 116.047665 121.882991) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D05)) + (segment (start 116.047665 121.882991) (end 116.915872 121.945086) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D02)) + (segment (start 116.915872 121.945086) (end 117.78605 121.9658) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D00)) + (segment (start 117.78605 121.9658) (end 117.78605 121.9658) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885334)) + (segment (start 117.78605 121.9658) (end 118.638532 121.944873) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885331)) + (segment (start 118.638532 121.944873) (end 119.488961 121.882141) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988532E)) + (segment (start 119.488961 121.882141) (end 120.335287 121.777757) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988532B)) + (segment (start 120.335287 121.777757) (end 121.175471 121.631971) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885328)) + (segment (start 121.175471 121.631971) (end 122.00749 121.445135) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885325)) + (segment (start 122.00749 121.445135) (end 122.82934 121.217699) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885323)) + (segment (start 122.82934 121.217699) (end 123.63904 120.95021) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885320)) + (segment (start 123.63904 120.95021) (end 124.434639 120.643313) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988531D)) + (segment (start 124.434639 120.643313) (end 125.214221 120.297748) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988531A)) + (segment (start 125.214221 120.297748) (end 125.975908 119.914347) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885317)) + (segment (start 125.975908 119.914347) (end 126.717865 119.494034) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885315)) + (segment (start 126.717865 119.494034) (end 127.438305 119.03782) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885312)) + (segment (start 127.438305 119.03782) (end 128.135491 118.546806) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988530F)) + (segment (start 128.135491 118.546806) (end 128.807745 118.022174) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988530C)) + (segment (start 128.807745 118.022174) (end 129.453447 117.465188) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885309)) + (segment (start 129.453447 117.465188) (end 130.07104 116.87719) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885307)) + (segment (start 130.07104 116.87719) (end 130.659038 116.259597) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885304)) + (segment (start 130.659038 116.259597) (end 131.216024 115.613895) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885301)) + (segment (start 131.216024 115.613895) (end 131.740656 114.941641) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852FE)) + (segment (start 131.740656 114.941641) (end 132.23167 114.244455) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852FB)) + (segment (start 132.23167 114.244455) (end 132.687884 113.524015) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852F8)) + (segment (start 132.687884 113.524015) (end 133.108197 112.782058) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852F6)) + (segment (start 133.108197 112.782058) (end 133.491598 112.020371) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852F3)) + (segment (start 133.491598 112.020371) (end 133.837163 111.240789) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852F0)) + (segment (start 133.837163 111.240789) (end 134.14406 110.44519) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852ED)) + (segment (start 134.14406 110.44519) (end 134.411549 109.63549) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852EA)) + (segment (start 134.411549 109.63549) (end 134.638985 108.81364) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852E8)) + (segment (start 134.638985 108.81364) (end 134.825821 107.981621) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852E5)) + (segment (start 134.825821 107.981621) (end 134.971607 107.141437) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852E2)) + (segment (start 134.971607 107.141437) (end 135.075991 106.295111) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852DF)) + (segment (start 135.075991 106.295111) (end 135.138723 105.444682) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852DC)) + (segment (start 135.138723 105.444682) (end 135.15965 104.5922) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852DA)) + (segment (start 135.15965 104.5922) (end 135.138723 103.739718) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852D7)) + (segment (start 135.138723 103.739718) (end 135.075991 102.889289) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852D4)) + (segment (start 135.075991 102.889289) (end 134.971607 102.042963) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852D1)) + (segment (start 134.971607 102.042963) (end 134.825821 101.202779) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852CE)) + (segment (start 134.825821 101.202779) (end 134.638985 100.37076) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852CB)) + (segment (start 134.638985 100.37076) (end 134.411549 99.54891) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852C9)) + (segment (start 134.411549 99.54891) (end 134.14406 98.73921) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852C6)) + (segment (start 134.14406 98.73921) (end 133.837163 97.943611) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852C3)) + (segment (start 133.837163 97.943611) (end 133.491598 97.164029) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852C0)) + (segment (start 133.491598 97.164029) (end 133.108197 96.402342) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852BD)) + (segment (start 133.108197 96.402342) (end 132.687884 95.660385) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852BB)) + (segment (start 132.687884 95.660385) (end 132.23167 94.939945) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852B8)) + (segment (start 132.23167 94.939945) (end 131.740656 94.242759) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852B5)) + (segment (start 131.740656 94.242759) (end 131.216024 93.570505) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852B2)) + (segment (start 131.216024 93.570505) (end 130.659038 92.924803) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852AF)) + (segment (start 130.659038 92.924803) (end 130.07104 92.30721) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852AD)) + (segment (start 130.07104 92.30721) (end 129.453447 91.719212) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852AA)) + (segment (start 129.453447 91.719212) (end 128.807745 91.162226) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852A7)) + (segment (start 128.807745 91.162226) (end 128.135491 90.637594) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852A4)) + (segment (start 128.135491 90.637594) (end 127.438305 90.14658) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852A1)) + (segment (start 127.438305 90.14658) (end 126.717865 89.690366) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988529E)) + (segment (start 126.717865 89.690366) (end 125.975908 89.270053) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988529C)) + (segment (start 125.975908 89.270053) (end 125.214221 88.886652) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885299)) + (segment (start 125.214221 88.886652) (end 124.434639 88.541087) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885296)) + (segment (start 124.434639 88.541087) (end 123.63904 88.23419) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885293)) + (segment (start 123.63904 88.23419) (end 122.82934 87.966701) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885290)) + (segment (start 122.82934 87.966701) (end 122.00749 87.739265) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988528E)) + (segment (start 122.00749 87.739265) (end 121.175471 87.552429) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988528B)) + (segment (start 121.175471 87.552429) (end 120.335287 87.406643) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885288)) + (segment (start 120.335287 87.406643) (end 119.488961 87.302259) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885285)) + (segment (start 119.488961 87.302259) (end 118.638532 87.239527) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885282)) + (segment (start 118.638532 87.239527) (end 117.78605 87.2186) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885280)) + (segment (start 117.78605 87.2186) (end 117.78605 87.2186) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598858B4)) + (segment (start 117.78605 87.2186) (end 116.965627 87.23906) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598858B1)) + (segment (start 116.965627 87.23906) (end 116.147243 87.300389) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598858AE)) + (segment (start 116.147243 87.300389) (end 115.332934 87.402436) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598858AB)) + (segment (start 115.332934 87.402436) (end 114.524723 87.544945) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598858A8)) + (segment (start 114.524723 87.544945) (end 113.724621 87.727563) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598858A5)) + (segment (start 113.724621 87.727563) (end 112.934616 87.949836) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598858A2)) + (segment (start 112.934616 87.949836) (end 112.156672 88.211211) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988589F)) + (segment (start 112.156672 88.211211) (end 111.392724 88.511039) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988589D)) + (segment (start 111.392724 88.511039) (end 110.644671 88.848573) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988589A)) + (segment (start 110.644671 88.848573) (end 109.914372 89.222975) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885897)) + (segment (start 109.914372 89.222975) (end 109.203644 89.633315) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885894)) + (segment (start 109.203644 89.633315) (end 108.514253 90.078571) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885891)) + (segment (start 108.514253 90.078571) (end 107.847912 90.557637) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988588E)) + (segment (start 107.847912 90.557637) (end 107.20628 91.069321) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988588B)) + (segment (start 107.20628 91.069321) (end 106.590951 91.612353) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885889)) + (segment (start 106.590951 91.612353) (end 106.003454 92.185381) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885886)) + (segment (start 106.003454 92.185381) (end 105.445251 92.78698) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885883)) + (segment (start 105.445251 92.78698) (end 104.917729 93.415657) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885880)) + (segment (start 104.917729 93.415657) (end 104.4222 94.069846) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988587D)) + (segment (start 104.4222 94.069846) (end 103.959895 94.747923) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988587A)) + (segment (start 103.959895 94.747923) (end 103.531965 95.4482) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885877)) + (segment (start 103.531965 95.4482) (end 103.139472 96.168938) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885875)) + (segment (start 103.139472 96.168938) (end 102.783393 96.908343) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885872)) + (segment (start 102.783393 96.908343) (end 102.464613 97.664579) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988586F)) + (segment (start 102.464613 97.664579) (end 102.183924 98.435765) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988586C)) + (segment (start 102.183924 98.435765) (end 101.942025 99.219983) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885869)) + (segment (start 101.942025 99.219983) (end 101.739517 100.015283) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885866)) + (segment (start 101.739517 100.015283) (end 101.576902 100.81969) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885863)) + (segment (start 101.576902 100.81969) (end 101.454586 101.631202) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885861)) + (segment (start 101.454586 101.631202) (end 101.372873 102.447802) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988585E)) + (segment (start 101.372873 102.447802) (end 101.331966 103.267461) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988585B)) + (segment (start 101.331966 103.267461) (end 101.331966 104.088139) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885858)) + (segment (start 101.331966 104.088139) (end 101.372873 104.907798) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885855)) + (segment (start 101.372873 104.907798) (end 101.454586 105.724398) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885852)) + (segment (start 101.454586 105.724398) (end 101.576902 106.53591) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988584F)) + (segment (start 101.576902 106.53591) (end 101.739517 107.340317) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988584D)) + (segment (start 101.739517 107.340317) (end 101.942025 108.135617) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988584A)) + (segment (start 101.942025 108.135617) (end 102.183924 108.919835) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885847)) + (segment (start 102.183924 108.919835) (end 102.464613 109.691021) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885844)) + (segment (start 102.464613 109.691021) (end 102.783393 110.447257) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885841)) + (segment (start 102.783393 110.447257) (end 103.139472 111.186662) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988583E)) + (segment (start 103.139472 111.186662) (end 103.531965 111.9074) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988583B)) + (segment (start 103.531965 111.9074) (end 103.959895 112.607677) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885839)) + (segment (start 103.959895 112.607677) (end 104.4222 113.285754) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885836)) + (segment (start 104.4222 113.285754) (end 104.917729 113.939943) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885833)) + (segment (start 104.917729 113.939943) (end 105.445251 114.56862) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885830)) + (segment (start 105.445251 114.56862) (end 106.003454 115.170219) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988582D)) + (segment (start 106.003454 115.170219) (end 106.590951 115.743247) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988582A)) + (segment (start 106.590951 115.743247) (end 107.20628 116.286279) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885827)) + (segment (start 107.20628 116.286279) (end 107.847912 116.797963) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885825)) + (segment (start 107.847912 116.797963) (end 108.514253 117.277029) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885822)) + (segment (start 108.514253 117.277029) (end 109.203644 117.722285) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988581F)) + (segment (start 109.203644 117.722285) (end 109.914372 118.132625) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988581C)) + (segment (start 109.914372 118.132625) (end 110.644671 118.507027) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885819)) + (segment (start 110.644671 118.507027) (end 111.392724 118.844561) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885816)) + (segment (start 111.392724 118.844561) (end 112.156672 119.144389) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885813)) + (segment (start 112.156672 119.144389) (end 112.934616 119.405764) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885811)) + (segment (start 112.934616 119.405764) (end 113.724621 119.628037) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988580E)) + (segment (start 113.724621 119.628037) (end 114.524723 119.810655) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988580B)) + (segment (start 114.524723 119.810655) (end 115.332934 119.953164) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885808)) + (segment (start 115.332934 119.953164) (end 116.147243 120.055211) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885805)) + (segment (start 116.147243 120.055211) (end 117.78605 120.137) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885800)) + (segment (start 117.78605 120.137) (end 117.78605 120.137) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885E34)) + (segment (start 117.78605 120.137) (end 118.586277 120.116389) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885E31)) + (segment (start 118.586277 120.116389) (end 119.384382 120.054611) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885E2E)) + (segment (start 119.384382 120.054611) (end 120.178248 119.951829) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885E2B)) + (segment (start 120.178248 119.951829) (end 120.965771 119.808316) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885E28)) + (segment (start 120.965771 119.808316) (end 121.744862 119.624453) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885E25)) + (segment (start 121.744862 119.624453) (end 122.513454 119.400726) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885E22)) + (segment (start 122.513454 119.400726) (end 123.269511 119.137731) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885E1F)) + (segment (start 123.269511 119.137731) (end 124.011026 118.836163) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885E1C)) + (segment (start 124.011026 118.836163) (end 124.736034 118.496823) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885E19)) + (segment (start 124.736034 118.496823) (end 125.442611 118.12061) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885E16)) + (segment (start 125.442611 118.12061) (end 126.128885 117.708522) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885E13)) + (segment (start 126.128885 117.708522) (end 126.793035 117.261653) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885E10)) + (segment (start 126.793035 117.261653) (end 127.4333 116.781186) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885E0D)) + (segment (start 127.4333 116.781186) (end 128.047983 116.268396) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885E0A)) + (segment (start 128.047983 116.268396) (end 128.635452 115.724643) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885E07)) + (segment (start 128.635452 115.724643) (end 129.194151 115.151368) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885E04)) + (segment (start 129.194151 115.151368) (end 129.722598 114.550093) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885E01)) + (segment (start 129.722598 114.550093) (end 130.219391 113.922411) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DFE)) + (segment (start 130.219391 113.922411) (end 130.683213 113.269987) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DFB)) + (segment (start 130.683213 113.269987) (end 131.112834 112.594551) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DF8)) + (segment (start 131.112834 112.594551) (end 131.507115 111.897894) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DF6)) + (segment (start 131.507115 111.897894) (end 131.865011 111.181864) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DF3)) + (segment (start 131.865011 111.181864) (end 132.185571 110.44836) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DF0)) + (segment (start 132.185571 110.44836) (end 132.467946 109.699326) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DED)) + (segment (start 132.467946 109.699326) (end 132.711388 108.936748) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DEA)) + (segment (start 132.711388 108.936748) (end 132.91525 108.16265) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DE7)) + (segment (start 132.91525 108.16265) (end 133.078992 107.379084) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DE4)) + (segment (start 133.078992 107.379084) (end 133.202181 106.588127) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DE1)) + (segment (start 133.202181 106.588127) (end 133.284488 105.791877) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DDE)) + (segment (start 133.284488 105.791877) (end 133.325696 104.992446) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DDB)) + (segment (start 133.325696 104.992446) (end 133.325696 104.191954) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DD8)) + (segment (start 133.325696 104.191954) (end 133.284488 103.392523) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DD5)) + (segment (start 133.284488 103.392523) (end 133.202181 102.596273) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DD2)) + (segment (start 133.202181 102.596273) (end 133.078992 101.805316) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DCF)) + (segment (start 133.078992 101.805316) (end 132.91525 101.02175) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DCC)) + (segment (start 132.91525 101.02175) (end 132.711388 100.247652) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DC9)) + (segment (start 132.711388 100.247652) (end 132.467946 99.485074) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DC6)) + (segment (start 132.467946 99.485074) (end 132.185571 98.73604) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DC3)) + (segment (start 132.185571 98.73604) (end 131.865011 98.002536) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DC0)) + (segment (start 131.865011 98.002536) (end 131.507115 97.286506) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DBD)) + (segment (start 131.507115 97.286506) (end 131.112834 96.589849) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DBB)) + (segment (start 131.112834 96.589849) (end 130.683213 95.914413) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DB8)) + (segment (start 130.683213 95.914413) (end 130.219391 95.261989) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DB5)) + (segment (start 130.219391 95.261989) (end 129.722598 94.634307) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DB2)) + (segment (start 129.722598 94.634307) (end 129.194151 94.033032) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DAF)) + (segment (start 129.194151 94.033032) (end 128.635452 93.459757) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DAC)) + (segment (start 128.635452 93.459757) (end 128.047983 92.916004) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DA9)) + (segment (start 128.047983 92.916004) (end 127.4333 92.403214) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DA6)) + (segment (start 127.4333 92.403214) (end 126.793035 91.922747) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DA3)) + (segment (start 126.793035 91.922747) (end 126.128885 91.475878) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DA0)) + (segment (start 126.128885 91.475878) (end 125.442611 91.06379) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885D9D)) + (segment (start 125.442611 91.06379) (end 124.736034 90.687577) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885D9A)) + (segment (start 124.736034 90.687577) (end 124.011026 90.348237) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885D97)) + (segment (start 124.011026 90.348237) (end 123.269511 90.046669) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885D94)) + (segment (start 123.269511 90.046669) (end 122.513454 89.783674) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885D91)) + (segment (start 122.513454 89.783674) (end 121.744862 89.559947) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885D8E)) + (segment (start 121.744862 89.559947) (end 120.965771 89.376084) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885D8B)) + (segment (start 120.965771 89.376084) (end 120.178248 89.232571) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885D88)) + (segment (start 120.178248 89.232571) (end 119.384382 89.129789) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885D85)) + (segment (start 119.384382 89.129789) (end 117.78605 89.0474) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885D80)) + (segment (start 117.78605 89.0474) (end 117.78605 89.0474) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5430E)) + (segment (start 117.78605 89.0474) (end 117.004852 89.068204) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5430B)) + (segment (start 117.004852 89.068204) (end 116.225868 89.130558) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54308)) + (segment (start 116.225868 89.130558) (end 115.451307 89.234286) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54305)) + (segment (start 115.451307 89.234286) (end 114.683366 89.379092) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54302)) + (segment (start 114.683366 89.379092) (end 113.924219 89.564566) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542FF)) + (segment (start 113.924219 89.564566) (end 113.176021 89.790183) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542FC)) + (segment (start 113.176021 89.790183) (end 112.440892 90.055303) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542F9)) + (segment (start 112.440892 90.055303) (end 111.720916 90.359175) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542F6)) + (segment (start 111.720916 90.359175) (end 111.018134 90.700936) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542F3)) + (segment (start 111.018134 90.700936) (end 110.334538 91.079619) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542F0)) + (segment (start 110.334538 91.079619) (end 109.672067 91.494149) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542ED)) + (segment (start 109.672067 91.494149) (end 109.032598 91.943352) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542E9)) + (segment (start 109.032598 91.943352) (end 108.417944 92.425953) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542E6)) + (segment (start 108.417944 92.425953) (end 107.829848 92.940586) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542E3)) + (segment (start 107.829848 92.940586) (end 107.269976 93.48579) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542E0)) + (segment (start 107.269976 93.48579) (end 106.739917 94.060021) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542DD)) + (segment (start 106.739917 94.060021) (end 106.241173 94.66165) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542DA)) + (segment (start 106.241173 94.66165) (end 105.775157 95.288972) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542D7)) + (segment (start 105.775157 95.288972) (end 105.343191 95.940208) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542D4)) + (segment (start 105.343191 95.940208) (end 104.946499 96.613513) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542D1)) + (segment (start 104.946499 96.613513) (end 104.586206 97.306977) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542CE)) + (segment (start 104.586206 97.306977) (end 104.263334 98.018635) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542CB)) + (segment (start 104.263334 98.018635) (end 103.978797 98.746469) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542C8)) + (segment (start 103.978797 98.746469) (end 103.733402 99.488416) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542C5)) + (segment (start 103.733402 99.488416) (end 103.527846 100.242372) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542C2)) + (segment (start 103.527846 100.242372) (end 103.362709 101.0062) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542BF)) + (segment (start 103.362709 101.0062) (end 103.238462 101.777735) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542BC)) + (segment (start 103.238462 101.777735) (end 103.113926 103.335161) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542B9)) + (segment (start 103.155456 102.55479) (end 103.113926 103.335161) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542B6)) + (segment (start 103.113926 103.335161) (end 103.15565 104.897) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542B0)) + (segment (start 117.78605 78.0746) (end 117.78605 78.0746) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5477C)) + (segment (start 117.78605 78.0746) (end 118.827126 78.095044) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5477F)) + (segment (start 118.827126 78.095044) (end 119.866597 78.156345) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54781)) + (segment (start 119.866597 78.156345) (end 120.90286 78.258408) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54783)) + (segment (start 120.90286 78.258408) (end 121.934317 78.401076) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54786)) + (segment (start 121.934317 78.401076) (end 122.959377 78.584128) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54788)) + (segment (start 122.959377 78.584128) (end 123.976461 78.807283) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5478A)) + (segment (start 123.976461 78.807283) (end 124.983999 79.070197) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5478C)) + (segment (start 124.983999 79.070197) (end 125.980439 79.372464) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5478F)) + (segment (start 125.980439 79.372464) (end 126.964244 79.713617) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54791)) + (segment (start 126.964244 79.713617) (end 127.933896 80.093132) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54793)) + (segment (start 127.933896 80.093132) (end 128.887901 80.510423) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54795)) + (segment (start 128.887901 80.510423) (end 129.824788 80.964845) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54798)) + (segment (start 129.824788 80.964845) (end 130.743113 81.4557) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5479A)) + (segment (start 130.743113 81.4557) (end 131.641458 81.982229) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5479C)) + (segment (start 131.641458 81.982229) (end 132.518439 82.543621) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5479E)) + (segment (start 132.518439 82.543621) (end 133.372704 83.139011) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547A1)) + (segment (start 133.372704 83.139011) (end 134.202936 83.76748) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547A3)) + (segment (start 134.202936 83.76748) (end 135.007854 84.428059) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547A5)) + (segment (start 135.007854 84.428059) (end 135.786217 85.119729) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547A7)) + (segment (start 135.786217 85.119729) (end 136.536825 85.841425) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547AA)) + (segment (start 136.536825 85.841425) (end 137.258521 86.592033) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547AC)) + (segment (start 137.258521 86.592033) (end 137.950191 87.370396) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547AE)) + (segment (start 137.950191 87.370396) (end 138.61077 88.175314) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547B0)) + (segment (start 138.61077 88.175314) (end 139.239239 89.005546) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547B3)) + (segment (start 139.239239 89.005546) (end 139.834629 89.859811) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547B5)) + (segment (start 139.834629 89.859811) (end 140.396021 90.736792) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547B7)) + (segment (start 140.396021 90.736792) (end 140.92255 91.635137) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547B9)) + (segment (start 140.92255 91.635137) (end 141.413405 92.553462) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547BC)) + (segment (start 141.413405 92.553462) (end 141.867827 93.490349) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547BE)) + (segment (start 141.867827 93.490349) (end 142.285118 94.444354) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547C0)) + (segment (start 142.285118 94.444354) (end 142.664633 95.414006) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547C2)) + (segment (start 142.664633 95.414006) (end 143.005786 96.397811) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547C5)) + (segment (start 143.005786 96.397811) (end 143.308053 97.394251) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547C7)) + (segment (start 143.308053 97.394251) (end 143.570967 98.401789) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547C9)) + (segment (start 143.570967 98.401789) (end 143.794122 99.418873) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547CB)) + (segment (start 143.794122 99.418873) (end 143.977174 100.443933) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547CE)) + (segment (start 143.977174 100.443933) (end 144.119842 101.47539) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547D0)) + (segment (start 144.119842 101.47539) (end 144.221905 102.511653) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547D2)) + (segment (start 144.221905 102.511653) (end 144.283206 103.551124) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547D4)) + (segment (start 144.283206 103.551124) (end 144.30365 104.5922) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547D7)) + (segment (start 144.30365 104.5922) (end 144.283206 105.633276) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547D9)) + (segment (start 144.283206 105.633276) (end 144.221905 106.672747) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547DB)) + (segment (start 144.221905 106.672747) (end 144.119842 107.70901) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547DD)) + (segment (start 144.119842 107.70901) (end 143.977174 108.740467) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547E0)) + (segment (start 143.977174 108.740467) (end 143.794122 109.765527) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547E2)) + (segment (start 143.794122 109.765527) (end 143.570967 110.782611) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547E4)) + (segment (start 143.570967 110.782611) (end 143.308053 111.790149) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547E6)) + (segment (start 143.308053 111.790149) (end 143.005786 112.786589) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547E9)) + (segment (start 143.005786 112.786589) (end 142.664633 113.770394) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547EB)) + (segment (start 142.664633 113.770394) (end 142.285118 114.740046) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547ED)) + (segment (start 142.285118 114.740046) (end 141.867827 115.694051) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547EF)) + (segment (start 141.867827 115.694051) (end 141.413405 116.630938) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547F2)) + (segment (start 141.413405 116.630938) (end 140.92255 117.549263) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547F4)) + (segment (start 140.92255 117.549263) (end 140.396021 118.447608) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547F6)) + (segment (start 140.396021 118.447608) (end 139.834629 119.324589) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547F8)) + (segment (start 139.834629 119.324589) (end 139.239239 120.178854) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547FB)) + (segment (start 139.239239 120.178854) (end 138.61077 121.009086) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547FD)) + (segment (start 138.61077 121.009086) (end 137.950191 121.814004) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547FF)) + (segment (start 137.950191 121.814004) (end 137.258521 122.592367) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54801)) + (segment (start 137.258521 122.592367) (end 136.536825 123.342975) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54804)) + (segment (start 136.536825 123.342975) (end 135.786217 124.064671) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54806)) + (segment (start 135.786217 124.064671) (end 135.007854 124.756341) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54808)) + (segment (start 135.007854 124.756341) (end 134.202936 125.41692) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5480A)) + (segment (start 134.202936 125.41692) (end 133.372704 126.045389) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5480D)) + (segment (start 133.372704 126.045389) (end 132.518439 126.640779) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5480F)) + (segment (start 132.518439 126.640779) (end 131.641458 127.202171) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54811)) + (segment (start 131.641458 127.202171) (end 130.743113 127.7287) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54813)) + (segment (start 130.743113 127.7287) (end 129.824788 128.219555) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54816)) + (segment (start 129.824788 128.219555) (end 128.887901 128.673977) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54818)) + (segment (start 128.887901 128.673977) (end 127.933896 129.091268) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5481A)) + (segment (start 127.933896 129.091268) (end 126.964244 129.470783) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5481C)) + (segment (start 126.964244 129.470783) (end 125.980439 129.811936) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5481F)) + (segment (start 125.980439 129.811936) (end 124.983999 130.114203) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54821)) + (segment (start 124.983999 130.114203) (end 123.976461 130.377117) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54823)) + (segment (start 123.976461 130.377117) (end 122.959377 130.600272) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54825)) + (segment (start 122.959377 130.600272) (end 121.934317 130.783324) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54828)) + (segment (start 121.934317 130.783324) (end 120.90286 130.925992) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5482A)) + (segment (start 120.90286 130.925992) (end 119.866597 131.028055) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5482C)) + (segment (start 119.866597 131.028055) (end 117.78605 131.1098) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54830)) + (segment (start 117.78605 131.1098) (end 117.78605 131.1098) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D4C)) + (segment (start 117.78605 131.1098) (end 116.722364 131.08917) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D4F)) + (segment (start 116.722364 131.08917) (end 115.660278 131.02731) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D51)) + (segment (start 115.660278 131.02731) (end 114.601389 130.924315) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D53)) + (segment (start 114.601389 130.924315) (end 113.54729 130.780338) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D55)) + (segment (start 113.54729 130.780338) (end 112.499567 130.595596) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D58)) + (segment (start 112.499567 130.595596) (end 111.459795 130.370367) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D5A)) + (segment (start 111.459795 130.370367) (end 110.429539 130.10499) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D5C)) + (segment (start 110.429539 130.10499) (end 109.410347 129.799864) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D5E)) + (segment (start 109.410347 129.799864) (end 108.403753 129.455448) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D60)) + (segment (start 108.403753 129.455448) (end 107.411271 129.07226) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D63)) + (segment (start 107.411271 129.07226) (end 106.434394 128.650876) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D65)) + (segment (start 106.434394 128.650876) (end 105.474591 128.191931) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D67)) + (segment (start 105.474591 128.191931) (end 104.533305 127.696113) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D69)) + (segment (start 104.533305 127.696113) (end 103.611953 127.16417) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D6C)) + (segment (start 103.611953 127.16417) (end 102.71192 126.596902) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D6E)) + (segment (start 102.71192 126.596902) (end 101.83456 125.99516) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D70)) + (segment (start 101.83456 125.99516) (end 100.981192 125.359852) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D72)) + (segment (start 100.981192 125.359852) (end 100.1531 124.691931) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D74)) + (segment (start 100.1531 124.691931) (end 99.35153 123.992403) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D77)) + (segment (start 99.35153 123.992403) (end 98.577688 123.26232) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D79)) + (segment (start 98.577688 123.26232) (end 97.832736 122.502781) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D7B)) + (segment (start 97.832736 122.502781) (end 97.117796 121.714926) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D7D)) + (segment (start 97.117796 121.714926) (end 96.433944 120.899942) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D80)) + (segment (start 96.433944 120.899942) (end 95.782207 120.059054) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D82)) + (segment (start 95.782207 120.059054) (end 95.163565 119.193528) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D84)) + (segment (start 95.163565 119.193528) (end 94.57895 118.304664) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D86)) + (segment (start 94.57895 118.304664) (end 94.029241 117.3938) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D89)) + (segment (start 94.029241 117.3938) (end 93.515264 116.462306) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D8B)) + (segment (start 93.515264 116.462306) (end 93.037793 115.511583) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D8D)) + (segment (start 93.037793 115.511583) (end 92.597546 114.54306) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D8F)) + (segment (start 92.597546 114.54306) (end 92.195184 113.558195) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D91)) + (segment (start 92.195184 113.558195) (end 91.831314 112.558469) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D94)) + (segment (start 91.831314 112.558469) (end 91.506482 111.545386) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D96)) + (segment (start 91.506482 111.545386) (end 91.221177 110.520469) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D98)) + (segment (start 91.221177 110.520469) (end 90.975828 109.485261) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D9A)) + (segment (start 90.975828 109.485261) (end 90.770804 108.441317) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D9D)) + (segment (start 90.770804 108.441317) (end 90.606413 107.390208) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D9F)) + (segment (start 90.606413 107.390208) (end 90.482904 106.333516) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DA1)) + (segment (start 90.482904 106.333516) (end 90.400461 105.272829) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DA3)) + (segment (start 90.400461 105.272829) (end 90.359208 104.209743) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DA5)) + (segment (start 90.359208 104.209743) (end 90.359208 103.145857) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DA8)) + (segment (start 90.359208 103.145857) (end 90.400461 102.082771) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DAA)) + (segment (start 90.400461 102.082771) (end 90.482904 101.022084) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DAC)) + (segment (start 90.482904 101.022084) (end 90.606413 99.965392) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DAE)) + (segment (start 90.606413 99.965392) (end 90.770804 98.914283) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DB1)) + (segment (start 90.770804 98.914283) (end 90.975828 97.870339) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DB3)) + (segment (start 90.975828 97.870339) (end 91.221177 96.835131) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DB5)) + (segment (start 91.221177 96.835131) (end 91.506482 95.810214) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DB7)) + (segment (start 91.506482 95.810214) (end 91.831314 94.797131) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DB9)) + (segment (start 91.831314 94.797131) (end 92.195184 93.797405) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DBC)) + (segment (start 92.195184 93.797405) (end 92.597546 92.81254) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DBE)) + (segment (start 92.597546 92.81254) (end 93.037793 91.844017) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DC0)) + (segment (start 93.037793 91.844017) (end 93.515264 90.893294) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DC2)) + (segment (start 93.515264 90.893294) (end 94.029241 89.9618) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DC5)) + (segment (start 94.029241 89.9618) (end 94.57895 89.050936) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DC7)) + (segment (start 94.57895 89.050936) (end 95.163565 88.162072) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DC9)) + (segment (start 95.163565 88.162072) (end 95.782207 87.296546) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DCB)) + (segment (start 95.782207 87.296546) (end 96.433944 86.455658) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DCD)) + (segment (start 96.433944 86.455658) (end 97.117796 85.640674) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DD0)) + (segment (start 97.117796 85.640674) (end 97.832736 84.852819) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DD2)) + (segment (start 97.832736 84.852819) (end 98.577688 84.09328) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DD4)) + (segment (start 98.577688 84.09328) (end 99.35153 83.363197) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DD6)) + (segment (start 99.35153 83.363197) (end 100.1531 82.663669) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DD9)) + (segment (start 100.1531 82.663669) (end 100.981192 81.995748) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DDB)) + (segment (start 100.981192 81.995748) (end 101.83456 81.36044) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DDD)) + (segment (start 101.83456 81.36044) (end 102.71192 80.758698) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DDF)) + (segment (start 102.71192 80.758698) (end 103.611953 80.19143) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DE1)) + (segment (start 103.611953 80.19143) (end 104.533305 79.659487) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DE4)) + (segment (start 104.533305 79.659487) (end 105.474591 79.163669) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DE6)) + (segment (start 105.474591 79.163669) (end 106.434394 78.704724) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DE8)) + (segment (start 106.434394 78.704724) (end 107.411271 78.28334) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DEA)) + (segment (start 107.411271 78.28334) (end 108.403753 77.900152) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DED)) + (segment (start 108.403753 77.900152) (end 109.410347 77.555736) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DEF)) + (segment (start 109.410347 77.555736) (end 110.429539 77.25061) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DF1)) + (segment (start 110.429539 77.25061) (end 111.459795 76.985233) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DF3)) + (segment (start 111.459795 76.985233) (end 112.499567 76.760004) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DF5)) + (segment (start 112.499567 76.760004) (end 113.54729 76.575262) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DF8)) + (segment (start 113.54729 76.575262) (end 114.601389 76.431285) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DFA)) + (segment (start 114.601389 76.431285) (end 115.660278 76.32829) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DFC)) + (segment (start 115.660278 76.32829) (end 117.78605 76.2458) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54E00)) + (segment (start 117.78605 76.2458) (end 117.78605 76.2458) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E552EC)) + (via (at 103.10485 104.9986) (size 1.5) (drill 0.6) (layers Top Bottom) (net 5) (tstamp 55745BE92270)) + (segment (start 98.296709 98.6927) (end 98.090011 99.584916) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884265)) + (segment (start 98.543801 97.810817) (end 98.296709 98.6927) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884268)) + (segment (start 98.830775 96.941094) (end 98.543801 97.810817) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988426A)) + (segment (start 99.157038 96.085334) (end 98.830775 96.941094) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988426D)) + (segment (start 99.521912 95.24531) (end 99.157038 96.085334) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884270)) + (segment (start 99.924641 94.422764) (end 99.521912 95.24531) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884272)) + (segment (start 100.36439 93.6194) (end 99.924641 94.422764) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884275)) + (segment (start 100.840249 92.836884) (end 100.36439 93.6194) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884278)) + (segment (start 101.35123 92.076837) (end 100.840249 92.836884) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988427A)) + (segment (start 101.896275 91.340835) (end 101.35123 92.076837) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988427D)) + (segment (start 102.474254 90.630404) (end 101.896275 91.340835) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988427F)) + (segment (start 103.083969 89.947015) (end 102.474254 90.630404) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884282)) + (segment (start 98.830775 110.414506) (end 99.157038 111.270266) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884243)) + (segment (start 98.543801 109.544783) (end 98.830775 110.414506) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884246)) + (segment (start 98.296709 108.6629) (end 98.543801 109.544783) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884249)) + (segment (start 98.090011 107.770684) (end 98.296709 108.6629) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988424B)) + (segment (start 97.924137 106.869985) (end 98.090011 107.770684) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988424E)) + (segment (start 97.799429 105.96267) (end 97.924137 106.869985) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884250)) + (segment (start 97.716147 105.050619) (end 97.799429 105.96267) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884253)) + (segment (start 97.674463 104.135723) (end 97.716147 105.050619) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884256)) + (segment (start 97.674463 103.219877) (end 97.674463 104.135723) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884258)) + (segment (start 97.716147 102.304981) (end 97.674463 103.219877) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988425B)) + (segment (start 97.799429 101.39293) (end 97.716147 102.304981) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988425D)) + (segment (start 97.924137 100.485615) (end 97.799429 101.39293) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884260)) + (segment (start 98.090011 99.584916) (end 97.924137 100.485615) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884263)) + (segment (start 116.870442 123.773752) (end 117.78605 123.7946) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884200)) + (segment (start 115.956732 123.711253) (end 116.870442 123.773752) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884202)) + (segment (start 115.046813 123.607231) (end 115.956732 123.711253) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884205)) + (segment (start 114.142571 123.461902) (end 115.046813 123.607231) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884207)) + (segment (start 113.245882 123.275568) (end 114.142571 123.461902) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988420A)) + (segment (start 112.358602 123.048614) (end 113.245882 123.275568) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988420D)) + (segment (start 111.482572 122.781512) (end 112.358602 123.048614) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988420F)) + (segment (start 110.619607 122.474814) (end 111.482572 122.781512) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884212)) + (segment (start 109.771495 122.129156) (end 110.619607 122.474814) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884214)) + (segment (start 108.939995 121.745255) (end 109.771495 122.129156) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884217)) + (segment (start 108.126829 121.323907) (end 108.939995 121.745255) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988421A)) + (segment (start 107.333684 120.865984) (end 108.126829 121.323907) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988421C)) + (segment (start 106.562202 120.372436) (end 107.333684 120.865984) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988421F)) + (segment (start 103.724156 89.292085) (end 103.083969 89.947015) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884285)) + (segment (start 104.393489 88.666972) (end 103.724156 89.292085) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884287)) + (segment (start 105.09058 88.072971) (end 104.393489 88.666972) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988428A)) + (segment (start 105.813984 87.511314) (end 105.09058 88.072971) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988428C)) + (segment (start 106.562202 86.983164) (end 105.813984 87.511314) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988428F)) + (segment (start 107.333684 86.489616) (end 106.562202 86.983164) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884292)) + (segment (start 108.126829 86.031693) (end 107.333684 86.489616) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884294)) + (segment (start 108.939995 85.610345) (end 108.126829 86.031693) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884297)) + (segment (start 109.771495 85.226444) (end 108.939995 85.610345) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884299)) + (segment (start 110.619607 84.880786) (end 109.771495 85.226444) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988429C)) + (segment (start 111.482572 84.574088) (end 110.619607 84.880786) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988429F)) + (segment (start 112.358602 84.306986) (end 111.482572 84.574088) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598842A1)) + (segment (start 113.245882 84.080032) (end 112.358602 84.306986) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598842A4)) + (segment (start 114.142571 83.893698) (end 113.245882 84.080032) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598842A6)) + (segment (start 115.046813 83.748369) (end 114.142571 83.893698) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598842A9)) + (segment (start 115.956732 83.644347) (end 115.046813 83.748369) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598842AC)) + (segment (start 116.870442 83.581848) (end 115.956732 83.644347) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598842AE)) + (segment (start 117.78605 83.561) (end 116.870442 83.581848) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598842B1)) + (segment (start 105.813984 119.844286) (end 106.562202 120.372436) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884221)) + (segment (start 105.09058 119.282629) (end 105.813984 119.844286) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884224)) + (segment (start 104.393489 118.688628) (end 105.09058 119.282629) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884227)) + (segment (start 103.724156 118.063515) (end 104.393489 118.688628) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884229)) + (segment (start 103.083969 117.408585) (end 103.724156 118.063515) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988422C)) + (segment (start 102.474254 116.725196) (end 103.083969 117.408585) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988422E)) + (segment (start 101.896275 116.014765) (end 102.474254 116.725196) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884231)) + (segment (start 101.35123 115.278763) (end 101.896275 116.014765) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884234)) + (segment (start 100.840249 114.518716) (end 101.35123 115.278763) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884236)) + (segment (start 100.36439 113.7362) (end 100.840249 114.518716) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884239)) + (segment (start 99.924641 112.932836) (end 100.36439 113.7362) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988423C)) + (segment (start 99.521912 112.11029) (end 99.924641 112.932836) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988423E)) + (segment (start 99.157038 111.270266) (end 99.521912 112.11029) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884241)) + (segment (start 133.922585 81.287037) (end 134.792929 81.914359) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55311)) + (segment (start 133.029126 80.693099) (end 133.922585 81.287037) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5530F)) + (segment (start 132.11383 80.133396) (end 133.029126 80.693099) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5530D)) + (segment (start 131.178011 79.60873) (end 132.11383 80.133396) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5530B)) + (segment (start 130.223008 79.119853) (end 131.178011 79.60873) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55309)) + (segment (start 129.250189 78.667464) (end 130.223008 79.119853) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55307)) + (segment (start 128.260947 78.252213) (end 129.250189 78.667464) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55304)) + (segment (start 127.2567 77.874693) (end 128.260947 78.252213) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55302)) + (segment (start 126.238887 77.535446) (end 127.2567 77.874693) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55300)) + (segment (start 125.208965 77.234957) (end 126.238887 77.535446) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E552FE)) + (segment (start 124.16841 76.973658) (end 125.208965 77.234957) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E552FC)) + (segment (start 123.118713 76.751922) (end 124.16841 76.973658) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E552FA)) + (segment (start 122.061376 76.570066) (end 123.118713 76.751922) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E552F7)) + (segment (start 120.997915 76.428352) (end 122.061376 76.570066) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E552F5)) + (segment (start 119.929853 76.326983) (end 120.997915 76.428352) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E552F3)) + (segment (start 118.85872 76.266103) (end 119.929853 76.326983) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E552F1)) + (segment (start 117.78605 76.2458) (end 118.85872 76.266103) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E552EF)) + (segment (start 97.522006 124.796384) (end 96.729117 124.006928) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55907)) + (segment (start 98.344472 125.554977) (end 97.522006 124.796384) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55905)) + (segment (start 99.195314 126.281602) (end 98.344472 125.554977) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55903)) + (segment (start 100.073289 126.975196) (end 99.195314 126.281602) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55900)) + (segment (start 100.977117 127.634748) (end 100.073289 126.975196) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E558FE)) + (segment (start 101.905478 128.259296) (end 100.977117 127.634748) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E558FC)) + (segment (start 102.857018 128.847927) (end 101.905478 128.259296) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E558FA)) + (segment (start 103.830347 129.399782) (end 102.857018 128.847927) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E558F8)) + (segment (start 104.824045 129.914057) (end 103.830347 129.399782) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E558F5)) + (segment (start 105.836662 130.39) (end 104.824045 129.914057) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E558F3)) + (segment (start 106.866719 130.826917) (end 105.836662 130.39) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E558F1)) + (segment (start 107.912713 131.22417) (end 106.866719 130.826917) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E558EF)) + (segment (start 108.973118 131.58118) (end 107.912713 131.22417) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E558ED)) + (segment (start 110.046385 131.897425) (end 108.973118 131.58118) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E558EA)) + (segment (start 111.130949 132.172443) (end 110.046385 131.897425) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E558E8)) + (segment (start 128.260947 130.932187) (end 127.2567 131.309707) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5538D)) + (segment (start 129.250189 130.516936) (end 128.260947 130.932187) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5538B)) + (segment (start 130.223008 130.064547) (end 129.250189 130.516936) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55389)) + (segment (start 131.178011 129.57567) (end 130.223008 130.064547) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55386)) + (segment (start 132.11383 129.051004) (end 131.178011 129.57567) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55384)) + (segment (start 133.029126 128.491301) (end 132.11383 129.051004) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55382)) + (segment (start 133.922585 127.897363) (end 133.029126 128.491301) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55380)) + (segment (start 134.792929 127.270041) (end 133.922585 127.897363) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5537E)) + (segment (start 135.638911 126.610232) (end 134.792929 127.270041) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5537C)) + (segment (start 136.459319 125.918883) (end 135.638911 126.610232) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55379)) + (segment (start 137.252977 125.196984) (end 136.459319 125.918883) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55377)) + (segment (start 138.01875 124.445569) (end 137.252977 125.196984) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55375)) + (segment (start 138.755539 123.665714) (end 138.01875 124.445569) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55373)) + (segment (start 139.46229 122.858536) (end 138.755539 123.665714) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55371)) + (segment (start 140.137989 122.025192) (end 139.46229 122.858536) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5536F)) + (via (at 88.52525 104.897) (size 1.5) (drill 0.6) (layers Top Bottom) (net 5) (tstamp 557459E55F00)) + (segment (start 88.705728 107.12708) (end 88.669547 106.68) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55930)) + (segment (start 88.859715 108.235323) (end 88.705728 107.12708) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5592C)) + (segment (start 89.05592 109.336875) (end 88.859715 108.235323) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5592A)) + (segment (start 89.294058 110.430129) (end 89.05592 109.336875) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55928)) + (segment (start 112.225227 132.405834) (end 111.130949 132.172443) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E558E6)) + (segment (start 113.32762 132.597256) (end 112.225227 132.405834) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E558E4)) + (segment (start 114.436521 132.74643) (end 113.32762 132.597256) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E558E2)) + (segment (start 115.550311 132.853139) (end 114.436521 132.74643) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E558E0)) + (segment (start 116.667363 132.917227) (end 115.550311 132.853139) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E558DD)) + (segment (start 117.786049 132.9386) (end 116.667363 132.917227) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E558DB)) + (segment (start 117.78605 132.9386) (end 117.786049 132.9386) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E558D9)) + (segment (start 119.929853 132.857417) (end 117.78605 132.9386) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E553A0)) + (segment (start 120.997915 132.756048) (end 119.929853 132.857417) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5539C)) + (segment (start 122.061376 132.614334) (end 120.997915 132.756048) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5539A)) + (segment (start 123.118713 132.432478) (end 122.061376 132.614334) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55398)) + (segment (start 124.16841 132.210742) (end 123.118713 132.432478) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55396)) + (segment (start 125.208965 131.949443) (end 124.16841 132.210742) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55393)) + (segment (start 126.238887 131.648954) (end 125.208965 131.949443) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55391)) + (segment (start 127.2567 131.309707) (end 126.238887 131.648954) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5538F)) + (segment (start 89.573781 111.513489) (end 89.294058 110.430129) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55926)) + (segment (start 89.894681 112.585374) (end 89.573781 111.513489) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55923)) + (segment (start 90.25629 113.644219) (end 89.894681 112.585374) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55921)) + (segment (start 90.65808 114.68848) (end 90.25629 113.644219) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5591F)) + (segment (start 91.099464 115.716631) (end 90.65808 114.68848) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5591D)) + (segment (start 91.579797 116.727172) (end 91.099464 115.716631) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5591B)) + (segment (start 92.09838 117.718628) (end 91.579797 116.727172) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55918)) + (segment (start 92.654456 118.689553) (end 92.09838 117.718628) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55916)) + (segment (start 93.247211 119.638528) (end 92.654456 118.689553) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55914)) + (segment (start 93.875782 120.56417) (end 93.247211 119.638528) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55912)) + (segment (start 94.539252 121.465127) (end 93.875782 120.56417) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55910)) + (segment (start 95.23665 122.340083) (end 94.539252 121.465127) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5590D)) + (segment (start 95.966961 123.187763) (end 95.23665 122.340083) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5590B)) + (segment (start 96.729117 124.006928) (end 95.966961 123.187763) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55909)) + (segment (start 140.78167 121.166875) (end 140.137989 122.025192) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5536C)) + (segment (start 141.39241 120.284815) (end 140.78167 121.166875) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5536A)) + (segment (start 141.969333 119.380276) (end 141.39241 120.284815) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55368)) + (segment (start 142.511615 118.454553) (end 141.969333 119.380276) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55366)) + (segment (start 143.018477 117.508972) (end 142.511615 118.454553) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55364)) + (segment (start 143.489194 116.544889) (end 143.018477 117.508972) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55362)) + (segment (start 143.923092 115.563683) (end 143.489194 116.544889) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5535F)) + (segment (start 144.319549 114.56676) (end 143.923092 115.563683) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5535D)) + (segment (start 144.677996 113.555549) (end 144.319549 114.56676) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5535B)) + (segment (start 144.997921 112.531498) (end 144.677996 113.555549) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55359)) + (segment (start 145.278866 111.496074) (end 144.997921 112.531498) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55357)) + (segment (start 145.520427 110.450761) (end 145.278866 111.496074) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55355)) + (segment (start 145.722259 109.397055) (end 145.520427 110.450761) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55352)) + (segment (start 145.884072 108.336466) (end 145.722259 109.397055) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55350)) + (segment (start 146.005636 107.270513) (end 145.884072 108.336466) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5534E)) + (segment (start 146.086775 106.200724) (end 146.005636 107.270513) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5534C)) + (segment (start 146.127374 105.128631) (end 146.086775 106.200724) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5534A)) + (segment (start 146.127374 104.055769) (end 146.127374 105.128631) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55348)) + (segment (start 146.086775 102.983676) (end 146.127374 104.055769) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55345)) + (segment (start 146.005636 101.913887) (end 146.086775 102.983676) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55343)) + (segment (start 145.884072 100.847934) (end 146.005636 101.913887) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55341)) + (segment (start 145.722259 99.787345) (end 145.884072 100.847934) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5533F)) + (segment (start 145.520427 98.733639) (end 145.722259 99.787345) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5533D)) + (segment (start 145.278866 97.688326) (end 145.520427 98.733639) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5533B)) + (segment (start 144.997921 96.652902) (end 145.278866 97.688326) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55338)) + (segment (start 144.677996 95.628851) (end 144.997921 96.652902) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55336)) + (segment (start 144.319549 94.61764) (end 144.677996 95.628851) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55334)) + (segment (start 143.923092 93.620717) (end 144.319549 94.61764) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55332)) + (segment (start 143.489194 92.639511) (end 143.923092 93.620717) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55330)) + (segment (start 143.018477 91.675428) (end 143.489194 92.639511) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5532E)) + (segment (start 142.511615 90.729847) (end 143.018477 91.675428) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5532B)) + (segment (start 141.969333 89.804124) (end 142.511615 90.729847) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55329)) + (segment (start 141.39241 88.899585) (end 141.969333 89.804124) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55327)) + (segment (start 140.78167 88.017525) (end 141.39241 88.899585) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55325)) + (segment (start 140.137989 87.159208) (end 140.78167 88.017525) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55323)) + (segment (start 139.46229 86.325864) (end 140.137989 87.159208) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55321)) + (segment (start 138.755539 85.518686) (end 139.46229 86.325864) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5531E)) + (segment (start 138.01875 84.738831) (end 138.755539 85.518686) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5531C)) + (segment (start 137.252977 83.987416) (end 138.01875 84.738831) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5531A)) + (segment (start 136.459319 83.265517) (end 137.252977 83.987416) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55318)) + (segment (start 135.638911 82.574168) (end 136.459319 83.265517) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55316)) + (segment (start 134.792929 81.914359) (end 135.638911 82.574168) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55314)) + (segment (start 102.78735 105.3161) (end 103.10485 104.9986) (width 0.5) (layer Top) (net 5)) + (segment (start 89.03825 105.41) (end 88.52525 104.897) (width 0.8) (layer Top) (net 5)) + (segment (start 91.31 105.41) (end 89.03825 105.41) (width 0.8) (layer Top) (net 5)) + (segment (start 101.6 105.3161) (end 102.78735 105.3161) (width 0.8) (layer Top) (net 5)) + (segment (start 100.24735 105.3161) (end 101.6 105.3161) (width 0.8) (layer Top) (net 5)) + (segment (start 101.19735 105.3161) (end 101.6 105.3161) (width 0.5) (layer Top) (net 5)) + (segment (start 141.611736 98.121224) (end 141.611736 98.121224) (width 1.016) (layer Bottom) (net 5) (tstamp 5B6E53B2)) + (via (at 88.669547 106.68) (size 1.5) (drill 0.6) (layers Top Bottom) (net 5)) + (segment (start 103.113926 103.335161) (end 103.155456 102.55479) (width 1.016) (layer Bottom) (net 5) (tstamp 5B700515)) + (via (at 103.113926 103.335161) (size 1.5) (drill 0.6) (layers Top Bottom) (net 5)) + (segment (start 103.10485 102.76515) (end 104.775 101.095) (width 0.8) (layer Top) (net 5)) + (segment (start 103.10485 104.9986) (end 103.10485 102.76515) (width 0.8) (layer Top) (net 5)) + (segment (start 103.113926 102.608926) (end 101.6 101.095) (width 0.8) (layer Top) (net 5)) + (segment (start 103.113926 103.335161) (end 103.113926 102.608926) (width 0.5) (layer Top) (net 5)) + (segment (start 88.669547 105.041297) (end 88.52525 104.897) (width 0.5) (layer Top) (net 5)) + (segment (start 88.669547 106.68) (end 88.669547 105.041297) (width 0.8) (layer Top) (net 5)) + (segment (start 94.2039 105.3161) (end 94.11 105.41) (width 0.5) (layer Top) (net 6)) + (segment (start 98.25345 105.41) (end 98.34735 105.3161) (width 0.5) (layer Top) (net 6)) + (segment (start 94.11 105.41) (end 98.25345 105.41) (width 0.8) (layer Top) (net 6)) + (segment (start 92.71 101.26) (end 97.79 101.26) (width 0.8) (layer Top) (net 6)) + (segment (start 97.79 104.75875) (end 98.34735 105.3161) (width 0.5) (layer Top) (net 6)) + (segment (start 97.79 101.26) (end 97.79 104.75875) (width 0.8) (layer Top) (net 6)) + (segment (start 109.030491 104.009509) (end 108.585 104.455) (width 0.5) (layer Top) (net 7)) + (segment (start 111.276375 104.009509) (end 109.030491 104.009509) (width 0.5) (layer Top) (net 7)) + (segment (start 114.996 105.129134) (end 114.996 106.681065) (width 0.5) (layer Top) (net 8)) + (segment (start 113.876375 104.009509) (end 114.996 105.129134) (width 0.5) (layer Top) (net 8)) + (segment (start 110.617259 106.681065) (end 113.096 106.681065) (width 0.5) (layer Top) (net 9)) + (segment (start 104.292 111.125) (end 105.592 111.125) (width 0.5) (layer Top) (net 10)) + (segment (start 141.51601 97.63121) (end 140.405 96.5202) (width 0.5) (layer Top) (net 10)) + (segment (start 127.557625 110.832989) (end 136.028614 102.362) (width 0.5) (layer Top) (net 10)) + (segment (start 105.884011 110.832989) (end 127.557625 110.832989) (width 0.5) (layer Top) (net 10)) + (segment (start 141.51601 101.169372) (end 141.51601 97.63121) (width 0.5) (layer Top) (net 10)) + (segment (start 105.592 111.125) (end 105.884011 110.832989) (width 0.5) (layer Top) (net 10)) + (segment (start 136.028614 102.362) (end 140.323382 102.362) (width 0.5) (layer Top) (net 10)) + (segment (start 140.405 96.5202) (end 139.305 96.5202) (width 0.5) (layer Top) (net 10)) + (segment (start 140.323382 102.362) (end 141.51601 101.169372) (width 0.5) (layer Top) (net 10)) + (segment (start 101.0162 110.6932) (end 101.448 111.125) (width 0.5) (layer Top) (net 12)) + (segment (start 96.2038 110.6932) (end 101.0162 110.6932) (width 0.5) (layer Top) (net 12)) + (segment (start 124.16 88.2) (end 126.3 88.2) (width 0.5) (layer Top) (net 13)) + (segment (start 127 88.9) (end 129.54 88.9) (width 0.5) (layer Top) (net 13)) + (segment (start 126.3 88.2) (end 127 88.9) (width 0.5) (layer Top) (net 13)) + (segment (start 124.16 86.2) (end 126.525 86.2) (width 0.5) (layer Top) (net 14)) + (segment (start 127.635 85.09) (end 129.54 85.09) (width 0.5) (layer Top) (net 14)) + (segment (start 126.525 86.2) (end 127.635 85.09) (width 0.5) (layer Top) (net 14)) + (segment (start 108.966 79.014) (end 109.03 78.95) (width 0.5) (layer Top) (net 16)) + (segment (start 107.188 79.014) (end 108.966 79.014) (width 0.5) (layer Top) (net 16)) + (segment (start 123.91 82.2) (end 124.16 82.2) (width 0.5) (layer Top) (net 16)) + (segment (start 120.389998 82.2) (end 124.16 82.2) (width 0.5) (layer Top) (net 16)) + (segment (start 117.139998 78.95) (end 120.389998 82.2) (width 0.5) (layer Top) (net 16)) + (segment (start 109.03 78.95) (end 117.139998 78.95) (width 0.5) (layer Top) (net 16)) + (segment (start 124.16 82.2) (end 126.08 82.2) (width 0.5) (layer Top) (net 16)) + (segment (start 126.08 82.2) (end 126.68 81.6) (width 0.5) (layer Top) (net 16)) + (segment (start 126.68 81.6) (end 127 81.6) (width 0.5) (layer Top) (net 16)) + (segment (start 129.22 81.6) (end 129.54 81.28) (width 0.5) (layer Top) (net 16)) + (segment (start 127 81.6) (end 129.22 81.6) (width 0.5) (layer Top) (net 16)) + (segment (start 139.7 89.94) (end 139.7 90.653) (width 0.5) (layer Top) (net 16)) + (segment (start 131.04 81.28) (end 139.7 89.94) (width 0.5) (layer Top) (net 16)) + (segment (start 129.54 81.28) (end 131.04 81.28) (width 0.5) (layer Top) (net 16)) + (segment (start 107.188 81.614) (end 105.664 83.138) (width 0.5) (layer Top) (net 19)) + (segment (start 107.188 81.514) (end 107.188 81.614) (width 0.5) (layer Top) (net 19)) + (segment (start 101.915 90.705) (end 101.915 90.805) (width 0.5) (layer Top) (net 19)) + (segment (start 103.433001 89.186999) (end 101.915 90.705) (width 0.5) (layer Top) (net 19)) + (segment (start 103.433001 86.432497) (end 103.433001 89.186999) (width 0.5) (layer Top) (net 19)) + (segment (start 105.664 84.201498) (end 103.433001 86.432497) (width 0.5) (layer Top) (net 19)) + (segment (start 105.664 83.138) (end 105.664 84.201498) (width 0.5) (layer Top) (net 19)) + (segment (start 100.015 92.395) (end 101.6 93.98) (width 0.5) (layer Top) (net 20)) + (segment (start 100.015 90.805) (end 100.015 92.395) (width 0.5) (layer Top) (net 20)) + (segment (start 111.56 82.2) (end 110.84 82.2) (width 0.5) (layer Top) (net 21)) + (segment (start 110.84 82.2) (end 109.601 83.439) (width 0.5) (layer Top) (net 21)) + (segment (start 109.601 85.319) (end 108.88 86.04) (width 0.5) (layer Top) (net 21)) + (segment (start 108.88 86.04) (end 107.63 86.04) (width 0.5) (layer Top) (net 21)) + (segment (start 109.601 83.439) (end 109.601 85.319) (width 0.5) (layer Top) (net 21)) + (segment (start 109.03 81.55) (end 108.966 81.614) (width 0.5) (layer Top) (net 22)) + (segment (start 109.03 81.45) (end 109.03 81.55) (width 0.5) (layer Top) (net 22)) + (segment (start 108.966 81.614) (end 108.966 82.423) (width 0.5) (layer Top) (net 22)) + (segment (start 108.966 82.423) (end 108.077 83.312) (width 0.5) (layer Top) (net 22)) + (segment (start 108.077 83.693) (end 107.63 84.14) (width 0.5) (layer Top) (net 22)) + (segment (start 108.077 83.312) (end 108.077 83.693) (width 0.5) (layer Top) (net 22)) + (segment (start 111.05 92.71) (end 111.56 92.2) (width 0.5) (layer Top) (net 23)) + (segment (start 106.68 92.71) (end 111.05 92.71) (width 0.5) (layer Top) (net 23)) + (segment (start 114.14 86.2) (end 123.19 95.25) (width 0.5) (layer Top) (net 24)) + (segment (start 123.19 95.25) (end 123.19 95.774599) (width 0.5) (layer Top) (net 24)) + (segment (start 111.56 86.2) (end 114.14 86.2) (width 0.5) (layer Top) (net 24)) + (segment (start 123.19 98.618599) (end 123.383599 98.618599) (width 0.5) (layer Top) (net 24)) + (segment (start 123.383599 98.618599) (end 124.46 99.695) (width 0.5) (layer Top) (net 24)) + (segment (start 134.112 99.7202) (end 133.4002 99.7202) (width 0.5) (layer Top) (net 24)) + (segment (start 139.305 99.7202) (end 134.112 99.7202) (width 0.5) (layer Top) (net 24)) + (segment (start 133.4002 99.7202) (end 133.096 99.416) (width 0.5) (layer Top) (net 24)) + (segment (start 134.112 99.7202) (end 124.641501 99.7202) (width 0.5) (layer Top) (net 24)) + (segment (start 133.096 104.14) (end 133.096 102.26) (width 0.5) (layer Top) (net 24)) + (segment (start 96.2038 109.0932) (end 106.220472 109.0932) (width 0.5) (layer Top) (net 24)) + (segment (start 106.220472 109.0932) (end 107.16025 110.032978) (width 0.5) (layer Top) (net 24)) + (segment (start 107.16025 110.032978) (end 127.203022 110.032978) (width 0.5) (layer Top) (net 24)) + (segment (start 127.203022 110.032978) (end 133.096 104.14) (width 0.5) (layer Top) (net 24)) + +) diff --git a/Glas/receive_v1_1.kicad_pcb-bak b/Glas/receive_v1_1.kicad_pcb-bak new file mode 100644 index 0000000..7d1f52f --- /dev/null +++ b/Glas/receive_v1_1.kicad_pcb-bak @@ -0,0 +1,2756 @@ +(kicad_pcb (version 20171130) (host pcbnew 5.0.0+dfsg1-1~bpo9+1) + + (general + (thickness 1.6) + (drawings 5) + (tracks 1420) + (zones 0) + (modules 40) + (nets 25) + ) + + (page A4) + (layers + (0 Top signal) + (31 Bottom signal) + (32 B.Adhes user hide) + (33 F.Adhes user hide) + (34 B.Paste user hide) + (35 F.Paste user hide) + (36 B.SilkS user hide) + (37 F.SilkS user) + (38 B.Mask user hide) + (39 F.Mask user hide) + (40 Dwgs.User user hide) + (41 Cmts.User user hide) + (42 Eco1.User user hide) + (43 Eco2.User user hide) + (44 Edge.Cuts user) + (45 Margin user hide) + (46 B.CrtYd user hide) + (47 F.CrtYd user hide) + (48 B.Fab user hide) + (49 F.Fab user hide) + ) + + (setup + (last_trace_width 0.5) + (trace_clearance 0.3) + (zone_clearance 0.508) + (zone_45_only no) + (trace_min 0.2) + (segment_width 0.2) + (edge_width 0.15) + (via_size 0.8) + (via_drill 0.4) + (via_min_size 0.4) + (via_min_drill 0.3) + (uvia_size 0.3) + (uvia_drill 0.1) + (uvias_allowed no) + (uvia_min_size 0.2) + (uvia_min_drill 0.1) + (pcb_text_width 0.3) + (pcb_text_size 1.5 1.5) + (mod_edge_width 0.15) + (mod_text_size 1 1) + (mod_text_width 0.15) + (pad_size 1.524 1.524) + (pad_drill 0.762) + (pad_to_mask_clearance 0.2) + (aux_axis_origin 0 0) + (visible_elements FFFFFFFF) + (pcbplotparams + (layerselection 0x010fc_ffffffff) + (usegerberextensions false) + (usegerberattributes false) + (usegerberadvancedattributes false) + (creategerberjobfile false) + (excludeedgelayer true) + (linewidth 0.100000) + (plotframeref false) + (viasonmask false) + (mode 1) + (useauxorigin false) + (hpglpennumber 1) + (hpglpenspeed 20) + (hpglpendiameter 15.000000) + (psnegative false) + (psa4output false) + (plotreference true) + (plotvalue true) + (plotinvisibletext false) + (padsonsilk false) + (subtractmaskfromsilk false) + (outputformat 1) + (mirror false) + (drillshape 0) + (scaleselection 1) + (outputdirectory "gerber/")) + ) + + (net 0 "") + (net 1 GND) + (net 2 PWR_IN) + (net 3 VCC) + (net 4 DOUT) + (net 5 /receive_v1_1_1/IND) + (net 6 "Net-(C1-Pad1)") + (net 7 "Net-(IC1-Pad5)") + (net 8 "Net-(IC1-Pad1)") + (net 9 "Net-(LED1-PadC)") + (net 10 "Net-(IC2-Pad1)") + (net 11 "Net-(IC3-Pad1)") + (net 12 "Net-(IC3-Pad2)") + (net 13 /receive_v1_1_2/TXD) + (net 14 /receive_v1_1_2/RXD) + (net 15 "Net-(U$1-PadGPIO18)") + (net 16 "Net-(D2-PadC)") + (net 17 "Net-(U$1-PadANT)") + (net 18 "Net-(U$1-PadGPIO12)") + (net 19 "Net-(D2-PadA)") + (net 20 "Net-(C6-Pad2)") + (net 21 GPIO14) + (net 22 "Net-(D3-PadA)") + (net 23 "Net-(TP4-Pad1)") + (net 24 PWR_LED) + + (net_class Default "Dies ist die voreingestellte Netzklasse." + (clearance 0.3) + (trace_width 0.5) + (via_dia 0.8) + (via_drill 0.4) + (uvia_dia 0.3) + (uvia_drill 0.1) + (add_net /receive_v1_1_1/IND) + (add_net /receive_v1_1_2/RXD) + (add_net /receive_v1_1_2/TXD) + (add_net DOUT) + (add_net GND) + (add_net GPIO14) + (add_net "Net-(C1-Pad1)") + (add_net "Net-(C6-Pad2)") + (add_net "Net-(D2-PadA)") + (add_net "Net-(D2-PadC)") + (add_net "Net-(D3-PadA)") + (add_net "Net-(IC1-Pad1)") + (add_net "Net-(IC1-Pad5)") + (add_net "Net-(IC2-Pad1)") + (add_net "Net-(IC3-Pad1)") + (add_net "Net-(IC3-Pad2)") + (add_net "Net-(LED1-PadC)") + (add_net "Net-(TP4-Pad1)") + (add_net "Net-(U$1-PadANT)") + (add_net "Net-(U$1-PadGPIO12)") + (add_net "Net-(U$1-PadGPIO18)") + (add_net PWR_IN) + (add_net PWR_LED) + (add_net VCC) + ) + + (net_class Dick "" + (clearance 0.3) + (trace_width 0.8) + (via_dia 0.8) + (via_drill 0.4) + (uvia_dia 0.3) + (uvia_drill 0.1) + ) + + (module receive_v1_1:R1206 (layer Top) (tedit 0) (tstamp 5B6FFECE) + (at 139.7 92.075 270) + (descr RESISTOR) + (path /5B6DFC7E/5B70118C) + (fp_text reference R4 (at -1.27 -1.27 270) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_text value "n.b. 10K" (at -1.27 2.54 270) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_line (start 0.9525 0.8128) (end -0.9652 0.8128) (layer F.Fab) (width 0.1524)) + (fp_line (start 0.9525 -0.8128) (end -0.9652 -0.8128) (layer F.Fab) (width 0.1524)) + (fp_line (start -2.473 -0.983) (end 2.473 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 2.473 -0.983) (end 2.473 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 2.473 0.983) (end -2.473 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -2.473 0.983) (end -2.473 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_poly (pts (xy -1.6891 0.8763) (xy -0.9525 0.8763) (xy -0.9525 -0.8763) (xy -1.6891 -0.8763)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy 0.9525 0.8763) (xy 1.6891 0.8763) (xy 1.6891 -0.8763) (xy 0.9525 -0.8763)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -0.3 0.7) (xy 0.3 0.7) (xy 0.3 -0.7) (xy -0.3 -0.7)) (layer F.Adhes) (width 0)) + (pad 2 smd rect (at 1.422 0 270) (size 1.6 1.803) (layers Top F.Paste F.Mask) + (net 1 GND) (solder_mask_margin 0.1016)) + (pad 1 smd rect (at -1.422 0 270) (size 1.6 1.803) (layers Top F.Paste F.Mask) + (net 16 "Net-(D2-PadC)") (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:R1206 (layer Top) (tedit 0) (tstamp 5B6EEF4B) + (at 133.096 100.838 90) + (descr RESISTOR) + (path /5B6DFC7E/5B6F4871) + (fp_text reference R11 (at -1.27 -1.27 90) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_text value 0R (at -1.27 2.54 90) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_line (start 0.9525 0.8128) (end -0.9652 0.8128) (layer F.Fab) (width 0.1524)) + (fp_line (start 0.9525 -0.8128) (end -0.9652 -0.8128) (layer F.Fab) (width 0.1524)) + (fp_line (start -2.473 -0.983) (end 2.473 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 2.473 -0.983) (end 2.473 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 2.473 0.983) (end -2.473 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -2.473 0.983) (end -2.473 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_poly (pts (xy -1.6891 0.8763) (xy -0.9525 0.8763) (xy -0.9525 -0.8763) (xy -1.6891 -0.8763)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy 0.9525 0.8763) (xy 1.6891 0.8763) (xy 1.6891 -0.8763) (xy 0.9525 -0.8763)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -0.3 0.7) (xy 0.3 0.7) (xy 0.3 -0.7) (xy -0.3 -0.7)) (layer F.Adhes) (width 0)) + (pad 2 smd rect (at 1.422 0 90) (size 1.6 1.803) (layers Top F.Paste F.Mask) + (net 24 PWR_LED) (solder_mask_margin 0.1016)) + (pad 1 smd rect (at -1.422 0 90) (size 1.6 1.803) (layers Top F.Paste F.Mask) + (net 24 PWR_LED) (solder_mask_margin 0.1016)) + ) + + (module TestPoint:TestPoint_Pad_1.0x1.0mm (layer Top) (tedit 5A0F774F) (tstamp 5B6EE776) + (at 135.89 93.218) + (descr "SMD rectangular pad as test Point, square 1.0mm side length") + (tags "test point SMD pad rectangle square") + (path /5B6DFACA/5B6EF29E) + (attr virtual) + (fp_text reference TP8 (at 0 -1.448) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value VCC (at 0 1.55) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start 1 1) (end -1 1) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1 1) (end 1 -1) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1 -1) (end -1 1) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1 -1) (end 1 -1) (layer F.CrtYd) (width 0.05)) + (fp_line (start -0.7 0.7) (end -0.7 -0.7) (layer F.SilkS) (width 0.12)) + (fp_line (start 0.7 0.7) (end -0.7 0.7) (layer F.SilkS) (width 0.12)) + (fp_line (start 0.7 -0.7) (end 0.7 0.7) (layer F.SilkS) (width 0.12)) + (fp_line (start -0.7 -0.7) (end 0.7 -0.7) (layer F.SilkS) (width 0.12)) + (fp_text user %R (at 0 -1.45) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (pad 1 smd rect (at 0 0) (size 1 1) (layers Top F.Mask) + (net 3 VCC)) + ) + + (module TestPoint:TestPoint_Pad_1.0x1.0mm (layer Top) (tedit 5A0F774F) (tstamp 5B6EE768) + (at 128.524 102.362) + (descr "SMD rectangular pad as test Point, square 1.0mm side length") + (tags "test point SMD pad rectangle square") + (path /5B6DFACA/5B6EF211) + (attr virtual) + (fp_text reference TP7 (at 0 -1.448) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value VCC (at 0 1.55) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text user %R (at 0 -1.45) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start -0.7 -0.7) (end 0.7 -0.7) (layer F.SilkS) (width 0.12)) + (fp_line (start 0.7 -0.7) (end 0.7 0.7) (layer F.SilkS) (width 0.12)) + (fp_line (start 0.7 0.7) (end -0.7 0.7) (layer F.SilkS) (width 0.12)) + (fp_line (start -0.7 0.7) (end -0.7 -0.7) (layer F.SilkS) (width 0.12)) + (fp_line (start -1 -1) (end 1 -1) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1 -1) (end -1 1) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1 1) (end 1 -1) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1 1) (end -1 1) (layer F.CrtYd) (width 0.05)) + (pad 1 smd rect (at 0 0) (size 1 1) (layers Top F.Mask) + (net 3 VCC)) + ) + + (module receive_v1_1:R1206 (layer Top) (tedit 0) (tstamp 5B6EB823) + (at 120.015 97.196599 90) + (descr RESISTOR) + (path /5B6DFC7E/5B6EB2AE) + (fp_text reference R10 (at -1.27 -1.27 90) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_text value 0R (at -1.27 2.54 90) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_line (start 0.9525 0.8128) (end -0.9652 0.8128) (layer F.Fab) (width 0.1524)) + (fp_line (start 0.9525 -0.8128) (end -0.9652 -0.8128) (layer F.Fab) (width 0.1524)) + (fp_line (start -2.473 -0.983) (end 2.473 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 2.473 -0.983) (end 2.473 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 2.473 0.983) (end -2.473 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -2.473 0.983) (end -2.473 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_poly (pts (xy -1.6891 0.8763) (xy -0.9525 0.8763) (xy -0.9525 -0.8763) (xy -1.6891 -0.8763)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy 0.9525 0.8763) (xy 1.6891 0.8763) (xy 1.6891 -0.8763) (xy 0.9525 -0.8763)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -0.3 0.7) (xy 0.3 0.7) (xy 0.3 -0.7) (xy -0.3 -0.7)) (layer F.Adhes) (width 0)) + (pad 2 smd rect (at 1.422 0 90) (size 1.6 1.803) (layers Top F.Paste F.Mask) + (net 4 DOUT) (solder_mask_margin 0.1016)) + (pad 1 smd rect (at -1.422 0 90) (size 1.6 1.803) (layers Top F.Paste F.Mask) + (net 4 DOUT) (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:R0805 (layer Top) (tedit 0) (tstamp 5B6DEAC5) + (at 114.046 106.681065 180) + (descr RESISTOR

) + (path /5B6DFACA/2AF825E8B40906EE) + (fp_text reference R2 (at -0.635 -1.27 180) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_text value 1K (at -0.635 2.54 180) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_poly (pts (xy -0.1999 0.5001) (xy 0.1999 0.5001) (xy 0.1999 -0.5001) (xy -0.1999 -0.5001)) (layer F.Adhes) (width 0)) + (fp_poly (pts (xy -1.0668 0.6985) (xy -0.4168 0.6985) (xy -0.4168 -0.7015) (xy -1.0668 -0.7015)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy 0.4064 0.6985) (xy 1.0564 0.6985) (xy 1.0564 -0.7015) (xy 0.4064 -0.7015)) (layer F.Fab) (width 0)) + (fp_line (start -1.973 0.983) (end -1.973 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 1.973 0.983) (end -1.973 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 1.973 -0.983) (end 1.973 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -1.973 -0.983) (end 1.973 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -0.41 0.635) (end 0.41 0.635) (layer F.Fab) (width 0.1524)) + (fp_line (start -0.41 -0.635) (end 0.41 -0.635) (layer F.Fab) (width 0.1524)) + (pad 2 smd rect (at 0.95 0 180) (size 1.3 1.5) (layers Top F.Paste F.Mask) + (net 9 "Net-(LED1-PadC)") (solder_mask_margin 0.1016)) + (pad 1 smd rect (at -0.95 0 180) (size 1.3 1.5) (layers Top F.Paste F.Mask) + (net 8 "Net-(IC1-Pad1)") (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:CHIP-LED0805 (layer Top) (tedit 5B6E092D) (tstamp 5B6DEAD3) + (at 109.567259 106.681065 270) + (descr "Hyper CHIPLED Hyper-Bright LED

\nLB R99A
\nSource: http://www.osram.convergy.de/ ... lb_r99a.pdf") + (path /5B6DFACA/56580ACBD5D4A691) + (fp_text reference LED1 (at 2.538935 2.252259) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_text value LEDCHIP-LED0805 (at 2.54 1.27) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_poly (pts (xy -0.675 1.05) (xy 0.675 1.05) (xy 0.675 0.45) (xy -0.675 0.45)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -0.675 -0.45) (xy 0.675 -0.45) (xy 0.675 -1.05) (xy -0.675 -1.05)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -0.15 0) (xy 0.15 0) (xy 0.15 -0.3) (xy -0.15 -0.3)) (layer F.SilkS) (width 0)) + (fp_poly (pts (xy 0.525 0) (xy 0.675 0) (xy 0.675 -0.3) (xy 0.525 -0.3)) (layer F.SilkS) (width 0)) + (fp_poly (pts (xy -0.675 0) (xy -0.525 0) (xy -0.525 -0.3) (xy -0.675 -0.3)) (layer F.SilkS) (width 0)) + (fp_line (start 0.625 -0.45) (end 0.625 0.475) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.625 -0.45) (end -0.625 0.45) (layer F.Fab) (width 0.1016)) + (pad A smd rect (at 0 1.05 270) (size 1.2 1.2) (layers Top F.Paste F.Mask) + (net 2 PWR_IN) (solder_mask_margin 0.1016)) + (pad C smd rect (at 0 -1.05 270) (size 1.2 1.2) (layers Top F.Paste F.Mask) + (net 9 "Net-(LED1-PadC)") (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:C1206 (layer Top) (tedit 0) (tstamp 5B6DEA5C) + (at 112.395 97.155) + (descr CAPACITOR) + (path /5B6DFACA/A437799099D41F3B) + (fp_text reference C2 (at -1.27 -1.27) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_text value 10uF (at -1.27 2.54) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_poly (pts (xy -0.1999 0.4001) (xy 0.1999 0.4001) (xy 0.1999 -0.4001) (xy -0.1999 -0.4001)) (layer F.Adhes) (width 0)) + (fp_poly (pts (xy 0.9517 0.8491) (xy 1.7018 0.8491) (xy 1.7018 -0.8509) (xy 0.9517 -0.8509)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -1.7018 0.8509) (xy -0.9517 0.8509) (xy -0.9517 -0.8491) (xy -1.7018 -0.8491)) (layer F.Fab) (width 0)) + (fp_line (start -0.965 0.787) (end 0.965 0.787) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.965 -0.787) (end 0.965 -0.787) (layer F.Fab) (width 0.1016)) + (fp_line (start 2.473 -0.983) (end 2.473 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -2.473 0.983) (end -2.473 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 2.473 0.983) (end -2.473 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -2.473 -0.983) (end 2.473 -0.983) (layer Dwgs.User) (width 0.0508)) + (pad 2 smd rect (at 1.4 0) (size 1.6 1.8) (layers Top F.Paste F.Mask) + (net 1 GND) (solder_mask_margin 0.1016)) + (pad 1 smd rect (at -1.4 0) (size 1.6 1.8) (layers Top F.Paste F.Mask) + (net 2 PWR_IN) (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:SOT23-5L (layer Top) (tedit 0) (tstamp 5B6DEA9F) + (at 112.576375 103.059509 90) + (descr "Small Outline Transistor

\npackage type OT") + (path /5B6DFACA/7C8C299E06F92037) + (fp_text reference IC1 (at -1.905 -1.905 90) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_text value MCP73831 (at -1.905 3.429 90) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_poly (pts (xy -1.2 -0.85) (xy -0.7 -0.85) (xy -0.7 -1.5) (xy -1.2 -1.5)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy 0.7 -0.85) (xy 1.2 -0.85) (xy 1.2 -1.5) (xy 0.7 -1.5)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy 0.7 1.5) (xy 1.2 1.5) (xy 1.2 0.85) (xy 0.7 0.85)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -0.25 1.5) (xy 0.25 1.5) (xy 0.25 0.85) (xy -0.25 0.85)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -1.2 1.5) (xy -0.7 1.5) (xy -0.7 0.85) (xy -1.2 0.85)) (layer F.Fab) (width 0)) + (fp_line (start -1.422 -0.81) (end -1.328 -0.81) (layer F.SilkS) (width 0.1524)) + (fp_line (start 1.328 -0.81) (end 1.422 -0.81) (layer F.SilkS) (width 0.1524)) + (fp_line (start 1.422 0.81) (end 1.328 0.81) (layer F.SilkS) (width 0.1524)) + (fp_line (start -1.328 0.81) (end -1.422 0.81) (layer F.SilkS) (width 0.1524)) + (fp_line (start 0.522 0.81) (end 0.428 0.81) (layer F.SilkS) (width 0.1524)) + (fp_line (start -0.428 0.81) (end -0.522 0.81) (layer F.SilkS) (width 0.1524)) + (fp_line (start -0.522 -0.81) (end 0.522 -0.81) (layer F.SilkS) (width 0.1524)) + (fp_line (start -1.422 -0.81) (end 1.422 -0.81) (layer F.Fab) (width 0.1524)) + (fp_line (start -1.422 0.81) (end -1.422 -0.81) (layer F.SilkS) (width 0.1524)) + (fp_line (start 1.422 0.81) (end -1.422 0.81) (layer F.Fab) (width 0.1524)) + (fp_line (start 1.422 -0.81) (end 1.422 0.81) (layer F.SilkS) (width 0.1524)) + (pad 5 smd rect (at -0.95 -1.3 90) (size 0.55 1.2) (layers Top F.Paste F.Mask) + (net 7 "Net-(IC1-Pad5)") (solder_mask_margin 0.1016)) + (pad 4 smd rect (at 0.95 -1.3 90) (size 0.55 1.2) (layers Top F.Paste F.Mask) + (net 2 PWR_IN) (solder_mask_margin 0.1016)) + (pad 3 smd rect (at 0.95 1.3 90) (size 0.55 1.2) (layers Top F.Paste F.Mask) + (net 3 VCC) (solder_mask_margin 0.1016)) + (pad 2 smd rect (at 0 1.3 90) (size 0.55 1.2) (layers Top F.Paste F.Mask) + (net 1 GND) (solder_mask_margin 0.1016)) + (pad 1 smd rect (at -0.95 1.3 90) (size 0.55 1.2) (layers Top F.Paste F.Mask) + (net 8 "Net-(IC1-Pad1)") (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:C1206 (layer Top) (tedit 0) (tstamp 5B6DEA6A) + (at 117.187259 102.871065 270) + (descr CAPACITOR) + (path /5B6DFACA/ACEB8AA80C7BD23D) + (fp_text reference C3 (at -0.636065 -2.827741 270) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_text value 4.7uF (at -1.27 2.54 270) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_poly (pts (xy -0.1999 0.4001) (xy 0.1999 0.4001) (xy 0.1999 -0.4001) (xy -0.1999 -0.4001)) (layer F.Adhes) (width 0)) + (fp_poly (pts (xy 0.9517 0.8491) (xy 1.7018 0.8491) (xy 1.7018 -0.8509) (xy 0.9517 -0.8509)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -1.7018 0.8509) (xy -0.9517 0.8509) (xy -0.9517 -0.8491) (xy -1.7018 -0.8491)) (layer F.Fab) (width 0)) + (fp_line (start -0.965 0.787) (end 0.965 0.787) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.965 -0.787) (end 0.965 -0.787) (layer F.Fab) (width 0.1016)) + (fp_line (start 2.473 -0.983) (end 2.473 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -2.473 0.983) (end -2.473 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 2.473 0.983) (end -2.473 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -2.473 -0.983) (end 2.473 -0.983) (layer Dwgs.User) (width 0.0508)) + (pad 2 smd rect (at 1.4 0 270) (size 1.6 1.8) (layers Top F.Paste F.Mask) + (net 1 GND) (solder_mask_margin 0.1016)) + (pad 1 smd rect (at -1.4 0 270) (size 1.6 1.8) (layers Top F.Paste F.Mask) + (net 3 VCC) (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:C0805 (layer Top) (tedit 0) (tstamp 5B6DEA78) + (at 112.395 99.695) + (descr CAPACITOR

) + (path /5B6DFACA/18AF332D375CDECD) + (fp_text reference C4 (at -1.27 -1.27) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_text value 100nF (at -1.27 2.54) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_line (start -1.973 -0.983) (end 1.973 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 1.973 0.983) (end -1.973 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -1.973 0.983) (end -1.973 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -0.381 -0.66) (end 0.381 -0.66) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.356 0.66) (end 0.381 0.66) (layer F.Fab) (width 0.1016)) + (fp_line (start 1.973 -0.983) (end 1.973 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_poly (pts (xy -1.0922 0.7239) (xy -0.3421 0.7239) (xy -0.3421 -0.7262) (xy -1.0922 -0.7262)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy 0.3556 0.7239) (xy 1.1057 0.7239) (xy 1.1057 -0.7262) (xy 0.3556 -0.7262)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -0.1001 0.4001) (xy 0.1001 0.4001) (xy 0.1001 -0.4001) (xy -0.1001 -0.4001)) (layer F.Adhes) (width 0)) + (pad 1 smd rect (at -0.95 0) (size 1.3 1.5) (layers Top F.Paste F.Mask) + (net 2 PWR_IN) (solder_mask_margin 0.1016)) + (pad 2 smd rect (at 0.95 0) (size 1.3 1.5) (layers Top F.Paste F.Mask) + (net 1 GND) (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:R0805 (layer Top) (tedit 0) (tstamp 5B6DEAB7) + (at 108.585 103.505 270) + (descr RESISTOR

) + (path /5B6DFACA/27FD2D81B18B4CD) + (fp_text reference R1 (at 0 2.54 270) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_text value 2.7K (at -0.635 2.54 270) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_poly (pts (xy -0.1999 0.5001) (xy 0.1999 0.5001) (xy 0.1999 -0.5001) (xy -0.1999 -0.5001)) (layer F.Adhes) (width 0)) + (fp_poly (pts (xy -1.0668 0.6985) (xy -0.4168 0.6985) (xy -0.4168 -0.7015) (xy -1.0668 -0.7015)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy 0.4064 0.6985) (xy 1.0564 0.6985) (xy 1.0564 -0.7015) (xy 0.4064 -0.7015)) (layer F.Fab) (width 0)) + (fp_line (start -1.973 0.983) (end -1.973 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 1.973 0.983) (end -1.973 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 1.973 -0.983) (end 1.973 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -1.973 -0.983) (end 1.973 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -0.41 0.635) (end 0.41 0.635) (layer F.Fab) (width 0.1524)) + (fp_line (start -0.41 -0.635) (end 0.41 -0.635) (layer F.Fab) (width 0.1524)) + (pad 2 smd rect (at 0.95 0 270) (size 1.3 1.5) (layers Top F.Paste F.Mask) + (net 7 "Net-(IC1-Pad5)") (solder_mask_margin 0.1016)) + (pad 1 smd rect (at -0.95 0 270) (size 1.3 1.5) (layers Top F.Paste F.Mask) + (net 1 GND) (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:R1206 (layer Top) (tedit 0) (tstamp 5B6EB84E) + (at 123.19 97.196599 90) + (descr RESISTOR) + (path /5B6DFC7E/5B6EB162) + (fp_text reference R3 (at -1.228401 2.54 90) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_text value 0R (at -1.27 2.54 90) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_poly (pts (xy -0.3 0.7) (xy 0.3 0.7) (xy 0.3 -0.7) (xy -0.3 -0.7)) (layer F.Adhes) (width 0)) + (fp_poly (pts (xy 0.9525 0.8763) (xy 1.6891 0.8763) (xy 1.6891 -0.8763) (xy 0.9525 -0.8763)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -1.6891 0.8763) (xy -0.9525 0.8763) (xy -0.9525 -0.8763) (xy -1.6891 -0.8763)) (layer F.Fab) (width 0)) + (fp_line (start -2.473 0.983) (end -2.473 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 2.473 0.983) (end -2.473 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 2.473 -0.983) (end 2.473 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -2.473 -0.983) (end 2.473 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 0.9525 -0.8128) (end -0.9652 -0.8128) (layer F.Fab) (width 0.1524)) + (fp_line (start 0.9525 0.8128) (end -0.9652 0.8128) (layer F.Fab) (width 0.1524)) + (pad 1 smd rect (at -1.422 0 90) (size 1.6 1.803) (layers Top F.Paste F.Mask) + (net 24 PWR_LED) (solder_mask_margin 0.1016)) + (pad 2 smd rect (at 1.422 0 90) (size 1.6 1.803) (layers Top F.Paste F.Mask) + (net 24 PWR_LED) (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:ESP-03 (layer Top) (tedit 0) (tstamp 5B6DEADF) + (at 111.76 76.2 270) + (path /5B6DFC7E/850A8AB0BABD3B23) + (fp_text reference U$1 (at 0 0 270) (layer F.SilkS) hide + (effects (font (size 1.27 1.27) (thickness 0.15)) (justify right top)) + ) + (fp_text value ESP8266-03 (at 3.81 -3.175 270) (layer F.SilkS) hide + (effects (font (size 1.27 1.27) (thickness 0.15)) (justify right top)) + ) + (fp_line (start 17.2 -7.4) (end 12.2 -7.4) (layer F.SilkS) (width 0.127)) + (fp_line (start 17.2 -2.6) (end 17.2 -7.4) (layer F.SilkS) (width 0.127)) + (fp_line (start 12.2 -2.6) (end 17.2 -2.6) (layer F.SilkS) (width 0.127)) + (fp_line (start 12.2 -7.4) (end 12.2 -2.6) (layer F.SilkS) (width 0.127)) + (fp_line (start 13.6 -10.8) (end 11 -10.8) (layer F.SilkS) (width 0.127)) + (fp_line (start 13.6 -8.4) (end 13.6 -10.8) (layer F.SilkS) (width 0.127)) + (fp_line (start 11 -8.4) (end 13.6 -8.4) (layer F.SilkS) (width 0.127)) + (fp_line (start 11 -10.8) (end 11 -8.4) (layer F.SilkS) (width 0.127)) + (fp_line (start 10.8 -7.4) (end 5.8 -7.4) (layer F.SilkS) (width 0.127)) + (fp_line (start 10.8 -2.6) (end 10.8 -7.4) (layer F.SilkS) (width 0.127)) + (fp_line (start 5.8 -2.6) (end 10.8 -2.6) (layer F.SilkS) (width 0.127)) + (fp_line (start 5.8 -7.4) (end 5.8 -2.6) (layer F.SilkS) (width 0.127)) + (fp_line (start 0 0) (end 17.4 0) (layer F.SilkS) (width 0.127)) + (fp_poly (pts (xy 0.6 -0.6) (xy 2.6 -0.6) (xy 2.6 -11.4) (xy 0.6 -11.4)) (layer F.SilkS) (width 0)) + (fp_line (start 0 -12.2) (end 17.4 -12.2) (layer F.SilkS) (width 0.127)) + (fp_line (start 0 0) (end 0 -12.2) (layer F.SilkS) (width 0.127)) + (fp_line (start 17.4 0) (end 17.4 -12.2) (layer F.SilkS) (width 0.127)) + (pad GND smd rect (at 16 -12.4) (size 1.5 1) (layers Top F.Paste F.Mask) + (net 1 GND) (solder_mask_margin 0.1016)) + (pad NC smd rect (at 14 -12.4) (size 1.5 1) (layers Top F.Paste F.Mask) + (net 3 VCC) (solder_mask_margin 0.1016)) + (pad UTXD smd rect (at 12 -12.4) (size 1.5 1) (layers Top F.Paste F.Mask) + (net 13 /receive_v1_1_2/TXD) (solder_mask_margin 0.1016)) + (pad URXD smd rect (at 10 -12.4) (size 1.5 1) (layers Top F.Paste F.Mask) + (net 14 /receive_v1_1_2/RXD) (solder_mask_margin 0.1016)) + (pad GPIO18 smd rect (at 8 -12.4) (size 1.5 1) (layers Top F.Paste F.Mask) + (net 15 "Net-(U$1-PadGPIO18)") (solder_mask_margin 0.1016)) + (pad CH_PD smd rect (at 6 -12.4) (size 1.5 1) (layers Top F.Paste F.Mask) + (net 16 "Net-(D2-PadC)") (solder_mask_margin 0.1016)) + (pad ANT smd rect (at 4 -12.4) (size 1.5 1) (layers Top F.Paste F.Mask) + (net 17 "Net-(U$1-PadANT)") (solder_mask_margin 0.1016)) + (pad GPIO0 smd rect (at 16 0.2) (size 1.5 1) (layers Top F.Paste F.Mask) + (net 23 "Net-(TP4-Pad1)") (solder_mask_margin 0.1016)) + (pad GPIO2 smd rect (at 14 0.2) (size 1.5 1) (layers Top F.Paste F.Mask) + (net 4 DOUT) (solder_mask_margin 0.1016)) + (pad GPIO15 smd rect (at 12 0.2) (size 1.5 1) (layers Top F.Paste F.Mask) + (net 1 GND) (solder_mask_margin 0.1016)) + (pad GPIO13 smd rect (at 10 0.2) (size 1.5 1) (layers Top F.Paste F.Mask) + (net 24 PWR_LED) (solder_mask_margin 0.1016)) + (pad GPIO12 smd rect (at 8 0.2) (size 1.5 1) (layers Top F.Paste F.Mask) + (net 18 "Net-(U$1-PadGPIO12)") (solder_mask_margin 0.1016)) + (pad GPIO14 smd rect (at 6 0.2) (size 1.5 1) (layers Top F.Paste F.Mask) + (net 21 GPIO14) (solder_mask_margin 0.1016)) + (pad VCC smd rect (at 4 0.2) (size 1.5 1) (layers Top F.Paste F.Mask) + (net 3 VCC) (solder_mask_margin 0.1016)) + ) + + (module TestPoint:TestPoint_Pad_2.0x2.0mm (layer Top) (tedit 5A0F774F) (tstamp 5B6E0AA0) + (at 106.68 92.71) + (descr "SMD rectangular pad as test Point, square 2.0mm side length") + (tags "test point SMD pad rectangle square") + (path /5B6DFC7E/5B6E346D) + (attr virtual) + (fp_text reference TP4 (at 0 -1.998) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value TestPoint (at 0 2.05) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start 1.5 1.5) (end -1.5 1.5) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.5 1.5) (end 1.5 -1.5) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.5 -1.5) (end 1.5 -1.5) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.2 1.2) (end -1.2 -1.2) (layer F.SilkS) (width 0.12)) + (fp_line (start 1.2 1.2) (end -1.2 1.2) (layer F.SilkS) (width 0.12)) + (fp_line (start 1.2 -1.2) (end 1.2 1.2) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.2 -1.2) (end 1.2 -1.2) (layer F.SilkS) (width 0.12)) + (fp_text user %R (at 0 -2) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (pad 1 smd rect (at 0 0) (size 2 2) (layers Top F.Mask) + (net 23 "Net-(TP4-Pad1)")) + ) + + (module TestPoint:TestPoint_Pad_2.0x2.0mm (layer Top) (tedit 5A0F774F) (tstamp 5B6E0ABC) + (at 129.54 88.9) + (descr "SMD rectangular pad as test Point, square 2.0mm side length") + (tags "test point SMD pad rectangle square") + (path /5B6DFC7E/5B6E0D07) + (attr virtual) + (fp_text reference TP6 (at 0 -1.998) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value TestPoint (at 0 2.05) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start 1.5 1.5) (end -1.5 1.5) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.5 1.5) (end 1.5 -1.5) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.5 -1.5) (end 1.5 -1.5) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.2 1.2) (end -1.2 -1.2) (layer F.SilkS) (width 0.12)) + (fp_line (start 1.2 1.2) (end -1.2 1.2) (layer F.SilkS) (width 0.12)) + (fp_line (start 1.2 -1.2) (end 1.2 1.2) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.2 -1.2) (end 1.2 -1.2) (layer F.SilkS) (width 0.12)) + (fp_text user %R (at 0 -2) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (pad 1 smd rect (at 0 0) (size 2 2) (layers Top F.Mask) + (net 13 /receive_v1_1_2/TXD)) + ) + + (module TestPoint:TestPoint_Pad_2.0x2.0mm (layer Top) (tedit 5A0F774F) (tstamp 5B6E0AAE) + (at 129.54 85.09) + (descr "SMD rectangular pad as test Point, square 2.0mm side length") + (tags "test point SMD pad rectangle square") + (path /5B6DFC7E/5B6E0753) + (attr virtual) + (fp_text reference TP5 (at 0 -1.998) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value TestPoint (at 0 2.05) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text user %R (at 0 -2) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start -1.2 -1.2) (end 1.2 -1.2) (layer F.SilkS) (width 0.12)) + (fp_line (start 1.2 -1.2) (end 1.2 1.2) (layer F.SilkS) (width 0.12)) + (fp_line (start 1.2 1.2) (end -1.2 1.2) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.2 1.2) (end -1.2 -1.2) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.5 -1.5) (end 1.5 -1.5) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.5 1.5) (end 1.5 -1.5) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.5 1.5) (end -1.5 1.5) (layer F.CrtYd) (width 0.05)) + (pad 1 smd rect (at 0 0) (size 2 2) (layers Top F.Mask) + (net 14 /receive_v1_1_2/RXD)) + ) + + (module TestPoint:TestPoint_Pad_2.0x2.0mm (layer Top) (tedit 5A0F774F) (tstamp 5B6E0A92) + (at 129.54 96.52) + (descr "SMD rectangular pad as test Point, square 2.0mm side length") + (tags "test point SMD pad rectangle square") + (path /5B6DFACA/5B6E67FF) + (attr virtual) + (fp_text reference TP3 (at 0 -1.998) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value TestPoint (at 0 2.05) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text user %R (at 0 -2) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start -1.2 -1.2) (end 1.2 -1.2) (layer F.SilkS) (width 0.12)) + (fp_line (start 1.2 -1.2) (end 1.2 1.2) (layer F.SilkS) (width 0.12)) + (fp_line (start 1.2 1.2) (end -1.2 1.2) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.2 1.2) (end -1.2 -1.2) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.5 -1.5) (end 1.5 -1.5) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.5 1.5) (end 1.5 -1.5) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.5 1.5) (end -1.5 1.5) (layer F.CrtYd) (width 0.05)) + (pad 1 smd rect (at 0 0) (size 2 2) (layers Top F.Mask) + (net 1 GND)) + ) + + (module TestPoint:TestPoint_Pad_2.0x2.0mm (layer Top) (tedit 5A0F774F) (tstamp 5B6E4045) + (at 129.54 92.71) + (descr "SMD rectangular pad as test Point, square 2.0mm side length") + (tags "test point SMD pad rectangle square") + (path /5B6DFACA/5B6E1710) + (attr virtual) + (fp_text reference TP2 (at 0 -1.998) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value TestPoint (at 0 2.05) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start 1.5 1.5) (end -1.5 1.5) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.5 1.5) (end 1.5 -1.5) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.5 -1.5) (end 1.5 -1.5) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.2 1.2) (end -1.2 -1.2) (layer F.SilkS) (width 0.12)) + (fp_line (start 1.2 1.2) (end -1.2 1.2) (layer F.SilkS) (width 0.12)) + (fp_line (start 1.2 -1.2) (end 1.2 1.2) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.2 -1.2) (end 1.2 -1.2) (layer F.SilkS) (width 0.12)) + (fp_text user %R (at 0 -2) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (pad 1 smd rect (at 0 0) (size 2 2) (layers Top F.Mask) + (net 3 VCC)) + ) + + (module TestPoint:TestPoint_Pad_2.0x2.0mm (layer Top) (tedit 5A0F774F) (tstamp 5B6E0A76) + (at 129.54 81.28) + (descr "SMD rectangular pad as test Point, square 2.0mm side length") + (tags "test point SMD pad rectangle square") + (path /5B6DFC7E/5B70A1B5) + (attr virtual) + (fp_text reference TP1 (at 0 -1.998) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value TestPoint (at 0 2.05) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text user %R (at 0 -2) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start -1.2 -1.2) (end 1.2 -1.2) (layer F.SilkS) (width 0.12)) + (fp_line (start 1.2 -1.2) (end 1.2 1.2) (layer F.SilkS) (width 0.12)) + (fp_line (start 1.2 1.2) (end -1.2 1.2) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.2 1.2) (end -1.2 -1.2) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.5 -1.5) (end 1.5 -1.5) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.5 1.5) (end 1.5 -1.5) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.5 1.5) (end -1.5 1.5) (layer F.CrtYd) (width 0.05)) + (pad 1 smd rect (at 0 0) (size 2 2) (layers Top F.Mask) + (net 16 "Net-(D2-PadC)")) + ) + + (module receive_v1_1:WS2812 (layer Top) (tedit 0) (tstamp 5B6E5464) + (at 93.9038 110.6932 180) + (path /5B6DFACA/B33006915ED25CA7) + (fp_text reference IC3 (at -1.53 0.32 180) (layer F.SilkS) + (effects (font (size 0.57912 0.57912) (thickness 0.048768)) (justify right top)) + ) + (fp_text value WS2812 (at 0 0 180) (layer F.SilkS) hide + (effects (font (size 1.27 1.27) (thickness 0.15)) (justify right top)) + ) + (fp_line (start -2.2 -2.5) (end -2.5 -2.2) (layer F.SilkS) (width 0.127)) + (fp_line (start -2.5 -2.2) (end -2.5 2.5) (layer F.SilkS) (width 0.127)) + (fp_poly (pts (xy 1.7 2.1) (xy 2.7 2.1) (xy 2.7 1.1) (xy 1.7 1.1)) (layer Dwgs.User) (width 0)) + (fp_poly (pts (xy 1.7 0.5) (xy 2.7 0.5) (xy 2.7 -0.5) (xy 1.7 -0.5)) (layer Dwgs.User) (width 0)) + (fp_poly (pts (xy -2.7 2.1) (xy -1.7 2.1) (xy -1.7 1.1) (xy -2.7 1.1)) (layer Dwgs.User) (width 0)) + (fp_poly (pts (xy -2.7 0.5) (xy -1.7 0.5) (xy -1.7 -0.5) (xy -2.7 -0.5)) (layer Dwgs.User) (width 0)) + (fp_poly (pts (xy 1.7 -1.1) (xy 2.7 -1.1) (xy 2.7 -2.1) (xy 1.7 -2.1)) (layer Dwgs.User) (width 0)) + (fp_poly (pts (xy -2.7 -1.1) (xy -1.7 -1.1) (xy -1.7 -2.1) (xy -2.7 -2.1)) (layer Dwgs.User) (width 0)) + (fp_line (start -2.5 -2.5) (end -2.5 -2.2) (layer F.SilkS) (width 0.127)) + (fp_line (start -2.2 -2.5) (end -2.5 -2.5) (layer F.SilkS) (width 0.127)) + (fp_line (start 2.5 -2.5) (end -2.2 -2.5) (layer F.SilkS) (width 0.127)) + (fp_line (start 2.5 2.5) (end 2.5 -2.5) (layer F.SilkS) (width 0.127)) + (fp_line (start -2.5 2.5) (end 2.5 2.5) (layer F.SilkS) (width 0.127)) + (pad 6 smd rect (at 2.3 -1.6 180) (size 1.2 1) (layers Top F.Paste F.Mask) + (net 1 GND) (solder_mask_margin 0.1016)) + (pad 5 smd rect (at 2.3 0 180) (size 1.2 1) (layers Top F.Paste F.Mask) + (net 3 VCC) (solder_mask_margin 0.1016)) + (pad 1 smd rect (at -2.3 -1.6 180) (size 1.2 1) (layers Top F.Paste F.Mask) + (net 11 "Net-(IC3-Pad1)") (solder_mask_margin 0.1016)) + (pad 2 smd rect (at -2.3 0 180) (size 1.2 1) (layers Top F.Paste F.Mask) + (net 12 "Net-(IC3-Pad2)") (solder_mask_margin 0.1016)) + (pad 3 smd rect (at -2.3 1.6 180) (size 1.2 1) (layers Top F.Paste F.Mask) + (net 24 PWR_LED) (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:C1206 (layer Top) (tedit 0) (tstamp 5B6DEA4E) + (at 92.71 105.41 180) + (descr CAPACITOR) + (path /5B6DFACA/33354583271174E6) + (fp_text reference C1 (at -1.27 -1.27 180) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_text value 4.7uF (at -1.27 2.54 180) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_poly (pts (xy -0.1999 0.4001) (xy 0.1999 0.4001) (xy 0.1999 -0.4001) (xy -0.1999 -0.4001)) (layer F.Adhes) (width 0)) + (fp_poly (pts (xy 0.9517 0.8491) (xy 1.7018 0.8491) (xy 1.7018 -0.8509) (xy 0.9517 -0.8509)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -1.7018 0.8509) (xy -0.9517 0.8509) (xy -0.9517 -0.8491) (xy -1.7018 -0.8491)) (layer F.Fab) (width 0)) + (fp_line (start -0.965 0.787) (end 0.965 0.787) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.965 -0.787) (end 0.965 -0.787) (layer F.Fab) (width 0.1016)) + (fp_line (start 2.473 -0.983) (end 2.473 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -2.473 0.983) (end -2.473 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 2.473 0.983) (end -2.473 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -2.473 -0.983) (end 2.473 -0.983) (layer Dwgs.User) (width 0.0508)) + (pad 2 smd rect (at 1.4 0 180) (size 1.6 1.8) (layers Top F.Paste F.Mask) + (net 5 /receive_v1_1_1/IND) (solder_mask_margin 0.1016)) + (pad 1 smd rect (at -1.4 0 180) (size 1.6 1.8) (layers Top F.Paste F.Mask) + (net 6 "Net-(C1-Pad1)") (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:C0805 (layer Top) (tedit 0) (tstamp 5B6DEA86) + (at 99.29735 105.3161 180) + (descr CAPACITOR

) + (path /5B6DFACA/D9A42AEA629E9F7E) + (fp_text reference C5 (at -1.27 -1.27 180) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_text value 1uF (at -1.27 2.54 180) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_poly (pts (xy -0.1001 0.4001) (xy 0.1001 0.4001) (xy 0.1001 -0.4001) (xy -0.1001 -0.4001)) (layer F.Adhes) (width 0)) + (fp_poly (pts (xy 0.3556 0.7239) (xy 1.1057 0.7239) (xy 1.1057 -0.7262) (xy 0.3556 -0.7262)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -1.0922 0.7239) (xy -0.3421 0.7239) (xy -0.3421 -0.7262) (xy -1.0922 -0.7262)) (layer F.Fab) (width 0)) + (fp_line (start 1.973 -0.983) (end 1.973 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -0.356 0.66) (end 0.381 0.66) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.381 -0.66) (end 0.381 -0.66) (layer F.Fab) (width 0.1016)) + (fp_line (start -1.973 0.983) (end -1.973 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 1.973 0.983) (end -1.973 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -1.973 -0.983) (end 1.973 -0.983) (layer Dwgs.User) (width 0.0508)) + (pad 2 smd rect (at 0.95 0 180) (size 1.3 1.5) (layers Top F.Paste F.Mask) + (net 6 "Net-(C1-Pad1)") (solder_mask_margin 0.1016)) + (pad 1 smd rect (at -0.95 0 180) (size 1.3 1.5) (layers Top F.Paste F.Mask) + (net 5 /receive_v1_1_1/IND) (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:SMBJ (layer Top) (tedit 0) (tstamp 5B6DEA94) + (at 95.25 92.71 180) + (descr "DO-214AA Modified J_BEND

\nSource: www.rsonline.de .. SMBJ12/C/15/C/24/C/30/C/5.0/C/7.5/C Voltage Suppressor. Data Sheet") + (path /5B6DFACA/D34E0B9D7F8C6C1C) + (fp_text reference D1 (at 3.81 -0.635 270) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_text value "TVS 6V8" (at -1.905 3.81 180) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_poly (pts (xy 2.25 1.1) (xy 2.8 1.1) (xy 2.8 -1.1) (xy 2.25 -1.1)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -2.8 1.1) (xy -2.25 1.1) (xy -2.25 -1.1) (xy -2.8 -1.1)) (layer F.Fab) (width 0)) + (fp_line (start -2.24 -1.92) (end 2.24 -1.92) (layer F.SilkS) (width 0.1016)) + (fp_line (start -2.24 1.92) (end -2.24 -1.92) (layer F.Fab) (width 0.1016)) + (fp_line (start 2.24 1.92) (end -2.24 1.92) (layer F.SilkS) (width 0.1016)) + (fp_line (start 2.24 -1.92) (end 2.24 1.92) (layer F.Fab) (width 0.1016)) + (pad A smd rect (at 2.04 0) (size 1.78 2.16) (layers Top F.Paste F.Mask) + (net 1 GND) (solder_mask_margin 0.1016)) + (pad C smd rect (at -2.03 0 180) (size 1.78 2.16) (layers Top F.Paste F.Mask) + (net 2 PWR_IN) (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:WS2812 (layer Top) (tedit 0) (tstamp 5B6DEB3B) + (at 141.605 98.1202) + (path /5B6DFACA/53D52AEB541775CA) + (fp_text reference IC2 (at 0.635 1.5748) (layer F.SilkS) + (effects (font (size 0.57912 0.57912) (thickness 0.048768)) (justify right top)) + ) + (fp_text value WS2812 (at 3.175 3.4798) (layer F.SilkS) hide + (effects (font (size 1.27 1.27) (thickness 0.15)) (justify right top)) + ) + (fp_line (start -2.2 -2.5) (end -2.5 -2.2) (layer F.SilkS) (width 0.127)) + (fp_line (start -2.5 -2.2) (end -2.5 2.5) (layer F.SilkS) (width 0.127)) + (fp_poly (pts (xy 1.7 2.1) (xy 2.7 2.1) (xy 2.7 1.1) (xy 1.7 1.1)) (layer Dwgs.User) (width 0)) + (fp_poly (pts (xy 1.7 0.5) (xy 2.7 0.5) (xy 2.7 -0.5) (xy 1.7 -0.5)) (layer Dwgs.User) (width 0)) + (fp_poly (pts (xy -2.7 2.1) (xy -1.7 2.1) (xy -1.7 1.1) (xy -2.7 1.1)) (layer Dwgs.User) (width 0)) + (fp_poly (pts (xy -2.7 0.5) (xy -1.7 0.5) (xy -1.7 -0.5) (xy -2.7 -0.5)) (layer Dwgs.User) (width 0)) + (fp_poly (pts (xy 1.7 -1.1) (xy 2.7 -1.1) (xy 2.7 -2.1) (xy 1.7 -2.1)) (layer Dwgs.User) (width 0)) + (fp_poly (pts (xy -2.7 -1.1) (xy -1.7 -1.1) (xy -1.7 -2.1) (xy -2.7 -2.1)) (layer Dwgs.User) (width 0)) + (fp_line (start -2.5 -2.5) (end -2.5 -2.2) (layer F.SilkS) (width 0.127)) + (fp_line (start -2.2 -2.5) (end -2.5 -2.5) (layer F.SilkS) (width 0.127)) + (fp_line (start 2.5 -2.5) (end -2.2 -2.5) (layer F.SilkS) (width 0.127)) + (fp_line (start 2.5 2.5) (end 2.5 -2.5) (layer F.SilkS) (width 0.127)) + (fp_line (start -2.5 2.5) (end 2.5 2.5) (layer F.SilkS) (width 0.127)) + (pad 6 smd rect (at 2.3 -1.6) (size 1.2 1) (layers Top F.Paste F.Mask) + (net 1 GND) (solder_mask_margin 0.1016)) + (pad 5 smd rect (at 2.3 0) (size 1.2 1) (layers Top F.Paste F.Mask) + (net 3 VCC) (solder_mask_margin 0.1016)) + (pad 1 smd rect (at -2.3 -1.6) (size 1.2 1) (layers Top F.Paste F.Mask) + (net 10 "Net-(IC2-Pad1)") (solder_mask_margin 0.1016)) + (pad 2 smd rect (at -2.3 0) (size 1.2 1) (layers Top F.Paste F.Mask) + (net 4 DOUT) (solder_mask_margin 0.1016)) + (pad 3 smd rect (at -2.3 1.6) (size 1.2 1) (layers Top F.Paste F.Mask) + (net 24 PWR_LED) (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:SOD323_ST (layer Top) (tedit 0) (tstamp 5B6DEB65) + (at 107.188 80.264 270) + (descr "SOD-323

\nSource: www.st.com, BAT60J.pdf") + (path /5B6DFC7E/4C475A1A20478EC3) + (fp_text reference D2 (at -4.064 0.508 270) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_text value BAT60J (at -1.65 2 270) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_poly (pts (xy -0.85 0.55) (xy -0.05 0.55) (xy -0.05 -0.55) (xy -0.85 -0.55)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy 0.8 0.15) (xy 1.35 0.15) (xy 1.35 -0.15) (xy 0.8 -0.15)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -1.35 0.15) (xy -0.8 0.15) (xy -0.8 -0.15) (xy -1.35 -0.15)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -0.65 0.55) (xy -0.05 0.55) (xy -0.05 -0.55) (xy -0.65 -0.55)) (layer F.SilkS) (width 0)) + (fp_line (start -0.85 0.55) (end -0.85 -0.55) (layer F.Fab) (width 0.1016)) + (fp_line (start 0.85 0.55) (end -0.85 0.55) (layer F.SilkS) (width 0.1016)) + (fp_line (start 0.85 -0.55) (end 0.85 0.55) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.85 -0.55) (end 0.85 -0.55) (layer F.SilkS) (width 0.1016)) + (pad A smd rect (at 1.25 0 270) (size 0.8 0.6) (layers Top F.Paste F.Mask) + (net 19 "Net-(D2-PadA)") (solder_mask_margin 0.1016)) + (pad C smd rect (at -1.25 0 270) (size 0.8 0.6) (layers Top F.Paste F.Mask) + (net 16 "Net-(D2-PadC)") (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:R0805 (layer Top) (tedit 0) (tstamp 5B6DEB72) + (at 100.965 90.805 180) + (descr RESISTOR

) + (path /5B6DFC7E/CCADE161F5E59E3A) + (fp_text reference R5 (at -0.635 -1.27 180) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_text value 1k (at -0.635 2.54 180) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_poly (pts (xy -0.1999 0.5001) (xy 0.1999 0.5001) (xy 0.1999 -0.5001) (xy -0.1999 -0.5001)) (layer F.Adhes) (width 0)) + (fp_poly (pts (xy -1.0668 0.6985) (xy -0.4168 0.6985) (xy -0.4168 -0.7015) (xy -1.0668 -0.7015)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy 0.4064 0.6985) (xy 1.0564 0.6985) (xy 1.0564 -0.7015) (xy 0.4064 -0.7015)) (layer F.Fab) (width 0)) + (fp_line (start -1.973 0.983) (end -1.973 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 1.973 0.983) (end -1.973 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 1.973 -0.983) (end 1.973 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -1.973 -0.983) (end 1.973 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -0.41 0.635) (end 0.41 0.635) (layer F.Fab) (width 0.1524)) + (fp_line (start -0.41 -0.635) (end 0.41 -0.635) (layer F.Fab) (width 0.1524)) + (pad 2 smd rect (at 0.95 0 180) (size 1.3 1.5) (layers Top F.Paste F.Mask) + (net 20 "Net-(C6-Pad2)") (solder_mask_margin 0.1016)) + (pad 1 smd rect (at -0.95 0 180) (size 1.3 1.5) (layers Top F.Paste F.Mask) + (net 19 "Net-(D2-PadA)") (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:R0805 (layer Top) (tedit 0) (tstamp 5B6DEB80) + (at 107.63 85.09 90) + (descr RESISTOR

) + (path /5B6DFC7E/EF632DAE64669C67) + (fp_text reference R6 (at -0.635 -1.27 90) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_text value 1k (at -0.635 2.54 90) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_poly (pts (xy -0.1999 0.5001) (xy 0.1999 0.5001) (xy 0.1999 -0.5001) (xy -0.1999 -0.5001)) (layer F.Adhes) (width 0)) + (fp_poly (pts (xy -1.0668 0.6985) (xy -0.4168 0.6985) (xy -0.4168 -0.7015) (xy -1.0668 -0.7015)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy 0.4064 0.6985) (xy 1.0564 0.6985) (xy 1.0564 -0.7015) (xy 0.4064 -0.7015)) (layer F.Fab) (width 0)) + (fp_line (start -1.973 0.983) (end -1.973 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 1.973 0.983) (end -1.973 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 1.973 -0.983) (end 1.973 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -1.973 -0.983) (end 1.973 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -0.41 0.635) (end 0.41 0.635) (layer F.Fab) (width 0.1524)) + (fp_line (start -0.41 -0.635) (end 0.41 -0.635) (layer F.Fab) (width 0.1524)) + (pad 2 smd rect (at 0.95 0 90) (size 1.3 1.5) (layers Top F.Paste F.Mask) + (net 22 "Net-(D3-PadA)") (solder_mask_margin 0.1016)) + (pad 1 smd rect (at -0.95 0 90) (size 1.3 1.5) (layers Top F.Paste F.Mask) + (net 21 GPIO14) (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:C0805 (layer Top) (tedit 0) (tstamp 5B6E51B2) + (at 101.6 94.93 90) + (descr CAPACITOR

) + (path /5B6DFC7E/A3ABC6EF65EADBD0) + (fp_text reference C6 (at 0.315 1.27 90) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_text value 1uF (at -1.27 2.54 90) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_poly (pts (xy -0.1001 0.4001) (xy 0.1001 0.4001) (xy 0.1001 -0.4001) (xy -0.1001 -0.4001)) (layer F.Adhes) (width 0)) + (fp_poly (pts (xy 0.3556 0.7239) (xy 1.1057 0.7239) (xy 1.1057 -0.7262) (xy 0.3556 -0.7262)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -1.0922 0.7239) (xy -0.3421 0.7239) (xy -0.3421 -0.7262) (xy -1.0922 -0.7262)) (layer F.Fab) (width 0)) + (fp_line (start 1.973 -0.983) (end 1.973 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -0.356 0.66) (end 0.381 0.66) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.381 -0.66) (end 0.381 -0.66) (layer F.Fab) (width 0.1016)) + (fp_line (start -1.973 0.983) (end -1.973 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 1.973 0.983) (end -1.973 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -1.973 -0.983) (end 1.973 -0.983) (layer Dwgs.User) (width 0.0508)) + (pad 2 smd rect (at 0.95 0 90) (size 1.3 1.5) (layers Top F.Paste F.Mask) + (net 20 "Net-(C6-Pad2)") (solder_mask_margin 0.1016)) + (pad 1 smd rect (at -0.95 0 90) (size 1.3 1.5) (layers Top F.Paste F.Mask) + (net 2 PWR_IN) (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:SOD323_ST (layer Top) (tedit 0) (tstamp 5B6DEB9C) + (at 109.03 80.2 270) + (descr "SOD-323

\nSource: www.st.com, BAT60J.pdf") + (path /5B6DFC7E/40D44ED439967F7A) + (fp_text reference D3 (at -1.65 -0.75 270) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_text value BAT60J (at -1.65 2 270) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_poly (pts (xy -0.85 0.55) (xy -0.05 0.55) (xy -0.05 -0.55) (xy -0.85 -0.55)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy 0.8 0.15) (xy 1.35 0.15) (xy 1.35 -0.15) (xy 0.8 -0.15)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -1.35 0.15) (xy -0.8 0.15) (xy -0.8 -0.15) (xy -1.35 -0.15)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -0.65 0.55) (xy -0.05 0.55) (xy -0.05 -0.55) (xy -0.65 -0.55)) (layer F.SilkS) (width 0)) + (fp_line (start -0.85 0.55) (end -0.85 -0.55) (layer F.Fab) (width 0.1016)) + (fp_line (start 0.85 0.55) (end -0.85 0.55) (layer F.SilkS) (width 0.1016)) + (fp_line (start 0.85 -0.55) (end 0.85 0.55) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.85 -0.55) (end 0.85 -0.55) (layer F.SilkS) (width 0.1016)) + (pad A smd rect (at 1.25 0 270) (size 0.8 0.6) (layers Top F.Paste F.Mask) + (net 22 "Net-(D3-PadA)") (solder_mask_margin 0.1016)) + (pad C smd rect (at -1.25 0 270) (size 0.8 0.6) (layers Top F.Paste F.Mask) + (net 16 "Net-(D2-PadC)") (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:C0805 (layer Top) (tedit 0) (tstamp 5B6DEBA9) + (at 133.35 94.615 270) + (descr CAPACITOR

) + (path /5B6DFC7E/EBEB2313A6F2A611) + (fp_text reference C7 (at 0 -1.27 270) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_text value 100nF (at -1.27 2.54 270) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_poly (pts (xy -0.1001 0.4001) (xy 0.1001 0.4001) (xy 0.1001 -0.4001) (xy -0.1001 -0.4001)) (layer F.Adhes) (width 0)) + (fp_poly (pts (xy 0.3556 0.7239) (xy 1.1057 0.7239) (xy 1.1057 -0.7262) (xy 0.3556 -0.7262)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -1.0922 0.7239) (xy -0.3421 0.7239) (xy -0.3421 -0.7262) (xy -1.0922 -0.7262)) (layer F.Fab) (width 0)) + (fp_line (start 1.973 -0.983) (end 1.973 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -0.356 0.66) (end 0.381 0.66) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.381 -0.66) (end 0.381 -0.66) (layer F.Fab) (width 0.1016)) + (fp_line (start -1.973 0.983) (end -1.973 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 1.973 0.983) (end -1.973 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -1.973 -0.983) (end 1.973 -0.983) (layer Dwgs.User) (width 0.0508)) + (pad 2 smd rect (at 0.95 0 270) (size 1.3 1.5) (layers Top F.Paste F.Mask) + (net 1 GND) (solder_mask_margin 0.1016)) + (pad 1 smd rect (at -0.95 0 270) (size 1.3 1.5) (layers Top F.Paste F.Mask) + (net 3 VCC) (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:C1210 (layer Top) (tedit 0) (tstamp 5B6DEBB7) + (at 102.362 82.804 180) + (descr CAPACITOR) + (path /5B6DFC7E/A7C735F03607F4DE) + (fp_text reference C8 (at -1.905 -1.905 180) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_text value 4,7uF (at -1.905 3.175 180) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_poly (pts (xy -0.1999 0.4001) (xy 0.1999 0.4001) (xy 0.1999 -0.4001) (xy -0.1999 -0.4001)) (layer F.Adhes) (width 0)) + (fp_poly (pts (xy 0.9517 1.3045) (xy 1.7018 1.3045) (xy 1.7018 -1.2954) (xy 0.9517 -1.2954)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -1.7018 1.2954) (xy -0.9517 1.2954) (xy -0.9517 -1.3045) (xy -1.7018 -1.3045)) (layer F.Fab) (width 0)) + (fp_line (start 2.473 -1.483) (end 2.473 1.483) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -0.9652 1.2446) (end 0.9652 1.2446) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.9652 -1.2446) (end 0.9652 -1.2446) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.473 1.483) (end -2.473 -1.483) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 2.473 1.483) (end -2.473 1.483) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -2.473 -1.483) (end 2.473 -1.483) (layer Dwgs.User) (width 0.0508)) + (pad 2 smd rect (at 1.4 0 180) (size 1.6 2.7) (layers Top F.Paste F.Mask) + (net 1 GND) (solder_mask_margin 0.1016)) + (pad 1 smd rect (at -1.4 0 180) (size 1.6 2.7) (layers Top F.Paste F.Mask) + (net 3 VCC) (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:R0805 (layer Top) (tedit 0) (tstamp 5B6DEBC5) + (at 95.57 88.9) + (descr RESISTOR

) + (path /5B6DFACA/BBCFCC776C012852) + (fp_text reference R7 (at 0.315 -2.54) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_text value 10k (at -0.635 2.54) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_poly (pts (xy -0.1999 0.5001) (xy 0.1999 0.5001) (xy 0.1999 -0.5001) (xy -0.1999 -0.5001)) (layer F.Adhes) (width 0)) + (fp_poly (pts (xy -1.0668 0.6985) (xy -0.4168 0.6985) (xy -0.4168 -0.7015) (xy -1.0668 -0.7015)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy 0.4064 0.6985) (xy 1.0564 0.6985) (xy 1.0564 -0.7015) (xy 0.4064 -0.7015)) (layer F.Fab) (width 0)) + (fp_line (start -1.973 0.983) (end -1.973 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 1.973 0.983) (end -1.973 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 1.973 -0.983) (end 1.973 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -1.973 -0.983) (end 1.973 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -0.41 0.635) (end 0.41 0.635) (layer F.Fab) (width 0.1524)) + (fp_line (start -0.41 -0.635) (end 0.41 -0.635) (layer F.Fab) (width 0.1524)) + (pad 2 smd rect (at 0.95 0) (size 1.3 1.5) (layers Top F.Paste F.Mask) + (net 2 PWR_IN) (solder_mask_margin 0.1016)) + (pad 1 smd rect (at -0.95 0) (size 1.3 1.5) (layers Top F.Paste F.Mask) + (net 1 GND) (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:009176002 (layer Top) (tedit 0) (tstamp 5B6DEBD3) + (at 123.444 105.918 180) + (descr "Wire to Board Strip IDC Connector 2 WAY

\nSource: http://www.avx.com/docs/Catalogs/9176.pdf") + (path /5B6DFACA/97C2823C753049C4) + (fp_text reference X1 (at -3.75 -2.75 180) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_text value 00917?0026 (at -3.75 4 180) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_line (start -1.4476 -2.0305) (end -1.4476 -2.4563) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.452 -2.0305) (end -2.452 -2.4563) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.452 -2.0305) (end -2.976 -2.0305) (layer F.Fab) (width 0.1016)) + (fp_line (start -1.4476 -2.0305) (end -2.452 -2.0305) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.9127 -2.0305) (end -1.4476 -2.0305) (layer F.Fab) (width 0.1016)) + (fp_line (start -1.5896 -0.7314) (end -1.5896 -1.2773) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.321 -0.7314) (end -2.321 -1.2773) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.321 -1.2773) (end -2.976 -1.2773) (layer F.Fab) (width 0.1016)) + (fp_line (start -1.5896 -1.2773) (end -2.321 -1.2773) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.9127 -1.2773) (end -1.5896 -1.2773) (layer F.Fab) (width 0.1016)) + (fp_line (start -1.5896 -0.7314) (end -0.9127 -0.7314) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.321 -0.7314) (end -1.5896 -0.7314) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.976 -0.7314) (end -2.321 -0.7314) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.3101 1.2664) (end -2.3101 0.7205) (layer F.Fab) (width 0.1016)) + (fp_line (start -1.5896 1.2664) (end -1.5896 0.7205) (layer F.Fab) (width 0.1016)) + (fp_line (start -1.5896 1.2664) (end -0.9127 1.2664) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.3101 1.2664) (end -1.5896 1.2664) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.976 1.2664) (end -2.3101 1.2664) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.3101 0.7205) (end -2.976 0.7205) (layer F.Fab) (width 0.1016)) + (fp_line (start -1.5896 0.7205) (end -2.3101 0.7205) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.9127 0.7205) (end -1.5896 0.7205) (layer F.Fab) (width 0.1016)) + (fp_line (start -1.4695 2.0415) (end -0.9127 2.0415) (layer F.Fab) (width 0.1016)) + (fp_line (start -1.4586 2.0415) (end -1.4586 2.4454) (layer F.Fab) (width 0.1016)) + (fp_line (start -1.4695 2.0415) (end -1.4586 2.0415) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.4738 2.0415) (end -1.4695 2.0415) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.4629 2.0415) (end -2.4629 2.4454) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.4738 2.0415) (end -2.4629 2.0415) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.976 2.0415) (end -2.4738 2.0415) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.976 -2.0305) (end -2.976 -2.4563) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.976 -1.2773) (end -2.976 -2.0305) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.976 -0.7314) (end -2.976 -1.2773) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.976 0.7205) (end -2.976 -0.7314) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.976 1.2664) (end -2.976 0.7205) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.976 2.0415) (end -2.976 1.2664) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.976 2.4454) (end -2.976 2.0415) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.9127 -2.0305) (end -0.9127 -2.4563) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.9127 -1.2773) (end -0.9127 -2.0305) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.9127 -0.7314) (end -0.9127 -1.2773) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.9127 0.7205) (end -0.9127 -0.7314) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.9127 1.2664) (end -0.9127 0.7205) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.9127 2.0415) (end -0.9127 1.2664) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.9127 2.4454) (end -0.9127 2.0415) (layer F.Fab) (width 0.1016)) + (fp_line (start 2.4978 -2.0305) (end 2.4978 -2.4563) (layer F.Fab) (width 0.1016)) + (fp_line (start 1.4934 -2.0305) (end 1.4934 -2.4563) (layer F.Fab) (width 0.1016)) + (fp_line (start 1.4934 -2.0305) (end 0.9694 -2.0305) (layer F.Fab) (width 0.1016)) + (fp_line (start 2.4978 -2.0305) (end 1.4934 -2.0305) (layer F.Fab) (width 0.1016)) + (fp_line (start 3.0327 -2.0305) (end 2.4978 -2.0305) (layer F.Fab) (width 0.1016)) + (fp_line (start 2.3558 -0.7314) (end 2.3558 -1.2773) (layer F.Fab) (width 0.1016)) + (fp_line (start 1.6244 -0.7314) (end 1.6244 -1.2773) (layer F.Fab) (width 0.1016)) + (fp_line (start 1.6244 -1.2773) (end 0.9694 -1.2773) (layer F.Fab) (width 0.1016)) + (fp_line (start 2.3558 -1.2773) (end 1.6244 -1.2773) (layer F.Fab) (width 0.1016)) + (fp_line (start 3.0327 -1.2773) (end 2.3558 -1.2773) (layer F.Fab) (width 0.1016)) + (fp_line (start 2.3558 -0.7314) (end 3.0327 -0.7314) (layer F.Fab) (width 0.1016)) + (fp_line (start 1.6244 -0.7314) (end 2.3558 -0.7314) (layer F.Fab) (width 0.1016)) + (fp_line (start 0.9694 -0.7314) (end 1.6244 -0.7314) (layer F.Fab) (width 0.1016)) + (fp_line (start 1.6353 1.2664) (end 1.6353 0.7205) (layer F.Fab) (width 0.1016)) + (fp_line (start 2.3558 1.2664) (end 2.3558 0.7205) (layer F.Fab) (width 0.1016)) + (fp_line (start 2.3558 1.2664) (end 3.0327 1.2664) (layer F.Fab) (width 0.1016)) + (fp_line (start 1.6353 1.2664) (end 2.3558 1.2664) (layer F.Fab) (width 0.1016)) + (fp_line (start 0.9694 1.2664) (end 1.6353 1.2664) (layer F.Fab) (width 0.1016)) + (fp_line (start 1.6353 0.7205) (end 0.9694 0.7205) (layer F.Fab) (width 0.1016)) + (fp_line (start 2.3558 0.7205) (end 1.6353 0.7205) (layer F.Fab) (width 0.1016)) + (fp_line (start 3.0327 0.7205) (end 2.3558 0.7205) (layer F.Fab) (width 0.1016)) + (fp_line (start 2.4759 2.0415) (end 3.0327 2.0415) (layer F.Fab) (width 0.1016)) + (fp_line (start 2.4868 2.0415) (end 2.4868 2.4454) (layer F.Fab) (width 0.1016)) + (fp_line (start 2.4759 2.0415) (end 2.4868 2.0415) (layer F.Fab) (width 0.1016)) + (fp_line (start 1.4716 2.0415) (end 2.4759 2.0415) (layer F.Fab) (width 0.1016)) + (fp_line (start 1.4825 2.0415) (end 1.4825 2.4454) (layer F.Fab) (width 0.1016)) + (fp_line (start 1.4716 2.0415) (end 1.4825 2.0415) (layer F.Fab) (width 0.1016)) + (fp_line (start 0.9694 2.0415) (end 1.4716 2.0415) (layer F.Fab) (width 0.1016)) + (fp_line (start 0.9694 -2.0305) (end 0.9694 -2.4563) (layer F.Fab) (width 0.1016)) + (fp_line (start 0.9694 -1.2773) (end 0.9694 -2.0305) (layer F.Fab) (width 0.1016)) + (fp_line (start 0.9694 -0.7314) (end 0.9694 -1.2773) (layer F.Fab) (width 0.1016)) + (fp_line (start 0.9694 0.7205) (end 0.9694 -0.7314) (layer F.Fab) (width 0.1016)) + (fp_line (start 0.9694 1.2664) (end 0.9694 0.7205) (layer F.Fab) (width 0.1016)) + (fp_line (start 0.9694 2.0415) (end 0.9694 1.2664) (layer F.Fab) (width 0.1016)) + (fp_line (start 0.9694 2.4454) (end 0.9694 2.0415) (layer F.Fab) (width 0.1016)) + (fp_line (start 3.0327 -2.0305) (end 3.0327 -2.4563) (layer F.Fab) (width 0.1016)) + (fp_line (start 3.0327 -1.2773) (end 3.0327 -2.0305) (layer F.Fab) (width 0.1016)) + (fp_line (start 3.0327 -0.7314) (end 3.0327 -1.2773) (layer F.Fab) (width 0.1016)) + (fp_line (start 3.0327 0.7205) (end 3.0327 -0.7314) (layer F.Fab) (width 0.1016)) + (fp_line (start 3.0327 1.2664) (end 3.0327 0.7205) (layer F.Fab) (width 0.1016)) + (fp_line (start 3.0327 2.0415) (end 3.0327 1.2664) (layer F.Fab) (width 0.1016)) + (fp_line (start 3.0327 2.4454) (end 3.0327 2.0415) (layer F.Fab) (width 0.1016)) + (fp_line (start 3.9169 -2.4563) (end 3.9169 2.4454) (layer F.SilkS) (width 0.1016)) + (fp_line (start 3.0327 -2.4563) (end 3.9169 -2.4563) (layer F.Fab) (width 0.1016)) + (fp_line (start 0.9694 -2.4563) (end 3.0327 -2.4563) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.9127 -2.4563) (end 0.9694 -2.4563) (layer F.Fab) (width 0.1016)) + (fp_line (start -1.4476 -2.4563) (end -0.9127 -2.4563) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.976 -2.4563) (end -1.4476 -2.4563) (layer F.Fab) (width 0.1016)) + (fp_line (start -3.9171 -2.4563) (end -2.976 -2.4563) (layer F.Fab) (width 0.1016)) + (fp_line (start -3.9171 2.4454) (end -3.9171 -2.4563) (layer F.SilkS) (width 0.1016)) + (fp_line (start -2.976 2.4454) (end -3.9171 2.4454) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.9127 2.4454) (end -2.976 2.4454) (layer F.Fab) (width 0.1016)) + (fp_line (start 0.9694 2.4454) (end -0.9127 2.4454) (layer F.Fab) (width 0.1016)) + (fp_line (start 3.0327 2.4454) (end 0.9694 2.4454) (layer F.Fab) (width 0.1016)) + (fp_line (start 3.9169 2.4454) (end 3.0327 2.4454) (layer F.Fab) (width 0.1016)) + (pad 2 smd rect (at 2 0 180) (size 3 5) (layers Top F.Paste F.Mask) + (net 1 GND) (solder_mask_margin 0.1016)) + (pad 1 smd rect (at -2 0 180) (size 3 5) (layers Top F.Paste F.Mask) + (net 3 VCC) (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:R1206 (layer Top) (tedit 0) (tstamp 5B6DEC39) + (at 102.87 111.125 180) + (descr RESISTOR) + (path /5B6DFACA/3776C06BD4B64AA6) + (fp_text reference R8 (at -1.27 -1.27 180) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_text value 100R (at -1.27 2.54 180) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_poly (pts (xy -0.3 0.7) (xy 0.3 0.7) (xy 0.3 -0.7) (xy -0.3 -0.7)) (layer F.Adhes) (width 0)) + (fp_poly (pts (xy 0.9525 0.8763) (xy 1.6891 0.8763) (xy 1.6891 -0.8763) (xy 0.9525 -0.8763)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -1.6891 0.8763) (xy -0.9525 0.8763) (xy -0.9525 -0.8763) (xy -1.6891 -0.8763)) (layer F.Fab) (width 0)) + (fp_line (start -2.473 0.983) (end -2.473 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 2.473 0.983) (end -2.473 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 2.473 -0.983) (end 2.473 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -2.473 -0.983) (end 2.473 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 0.9525 -0.8128) (end -0.9652 -0.8128) (layer F.Fab) (width 0.1524)) + (fp_line (start 0.9525 0.8128) (end -0.9652 0.8128) (layer F.Fab) (width 0.1524)) + (pad 1 smd rect (at -1.422 0 180) (size 1.6 1.803) (layers Top F.Paste F.Mask) + (net 10 "Net-(IC2-Pad1)") (solder_mask_margin 0.1016)) + (pad 2 smd rect (at 1.422 0 180) (size 1.6 1.803) (layers Top F.Paste F.Mask) + (net 12 "Net-(IC3-Pad2)") (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:R1206 (layer Top) (tedit 0) (tstamp 5B6DEC47) + (at 103.505 87.63 180) + (descr RESISTOR) + (path /5B6DFACA/5B6EC5DC) + (fp_text reference R9 (at -2.54 -1.27 180) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_text value 0R (at -1.27 2.54 180) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_poly (pts (xy -0.3 0.7) (xy 0.3 0.7) (xy 0.3 -0.7) (xy -0.3 -0.7)) (layer F.Adhes) (width 0)) + (fp_poly (pts (xy 0.9525 0.8763) (xy 1.6891 0.8763) (xy 1.6891 -0.8763) (xy 0.9525 -0.8763)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -1.6891 0.8763) (xy -0.9525 0.8763) (xy -0.9525 -0.8763) (xy -1.6891 -0.8763)) (layer F.Fab) (width 0)) + (fp_line (start -2.473 0.983) (end -2.473 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 2.473 0.983) (end -2.473 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 2.473 -0.983) (end 2.473 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -2.473 -0.983) (end 2.473 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 0.9525 -0.8128) (end -0.9652 -0.8128) (layer F.Fab) (width 0.1524)) + (fp_line (start 0.9525 0.8128) (end -0.9652 0.8128) (layer F.Fab) (width 0.1524)) + (pad 1 smd rect (at -1.422 0 180) (size 1.6 1.803) (layers Top F.Paste F.Mask) + (net 1 GND) (solder_mask_margin 0.1016)) + (pad 2 smd rect (at 1.422 0 180) (size 1.6 1.803) (layers Top F.Paste F.Mask) + (net 1 GND) (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:C1206 (layer Top) (tedit 0) (tstamp 5B6DEC55) + (at 104.775 99.695 270) + (descr CAPACITOR) + (path /5B6DFACA/6FF1E0DBD736F15A) + (fp_text reference C9 (at 0 -2.54 270) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_text value 10uF (at -1.27 2.54 270) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_poly (pts (xy -0.1999 0.4001) (xy 0.1999 0.4001) (xy 0.1999 -0.4001) (xy -0.1999 -0.4001)) (layer F.Adhes) (width 0)) + (fp_poly (pts (xy 0.9517 0.8491) (xy 1.7018 0.8491) (xy 1.7018 -0.8509) (xy 0.9517 -0.8509)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -1.7018 0.8509) (xy -0.9517 0.8509) (xy -0.9517 -0.8491) (xy -1.7018 -0.8491)) (layer F.Fab) (width 0)) + (fp_line (start -0.965 0.787) (end 0.965 0.787) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.965 -0.787) (end 0.965 -0.787) (layer F.Fab) (width 0.1016)) + (fp_line (start 2.473 -0.983) (end 2.473 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -2.473 0.983) (end -2.473 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 2.473 0.983) (end -2.473 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -2.473 -0.983) (end 2.473 -0.983) (layer Dwgs.User) (width 0.0508)) + (pad 2 smd rect (at 1.4 0 270) (size 1.6 1.8) (layers Top F.Paste F.Mask) + (net 5 /receive_v1_1_1/IND) (solder_mask_margin 0.1016)) + (pad 1 smd rect (at -1.4 0 270) (size 1.6 1.8) (layers Top F.Paste F.Mask) + (net 2 PWR_IN) (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:C1206 (layer Top) (tedit 0) (tstamp 5B6DEC63) + (at 101.6 99.695 90) + (descr CAPACITOR) + (path /5B6DFACA/21F9ED814F457455) + (fp_text reference C10 (at -5.715 1.905 90) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_text value 10uF (at -1.27 2.54 90) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_poly (pts (xy -0.1999 0.4001) (xy 0.1999 0.4001) (xy 0.1999 -0.4001) (xy -0.1999 -0.4001)) (layer F.Adhes) (width 0)) + (fp_poly (pts (xy 0.9517 0.8491) (xy 1.7018 0.8491) (xy 1.7018 -0.8509) (xy 0.9517 -0.8509)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -1.7018 0.8509) (xy -0.9517 0.8509) (xy -0.9517 -0.8491) (xy -1.7018 -0.8491)) (layer F.Fab) (width 0)) + (fp_line (start -0.965 0.787) (end 0.965 0.787) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.965 -0.787) (end 0.965 -0.787) (layer F.Fab) (width 0.1016)) + (fp_line (start 2.473 -0.983) (end 2.473 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -2.473 0.983) (end -2.473 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 2.473 0.983) (end -2.473 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -2.473 -0.983) (end 2.473 -0.983) (layer Dwgs.User) (width 0.0508)) + (pad 2 smd rect (at 1.4 0 90) (size 1.6 1.8) (layers Top F.Paste F.Mask) + (net 1 GND) (solder_mask_margin 0.1016)) + (pad 1 smd rect (at -1.4 0 90) (size 1.6 1.8) (layers Top F.Paste F.Mask) + (net 5 /receive_v1_1_1/IND) (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:SMB (layer Top) (tedit 0) (tstamp 5B6DEC71) + (at 97.79 99.06 270) + (descr DIODE) + (path /5B6DFACA/378136B8DCE5EB0D) + (fp_text reference D4 (at -2.54 -2.54 270) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_text value SCHOTTKY-DIODESMD (at -2.159 3.429 270) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_poly (pts (xy -1.35 1.9) (xy -0.8 1.9) (xy -0.8 -1.9) (xy -1.35 -1.9)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy 2.2606 1.0922) (xy 2.794 1.0922) (xy 2.794 -1.0922) (xy 2.2606 -1.0922)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -2.794 1.0922) (xy -2.2606 1.0922) (xy -2.2606 -1.0922) (xy -2.794 -1.0922)) (layer F.Fab) (width 0)) + (fp_line (start 0.193 1) (end 0.193 -1) (layer F.SilkS) (width 0.2032)) + (fp_line (start -0.83 0) (end 0.193 1) (layer F.SilkS) (width 0.2032)) + (fp_line (start 0.193 -1) (end -0.83 0) (layer F.SilkS) (width 0.2032)) + (fp_line (start 2.2606 1.905) (end 2.2606 -1.905) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.2606 1.905) (end -2.2606 -1.905) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.2606 1.905) (end 2.2606 1.905) (layer F.SilkS) (width 0.1016)) + (fp_line (start -2.2606 -1.905) (end 2.2606 -1.905) (layer F.SilkS) (width 0.1016)) + (pad A smd rect (at 2.2 0 270) (size 2.4 2.4) (layers Top F.Paste F.Mask) + (net 6 "Net-(C1-Pad1)") (solder_mask_margin 0.1016)) + (pad C smd rect (at -2.2 0 270) (size 2.4 2.4) (layers Top F.Paste F.Mask) + (net 2 PWR_IN) (solder_mask_margin 0.1016)) + ) + + (module receive_v1_1:SMB (layer Top) (tedit 0) (tstamp 5B6DEC80) + (at 92.71 99.06 90) + (descr DIODE) + (path /5B6DFACA/E8A02D8F73B70CE6) + (fp_text reference D5 (at -2.159 -2.159 90) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_text value SCHOTTKY-DIODESMD (at -2.159 3.429 90) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_poly (pts (xy -1.35 1.9) (xy -0.8 1.9) (xy -0.8 -1.9) (xy -1.35 -1.9)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy 2.2606 1.0922) (xy 2.794 1.0922) (xy 2.794 -1.0922) (xy 2.2606 -1.0922)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -2.794 1.0922) (xy -2.2606 1.0922) (xy -2.2606 -1.0922) (xy -2.794 -1.0922)) (layer F.Fab) (width 0)) + (fp_line (start 0.193 1) (end 0.193 -1) (layer F.SilkS) (width 0.2032)) + (fp_line (start -0.83 0) (end 0.193 1) (layer F.SilkS) (width 0.2032)) + (fp_line (start 0.193 -1) (end -0.83 0) (layer F.SilkS) (width 0.2032)) + (fp_line (start 2.2606 1.905) (end 2.2606 -1.905) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.2606 1.905) (end -2.2606 -1.905) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.2606 1.905) (end 2.2606 1.905) (layer F.SilkS) (width 0.1016)) + (fp_line (start -2.2606 -1.905) (end 2.2606 -1.905) (layer F.SilkS) (width 0.1016)) + (pad A smd rect (at 2.2 0 90) (size 2.4 2.4) (layers Top F.Paste F.Mask) + (net 1 GND) (solder_mask_margin 0.1016)) + (pad C smd rect (at -2.2 0 90) (size 2.4 2.4) (layers Top F.Paste F.Mask) + (net 6 "Net-(C1-Pad1)") (solder_mask_margin 0.1016)) + ) + + (gr_text "PD\nTXD\nRXD\nGND\nVCC" (at 133.35 85.725) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.25))) + ) + (gr_text "- +" (at 123.825 101.6) (layer F.SilkS) + (effects (font (size 1.5 1.5) (thickness 0.3))) + ) + (gr_circle (center 117.78605 104.897) (end 148.26605 104.897) (layer Edge.Cuts) (width 0.1524) (tstamp 55745BF74AF0)) + (gr_text SG (at 138.43 91.948) (layer Top) (tstamp 55745BF74FD0) + (effects (font (size 1.6891 1.6891) (thickness 0.14224)) (justify left bottom)) + ) + (gr_text Cocktailglas (at 109.855 132.08) (layer Top) (tstamp 55745BF674C0) + (effects (font (size 1.6891 1.6891) (thickness 0.14224)) (justify left bottom)) + ) + + (segment (start 101.47 99.06) (end 101.6 98.93) (width 0.5) (layer Top) (net 1)) + (segment (start 93.21 99.06) (end 101.47 99.06) (width 0.5) (layer Top) (net 1)) + (segment (start 92.71 98.56) (end 93.21 99.06) (width 0.5) (layer Top) (net 1)) + (segment (start 92.71 96.86) (end 92.71 98.56) (width 0.5) (layer Top) (net 1)) + (segment (start 101.429998 81.28) (end 101.6 81.28) (width 0.5) (layer Top) (net 1)) + (segment (start 97.79 85.07) (end 97.79 84.919998) (width 0.5) (layer Top) (net 1)) + (segment (start 97.81 85.09) (end 97.79 85.07) (width 0.5) (layer Top) (net 1)) + (segment (start 97.79 84.919998) (end 101.429998 81.28) (width 0.8) (layer Top) (net 1)) + (segment (start 94.62 88.9) (end 93.809998 88.9) (width 0.5) (layer Top) (net 1)) + (segment (start 92.71 89.999998) (end 93.809998 88.9) (width 0.8) (layer Top) (net 1)) + (segment (start 93.21 91.94) (end 92.71 91.44) (width 0.5) (layer Top) (net 1)) + (segment (start 93.21 92.71) (end 93.21 91.94) (width 0.5) (layer Top) (net 1)) + (segment (start 92.71 91.44) (end 92.71 89.999998) (width 0.8) (layer Top) (net 1)) + (segment (start 92.71 96.86) (end 92.71 91.44) (width 0.8) (layer Top) (net 1)) + (segment (start 108.975 89.535) (end 104.775 89.535) (width 0.5) (layer Top) (net 1)) + (segment (start 104.775 89.535) (end 104.14 90.17) (width 0.8) (layer Top) (net 1)) + (segment (start 110.31 88.2) (end 108.975 89.535) (width 0.5) (layer Top) (net 1)) + (segment (start 111.56 88.2) (end 110.31 88.2) (width 0.5) (layer Top) (net 1)) + (segment (start 104.14 90.17) (end 104.14 94.615) (width 0.8) (layer Top) (net 1)) + (segment (start 104.14 94.615) (end 104.775 95.25) (width 0.8) (layer Top) (net 1)) + (segment (start 104.775 95.25) (end 107.95 95.25) (width 0.8) (layer Top) (net 1)) + (segment (start 132.395 96.52) (end 133.35 95.565) (width 0.5) (layer Top) (net 1)) + (segment (start 129.54 96.52) (end 132.395 96.52) (width 0.5) (layer Top) (net 1)) + (segment (start 124.16 92.64) (end 124.16 92.2) (width 0.5) (layer Top) (net 1)) + (segment (start 128.04 96.52) (end 124.16 92.64) (width 0.8) (layer Top) (net 1)) + (segment (start 129.54 96.52) (end 128.04 96.52) (width 0.5) (layer Top) (net 1)) + (segment (start 114.007259 97.021065) (end 113.507259 96.521065) (width 0.5) (layer Top) (net 1)) + (segment (start 113.876375 103.059509) (end 112.776375 103.059509) (width 0.5) (layer Top) (net 1)) + (segment (start 112.776375 103.059509) (end 112.726374 103.009508) (width 0.5) (layer Top) (net 1)) + (segment (start 112.726374 101.020396) (end 114.007259 99.739511) (width 0.5) (layer Top) (net 1)) + (segment (start 112.726374 103.009508) (end 112.726374 101.020396) (width 0.5) (layer Top) (net 1)) + (segment (start 114.007259 99.739511) (end 114.007259 99.249509) (width 0.5) (layer Top) (net 1)) + (segment (start 110.361373 103.059509) (end 112.776375 103.059509) (width 0.5) (layer Top) (net 1)) + (segment (start 113.876375 103.059509) (end 115.975703 103.059509) (width 0.5) (layer Top) (net 1)) + (segment (start 115.975703 103.059509) (end 117.187259 104.271065) (width 0.5) (layer Top) (net 1)) + (segment (start 114.007259 99.249509) (end 114.007259 97.021065) (width 0.8) (layer Top) (net 1)) + (segment (start 113.795 95.38) (end 113.795 97.155) (width 0.8) (layer Top) (net 1)) + (segment (start 107.95 95.25) (end 108.585 95.25) (width 0.8) (layer Top) (net 1)) + (segment (start 113.03 94.615) (end 113.795 95.38) (width 0.8) (layer Top) (net 1)) + (segment (start 108.585 95.25) (end 109.22 94.615) (width 0.8) (layer Top) (net 1)) + (segment (start 109.22 94.615) (end 113.03 94.615) (width 0.8) (layer Top) (net 1)) + (segment (start 127.635 96.52) (end 128.04 96.52) (width 0.5) (layer Top) (net 1)) + (segment (start 127 97.155) (end 127.635 96.52) (width 0.5) (layer Top) (net 1)) + (segment (start 113.795 97.155) (end 127 97.155) (width 0.5) (layer Top) (net 1)) + (segment (start 104.927 89.383) (end 104.775 89.535) (width 0.5) (layer Top) (net 1)) + (segment (start 104.927 87.63) (end 104.927 89.383) (width 0.8) (layer Top) (net 1)) + (segment (start 96.603998 86.106) (end 97.79 84.919998) (width 0.8) (layer Top) (net 1)) + (segment (start 93.809998 88.9) (end 96.603998 86.106) (width 0.8) (layer Top) (net 1)) + (segment (start 142.805 96.5202) (end 143.905 96.5202) (width 0.5) (layer Top) (net 1)) + (segment (start 133.35 95.565) (end 134.6 95.565) (width 0.5) (layer Top) (net 1)) + (segment (start 134.6 95.565) (end 134.661 95.504) (width 0.5) (layer Top) (net 1)) + (segment (start 134.661 95.504) (end 137.668 95.504) (width 0.5) (layer Top) (net 1)) + (segment (start 137.668 95.504) (end 138.176 94.996) (width 0.5) (layer Top) (net 1)) + (segment (start 119.797065 104.271065) (end 121.444 105.918) (width 0.5) (layer Top) (net 1)) + (segment (start 117.187259 104.271065) (end 119.797065 104.271065) (width 0.8) (layer Top) (net 1)) + (segment (start 102.083 87.63) (end 101.854 87.63) (width 0.5) (layer Top) (net 1)) + (segment (start 100.962 86.738) (end 100.962 82.804) (width 0.8) (layer Top) (net 1)) + (segment (start 101.854 87.63) (end 100.962 86.738) (width 0.8) (layer Top) (net 1)) + (segment (start 113.962748 99.695) (end 114.007259 99.739511) (width 0.5) (layer Top) (net 1)) + (segment (start 113.345 99.695) (end 113.962748 99.695) (width 0.5) (layer Top) (net 1)) + (segment (start 142.40501 96.12021) (end 142.24 95.9552) (width 0.5) (layer Top) (net 1)) + (segment (start 141.2808 94.996) (end 142.24 95.9552) (width 0.5) (layer Top) (net 1)) + (segment (start 142.24 95.9552) (end 142.367 96.0822) (width 0.5) (layer Top) (net 1)) + (segment (start 142.367 96.0822) (end 142.805 96.5202) (width 0.5) (layer Top) (net 1)) + (segment (start 140.400758 103.41601) (end 142.367 101.449768) (width 0.5) (layer Top) (net 1)) + (segment (start 127.889 111.633) (end 136.10599 103.41601) (width 0.5) (layer Top) (net 1)) + (segment (start 142.367 101.449768) (end 142.367 96.0822) (width 0.5) (layer Top) (net 1)) + (segment (start 107.823 111.633) (end 127.889 111.633) (width 0.5) (layer Top) (net 1)) + (segment (start 91.6038 112.2932) (end 92.7038 112.2932) (width 0.5) (layer Top) (net 1)) + (segment (start 92.7038 112.2932) (end 93.9486 113.538) (width 0.5) (layer Top) (net 1)) + (segment (start 136.10599 103.41601) (end 140.400758 103.41601) (width 0.5) (layer Top) (net 1)) + (segment (start 93.9486 113.538) (end 105.918 113.538) (width 0.5) (layer Top) (net 1)) + (segment (start 105.918 113.538) (end 107.823 111.633) (width 0.5) (layer Top) (net 1)) + (segment (start 100.962 81.747998) (end 101.429998 81.28) (width 0.5) (layer Top) (net 1)) + (segment (start 100.962 82.804) (end 100.962 81.747998) (width 0.5) (layer Top) (net 1)) + (segment (start 139.7 93.497) (end 139.7 94.996) (width 0.5) (layer Top) (net 1)) + (segment (start 139.7 94.996) (end 141.2808 94.996) (width 0.5) (layer Top) (net 1)) + (segment (start 138.176 94.996) (end 139.7 94.996) (width 0.5) (layer Top) (net 1)) + (segment (start 109.856864 102.555) (end 108.585 102.555) (width 0.5) (layer Top) (net 1)) + (segment (start 110.361373 103.059509) (end 109.856864 102.555) (width 0.5) (layer Top) (net 1)) + (segment (start 97.67 88.9) (end 96.52 88.9) (width 0.8) (layer Top) (net 2)) + (segment (start 97.79 89.02) (end 97.67 88.9) (width 0.5) (layer Top) (net 2)) + (segment (start 97.28 93.47) (end 97.79 93.98) (width 0.5) (layer Top) (net 2)) + (segment (start 97.28 92.71) (end 97.28 93.47) (width 0.5) (layer Top) (net 2)) + (segment (start 97.79 93.98) (end 97.79 89.02) (width 0.8) (layer Top) (net 2)) + (segment (start 97.79 96.86) (end 97.79 93.98) (width 0.8) (layer Top) (net 2)) + (segment (start 104.64 96.86) (end 110.367259 96.86) (width 0.8) (layer Top) (net 2)) + (segment (start 104.775 96.995) (end 104.64 96.86) (width 0.5) (layer Top) (net 2)) + (segment (start 110.707259 100.151277) (end 111.276375 100.720393) (width 0.5) (layer Top) (net 2)) + (segment (start 111.276375 102.109509) (end 111.276375 100.720393) (width 0.5) (layer Top) (net 2)) + (segment (start 108.517259 106.681065) (end 107.417259 106.681065) (width 0.5) (layer Top) (net 2)) + (segment (start 107.417259 106.681065) (end 106.860001 106.123807) (width 0.5) (layer Top) (net 2)) + (segment (start 106.860001 106.123807) (end 106.860001 101.889997) (width 0.5) (layer Top) (net 2)) + (segment (start 106.860001 101.889997) (end 108.598721 100.151277) (width 0.5) (layer Top) (net 2)) + (segment (start 108.598721 100.151277) (end 110.707259 100.151277) (width 0.5) (layer Top) (net 2)) + (segment (start 101.6 95.88) (end 101.6 96.098) (width 0.5) (layer Top) (net 2)) + (segment (start 110.995 99.245) (end 111.445 99.695) (width 0.8) (layer Top) (net 2)) + (segment (start 110.995 97.155) (end 110.995 99.245) (width 0.8) (layer Top) (net 2)) + (segment (start 111.163536 99.695) (end 110.707259 100.151277) (width 0.5) (layer Top) (net 2)) + (segment (start 111.445 99.695) (end 111.163536 99.695) (width 0.5) (layer Top) (net 2)) + (segment (start 98.77 95.88) (end 97.79 96.86) (width 0.8) (layer Top) (net 2)) + (segment (start 101.6 95.88) (end 98.77 95.88) (width 0.8) (layer Top) (net 2)) + (segment (start 103.83 96.86) (end 104.64 96.86) (width 0.8) (layer Top) (net 2)) + (segment (start 101.6 95.88) (end 102.85 95.88) (width 0.8) (layer Top) (net 2)) + (segment (start 102.85 95.88) (end 103.83 96.86) (width 0.8) (layer Top) (net 2)) + (segment (start 104.775 98.295) (end 104.775 96.995) (width 0.8) (layer Top) (net 2)) + (segment (start 111.56 80.2) (end 109.03 80.2) (width 0.8) (layer Top) (net 3)) + (segment (start 109.855 80.2) (end 106.045 80.2) (width 0.8) (layer Top) (net 3)) + (segment (start 106.045 80.2) (end 103.695 82.55) (width 0.8) (layer Top) (net 3)) + (segment (start 121.315 90.2) (end 124.16 90.2) (width 0.8) (layer Top) (net 3)) + (segment (start 111.56 80.2) (end 116.395 80.2) (width 0.8) (layer Top) (net 3)) + (segment (start 116.395 80.2) (end 119.38 83.185) (width 0.8) (layer Top) (net 3)) + (segment (start 119.38 88.265) (end 121.315 90.2) (width 0.8) (layer Top) (net 3)) + (segment (start 119.38 83.185) (end 119.38 88.265) (width 0.8) (layer Top) (net 3)) + (segment (start 128.905 92.71) (end 132.715 92.71) (width 0.8) (layer Top) (net 3)) + (segment (start 124.16 90.2) (end 125.41 90.2) (width 0.8) (layer Top) (net 3)) + (segment (start 126.365 90.17) (end 128.905 92.71) (width 0.8) (layer Top) (net 3)) + (segment (start 125.41 90.2) (end 125.44 90.17) (width 0.5) (layer Top) (net 3)) + (segment (start 125.44 90.17) (end 126.365 90.17) (width 0.8) (layer Top) (net 3)) + (segment (start 133.35 93.345) (end 132.715 92.71) (width 0.8) (layer Top) (net 3)) + (segment (start 133.35 93.665) (end 133.35 93.345) (width 0.5) (layer Top) (net 3)) + (segment (start 113.876375 102.109509) (end 116.548815 102.109509) (width 0.5) (layer Top) (net 3)) + (segment (start 116.548815 102.109509) (end 117.187259 101.471065) (width 0.5) (layer Top) (net 3)) + (segment (start 118.587259 101.471065) (end 119.224194 102.108) (width 0.8) (layer Top) (net 3)) + (segment (start 119.224194 102.108) (end 124.634 102.108) (width 0.8) (layer Top) (net 3)) + (segment (start 125.444 102.918) (end 125.444 105.918) (width 0.8) (layer Top) (net 3)) + (segment (start 117.187259 101.471065) (end 118.587259 101.471065) (width 0.8) (layer Top) (net 3)) + (segment (start 124.634 102.108) (end 125.444 102.918) (width 0.8) (layer Top) (net 3)) + (segment (start 124.888 102.362) (end 124.634 102.108) (width 0.5) (layer Top) (net 3)) + (segment (start 128.524 102.362) (end 124.888 102.362) (width 0.8) (layer Top) (net 3)) + (segment (start 135.89 93.218) (end 135.89 93.665) (width 0.5) (layer Top) (net 3)) + (segment (start 135.89 93.665) (end 133.35 93.665) (width 0.5) (layer Top) (net 3)) + (segment (start 92.2528 110.6932) (end 91.6038 110.6932) (width 0.5) (layer Top) (net 3)) + (segment (start 95.114934 107.831066) (end 92.2528 110.6932) (width 0.5) (layer Top) (net 3)) + (segment (start 106.307066 107.831066) (end 95.114934 107.831066) (width 0.5) (layer Top) (net 3)) + (segment (start 125.444 105.918) (end 125.444 106.918) (width 0.5) (layer Top) (net 3)) + (segment (start 125.444 106.918) (end 123.129033 109.232967) (width 0.5) (layer Top) (net 3)) + (segment (start 123.129033 109.232967) (end 107.708967 109.232967) (width 0.5) (layer Top) (net 3)) + (segment (start 107.708967 109.232967) (end 106.307066 107.831066) (width 0.5) (layer Top) (net 3)) + (segment (start 145.005 98.1202) (end 143.905 98.1202) (width 0.5) (layer Top) (net 3)) + (segment (start 145.542 97.5832) (end 145.005 98.1202) (width 0.5) (layer Top) (net 3)) + (segment (start 145.542 95.504) (end 145.542 97.5832) (width 0.5) (layer Top) (net 3)) + (segment (start 135.89 93.218) (end 136.89 93.218) (width 0.5) (layer Top) (net 3)) + (segment (start 138.033 92.075) (end 142.113 92.075) (width 0.5) (layer Top) (net 3)) + (segment (start 136.89 93.218) (end 138.033 92.075) (width 0.5) (layer Top) (net 3)) + (segment (start 142.113 92.075) (end 145.542 95.504) (width 0.5) (layer Top) (net 3)) + (segment (start 120.015 93.98) (end 120.015 95.774599) (width 0.5) (layer Top) (net 4)) + (segment (start 111.56 90.2) (end 111.81 90.2) (width 0.5) (layer Top) (net 4)) + (segment (start 111.84 90.17) (end 116.205 90.17) (width 0.5) (layer Top) (net 4)) + (segment (start 111.81 90.2) (end 111.84 90.17) (width 0.5) (layer Top) (net 4)) + (segment (start 116.205 90.17) (end 120.015 93.98) (width 0.5) (layer Top) (net 4)) + (segment (start 120.015 98.618599) (end 120.1165 98.618599) (width 0.5) (layer Top) (net 4)) + (segment (start 120.142 98.644099) (end 120.142 99.314) (width 0.5) (layer Top) (net 4)) + (segment (start 120.1165 98.618599) (end 120.142 98.644099) (width 0.5) (layer Top) (net 4)) + (segment (start 120.142 99.314) (end 121.666 100.838) (width 0.5) (layer Top) (net 4)) + (segment (start 121.666 100.838) (end 137.16 100.838) (width 0.5) (layer Top) (net 4)) + (segment (start 137.16 100.838) (end 137.668 101.346) (width 0.5) (layer Top) (net 4)) + (segment (start 137.668 101.346) (end 140.208 101.346) (width 0.5) (layer Top) (net 4)) + (segment (start 140.208 101.346) (end 140.716 100.838) (width 0.5) (layer Top) (net 4)) + (segment (start 140.405 98.1202) (end 139.305 98.1202) (width 0.5) (layer Top) (net 4)) + (segment (start 140.716 98.4312) (end 140.405 98.1202) (width 0.5) (layer Top) (net 4)) + (segment (start 140.716 100.838) (end 140.716 98.4312) (width 0.5) (layer Top) (net 4)) + (segment (start 117.78605 78.0746) (end 117.78605 78.0746) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70154)) + (segment (start 117.78605 78.0746) (end 116.755113 78.095364) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70151)) + (segment (start 116.755113 78.095364) (end 115.725848 78.157623) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7014F)) + (segment (start 115.725848 78.157623) (end 114.699925 78.261276) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7014D)) + (segment (start 114.699925 78.261276) (end 113.679008 78.406155) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7014A)) + (segment (start 113.679008 78.406155) (end 112.664752 78.592024) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70148)) + (segment (start 112.664752 78.592024) (end 111.658803 78.818582) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70146)) + (segment (start 111.658803 78.818582) (end 110.662793 79.085463) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70143)) + (segment (start 110.662793 79.085463) (end 109.678336 79.392232) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70141)) + (segment (start 109.678336 79.392232) (end 108.70703 79.738392) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7013F)) + (segment (start 108.70703 79.738392) (end 107.75045 80.123382) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7013C)) + (segment (start 107.75045 80.123382) (end 106.810149 80.546578) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7013A)) + (segment (start 106.810149 80.546578) (end 105.88765 81.007292) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70138)) + (segment (start 105.88765 81.007292) (end 104.98445 81.504778) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70136)) + (segment (start 104.98445 81.504778) (end 104.102015 82.038229) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70133)) + (segment (start 104.102015 82.038229) (end 103.241775 82.606779) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70131)) + (segment (start 103.241775 82.606779) (end 102.405126 83.209507) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7012F)) + (segment (start 102.405126 83.209507) (end 101.593425 83.845434) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7012C)) + (segment (start 101.593425 83.845434) (end 100.807988 84.51353) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7012A)) + (segment (start 100.807988 84.51353) (end 100.05009 85.21271) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70128)) + (segment (start 100.05009 85.21271) (end 99.32096 85.94184) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70125)) + (segment (start 99.32096 85.94184) (end 98.62178 86.699738) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70123)) + (segment (start 98.62178 86.699738) (end 97.953684 87.485175) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70121)) + (segment (start 97.953684 87.485175) (end 97.317757 88.296876) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7011E)) + (segment (start 97.317757 88.296876) (end 96.715029 89.133525) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7011C)) + (segment (start 96.715029 89.133525) (end 96.146479 89.993765) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7011A)) + (segment (start 96.146479 89.993765) (end 95.613028 90.8762) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70118)) + (segment (start 95.613028 90.8762) (end 95.115542 91.7794) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70115)) + (segment (start 95.115542 91.7794) (end 94.654828 92.701899) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70113)) + (segment (start 94.654828 92.701899) (end 94.231632 93.6422) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70111)) + (segment (start 94.231632 93.6422) (end 93.846642 94.59878) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7010E)) + (segment (start 93.846642 94.59878) (end 93.500482 95.570086) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7010C)) + (segment (start 93.500482 95.570086) (end 93.193713 96.554543) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7010A)) + (segment (start 93.193713 96.554543) (end 92.926832 97.550553) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70107)) + (segment (start 92.926832 97.550553) (end 92.700274 98.556502) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70105)) + (segment (start 92.700274 98.556502) (end 92.514405 99.570758) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70103)) + (segment (start 92.514405 99.570758) (end 92.369526 100.591675) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70100)) + (segment (start 92.369526 100.591675) (end 92.265873 101.617598) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700FE)) + (segment (start 92.265873 101.617598) (end 92.203614 102.646863) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700FC)) + (segment (start 92.203614 102.646863) (end 92.18285 103.6778) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700FA)) + (segment (start 92.18285 103.6778) (end 92.203614 104.708737) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700F7)) + (segment (start 92.203614 104.708737) (end 92.265873 105.738002) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700F5)) + (segment (start 92.265873 105.738002) (end 92.369526 106.763925) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700F3)) + (segment (start 92.369526 106.763925) (end 92.514405 107.784842) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700F0)) + (segment (start 92.514405 107.784842) (end 92.700274 108.799098) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700EE)) + (segment (start 92.700274 108.799098) (end 92.926832 109.805047) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700EC)) + (segment (start 92.926832 109.805047) (end 93.193713 110.801057) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700E9)) + (segment (start 93.193713 110.801057) (end 93.500482 111.785514) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700E7)) + (segment (start 93.500482 111.785514) (end 93.846642 112.75682) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700E5)) + (segment (start 93.846642 112.75682) (end 94.231632 113.7134) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700E2)) + (segment (start 94.231632 113.7134) (end 94.654828 114.653701) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700E0)) + (segment (start 94.654828 114.653701) (end 95.115542 115.5762) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700DE)) + (segment (start 95.115542 115.5762) (end 95.613028 116.4794) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700DC)) + (segment (start 95.613028 116.4794) (end 96.146479 117.361835) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700D9)) + (segment (start 96.146479 117.361835) (end 96.715029 118.222075) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700D7)) + (segment (start 96.715029 118.222075) (end 97.317757 119.058724) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700D5)) + (segment (start 97.317757 119.058724) (end 97.953684 119.870425) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700D2)) + (segment (start 97.953684 119.870425) (end 98.62178 120.655862) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700D0)) + (segment (start 98.62178 120.655862) (end 99.32096 121.41376) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700CE)) + (segment (start 99.32096 121.41376) (end 100.05009 122.14289) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700CB)) + (segment (start 100.05009 122.14289) (end 100.807988 122.84207) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700C9)) + (segment (start 100.807988 122.84207) (end 101.593425 123.510166) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700C7)) + (segment (start 101.593425 123.510166) (end 102.405126 124.146093) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700C4)) + (segment (start 102.405126 124.146093) (end 103.241775 124.748821) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700C2)) + (segment (start 103.241775 124.748821) (end 104.102015 125.317371) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700C0)) + (segment (start 104.102015 125.317371) (end 104.98445 125.850822) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700BE)) + (segment (start 104.98445 125.850822) (end 105.88765 126.348308) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700BB)) + (segment (start 105.88765 126.348308) (end 106.810149 126.809022) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700B9)) + (segment (start 106.810149 126.809022) (end 107.75045 127.232218) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700B7)) + (segment (start 107.75045 127.232218) (end 108.70703 127.617208) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700B4)) + (segment (start 108.70703 127.617208) (end 109.678336 127.963368) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700B2)) + (segment (start 109.678336 127.963368) (end 110.662793 128.270137) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700B0)) + (segment (start 110.662793 128.270137) (end 111.658803 128.537018) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700AD)) + (segment (start 111.658803 128.537018) (end 112.664752 128.763576) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700AB)) + (segment (start 112.664752 128.763576) (end 113.679008 128.949445) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700A9)) + (segment (start 113.679008 128.949445) (end 114.699925 129.094324) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700A6)) + (segment (start 114.699925 129.094324) (end 115.725848 129.197977) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700A4)) + (segment (start 115.725848 129.197977) (end 116.755113 129.260236) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700A2)) + (segment (start 116.755113 129.260236) (end 117.78605 129.281) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E700A0)) + (segment (start 117.78605 129.281) (end 117.78605 129.281) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70734)) + (segment (start 117.78605 129.281) (end 118.793071 129.260454) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70731)) + (segment (start 118.793071 129.260454) (end 119.798416 129.19885) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7072F)) + (segment (start 119.798416 129.19885) (end 120.800412 129.096291) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7072C)) + (segment (start 120.800412 129.096291) (end 121.797391 128.952947) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7072A)) + (segment (start 121.797391 128.952947) (end 122.787693 128.769057) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70728)) + (segment (start 122.787693 128.769057) (end 123.76967 128.544927) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70725)) + (segment (start 123.76967 128.544927) (end 124.741689 128.28093) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70723)) + (segment (start 124.741689 128.28093) (end 125.70213 127.977506) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70721)) + (segment (start 125.70213 127.977506) (end 126.649396 127.635159) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7071E)) + (segment (start 126.649396 127.635159) (end 127.581909 127.254459) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7071C)) + (segment (start 127.581909 127.254459) (end 128.498119 126.83604) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7071A)) + (segment (start 128.498119 126.83604) (end 129.396499 126.380599) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70717)) + (segment (start 129.396499 126.380599) (end 130.275555 125.888893) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70715)) + (segment (start 130.275555 125.888893) (end 131.133823 125.36174) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70713)) + (segment (start 131.133823 125.36174) (end 131.969875 124.800019) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70710)) + (segment (start 131.969875 124.800019) (end 132.78232 124.204664) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7070E)) + (segment (start 132.78232 124.204664) (end 133.569805 123.576666) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7070C)) + (segment (start 133.569805 123.576666) (end 134.331019 122.91707) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70709)) + (segment (start 134.331019 122.91707) (end 135.064696 122.226974) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70707)) + (segment (start 135.064696 122.226974) (end 135.769614 121.507527) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70705)) + (segment (start 135.769614 121.507527) (end 136.4446 120.759926) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70702)) + (segment (start 136.4446 120.759926) (end 137.088531 119.985415) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70700)) + (segment (start 137.088531 119.985415) (end 137.700335 119.185284) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706FE)) + (segment (start 137.700335 119.185284) (end 138.278994 118.360864) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706FB)) + (segment (start 138.278994 118.360864) (end 138.823544 117.513527) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706F9)) + (segment (start 138.823544 117.513527) (end 139.333079 116.644685) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706F7)) + (segment (start 139.333079 116.644685) (end 139.806751 115.755782) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706F4)) + (segment (start 139.806751 115.755782) (end 140.243772 114.848298) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706F2)) + (segment (start 140.243772 114.848298) (end 140.643415 113.923744) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706F0)) + (segment (start 140.643415 113.923744) (end 141.005013 112.983659) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706ED)) + (segment (start 141.005013 112.983659) (end 141.327966 112.029607) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706EB)) + (segment (start 141.327966 112.029607) (end 141.611736 111.063176) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706E9)) + (segment (start 141.611736 111.063176) (end 141.85585 110.085975) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706E6)) + (segment (start 141.85585 110.085975) (end 142.059903 109.09963) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706E4)) + (segment (start 142.059903 109.09963) (end 142.223554 108.105783) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706E2)) + (segment (start 142.223554 108.105783) (end 142.346531 107.106087) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706DF)) + (segment (start 142.346531 107.106087) (end 142.428629 106.102208) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706DD)) + (segment (start 142.428629 106.102208) (end 142.469713 105.095815) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706DB)) + (segment (start 142.469713 105.095815) (end 142.469713 104.088585) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706D8)) + (segment (start 142.469713 104.088585) (end 142.428629 103.082192) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706D6)) + (segment (start 142.428629 103.082192) (end 142.346531 102.078313) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706D4)) + (segment (start 142.346531 102.078313) (end 142.223554 101.078617) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706D1)) + (segment (start 142.223554 101.078617) (end 142.059903 100.08477) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706CF)) + (segment (start 142.059903 100.08477) (end 141.85585 99.098425) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706CD)) + (segment (start 141.85585 99.098425) (end 141.611736 98.121224) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706CA)) + (segment (start 141.611736 98.121224) (end 141.327966 97.154793) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706C8)) + (segment (start 141.327966 97.154793) (end 141.005013 96.200741) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706C6)) + (segment (start 141.005013 96.200741) (end 140.643415 95.260656) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706C3)) + (segment (start 140.643415 95.260656) (end 140.243772 94.336102) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706C1)) + (segment (start 140.243772 94.336102) (end 139.806751 93.428618) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706BF)) + (segment (start 139.806751 93.428618) (end 139.333079 92.539715) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706BC)) + (segment (start 139.333079 92.539715) (end 138.823544 91.670873) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706BA)) + (segment (start 138.823544 91.670873) (end 138.278994 90.823536) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706B8)) + (segment (start 138.278994 90.823536) (end 137.700335 89.999116) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706B5)) + (segment (start 137.700335 89.999116) (end 137.088531 89.198985) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706B3)) + (segment (start 137.088531 89.198985) (end 136.4446 88.424474) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706B1)) + (segment (start 136.4446 88.424474) (end 135.769614 87.676873) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706AE)) + (segment (start 135.769614 87.676873) (end 135.064696 86.957426) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706AC)) + (segment (start 135.064696 86.957426) (end 134.331019 86.26733) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706AA)) + (segment (start 134.331019 86.26733) (end 133.569805 85.607734) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706A7)) + (segment (start 133.569805 85.607734) (end 132.78232 84.979736) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706A5)) + (segment (start 132.78232 84.979736) (end 131.969875 84.384381) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706A3)) + (segment (start 131.969875 84.384381) (end 131.133823 83.82266) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E706A0)) + (segment (start 131.133823 83.82266) (end 130.275555 83.295507) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7069E)) + (segment (start 130.275555 83.295507) (end 129.396499 82.803801) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7069C)) + (segment (start 129.396499 82.803801) (end 128.498119 82.34836) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70699)) + (segment (start 128.498119 82.34836) (end 127.581909 81.929941) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70697)) + (segment (start 127.581909 81.929941) (end 126.649396 81.549241) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70695)) + (segment (start 126.649396 81.549241) (end 125.70213 81.206894) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70692)) + (segment (start 125.70213 81.206894) (end 124.741689 80.90347) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70690)) + (segment (start 124.741689 80.90347) (end 123.76967 80.639473) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7068E)) + (segment (start 123.76967 80.639473) (end 122.787693 80.415343) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7068B)) + (segment (start 122.787693 80.415343) (end 121.797391 80.231453) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70689)) + (segment (start 121.797391 80.231453) (end 120.800412 80.088109) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70687)) + (segment (start 120.800412 80.088109) (end 119.798416 79.98555) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70684)) + (segment (start 119.798416 79.98555) (end 117.78605 79.9034) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70680)) + (segment (start 117.78605 79.9034) (end 117.78605 79.9034) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70CB4)) + (segment (start 117.78605 79.9034) (end 116.803574 79.923709) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70CB1)) + (segment (start 116.803574 79.923709) (end 115.822776 79.984602) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70CAF)) + (segment (start 115.822776 79.984602) (end 114.845332 80.085974) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70CAC)) + (segment (start 114.845332 80.085974) (end 113.872912 80.227652) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70CAA)) + (segment (start 113.872912 80.227652) (end 112.907178 80.409394) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70CA8)) + (segment (start 112.907178 80.409394) (end 111.94978 80.63089) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70CA5)) + (segment (start 111.94978 80.63089) (end 111.002352 80.891762) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70CA3)) + (segment (start 111.002352 80.891762) (end 110.066515 81.191563) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70CA1)) + (segment (start 110.066515 81.191563) (end 109.143866 81.529781) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C9E)) + (segment (start 109.143866 81.529781) (end 108.235982 81.905839) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C9C)) + (segment (start 108.235982 81.905839) (end 107.344415 82.319093) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C99)) + (segment (start 107.344415 82.319093) (end 106.470686 82.768839) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C97)) + (segment (start 106.470686 82.768839) (end 105.61629 83.254308) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C95)) + (segment (start 105.61629 83.254308) (end 104.782686 83.774669) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C92)) + (segment (start 104.782686 83.774669) (end 103.971297 84.329035) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C90)) + (segment (start 103.971297 84.329035) (end 103.183511 84.916458) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C8E)) + (segment (start 103.183511 84.916458) (end 102.420673 85.535934) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C8B)) + (segment (start 102.420673 85.535934) (end 101.684087 86.186405) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C89)) + (segment (start 101.684087 86.186405) (end 100.975011 86.866761) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C86)) + (segment (start 100.975011 86.866761) (end 100.294655 87.575837) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C84)) + (segment (start 100.294655 87.575837) (end 99.644184 88.312423) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C82)) + (segment (start 99.644184 88.312423) (end 99.024708 89.075261) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C7F)) + (segment (start 99.024708 89.075261) (end 98.437285 89.863047) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C7D)) + (segment (start 98.437285 89.863047) (end 97.882919 90.674436) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C7B)) + (segment (start 97.882919 90.674436) (end 97.362558 91.50804) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C78)) + (segment (start 97.362558 91.50804) (end 96.877089 92.362436) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C76)) + (segment (start 96.877089 92.362436) (end 96.427343 93.236165) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C74)) + (segment (start 96.427343 93.236165) (end 96.014089 94.127732) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C71)) + (segment (start 96.014089 94.127732) (end 95.638031 95.035616) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C6F)) + (segment (start 95.638031 95.035616) (end 95.299813 95.958265) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C6C)) + (segment (start 95.299813 95.958265) (end 95.000012 96.894102) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C6A)) + (segment (start 95.000012 96.894102) (end 94.73914 97.84153) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C68)) + (segment (start 94.73914 97.84153) (end 94.517644 98.798928) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C65)) + (segment (start 94.517644 98.798928) (end 94.335902 99.764662) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C63)) + (segment (start 94.335902 99.764662) (end 94.194224 100.737082) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C61)) + (segment (start 94.194224 100.737082) (end 94.092852 101.714526) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C5E)) + (segment (start 94.092852 101.714526) (end 94.031959 102.695324) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C5C)) + (segment (start 94.031959 102.695324) (end 94.01165 103.6778) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C59)) + (segment (start 94.01165 103.6778) (end 94.031959 104.660276) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C57)) + (segment (start 94.031959 104.660276) (end 94.092852 105.641074) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C55)) + (segment (start 94.092852 105.641074) (end 94.194224 106.618518) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C52)) + (segment (start 94.194224 106.618518) (end 94.335902 107.590938) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C50)) + (segment (start 94.335902 107.590938) (end 94.517644 108.556672) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C4E)) + (segment (start 94.517644 108.556672) (end 94.73914 109.51407) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C4B)) + (segment (start 94.73914 109.51407) (end 95.000012 110.461498) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C49)) + (segment (start 95.000012 110.461498) (end 95.299813 111.397335) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C47)) + (segment (start 95.299813 111.397335) (end 95.638031 112.319984) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C44)) + (segment (start 95.638031 112.319984) (end 96.014089 113.227868) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C42)) + (segment (start 96.014089 113.227868) (end 96.427343 114.119435) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C3F)) + (segment (start 96.427343 114.119435) (end 96.877089 114.993164) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C3D)) + (segment (start 96.877089 114.993164) (end 97.362558 115.84756) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C3B)) + (segment (start 97.362558 115.84756) (end 97.882919 116.681164) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C38)) + (segment (start 97.882919 116.681164) (end 98.437285 117.492553) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C36)) + (segment (start 98.437285 117.492553) (end 99.024708 118.280339) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C34)) + (segment (start 99.024708 118.280339) (end 99.644184 119.043177) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C31)) + (segment (start 99.644184 119.043177) (end 100.294655 119.779763) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C2F)) + (segment (start 100.294655 119.779763) (end 100.975011 120.488839) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C2C)) + (segment (start 100.975011 120.488839) (end 101.684087 121.169195) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C2A)) + (segment (start 101.684087 121.169195) (end 102.420673 121.819666) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C28)) + (segment (start 102.420673 121.819666) (end 103.183511 122.439142) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C25)) + (segment (start 103.183511 122.439142) (end 103.971297 123.026565) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C23)) + (segment (start 103.971297 123.026565) (end 104.782686 123.580931) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C21)) + (segment (start 104.782686 123.580931) (end 105.61629 124.101292) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C1E)) + (segment (start 105.61629 124.101292) (end 106.470686 124.586761) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C1C)) + (segment (start 106.470686 124.586761) (end 107.344415 125.036507) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C1A)) + (segment (start 107.344415 125.036507) (end 108.235982 125.449761) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C17)) + (segment (start 108.235982 125.449761) (end 109.143866 125.825819) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C15)) + (segment (start 109.143866 125.825819) (end 110.066515 126.164037) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C12)) + (segment (start 110.066515 126.164037) (end 111.002352 126.463838) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C10)) + (segment (start 111.002352 126.463838) (end 111.94978 126.72471) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C0E)) + (segment (start 111.94978 126.72471) (end 112.907178 126.946206) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C0B)) + (segment (start 112.907178 126.946206) (end 113.872912 127.127948) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C09)) + (segment (start 113.872912 127.127948) (end 114.845332 127.269626) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C07)) + (segment (start 114.845332 127.269626) (end 115.822776 127.370998) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C04)) + (segment (start 115.822776 127.370998) (end 117.78605 127.4522) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E70C00)) + (segment (start 117.78605 127.4522) (end 117.78605 127.4522) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71234)) + (segment (start 117.78605 127.4522) (end 118.756256 127.431602) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71231)) + (segment (start 118.756256 127.431602) (end 119.724713 127.369847) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7122F)) + (segment (start 119.724713 127.369847) (end 120.689677 127.267044) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7122C)) + (segment (start 120.689677 127.267044) (end 121.649409 127.12338) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7122A)) + (segment (start 121.649409 127.12338) (end 122.602178 126.939113) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71227)) + (segment (start 122.602178 126.939113) (end 123.546268 126.714575) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71225)) + (segment (start 123.546268 126.714575) (end 124.479979 126.450172) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71222)) + (segment (start 124.479979 126.450172) (end 125.401626 126.146378) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71220)) + (segment (start 125.401626 126.146378) (end 126.309549 125.803743) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7121E)) + (segment (start 126.309549 125.803743) (end 127.202113 125.422883) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7121B)) + (segment (start 127.202113 125.422883) (end 128.077708 125.004485) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71219)) + (segment (start 128.077708 125.004485) (end 128.934756 124.549303) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71216)) + (segment (start 128.934756 124.549303) (end 129.771715 124.058156) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71214)) + (segment (start 129.771715 124.058156) (end 130.587074 123.531931) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71211)) + (segment (start 130.587074 123.531931) (end 131.379364 122.971574) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7120F)) + (segment (start 131.379364 122.971574) (end 132.147159 122.378097) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7120D)) + (segment (start 132.147159 122.378097) (end 132.889074 121.752569) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7120A)) + (segment (start 132.889074 121.752569) (end 133.603773 121.096116) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71208)) + (segment (start 133.603773 121.096116) (end 134.289966 120.409923) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71205)) + (segment (start 134.289966 120.409923) (end 134.946419 119.695224) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71203)) + (segment (start 134.946419 119.695224) (end 135.571947 118.953309) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71200)) + (segment (start 135.571947 118.953309) (end 136.165424 118.185514) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711FE)) + (segment (start 136.165424 118.185514) (end 136.725781 117.393224) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711FC)) + (segment (start 136.725781 117.393224) (end 137.252006 116.577865) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711F9)) + (segment (start 137.252006 116.577865) (end 137.743153 115.740906) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711F7)) + (segment (start 137.743153 115.740906) (end 138.198335 114.883858) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711F4)) + (segment (start 138.198335 114.883858) (end 138.616733 114.008263) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711F2)) + (segment (start 138.616733 114.008263) (end 138.997593 113.115699) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711EF)) + (segment (start 138.997593 113.115699) (end 139.340228 112.207776) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711ED)) + (segment (start 139.340228 112.207776) (end 139.644022 111.286129) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711EB)) + (segment (start 139.644022 111.286129) (end 139.908425 110.352418) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711E8)) + (segment (start 139.908425 110.352418) (end 140.132963 109.408328) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711E6)) + (segment (start 140.132963 109.408328) (end 140.31723 108.455559) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711E3)) + (segment (start 140.31723 108.455559) (end 140.460894 107.495827) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711E1)) + (segment (start 140.460894 107.495827) (end 140.563697 106.530863) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711DE)) + (segment (start 140.563697 106.530863) (end 140.625452 105.562406) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711DC)) + (segment (start 140.625452 105.562406) (end 140.64605 104.5922) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711D9)) + (segment (start 140.64605 104.5922) (end 140.625452 103.621994) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711D7)) + (segment (start 140.625452 103.621994) (end 140.563697 102.653537) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711D5)) + (segment (start 140.563697 102.653537) (end 140.460894 101.688573) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711D2)) + (segment (start 140.460894 101.688573) (end 140.31723 100.728841) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711D0)) + (segment (start 140.31723 100.728841) (end 140.132963 99.776072) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711CD)) + (segment (start 140.132963 99.776072) (end 139.908425 98.831982) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711CB)) + (segment (start 139.908425 98.831982) (end 139.644022 97.898271) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711C8)) + (segment (start 139.644022 97.898271) (end 139.340228 96.976624) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711C6)) + (segment (start 139.340228 96.976624) (end 138.997593 96.068701) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711C4)) + (segment (start 138.997593 96.068701) (end 138.616733 95.176137) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711C1)) + (segment (start 138.616733 95.176137) (end 138.198335 94.300542) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711BF)) + (segment (start 138.198335 94.300542) (end 137.743153 93.443494) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711BC)) + (segment (start 137.743153 93.443494) (end 137.252006 92.606535) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711BA)) + (segment (start 137.252006 92.606535) (end 136.725781 91.791176) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711B7)) + (segment (start 136.725781 91.791176) (end 136.165424 90.998886) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711B5)) + (segment (start 136.165424 90.998886) (end 135.571947 90.231091) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711B3)) + (segment (start 135.571947 90.231091) (end 134.946419 89.489176) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711B0)) + (segment (start 134.946419 89.489176) (end 134.289966 88.774477) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711AE)) + (segment (start 134.289966 88.774477) (end 133.603773 88.088284) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711AB)) + (segment (start 133.603773 88.088284) (end 132.889074 87.431831) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711A9)) + (segment (start 132.889074 87.431831) (end 132.147159 86.806303) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711A6)) + (segment (start 132.147159 86.806303) (end 131.379364 86.212826) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711A4)) + (segment (start 131.379364 86.212826) (end 130.587074 85.652469) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E711A2)) + (segment (start 130.587074 85.652469) (end 129.771715 85.126244) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7119F)) + (segment (start 129.771715 85.126244) (end 128.934756 84.635097) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7119D)) + (segment (start 128.934756 84.635097) (end 128.077708 84.179915) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7119A)) + (segment (start 128.077708 84.179915) (end 127.202113 83.761517) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71198)) + (segment (start 127.202113 83.761517) (end 126.309549 83.380657) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71195)) + (segment (start 126.309549 83.380657) (end 125.401626 83.038022) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71193)) + (segment (start 125.401626 83.038022) (end 124.479979 82.734228) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71191)) + (segment (start 124.479979 82.734228) (end 123.546268 82.469825) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7118E)) + (segment (start 123.546268 82.469825) (end 122.602178 82.245287) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7118C)) + (segment (start 122.602178 82.245287) (end 121.649409 82.06102) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71189)) + (segment (start 121.649409 82.06102) (end 120.689677 81.917356) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71187)) + (segment (start 120.689677 81.917356) (end 119.724713 81.814553) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71184)) + (segment (start 119.724713 81.814553) (end 117.78605 81.7322) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71180)) + (segment (start 117.78605 81.7322) (end 117.78605 81.7322) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E717B4)) + (segment (start 117.78605 81.7322) (end 116.841901 81.752519) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E717B1)) + (segment (start 116.841901 81.752519) (end 115.899501 81.813439) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E717AF)) + (segment (start 115.899501 81.813439) (end 114.960594 81.914846) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E717AC)) + (segment (start 114.960594 81.914846) (end 114.026919 82.056554) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E717AA)) + (segment (start 114.026919 82.056554) (end 113.100205 82.238299) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E717A7)) + (segment (start 113.100205 82.238299) (end 112.182169 82.459745) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E717A5)) + (segment (start 112.182169 82.459745) (end 111.274509 82.720482) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E717A2)) + (segment (start 111.274509 82.720482) (end 110.378907 83.020027) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E717A0)) + (segment (start 110.378907 83.020027) (end 109.497022 83.357825) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7179D)) + (segment (start 109.497022 83.357825) (end 108.630486 83.733252) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7179B)) + (segment (start 108.630486 83.733252) (end 107.780904 84.145611) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71798)) + (segment (start 107.780904 84.145611) (end 106.949849 84.594139) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71796)) + (segment (start 106.949849 84.594139) (end 106.138861 85.078006) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71793)) + (segment (start 106.138861 85.078006) (end 105.34944 85.596315) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71791)) + (segment (start 105.34944 85.596315) (end 104.583049 86.148107) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7178F)) + (segment (start 104.583049 86.148107) (end 103.841107 86.73236) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7178C)) + (segment (start 103.841107 86.73236) (end 103.124988 87.347993) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7178A)) + (segment (start 103.124988 87.347993) (end 102.436017 87.993864) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71787)) + (segment (start 102.436017 87.993864) (end 101.775472 88.668778) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71785)) + (segment (start 101.775472 88.668778) (end 101.144574 89.371485) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71782)) + (segment (start 101.144574 89.371485) (end 100.544493 90.100685) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71780)) + (segment (start 100.544493 90.100685) (end 99.976338 90.855026) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7177D)) + (segment (start 99.976338 90.855026) (end 99.441164 91.633112) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7177B)) + (segment (start 99.441164 91.633112) (end 98.93996 92.433502) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71778)) + (segment (start 98.93996 92.433502) (end 98.473654 93.254714) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71776)) + (segment (start 98.473654 93.254714) (end 98.043111 94.095227) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71773)) + (segment (start 98.043111 94.095227) (end 97.649127 94.953484) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71771)) + (segment (start 97.649127 94.953484) (end 97.292432 95.827898) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7176E)) + (segment (start 97.292432 95.827898) (end 96.973686 96.716847) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7176C)) + (segment (start 96.973686 96.716847) (end 96.69348 97.618686) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7176A)) + (segment (start 96.69348 97.618686) (end 96.452333 98.531746) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71767)) + (segment (start 96.452333 98.531746) (end 96.250691 99.454335) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71765)) + (segment (start 96.250691 99.454335) (end 96.088927 100.384744) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71762)) + (segment (start 96.088927 100.384744) (end 95.967342 101.321252) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71760)) + (segment (start 95.967342 101.321252) (end 95.886159 102.262123) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7175D)) + (segment (start 95.886159 102.262123) (end 95.84553 103.205616) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7175B)) + (segment (start 95.84553 103.205616) (end 95.84553 104.149984) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71758)) + (segment (start 95.84553 104.149984) (end 95.886159 105.093477) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71756)) + (segment (start 95.886159 105.093477) (end 95.967342 106.034348) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71753)) + (segment (start 95.967342 106.034348) (end 96.088927 106.970856) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71751)) + (segment (start 96.088927 106.970856) (end 96.250691 107.901265) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7174E)) + (segment (start 96.250691 107.901265) (end 96.452333 108.823854) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7174C)) + (segment (start 96.452333 108.823854) (end 96.69348 109.736914) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71749)) + (segment (start 96.69348 109.736914) (end 96.973686 110.638753) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71747)) + (segment (start 96.973686 110.638753) (end 97.292432 111.527702) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71745)) + (segment (start 97.292432 111.527702) (end 97.649127 112.402116) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71742)) + (segment (start 97.649127 112.402116) (end 98.043111 113.260373) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71740)) + (segment (start 98.043111 113.260373) (end 98.473654 114.100886) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7173D)) + (segment (start 98.473654 114.100886) (end 98.93996 114.922098) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7173B)) + (segment (start 98.93996 114.922098) (end 99.441164 115.722488) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71738)) + (segment (start 99.441164 115.722488) (end 99.976338 116.500574) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71736)) + (segment (start 99.976338 116.500574) (end 100.544493 117.254915) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71733)) + (segment (start 100.544493 117.254915) (end 101.144574 117.984115) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71731)) + (segment (start 101.144574 117.984115) (end 101.775472 118.686822) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7172E)) + (segment (start 101.775472 118.686822) (end 102.436017 119.361736) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7172C)) + (segment (start 102.436017 119.361736) (end 103.124988 120.007607) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71729)) + (segment (start 103.124988 120.007607) (end 103.841107 120.62324) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71727)) + (segment (start 103.841107 120.62324) (end 104.583049 121.207493) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71724)) + (segment (start 104.583049 121.207493) (end 105.34944 121.759285) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71722)) + (segment (start 105.34944 121.759285) (end 106.138861 122.277594) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71720)) + (segment (start 106.138861 122.277594) (end 106.949849 122.761461) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7171D)) + (segment (start 106.949849 122.761461) (end 107.780904 123.209989) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7171B)) + (segment (start 107.780904 123.209989) (end 108.630486 123.622348) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71718)) + (segment (start 108.630486 123.622348) (end 109.497022 123.997775) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71716)) + (segment (start 109.497022 123.997775) (end 110.378907 124.335573) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71713)) + (segment (start 110.378907 124.335573) (end 111.274509 124.635118) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71711)) + (segment (start 111.274509 124.635118) (end 112.182169 124.895855) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7170E)) + (segment (start 112.182169 124.895855) (end 113.100205 125.117301) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E7170C)) + (segment (start 113.100205 125.117301) (end 114.026919 125.299046) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71709)) + (segment (start 114.026919 125.299046) (end 114.960594 125.440754) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71707)) + (segment (start 114.960594 125.440754) (end 115.899501 125.542161) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71704)) + (segment (start 115.899501 125.542161) (end 116.841901 125.603081) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71702)) + (segment (start 116.841901 125.603081) (end 117.78605 125.6234) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71700)) + (segment (start 117.78605 125.6234) (end 117.78605 125.6234) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71D34)) + (segment (start 117.78605 125.6234) (end 118.71633 125.602815) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71D31)) + (segment (start 118.71633 125.602815) (end 119.64479 125.541101) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71D2E)) + (segment (start 119.64479 125.541101) (end 120.56961 125.438379) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71D2C)) + (segment (start 120.56961 125.438379) (end 121.488982 125.294849) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71D29)) + (segment (start 121.488982 125.294849) (end 122.401105 125.110793) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71D27)) + (segment (start 122.401105 125.110793) (end 123.304194 124.88657) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71D24)) + (segment (start 123.304194 124.88657) (end 124.196481 124.622621) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71D22)) + (segment (start 124.196481 124.622621) (end 125.076219 124.31946) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71D1F)) + (segment (start 125.076219 124.31946) (end 125.941687 123.977683) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71D1D)) + (segment (start 125.941687 123.977683) (end 126.791189 123.597958) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71D1A)) + (segment (start 126.791189 123.597958) (end 127.623063 123.181029) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71D18)) + (segment (start 127.623063 123.181029) (end 128.435681 122.72771) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71D15)) + (segment (start 128.435681 122.72771) (end 129.227452 122.238891) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71D13)) + (segment (start 129.227452 122.238891) (end 129.996825 121.715527) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71D10)) + (segment (start 129.996825 121.715527) (end 130.742296 121.158644) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71D0D)) + (segment (start 130.742296 121.158644) (end 131.462404 120.569331) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71D0B)) + (segment (start 131.462404 120.569331) (end 132.15574 119.948742) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71D08)) + (segment (start 132.15574 119.948742) (end 132.820946 119.298092) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71D06)) + (segment (start 132.820946 119.298092) (end 133.456722 118.618655) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71D03)) + (segment (start 133.456722 118.618655) (end 134.061821 117.91176) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71D01)) + (segment (start 134.061821 117.91176) (end 134.635059 117.178791) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CFE)) + (segment (start 134.635059 117.178791) (end 135.175315 116.421183) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CFC)) + (segment (start 135.175315 116.421183) (end 135.68153 115.64042) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CF9)) + (segment (start 135.68153 115.64042) (end 136.152714 114.83803) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CF7)) + (segment (start 136.152714 114.83803) (end 136.587945 114.015582) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CF4)) + (segment (start 136.587945 114.015582) (end 136.98637 113.174688) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CF2)) + (segment (start 136.98637 113.174688) (end 137.347209 112.316993) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CEF)) + (segment (start 137.347209 112.316993) (end 137.669757 111.444177) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CED)) + (segment (start 137.669757 111.444177) (end 137.953381 110.557948) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CEA)) + (segment (start 137.953381 110.557948) (end 138.197526 109.66004) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CE7)) + (segment (start 138.197526 109.66004) (end 138.401716 108.752212) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CE5)) + (segment (start 138.401716 108.752212) (end 138.565549 107.83624) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CE2)) + (segment (start 138.565549 107.83624) (end 138.688705 106.913918) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CE0)) + (segment (start 138.688705 106.913918) (end 138.770944 105.987051) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CDD)) + (segment (start 138.770944 105.987051) (end 138.812103 105.057454) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CDB)) + (segment (start 138.812103 105.057454) (end 138.812103 104.126946) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CD8)) + (segment (start 138.812103 104.126946) (end 138.770944 103.197349) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CD6)) + (segment (start 138.770944 103.197349) (end 138.688705 102.270482) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CD3)) + (segment (start 138.688705 102.270482) (end 138.565549 101.34816) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CD1)) + (segment (start 138.565549 101.34816) (end 138.401716 100.432188) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CCE)) + (segment (start 138.401716 100.432188) (end 138.197526 99.52436) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CCC)) + (segment (start 138.197526 99.52436) (end 137.953381 98.626452) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CC9)) + (segment (start 137.953381 98.626452) (end 137.669757 97.740223) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CC6)) + (segment (start 137.669757 97.740223) (end 137.347209 96.867407) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CC4)) + (segment (start 137.347209 96.867407) (end 136.98637 96.009712) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CC1)) + (segment (start 136.98637 96.009712) (end 136.587945 95.168818) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CBF)) + (segment (start 136.587945 95.168818) (end 136.152714 94.34637) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CBC)) + (segment (start 136.152714 94.34637) (end 135.68153 93.54398) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CBA)) + (segment (start 135.68153 93.54398) (end 135.175315 92.763217) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CB7)) + (segment (start 135.175315 92.763217) (end 134.635059 92.005609) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CB5)) + (segment (start 134.635059 92.005609) (end 134.061821 91.27264) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CB2)) + (segment (start 134.061821 91.27264) (end 133.456722 90.565745) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CB0)) + (segment (start 133.456722 90.565745) (end 132.820946 89.886308) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CAD)) + (segment (start 132.820946 89.886308) (end 132.15574 89.235658) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CAB)) + (segment (start 132.15574 89.235658) (end 131.462404 88.615069) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CA8)) + (segment (start 131.462404 88.615069) (end 130.742296 88.025756) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CA6)) + (segment (start 130.742296 88.025756) (end 129.996825 87.468873) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CA3)) + (segment (start 129.996825 87.468873) (end 129.227452 86.945509) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71CA0)) + (segment (start 129.227452 86.945509) (end 128.435681 86.45669) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71C9E)) + (segment (start 128.435681 86.45669) (end 127.623063 86.003371) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71C9B)) + (segment (start 127.623063 86.003371) (end 126.791189 85.586442) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71C99)) + (segment (start 126.791189 85.586442) (end 125.941687 85.206717) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71C96)) + (segment (start 125.941687 85.206717) (end 125.076219 84.86494) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71C94)) + (segment (start 125.076219 84.86494) (end 124.196481 84.561779) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71C91)) + (segment (start 124.196481 84.561779) (end 123.304194 84.29783) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71C8F)) + (segment (start 123.304194 84.29783) (end 122.401105 84.073607) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71C8C)) + (segment (start 122.401105 84.073607) (end 121.488982 83.889551) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71C8A)) + (segment (start 121.488982 83.889551) (end 120.56961 83.746021) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71C87)) + (segment (start 120.56961 83.746021) (end 119.64479 83.643299) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71C85)) + (segment (start 119.64479 83.643299) (end 118.71633 83.581585) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71C82)) + (segment (start 118.71633 83.581585) (end 117.78605 83.561) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E71C80)) + (segment (start 117.78605 83.561) (end 117.78605 83.561) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598842B4)) + (segment (start 117.78605 123.7946) (end 117.78605 123.7946) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884834)) + (segment (start 117.78605 123.7946) (end 118.672883 123.774111) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884831)) + (segment (start 118.672883 123.774111) (end 119.557824 123.712686) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988482E)) + (segment (start 119.557824 123.712686) (end 120.438984 123.610457) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988482C)) + (segment (start 120.438984 123.610457) (end 121.314482 123.467643) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884829)) + (segment (start 121.314482 123.467643) (end 122.18245 123.284547) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884826)) + (segment (start 122.18245 123.284547) (end 123.041036 123.061561) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884824)) + (segment (start 123.041036 123.061561) (end 123.888408 122.79916) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884821)) + (segment (start 123.888408 122.79916) (end 124.722757 122.497905) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988481E)) + (segment (start 124.722757 122.497905) (end 125.542303 122.158438) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988481C)) + (segment (start 125.542303 122.158438) (end 126.345296 121.781484) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884819)) + (segment (start 126.345296 121.781484) (end 127.130024 121.367847) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884816)) + (segment (start 127.130024 121.367847) (end 127.894811 120.91841) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884814)) + (segment (start 127.894811 120.91841) (end 128.638025 120.434132) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884811)) + (segment (start 128.638025 120.434132) (end 129.358081 119.916046) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988480E)) + (segment (start 129.358081 119.916046) (end 130.053442 119.365259) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988480C)) + (segment (start 130.053442 119.365259) (end 130.722623 118.782945) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884809)) + (segment (start 130.722623 118.782945) (end 131.364197 118.170347) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884807)) + (segment (start 131.364197 118.170347) (end 131.976795 117.528773) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884804)) + (segment (start 131.976795 117.528773) (end 132.559109 116.859592) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884801)) + (segment (start 132.559109 116.859592) (end 133.109896 116.164231) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847FF)) + (segment (start 133.109896 116.164231) (end 133.627982 115.444175) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847FC)) + (segment (start 133.627982 115.444175) (end 134.11226 114.700961) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847F9)) + (segment (start 134.11226 114.700961) (end 134.561697 113.936174) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847F7)) + (segment (start 134.561697 113.936174) (end 134.975334 113.151446) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847F4)) + (segment (start 134.975334 113.151446) (end 135.352288 112.348453) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847F1)) + (segment (start 135.352288 112.348453) (end 135.691755 111.528907) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847EF)) + (segment (start 135.691755 111.528907) (end 135.99301 110.694558) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847EC)) + (segment (start 135.99301 110.694558) (end 136.255411 109.847186) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847E9)) + (segment (start 136.255411 109.847186) (end 136.478397 108.9886) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847E7)) + (segment (start 136.478397 108.9886) (end 136.661493 108.120632) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847E4)) + (segment (start 136.661493 108.120632) (end 136.804307 107.245134) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847E1)) + (segment (start 136.804307 107.245134) (end 136.906536 106.363974) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847DF)) + (segment (start 136.906536 106.363974) (end 136.967961 105.479033) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847DC)) + (segment (start 136.967961 105.479033) (end 136.98845 104.5922) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847DA)) + (segment (start 136.98845 104.5922) (end 136.967961 103.705367) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847D7)) + (segment (start 136.967961 103.705367) (end 136.906536 102.820426) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847D4)) + (segment (start 136.906536 102.820426) (end 136.804307 101.939266) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847D2)) + (segment (start 136.804307 101.939266) (end 136.661493 101.063768) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847CF)) + (segment (start 136.661493 101.063768) (end 136.478397 100.1958) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847CC)) + (segment (start 136.478397 100.1958) (end 136.255411 99.337214) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847CA)) + (segment (start 136.255411 99.337214) (end 135.99301 98.489842) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847C7)) + (segment (start 135.99301 98.489842) (end 135.691755 97.655493) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847C4)) + (segment (start 135.691755 97.655493) (end 135.352288 96.835947) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847C2)) + (segment (start 135.352288 96.835947) (end 134.975334 96.032954) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847BF)) + (segment (start 134.975334 96.032954) (end 134.561697 95.248226) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847BC)) + (segment (start 134.561697 95.248226) (end 134.11226 94.483439) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847BA)) + (segment (start 134.11226 94.483439) (end 133.627982 93.740225) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847B7)) + (segment (start 133.627982 93.740225) (end 133.109896 93.020169) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847B4)) + (segment (start 133.109896 93.020169) (end 132.559109 92.324808) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847B2)) + (segment (start 132.559109 92.324808) (end 131.976795 91.655627) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847AF)) + (segment (start 131.976795 91.655627) (end 131.364197 91.014053) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847AD)) + (segment (start 131.364197 91.014053) (end 130.722623 90.401455) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847AA)) + (segment (start 130.722623 90.401455) (end 130.053442 89.819141) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847A7)) + (segment (start 130.053442 89.819141) (end 129.358081 89.268354) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847A5)) + (segment (start 129.358081 89.268354) (end 128.638025 88.750268) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598847A2)) + (segment (start 128.638025 88.750268) (end 127.894811 88.26599) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988479F)) + (segment (start 127.894811 88.26599) (end 127.130024 87.816553) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988479D)) + (segment (start 127.130024 87.816553) (end 126.345296 87.402916) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988479A)) + (segment (start 126.345296 87.402916) (end 125.542303 87.025962) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884797)) + (segment (start 125.542303 87.025962) (end 124.722757 86.686495) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884795)) + (segment (start 124.722757 86.686495) (end 123.888408 86.38524) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884792)) + (segment (start 123.888408 86.38524) (end 123.041036 86.122839) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988478F)) + (segment (start 123.041036 86.122839) (end 122.18245 85.899853) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988478D)) + (segment (start 122.18245 85.899853) (end 121.314482 85.716757) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988478A)) + (segment (start 121.314482 85.716757) (end 120.438984 85.573943) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884787)) + (segment (start 120.438984 85.573943) (end 119.557824 85.471714) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884785)) + (segment (start 119.557824 85.471714) (end 118.672883 85.410289) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884782)) + (segment (start 118.672883 85.410289) (end 117.78605 85.3898) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884780)) + (segment (start 117.78605 85.3898) (end 117.78605 85.3898) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884DB4)) + (segment (start 117.78605 85.3898) (end 116.915872 85.410514) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884DB1)) + (segment (start 116.915872 85.410514) (end 116.047665 85.472609) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884DAE)) + (segment (start 116.047665 85.472609) (end 115.183396 85.575945) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884DAB)) + (segment (start 115.183396 85.575945) (end 114.325023 85.720288) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884DA9)) + (segment (start 114.325023 85.720288) (end 113.474491 85.90531) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884DA6)) + (segment (start 113.474491 85.90531) (end 112.633725 86.130592) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884DA3)) + (segment (start 112.633725 86.130592) (end 111.804631 86.395625) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884DA0)) + (segment (start 111.804631 86.395625) (end 110.989087 86.699807) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D9E)) + (segment (start 110.989087 86.699807) (end 110.18894 87.04245) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D9B)) + (segment (start 110.18894 87.04245) (end 109.406003 87.422777) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D98)) + (segment (start 109.406003 87.422777) (end 108.64205 87.839927) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D96)) + (segment (start 108.64205 87.839927) (end 107.898811 88.292955) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D93)) + (segment (start 107.898811 88.292955) (end 107.177969 88.780835) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D90)) + (segment (start 107.177969 88.780835) (end 106.481158 89.302461) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D8D)) + (segment (start 106.481158 89.302461) (end 105.809957 89.856652) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D8B)) + (segment (start 105.809957 89.856652) (end 105.165885 90.442152) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D88)) + (segment (start 105.165885 90.442152) (end 104.550402 91.057635) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D85)) + (segment (start 104.550402 91.057635) (end 103.964902 91.701707) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D82)) + (segment (start 103.964902 91.701707) (end 103.410711 92.372908) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D80)) + (segment (start 103.410711 92.372908) (end 102.889085 93.069719) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D7D)) + (segment (start 102.889085 93.069719) (end 102.401205 93.790561) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D7A)) + (segment (start 102.401205 93.790561) (end 101.948177 94.5338) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D78)) + (segment (start 101.948177 94.5338) (end 101.531027 95.297753) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D75)) + (segment (start 101.531027 95.297753) (end 101.1507 96.08069) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D72)) + (segment (start 101.1507 96.08069) (end 100.808057 96.880837) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D6F)) + (segment (start 100.808057 96.880837) (end 100.503875 97.696381) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D6D)) + (segment (start 100.503875 97.696381) (end 100.238842 98.525475) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D6A)) + (segment (start 100.238842 98.525475) (end 100.01356 99.366241) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D67)) + (segment (start 100.01356 99.366241) (end 99.828538 100.216773) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D64)) + (segment (start 99.828538 100.216773) (end 99.684195 101.075146) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D62)) + (segment (start 99.684195 101.075146) (end 99.580859 101.939415) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D5F)) + (segment (start 99.580859 101.939415) (end 99.518764 102.807622) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D5C)) + (segment (start 99.518764 102.807622) (end 99.49805 103.6778) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D5A)) + (segment (start 99.49805 103.6778) (end 99.518764 104.547978) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D57)) + (segment (start 99.518764 104.547978) (end 99.580859 105.416185) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D54)) + (segment (start 99.580859 105.416185) (end 99.684195 106.280454) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D51)) + (segment (start 99.684195 106.280454) (end 99.828538 107.138827) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D4F)) + (segment (start 99.828538 107.138827) (end 100.01356 107.989359) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D4C)) + (segment (start 100.01356 107.989359) (end 100.238842 108.830125) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D49)) + (segment (start 100.238842 108.830125) (end 100.503875 109.659219) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D46)) + (segment (start 100.503875 109.659219) (end 100.808057 110.474763) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D44)) + (segment (start 100.808057 110.474763) (end 101.1507 111.27491) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D41)) + (segment (start 101.1507 111.27491) (end 101.531027 112.057847) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D3E)) + (segment (start 101.531027 112.057847) (end 101.948177 112.8218) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D3C)) + (segment (start 101.948177 112.8218) (end 102.401205 113.565039) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D39)) + (segment (start 102.401205 113.565039) (end 102.889085 114.285881) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D36)) + (segment (start 102.889085 114.285881) (end 103.410711 114.982692) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D33)) + (segment (start 103.410711 114.982692) (end 103.964902 115.653893) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D31)) + (segment (start 103.964902 115.653893) (end 104.550402 116.297965) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D2E)) + (segment (start 104.550402 116.297965) (end 105.165885 116.913448) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D2B)) + (segment (start 105.165885 116.913448) (end 105.809957 117.498948) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D28)) + (segment (start 105.809957 117.498948) (end 106.481158 118.053139) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D26)) + (segment (start 106.481158 118.053139) (end 107.177969 118.574765) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D23)) + (segment (start 107.177969 118.574765) (end 107.898811 119.062645) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D20)) + (segment (start 107.898811 119.062645) (end 108.64205 119.515673) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D1E)) + (segment (start 108.64205 119.515673) (end 109.406003 119.932823) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D1B)) + (segment (start 109.406003 119.932823) (end 110.18894 120.31315) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D18)) + (segment (start 110.18894 120.31315) (end 110.989087 120.655793) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D15)) + (segment (start 110.989087 120.655793) (end 111.804631 120.959975) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D13)) + (segment (start 111.804631 120.959975) (end 112.633725 121.225008) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D10)) + (segment (start 112.633725 121.225008) (end 113.474491 121.45029) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D0D)) + (segment (start 113.474491 121.45029) (end 114.325023 121.635312) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D0A)) + (segment (start 114.325023 121.635312) (end 115.183396 121.779655) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D08)) + (segment (start 115.183396 121.779655) (end 116.047665 121.882991) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D05)) + (segment (start 116.047665 121.882991) (end 116.915872 121.945086) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D02)) + (segment (start 116.915872 121.945086) (end 117.78605 121.9658) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884D00)) + (segment (start 117.78605 121.9658) (end 117.78605 121.9658) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885334)) + (segment (start 117.78605 121.9658) (end 118.638532 121.944873) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885331)) + (segment (start 118.638532 121.944873) (end 119.488961 121.882141) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988532E)) + (segment (start 119.488961 121.882141) (end 120.335287 121.777757) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988532B)) + (segment (start 120.335287 121.777757) (end 121.175471 121.631971) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885328)) + (segment (start 121.175471 121.631971) (end 122.00749 121.445135) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885325)) + (segment (start 122.00749 121.445135) (end 122.82934 121.217699) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885323)) + (segment (start 122.82934 121.217699) (end 123.63904 120.95021) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885320)) + (segment (start 123.63904 120.95021) (end 124.434639 120.643313) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988531D)) + (segment (start 124.434639 120.643313) (end 125.214221 120.297748) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988531A)) + (segment (start 125.214221 120.297748) (end 125.975908 119.914347) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885317)) + (segment (start 125.975908 119.914347) (end 126.717865 119.494034) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885315)) + (segment (start 126.717865 119.494034) (end 127.438305 119.03782) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885312)) + (segment (start 127.438305 119.03782) (end 128.135491 118.546806) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988530F)) + (segment (start 128.135491 118.546806) (end 128.807745 118.022174) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988530C)) + (segment (start 128.807745 118.022174) (end 129.453447 117.465188) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885309)) + (segment (start 129.453447 117.465188) (end 130.07104 116.87719) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885307)) + (segment (start 130.07104 116.87719) (end 130.659038 116.259597) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885304)) + (segment (start 130.659038 116.259597) (end 131.216024 115.613895) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885301)) + (segment (start 131.216024 115.613895) (end 131.740656 114.941641) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852FE)) + (segment (start 131.740656 114.941641) (end 132.23167 114.244455) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852FB)) + (segment (start 132.23167 114.244455) (end 132.687884 113.524015) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852F8)) + (segment (start 132.687884 113.524015) (end 133.108197 112.782058) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852F6)) + (segment (start 133.108197 112.782058) (end 133.491598 112.020371) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852F3)) + (segment (start 133.491598 112.020371) (end 133.837163 111.240789) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852F0)) + (segment (start 133.837163 111.240789) (end 134.14406 110.44519) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852ED)) + (segment (start 134.14406 110.44519) (end 134.411549 109.63549) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852EA)) + (segment (start 134.411549 109.63549) (end 134.638985 108.81364) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852E8)) + (segment (start 134.638985 108.81364) (end 134.825821 107.981621) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852E5)) + (segment (start 134.825821 107.981621) (end 134.971607 107.141437) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852E2)) + (segment (start 134.971607 107.141437) (end 135.075991 106.295111) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852DF)) + (segment (start 135.075991 106.295111) (end 135.138723 105.444682) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852DC)) + (segment (start 135.138723 105.444682) (end 135.15965 104.5922) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852DA)) + (segment (start 135.15965 104.5922) (end 135.138723 103.739718) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852D7)) + (segment (start 135.138723 103.739718) (end 135.075991 102.889289) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852D4)) + (segment (start 135.075991 102.889289) (end 134.971607 102.042963) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852D1)) + (segment (start 134.971607 102.042963) (end 134.825821 101.202779) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852CE)) + (segment (start 134.825821 101.202779) (end 134.638985 100.37076) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852CB)) + (segment (start 134.638985 100.37076) (end 134.411549 99.54891) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852C9)) + (segment (start 134.411549 99.54891) (end 134.14406 98.73921) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852C6)) + (segment (start 134.14406 98.73921) (end 133.837163 97.943611) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852C3)) + (segment (start 133.837163 97.943611) (end 133.491598 97.164029) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852C0)) + (segment (start 133.491598 97.164029) (end 133.108197 96.402342) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852BD)) + (segment (start 133.108197 96.402342) (end 132.687884 95.660385) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852BB)) + (segment (start 132.687884 95.660385) (end 132.23167 94.939945) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852B8)) + (segment (start 132.23167 94.939945) (end 131.740656 94.242759) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852B5)) + (segment (start 131.740656 94.242759) (end 131.216024 93.570505) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852B2)) + (segment (start 131.216024 93.570505) (end 130.659038 92.924803) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852AF)) + (segment (start 130.659038 92.924803) (end 130.07104 92.30721) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852AD)) + (segment (start 130.07104 92.30721) (end 129.453447 91.719212) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852AA)) + (segment (start 129.453447 91.719212) (end 128.807745 91.162226) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852A7)) + (segment (start 128.807745 91.162226) (end 128.135491 90.637594) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852A4)) + (segment (start 128.135491 90.637594) (end 127.438305 90.14658) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598852A1)) + (segment (start 127.438305 90.14658) (end 126.717865 89.690366) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988529E)) + (segment (start 126.717865 89.690366) (end 125.975908 89.270053) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988529C)) + (segment (start 125.975908 89.270053) (end 125.214221 88.886652) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885299)) + (segment (start 125.214221 88.886652) (end 124.434639 88.541087) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885296)) + (segment (start 124.434639 88.541087) (end 123.63904 88.23419) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885293)) + (segment (start 123.63904 88.23419) (end 122.82934 87.966701) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885290)) + (segment (start 122.82934 87.966701) (end 122.00749 87.739265) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988528E)) + (segment (start 122.00749 87.739265) (end 121.175471 87.552429) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988528B)) + (segment (start 121.175471 87.552429) (end 120.335287 87.406643) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885288)) + (segment (start 120.335287 87.406643) (end 119.488961 87.302259) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885285)) + (segment (start 119.488961 87.302259) (end 118.638532 87.239527) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885282)) + (segment (start 118.638532 87.239527) (end 117.78605 87.2186) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885280)) + (segment (start 117.78605 87.2186) (end 117.78605 87.2186) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598858B4)) + (segment (start 117.78605 87.2186) (end 116.965627 87.23906) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598858B1)) + (segment (start 116.965627 87.23906) (end 116.147243 87.300389) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598858AE)) + (segment (start 116.147243 87.300389) (end 115.332934 87.402436) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598858AB)) + (segment (start 115.332934 87.402436) (end 114.524723 87.544945) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598858A8)) + (segment (start 114.524723 87.544945) (end 113.724621 87.727563) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598858A5)) + (segment (start 113.724621 87.727563) (end 112.934616 87.949836) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598858A2)) + (segment (start 112.934616 87.949836) (end 112.156672 88.211211) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988589F)) + (segment (start 112.156672 88.211211) (end 111.392724 88.511039) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988589D)) + (segment (start 111.392724 88.511039) (end 110.644671 88.848573) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988589A)) + (segment (start 110.644671 88.848573) (end 109.914372 89.222975) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885897)) + (segment (start 109.914372 89.222975) (end 109.203644 89.633315) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885894)) + (segment (start 109.203644 89.633315) (end 108.514253 90.078571) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885891)) + (segment (start 108.514253 90.078571) (end 107.847912 90.557637) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988588E)) + (segment (start 107.847912 90.557637) (end 107.20628 91.069321) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988588B)) + (segment (start 107.20628 91.069321) (end 106.590951 91.612353) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885889)) + (segment (start 106.590951 91.612353) (end 106.003454 92.185381) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885886)) + (segment (start 106.003454 92.185381) (end 105.445251 92.78698) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885883)) + (segment (start 105.445251 92.78698) (end 104.917729 93.415657) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885880)) + (segment (start 104.917729 93.415657) (end 104.4222 94.069846) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988587D)) + (segment (start 104.4222 94.069846) (end 103.959895 94.747923) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988587A)) + (segment (start 103.959895 94.747923) (end 103.531965 95.4482) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885877)) + (segment (start 103.531965 95.4482) (end 103.139472 96.168938) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885875)) + (segment (start 103.139472 96.168938) (end 102.783393 96.908343) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885872)) + (segment (start 102.783393 96.908343) (end 102.464613 97.664579) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988586F)) + (segment (start 102.464613 97.664579) (end 102.183924 98.435765) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988586C)) + (segment (start 102.183924 98.435765) (end 101.942025 99.219983) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885869)) + (segment (start 101.942025 99.219983) (end 101.739517 100.015283) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885866)) + (segment (start 101.739517 100.015283) (end 101.576902 100.81969) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885863)) + (segment (start 101.576902 100.81969) (end 101.454586 101.631202) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885861)) + (segment (start 101.454586 101.631202) (end 101.372873 102.447802) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988585E)) + (segment (start 101.372873 102.447802) (end 101.331966 103.267461) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988585B)) + (segment (start 101.331966 103.267461) (end 101.331966 104.088139) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885858)) + (segment (start 101.331966 104.088139) (end 101.372873 104.907798) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885855)) + (segment (start 101.372873 104.907798) (end 101.454586 105.724398) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885852)) + (segment (start 101.454586 105.724398) (end 101.576902 106.53591) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988584F)) + (segment (start 101.576902 106.53591) (end 101.739517 107.340317) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988584D)) + (segment (start 101.739517 107.340317) (end 101.942025 108.135617) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988584A)) + (segment (start 101.942025 108.135617) (end 102.183924 108.919835) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885847)) + (segment (start 102.183924 108.919835) (end 102.464613 109.691021) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885844)) + (segment (start 102.464613 109.691021) (end 102.783393 110.447257) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885841)) + (segment (start 102.783393 110.447257) (end 103.139472 111.186662) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988583E)) + (segment (start 103.139472 111.186662) (end 103.531965 111.9074) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988583B)) + (segment (start 103.531965 111.9074) (end 103.959895 112.607677) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885839)) + (segment (start 103.959895 112.607677) (end 104.4222 113.285754) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885836)) + (segment (start 104.4222 113.285754) (end 104.917729 113.939943) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885833)) + (segment (start 104.917729 113.939943) (end 105.445251 114.56862) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885830)) + (segment (start 105.445251 114.56862) (end 106.003454 115.170219) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988582D)) + (segment (start 106.003454 115.170219) (end 106.590951 115.743247) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988582A)) + (segment (start 106.590951 115.743247) (end 107.20628 116.286279) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885827)) + (segment (start 107.20628 116.286279) (end 107.847912 116.797963) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885825)) + (segment (start 107.847912 116.797963) (end 108.514253 117.277029) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885822)) + (segment (start 108.514253 117.277029) (end 109.203644 117.722285) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988581F)) + (segment (start 109.203644 117.722285) (end 109.914372 118.132625) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988581C)) + (segment (start 109.914372 118.132625) (end 110.644671 118.507027) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885819)) + (segment (start 110.644671 118.507027) (end 111.392724 118.844561) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885816)) + (segment (start 111.392724 118.844561) (end 112.156672 119.144389) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885813)) + (segment (start 112.156672 119.144389) (end 112.934616 119.405764) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885811)) + (segment (start 112.934616 119.405764) (end 113.724621 119.628037) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988580E)) + (segment (start 113.724621 119.628037) (end 114.524723 119.810655) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988580B)) + (segment (start 114.524723 119.810655) (end 115.332934 119.953164) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885808)) + (segment (start 115.332934 119.953164) (end 116.147243 120.055211) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885805)) + (segment (start 116.147243 120.055211) (end 117.78605 120.137) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885800)) + (segment (start 117.78605 120.137) (end 117.78605 120.137) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885E34)) + (segment (start 117.78605 120.137) (end 118.586277 120.116389) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885E31)) + (segment (start 118.586277 120.116389) (end 119.384382 120.054611) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885E2E)) + (segment (start 119.384382 120.054611) (end 120.178248 119.951829) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885E2B)) + (segment (start 120.178248 119.951829) (end 120.965771 119.808316) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885E28)) + (segment (start 120.965771 119.808316) (end 121.744862 119.624453) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885E25)) + (segment (start 121.744862 119.624453) (end 122.513454 119.400726) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885E22)) + (segment (start 122.513454 119.400726) (end 123.269511 119.137731) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885E1F)) + (segment (start 123.269511 119.137731) (end 124.011026 118.836163) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885E1C)) + (segment (start 124.011026 118.836163) (end 124.736034 118.496823) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885E19)) + (segment (start 124.736034 118.496823) (end 125.442611 118.12061) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885E16)) + (segment (start 125.442611 118.12061) (end 126.128885 117.708522) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885E13)) + (segment (start 126.128885 117.708522) (end 126.793035 117.261653) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885E10)) + (segment (start 126.793035 117.261653) (end 127.4333 116.781186) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885E0D)) + (segment (start 127.4333 116.781186) (end 128.047983 116.268396) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885E0A)) + (segment (start 128.047983 116.268396) (end 128.635452 115.724643) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885E07)) + (segment (start 128.635452 115.724643) (end 129.194151 115.151368) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885E04)) + (segment (start 129.194151 115.151368) (end 129.722598 114.550093) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885E01)) + (segment (start 129.722598 114.550093) (end 130.219391 113.922411) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DFE)) + (segment (start 130.219391 113.922411) (end 130.683213 113.269987) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DFB)) + (segment (start 130.683213 113.269987) (end 131.112834 112.594551) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DF8)) + (segment (start 131.112834 112.594551) (end 131.507115 111.897894) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DF6)) + (segment (start 131.507115 111.897894) (end 131.865011 111.181864) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DF3)) + (segment (start 131.865011 111.181864) (end 132.185571 110.44836) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DF0)) + (segment (start 132.185571 110.44836) (end 132.467946 109.699326) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DED)) + (segment (start 132.467946 109.699326) (end 132.711388 108.936748) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DEA)) + (segment (start 132.711388 108.936748) (end 132.91525 108.16265) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DE7)) + (segment (start 132.91525 108.16265) (end 133.078992 107.379084) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DE4)) + (segment (start 133.078992 107.379084) (end 133.202181 106.588127) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DE1)) + (segment (start 133.202181 106.588127) (end 133.284488 105.791877) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DDE)) + (segment (start 133.284488 105.791877) (end 133.325696 104.992446) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DDB)) + (segment (start 133.325696 104.992446) (end 133.325696 104.191954) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DD8)) + (segment (start 133.325696 104.191954) (end 133.284488 103.392523) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DD5)) + (segment (start 133.284488 103.392523) (end 133.202181 102.596273) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DD2)) + (segment (start 133.202181 102.596273) (end 133.078992 101.805316) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DCF)) + (segment (start 133.078992 101.805316) (end 132.91525 101.02175) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DCC)) + (segment (start 132.91525 101.02175) (end 132.711388 100.247652) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DC9)) + (segment (start 132.711388 100.247652) (end 132.467946 99.485074) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DC6)) + (segment (start 132.467946 99.485074) (end 132.185571 98.73604) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DC3)) + (segment (start 132.185571 98.73604) (end 131.865011 98.002536) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DC0)) + (segment (start 131.865011 98.002536) (end 131.507115 97.286506) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DBD)) + (segment (start 131.507115 97.286506) (end 131.112834 96.589849) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DBB)) + (segment (start 131.112834 96.589849) (end 130.683213 95.914413) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DB8)) + (segment (start 130.683213 95.914413) (end 130.219391 95.261989) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DB5)) + (segment (start 130.219391 95.261989) (end 129.722598 94.634307) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DB2)) + (segment (start 129.722598 94.634307) (end 129.194151 94.033032) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DAF)) + (segment (start 129.194151 94.033032) (end 128.635452 93.459757) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DAC)) + (segment (start 128.635452 93.459757) (end 128.047983 92.916004) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DA9)) + (segment (start 128.047983 92.916004) (end 127.4333 92.403214) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DA6)) + (segment (start 127.4333 92.403214) (end 126.793035 91.922747) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DA3)) + (segment (start 126.793035 91.922747) (end 126.128885 91.475878) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885DA0)) + (segment (start 126.128885 91.475878) (end 125.442611 91.06379) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885D9D)) + (segment (start 125.442611 91.06379) (end 124.736034 90.687577) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885D9A)) + (segment (start 124.736034 90.687577) (end 124.011026 90.348237) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885D97)) + (segment (start 124.011026 90.348237) (end 123.269511 90.046669) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885D94)) + (segment (start 123.269511 90.046669) (end 122.513454 89.783674) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885D91)) + (segment (start 122.513454 89.783674) (end 121.744862 89.559947) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885D8E)) + (segment (start 121.744862 89.559947) (end 120.965771 89.376084) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885D8B)) + (segment (start 120.965771 89.376084) (end 120.178248 89.232571) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885D88)) + (segment (start 120.178248 89.232571) (end 119.384382 89.129789) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885D85)) + (segment (start 119.384382 89.129789) (end 117.78605 89.0474) (width 1.016) (layer Bottom) (net 5) (tstamp 557459885D80)) + (segment (start 117.78605 89.0474) (end 117.78605 89.0474) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5430E)) + (segment (start 117.78605 89.0474) (end 117.004852 89.068204) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5430B)) + (segment (start 117.004852 89.068204) (end 116.225868 89.130558) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54308)) + (segment (start 116.225868 89.130558) (end 115.451307 89.234286) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54305)) + (segment (start 115.451307 89.234286) (end 114.683366 89.379092) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54302)) + (segment (start 114.683366 89.379092) (end 113.924219 89.564566) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542FF)) + (segment (start 113.924219 89.564566) (end 113.176021 89.790183) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542FC)) + (segment (start 113.176021 89.790183) (end 112.440892 90.055303) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542F9)) + (segment (start 112.440892 90.055303) (end 111.720916 90.359175) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542F6)) + (segment (start 111.720916 90.359175) (end 111.018134 90.700936) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542F3)) + (segment (start 111.018134 90.700936) (end 110.334538 91.079619) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542F0)) + (segment (start 110.334538 91.079619) (end 109.672067 91.494149) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542ED)) + (segment (start 109.672067 91.494149) (end 109.032598 91.943352) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542E9)) + (segment (start 109.032598 91.943352) (end 108.417944 92.425953) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542E6)) + (segment (start 108.417944 92.425953) (end 107.829848 92.940586) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542E3)) + (segment (start 107.829848 92.940586) (end 107.269976 93.48579) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542E0)) + (segment (start 107.269976 93.48579) (end 106.739917 94.060021) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542DD)) + (segment (start 106.739917 94.060021) (end 106.241173 94.66165) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542DA)) + (segment (start 106.241173 94.66165) (end 105.775157 95.288972) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542D7)) + (segment (start 105.775157 95.288972) (end 105.343191 95.940208) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542D4)) + (segment (start 105.343191 95.940208) (end 104.946499 96.613513) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542D1)) + (segment (start 104.946499 96.613513) (end 104.586206 97.306977) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542CE)) + (segment (start 104.586206 97.306977) (end 104.263334 98.018635) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542CB)) + (segment (start 104.263334 98.018635) (end 103.978797 98.746469) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542C8)) + (segment (start 103.978797 98.746469) (end 103.733402 99.488416) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542C5)) + (segment (start 103.733402 99.488416) (end 103.527846 100.242372) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542C2)) + (segment (start 103.527846 100.242372) (end 103.362709 101.0062) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542BF)) + (segment (start 103.362709 101.0062) (end 103.238462 101.777735) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542BC)) + (segment (start 103.238462 101.777735) (end 103.113926 103.335161) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542B9)) + (segment (start 103.155456 102.55479) (end 103.113926 103.335161) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542B6)) + (segment (start 103.113926 103.335161) (end 103.15565 104.897) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E542B0)) + (segment (start 117.78605 78.0746) (end 117.78605 78.0746) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5477C)) + (segment (start 117.78605 78.0746) (end 118.827126 78.095044) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5477F)) + (segment (start 118.827126 78.095044) (end 119.866597 78.156345) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54781)) + (segment (start 119.866597 78.156345) (end 120.90286 78.258408) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54783)) + (segment (start 120.90286 78.258408) (end 121.934317 78.401076) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54786)) + (segment (start 121.934317 78.401076) (end 122.959377 78.584128) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54788)) + (segment (start 122.959377 78.584128) (end 123.976461 78.807283) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5478A)) + (segment (start 123.976461 78.807283) (end 124.983999 79.070197) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5478C)) + (segment (start 124.983999 79.070197) (end 125.980439 79.372464) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5478F)) + (segment (start 125.980439 79.372464) (end 126.964244 79.713617) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54791)) + (segment (start 126.964244 79.713617) (end 127.933896 80.093132) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54793)) + (segment (start 127.933896 80.093132) (end 128.887901 80.510423) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54795)) + (segment (start 128.887901 80.510423) (end 129.824788 80.964845) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54798)) + (segment (start 129.824788 80.964845) (end 130.743113 81.4557) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5479A)) + (segment (start 130.743113 81.4557) (end 131.641458 81.982229) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5479C)) + (segment (start 131.641458 81.982229) (end 132.518439 82.543621) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5479E)) + (segment (start 132.518439 82.543621) (end 133.372704 83.139011) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547A1)) + (segment (start 133.372704 83.139011) (end 134.202936 83.76748) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547A3)) + (segment (start 134.202936 83.76748) (end 135.007854 84.428059) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547A5)) + (segment (start 135.007854 84.428059) (end 135.786217 85.119729) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547A7)) + (segment (start 135.786217 85.119729) (end 136.536825 85.841425) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547AA)) + (segment (start 136.536825 85.841425) (end 137.258521 86.592033) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547AC)) + (segment (start 137.258521 86.592033) (end 137.950191 87.370396) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547AE)) + (segment (start 137.950191 87.370396) (end 138.61077 88.175314) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547B0)) + (segment (start 138.61077 88.175314) (end 139.239239 89.005546) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547B3)) + (segment (start 139.239239 89.005546) (end 139.834629 89.859811) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547B5)) + (segment (start 139.834629 89.859811) (end 140.396021 90.736792) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547B7)) + (segment (start 140.396021 90.736792) (end 140.92255 91.635137) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547B9)) + (segment (start 140.92255 91.635137) (end 141.413405 92.553462) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547BC)) + (segment (start 141.413405 92.553462) (end 141.867827 93.490349) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547BE)) + (segment (start 141.867827 93.490349) (end 142.285118 94.444354) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547C0)) + (segment (start 142.285118 94.444354) (end 142.664633 95.414006) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547C2)) + (segment (start 142.664633 95.414006) (end 143.005786 96.397811) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547C5)) + (segment (start 143.005786 96.397811) (end 143.308053 97.394251) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547C7)) + (segment (start 143.308053 97.394251) (end 143.570967 98.401789) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547C9)) + (segment (start 143.570967 98.401789) (end 143.794122 99.418873) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547CB)) + (segment (start 143.794122 99.418873) (end 143.977174 100.443933) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547CE)) + (segment (start 143.977174 100.443933) (end 144.119842 101.47539) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547D0)) + (segment (start 144.119842 101.47539) (end 144.221905 102.511653) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547D2)) + (segment (start 144.221905 102.511653) (end 144.283206 103.551124) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547D4)) + (segment (start 144.283206 103.551124) (end 144.30365 104.5922) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547D7)) + (segment (start 144.30365 104.5922) (end 144.283206 105.633276) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547D9)) + (segment (start 144.283206 105.633276) (end 144.221905 106.672747) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547DB)) + (segment (start 144.221905 106.672747) (end 144.119842 107.70901) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547DD)) + (segment (start 144.119842 107.70901) (end 143.977174 108.740467) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547E0)) + (segment (start 143.977174 108.740467) (end 143.794122 109.765527) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547E2)) + (segment (start 143.794122 109.765527) (end 143.570967 110.782611) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547E4)) + (segment (start 143.570967 110.782611) (end 143.308053 111.790149) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547E6)) + (segment (start 143.308053 111.790149) (end 143.005786 112.786589) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547E9)) + (segment (start 143.005786 112.786589) (end 142.664633 113.770394) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547EB)) + (segment (start 142.664633 113.770394) (end 142.285118 114.740046) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547ED)) + (segment (start 142.285118 114.740046) (end 141.867827 115.694051) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547EF)) + (segment (start 141.867827 115.694051) (end 141.413405 116.630938) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547F2)) + (segment (start 141.413405 116.630938) (end 140.92255 117.549263) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547F4)) + (segment (start 140.92255 117.549263) (end 140.396021 118.447608) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547F6)) + (segment (start 140.396021 118.447608) (end 139.834629 119.324589) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547F8)) + (segment (start 139.834629 119.324589) (end 139.239239 120.178854) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547FB)) + (segment (start 139.239239 120.178854) (end 138.61077 121.009086) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547FD)) + (segment (start 138.61077 121.009086) (end 137.950191 121.814004) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E547FF)) + (segment (start 137.950191 121.814004) (end 137.258521 122.592367) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54801)) + (segment (start 137.258521 122.592367) (end 136.536825 123.342975) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54804)) + (segment (start 136.536825 123.342975) (end 135.786217 124.064671) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54806)) + (segment (start 135.786217 124.064671) (end 135.007854 124.756341) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54808)) + (segment (start 135.007854 124.756341) (end 134.202936 125.41692) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5480A)) + (segment (start 134.202936 125.41692) (end 133.372704 126.045389) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5480D)) + (segment (start 133.372704 126.045389) (end 132.518439 126.640779) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5480F)) + (segment (start 132.518439 126.640779) (end 131.641458 127.202171) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54811)) + (segment (start 131.641458 127.202171) (end 130.743113 127.7287) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54813)) + (segment (start 130.743113 127.7287) (end 129.824788 128.219555) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54816)) + (segment (start 129.824788 128.219555) (end 128.887901 128.673977) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54818)) + (segment (start 128.887901 128.673977) (end 127.933896 129.091268) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5481A)) + (segment (start 127.933896 129.091268) (end 126.964244 129.470783) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5481C)) + (segment (start 126.964244 129.470783) (end 125.980439 129.811936) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5481F)) + (segment (start 125.980439 129.811936) (end 124.983999 130.114203) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54821)) + (segment (start 124.983999 130.114203) (end 123.976461 130.377117) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54823)) + (segment (start 123.976461 130.377117) (end 122.959377 130.600272) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54825)) + (segment (start 122.959377 130.600272) (end 121.934317 130.783324) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54828)) + (segment (start 121.934317 130.783324) (end 120.90286 130.925992) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5482A)) + (segment (start 120.90286 130.925992) (end 119.866597 131.028055) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5482C)) + (segment (start 119.866597 131.028055) (end 117.78605 131.1098) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54830)) + (segment (start 117.78605 131.1098) (end 117.78605 131.1098) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D4C)) + (segment (start 117.78605 131.1098) (end 116.722364 131.08917) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D4F)) + (segment (start 116.722364 131.08917) (end 115.660278 131.02731) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D51)) + (segment (start 115.660278 131.02731) (end 114.601389 130.924315) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D53)) + (segment (start 114.601389 130.924315) (end 113.54729 130.780338) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D55)) + (segment (start 113.54729 130.780338) (end 112.499567 130.595596) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D58)) + (segment (start 112.499567 130.595596) (end 111.459795 130.370367) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D5A)) + (segment (start 111.459795 130.370367) (end 110.429539 130.10499) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D5C)) + (segment (start 110.429539 130.10499) (end 109.410347 129.799864) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D5E)) + (segment (start 109.410347 129.799864) (end 108.403753 129.455448) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D60)) + (segment (start 108.403753 129.455448) (end 107.411271 129.07226) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D63)) + (segment (start 107.411271 129.07226) (end 106.434394 128.650876) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D65)) + (segment (start 106.434394 128.650876) (end 105.474591 128.191931) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D67)) + (segment (start 105.474591 128.191931) (end 104.533305 127.696113) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D69)) + (segment (start 104.533305 127.696113) (end 103.611953 127.16417) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D6C)) + (segment (start 103.611953 127.16417) (end 102.71192 126.596902) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D6E)) + (segment (start 102.71192 126.596902) (end 101.83456 125.99516) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D70)) + (segment (start 101.83456 125.99516) (end 100.981192 125.359852) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D72)) + (segment (start 100.981192 125.359852) (end 100.1531 124.691931) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D74)) + (segment (start 100.1531 124.691931) (end 99.35153 123.992403) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D77)) + (segment (start 99.35153 123.992403) (end 98.577688 123.26232) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D79)) + (segment (start 98.577688 123.26232) (end 97.832736 122.502781) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D7B)) + (segment (start 97.832736 122.502781) (end 97.117796 121.714926) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D7D)) + (segment (start 97.117796 121.714926) (end 96.433944 120.899942) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D80)) + (segment (start 96.433944 120.899942) (end 95.782207 120.059054) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D82)) + (segment (start 95.782207 120.059054) (end 95.163565 119.193528) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D84)) + (segment (start 95.163565 119.193528) (end 94.57895 118.304664) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D86)) + (segment (start 94.57895 118.304664) (end 94.029241 117.3938) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D89)) + (segment (start 94.029241 117.3938) (end 93.515264 116.462306) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D8B)) + (segment (start 93.515264 116.462306) (end 93.037793 115.511583) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D8D)) + (segment (start 93.037793 115.511583) (end 92.597546 114.54306) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D8F)) + (segment (start 92.597546 114.54306) (end 92.195184 113.558195) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D91)) + (segment (start 92.195184 113.558195) (end 91.831314 112.558469) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D94)) + (segment (start 91.831314 112.558469) (end 91.506482 111.545386) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D96)) + (segment (start 91.506482 111.545386) (end 91.221177 110.520469) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D98)) + (segment (start 91.221177 110.520469) (end 90.975828 109.485261) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D9A)) + (segment (start 90.975828 109.485261) (end 90.770804 108.441317) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D9D)) + (segment (start 90.770804 108.441317) (end 90.606413 107.390208) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54D9F)) + (segment (start 90.606413 107.390208) (end 90.482904 106.333516) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DA1)) + (segment (start 90.482904 106.333516) (end 90.400461 105.272829) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DA3)) + (segment (start 90.400461 105.272829) (end 90.359208 104.209743) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DA5)) + (segment (start 90.359208 104.209743) (end 90.359208 103.145857) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DA8)) + (segment (start 90.359208 103.145857) (end 90.400461 102.082771) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DAA)) + (segment (start 90.400461 102.082771) (end 90.482904 101.022084) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DAC)) + (segment (start 90.482904 101.022084) (end 90.606413 99.965392) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DAE)) + (segment (start 90.606413 99.965392) (end 90.770804 98.914283) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DB1)) + (segment (start 90.770804 98.914283) (end 90.975828 97.870339) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DB3)) + (segment (start 90.975828 97.870339) (end 91.221177 96.835131) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DB5)) + (segment (start 91.221177 96.835131) (end 91.506482 95.810214) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DB7)) + (segment (start 91.506482 95.810214) (end 91.831314 94.797131) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DB9)) + (segment (start 91.831314 94.797131) (end 92.195184 93.797405) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DBC)) + (segment (start 92.195184 93.797405) (end 92.597546 92.81254) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DBE)) + (segment (start 92.597546 92.81254) (end 93.037793 91.844017) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DC0)) + (segment (start 93.037793 91.844017) (end 93.515264 90.893294) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DC2)) + (segment (start 93.515264 90.893294) (end 94.029241 89.9618) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DC5)) + (segment (start 94.029241 89.9618) (end 94.57895 89.050936) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DC7)) + (segment (start 94.57895 89.050936) (end 95.163565 88.162072) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DC9)) + (segment (start 95.163565 88.162072) (end 95.782207 87.296546) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DCB)) + (segment (start 95.782207 87.296546) (end 96.433944 86.455658) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DCD)) + (segment (start 96.433944 86.455658) (end 97.117796 85.640674) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DD0)) + (segment (start 97.117796 85.640674) (end 97.832736 84.852819) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DD2)) + (segment (start 97.832736 84.852819) (end 98.577688 84.09328) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DD4)) + (segment (start 98.577688 84.09328) (end 99.35153 83.363197) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DD6)) + (segment (start 99.35153 83.363197) (end 100.1531 82.663669) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DD9)) + (segment (start 100.1531 82.663669) (end 100.981192 81.995748) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DDB)) + (segment (start 100.981192 81.995748) (end 101.83456 81.36044) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DDD)) + (segment (start 101.83456 81.36044) (end 102.71192 80.758698) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DDF)) + (segment (start 102.71192 80.758698) (end 103.611953 80.19143) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DE1)) + (segment (start 103.611953 80.19143) (end 104.533305 79.659487) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DE4)) + (segment (start 104.533305 79.659487) (end 105.474591 79.163669) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DE6)) + (segment (start 105.474591 79.163669) (end 106.434394 78.704724) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DE8)) + (segment (start 106.434394 78.704724) (end 107.411271 78.28334) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DEA)) + (segment (start 107.411271 78.28334) (end 108.403753 77.900152) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DED)) + (segment (start 108.403753 77.900152) (end 109.410347 77.555736) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DEF)) + (segment (start 109.410347 77.555736) (end 110.429539 77.25061) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DF1)) + (segment (start 110.429539 77.25061) (end 111.459795 76.985233) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DF3)) + (segment (start 111.459795 76.985233) (end 112.499567 76.760004) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DF5)) + (segment (start 112.499567 76.760004) (end 113.54729 76.575262) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DF8)) + (segment (start 113.54729 76.575262) (end 114.601389 76.431285) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DFA)) + (segment (start 114.601389 76.431285) (end 115.660278 76.32829) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54DFC)) + (segment (start 115.660278 76.32829) (end 117.78605 76.2458) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E54E00)) + (segment (start 117.78605 76.2458) (end 117.78605 76.2458) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E552EC)) + (via (at 103.10485 104.9986) (size 1.5) (drill 0.6) (layers Top Bottom) (net 5) (tstamp 55745BE92270)) + (segment (start 98.296709 98.6927) (end 98.090011 99.584916) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884265)) + (segment (start 98.543801 97.810817) (end 98.296709 98.6927) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884268)) + (segment (start 98.830775 96.941094) (end 98.543801 97.810817) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988426A)) + (segment (start 99.157038 96.085334) (end 98.830775 96.941094) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988426D)) + (segment (start 99.521912 95.24531) (end 99.157038 96.085334) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884270)) + (segment (start 99.924641 94.422764) (end 99.521912 95.24531) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884272)) + (segment (start 100.36439 93.6194) (end 99.924641 94.422764) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884275)) + (segment (start 100.840249 92.836884) (end 100.36439 93.6194) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884278)) + (segment (start 101.35123 92.076837) (end 100.840249 92.836884) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988427A)) + (segment (start 101.896275 91.340835) (end 101.35123 92.076837) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988427D)) + (segment (start 102.474254 90.630404) (end 101.896275 91.340835) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988427F)) + (segment (start 103.083969 89.947015) (end 102.474254 90.630404) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884282)) + (segment (start 98.830775 110.414506) (end 99.157038 111.270266) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884243)) + (segment (start 98.543801 109.544783) (end 98.830775 110.414506) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884246)) + (segment (start 98.296709 108.6629) (end 98.543801 109.544783) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884249)) + (segment (start 98.090011 107.770684) (end 98.296709 108.6629) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988424B)) + (segment (start 97.924137 106.869985) (end 98.090011 107.770684) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988424E)) + (segment (start 97.799429 105.96267) (end 97.924137 106.869985) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884250)) + (segment (start 97.716147 105.050619) (end 97.799429 105.96267) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884253)) + (segment (start 97.674463 104.135723) (end 97.716147 105.050619) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884256)) + (segment (start 97.674463 103.219877) (end 97.674463 104.135723) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884258)) + (segment (start 97.716147 102.304981) (end 97.674463 103.219877) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988425B)) + (segment (start 97.799429 101.39293) (end 97.716147 102.304981) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988425D)) + (segment (start 97.924137 100.485615) (end 97.799429 101.39293) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884260)) + (segment (start 98.090011 99.584916) (end 97.924137 100.485615) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884263)) + (segment (start 116.870442 123.773752) (end 117.78605 123.7946) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884200)) + (segment (start 115.956732 123.711253) (end 116.870442 123.773752) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884202)) + (segment (start 115.046813 123.607231) (end 115.956732 123.711253) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884205)) + (segment (start 114.142571 123.461902) (end 115.046813 123.607231) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884207)) + (segment (start 113.245882 123.275568) (end 114.142571 123.461902) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988420A)) + (segment (start 112.358602 123.048614) (end 113.245882 123.275568) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988420D)) + (segment (start 111.482572 122.781512) (end 112.358602 123.048614) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988420F)) + (segment (start 110.619607 122.474814) (end 111.482572 122.781512) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884212)) + (segment (start 109.771495 122.129156) (end 110.619607 122.474814) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884214)) + (segment (start 108.939995 121.745255) (end 109.771495 122.129156) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884217)) + (segment (start 108.126829 121.323907) (end 108.939995 121.745255) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988421A)) + (segment (start 107.333684 120.865984) (end 108.126829 121.323907) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988421C)) + (segment (start 106.562202 120.372436) (end 107.333684 120.865984) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988421F)) + (segment (start 103.724156 89.292085) (end 103.083969 89.947015) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884285)) + (segment (start 104.393489 88.666972) (end 103.724156 89.292085) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884287)) + (segment (start 105.09058 88.072971) (end 104.393489 88.666972) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988428A)) + (segment (start 105.813984 87.511314) (end 105.09058 88.072971) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988428C)) + (segment (start 106.562202 86.983164) (end 105.813984 87.511314) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988428F)) + (segment (start 107.333684 86.489616) (end 106.562202 86.983164) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884292)) + (segment (start 108.126829 86.031693) (end 107.333684 86.489616) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884294)) + (segment (start 108.939995 85.610345) (end 108.126829 86.031693) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884297)) + (segment (start 109.771495 85.226444) (end 108.939995 85.610345) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884299)) + (segment (start 110.619607 84.880786) (end 109.771495 85.226444) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988429C)) + (segment (start 111.482572 84.574088) (end 110.619607 84.880786) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988429F)) + (segment (start 112.358602 84.306986) (end 111.482572 84.574088) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598842A1)) + (segment (start 113.245882 84.080032) (end 112.358602 84.306986) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598842A4)) + (segment (start 114.142571 83.893698) (end 113.245882 84.080032) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598842A6)) + (segment (start 115.046813 83.748369) (end 114.142571 83.893698) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598842A9)) + (segment (start 115.956732 83.644347) (end 115.046813 83.748369) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598842AC)) + (segment (start 116.870442 83.581848) (end 115.956732 83.644347) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598842AE)) + (segment (start 117.78605 83.561) (end 116.870442 83.581848) (width 1.016) (layer Bottom) (net 5) (tstamp 5574598842B1)) + (segment (start 105.813984 119.844286) (end 106.562202 120.372436) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884221)) + (segment (start 105.09058 119.282629) (end 105.813984 119.844286) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884224)) + (segment (start 104.393489 118.688628) (end 105.09058 119.282629) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884227)) + (segment (start 103.724156 118.063515) (end 104.393489 118.688628) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884229)) + (segment (start 103.083969 117.408585) (end 103.724156 118.063515) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988422C)) + (segment (start 102.474254 116.725196) (end 103.083969 117.408585) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988422E)) + (segment (start 101.896275 116.014765) (end 102.474254 116.725196) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884231)) + (segment (start 101.35123 115.278763) (end 101.896275 116.014765) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884234)) + (segment (start 100.840249 114.518716) (end 101.35123 115.278763) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884236)) + (segment (start 100.36439 113.7362) (end 100.840249 114.518716) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884239)) + (segment (start 99.924641 112.932836) (end 100.36439 113.7362) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988423C)) + (segment (start 99.521912 112.11029) (end 99.924641 112.932836) (width 1.016) (layer Bottom) (net 5) (tstamp 55745988423E)) + (segment (start 99.157038 111.270266) (end 99.521912 112.11029) (width 1.016) (layer Bottom) (net 5) (tstamp 557459884241)) + (segment (start 133.922585 81.287037) (end 134.792929 81.914359) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55311)) + (segment (start 133.029126 80.693099) (end 133.922585 81.287037) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5530F)) + (segment (start 132.11383 80.133396) (end 133.029126 80.693099) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5530D)) + (segment (start 131.178011 79.60873) (end 132.11383 80.133396) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5530B)) + (segment (start 130.223008 79.119853) (end 131.178011 79.60873) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55309)) + (segment (start 129.250189 78.667464) (end 130.223008 79.119853) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55307)) + (segment (start 128.260947 78.252213) (end 129.250189 78.667464) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55304)) + (segment (start 127.2567 77.874693) (end 128.260947 78.252213) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55302)) + (segment (start 126.238887 77.535446) (end 127.2567 77.874693) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55300)) + (segment (start 125.208965 77.234957) (end 126.238887 77.535446) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E552FE)) + (segment (start 124.16841 76.973658) (end 125.208965 77.234957) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E552FC)) + (segment (start 123.118713 76.751922) (end 124.16841 76.973658) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E552FA)) + (segment (start 122.061376 76.570066) (end 123.118713 76.751922) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E552F7)) + (segment (start 120.997915 76.428352) (end 122.061376 76.570066) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E552F5)) + (segment (start 119.929853 76.326983) (end 120.997915 76.428352) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E552F3)) + (segment (start 118.85872 76.266103) (end 119.929853 76.326983) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E552F1)) + (segment (start 117.78605 76.2458) (end 118.85872 76.266103) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E552EF)) + (segment (start 97.522006 124.796384) (end 96.729117 124.006928) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55907)) + (segment (start 98.344472 125.554977) (end 97.522006 124.796384) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55905)) + (segment (start 99.195314 126.281602) (end 98.344472 125.554977) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55903)) + (segment (start 100.073289 126.975196) (end 99.195314 126.281602) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55900)) + (segment (start 100.977117 127.634748) (end 100.073289 126.975196) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E558FE)) + (segment (start 101.905478 128.259296) (end 100.977117 127.634748) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E558FC)) + (segment (start 102.857018 128.847927) (end 101.905478 128.259296) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E558FA)) + (segment (start 103.830347 129.399782) (end 102.857018 128.847927) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E558F8)) + (segment (start 104.824045 129.914057) (end 103.830347 129.399782) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E558F5)) + (segment (start 105.836662 130.39) (end 104.824045 129.914057) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E558F3)) + (segment (start 106.866719 130.826917) (end 105.836662 130.39) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E558F1)) + (segment (start 107.912713 131.22417) (end 106.866719 130.826917) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E558EF)) + (segment (start 108.973118 131.58118) (end 107.912713 131.22417) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E558ED)) + (segment (start 110.046385 131.897425) (end 108.973118 131.58118) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E558EA)) + (segment (start 111.130949 132.172443) (end 110.046385 131.897425) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E558E8)) + (segment (start 128.260947 130.932187) (end 127.2567 131.309707) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5538D)) + (segment (start 129.250189 130.516936) (end 128.260947 130.932187) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5538B)) + (segment (start 130.223008 130.064547) (end 129.250189 130.516936) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55389)) + (segment (start 131.178011 129.57567) (end 130.223008 130.064547) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55386)) + (segment (start 132.11383 129.051004) (end 131.178011 129.57567) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55384)) + (segment (start 133.029126 128.491301) (end 132.11383 129.051004) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55382)) + (segment (start 133.922585 127.897363) (end 133.029126 128.491301) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55380)) + (segment (start 134.792929 127.270041) (end 133.922585 127.897363) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5537E)) + (segment (start 135.638911 126.610232) (end 134.792929 127.270041) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5537C)) + (segment (start 136.459319 125.918883) (end 135.638911 126.610232) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55379)) + (segment (start 137.252977 125.196984) (end 136.459319 125.918883) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55377)) + (segment (start 138.01875 124.445569) (end 137.252977 125.196984) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55375)) + (segment (start 138.755539 123.665714) (end 138.01875 124.445569) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55373)) + (segment (start 139.46229 122.858536) (end 138.755539 123.665714) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55371)) + (segment (start 140.137989 122.025192) (end 139.46229 122.858536) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5536F)) + (via (at 88.52525 104.897) (size 1.5) (drill 0.6) (layers Top Bottom) (net 5) (tstamp 557459E55F00)) + (segment (start 88.705728 107.12708) (end 88.669547 106.68) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55930)) + (segment (start 88.859715 108.235323) (end 88.705728 107.12708) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5592C)) + (segment (start 89.05592 109.336875) (end 88.859715 108.235323) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5592A)) + (segment (start 89.294058 110.430129) (end 89.05592 109.336875) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55928)) + (segment (start 112.225227 132.405834) (end 111.130949 132.172443) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E558E6)) + (segment (start 113.32762 132.597256) (end 112.225227 132.405834) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E558E4)) + (segment (start 114.436521 132.74643) (end 113.32762 132.597256) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E558E2)) + (segment (start 115.550311 132.853139) (end 114.436521 132.74643) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E558E0)) + (segment (start 116.667363 132.917227) (end 115.550311 132.853139) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E558DD)) + (segment (start 117.786049 132.9386) (end 116.667363 132.917227) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E558DB)) + (segment (start 117.78605 132.9386) (end 117.786049 132.9386) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E558D9)) + (segment (start 119.929853 132.857417) (end 117.78605 132.9386) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E553A0)) + (segment (start 120.997915 132.756048) (end 119.929853 132.857417) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5539C)) + (segment (start 122.061376 132.614334) (end 120.997915 132.756048) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5539A)) + (segment (start 123.118713 132.432478) (end 122.061376 132.614334) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55398)) + (segment (start 124.16841 132.210742) (end 123.118713 132.432478) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55396)) + (segment (start 125.208965 131.949443) (end 124.16841 132.210742) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55393)) + (segment (start 126.238887 131.648954) (end 125.208965 131.949443) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55391)) + (segment (start 127.2567 131.309707) (end 126.238887 131.648954) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5538F)) + (segment (start 89.573781 111.513489) (end 89.294058 110.430129) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55926)) + (segment (start 89.894681 112.585374) (end 89.573781 111.513489) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55923)) + (segment (start 90.25629 113.644219) (end 89.894681 112.585374) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55921)) + (segment (start 90.65808 114.68848) (end 90.25629 113.644219) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5591F)) + (segment (start 91.099464 115.716631) (end 90.65808 114.68848) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5591D)) + (segment (start 91.579797 116.727172) (end 91.099464 115.716631) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5591B)) + (segment (start 92.09838 117.718628) (end 91.579797 116.727172) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55918)) + (segment (start 92.654456 118.689553) (end 92.09838 117.718628) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55916)) + (segment (start 93.247211 119.638528) (end 92.654456 118.689553) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55914)) + (segment (start 93.875782 120.56417) (end 93.247211 119.638528) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55912)) + (segment (start 94.539252 121.465127) (end 93.875782 120.56417) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55910)) + (segment (start 95.23665 122.340083) (end 94.539252 121.465127) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5590D)) + (segment (start 95.966961 123.187763) (end 95.23665 122.340083) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5590B)) + (segment (start 96.729117 124.006928) (end 95.966961 123.187763) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55909)) + (segment (start 140.78167 121.166875) (end 140.137989 122.025192) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5536C)) + (segment (start 141.39241 120.284815) (end 140.78167 121.166875) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5536A)) + (segment (start 141.969333 119.380276) (end 141.39241 120.284815) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55368)) + (segment (start 142.511615 118.454553) (end 141.969333 119.380276) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55366)) + (segment (start 143.018477 117.508972) (end 142.511615 118.454553) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55364)) + (segment (start 143.489194 116.544889) (end 143.018477 117.508972) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55362)) + (segment (start 143.923092 115.563683) (end 143.489194 116.544889) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5535F)) + (segment (start 144.319549 114.56676) (end 143.923092 115.563683) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5535D)) + (segment (start 144.677996 113.555549) (end 144.319549 114.56676) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5535B)) + (segment (start 144.997921 112.531498) (end 144.677996 113.555549) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55359)) + (segment (start 145.278866 111.496074) (end 144.997921 112.531498) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55357)) + (segment (start 145.520427 110.450761) (end 145.278866 111.496074) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55355)) + (segment (start 145.722259 109.397055) (end 145.520427 110.450761) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55352)) + (segment (start 145.884072 108.336466) (end 145.722259 109.397055) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55350)) + (segment (start 146.005636 107.270513) (end 145.884072 108.336466) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5534E)) + (segment (start 146.086775 106.200724) (end 146.005636 107.270513) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5534C)) + (segment (start 146.127374 105.128631) (end 146.086775 106.200724) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5534A)) + (segment (start 146.127374 104.055769) (end 146.127374 105.128631) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55348)) + (segment (start 146.086775 102.983676) (end 146.127374 104.055769) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55345)) + (segment (start 146.005636 101.913887) (end 146.086775 102.983676) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55343)) + (segment (start 145.884072 100.847934) (end 146.005636 101.913887) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55341)) + (segment (start 145.722259 99.787345) (end 145.884072 100.847934) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5533F)) + (segment (start 145.520427 98.733639) (end 145.722259 99.787345) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5533D)) + (segment (start 145.278866 97.688326) (end 145.520427 98.733639) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5533B)) + (segment (start 144.997921 96.652902) (end 145.278866 97.688326) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55338)) + (segment (start 144.677996 95.628851) (end 144.997921 96.652902) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55336)) + (segment (start 144.319549 94.61764) (end 144.677996 95.628851) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55334)) + (segment (start 143.923092 93.620717) (end 144.319549 94.61764) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55332)) + (segment (start 143.489194 92.639511) (end 143.923092 93.620717) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55330)) + (segment (start 143.018477 91.675428) (end 143.489194 92.639511) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5532E)) + (segment (start 142.511615 90.729847) (end 143.018477 91.675428) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5532B)) + (segment (start 141.969333 89.804124) (end 142.511615 90.729847) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55329)) + (segment (start 141.39241 88.899585) (end 141.969333 89.804124) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55327)) + (segment (start 140.78167 88.017525) (end 141.39241 88.899585) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55325)) + (segment (start 140.137989 87.159208) (end 140.78167 88.017525) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55323)) + (segment (start 139.46229 86.325864) (end 140.137989 87.159208) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55321)) + (segment (start 138.755539 85.518686) (end 139.46229 86.325864) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5531E)) + (segment (start 138.01875 84.738831) (end 138.755539 85.518686) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5531C)) + (segment (start 137.252977 83.987416) (end 138.01875 84.738831) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E5531A)) + (segment (start 136.459319 83.265517) (end 137.252977 83.987416) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55318)) + (segment (start 135.638911 82.574168) (end 136.459319 83.265517) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55316)) + (segment (start 134.792929 81.914359) (end 135.638911 82.574168) (width 1.016) (layer Bottom) (net 5) (tstamp 557459E55314)) + (segment (start 102.78735 105.3161) (end 103.10485 104.9986) (width 0.5) (layer Top) (net 5)) + (segment (start 89.03825 105.41) (end 88.52525 104.897) (width 0.8) (layer Top) (net 5)) + (segment (start 91.31 105.41) (end 89.03825 105.41) (width 0.8) (layer Top) (net 5)) + (segment (start 101.6 105.3161) (end 102.78735 105.3161) (width 0.8) (layer Top) (net 5)) + (segment (start 100.24735 105.3161) (end 101.6 105.3161) (width 0.8) (layer Top) (net 5)) + (segment (start 101.19735 105.3161) (end 101.6 105.3161) (width 0.5) (layer Top) (net 5)) + (segment (start 141.611736 98.121224) (end 141.611736 98.121224) (width 1.016) (layer Bottom) (net 5) (tstamp 5B6E53B2)) + (via (at 88.669547 106.68) (size 1.5) (drill 0.6) (layers Top Bottom) (net 5)) + (segment (start 103.113926 103.335161) (end 103.155456 102.55479) (width 1.016) (layer Bottom) (net 5) (tstamp 5B700515)) + (via (at 103.113926 103.335161) (size 1.5) (drill 0.6) (layers Top Bottom) (net 5)) + (segment (start 103.10485 102.76515) (end 104.775 101.095) (width 0.8) (layer Top) (net 5)) + (segment (start 103.10485 104.9986) (end 103.10485 102.76515) (width 0.8) (layer Top) (net 5)) + (segment (start 103.113926 102.608926) (end 101.6 101.095) (width 0.8) (layer Top) (net 5)) + (segment (start 103.113926 103.335161) (end 103.113926 102.608926) (width 0.5) (layer Top) (net 5)) + (segment (start 88.669547 105.041297) (end 88.52525 104.897) (width 0.5) (layer Top) (net 5)) + (segment (start 88.669547 106.68) (end 88.669547 105.041297) (width 0.8) (layer Top) (net 5)) + (segment (start 94.2039 105.3161) (end 94.11 105.41) (width 0.5) (layer Top) (net 6)) + (segment (start 98.25345 105.41) (end 98.34735 105.3161) (width 0.5) (layer Top) (net 6)) + (segment (start 94.11 105.41) (end 98.25345 105.41) (width 0.8) (layer Top) (net 6)) + (segment (start 92.71 101.26) (end 97.79 101.26) (width 0.8) (layer Top) (net 6)) + (segment (start 97.79 104.75875) (end 98.34735 105.3161) (width 0.5) (layer Top) (net 6)) + (segment (start 97.79 101.26) (end 97.79 104.75875) (width 0.8) (layer Top) (net 6)) + (segment (start 109.030491 104.009509) (end 108.585 104.455) (width 0.5) (layer Top) (net 7)) + (segment (start 111.276375 104.009509) (end 109.030491 104.009509) (width 0.5) (layer Top) (net 7)) + (segment (start 114.996 105.129134) (end 114.996 106.681065) (width 0.5) (layer Top) (net 8)) + (segment (start 113.876375 104.009509) (end 114.996 105.129134) (width 0.5) (layer Top) (net 8)) + (segment (start 110.617259 106.681065) (end 113.096 106.681065) (width 0.5) (layer Top) (net 9)) + (segment (start 104.292 111.125) (end 105.592 111.125) (width 0.5) (layer Top) (net 10)) + (segment (start 141.51601 97.63121) (end 140.405 96.5202) (width 0.5) (layer Top) (net 10)) + (segment (start 127.557625 110.832989) (end 136.028614 102.362) (width 0.5) (layer Top) (net 10)) + (segment (start 105.884011 110.832989) (end 127.557625 110.832989) (width 0.5) (layer Top) (net 10)) + (segment (start 141.51601 101.169372) (end 141.51601 97.63121) (width 0.5) (layer Top) (net 10)) + (segment (start 105.592 111.125) (end 105.884011 110.832989) (width 0.5) (layer Top) (net 10)) + (segment (start 136.028614 102.362) (end 140.323382 102.362) (width 0.5) (layer Top) (net 10)) + (segment (start 140.405 96.5202) (end 139.305 96.5202) (width 0.5) (layer Top) (net 10)) + (segment (start 140.323382 102.362) (end 141.51601 101.169372) (width 0.5) (layer Top) (net 10)) + (segment (start 101.0162 110.6932) (end 101.448 111.125) (width 0.5) (layer Top) (net 12)) + (segment (start 96.2038 110.6932) (end 101.0162 110.6932) (width 0.5) (layer Top) (net 12)) + (segment (start 124.16 88.2) (end 126.3 88.2) (width 0.5) (layer Top) (net 13)) + (segment (start 127 88.9) (end 129.54 88.9) (width 0.5) (layer Top) (net 13)) + (segment (start 126.3 88.2) (end 127 88.9) (width 0.5) (layer Top) (net 13)) + (segment (start 124.16 86.2) (end 126.525 86.2) (width 0.5) (layer Top) (net 14)) + (segment (start 127.635 85.09) (end 129.54 85.09) (width 0.5) (layer Top) (net 14)) + (segment (start 126.525 86.2) (end 127.635 85.09) (width 0.5) (layer Top) (net 14)) + (segment (start 108.966 79.014) (end 109.03 78.95) (width 0.5) (layer Top) (net 16)) + (segment (start 107.188 79.014) (end 108.966 79.014) (width 0.5) (layer Top) (net 16)) + (segment (start 123.91 82.2) (end 124.16 82.2) (width 0.5) (layer Top) (net 16)) + (segment (start 120.389998 82.2) (end 124.16 82.2) (width 0.5) (layer Top) (net 16)) + (segment (start 117.139998 78.95) (end 120.389998 82.2) (width 0.5) (layer Top) (net 16)) + (segment (start 109.03 78.95) (end 117.139998 78.95) (width 0.5) (layer Top) (net 16)) + (segment (start 124.16 82.2) (end 126.08 82.2) (width 0.5) (layer Top) (net 16)) + (segment (start 126.08 82.2) (end 126.68 81.6) (width 0.5) (layer Top) (net 16)) + (segment (start 126.68 81.6) (end 127 81.6) (width 0.5) (layer Top) (net 16)) + (segment (start 129.22 81.6) (end 129.54 81.28) (width 0.5) (layer Top) (net 16)) + (segment (start 127 81.6) (end 129.22 81.6) (width 0.5) (layer Top) (net 16)) + (segment (start 139.7 89.94) (end 139.7 90.653) (width 0.5) (layer Top) (net 16)) + (segment (start 131.04 81.28) (end 139.7 89.94) (width 0.5) (layer Top) (net 16)) + (segment (start 129.54 81.28) (end 131.04 81.28) (width 0.5) (layer Top) (net 16)) + (segment (start 107.188 81.614) (end 105.664 83.138) (width 0.5) (layer Top) (net 19)) + (segment (start 107.188 81.514) (end 107.188 81.614) (width 0.5) (layer Top) (net 19)) + (segment (start 101.915 90.705) (end 101.915 90.805) (width 0.5) (layer Top) (net 19)) + (segment (start 103.433001 89.186999) (end 101.915 90.705) (width 0.5) (layer Top) (net 19)) + (segment (start 103.433001 86.432497) (end 103.433001 89.186999) (width 0.5) (layer Top) (net 19)) + (segment (start 105.664 84.201498) (end 103.433001 86.432497) (width 0.5) (layer Top) (net 19)) + (segment (start 105.664 83.138) (end 105.664 84.201498) (width 0.5) (layer Top) (net 19)) + (segment (start 100.015 92.395) (end 101.6 93.98) (width 0.5) (layer Top) (net 20)) + (segment (start 100.015 90.805) (end 100.015 92.395) (width 0.5) (layer Top) (net 20)) + (segment (start 111.56 82.2) (end 110.84 82.2) (width 0.5) (layer Top) (net 21)) + (segment (start 110.84 82.2) (end 109.601 83.439) (width 0.5) (layer Top) (net 21)) + (segment (start 109.601 85.319) (end 108.88 86.04) (width 0.5) (layer Top) (net 21)) + (segment (start 108.88 86.04) (end 107.63 86.04) (width 0.5) (layer Top) (net 21)) + (segment (start 109.601 83.439) (end 109.601 85.319) (width 0.5) (layer Top) (net 21)) + (segment (start 109.03 81.55) (end 108.966 81.614) (width 0.5) (layer Top) (net 22)) + (segment (start 109.03 81.45) (end 109.03 81.55) (width 0.5) (layer Top) (net 22)) + (segment (start 108.966 81.614) (end 108.966 82.423) (width 0.5) (layer Top) (net 22)) + (segment (start 108.966 82.423) (end 108.077 83.312) (width 0.5) (layer Top) (net 22)) + (segment (start 108.077 83.693) (end 107.63 84.14) (width 0.5) (layer Top) (net 22)) + (segment (start 108.077 83.312) (end 108.077 83.693) (width 0.5) (layer Top) (net 22)) + (segment (start 111.05 92.71) (end 111.56 92.2) (width 0.5) (layer Top) (net 23)) + (segment (start 106.68 92.71) (end 111.05 92.71) (width 0.5) (layer Top) (net 23)) + (segment (start 114.14 86.2) (end 123.19 95.25) (width 0.5) (layer Top) (net 24)) + (segment (start 123.19 95.25) (end 123.19 95.774599) (width 0.5) (layer Top) (net 24)) + (segment (start 111.56 86.2) (end 114.14 86.2) (width 0.5) (layer Top) (net 24)) + (segment (start 123.19 98.618599) (end 123.383599 98.618599) (width 0.5) (layer Top) (net 24)) + (segment (start 123.383599 98.618599) (end 124.46 99.695) (width 0.5) (layer Top) (net 24)) + (segment (start 134.112 99.7202) (end 133.4002 99.7202) (width 0.5) (layer Top) (net 24)) + (segment (start 139.305 99.7202) (end 134.112 99.7202) (width 0.5) (layer Top) (net 24)) + (segment (start 133.4002 99.7202) (end 133.096 99.416) (width 0.5) (layer Top) (net 24)) + (segment (start 134.112 99.7202) (end 124.641501 99.7202) (width 0.5) (layer Top) (net 24)) + (segment (start 133.096 104.14) (end 133.096 102.26) (width 0.5) (layer Top) (net 24)) + (segment (start 96.2038 109.0932) (end 106.220472 109.0932) (width 0.5) (layer Top) (net 24)) + (segment (start 106.220472 109.0932) (end 107.16025 110.032978) (width 0.5) (layer Top) (net 24)) + (segment (start 107.16025 110.032978) (end 127.203022 110.032978) (width 0.5) (layer Top) (net 24)) + (segment (start 127.203022 110.032978) (end 133.096 104.14) (width 0.5) (layer Top) (net 24)) + +) diff --git a/Glas/receive_v1_1.net b/Glas/receive_v1_1.net new file mode 100644 index 0000000..e0a755f --- /dev/null +++ b/Glas/receive_v1_1.net @@ -0,0 +1,492 @@ +(export (version D) + (design + (source /home/s/Dokumente/09_KiCad/glas/V1_1/receive_v1_1.sch) + (date "Sa 11 Aug 2018 00:32:49 CEST") + (tool "Eeschema 5.0.0+dfsg1-1~bpo9+1") + (sheet (number 1) (name /) (tstamps /) + (title_block + (title) + (company) + (rev) + (date) + (source receive_v1_1.sch) + (comment (number 1) (value "")) + (comment (number 2) (value "")) + (comment (number 3) (value "")) + (comment (number 4) (value "")))) + (sheet (number 2) (name /receive_v1_1_1/) (tstamps /5B6DFACA/) + (title_block + (title) + (company) + (rev) + (date) + (source receive_v1_1_1.sch) + (comment (number 1) (value "")) + (comment (number 2) (value "")) + (comment (number 3) (value "")) + (comment (number 4) (value "")))) + (sheet (number 3) (name /receive_v1_1_2/) (tstamps /5B6DFC7E/) + (title_block + (title) + (company) + (rev) + (date) + (source receive_v1_1_2.sch) + (comment (number 1) (value "")) + (comment (number 2) (value "")) + (comment (number 3) (value "")) + (comment (number 4) (value ""))))) + (components + (comp (ref C1) + (value 4.7uF) + (footprint receive_v1_1:C1206) + (libsource (lib receive_v1_1-eagle-import) (part C-EUC1206) (description "")) + (sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/)) + (tstamp 33354583271174E6)) + (comp (ref C2) + (value 10uF) + (footprint receive_v1_1:C1206) + (libsource (lib receive_v1_1-eagle-import) (part C-EUC1206) (description "")) + (sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/)) + (tstamp A437799099D41F3B)) + (comp (ref C3) + (value 4.7uF) + (footprint receive_v1_1:C1206) + (libsource (lib receive_v1_1-eagle-import) (part C-EUC1206) (description "")) + (sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/)) + (tstamp ACEB8AA80C7BD23D)) + (comp (ref C4) + (value 100nF) + (footprint receive_v1_1:C0805) + (libsource (lib receive_v1_1-eagle-import) (part C-EUC0805) (description "")) + (sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/)) + (tstamp 18AF332D375CDECD)) + (comp (ref C5) + (value 1uF) + (footprint receive_v1_1:C0805) + (libsource (lib receive_v1_1-eagle-import) (part C-EUC0805) (description "")) + (sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/)) + (tstamp D9A42AEA629E9F7E)) + (comp (ref D1) + (value "TVS 6V8") + (footprint receive_v1_1:SMBJ) + (libsource (lib receive_v1_1-eagle-import) (part SUPPRESSOR-SMBJ) (description "")) + (sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/)) + (tstamp D34E0B9D7F8C6C1C)) + (comp (ref IC1) + (value MCP73831) + (footprint receive_v1_1:SOT23-5L) + (libsource (lib receive_v1_1-eagle-import) (part MCP73831) (description "")) + (sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/)) + (tstamp 7C8C299E06F92037)) + (comp (ref R1) + (value 2.7K) + (footprint receive_v1_1:R0805) + (libsource (lib receive_v1_1-eagle-import) (part R-EU_R0805) (description "")) + (sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/)) + (tstamp 27FD2D81B18B4CD)) + (comp (ref R2) + (value 470R) + (footprint receive_v1_1:R0805) + (libsource (lib receive_v1_1-eagle-import) (part R-EU_R0805) (description "")) + (sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/)) + (tstamp 2AF825E8B40906EE)) + (comp (ref LED1) + (value LEDCHIP-LED0805) + (footprint receive_v1_1:CHIP-LED0805) + (libsource (lib receive_v1_1-eagle-import) (part LEDCHIP-LED0805) (description "")) + (sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/)) + (tstamp 56580ACBD5D4A691)) + (comp (ref IC2) + (value WS2812) + (footprint receive_v1_1:WS2812) + (libsource (lib receive_v1_1-eagle-import) (part WS2812) (description "")) + (sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/)) + (tstamp 53D52AEB541775CA)) + (comp (ref IC3) + (value WS2812) + (footprint receive_v1_1:WS2812) + (libsource (lib receive_v1_1-eagle-import) (part WS2812) (description "")) + (sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/)) + (tstamp B33006915ED25CA7)) + (comp (ref R7) + (value 10k) + (footprint receive_v1_1:R0805) + (libsource (lib receive_v1_1-eagle-import) (part R-EU_R0805) (description "")) + (sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/)) + (tstamp BBCFCC776C012852)) + (comp (ref X1) + (value 00917?0026) + (footprint receive_v1_1:009176002) + (libsource (lib receive_v1_1-eagle-import) (part 00917?0026) (description "")) + (sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/)) + (tstamp 97C2823C753049C4)) + (comp (ref R8) + (value 100R) + (footprint receive_v1_1:R1206) + (libsource (lib receive_v1_1-eagle-import) (part R-EU_R1206) (description "")) + (sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/)) + (tstamp 3776C06BD4B64AA6)) + (comp (ref R9) + (value Jumper) + (footprint receive_v1_1:R1206) + (libsource (lib receive_v1_1-eagle-import) (part R-EU_R1206) (description "")) + (sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/)) + (tstamp 8234BE3B466A3745)) + (comp (ref C9) + (value 10uF) + (footprint receive_v1_1:C1206) + (libsource (lib receive_v1_1-eagle-import) (part C-EUC1206) (description "")) + (sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/)) + (tstamp 6FF1E0DBD736F15A)) + (comp (ref C10) + (value 10uF) + (footprint receive_v1_1:C1206) + (libsource (lib receive_v1_1-eagle-import) (part C-EUC1206) (description "")) + (sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/)) + (tstamp 21F9ED814F457455)) + (comp (ref D4) + (value SCHOTTKY-DIODESMD) + (footprint receive_v1_1:SMB) + (libsource (lib receive_v1_1-eagle-import) (part SCHOTTKY-DIODESMD) (description "")) + (sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/)) + (tstamp 378136B8DCE5EB0D)) + (comp (ref D5) + (value SCHOTTKY-DIODESMD) + (footprint receive_v1_1:SMB) + (libsource (lib receive_v1_1-eagle-import) (part SCHOTTKY-DIODESMD) (description "")) + (sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/)) + (tstamp E8A02D8F73B70CE6)) + (comp (ref TP2) + (value TestPoint) + (footprint TestPoint:TestPoint_Pad_2.0x2.0mm) + (datasheet ~) + (libsource (lib Connector) (part TestPoint) (description "test point")) + (sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/)) + (tstamp 5B6E1710)) + (comp (ref TP3) + (value TestPoint) + (footprint TestPoint:TestPoint_Pad_2.0x2.0mm) + (datasheet ~) + (libsource (lib Connector) (part TestPoint) (description "test point")) + (sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/)) + (tstamp 5B6E67FF)) + (comp (ref U$1) + (value ESP8266-03) + (footprint receive_v1_1:ESP-03) + (libsource (lib receive_v1_1-eagle-import) (part ESP8266-03) (description "")) + (sheetpath (names /receive_v1_1_2/) (tstamps /5B6DFC7E/)) + (tstamp 850A8AB0BABD3B23)) + (comp (ref R4) + (value 10k) + (footprint receive_v1_1:R0805) + (libsource (lib receive_v1_1-eagle-import) (part R-EU_R0805) (description "")) + (sheetpath (names /receive_v1_1_2/) (tstamps /5B6DFC7E/)) + (tstamp 23E57F8398DC0D12)) + (comp (ref D2) + (value BAT60J) + (footprint receive_v1_1:SOD323_ST) + (libsource (lib receive_v1_1-eagle-import) (part BAT60J) (description "")) + (sheetpath (names /receive_v1_1_2/) (tstamps /5B6DFC7E/)) + (tstamp 4C475A1A20478EC3)) + (comp (ref R5) + (value 1k) + (footprint receive_v1_1:R0805) + (libsource (lib receive_v1_1-eagle-import) (part R-EU_R0805) (description "")) + (sheetpath (names /receive_v1_1_2/) (tstamps /5B6DFC7E/)) + (tstamp CCADE161F5E59E3A)) + (comp (ref R6) + (value 1k) + (footprint receive_v1_1:R0805) + (libsource (lib receive_v1_1-eagle-import) (part R-EU_R0805) (description "")) + (sheetpath (names /receive_v1_1_2/) (tstamps /5B6DFC7E/)) + (tstamp EF632DAE64669C67)) + (comp (ref C6) + (value 1uF) + (footprint receive_v1_1:C0805) + (libsource (lib receive_v1_1-eagle-import) (part C-EUC0805) (description "")) + (sheetpath (names /receive_v1_1_2/) (tstamps /5B6DFC7E/)) + (tstamp A3ABC6EF65EADBD0)) + (comp (ref D3) + (value BAT60J) + (footprint receive_v1_1:SOD323_ST) + (libsource (lib receive_v1_1-eagle-import) (part BAT60J) (description "")) + (sheetpath (names /receive_v1_1_2/) (tstamps /5B6DFC7E/)) + (tstamp 40D44ED439967F7A)) + (comp (ref C7) + (value 100nF) + (footprint receive_v1_1:C0805) + (libsource (lib receive_v1_1-eagle-import) (part C-EUC0805) (description "")) + (sheetpath (names /receive_v1_1_2/) (tstamps /5B6DFC7E/)) + (tstamp EBEB2313A6F2A611)) + (comp (ref C8) + (value 4,7uF) + (footprint receive_v1_1:C1210) + (libsource (lib receive_v1_1-eagle-import) (part C-EUC1210) (description "")) + (sheetpath (names /receive_v1_1_2/) (tstamps /5B6DFC7E/)) + (tstamp A7C735F03607F4DE)) + (comp (ref TP1) + (value TestPoint) + (footprint TestPoint:TestPoint_Pad_2.0x2.0mm) + (datasheet ~) + (libsource (lib Connector) (part TestPoint) (description "test point")) + (sheetpath (names /receive_v1_1_2/) (tstamps /5B6DFC7E/)) + (tstamp 5B70A1B5)) + (comp (ref TP5) + (value TestPoint) + (footprint TestPoint:TestPoint_Pad_2.0x2.0mm) + (datasheet ~) + (libsource (lib Connector) (part TestPoint) (description "test point")) + (sheetpath (names /receive_v1_1_2/) (tstamps /5B6DFC7E/)) + (tstamp 5B6E0753)) + (comp (ref TP6) + (value TestPoint) + (footprint TestPoint:TestPoint_Pad_2.0x2.0mm) + (datasheet ~) + (libsource (lib Connector) (part TestPoint) (description "test point")) + (sheetpath (names /receive_v1_1_2/) (tstamps /5B6DFC7E/)) + (tstamp 5B6E0D07)) + (comp (ref TP4) + (value TestPoint) + (footprint TestPoint:TestPoint_Pad_2.0x2.0mm) + (datasheet ~) + (libsource (lib Connector) (part TestPoint) (description "test point")) + (sheetpath (names /receive_v1_1_2/) (tstamps /5B6DFC7E/)) + (tstamp 5B6E346D))) + (libparts + (libpart (lib Connector) (part TestPoint) + (description "test point") + (docs ~) + (footprints + (fp Pin*) + (fp Test*)) + (fields + (field (name Reference) TP) + (field (name Value) TestPoint)) + (pins + (pin (num 1) (name 1) (type passive)))) + (libpart (lib receive_v1_1-eagle-import) (part 00917?0026) + (fields + (field (name Reference) X) + (field (name Value) 00917?0026)) + (pins + (pin (num 1) (name 1) (type passive)) + (pin (num 2) (name 2) (type passive)))) + (libpart (lib receive_v1_1-eagle-import) (part BAT60J) + (fields + (field (name Reference) D) + (field (name Value) BAT60J)) + (pins + (pin (num A) (name A) (type passive)) + (pin (num C) (name C) (type passive)))) + (libpart (lib receive_v1_1-eagle-import) (part C-EUC0805) + (fields + (field (name Reference) C) + (field (name Value) C-EUC0805)) + (pins + (pin (num 1) (name 1) (type passive)) + (pin (num 2) (name 2) (type passive)))) + (libpart (lib receive_v1_1-eagle-import) (part C-EUC1206) + (fields + (field (name Reference) C) + (field (name Value) C-EUC1206)) + (pins + (pin (num 1) (name 1) (type passive)) + (pin (num 2) (name 2) (type passive)))) + (libpart (lib receive_v1_1-eagle-import) (part C-EUC1210) + (fields + (field (name Reference) C) + (field (name Value) C-EUC1210)) + (pins + (pin (num 1) (name 1) (type passive)) + (pin (num 2) (name 2) (type passive)))) + (libpart (lib receive_v1_1-eagle-import) (part ESP8266-03) + (fields + (field (name Value) ESP8266-03)) + (pins + (pin (num ANT) (name ANT) (type unspc)) + (pin (num CH_PD) (name CH_PD) (type unspc)) + (pin (num GND) (name GND) (type unspc)) + (pin (num GPIO0) (name GPIO0) (type unspc)) + (pin (num GPIO2) (name GPIO2) (type unspc)) + (pin (num GPIO12) (name GPIO12) (type unspc)) + (pin (num GPIO13) (name GPIO13) (type unspc)) + (pin (num GPIO14) (name GPIO14) (type unspc)) + (pin (num GPIO15) (name GPIO15) (type unspc)) + (pin (num GPIO18) (name GPIO18) (type unspc)) + (pin (num NC) (name NC) (type unspc)) + (pin (num URXD) (name URXD) (type unspc)) + (pin (num UTXD) (name UTXD) (type unspc)) + (pin (num VCC) (name VCC) (type unspc)))) + (libpart (lib receive_v1_1-eagle-import) (part LEDCHIP-LED0805) + (fields + (field (name Reference) LED) + (field (name Value) LEDCHIP-LED0805)) + (pins + (pin (num A) (name A) (type passive)) + (pin (num C) (name C) (type passive)))) + (libpart (lib receive_v1_1-eagle-import) (part MCP73831) + (fields + (field (name Reference) IC) + (field (name Value) MCP73831)) + (pins + (pin (num 1) (name STAT) (type unspc)) + (pin (num 2) (name VSS) (type unspc)) + (pin (num 3) (name VBAT) (type unspc)) + (pin (num 4) (name VDD) (type unspc)) + (pin (num 5) (name PROG) (type unspc)))) + (libpart (lib receive_v1_1-eagle-import) (part R-EU_R0805) + (fields + (field (name Reference) R) + (field (name Value) R-EU_R0805)) + (pins + (pin (num 1) (name 1) (type passive)) + (pin (num 2) (name 2) (type passive)))) + (libpart (lib receive_v1_1-eagle-import) (part R-EU_R1206) + (fields + (field (name Reference) R) + (field (name Value) R-EU_R1206)) + (pins + (pin (num 1) (name 1) (type passive)) + (pin (num 2) (name 2) (type passive)))) + (libpart (lib receive_v1_1-eagle-import) (part SCHOTTKY-DIODESMD) + (fields + (field (name Reference) D) + (field (name Value) SCHOTTKY-DIODESMD)) + (pins + (pin (num A) (name A) (type passive)) + (pin (num C) (name C) (type passive)))) + (libpart (lib receive_v1_1-eagle-import) (part SUPPRESSOR-SMBJ) + (fields + (field (name Reference) D) + (field (name Value) SUPPRESSOR-SMBJ)) + (pins + (pin (num A) (name A) (type passive)) + (pin (num C) (name C) (type passive)))) + (libpart (lib receive_v1_1-eagle-import) (part WS2812) + (fields + (field (name Reference) IC) + (field (name Value) WS2812)) + (pins + (pin (num 1) (name DOUT) (type output)) + (pin (num 2) (name DIN) (type input)) + (pin (num 3) (name VCNTL) (type power_in)) + (pin (num 5) (name VLED) (type power_in)) + (pin (num 6) (name GND) (type power_in))))) + (libraries + (library (logical Connector) + (uri /usr/share/kicad/library/Connector.lib)) + (library (logical receive_v1_1-eagle-import) + (uri /home/s/Dokumente/09_KiCad/glas/V1_1/receive_v1_1-eagle-import.lib))) + (nets + (net (code 1) (name "Net-(IC1-Pad1)") + (node (ref IC1) (pin 1)) + (node (ref R2) (pin 1))) + (net (code 2) (name VCC) + (node (ref IC3) (pin 5)) + (node (ref TP2) (pin 1)) + (node (ref C3) (pin 1)) + (node (ref X1) (pin 1)) + (node (ref C7) (pin 1)) + (node (ref C8) (pin 1)) + (node (ref U$1) (pin VCC)) + (node (ref IC2) (pin 5)) + (node (ref IC1) (pin 3))) + (net (code 3) (name PWR_IN) + (node (ref IC1) (pin 4)) + (node (ref C4) (pin 1)) + (node (ref R7) (pin 2)) + (node (ref C9) (pin 1)) + (node (ref LED1) (pin A)) + (node (ref D1) (pin C)) + (node (ref C6) (pin 1)) + (node (ref C2) (pin 1)) + (node (ref D4) (pin C))) + (net (code 4) (name "Net-(IC1-Pad5)") + (node (ref IC1) (pin 5)) + (node (ref R1) (pin 2))) + (net (code 5) (name "Net-(LED1-PadC)") + (node (ref R2) (pin 2)) + (node (ref LED1) (pin C))) + (net (code 6) (name DOUT) + (node (ref U$1) (pin GPIO2)) + (node (ref IC2) (pin 2))) + (net (code 7) (name "Net-(IC3-Pad1)") + (node (ref IC3) (pin 1))) + (net (code 8) (name "Net-(IC2-Pad1)") + (node (ref R8) (pin 1)) + (node (ref IC2) (pin 1))) + (net (code 9) (name "Net-(IC3-Pad2)") + (node (ref IC3) (pin 2)) + (node (ref R8) (pin 2))) + (net (code 10) (name /receive_v1_1_1/PWR_LED) + (node (ref IC2) (pin 3)) + (node (ref IC3) (pin 3))) + (net (code 11) (name "Net-(C1-Pad1)") + (node (ref D4) (pin A)) + (node (ref D5) (pin C)) + (node (ref C1) (pin 1)) + (node (ref C5) (pin 2))) + (net (code 12) (name /receive_v1_1_1/IND) + (node (ref C1) (pin 2)) + (node (ref C10) (pin 1)) + (node (ref C5) (pin 1)) + (node (ref C9) (pin 2))) + (net (code 13) (name GND) + (node (ref U$1) (pin GND)) + (node (ref U$1) (pin GPIO15)) + (node (ref C7) (pin 2)) + (node (ref C8) (pin 2)) + (node (ref R4) (pin 1)) + (node (ref R7) (pin 1)) + (node (ref R9) (pin 1)) + (node (ref R9) (pin 2)) + (node (ref IC3) (pin 6)) + (node (ref X1) (pin 2)) + (node (ref TP3) (pin 1)) + (node (ref D5) (pin A)) + (node (ref C10) (pin 2)) + (node (ref C3) (pin 2)) + (node (ref C2) (pin 2)) + (node (ref IC2) (pin 6)) + (node (ref R1) (pin 1)) + (node (ref IC1) (pin 2)) + (node (ref D1) (pin A)) + (node (ref C4) (pin 2))) + (net (code 14) (name "Net-(D3-PadA)") + (node (ref R6) (pin 2)) + (node (ref D3) (pin A))) + (net (code 15) (name "Net-(C6-Pad2)") + (node (ref R5) (pin 2)) + (node (ref C6) (pin 2))) + (net (code 16) (name "Net-(D2-PadA)") + (node (ref D2) (pin A)) + (node (ref R5) (pin 1))) + (net (code 17) (name /receive_v1_1_2/PWR_LED) + (node (ref U$1) (pin GPIO13))) + (net (code 18) (name "Net-(TP4-Pad1)") + (node (ref TP4) (pin 1)) + (node (ref U$1) (pin GPIO0))) + (net (code 19) (name "Net-(D2-PadC)") + (node (ref U$1) (pin CH_PD)) + (node (ref R4) (pin 2)) + (node (ref TP1) (pin 1)) + (node (ref D2) (pin C)) + (node (ref D3) (pin C))) + (net (code 20) (name /receive_v1_1_2/TXD) + (node (ref U$1) (pin UTXD)) + (node (ref TP6) (pin 1))) + (net (code 21) (name /receive_v1_1_2/RXD) + (node (ref TP5) (pin 1)) + (node (ref U$1) (pin URXD))) + (net (code 22) (name "Net-(U$1-PadANT)") + (node (ref U$1) (pin ANT))) + (net (code 23) (name "Net-(U$1-PadNC)") + (node (ref U$1) (pin NC))) + (net (code 24) (name "Net-(U$1-PadGPIO18)") + (node (ref U$1) (pin GPIO18))) + (net (code 25) (name GPIO14) + (node (ref R6) (pin 1)) + (node (ref U$1) (pin GPIO14))) + (net (code 26) (name "Net-(U$1-PadGPIO12)") + (node (ref U$1) (pin GPIO12))))) \ No newline at end of file diff --git a/Glas/receive_v1_1.pretty/009176002.kicad_mod b/Glas/receive_v1_1.pretty/009176002.kicad_mod new file mode 100644 index 0000000..d77f30d --- /dev/null +++ b/Glas/receive_v1_1.pretty/009176002.kicad_mod @@ -0,0 +1,110 @@ +(module 009176002 (layer F.Cu) (tedit 0) + (descr "Wire to Board Strip IDC Connector 2 WAY

\nSource: http://www.avx.com/docs/Catalogs/9176.pdf") + (fp_text reference X1 (at -3.75 -2.75) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_text value 009176002 (at -3.75 4) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_line (start 3.9169 2.4454) (end 3.0327 2.4454) (layer F.Fab) (width 0.1016)) + (fp_line (start 3.0327 2.4454) (end 0.9694 2.4454) (layer F.Fab) (width 0.1016)) + (fp_line (start 0.9694 2.4454) (end -0.9127 2.4454) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.9127 2.4454) (end -2.976 2.4454) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.976 2.4454) (end -3.9171 2.4454) (layer F.Fab) (width 0.1016)) + (fp_line (start -3.9171 2.4454) (end -3.9171 -2.4563) (layer F.SilkS) (width 0.1016)) + (fp_line (start -3.9171 -2.4563) (end -2.976 -2.4563) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.976 -2.4563) (end -1.4476 -2.4563) (layer F.Fab) (width 0.1016)) + (fp_line (start -1.4476 -2.4563) (end -0.9127 -2.4563) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.9127 -2.4563) (end 0.9694 -2.4563) (layer F.Fab) (width 0.1016)) + (fp_line (start 0.9694 -2.4563) (end 3.0327 -2.4563) (layer F.Fab) (width 0.1016)) + (fp_line (start 3.0327 -2.4563) (end 3.9169 -2.4563) (layer F.Fab) (width 0.1016)) + (fp_line (start 3.9169 -2.4563) (end 3.9169 2.4454) (layer F.SilkS) (width 0.1016)) + (fp_line (start 3.0327 2.4454) (end 3.0327 2.0415) (layer F.Fab) (width 0.1016)) + (fp_line (start 3.0327 2.0415) (end 3.0327 1.2664) (layer F.Fab) (width 0.1016)) + (fp_line (start 3.0327 1.2664) (end 3.0327 0.7205) (layer F.Fab) (width 0.1016)) + (fp_line (start 3.0327 0.7205) (end 3.0327 -0.7314) (layer F.Fab) (width 0.1016)) + (fp_line (start 3.0327 -0.7314) (end 3.0327 -1.2773) (layer F.Fab) (width 0.1016)) + (fp_line (start 3.0327 -1.2773) (end 3.0327 -2.0305) (layer F.Fab) (width 0.1016)) + (fp_line (start 3.0327 -2.0305) (end 3.0327 -2.4563) (layer F.Fab) (width 0.1016)) + (fp_line (start 0.9694 2.4454) (end 0.9694 2.0415) (layer F.Fab) (width 0.1016)) + (fp_line (start 0.9694 2.0415) (end 0.9694 1.2664) (layer F.Fab) (width 0.1016)) + (fp_line (start 0.9694 1.2664) (end 0.9694 0.7205) (layer F.Fab) (width 0.1016)) + (fp_line (start 0.9694 0.7205) (end 0.9694 -0.7314) (layer F.Fab) (width 0.1016)) + (fp_line (start 0.9694 -0.7314) (end 0.9694 -1.2773) (layer F.Fab) (width 0.1016)) + (fp_line (start 0.9694 -1.2773) (end 0.9694 -2.0305) (layer F.Fab) (width 0.1016)) + (fp_line (start 0.9694 -2.0305) (end 0.9694 -2.4563) (layer F.Fab) (width 0.1016)) + (fp_line (start 0.9694 2.0415) (end 1.4716 2.0415) (layer F.Fab) (width 0.1016)) + (fp_line (start 1.4716 2.0415) (end 1.4825 2.0415) (layer F.Fab) (width 0.1016)) + (fp_line (start 1.4825 2.0415) (end 1.4825 2.4454) (layer F.Fab) (width 0.1016)) + (fp_line (start 1.4716 2.0415) (end 2.4759 2.0415) (layer F.Fab) (width 0.1016)) + (fp_line (start 2.4759 2.0415) (end 2.4868 2.0415) (layer F.Fab) (width 0.1016)) + (fp_line (start 2.4868 2.0415) (end 2.4868 2.4454) (layer F.Fab) (width 0.1016)) + (fp_line (start 2.4759 2.0415) (end 3.0327 2.0415) (layer F.Fab) (width 0.1016)) + (fp_line (start 3.0327 0.7205) (end 2.3558 0.7205) (layer F.Fab) (width 0.1016)) + (fp_line (start 2.3558 0.7205) (end 1.6353 0.7205) (layer F.Fab) (width 0.1016)) + (fp_line (start 1.6353 0.7205) (end 0.9694 0.7205) (layer F.Fab) (width 0.1016)) + (fp_line (start 0.9694 1.2664) (end 1.6353 1.2664) (layer F.Fab) (width 0.1016)) + (fp_line (start 1.6353 1.2664) (end 2.3558 1.2664) (layer F.Fab) (width 0.1016)) + (fp_line (start 2.3558 1.2664) (end 3.0327 1.2664) (layer F.Fab) (width 0.1016)) + (fp_line (start 2.3558 1.2664) (end 2.3558 0.7205) (layer F.Fab) (width 0.1016)) + (fp_line (start 1.6353 1.2664) (end 1.6353 0.7205) (layer F.Fab) (width 0.1016)) + (fp_line (start 0.9694 -0.7314) (end 1.6244 -0.7314) (layer F.Fab) (width 0.1016)) + (fp_line (start 1.6244 -0.7314) (end 2.3558 -0.7314) (layer F.Fab) (width 0.1016)) + (fp_line (start 2.3558 -0.7314) (end 3.0327 -0.7314) (layer F.Fab) (width 0.1016)) + (fp_line (start 3.0327 -1.2773) (end 2.3558 -1.2773) (layer F.Fab) (width 0.1016)) + (fp_line (start 2.3558 -1.2773) (end 1.6244 -1.2773) (layer F.Fab) (width 0.1016)) + (fp_line (start 1.6244 -1.2773) (end 0.9694 -1.2773) (layer F.Fab) (width 0.1016)) + (fp_line (start 1.6244 -0.7314) (end 1.6244 -1.2773) (layer F.Fab) (width 0.1016)) + (fp_line (start 2.3558 -0.7314) (end 2.3558 -1.2773) (layer F.Fab) (width 0.1016)) + (fp_line (start 3.0327 -2.0305) (end 2.4978 -2.0305) (layer F.Fab) (width 0.1016)) + (fp_line (start 2.4978 -2.0305) (end 1.4934 -2.0305) (layer F.Fab) (width 0.1016)) + (fp_line (start 1.4934 -2.0305) (end 0.9694 -2.0305) (layer F.Fab) (width 0.1016)) + (fp_line (start 1.4934 -2.0305) (end 1.4934 -2.4563) (layer F.Fab) (width 0.1016)) + (fp_line (start 2.4978 -2.0305) (end 2.4978 -2.4563) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.9127 2.4454) (end -0.9127 2.0415) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.9127 2.0415) (end -0.9127 1.2664) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.9127 1.2664) (end -0.9127 0.7205) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.9127 0.7205) (end -0.9127 -0.7314) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.9127 -0.7314) (end -0.9127 -1.2773) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.9127 -1.2773) (end -0.9127 -2.0305) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.9127 -2.0305) (end -0.9127 -2.4563) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.976 2.4454) (end -2.976 2.0415) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.976 2.0415) (end -2.976 1.2664) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.976 1.2664) (end -2.976 0.7205) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.976 0.7205) (end -2.976 -0.7314) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.976 -0.7314) (end -2.976 -1.2773) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.976 -1.2773) (end -2.976 -2.0305) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.976 -2.0305) (end -2.976 -2.4563) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.976 2.0415) (end -2.4738 2.0415) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.4738 2.0415) (end -2.4629 2.0415) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.4629 2.0415) (end -2.4629 2.4454) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.4738 2.0415) (end -1.4695 2.0415) (layer F.Fab) (width 0.1016)) + (fp_line (start -1.4695 2.0415) (end -1.4586 2.0415) (layer F.Fab) (width 0.1016)) + (fp_line (start -1.4586 2.0415) (end -1.4586 2.4454) (layer F.Fab) (width 0.1016)) + (fp_line (start -1.4695 2.0415) (end -0.9127 2.0415) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.9127 0.7205) (end -1.5896 0.7205) (layer F.Fab) (width 0.1016)) + (fp_line (start -1.5896 0.7205) (end -2.3101 0.7205) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.3101 0.7205) (end -2.976 0.7205) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.976 1.2664) (end -2.3101 1.2664) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.3101 1.2664) (end -1.5896 1.2664) (layer F.Fab) (width 0.1016)) + (fp_line (start -1.5896 1.2664) (end -0.9127 1.2664) (layer F.Fab) (width 0.1016)) + (fp_line (start -1.5896 1.2664) (end -1.5896 0.7205) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.3101 1.2664) (end -2.3101 0.7205) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.976 -0.7314) (end -2.321 -0.7314) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.321 -0.7314) (end -1.5896 -0.7314) (layer F.Fab) (width 0.1016)) + (fp_line (start -1.5896 -0.7314) (end -0.9127 -0.7314) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.9127 -1.2773) (end -1.5896 -1.2773) (layer F.Fab) (width 0.1016)) + (fp_line (start -1.5896 -1.2773) (end -2.321 -1.2773) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.321 -1.2773) (end -2.976 -1.2773) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.321 -0.7314) (end -2.321 -1.2773) (layer F.Fab) (width 0.1016)) + (fp_line (start -1.5896 -0.7314) (end -1.5896 -1.2773) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.9127 -2.0305) (end -1.4476 -2.0305) (layer F.Fab) (width 0.1016)) + (fp_line (start -1.4476 -2.0305) (end -2.452 -2.0305) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.452 -2.0305) (end -2.976 -2.0305) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.452 -2.0305) (end -2.452 -2.4563) (layer F.Fab) (width 0.1016)) + (fp_line (start -1.4476 -2.0305) (end -1.4476 -2.4563) (layer F.Fab) (width 0.1016)) + (pad 1 smd rect (at -2 0) (size 3 5) (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.1016)) + (pad 2 smd rect (at 2 0) (size 3 5) (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.1016)) +) diff --git a/Glas/receive_v1_1.pretty/C0805.kicad_mod b/Glas/receive_v1_1.pretty/C0805.kicad_mod new file mode 100644 index 0000000..c135d58 --- /dev/null +++ b/Glas/receive_v1_1.pretty/C0805.kicad_mod @@ -0,0 +1,22 @@ +(module C0805 (layer F.Cu) (tedit 0) + (descr CAPACITOR

) + (fp_text reference C7 (at -1.27 -1.27) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_text value 100nF (at -1.27 2.54) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_line (start -1.973 -0.983) (end 1.973 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 1.973 0.983) (end -1.973 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -1.973 0.983) (end -1.973 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -0.381 -0.66) (end 0.381 -0.66) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.356 0.66) (end 0.381 0.66) (layer F.Fab) (width 0.1016)) + (fp_line (start 1.973 -0.983) (end 1.973 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_poly (pts (xy -1.0922 0.7239) (xy -0.3421 0.7239) (xy -0.3421 -0.7262) (xy -1.0922 -0.7262)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy 0.3556 0.7239) (xy 1.1057 0.7239) (xy 1.1057 -0.7262) (xy 0.3556 -0.7262)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -0.1001 0.4001) (xy 0.1001 0.4001) (xy 0.1001 -0.4001) (xy -0.1001 -0.4001)) (layer F.Adhes) (width 0)) + (pad 1 smd rect (at -0.95 0) (size 1.3 1.5) (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.1016)) + (pad 2 smd rect (at 0.95 0) (size 1.3 1.5) (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.1016)) +) diff --git a/Glas/receive_v1_1.pretty/C1206.kicad_mod b/Glas/receive_v1_1.pretty/C1206.kicad_mod new file mode 100644 index 0000000..1401413 --- /dev/null +++ b/Glas/receive_v1_1.pretty/C1206.kicad_mod @@ -0,0 +1,22 @@ +(module C1206 (layer F.Cu) (tedit 0) + (descr CAPACITOR) + (fp_text reference C10 (at -1.27 -1.27) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_text value 10uF (at -1.27 2.54) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_line (start -2.473 -0.983) (end 2.473 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 2.473 0.983) (end -2.473 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -2.473 0.983) (end -2.473 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 2.473 -0.983) (end 2.473 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -0.965 -0.787) (end 0.965 -0.787) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.965 0.787) (end 0.965 0.787) (layer F.Fab) (width 0.1016)) + (fp_poly (pts (xy -1.7018 0.8509) (xy -0.9517 0.8509) (xy -0.9517 -0.8491) (xy -1.7018 -0.8491)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy 0.9517 0.8491) (xy 1.7018 0.8491) (xy 1.7018 -0.8509) (xy 0.9517 -0.8509)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -0.1999 0.4001) (xy 0.1999 0.4001) (xy 0.1999 -0.4001) (xy -0.1999 -0.4001)) (layer F.Adhes) (width 0)) + (pad 1 smd rect (at -1.4 0) (size 1.6 1.8) (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.1016)) + (pad 2 smd rect (at 1.4 0) (size 1.6 1.8) (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.1016)) +) diff --git a/Glas/receive_v1_1.pretty/C1210.kicad_mod b/Glas/receive_v1_1.pretty/C1210.kicad_mod new file mode 100644 index 0000000..e2f29b9 --- /dev/null +++ b/Glas/receive_v1_1.pretty/C1210.kicad_mod @@ -0,0 +1,22 @@ +(module C1210 (layer F.Cu) (tedit 0) + (descr CAPACITOR) + (fp_text reference C8 (at -1.905 -1.905) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_text value 4,7uF (at -1.905 3.175) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_line (start -2.473 -1.483) (end 2.473 -1.483) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 2.473 1.483) (end -2.473 1.483) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -2.473 1.483) (end -2.473 -1.483) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -0.9652 -1.2446) (end 0.9652 -1.2446) (layer F.Fab) (width 0.1016)) + (fp_line (start -0.9652 1.2446) (end 0.9652 1.2446) (layer F.Fab) (width 0.1016)) + (fp_line (start 2.473 -1.483) (end 2.473 1.483) (layer Dwgs.User) (width 0.0508)) + (fp_poly (pts (xy -1.7018 1.2954) (xy -0.9517 1.2954) (xy -0.9517 -1.3045) (xy -1.7018 -1.3045)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy 0.9517 1.3045) (xy 1.7018 1.3045) (xy 1.7018 -1.2954) (xy 0.9517 -1.2954)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -0.1999 0.4001) (xy 0.1999 0.4001) (xy 0.1999 -0.4001) (xy -0.1999 -0.4001)) (layer F.Adhes) (width 0)) + (pad 1 smd rect (at -1.4 0) (size 1.6 2.7) (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.1016)) + (pad 2 smd rect (at 1.4 0) (size 1.6 2.7) (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.1016)) +) diff --git a/Glas/receive_v1_1.pretty/CHIP-LED0805.kicad_mod b/Glas/receive_v1_1.pretty/CHIP-LED0805.kicad_mod new file mode 100644 index 0000000..d8f5322 --- /dev/null +++ b/Glas/receive_v1_1.pretty/CHIP-LED0805.kicad_mod @@ -0,0 +1,20 @@ +(module CHIP-LED0805 (layer F.Cu) (tedit 0) + (descr "Hyper CHIPLED Hyper-Bright LED

\nLB R99A
\nSource: http://www.osram.convergy.de/ ... lb_r99a.pdf") + (fp_text reference LED1 (at -1.27 1.27 90) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_text value "" (at 2.54 1.27 90) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_line (start -0.625 -0.45) (end -0.625 0.45) (layer F.Fab) (width 0.1016)) + (fp_line (start 0.625 -0.45) (end 0.625 0.475) (layer F.Fab) (width 0.1016)) + (fp_poly (pts (xy -0.675 0) (xy -0.525 0) (xy -0.525 -0.3) (xy -0.675 -0.3)) (layer F.SilkS) (width 0)) + (fp_poly (pts (xy 0.525 0) (xy 0.675 0) (xy 0.675 -0.3) (xy 0.525 -0.3)) (layer F.SilkS) (width 0)) + (fp_poly (pts (xy -0.15 0) (xy 0.15 0) (xy 0.15 -0.3) (xy -0.15 -0.3)) (layer F.SilkS) (width 0)) + (fp_poly (pts (xy -0.675 -0.45) (xy 0.675 -0.45) (xy 0.675 -1.05) (xy -0.675 -1.05)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -0.675 1.05) (xy 0.675 1.05) (xy 0.675 0.45) (xy -0.675 0.45)) (layer F.Fab) (width 0)) + (pad C smd rect (at 0 -1.05) (size 1.2 1.2) (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.1016)) + (pad A smd rect (at 0 1.05) (size 1.2 1.2) (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.1016)) +) diff --git a/Glas/receive_v1_1.pretty/ESP-03.kicad_mod b/Glas/receive_v1_1.pretty/ESP-03.kicad_mod new file mode 100644 index 0000000..c731dc7 --- /dev/null +++ b/Glas/receive_v1_1.pretty/ESP-03.kicad_mod @@ -0,0 +1,53 @@ +(module ESP-03 (layer F.Cu) (tedit 0) + (fp_text reference U$1 (at 0 0) (layer F.SilkS) hide + (effects (font (size 1.27 1.27) (thickness 0.15)) (justify right top)) + ) + (fp_text value ESP8266-03 (at 0 0) (layer F.SilkS) hide + (effects (font (size 1.27 1.27) (thickness 0.15)) (justify right top)) + ) + (fp_line (start 17.4 0) (end 17.4 -12.2) (layer F.SilkS) (width 0.127)) + (fp_line (start 0 0) (end 0 -12.2) (layer F.SilkS) (width 0.127)) + (fp_line (start 0 -12.2) (end 17.4 -12.2) (layer F.SilkS) (width 0.127)) + (fp_poly (pts (xy 0.6 -0.6) (xy 2.6 -0.6) (xy 2.6 -11.4) (xy 0.6 -11.4)) (layer F.SilkS) (width 0)) + (fp_line (start 0 0) (end 17.4 0) (layer F.SilkS) (width 0.127)) + (fp_line (start 5.8 -7.4) (end 5.8 -2.6) (layer F.SilkS) (width 0.127)) + (fp_line (start 5.8 -2.6) (end 10.8 -2.6) (layer F.SilkS) (width 0.127)) + (fp_line (start 10.8 -2.6) (end 10.8 -7.4) (layer F.SilkS) (width 0.127)) + (fp_line (start 10.8 -7.4) (end 5.8 -7.4) (layer F.SilkS) (width 0.127)) + (fp_line (start 11 -10.8) (end 11 -8.4) (layer F.SilkS) (width 0.127)) + (fp_line (start 11 -8.4) (end 13.6 -8.4) (layer F.SilkS) (width 0.127)) + (fp_line (start 13.6 -8.4) (end 13.6 -10.8) (layer F.SilkS) (width 0.127)) + (fp_line (start 13.6 -10.8) (end 11 -10.8) (layer F.SilkS) (width 0.127)) + (fp_line (start 12.2 -7.4) (end 12.2 -2.6) (layer F.SilkS) (width 0.127)) + (fp_line (start 12.2 -2.6) (end 17.2 -2.6) (layer F.SilkS) (width 0.127)) + (fp_line (start 17.2 -2.6) (end 17.2 -7.4) (layer F.SilkS) (width 0.127)) + (fp_line (start 17.2 -7.4) (end 12.2 -7.4) (layer F.SilkS) (width 0.127)) + (pad VCC smd rect (at 4 0.2 90) (size 1.5 1) (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.1016)) + (pad GPIO14 smd rect (at 6 0.2 90) (size 1.5 1) (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.1016)) + (pad GPIO12 smd rect (at 8 0.2 90) (size 1.5 1) (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.1016)) + (pad GPIO13 smd rect (at 10 0.2 90) (size 1.5 1) (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.1016)) + (pad GPIO15 smd rect (at 12 0.2 90) (size 1.5 1) (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.1016)) + (pad GPIO2 smd rect (at 14 0.2 90) (size 1.5 1) (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.1016)) + (pad GPIO0 smd rect (at 16 0.2 90) (size 1.5 1) (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.1016)) + (pad ANT smd rect (at 4 -12.4 90) (size 1.5 1) (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.1016)) + (pad CH_PD smd rect (at 6 -12.4 90) (size 1.5 1) (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.1016)) + (pad GPIO18 smd rect (at 8 -12.4 90) (size 1.5 1) (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.1016)) + (pad URXD smd rect (at 10 -12.4 90) (size 1.5 1) (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.1016)) + (pad UTXD smd rect (at 12 -12.4 90) (size 1.5 1) (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.1016)) + (pad NC smd rect (at 14 -12.4 90) (size 1.5 1) (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.1016)) + (pad GND smd rect (at 16 -12.4 90) (size 1.5 1) (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.1016)) +) diff --git a/Glas/receive_v1_1.pretty/MA03-1.kicad_mod b/Glas/receive_v1_1.pretty/MA03-1.kicad_mod new file mode 100644 index 0000000..1399d7d --- /dev/null +++ b/Glas/receive_v1_1.pretty/MA03-1.kicad_mod @@ -0,0 +1,41 @@ +(module MA03-1 (layer F.Cu) (tedit 0) + (descr "PIN HEADER") + (fp_text reference SV2 (at -3.81 -1.651) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.127)) (justify right top)) + ) + (fp_text value "" (at -3.81 2.921) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.127)) (justify right top)) + ) + (fp_line (start -3.175 -1.27) (end -1.905 -1.27) (layer F.SilkS) (width 0.1524)) + (fp_line (start -1.905 -1.27) (end -1.27 -0.635) (layer F.SilkS) (width 0.1524)) + (fp_line (start -1.27 0.635) (end -1.905 1.27) (layer F.SilkS) (width 0.1524)) + (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.SilkS) (width 0.1524)) + (fp_line (start -0.635 -1.27) (end 0.635 -1.27) (layer F.SilkS) (width 0.1524)) + (fp_line (start 0.635 -1.27) (end 1.27 -0.635) (layer F.SilkS) (width 0.1524)) + (fp_line (start 1.27 0.635) (end 0.635 1.27) (layer F.SilkS) (width 0.1524)) + (fp_line (start 0.635 1.27) (end -0.635 1.27) (layer F.SilkS) (width 0.1524)) + (fp_line (start -0.635 1.27) (end -1.27 0.635) (layer F.SilkS) (width 0.1524)) + (fp_line (start -3.81 -0.635) (end -3.81 0.635) (layer F.SilkS) (width 0.1524)) + (fp_line (start -3.175 -1.27) (end -3.81 -0.635) (layer F.SilkS) (width 0.1524)) + (fp_line (start -3.81 0.635) (end -3.175 1.27) (layer F.SilkS) (width 0.1524)) + (fp_line (start -1.905 1.27) (end -3.175 1.27) (layer F.SilkS) (width 0.1524)) + (fp_line (start 1.27 -0.635) (end 1.905 -1.27) (layer F.SilkS) (width 0.1524)) + (fp_line (start 1.905 -1.27) (end 3.175 -1.27) (layer F.SilkS) (width 0.1524)) + (fp_line (start 3.175 -1.27) (end 3.81 -0.635) (layer F.SilkS) (width 0.1524)) + (fp_line (start 3.81 0.635) (end 3.175 1.27) (layer F.SilkS) (width 0.1524)) + (fp_line (start 3.175 1.27) (end 1.905 1.27) (layer F.SilkS) (width 0.1524)) + (fp_line (start 1.905 1.27) (end 1.27 0.635) (layer F.SilkS) (width 0.1524)) + (fp_line (start 3.81 -0.635) (end 3.81 0.635) (layer F.SilkS) (width 0.1524)) + (fp_text user 1 (at -5.08 0.635) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.127)) (justify left bottom)) + ) + (fp_poly (pts (xy -0.254 0.254) (xy 0.254 0.254) (xy 0.254 -0.254) (xy -0.254 -0.254)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -2.794 0.254) (xy -2.286 0.254) (xy -2.286 -0.254) (xy -2.794 -0.254)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy 2.286 0.254) (xy 2.794 0.254) (xy 2.794 -0.254) (xy 2.286 -0.254)) (layer F.Fab) (width 0)) + (pad 1 thru_hole oval (at -2.54 0 90) (size 3.048 1.524) (drill 1.016) (layers *.Cu *.Mask) + (solder_mask_margin 0.1016)) + (pad 2 thru_hole oval (at 0 0 90) (size 3.048 1.524) (drill 1.016) (layers *.Cu *.Mask) + (solder_mask_margin 0.1016)) + (pad 3 thru_hole oval (at 2.54 0 90) (size 3.048 1.524) (drill 1.016) (layers *.Cu *.Mask) + (solder_mask_margin 0.1016)) +) diff --git a/Glas/receive_v1_1.pretty/R0805.kicad_mod b/Glas/receive_v1_1.pretty/R0805.kicad_mod new file mode 100644 index 0000000..00f83d8 --- /dev/null +++ b/Glas/receive_v1_1.pretty/R0805.kicad_mod @@ -0,0 +1,22 @@ +(module R0805 (layer F.Cu) (tedit 0) + (descr RESISTOR

) + (fp_text reference R7 (at -0.635 -1.27) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_text value 10k (at -0.635 2.54) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_line (start -0.41 -0.635) (end 0.41 -0.635) (layer F.Fab) (width 0.1524)) + (fp_line (start -0.41 0.635) (end 0.41 0.635) (layer F.Fab) (width 0.1524)) + (fp_line (start -1.973 -0.983) (end 1.973 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 1.973 -0.983) (end 1.973 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 1.973 0.983) (end -1.973 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -1.973 0.983) (end -1.973 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_poly (pts (xy 0.4064 0.6985) (xy 1.0564 0.6985) (xy 1.0564 -0.7015) (xy 0.4064 -0.7015)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -1.0668 0.6985) (xy -0.4168 0.6985) (xy -0.4168 -0.7015) (xy -1.0668 -0.7015)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -0.1999 0.5001) (xy 0.1999 0.5001) (xy 0.1999 -0.5001) (xy -0.1999 -0.5001)) (layer F.Adhes) (width 0)) + (pad 1 smd rect (at -0.95 0) (size 1.3 1.5) (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.1016)) + (pad 2 smd rect (at 0.95 0) (size 1.3 1.5) (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.1016)) +) diff --git a/Glas/receive_v1_1.pretty/R1206.kicad_mod b/Glas/receive_v1_1.pretty/R1206.kicad_mod new file mode 100644 index 0000000..fbba7ab --- /dev/null +++ b/Glas/receive_v1_1.pretty/R1206.kicad_mod @@ -0,0 +1,22 @@ +(module R1206 (layer F.Cu) (tedit 0) + (descr RESISTOR) + (fp_text reference R9 (at -1.27 -1.27) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_text value Jumper (at -1.27 2.54) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_line (start 0.9525 0.8128) (end -0.9652 0.8128) (layer F.Fab) (width 0.1524)) + (fp_line (start 0.9525 -0.8128) (end -0.9652 -0.8128) (layer F.Fab) (width 0.1524)) + (fp_line (start -2.473 -0.983) (end 2.473 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 2.473 -0.983) (end 2.473 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start 2.473 0.983) (end -2.473 0.983) (layer Dwgs.User) (width 0.0508)) + (fp_line (start -2.473 0.983) (end -2.473 -0.983) (layer Dwgs.User) (width 0.0508)) + (fp_poly (pts (xy -1.6891 0.8763) (xy -0.9525 0.8763) (xy -0.9525 -0.8763) (xy -1.6891 -0.8763)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy 0.9525 0.8763) (xy 1.6891 0.8763) (xy 1.6891 -0.8763) (xy 0.9525 -0.8763)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -0.3 0.7) (xy 0.3 0.7) (xy 0.3 -0.7) (xy -0.3 -0.7)) (layer F.Adhes) (width 0)) + (pad 2 smd rect (at 1.422 0) (size 1.6 1.803) (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.1016)) + (pad 1 smd rect (at -1.422 0) (size 1.6 1.803) (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.1016)) +) diff --git a/Glas/receive_v1_1.pretty/SMB.kicad_mod b/Glas/receive_v1_1.pretty/SMB.kicad_mod new file mode 100644 index 0000000..949d7b5 --- /dev/null +++ b/Glas/receive_v1_1.pretty/SMB.kicad_mod @@ -0,0 +1,23 @@ +(module SMB (layer F.Cu) (tedit 0) + (descr DIODE) + (fp_text reference D5 (at -2.159 -2.159) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_text value "" (at -2.159 3.429) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_line (start -2.2606 -1.905) (end 2.2606 -1.905) (layer F.SilkS) (width 0.1016)) + (fp_line (start -2.2606 1.905) (end 2.2606 1.905) (layer F.SilkS) (width 0.1016)) + (fp_line (start -2.2606 1.905) (end -2.2606 -1.905) (layer F.Fab) (width 0.1016)) + (fp_line (start 2.2606 1.905) (end 2.2606 -1.905) (layer F.Fab) (width 0.1016)) + (fp_line (start 0.193 -1) (end -0.83 0) (layer F.SilkS) (width 0.2032)) + (fp_line (start -0.83 0) (end 0.193 1) (layer F.SilkS) (width 0.2032)) + (fp_line (start 0.193 1) (end 0.193 -1) (layer F.SilkS) (width 0.2032)) + (fp_poly (pts (xy -2.794 1.0922) (xy -2.2606 1.0922) (xy -2.2606 -1.0922) (xy -2.794 -1.0922)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy 2.2606 1.0922) (xy 2.794 1.0922) (xy 2.794 -1.0922) (xy 2.2606 -1.0922)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -1.35 1.9) (xy -0.8 1.9) (xy -0.8 -1.9) (xy -1.35 -1.9)) (layer F.Fab) (width 0)) + (pad C smd rect (at -2.2 0) (size 2.4 2.4) (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.1016)) + (pad A smd rect (at 2.2 0) (size 2.4 2.4) (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.1016)) +) diff --git a/Glas/receive_v1_1.pretty/SMBJ.kicad_mod b/Glas/receive_v1_1.pretty/SMBJ.kicad_mod new file mode 100644 index 0000000..ed409cf --- /dev/null +++ b/Glas/receive_v1_1.pretty/SMBJ.kicad_mod @@ -0,0 +1,19 @@ +(module SMBJ (layer F.Cu) (tedit 0) + (descr "DO-214AA Modified J_BEND

\nSource: www.rsonline.de .. SMBJ12/C/15/C/24/C/30/C/5.0/C/7.5/C Voltage Suppressor. Data Sheet") + (fp_text reference D1 (at -1.905 -2.54) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_text value "TVS 6V8" (at -1.905 3.81) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_line (start 2.24 -1.92) (end 2.24 1.92) (layer F.Fab) (width 0.1016)) + (fp_line (start 2.24 1.92) (end -2.24 1.92) (layer F.SilkS) (width 0.1016)) + (fp_line (start -2.24 1.92) (end -2.24 -1.92) (layer F.Fab) (width 0.1016)) + (fp_line (start -2.24 -1.92) (end 2.24 -1.92) (layer F.SilkS) (width 0.1016)) + (fp_poly (pts (xy -2.8 1.1) (xy -2.25 1.1) (xy -2.25 -1.1) (xy -2.8 -1.1)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy 2.25 1.1) (xy 2.8 1.1) (xy 2.8 -1.1) (xy 2.25 -1.1)) (layer F.Fab) (width 0)) + (pad C smd rect (at -2.03 0) (size 1.78 2.16) (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.1016)) + (pad A smd rect (at 2.04 0 180) (size 1.78 2.16) (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.1016)) +) diff --git a/Glas/receive_v1_1.pretty/SOD323_ST.kicad_mod b/Glas/receive_v1_1.pretty/SOD323_ST.kicad_mod new file mode 100644 index 0000000..e18788f --- /dev/null +++ b/Glas/receive_v1_1.pretty/SOD323_ST.kicad_mod @@ -0,0 +1,21 @@ +(module SOD323_ST (layer F.Cu) (tedit 0) + (descr "SOD-323

\nSource: www.st.com, BAT60J.pdf") + (fp_text reference D3 (at -1.65 -0.75) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_text value BAT60J (at -1.65 2) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom)) + ) + (fp_line (start -0.85 -0.55) (end 0.85 -0.55) (layer F.SilkS) (width 0.1016)) + (fp_line (start 0.85 -0.55) (end 0.85 0.55) (layer F.Fab) (width 0.1016)) + (fp_line (start 0.85 0.55) (end -0.85 0.55) (layer F.SilkS) (width 0.1016)) + (fp_line (start -0.85 0.55) (end -0.85 -0.55) (layer F.Fab) (width 0.1016)) + (fp_poly (pts (xy -0.65 0.55) (xy -0.05 0.55) (xy -0.05 -0.55) (xy -0.65 -0.55)) (layer F.SilkS) (width 0)) + (fp_poly (pts (xy -1.35 0.15) (xy -0.8 0.15) (xy -0.8 -0.15) (xy -1.35 -0.15)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy 0.8 0.15) (xy 1.35 0.15) (xy 1.35 -0.15) (xy 0.8 -0.15)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -0.85 0.55) (xy -0.05 0.55) (xy -0.05 -0.55) (xy -0.85 -0.55)) (layer F.Fab) (width 0)) + (pad C smd rect (at -1.25 0) (size 0.8 0.6) (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.1016)) + (pad A smd rect (at 1.25 0) (size 0.8 0.6) (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.1016)) +) diff --git a/Glas/receive_v1_1.pretty/SOT23-5L.kicad_mod b/Glas/receive_v1_1.pretty/SOT23-5L.kicad_mod new file mode 100644 index 0000000..f62b3b8 --- /dev/null +++ b/Glas/receive_v1_1.pretty/SOT23-5L.kicad_mod @@ -0,0 +1,35 @@ +(module SOT23-5L (layer F.Cu) (tedit 0) + (descr "Small Outline Transistor

\npackage type OT") + (fp_text reference IC1 (at -1.905 -1.905) (layer F.SilkS) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_text value MCP73831 (at -1.905 3.429) (layer F.Fab) + (effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top)) + ) + (fp_line (start 1.422 -0.81) (end 1.422 0.81) (layer F.SilkS) (width 0.1524)) + (fp_line (start 1.422 0.81) (end -1.422 0.81) (layer F.Fab) (width 0.1524)) + (fp_line (start -1.422 0.81) (end -1.422 -0.81) (layer F.SilkS) (width 0.1524)) + (fp_line (start -1.422 -0.81) (end 1.422 -0.81) (layer F.Fab) (width 0.1524)) + (fp_line (start -0.522 -0.81) (end 0.522 -0.81) (layer F.SilkS) (width 0.1524)) + (fp_line (start -0.428 0.81) (end -0.522 0.81) (layer F.SilkS) (width 0.1524)) + (fp_line (start 0.522 0.81) (end 0.428 0.81) (layer F.SilkS) (width 0.1524)) + (fp_line (start -1.328 0.81) (end -1.422 0.81) (layer F.SilkS) (width 0.1524)) + (fp_line (start 1.422 0.81) (end 1.328 0.81) (layer F.SilkS) (width 0.1524)) + (fp_line (start 1.328 -0.81) (end 1.422 -0.81) (layer F.SilkS) (width 0.1524)) + (fp_line (start -1.422 -0.81) (end -1.328 -0.81) (layer F.SilkS) (width 0.1524)) + (fp_poly (pts (xy -1.2 1.5) (xy -0.7 1.5) (xy -0.7 0.85) (xy -1.2 0.85)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -0.25 1.5) (xy 0.25 1.5) (xy 0.25 0.85) (xy -0.25 0.85)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy 0.7 1.5) (xy 1.2 1.5) (xy 1.2 0.85) (xy 0.7 0.85)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy 0.7 -0.85) (xy 1.2 -0.85) (xy 1.2 -1.5) (xy 0.7 -1.5)) (layer F.Fab) (width 0)) + (fp_poly (pts (xy -1.2 -0.85) (xy -0.7 -0.85) (xy -0.7 -1.5) (xy -1.2 -1.5)) (layer F.Fab) (width 0)) + (pad 1 smd rect (at -0.95 1.3) (size 0.55 1.2) (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.1016)) + (pad 2 smd rect (at 0 1.3) (size 0.55 1.2) (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.1016)) + (pad 3 smd rect (at 0.95 1.3) (size 0.55 1.2) (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.1016)) + (pad 4 smd rect (at 0.95 -1.3) (size 0.55 1.2) (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.1016)) + (pad 5 smd rect (at -0.95 -1.3) (size 0.55 1.2) (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.1016)) +) diff --git a/Glas/receive_v1_1.pretty/WS2812.kicad_mod b/Glas/receive_v1_1.pretty/WS2812.kicad_mod new file mode 100644 index 0000000..52b12b8 --- /dev/null +++ b/Glas/receive_v1_1.pretty/WS2812.kicad_mod @@ -0,0 +1,31 @@ +(module WS2812 (layer F.Cu) (tedit 0) + (fp_text reference IC3 (at -1.53 0.32) (layer F.SilkS) + (effects (font (size 0.57912 0.57912) (thickness 0.048768)) (justify right top)) + ) + (fp_text value WS2812WS2812 (at 0 0) (layer F.SilkS) hide + (effects (font (size 1.27 1.27) (thickness 0.15)) (justify right top)) + ) + (fp_line (start -2.5 2.5) (end 2.5 2.5) (layer F.SilkS) (width 0.127)) + (fp_line (start 2.5 2.5) (end 2.5 -2.5) (layer F.SilkS) (width 0.127)) + (fp_line (start 2.5 -2.5) (end -2.2 -2.5) (layer F.SilkS) (width 0.127)) + (fp_line (start -2.2 -2.5) (end -2.5 -2.5) (layer F.SilkS) (width 0.127)) + (fp_line (start -2.5 -2.5) (end -2.5 -2.2) (layer F.SilkS) (width 0.127)) + (fp_poly (pts (xy -2.7 -1.1) (xy -1.7 -1.1) (xy -1.7 -2.1) (xy -2.7 -2.1)) (layer Dwgs.User) (width 0)) + (fp_poly (pts (xy 1.7 -1.1) (xy 2.7 -1.1) (xy 2.7 -2.1) (xy 1.7 -2.1)) (layer Dwgs.User) (width 0)) + (fp_poly (pts (xy -2.7 0.5) (xy -1.7 0.5) (xy -1.7 -0.5) (xy -2.7 -0.5)) (layer Dwgs.User) (width 0)) + (fp_poly (pts (xy -2.7 2.1) (xy -1.7 2.1) (xy -1.7 1.1) (xy -2.7 1.1)) (layer Dwgs.User) (width 0)) + (fp_poly (pts (xy 1.7 0.5) (xy 2.7 0.5) (xy 2.7 -0.5) (xy 1.7 -0.5)) (layer Dwgs.User) (width 0)) + (fp_poly (pts (xy 1.7 2.1) (xy 2.7 2.1) (xy 2.7 1.1) (xy 1.7 1.1)) (layer Dwgs.User) (width 0)) + (fp_line (start -2.5 -2.2) (end -2.5 2.5) (layer F.SilkS) (width 0.127)) + (fp_line (start -2.2 -2.5) (end -2.5 -2.2) (layer F.SilkS) (width 0.127)) + (pad 3 smd rect (at -2.3 1.6) (size 1.2 1) (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.1016)) + (pad 2 smd rect (at -2.3 0) (size 1.2 1) (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.1016)) + (pad 1 smd rect (at -2.3 -1.6) (size 1.2 1) (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.1016)) + (pad 5 smd rect (at 2.3 0) (size 1.2 1) (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.1016)) + (pad 6 smd rect (at 2.3 -1.6) (size 1.2 1) (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.1016)) +) diff --git a/Glas/receive_v1_1.pro b/Glas/receive_v1_1.pro new file mode 100644 index 0000000..4e89017 --- /dev/null +++ b/Glas/receive_v1_1.pro @@ -0,0 +1,43 @@ +update=Mo 21 Jan 2019 20:16:43 CET +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +[pcbnew] +version=1 +PageLayoutDescrFile= +LastNetListRead=receive_v1_1.net +PadDrill=0.762 +PadDrillOvalY=0.762 +PadSizeH=1.524 +PadSizeV=1.524 +PcbTextSizeV=1.5 +PcbTextSizeH=1.5 +PcbTextThickness=0.3 +ModuleTextSizeV=1 +ModuleTextSizeH=1 +ModuleTextSizeThickness=0.15 +SolderMaskClearance=0.2 +SolderMaskMinWidth=0 +DrawSegmentWidth=0.2 +BoardOutlineThickness=0.15 +ModuleOutlineThickness=0.15 +[schematic_editor] +version=1 +PageLayoutDescrFile=empty.kicad_wks +PlotDirectoryName= +SubpartIdSeparator=0 +SubpartFirstId=65 +NetFmtName= +SpiceAjustPassiveValues=0 +LabSize=50 +ERC_TestSimilarLabels=1 diff --git a/Glas/receive_v1_1.sch b/Glas/receive_v1_1.sch new file mode 100644 index 0000000..692aa58 --- /dev/null +++ b/Glas/receive_v1_1.sch @@ -0,0 +1,29 @@ +EESchema Schematic File Version 4 +LIBS:receive_v1_1-cache +EELAYER 26 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 3 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Sheet +S 1000 1000 500 150 +U 5B6DFACA +F0 "receive_v1_1_1" 50 +F1 "receive_v1_1_1.sch" 50 +$EndSheet +$Sheet +S 3000 1000 500 150 +U 5B6DFC7E +F0 "receive_v1_1_2" 50 +F1 "receive_v1_1_2.sch" 50 +$EndSheet +$EndSCHEMATC diff --git a/Glas/receive_v1_1_1.sch b/Glas/receive_v1_1_1.sch new file mode 100644 index 0000000..cc75968 --- /dev/null +++ b/Glas/receive_v1_1_1.sch @@ -0,0 +1,641 @@ +EESchema Schematic File Version 4 +LIBS:receive_v1_1-cache +EELAYER 26 0 +EELAYER END +$Descr User 11774 8268 +encoding utf-8 +Sheet 2 3 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +Wire Wire Line + 2700 2900 2700 2800 +Wire Wire Line + 2700 2800 1900 2800 +Wire Wire Line + 3600 2900 3600 2800 +Wire Wire Line + 3600 2800 3600 2500 +Wire Wire Line + 2700 2800 3600 2800 +Connection ~ 2700 2800 +Text Label 1900 2800 2 56 ~ 0 +IND +Connection ~ 3600 2800 +Wire Wire Line + 2200 3300 1900 3300 +Text Label 1900 3300 2 56 ~ 0 +IND +Wire Wire Line + 2700 3300 2500 3300 +Wire Wire Line + 2700 3200 2700 3300 +Wire Wire Line + 3200 3300 3000 3300 +Wire Wire Line + 3000 3300 2700 3300 +Wire Wire Line + 3200 2000 3000 2000 +Wire Wire Line + 3000 2000 3000 3300 +Connection ~ 2700 3300 +Connection ~ 3000 3300 +Wire Wire Line + 3400 3300 3600 3300 +Wire Wire Line + 3600 3300 4100 3300 +Wire Wire Line + 4100 3300 4800 3300 +Wire Wire Line + 4800 3300 5100 3300 +Wire Wire Line + 5100 3300 5400 3300 +Wire Wire Line + 5400 3300 5400 2800 +Wire Wire Line + 4100 2800 4100 3300 +Wire Wire Line + 5100 2800 5100 3300 +Wire Wire Line + 7200 2900 7400 2900 +Wire Wire Line + 7400 2900 7400 3300 +Wire Wire Line + 7400 3300 5400 3300 +Wire Wire Line + 7400 3300 7700 3300 +Wire Wire Line + 7700 3300 8200 3300 +Wire Wire Line + 8200 3300 8200 3000 +Wire Wire Line + 7700 3200 7700 3300 +Wire Wire Line + 8200 3300 8300 3300 +Wire Wire Line + 8700 3300 9000 3300 +Wire Wire Line + 9300 3000 8700 3000 +Wire Wire Line + 8700 3000 8700 3300 +Wire Wire Line + 4800 2900 4800 3300 +Wire Wire Line + 3600 3200 3600 3300 +Connection ~ 4100 3300 +Connection ~ 5100 3300 +Connection ~ 5400 3300 +Connection ~ 7400 3300 +Connection ~ 7700 3300 +Connection ~ 8200 3300 +Connection ~ 8700 3300 +Text GLabel 9000 3300 2 56 BiDi ~ 0 +GND +Connection ~ 4800 3300 +Connection ~ 3600 3300 +Wire Wire Line + 3300 6000 3300 6100 +Text GLabel 3300 6000 0 10 BiDi ~ 0 +GND +Wire Wire Line + 4200 6100 4200 6000 +Text GLabel 4200 6100 0 10 BiDi ~ 0 +GND +Wire Wire Line + 6500 4700 6400 4700 +Wire Wire Line + 6400 4700 6400 4800 +Text GLabel 6500 4700 0 10 BiDi ~ 0 +GND +Wire Wire Line + 6900 4700 7000 4700 +Wire Wire Line + 7000 4700 7000 4800 +Text GLabel 6900 4700 0 10 BiDi ~ 0 +GND +Wire Wire Line + 3600 2000 4100 2000 +Wire Wire Line + 4100 2000 4800 2000 +Wire Wire Line + 4800 2000 5100 2000 +Wire Wire Line + 5100 2000 5100 2500 +Wire Wire Line + 5100 2000 5400 2000 +Wire Wire Line + 5400 2000 5400 2500 +Wire Wire Line + 4100 2600 4100 2000 +Wire Wire Line + 6400 2600 6300 2600 +Wire Wire Line + 6300 2600 6300 2000 +Wire Wire Line + 6300 2000 5900 2000 +Wire Wire Line + 5900 2000 5400 2000 +Wire Wire Line + 5900 2100 5900 2000 +Wire Wire Line + 4800 2500 4800 2000 +Wire Wire Line + 6300 2000 6600 2000 +Wire Wire Line + 3600 2200 3600 2000 +Wire Wire Line + 3600 2000 3400 2000 +Connection ~ 5100 2000 +Connection ~ 4100 2000 +Connection ~ 5400 2000 +Connection ~ 5900 2000 +Connection ~ 4800 2000 +Connection ~ 6300 2000 +Text GLabel 6600 2000 2 56 BiDi ~ 0 +PWR_IN +Connection ~ 3600 2000 +Wire Wire Line + 7200 2500 8200 2500 +Wire Wire Line + 8200 2500 8200 2700 +Wire Wire Line + 8200 2500 8300 2500 +Wire Wire Line + 8700 2500 9000 2500 +Wire Wire Line + 9300 2900 8700 2900 +Wire Wire Line + 8700 2900 8700 2500 +Connection ~ 8200 2500 +Connection ~ 8700 2500 +Text GLabel 9000 2500 2 56 BiDi ~ 0 +VCC +Wire Wire Line + 7200 2700 7700 2700 +Wire Wire Line + 7700 2700 7700 2800 +Wire Wire Line + 6400 2800 6300 2800 +Wire Wire Line + 6300 2800 6300 3000 +Wire Wire Line + 6300 3000 5900 3000 +Wire Wire Line + 5900 3000 5900 2900 +Wire Wire Line + 5900 2500 5900 2400 +Wire Wire Line + 3600 4100 3700 4100 +Wire Wire Line + 3700 4100 3700 4000 +Wire Wire Line + 3700 4000 4000 4000 +Wire Wire Line + 2800 4000 3000 4000 +Text GLabel 2800 4000 0 56 BiDi ~ 0 +DOUT +Wire Wire Line + 4400 4000 4600 4000 +$Comp +L receive_v1_1-eagle-import:A4L-LOC #FRAME1 +U 1 0 AC7AE1DC73DA64CA +P 900 6600 +AR Path="/AC7AE1DC73DA64CA" Ref="#FRAME1" Part="1" +AR Path="/5B6DFACA/AC7AE1DC73DA64CA" Ref="#FRAME1" Part="1" +F 0 "#FRAME1" H 900 6600 50 0001 C CNN +F 1 "A4L-LOC" H 900 6600 50 0001 C CNN +F 2 "" H 900 6600 50 0001 C CNN +F 3 "" H 900 6600 50 0001 C CNN + 1 900 6600 + 1 0 0 -1 +$EndComp +$Comp +L receive_v1_1-eagle-import:C-EUC1206 C1 +U 1 0 33354583271174E6 +P 2400 3300 +AR Path="/33354583271174E6" Ref="C1" Part="1" +AR Path="/5B6DFACA/33354583271174E6" Ref="C1" Part="1" +F 0 "C1" H 2460 3315 59 0000 L BNN +F 1 "4,7u" H 2460 3115 59 0000 L BNN +F 2 "receive_v1_1:C1206" H 2400 3300 50 0001 C CNN +F 3 "" H 2400 3300 50 0001 C CNN + 1 2400 3300 + 0 1 1 0 +$EndComp +$Comp +L receive_v1_1-eagle-import:C-EUC1206 C2 +U 1 0 A437799099D41F3B +P 5100 2600 +AR Path="/A437799099D41F3B" Ref="C2" Part="1" +AR Path="/5B6DFACA/A437799099D41F3B" Ref="C2" Part="1" +F 0 "C2" H 5160 2615 59 0000 L BNN +F 1 "10uF" H 5160 2415 59 0000 L BNN +F 2 "receive_v1_1:C1206" H 5100 2600 50 0001 C CNN +F 3 "" H 5100 2600 50 0001 C CNN + 1 5100 2600 + 1 0 0 -1 +$EndComp +$Comp +L receive_v1_1-eagle-import:C-EUC1206 C3 +U 1 0 ACEB8AA80C7BD23D +P 8200 2800 +AR Path="/ACEB8AA80C7BD23D" Ref="C3" Part="1" +AR Path="/5B6DFACA/ACEB8AA80C7BD23D" Ref="C3" Part="1" +F 0 "C3" H 8260 2815 59 0000 L BNN +F 1 "4.7uF" H 8260 2615 59 0000 L BNN +F 2 "receive_v1_1:C1206" H 8200 2800 50 0001 C CNN +F 3 "" H 8200 2800 50 0001 C CNN + 1 8200 2800 + 1 0 0 -1 +$EndComp +$Comp +L receive_v1_1-eagle-import:C-EUC0805 C4 +U 1 0 18AF332D375CDECD +P 5400 2600 +AR Path="/18AF332D375CDECD" Ref="C4" Part="1" +AR Path="/5B6DFACA/18AF332D375CDECD" Ref="C4" Part="1" +F 0 "C4" H 5460 2615 59 0000 L BNN +F 1 "100nF" H 5460 2415 59 0000 L BNN +F 2 "receive_v1_1:C0805" H 5400 2600 50 0001 C CNN +F 3 "" H 5400 2600 50 0001 C CNN + 1 5400 2600 + 1 0 0 -1 +$EndComp +$Comp +L receive_v1_1-eagle-import:C-EUC0805 C5 +U 1 0 D9A42AEA629E9F7E +P 2700 3000 +AR Path="/D9A42AEA629E9F7E" Ref="C5" Part="1" +AR Path="/5B6DFACA/D9A42AEA629E9F7E" Ref="C5" Part="1" +F 0 "C5" H 2760 3015 59 0000 L BNN +F 1 "330n" H 2760 2815 59 0000 L BNN +F 2 "receive_v1_1:C0805" H 2700 3000 50 0001 C CNN +F 3 "" H 2700 3000 50 0001 C CNN + 1 2700 3000 + 1 0 0 -1 +$EndComp +$Comp +L receive_v1_1-eagle-import:SUPPRESSOR-SMBJ D1 +U 1 0 D34E0B9D7F8C6C1C +P 4100 2700 +AR Path="/D34E0B9D7F8C6C1C" Ref="D1" Part="1" +AR Path="/5B6DFACA/D34E0B9D7F8C6C1C" Ref="D1" Part="1" +F 0 "D1" H 4210 2775 59 0000 L BNN +F 1 "TVS 6V8" H 4210 2665 59 0000 L BNN +F 2 "receive_v1_1:SMBJ" H 4100 2700 50 0001 C CNN +F 3 "" H 4100 2700 50 0001 C CNN + 1 4100 2700 + 1 0 0 -1 +$EndComp +$Comp +L receive_v1_1-eagle-import:MCP73831 IC1 +U 1 0 7C8C299E06F92037 +P 6800 2700 +AR Path="/7C8C299E06F92037" Ref="IC1" Part="1" +AR Path="/5B6DFACA/7C8C299E06F92037" Ref="IC1" Part="1" +F 0 "IC1" H 6600 3000 59 0000 L BNN +F 1 "MCP73831" H 6600 2300 59 0000 L BNN +F 2 "receive_v1_1:SOT23-5L" H 6800 2700 50 0001 C CNN +F 3 "" H 6800 2700 50 0001 C CNN + 1 6800 2700 + 1 0 0 -1 +$EndComp +$Comp +L receive_v1_1-eagle-import:R-EU_R0805 R1 +U 1 0 27FD2D81B18B4CD +P 7700 3000 +AR Path="/27FD2D81B18B4CD" Ref="R1" Part="1" +AR Path="/5B6DFACA/27FD2D81B18B4CD" Ref="R1" Part="1" +F 0 "R1" H 7550 3059 59 0000 L BNN +F 1 "2.7K" H 7550 2870 59 0000 L BNN +F 2 "receive_v1_1:R0805" H 7700 3000 50 0001 C CNN +F 3 "" H 7700 3000 50 0001 C CNN + 1 7700 3000 + 0 -1 -1 0 +$EndComp +$Comp +L receive_v1_1-eagle-import:R-EU_R0805 R2 +U 1 0 2AF825E8B40906EE +P 5900 2700 +AR Path="/2AF825E8B40906EE" Ref="R2" Part="1" +AR Path="/5B6DFACA/2AF825E8B40906EE" Ref="R2" Part="1" +F 0 "R2" H 5750 2759 59 0000 L BNN +F 1 "1K" H 5750 2570 59 0000 L BNN +F 2 "receive_v1_1:R0805" H 5900 2700 50 0001 C CNN +F 3 "" H 5900 2700 50 0001 C CNN + 1 5900 2700 + 0 -1 -1 0 +$EndComp +$Comp +L receive_v1_1-eagle-import:LEDCHIP-LED0805 LED1 +U 1 0 56580ACBD5D4A691 +P 5900 2200 +AR Path="/56580ACBD5D4A691" Ref="LED1" Part="1" +AR Path="/5B6DFACA/56580ACBD5D4A691" Ref="LED1" Part="1" +F 0 "LED1" V 6040 2020 59 0000 L BNN +F 1 "LEDCHIP-LED0805" V 6125 2020 59 0000 L BNN +F 2 "receive_v1_1:CHIP-LED0805" H 5900 2200 50 0001 C CNN +F 3 "" H 5900 2200 50 0001 C CNN + 1 5900 2200 + 1 0 0 -1 +$EndComp +$Comp +L receive_v1_1-eagle-import:WS2812 IC2 +U 1 0 53D52AEB541775CA +P 3300 4000 +AR Path="/53D52AEB541775CA" Ref="IC2" Part="1" +AR Path="/5B6DFACA/53D52AEB541775CA" Ref="IC2" Part="1" +F 0 "IC2" H 3200 3940 59 0000 L BNN +F 1 "WS2812" H 3300 4000 50 0001 C CNN +F 2 "receive_v1_1:WS2812" H 3300 4000 50 0001 C CNN +F 3 "" H 3300 4000 50 0001 C CNN + 1 3300 4000 + 1 0 0 -1 +$EndComp +$Comp +L receive_v1_1-eagle-import:WS2812 IC2 +U 2 0 53D52AEB541775C6 +P 3300 5500 +AR Path="/53D52AEB541775C6" Ref="IC2" Part="2" +AR Path="/5B6DFACA/53D52AEB541775C6" Ref="IC2" Part="2" +F 0 "IC2" H 3200 5440 59 0000 L BNN +F 1 "WS2812" H 3300 5500 50 0001 C CNN +F 2 "receive_v1_1:WS2812" H 3300 5500 50 0001 C CNN +F 3 "" H 3300 5500 50 0001 C CNN + 2 3300 5500 + 1 0 0 -1 +$EndComp +$Comp +L receive_v1_1-eagle-import:WS2812 IC3 +U 1 0 B33006915ED25CA7 +P 4900 4000 +AR Path="/B33006915ED25CA7" Ref="IC3" Part="1" +AR Path="/5B6DFACA/B33006915ED25CA7" Ref="IC3" Part="1" +F 0 "IC3" H 4800 3940 59 0000 L BNN +F 1 "WS2812" H 4900 4000 50 0001 C CNN +F 2 "receive_v1_1:WS2812" H 4900 4000 50 0001 C CNN +F 3 "" H 4900 4000 50 0001 C CNN + 1 4900 4000 + 1 0 0 -1 +$EndComp +$Comp +L receive_v1_1-eagle-import:WS2812 IC3 +U 2 0 B33006915ED25CAB +P 4200 5500 +AR Path="/B33006915ED25CAB" Ref="IC3" Part="2" +AR Path="/5B6DFACA/B33006915ED25CAB" Ref="IC3" Part="2" +F 0 "IC3" H 4100 5440 59 0000 L BNN +F 1 "WS2812" H 4200 5500 50 0001 C CNN +F 2 "receive_v1_1:WS2812" H 4200 5500 50 0001 C CNN +F 3 "" H 4200 5500 50 0001 C CNN + 2 4200 5500 + 1 0 0 -1 +$EndComp +$Comp +L receive_v1_1-eagle-import:GND #GND5 +U 1 0 D2D9FA1DEF27308A +P 3300 6200 +AR Path="/D2D9FA1DEF27308A" Ref="#GND5" Part="1" +AR Path="/5B6DFACA/D2D9FA1DEF27308A" Ref="#GND05" Part="1" +F 0 "#GND05" H 3300 6200 50 0001 C CNN +F 1 "GND" H 3200 6100 59 0000 L BNN +F 2 "" H 3300 6200 50 0001 C CNN +F 3 "" H 3300 6200 50 0001 C CNN + 1 3300 6200 + 1 0 0 -1 +$EndComp +$Comp +L receive_v1_1-eagle-import:GND #GND6 +U 1 0 714A278CA07C0193 +P 4200 6200 +AR Path="/714A278CA07C0193" Ref="#GND6" Part="1" +AR Path="/5B6DFACA/714A278CA07C0193" Ref="#GND06" Part="1" +F 0 "#GND06" H 4200 6200 50 0001 C CNN +F 1 "GND" H 4100 6100 59 0000 L BNN +F 2 "" H 4200 6200 50 0001 C CNN +F 3 "" H 4200 6200 50 0001 C CNN + 1 4200 6200 + 1 0 0 -1 +$EndComp +$Comp +L receive_v1_1-eagle-import:R-EU_R0805 R7 +U 1 0 BBCFCC776C012852 +P 4800 2700 +AR Path="/BBCFCC776C012852" Ref="R7" Part="1" +AR Path="/5B6DFACA/BBCFCC776C012852" Ref="R7" Part="1" +F 0 "R7" H 4650 2759 59 0000 L BNN +F 1 "10k" H 4650 2570 59 0000 L BNN +F 2 "receive_v1_1:R0805" H 4800 2700 50 0001 C CNN +F 3 "" H 4800 2700 50 0001 C CNN + 1 4800 2700 + 0 -1 -1 0 +$EndComp +$Comp +L receive_v1_1-eagle-import:00917?0026 X1 +U 1 0 97C2823C753049C4 +P 9400 2900 +AR Path="/97C2823C753049C4" Ref="X1" Part="1" +AR Path="/5B6DFACA/97C2823C753049C4" Ref="X1" Part="1" +F 0 "X1" H 9400 3000 59 0000 L BNN +F 1 "00917?0026" H 9400 2650 59 0000 L BNN +F 2 "receive_v1_1:009176002" H 9400 2900 50 0001 C CNN +F 3 "" H 9400 2900 50 0001 C CNN + 1 9400 2900 + 1 0 0 -1 +$EndComp +$Comp +L receive_v1_1-eagle-import:R-EU_R1206 R8 +U 1 0 3776C06BD4B64AA6 +P 4200 4000 +AR Path="/3776C06BD4B64AA6" Ref="R8" Part="1" +AR Path="/5B6DFACA/3776C06BD4B64AA6" Ref="R8" Part="1" +F 0 "R8" H 4050 4059 59 0000 L BNN +F 1 "100R" H 4050 3870 59 0000 L BNN +F 2 "receive_v1_1:R1206" H 4200 4000 50 0001 C CNN +F 3 "" H 4200 4000 50 0001 C CNN + 1 4200 4000 + 1 0 0 -1 +$EndComp +$Comp +L receive_v1_1-eagle-import:GND #GND7 +U 1 0 C51381239CDE76EF +P 6400 4900 +AR Path="/C51381239CDE76EF" Ref="#GND7" Part="1" +AR Path="/5B6DFACA/C51381239CDE76EF" Ref="#GND07" Part="1" +F 0 "#GND07" H 6400 4900 50 0001 C CNN +F 1 "GND" H 6300 4800 59 0000 L BNN +F 2 "" H 6400 4900 50 0001 C CNN +F 3 "" H 6400 4900 50 0001 C CNN + 1 6400 4900 + 1 0 0 -1 +$EndComp +$Comp +L receive_v1_1-eagle-import:GND #GND8 +U 1 0 167E2C6ADF24F9E8 +P 7000 4900 +AR Path="/167E2C6ADF24F9E8" Ref="#GND8" Part="1" +AR Path="/5B6DFACA/167E2C6ADF24F9E8" Ref="#GND08" Part="1" +F 0 "#GND08" H 7000 4900 50 0001 C CNN +F 1 "GND" H 6900 4800 59 0000 L BNN +F 2 "" H 7000 4900 50 0001 C CNN +F 3 "" H 7000 4900 50 0001 C CNN + 1 7000 4900 + 1 0 0 -1 +$EndComp +$Comp +L receive_v1_1-eagle-import:C-EUC1206 C9 +U 1 0 6FF1E0DBD736F15A +P 3600 2300 +AR Path="/6FF1E0DBD736F15A" Ref="C9" Part="1" +AR Path="/5B6DFACA/6FF1E0DBD736F15A" Ref="C9" Part="1" +F 0 "C9" H 3660 2315 59 0000 L BNN +F 1 "10uF" H 3660 2115 59 0000 L BNN +F 2 "receive_v1_1:C1206" H 3600 2300 50 0001 C CNN +F 3 "" H 3600 2300 50 0001 C CNN + 1 3600 2300 + 1 0 0 -1 +$EndComp +$Comp +L receive_v1_1-eagle-import:C-EUC1206 C10 +U 1 0 21F9ED814F457455 +P 3600 3000 +AR Path="/21F9ED814F457455" Ref="C10" Part="1" +AR Path="/5B6DFACA/21F9ED814F457455" Ref="C10" Part="1" +F 0 "C10" H 3660 3015 59 0000 L BNN +F 1 "10uF" H 3660 2815 59 0000 L BNN +F 2 "receive_v1_1:C1206" H 3600 3000 50 0001 C CNN +F 3 "" H 3600 3000 50 0001 C CNN + 1 3600 3000 + 1 0 0 -1 +$EndComp +$Comp +L receive_v1_1-eagle-import:SCHOTTKY-DIODESMD D4 +U 1 0 378136B8DCE5EB0D +P 3300 2000 +AR Path="/378136B8DCE5EB0D" Ref="D4" Part="1" +AR Path="/5B6DFACA/378136B8DCE5EB0D" Ref="D4" Part="1" +F 0 "D4" H 3210 2075 59 0000 L BNN +F 1 "SCHOTTKY-DIODESMD" H 3210 1865 59 0000 L BNN +F 2 "receive_v1_1:SMB" H 3300 2000 50 0001 C CNN +F 3 "" H 3300 2000 50 0001 C CNN + 1 3300 2000 + 1 0 0 -1 +$EndComp +$Comp +L receive_v1_1-eagle-import:SCHOTTKY-DIODESMD D5 +U 1 0 E8A02D8F73B70CE6 +P 3300 3300 +AR Path="/E8A02D8F73B70CE6" Ref="D5" Part="1" +AR Path="/5B6DFACA/E8A02D8F73B70CE6" Ref="D5" Part="1" +F 0 "D5" H 3210 3375 59 0000 L BNN +F 1 "SCHOTTKY-DIODESMD" H 3210 3165 59 0000 L BNN +F 2 "receive_v1_1:SMB" H 3300 3300 50 0001 C CNN +F 3 "" H 3300 3300 50 0001 C CNN + 1 3300 3300 + -1 0 0 1 +$EndComp +Text Notes 1400 6100 0 59 ~ 0 +LTC4120\nBQ24090\nMCP73831 +Wire Wire Line + 3300 4900 3300 4750 +Wire Wire Line + 4200 4750 4200 4900 +Text Label 3300 4750 1 50 ~ 0 +VCC +Text Label 4200 4750 1 50 ~ 0 +VCC +Wire Wire Line + 4300 5000 4300 4750 +Wire Wire Line + 3400 5000 3400 4750 +$Comp +L Connector:TestPoint TP2 +U 1 1 5B6E1710 +P 8300 2400 +F 0 "TP2" H 8358 2520 50 0000 L CNN +F 1 "TestPoint" H 8358 2429 50 0000 L CNN +F 2 "TestPoint:TestPoint_Pad_2.0x2.0mm" H 8500 2400 50 0001 C CNN +F 3 "~" H 8500 2400 50 0001 C CNN + 1 8300 2400 + 1 0 0 -1 +$EndComp +$Comp +L Connector:TestPoint TP3 +U 1 1 5B6E67FF +P 8300 3200 +F 0 "TP3" H 8358 3320 50 0000 L CNN +F 1 "TestPoint" H 8358 3229 50 0000 L CNN +F 2 "TestPoint:TestPoint_Pad_2.0x2.0mm" H 8500 3200 50 0001 C CNN +F 3 "~" H 8500 3200 50 0001 C CNN + 1 8300 3200 + 1 0 0 -1 +$EndComp +Wire Wire Line + 8300 2400 8300 2500 +Connection ~ 8300 2500 +Wire Wire Line + 8300 2500 8700 2500 +Wire Wire Line + 8300 3200 8300 3300 +Connection ~ 8300 3300 +Wire Wire Line + 8300 3300 8700 3300 +Text GLabel 4300 4750 1 50 Input ~ 0 +PWR_LED +Text GLabel 3400 4750 1 50 Input ~ 0 +PWR_LED +$Comp +L receive_v1_1-eagle-import:R-EU_R1206 R? +U 1 1 5B6EC5DC +P 6700 4700 +AR Path="/5B6DFC7E/5B6EC5DC" Ref="R?" Part="1" +AR Path="/5B6DFACA/5B6EC5DC" Ref="R9" Part="1" +F 0 "R9" H 6700 4921 59 0000 C CNN +F 1 "0R" H 6700 4816 59 0000 C CNN +F 2 "receive_v1_1:R1206" H 6700 4700 50 0001 C CNN +F 3 "" H 6700 4700 50 0001 C CNN + 1 6700 4700 + 1 0 0 -1 +$EndComp +$Comp +L Connector:TestPoint TP7 +U 1 1 5B6EF211 +P 6400 4000 +F 0 "TP7" H 6458 4120 50 0000 L CNN +F 1 "VCC" H 6458 4029 50 0000 L CNN +F 2 "TestPoint:TestPoint_Pad_1.0x1.0mm" H 6600 4000 50 0001 C CNN +F 3 "~" H 6600 4000 50 0001 C CNN + 1 6400 4000 + 1 0 0 -1 +$EndComp +$Comp +L Connector:TestPoint TP8 +U 1 1 5B6EF29E +P 7000 4000 +F 0 "TP8" H 7058 4120 50 0000 L CNN +F 1 "VCC" H 7058 4029 50 0000 L CNN +F 2 "TestPoint:TestPoint_Pad_1.0x1.0mm" H 7200 4000 50 0001 C CNN +F 3 "~" H 7200 4000 50 0001 C CNN + 1 7000 4000 + 1 0 0 -1 +$EndComp +Wire Wire Line + 7000 4150 7300 4150 +Text GLabel 7300 4150 2 56 BiDi ~ 0 +VCC +Wire Wire Line + 7000 4000 7000 4150 +Wire Wire Line + 7000 4150 6400 4150 +Wire Wire Line + 6400 4150 6400 4000 +Connection ~ 7000 4150 +Text Notes 6400 4250 0 50 ~ 0 +Verbindung von VCC +$EndSCHEMATC diff --git a/Glas/receive_v1_1_2.sch b/Glas/receive_v1_1_2.sch new file mode 100644 index 0000000..ddb726b --- /dev/null +++ b/Glas/receive_v1_1_2.sch @@ -0,0 +1,409 @@ +EESchema Schematic File Version 4 +LIBS:receive_v1_1-cache +EELAYER 26 0 +EELAYER END +$Descr User 11774 8268 +encoding utf-8 +Sheet 3 3 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +Wire Wire Line + 6700 3800 6700 2600 +Wire Wire Line + 6700 2600 6150 2600 +Wire Wire Line + 6700 2400 6700 2600 +Connection ~ 6700 2600 +Text Label 5950 3000 0 56 ~ 0 +RXD +Text Label 5950 3200 0 56 ~ 0 +TXD +Wire Wire Line + 4500 3200 3700 3200 +Wire Wire Line + 3700 3200 3700 4300 +Wire Wire Line + 3700 3200 3700 2950 +Wire Wire Line + 3700 3200 3300 3200 +Wire Wire Line + 3300 3200 3300 2950 +Connection ~ 3700 3200 +Text GLabel 4500 3200 0 10 BiDi ~ 0 +GND +Wire Wire Line + 5800 3600 6200 3600 +Wire Wire Line + 6200 3600 6200 4300 +Text GLabel 5800 3600 0 10 BiDi ~ 0 +GND +Wire Wire Line + 6700 4200 6700 4300 +Text GLabel 6700 4200 0 10 BiDi ~ 0 +GND +Wire Wire Line + 4500 2400 3700 2400 +Wire Wire Line + 3700 2400 3700 1900 +Wire Wire Line + 3700 2650 3700 2400 +Wire Wire Line + 3700 2400 3300 2400 +Connection ~ 3700 2400 +Text GLabel 4500 2400 0 10 BiDi ~ 0 +VCC +Wire Wire Line + 4300 3400 4500 3400 +Text GLabel 4300 3400 0 56 BiDi ~ 0 +DOUT +Wire Wire Line + 4300 2600 4500 2600 +Text Label 7900 2600 0 56 ~ 0 +GPIO14 +Wire Wire Line + 6700 2000 6700 2200 +Wire Wire Line + 6700 900 6700 1100 +Text GLabel 6700 900 1 56 BiDi ~ 0 +PWR_IN +Wire Wire Line + 6700 1400 6700 1600 +$Comp +L receive_v1_1-eagle-import:A4L-LOC #FRAME2 +U 1 0 D06FCA34DFE0E5A0 +P 900 7200 +AR Path="/D06FCA34DFE0E5A0" Ref="#FRAME2" Part="1" +AR Path="/5B6DFC7E/D06FCA34DFE0E5A0" Ref="#FRAME2" Part="1" +F 0 "#FRAME2" H 900 7200 50 0001 C CNN +F 1 "A4L-LOC" H 900 7200 50 0001 C CNN +F 2 "" H 900 7200 50 0001 C CNN +F 3 "" H 900 7200 50 0001 C CNN + 1 900 7200 + 1 0 0 -1 +$EndComp +$Comp +L receive_v1_1-eagle-import:ESP8266-03 U$1 +U 1 0 850A8AB0BABD3B23 +P 4500 3600 +AR Path="/850A8AB0BABD3B23" Ref="U$1" Part="1" +AR Path="/5B6DFC7E/850A8AB0BABD3B23" Ref="U$1" Part="1" +F 0 "U$1" H 4500 3600 50 0001 C CNN +F 1 "ESP8266-03" H 4500 3600 50 0001 C CNN +F 2 "receive_v1_1:ESP-03" H 4500 3600 50 0001 C CNN +F 3 "" H 4500 3600 50 0001 C CNN + 1 4500 3600 + 1 0 0 -1 +$EndComp +$Comp +L receive_v1_1-eagle-import:GND #GND1 +U 1 0 6F68935FDB8695AC +P 3700 4400 +AR Path="/6F68935FDB8695AC" Ref="#GND1" Part="1" +AR Path="/5B6DFC7E/6F68935FDB8695AC" Ref="#GND01" Part="1" +F 0 "#GND01" H 3700 4400 50 0001 C CNN +F 1 "GND" H 3600 4300 59 0000 L BNN +F 2 "" H 3700 4400 50 0001 C CNN +F 3 "" H 3700 4400 50 0001 C CNN + 1 3700 4400 + 1 0 0 -1 +$EndComp +$Comp +L receive_v1_1-eagle-import:GND #GND3 +U 1 0 21A7002F7679BDCC +P 6200 4400 +AR Path="/21A7002F7679BDCC" Ref="#GND3" Part="1" +AR Path="/5B6DFC7E/21A7002F7679BDCC" Ref="#GND03" Part="1" +F 0 "#GND03" H 6200 4400 50 0001 C CNN +F 1 "GND" H 6100 4300 59 0000 L BNN +F 2 "" H 6200 4400 50 0001 C CNN +F 3 "" H 6200 4400 50 0001 C CNN + 1 6200 4400 + 1 0 0 -1 +$EndComp +$Comp +L receive_v1_1-eagle-import:GND #GND4 +U 1 0 4B4BE4C0D896219B +P 6700 4400 +AR Path="/4B4BE4C0D896219B" Ref="#GND4" Part="1" +AR Path="/5B6DFC7E/4B4BE4C0D896219B" Ref="#GND04" Part="1" +F 0 "#GND04" H 6700 4400 50 0001 C CNN +F 1 "GND" H 6600 4300 59 0000 L BNN +F 2 "" H 6700 4400 50 0001 C CNN +F 3 "" H 6700 4400 50 0001 C CNN + 1 6700 4400 + 1 0 0 -1 +$EndComp +$Comp +L receive_v1_1-eagle-import:VCC #P+1 +U 1 0 93600057BCDF72C5 +P 3700 1800 +AR Path="/93600057BCDF72C5" Ref="#P+1" Part="1" +AR Path="/5B6DFC7E/93600057BCDF72C5" Ref="#P+01" Part="1" +F 0 "#P+01" H 3700 1800 50 0001 C CNN +F 1 "VCC" V 3600 1700 59 0000 L BNN +F 2 "" H 3700 1800 50 0001 C CNN +F 3 "" H 3700 1800 50 0001 C CNN + 1 3700 1800 + 1 0 0 -1 +$EndComp +$Comp +L receive_v1_1-eagle-import:BAT60J D2 +U 1 0 4C475A1A20478EC3 +P 6700 2300 +AR Path="/4C475A1A20478EC3" Ref="D2" Part="1" +AR Path="/5B6DFC7E/4C475A1A20478EC3" Ref="D2" Part="1" +F 0 "D2" H 6610 2375 59 0000 L BNN +F 1 "BAT60J" H 6610 2165 59 0000 L BNN +F 2 "receive_v1_1:SOD323_ST" H 6700 2300 50 0001 C CNN +F 3 "" H 6700 2300 50 0001 C CNN + 1 6700 2300 + 0 1 1 0 +$EndComp +$Comp +L receive_v1_1-eagle-import:R-EU_R0805 R5 +U 1 0 CCADE161F5E59E3A +P 6700 1800 +AR Path="/CCADE161F5E59E3A" Ref="R5" Part="1" +AR Path="/5B6DFC7E/CCADE161F5E59E3A" Ref="R5" Part="1" +F 0 "R5" H 6550 1859 59 0000 L BNN +F 1 "1k" H 6550 1670 59 0000 L BNN +F 2 "receive_v1_1:R0805" H 6700 1800 50 0001 C CNN +F 3 "" H 6700 1800 50 0001 C CNN + 1 6700 1800 + 0 -1 -1 0 +$EndComp +$Comp +L receive_v1_1-eagle-import:R-EU_R0805 R6 +U 1 0 EF632DAE64669C67 +P 7550 2600 +AR Path="/EF632DAE64669C67" Ref="R6" Part="1" +AR Path="/5B6DFC7E/EF632DAE64669C67" Ref="R6" Part="1" +F 0 "R6" H 7400 2659 59 0000 L BNN +F 1 "1k" H 7400 2470 59 0000 L BNN +F 2 "receive_v1_1:R0805" H 7550 2600 50 0001 C CNN +F 3 "" H 7550 2600 50 0001 C CNN + 1 7550 2600 + -1 0 0 1 +$EndComp +$Comp +L receive_v1_1-eagle-import:C-EUC0805 C6 +U 1 0 A3ABC6EF65EADBD0 +P 6700 1200 +AR Path="/A3ABC6EF65EADBD0" Ref="C6" Part="1" +AR Path="/5B6DFC7E/A3ABC6EF65EADBD0" Ref="C6" Part="1" +F 0 "C6" H 6760 1215 59 0000 L BNN +F 1 "1uF" H 6760 1015 59 0000 L BNN +F 2 "receive_v1_1:C0805" H 6700 1200 50 0001 C CNN +F 3 "" H 6700 1200 50 0001 C CNN + 1 6700 1200 + 1 0 0 -1 +$EndComp +$Comp +L receive_v1_1-eagle-import:BAT60J D3 +U 1 0 40D44ED439967F7A +P 7050 2600 +AR Path="/40D44ED439967F7A" Ref="D3" Part="1" +AR Path="/5B6DFC7E/40D44ED439967F7A" Ref="D3" Part="1" +F 0 "D3" H 6960 2675 59 0000 L BNN +F 1 "BAT60J" H 6960 2465 59 0000 L BNN +F 2 "receive_v1_1:SOD323_ST" H 7050 2600 50 0001 C CNN +F 3 "" H 7050 2600 50 0001 C CNN + 1 7050 2600 + -1 0 0 1 +$EndComp +$Comp +L receive_v1_1-eagle-import:C-EUC0805 C7 +U 1 0 EBEB2313A6F2A611 +P 3700 2750 +AR Path="/EBEB2313A6F2A611" Ref="C7" Part="1" +AR Path="/5B6DFC7E/EBEB2313A6F2A611" Ref="C7" Part="1" +F 0 "C7" H 3760 2765 59 0000 L BNN +F 1 "100nF" H 3760 2565 59 0000 L BNN +F 2 "receive_v1_1:C0805" H 3700 2750 50 0001 C CNN +F 3 "" H 3700 2750 50 0001 C CNN + 1 3700 2750 + 1 0 0 -1 +$EndComp +$Comp +L receive_v1_1-eagle-import:C-EUC1210 C8 +U 1 0 A7C735F03607F4DE +P 3300 2750 +AR Path="/A7C735F03607F4DE" Ref="C8" Part="1" +AR Path="/5B6DFC7E/A7C735F03607F4DE" Ref="C8" Part="1" +F 0 "C8" H 3360 2765 59 0000 L BNN +F 1 "4,7uF" H 3360 2565 59 0000 L BNN +F 2 "receive_v1_1:C1210" H 3300 2750 50 0001 C CNN +F 3 "" H 3300 2750 50 0001 C CNN + 1 3300 2750 + 1 0 0 -1 +$EndComp +Wire Wire Line + 3300 2400 3300 2650 +Text GLabel 4300 2600 0 50 Input ~ 0 +GPIO14 +$Comp +L Connector:TestPoint TP1 +U 1 1 5B70A1B5 +P 6150 2500 +F 0 "TP1" H 6208 2620 50 0000 L CNN +F 1 "TestPoint" H 6208 2529 50 0000 L CNN +F 2 "TestPoint:TestPoint_Pad_2.0x2.0mm" H 6350 2500 50 0001 C CNN +F 3 "~" H 6350 2500 50 0001 C CNN + 1 6150 2500 + 1 0 0 -1 +$EndComp +Wire Wire Line + 6150 2500 6150 2600 +Connection ~ 6150 2600 +Wire Wire Line + 6150 2600 5800 2600 +$Comp +L Connector:TestPoint TP5 +U 1 1 5B6E0753 +P 6150 3000 +F 0 "TP5" H 6208 3120 50 0000 L CNN +F 1 "TestPoint" H 6208 3029 50 0000 L CNN +F 2 "TestPoint:TestPoint_Pad_2.0x2.0mm" H 6350 3000 50 0001 C CNN +F 3 "~" H 6350 3000 50 0001 C CNN + 1 6150 3000 + 1 0 0 -1 +$EndComp +$Comp +L Connector:TestPoint TP6 +U 1 1 5B6E0D07 +P 6150 3200 +F 0 "TP6" H 6208 3320 50 0000 L CNN +F 1 "TestPoint" H 6208 3229 50 0000 L CNN +F 2 "TestPoint:TestPoint_Pad_2.0x2.0mm" H 6350 3200 50 0001 C CNN +F 3 "~" H 6350 3200 50 0001 C CNN + 1 6150 3200 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5800 3000 6150 3000 +Wire Wire Line + 5800 3200 6150 3200 +$Comp +L Connector:TestPoint TP4 +U 1 1 5B6E346D +P 3950 3600 +F 0 "TP4" H 4008 3720 50 0000 L CNN +F 1 "TestPoint" H 4008 3629 50 0000 L CNN +F 2 "TestPoint:TestPoint_Pad_2.0x2.0mm" H 4150 3600 50 0001 C CNN +F 3 "~" H 4150 3600 50 0001 C CNN + 1 3950 3600 + 0 -1 -1 0 +$EndComp +Wire Wire Line + 6700 2600 6950 2600 +Wire Wire Line + 7150 2600 7350 2600 +Wire Wire Line + 7750 2600 7900 2600 +Wire Wire Line + 3950 3600 4500 3600 +Wire Wire Line + 4500 3000 4350 3000 +Text GLabel 4350 3000 0 50 Input ~ 0 +PWR_LED +Wire Wire Line + 5800 3400 6150 3400 +Text Label 6150 3400 0 50 ~ 0 +VCC +$Comp +L receive_v1_1-eagle-import:R-EU_R1206 R3 +U 1 1 5B6EB162 +P 4550 4500 +F 0 "R3" H 4550 4721 59 0000 C CNN +F 1 "0R" H 4550 4616 59 0000 C CNN +F 2 "receive_v1_1:R1206" H 4550 4500 50 0001 C CNN +F 3 "" H 4550 4500 50 0001 C CNN + 1 4550 4500 + 1 0 0 -1 +$EndComp +$Comp +L receive_v1_1-eagle-import:R-EU_R1206 R10 +U 1 1 5B6EB2AE +P 4550 4950 +F 0 "R10" H 4550 5171 59 0000 C CNN +F 1 "0R" H 4550 5066 59 0000 C CNN +F 2 "receive_v1_1:R1206" H 4550 4950 50 0001 C CNN +F 3 "" H 4550 4950 50 0001 C CNN + 1 4550 4950 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5100 4500 4850 4500 +Wire Wire Line + 5100 4950 4850 4950 +Text Label 5100 4500 0 50 ~ 0 +PWR_LED +Text Label 5100 4950 0 50 ~ 0 +DOUT +Wire Wire Line + 4850 4500 4850 4600 +Wire Wire Line + 4850 4600 4250 4600 +Wire Wire Line + 4250 4600 4250 4500 +Wire Wire Line + 4250 4500 4350 4500 +Wire Wire Line + 4850 4500 4750 4500 +Wire Wire Line + 4850 4950 4850 5050 +Wire Wire Line + 4850 5050 4250 5050 +Wire Wire Line + 4250 5050 4250 4950 +Wire Wire Line + 4250 4950 4350 4950 +Connection ~ 4850 4950 +Wire Wire Line + 4850 4950 4750 4950 +$Comp +L receive_v1_1-eagle-import:R-EU_R1206 R11 +U 1 1 5B6F4871 +P 1950 4550 +F 0 "R11" H 1950 4771 59 0000 C CNN +F 1 "0R" H 1950 4666 59 0000 C CNN +F 2 "receive_v1_1:R1206" H 1950 4550 50 0001 C CNN +F 3 "" H 1950 4550 50 0001 C CNN + 1 1950 4550 + 1 0 0 -1 +$EndComp +Wire Wire Line + 2500 4550 2250 4550 +Text Label 2500 4550 0 50 ~ 0 +PWR_LED +Wire Wire Line + 2250 4550 2250 4650 +Wire Wire Line + 2250 4650 1650 4650 +Wire Wire Line + 1650 4650 1650 4550 +Wire Wire Line + 1650 4550 1750 4550 +Connection ~ 2250 4550 +Wire Wire Line + 2250 4550 2150 4550 +Connection ~ 4850 4500 +$Comp +L receive_v1_1-eagle-import:R-EU_R1206 R4 +U 1 1 5B70118C +P 6700 4000 +F 0 "R4" H 6700 4221 59 0000 C CNN +F 1 "n.b. 10K" H 6700 4116 59 0000 C CNN +F 2 "receive_v1_1:R1206" H 6700 4000 50 0001 C CNN +F 3 "" H 6700 4000 50 0001 C CNN + 1 6700 4000 + 0 1 1 0 +$EndComp +$EndSCHEMATC diff --git a/Glas/receive_v1_2.net b/Glas/receive_v1_2.net new file mode 100644 index 0000000..d033193 --- /dev/null +++ b/Glas/receive_v1_2.net @@ -0,0 +1,454 @@ +(export (version D) + (design + (source /home/s/Dokumente/09_KiCad/glas/V1_1/receive_v1_1.sch) + (date "Fr 10 Aug 2018 21:59:31 CEST") + (tool "Eeschema 5.0.0+dfsg1-1~bpo9+1") + (sheet (number 1) (name /) (tstamps /) + (title_block + (title) + (company) + (rev) + (date) + (source receive_v1_1.sch) + (comment (number 1) (value "")) + (comment (number 2) (value "")) + (comment (number 3) (value "")) + (comment (number 4) (value "")))) + (sheet (number 2) (name /receive_v1_1_1/) (tstamps /5B6DFACA/) + (title_block + (title) + (company) + (rev) + (date) + (source receive_v1_1_1.sch) + (comment (number 1) (value "")) + (comment (number 2) (value "")) + (comment (number 3) (value "")) + (comment (number 4) (value "")))) + (sheet (number 3) (name /receive_v1_1_2/) (tstamps /5B6DFC7E/) + (title_block + (title) + (company) + (rev) + (date) + (source receive_v1_1_2.sch) + (comment (number 1) (value "")) + (comment (number 2) (value "")) + (comment (number 3) (value "")) + (comment (number 4) (value ""))))) + (components + (comp (ref C1) + (value 4.7uF) + (footprint receive_v1_1:C1206) + (libsource (lib receive_v1_1-eagle-import) (part C-EUC1206) (description "")) + (sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/)) + (tstamp 33354583271174E6)) + (comp (ref C2) + (value 10uF) + (footprint receive_v1_1:C1206) + (libsource (lib receive_v1_1-eagle-import) (part C-EUC1206) (description "")) + (sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/)) + (tstamp A437799099D41F3B)) + (comp (ref C3) + (value 4.7uF) + (footprint receive_v1_1:C1206) + (libsource (lib receive_v1_1-eagle-import) (part C-EUC1206) (description "")) + (sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/)) + (tstamp ACEB8AA80C7BD23D)) + (comp (ref C4) + (value 100nF) + (footprint receive_v1_1:C0805) + (libsource (lib receive_v1_1-eagle-import) (part C-EUC0805) (description "")) + (sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/)) + (tstamp 18AF332D375CDECD)) + (comp (ref C5) + (value 1uF) + (footprint receive_v1_1:C0805) + (libsource (lib receive_v1_1-eagle-import) (part C-EUC0805) (description "")) + (sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/)) + (tstamp D9A42AEA629E9F7E)) + (comp (ref D1) + (value "TVS 6V8") + (footprint receive_v1_1:SMBJ) + (libsource (lib receive_v1_1-eagle-import) (part SUPPRESSOR-SMBJ) (description "")) + (sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/)) + (tstamp D34E0B9D7F8C6C1C)) + (comp (ref IC1) + (value MCP73831) + (footprint receive_v1_1:SOT23-5L) + (libsource (lib receive_v1_1-eagle-import) (part MCP73831) (description "")) + (sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/)) + (tstamp 7C8C299E06F92037)) + (comp (ref R1) + (value 2.7K) + (footprint receive_v1_1:R0805) + (libsource (lib receive_v1_1-eagle-import) (part R-EU_R0805) (description "")) + (sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/)) + (tstamp 27FD2D81B18B4CD)) + (comp (ref R2) + (value 470R) + (footprint receive_v1_1:R0805) + (libsource (lib receive_v1_1-eagle-import) (part R-EU_R0805) (description "")) + (sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/)) + (tstamp 2AF825E8B40906EE)) + (comp (ref LED1) + (value LEDCHIP-LED0805) + (footprint receive_v1_1:CHIP-LED0805) + (libsource (lib receive_v1_1-eagle-import) (part LEDCHIP-LED0805) (description "")) + (sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/)) + (tstamp 56580ACBD5D4A691)) + (comp (ref IC2) + (value WS2812) + (footprint receive_v1_1:WS2812) + (libsource (lib receive_v1_1-eagle-import) (part WS2812) (description "")) + (sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/)) + (tstamp 53D52AEB541775CA)) + (comp (ref IC3) + (value WS2812) + (footprint receive_v1_1:WS2812) + (libsource (lib receive_v1_1-eagle-import) (part WS2812) (description "")) + (sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/)) + (tstamp B33006915ED25CA7)) + (comp (ref R7) + (value 10k) + (footprint receive_v1_1:R0805) + (libsource (lib receive_v1_1-eagle-import) (part R-EU_R0805) (description "")) + (sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/)) + (tstamp BBCFCC776C012852)) + (comp (ref X1) + (value 00917?0026) + (footprint receive_v1_1:009176002) + (libsource (lib receive_v1_1-eagle-import) (part 00917?0026) (description "")) + (sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/)) + (tstamp 97C2823C753049C4)) + (comp (ref R8) + (value 100R) + (footprint receive_v1_1:R1206) + (libsource (lib receive_v1_1-eagle-import) (part R-EU_R1206) (description "")) + (sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/)) + (tstamp 3776C06BD4B64AA6)) + (comp (ref R9) + (value Jumper) + (footprint receive_v1_1:R1206) + (libsource (lib receive_v1_1-eagle-import) (part R-EU_R1206) (description "")) + (sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/)) + (tstamp 8234BE3B466A3745)) + (comp (ref C9) + (value 10uF) + (footprint receive_v1_1:C1206) + (libsource (lib receive_v1_1-eagle-import) (part C-EUC1206) (description "")) + (sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/)) + (tstamp 6FF1E0DBD736F15A)) + (comp (ref C10) + (value 10uF) + (footprint receive_v1_1:C1206) + (libsource (lib receive_v1_1-eagle-import) (part C-EUC1206) (description "")) + (sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/)) + (tstamp 21F9ED814F457455)) + (comp (ref D4) + (value SCHOTTKY-DIODESMD) + (footprint receive_v1_1:SMB) + (libsource (lib receive_v1_1-eagle-import) (part SCHOTTKY-DIODESMD) (description "")) + (sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/)) + (tstamp 378136B8DCE5EB0D)) + (comp (ref D5) + (value SCHOTTKY-DIODESMD) + (footprint receive_v1_1:SMB) + (libsource (lib receive_v1_1-eagle-import) (part SCHOTTKY-DIODESMD) (description "")) + (sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/)) + (tstamp E8A02D8F73B70CE6)) + (comp (ref U$1) + (value ESP8266-03) + (footprint receive_v1_1:ESP-03) + (libsource (lib receive_v1_1-eagle-import) (part ESP8266-03) (description "")) + (sheetpath (names /receive_v1_1_2/) (tstamps /5B6DFC7E/)) + (tstamp 850A8AB0BABD3B23)) + (comp (ref R3) + (value R-EU_R0805) + (footprint receive_v1_1:R0805) + (libsource (lib receive_v1_1-eagle-import) (part R-EU_R0805) (description "")) + (sheetpath (names /receive_v1_1_2/) (tstamps /5B6DFC7E/)) + (tstamp 23CAB85C9D3B2993)) + (comp (ref R4) + (value 10k) + (footprint receive_v1_1:R0805) + (libsource (lib receive_v1_1-eagle-import) (part R-EU_R0805) (description "")) + (sheetpath (names /receive_v1_1_2/) (tstamps /5B6DFC7E/)) + (tstamp 23E57F8398DC0D12)) + (comp (ref SV2) + (value MA03-1) + (footprint receive_v1_1:MA03-1) + (libsource (lib receive_v1_1-eagle-import) (part MA03-1) (description "")) + (sheetpath (names /receive_v1_1_2/) (tstamps /5B6DFC7E/)) + (tstamp DCE5AB867D1713BF)) + (comp (ref D2) + (value BAT60J) + (footprint receive_v1_1:SOD323_ST) + (libsource (lib receive_v1_1-eagle-import) (part BAT60J) (description "")) + (sheetpath (names /receive_v1_1_2/) (tstamps /5B6DFC7E/)) + (tstamp 4C475A1A20478EC3)) + (comp (ref R5) + (value 1k) + (footprint receive_v1_1:R0805) + (libsource (lib receive_v1_1-eagle-import) (part R-EU_R0805) (description "")) + (sheetpath (names /receive_v1_1_2/) (tstamps /5B6DFC7E/)) + (tstamp CCADE161F5E59E3A)) + (comp (ref R6) + (value 1k) + (footprint receive_v1_1:R0805) + (libsource (lib receive_v1_1-eagle-import) (part R-EU_R0805) (description "")) + (sheetpath (names /receive_v1_1_2/) (tstamps /5B6DFC7E/)) + (tstamp EF632DAE64669C67)) + (comp (ref C6) + (value 1uF) + (footprint receive_v1_1:C0805) + (libsource (lib receive_v1_1-eagle-import) (part C-EUC0805) (description "")) + (sheetpath (names /receive_v1_1_2/) (tstamps /5B6DFC7E/)) + (tstamp A3ABC6EF65EADBD0)) + (comp (ref D3) + (value BAT60J) + (footprint receive_v1_1:SOD323_ST) + (libsource (lib receive_v1_1-eagle-import) (part BAT60J) (description "")) + (sheetpath (names /receive_v1_1_2/) (tstamps /5B6DFC7E/)) + (tstamp 40D44ED439967F7A)) + (comp (ref C7) + (value 100nF) + (footprint receive_v1_1:C0805) + (libsource (lib receive_v1_1-eagle-import) (part C-EUC0805) (description "")) + (sheetpath (names /receive_v1_1_2/) (tstamps /5B6DFC7E/)) + (tstamp EBEB2313A6F2A611)) + (comp (ref C8) + (value 4,7uF) + (footprint receive_v1_1:C1210) + (libsource (lib receive_v1_1-eagle-import) (part C-EUC1210) (description "")) + (sheetpath (names /receive_v1_1_2/) (tstamps /5B6DFC7E/)) + (tstamp A7C735F03607F4DE))) + (libparts + (libpart (lib receive_v1_1-eagle-import) (part 00917?0026) + (fields + (field (name Reference) X) + (field (name Value) 00917?0026)) + (pins + (pin (num 1) (name 1) (type passive)) + (pin (num 2) (name 2) (type passive)))) + (libpart (lib receive_v1_1-eagle-import) (part BAT60J) + (fields + (field (name Reference) D) + (field (name Value) BAT60J)) + (pins + (pin (num A) (name A) (type passive)) + (pin (num C) (name C) (type passive)))) + (libpart (lib receive_v1_1-eagle-import) (part C-EUC0805) + (fields + (field (name Reference) C) + (field (name Value) C-EUC0805)) + (pins + (pin (num 1) (name 1) (type passive)) + (pin (num 2) (name 2) (type passive)))) + (libpart (lib receive_v1_1-eagle-import) (part C-EUC1206) + (fields + (field (name Reference) C) + (field (name Value) C-EUC1206)) + (pins + (pin (num 1) (name 1) (type passive)) + (pin (num 2) (name 2) (type passive)))) + (libpart (lib receive_v1_1-eagle-import) (part C-EUC1210) + (fields + (field (name Reference) C) + (field (name Value) C-EUC1210)) + (pins + (pin (num 1) (name 1) (type passive)) + (pin (num 2) (name 2) (type passive)))) + (libpart (lib receive_v1_1-eagle-import) (part ESP8266-03) + (fields + (field (name Value) ESP8266-03)) + (pins + (pin (num ANT) (name ANT) (type unspc)) + (pin (num CH_PD) (name CH_PD) (type unspc)) + (pin (num GND) (name GND) (type unspc)) + (pin (num GPIO0) (name GPIO0) (type unspc)) + (pin (num GPIO2) (name GPIO2) (type unspc)) + (pin (num GPIO12) (name GPIO12) (type unspc)) + (pin (num GPIO13) (name GPIO13) (type unspc)) + (pin (num GPIO14) (name GPIO14) (type unspc)) + (pin (num GPIO15) (name GPIO15) (type unspc)) + (pin (num GPIO18) (name GPIO18) (type unspc)) + (pin (num NC) (name NC) (type unspc)) + (pin (num URXD) (name URXD) (type unspc)) + (pin (num UTXD) (name UTXD) (type unspc)) + (pin (num VCC) (name VCC) (type unspc)))) + (libpart (lib receive_v1_1-eagle-import) (part LEDCHIP-LED0805) + (fields + (field (name Reference) LED) + (field (name Value) LEDCHIP-LED0805)) + (pins + (pin (num A) (name A) (type passive)) + (pin (num C) (name C) (type passive)))) + (libpart (lib receive_v1_1-eagle-import) (part MA03-1) + (fields + (field (name Reference) SV) + (field (name Value) MA03-1)) + (pins + (pin (num 1) (name 1) (type passive)) + (pin (num 2) (name 2) (type passive)) + (pin (num 3) (name 3) (type passive)))) + (libpart (lib receive_v1_1-eagle-import) (part MCP73831) + (fields + (field (name Reference) IC) + (field (name Value) MCP73831)) + (pins + (pin (num 1) (name STAT) (type unspc)) + (pin (num 2) (name VSS) (type unspc)) + (pin (num 3) (name VBAT) (type unspc)) + (pin (num 4) (name VDD) (type unspc)) + (pin (num 5) (name PROG) (type unspc)))) + (libpart (lib receive_v1_1-eagle-import) (part R-EU_R0805) + (fields + (field (name Reference) R) + (field (name Value) R-EU_R0805)) + (pins + (pin (num 1) (name 1) (type passive)) + (pin (num 2) (name 2) (type passive)))) + (libpart (lib receive_v1_1-eagle-import) (part R-EU_R1206) + (fields + (field (name Reference) R) + (field (name Value) R-EU_R1206)) + (pins + (pin (num 1) (name 1) (type passive)) + (pin (num 2) (name 2) (type passive)))) + (libpart (lib receive_v1_1-eagle-import) (part SCHOTTKY-DIODESMD) + (fields + (field (name Reference) D) + (field (name Value) SCHOTTKY-DIODESMD)) + (pins + (pin (num A) (name A) (type passive)) + (pin (num C) (name C) (type passive)))) + (libpart (lib receive_v1_1-eagle-import) (part SUPPRESSOR-SMBJ) + (fields + (field (name Reference) D) + (field (name Value) SUPPRESSOR-SMBJ)) + (pins + (pin (num A) (name A) (type passive)) + (pin (num C) (name C) (type passive)))) + (libpart (lib receive_v1_1-eagle-import) (part WS2812) + (fields + (field (name Reference) IC) + (field (name Value) WS2812)) + (pins + (pin (num 1) (name DOUT) (type output)) + (pin (num 2) (name DIN) (type input)) + (pin (num 3) (name VCNTL) (type power_in)) + (pin (num 5) (name VLED) (type power_in)) + (pin (num 6) (name GND) (type power_in))))) + (libraries + (library (logical receive_v1_1-eagle-import) + (uri /home/s/Dokumente/09_KiCad/glas/V1_1/receive_v1_1-eagle-import.lib))) + (nets + (net (code 1) (name "Net-(IC1-Pad5)") + (node (ref R1) (pin 2)) + (node (ref IC1) (pin 5))) + (net (code 2) (name "Net-(LED1-PadC)") + (node (ref R2) (pin 2)) + (node (ref LED1) (pin C))) + (net (code 3) (name "Net-(IC1-Pad1)") + (node (ref R2) (pin 1)) + (node (ref IC1) (pin 1))) + (net (code 4) (name PWR_LED) + (node (ref IC2) (pin 5)) + (node (ref IC2) (pin 3)) + (node (ref C7) (pin 1)) + (node (ref C8) (pin 1)) + (node (ref IC3) (pin 3)) + (node (ref X1) (pin 1)) + (node (ref U$1) (pin GPIO13)) + (node (ref IC3) (pin 5)) + (node (ref U$1) (pin VCC)) + (node (ref IC1) (pin 3)) + (node (ref C3) (pin 1))) + (net (code 5) (name "Net-(IC2-Pad1)") + (node (ref R8) (pin 1)) + (node (ref IC2) (pin 1))) + (net (code 6) (name DOUT) + (node (ref IC2) (pin 2)) + (node (ref U$1) (pin GPIO2))) + (net (code 7) (name "Net-(IC3-Pad2)") + (node (ref R8) (pin 2)) + (node (ref IC3) (pin 2))) + (net (code 8) (name "Net-(C1-Pad1)") + (node (ref C5) (pin 2)) + (node (ref C1) (pin 1)) + (node (ref D4) (pin A)) + (node (ref D5) (pin C))) + (net (code 9) (name GND) + (node (ref R3) (pin 1)) + (node (ref R4) (pin 1)) + (node (ref SV2) (pin 3)) + (node (ref U$1) (pin GND)) + (node (ref U$1) (pin GPIO15)) + (node (ref C8) (pin 2)) + (node (ref C7) (pin 2)) + (node (ref X1) (pin 2)) + (node (ref R7) (pin 1)) + (node (ref IC3) (pin 6)) + (node (ref IC2) (pin 6)) + (node (ref D5) (pin A)) + (node (ref C10) (pin 2)) + (node (ref R9) (pin 2)) + (node (ref R9) (pin 1)) + (node (ref R1) (pin 1)) + (node (ref IC1) (pin 2)) + (node (ref D1) (pin A)) + (node (ref C4) (pin 2)) + (node (ref C3) (pin 2)) + (node (ref C2) (pin 2))) + (net (code 10) (name PWR_IN) + (node (ref C6) (pin 1)) + (node (ref R7) (pin 2)) + (node (ref D4) (pin C)) + (node (ref C9) (pin 1)) + (node (ref LED1) (pin A)) + (node (ref IC1) (pin 4)) + (node (ref D1) (pin C)) + (node (ref C4) (pin 1)) + (node (ref C2) (pin 1))) + (net (code 11) (name /receive_v1_1_1/IND) + (node (ref C10) (pin 1)) + (node (ref C9) (pin 2)) + (node (ref C1) (pin 2)) + (node (ref C5) (pin 1))) + (net (code 12) (name "Net-(IC3-Pad1)") + (node (ref IC3) (pin 1))) + (net (code 13) (name "Net-(R3-Pad2)") + (node (ref U$1) (pin GPIO0)) + (node (ref R3) (pin 2))) + (net (code 14) (name /receive_v1_1_2/TXD) + (node (ref U$1) (pin UTXD)) + (node (ref SV2) (pin 2))) + (net (code 15) (name "Net-(U$1-PadNC)") + (node (ref U$1) (pin NC))) + (net (code 16) (name "Net-(U$1-PadGPIO18)") + (node (ref U$1) (pin GPIO18))) + (net (code 17) (name "Net-(U$1-PadGPIO12)") + (node (ref U$1) (pin GPIO12))) + (net (code 18) (name GPIO14) + (node (ref U$1) (pin GPIO14)) + (node (ref D3) (pin A))) + (net (code 19) (name "Net-(D3-PadC)") + (node (ref R6) (pin 1)) + (node (ref D3) (pin C))) + (net (code 20) (name "Net-(C6-Pad2)") + (node (ref R5) (pin 2)) + (node (ref C6) (pin 2))) + (net (code 21) (name "Net-(D2-PadA)") + (node (ref R5) (pin 1)) + (node (ref D2) (pin A))) + (net (code 22) (name /receive_v1_1_2/RXD) + (node (ref U$1) (pin URXD)) + (node (ref SV2) (pin 1))) + (net (code 23) (name "Net-(D2-PadC)") + (node (ref D2) (pin C)) + (node (ref R6) (pin 2)) + (node (ref U$1) (pin CH_PD)) + (node (ref R4) (pin 2))) + (net (code 24) (name "Net-(U$1-PadANT)") + (node (ref U$1) (pin ANT))))) \ No newline at end of file diff --git a/Glas/sym-lib-table b/Glas/sym-lib-table new file mode 100644 index 0000000..d64b94d --- /dev/null +++ b/Glas/sym-lib-table @@ -0,0 +1,4 @@ +(sym_lib_table + (lib (name receive_v1_1-eagle-import)(type Legacy)(uri ${KIPRJMOD}/receive_v1_1-eagle-import.lib)(options "")(descr "")) + (lib (name lm5085)(type Legacy)(uri /home/s/Dokumente/09_KiCad/Library/lm5085.lib)(options "")(descr "")) +) diff --git a/Lua/glas-V2_2.lua b/Lua/glas-V2_2.lua new file mode 100644 index 0000000..a689429 --- /dev/null +++ b/Lua/glas-V2_2.lua @@ -0,0 +1,139 @@ +function wait_for_wifi_conn ( ) + tmr.alarm (1, 1000, 1, function ( ) + if wifi.sta.getip ( ) == nil then + print ("Waiting for Wifi connection") + --led rot + ws2812.writergb(4, string.char(50, 0, 0)) + else + tmr.stop (1) + print ("ESP8266 mode is: " .. wifi.getmode ( )) + print ("The module MAC address is: " .. wifi.ap.getmac ( )) + print ("Config done, IP is " .. wifi.sta.getip ( )) +-- print ("join Multicast 192.168.1.90") +-- net.multicastJoin(wifi.sta.getip(), "192.168.1.90") +-- led gruen + ws2812.writergb(4, string.char(0, 50, 0, 0,0,0)) + tmr.delay(1000000) + end + end) +end + +--empfangene daten zerlegen,led ansteuern +function parse (payload) + r = string.sub(payload,1,3) + g = string.sub(payload,4,6) + b = string.sub(payload,7,9) + r1 = string.sub(payload,10,12) + g1 = string.sub(payload,13,15) + b1 = string.sub(payload,16,18) + rgb = string.char(r,g,b,r1,g1,b1) + print(rgb) + ws2812.writergb(4,rgb) +end + +--ausschalten +function switchoff () + --node off + print("off") + ws2812.writergb(4, string.char(50, 0, 0, 0,0,0)) + tmr.delay(200000) + ws2812.writergb(4, string.char(0, 0, 0, 0,0,0)) + tmr.delay(200000) + ws2812.writergb(4, string.char(50, 0, 0, 0,0,0)) + tmr.delay(200000) + ws2812.writergb(4, string.char(0, 0, 0, 0,0,0)) + --Led-Controller OFF + gpio.write(7, gpio.LOW) + tmr.delay(10000) + --Power off + wifi.sta.disconnect() + gpio.write(5, gpio.LOW) +end + +akku = 0 +wifi.sta.disconnect() +--blau fuer on +ws2812.writergb(4, string.char(0, 0, 50, 0,0,0)) +tmr.delay(1000000) +if (adc.readvdd33() > 3650) then + --LED-Controller Ein + gpio.mode(7, gpio.OUTPUT) + gpio.write(7, gpio.HIGH) + --blau fuer on + ws2812.writergb(4, string.char(0, 0, 50, 0,0,0)) + tmr.delay(1000000) + --rot fuer batt low, gruen fuer batt ok + akku = 1 + ws2812.writergb(4, string.char(0, 50, 0, 0,0,0)) + print("voltage "..adc.readvdd33()) + tmr.delay(1000000) + --led off + ws2812.writergb(4, string.char(0, 0, 0, 0,0,0)) + wifi.setmode(wifi.STATION) + wifi.sta.config("cocktail","cocktailglas") + wifi.sta.connect() + wait_for_wifi_conn() + + --get new ip after lost +tmr.alarm(0, 30000, 1, function() + print("reconnect") + if (akku == 1) then + if wifi.sta.getip ( ) == nil then + wifi.sta.connect() + wait_for_wifi_conn() + end + end +end ) + +else + akku = 0 + print("battery low. sleep") + print("voltage "..adc.readvdd33()) + --node off + switchoff() +end + +tmr.delay(1000000) + + + + +--send udp from linux: +--echo -n "170000070150000050" >/dev/udp/172.23.92.16/31302 +srv = net.createServer(net.UDP) +srv:on("receive",function(srv,payload) +-- print("payload=",payload) +-- print("len",string.len(payload)) + if (string.len(payload)==18) then parse(payload) + else + if (string.len(payload)==6) then + if (string.sub(payload,1,6) == "offoff") then + switchoff() + end + end + end +end) +srv:listen(31302) + + +--akkustand: abschalten nach 15 min +tmr.alarm(2, 900000, 1, function() + print("akku") + wifi.sta.disconnect() + if (adc.readvdd33() > 3700) then + print("ok") + akku = 1 + wifi.sta.connect() + else + akku = 0 + print("battery low. sleep") + print("voltage "..adc.readvdd33()) + switchoff() + end +end ) + + + + + + diff --git a/Lua/info.txt b/Lua/info.txt new file mode 100644 index 0000000..11ae77a --- /dev/null +++ b/Lua/info.txt @@ -0,0 +1,44 @@ +V2_1 mit Induktionslader: + + +ESP-Einschalten und beide Pins setzen. (CH_PD auf 5v und gpio0 auf 0V) +Image schreiben. (Enthält Nodemcu + Luascript): +python esptool.py --port /dev/ttyACM0 write_flash 0x00000 backup-V2_1.img +python esptool.py --port /dev/ttyACM0 write_flash --flash_size 512KB 0x00000 backup-V2_1.img + + +./nodemcu-tool upload glas-V2_1.lua + + +EPROM: +minipro -p GD25Q40 -r dump.hex +minipro -p GD25Q40 -w dump.hex + + + +Farbe senden: +echo -n "255000100255000100" >/dev/udp/172.23.92.103/31302 + +Ausschalten: +echo -n "offoff" >/dev/udp/172.23.92.103/31302 + +Einschalten: +Auf den Induktionslader legen schaltet das glas ein +Bei zu niedrigem Akkustand schaltet das glas aus + + + +To Do: +Lötjumper für einschalten und flashen +Akku raussuchen +Mac-Addressen prüfen und notieren (Da IP für ansteuern notwendig) +evtl 100pF an gpio2 + + + +Programmieren: +Power-Up: +./nodemcu-tool upload --port=/dev/ttyUSB1 init.lua +Nun hält die Spannung das Chip-PD auf high +#lua: uart.setup(0, 115200, 8, 0, 1, 1) +./nodemcu-tool upload --baud=115200 --port=/dev/ttyUSB1 glas-V2_1.lua diff --git a/Lua/init.lua b/Lua/init.lua new file mode 100644 index 0000000..e1641ac --- /dev/null +++ b/Lua/init.lua @@ -0,0 +1,6 @@ +gpio.mode(5, gpio.OUTPUT) +gpio.write(5, gpio.HIGH) +tmr.delay(2000000) +tmr.delay(2000000) + +dofile("glas-V2_2.lua") diff --git a/Lua/nodemcu_integer_0.9.6-dev_20150704.bin b/Lua/nodemcu_integer_0.9.6-dev_20150704.bin new file mode 100644 index 0000000..e322da8 Binary files /dev/null and b/Lua/nodemcu_integer_0.9.6-dev_20150704.bin differ diff --git a/pic1.JPG b/pic1.JPG new file mode 100644 index 0000000..6552a65 Binary files /dev/null and b/pic1.JPG differ diff --git a/pic2.JPG b/pic2.JPG new file mode 100644 index 0000000..2f16eec Binary files /dev/null and b/pic2.JPG differ diff --git a/pic3.JPG b/pic3.JPG new file mode 100644 index 0000000..e03fe81 Binary files /dev/null and b/pic3.JPG differ diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..45b0dae --- /dev/null +++ b/readme.md @@ -0,0 +1,27 @@ +# LED-Glasuntersetzer + +![Glas] + +Dies ist ein Untersetzer für Gläser mit zwei WS2812 LEDs und einem ESP8266 zur Steuerung. +Die Untersetzer werden induktiv geladen, sodass diese komplett eingegossen werden können und keine Feuchtigkeit die Platinen beschädigt. +Bitte flexible Vergussmasse verwenden. +Über Wlan lassen sich alle Gläser einzeln oder gemeinsamm ansteuern. + +Das Laden erfolgt mit ca 250kHz ähnlich dem QI Standart. Die Gläser haben jedoch keine Intelligenz eingebaut. +Es muss sichergestellt werden, dass die Gläser beim Laden nicht überhitzen. +Eingeschaltet werden die Gläser mit einem Ladeimpuls und ausgeschaltet werden sie über ein UDP-Packet. + +![Platine] + +Als Gläser bieten sich IKEA-Gläser Typ Godis an. + +Das Gehäuse kann mit dem 3D-Drucker ausgedruckt werden und mit Silikonschlauch abgedichtet werden. +Dieser hat 1mm Innendurchmesser und 3mm Außendurchmesser. + +![Untersetzer] + +Die Gläser lassen sich über Ola ansprechen. Dazu QLC+ installieren und die Python Skripte ausführen. + +[Glas]: pic1.JPG "Glas" +[Platine]: pic3.JPG "Platine" +[Untersetzer]: pic2.JPG "Untersetzer"