| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097 |
- <?xml version="1.0" encoding="utf-8"?>
- <!DOCTYPE eagle SYSTEM "eagle.dtd">
- <eagle version="7.1.0">
- <drawing>
- <settings>
- <setting alwaysvectorfont="no"/>
- <setting verticaltext="up"/>
- </settings>
- <grid distance="1" unitdist="mic" unit="mic" style="lines" multiple="1" display="no" altdistance="0.01" altunitdist="inch" altunit="inch"/>
- <layers>
- <layer number="1" name="Top" color="4" fill="1" visible="yes" active="yes"/>
- <layer number="2" name="Route2" color="1" fill="3" visible="no" active="yes"/>
- <layer number="3" name="Route3" color="4" fill="3" visible="no" active="yes"/>
- <layer number="4" name="Route4" color="1" fill="4" visible="no" active="yes"/>
- <layer number="5" name="Route5" color="4" fill="4" visible="no" active="yes"/>
- <layer number="6" name="Route6" color="1" fill="8" visible="no" active="yes"/>
- <layer number="7" name="Route7" color="4" fill="8" visible="no" active="yes"/>
- <layer number="8" name="Route8" color="1" fill="2" visible="no" active="yes"/>
- <layer number="9" name="Route9" color="4" fill="2" visible="no" active="yes"/>
- <layer number="10" name="Route10" color="1" fill="7" visible="no" active="yes"/>
- <layer number="11" name="Route11" color="4" fill="7" visible="no" active="yes"/>
- <layer number="12" name="Route12" color="1" fill="5" visible="no" active="yes"/>
- <layer number="13" name="Route13" color="4" fill="5" visible="no" active="yes"/>
- <layer number="14" name="Route14" color="1" fill="6" visible="no" active="yes"/>
- <layer number="15" name="Route15" color="4" fill="6" visible="no" active="yes"/>
- <layer number="16" name="Bottom" color="1" fill="1" visible="yes" active="yes"/>
- <layer number="17" name="Pads" color="2" fill="1" visible="yes" active="yes"/>
- <layer number="18" name="Vias" color="2" fill="1" visible="yes" active="yes"/>
- <layer number="19" name="Unrouted" color="6" fill="1" visible="yes" active="yes"/>
- <layer number="20" name="Dimension" color="15" fill="1" visible="yes" active="yes"/>
- <layer number="21" name="tPlace" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="22" name="bPlace" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="23" name="tOrigins" color="15" fill="1" visible="yes" active="yes"/>
- <layer number="24" name="bOrigins" color="15" fill="1" visible="yes" active="yes"/>
- <layer number="25" name="tNames" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="26" name="bNames" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="27" name="tValues" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="28" name="bValues" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="29" name="tStop" color="7" fill="3" visible="no" active="yes"/>
- <layer number="30" name="bStop" color="7" fill="6" visible="no" active="yes"/>
- <layer number="31" name="tCream" color="7" fill="4" visible="no" active="yes"/>
- <layer number="32" name="bCream" color="7" fill="5" visible="no" active="yes"/>
- <layer number="33" name="tFinish" color="6" fill="3" visible="no" active="yes"/>
- <layer number="34" name="bFinish" color="6" fill="6" visible="no" active="yes"/>
- <layer number="35" name="tGlue" color="7" fill="4" visible="yes" active="yes"/>
- <layer number="36" name="bGlue" color="7" fill="5" visible="no" active="yes"/>
- <layer number="37" name="tTest" color="7" fill="1" visible="no" active="yes"/>
- <layer number="38" name="bTest" color="7" fill="1" visible="no" active="yes"/>
- <layer number="39" name="tKeepout" color="4" fill="11" visible="yes" active="yes"/>
- <layer number="40" name="bKeepout" color="1" fill="11" visible="yes" active="yes"/>
- <layer number="41" name="tRestrict" color="4" fill="10" visible="yes" active="yes"/>
- <layer number="42" name="bRestrict" color="1" fill="10" visible="yes" active="yes"/>
- <layer number="43" name="vRestrict" color="2" fill="10" visible="yes" active="yes"/>
- <layer number="44" name="Drills" color="7" fill="1" visible="no" active="yes"/>
- <layer number="45" name="Holes" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="46" name="Milling" color="3" fill="1" visible="no" active="yes"/>
- <layer number="47" name="Measures" color="7" fill="1" visible="no" active="yes"/>
- <layer number="48" name="Document" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="49" name="Reference" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="50" name="dxf" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="51" name="tDocu" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="52" name="bDocu" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="53" name="tGND_GNDA" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="54" name="bGND_GNDA" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="56" name="wert" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="57" name="tCAD" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="90" name="Modules" color="5" fill="1" visible="yes" active="yes"/>
- <layer number="91" name="Nets" color="2" fill="1" visible="yes" active="yes"/>
- <layer number="92" name="Busses" color="1" fill="1" visible="yes" active="yes"/>
- <layer number="93" name="Pins" color="2" fill="1" visible="yes" active="yes"/>
- <layer number="94" name="Symbols" color="4" fill="1" visible="yes" active="yes"/>
- <layer number="95" name="Names" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="96" name="Values" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="97" name="Info" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="98" name="Guide" color="6" fill="1" visible="yes" active="yes"/>
- <layer number="99" name="SpiceOrder" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="100" name="Muster" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="101" name="Patch_Top" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="102" name="Vscore" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="103" name="tMap" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="104" name="Name" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="105" name="tPlate" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="106" name="bPlate" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="107" name="Crop" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="108" name="tplace-old" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="109" name="ref-old" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="110" name="fp0" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="111" name="LPC17xx" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="112" name="tSilk" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="113" name="IDFDebug" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="116" name="Patch_BOT" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="121" name="_tsilk" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="122" name="_bsilk" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="123" name="tTestmark" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="124" name="bTestmark" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="125" name="_tNames" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="126" name="_bNames" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="127" name="_tValues" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="128" name="_bValues" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="131" name="tAdjust" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="132" name="bAdjust" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="144" name="Drill_legend" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="150" name="Notes" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="151" name="HeatSink" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="152" name="_bDocu" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="153" name="FabDoc1" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="154" name="FabDoc2" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="155" name="FabDoc3" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="199" name="Contour" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="200" name="200bmp" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="201" name="201bmp" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="202" name="202bmp" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="203" name="203bmp" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="204" name="204bmp" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="205" name="205bmp" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="206" name="206bmp" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="207" name="207bmp" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="208" name="208bmp" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="209" name="209bmp" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="210" name="210bmp" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="211" name="211bmp" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="212" name="212bmp" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="213" name="213bmp" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="214" name="214bmp" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="215" name="215bmp" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="216" name="216bmp" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="217" name="217bmp" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="218" name="218bmp" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="219" name="219bmp" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="220" name="220bmp" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="221" name="221bmp" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="222" name="222bmp" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="223" name="223bmp" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="224" name="224bmp" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="248" name="Housing" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="249" name="Edge" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="250" name="Descript" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="251" name="SMDround" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="254" name="cooling" color="7" fill="1" visible="yes" active="yes"/>
- </layers>
- <library>
- <packages>
- <package name="0204/5">
- <description><b>RESISTOR</b><p>
- type 0204, grid 5 mm</description>
- <wire x1="2.54" y1="0" x2="2.032" y2="0" width="0.508" layer="51"/>
- <wire x1="-2.54" y1="0" x2="-2.032" y2="0" width="0.508" layer="51"/>
- <wire x1="-1.778" y1="0.635" x2="-1.524" y2="0.889" width="0.1524" layer="21" curve="-90"/>
- <wire x1="-1.778" y1="-0.635" x2="-1.524" y2="-0.889" width="0.1524" layer="21" curve="90"/>
- <wire x1="1.524" y1="-0.889" x2="1.778" y2="-0.635" width="0.1524" layer="21" curve="90"/>
- <wire x1="1.524" y1="0.889" x2="1.778" y2="0.635" width="0.1524" layer="21" curve="-90"/>
- <wire x1="-1.778" y1="-0.635" x2="-1.778" y2="0.635" width="0.1524" layer="51"/>
- <wire x1="-1.524" y1="0.889" x2="-1.27" y2="0.889" width="0.1524" layer="21"/>
- <wire x1="-1.143" y1="0.762" x2="-1.27" y2="0.889" width="0.1524" layer="21"/>
- <wire x1="-1.524" y1="-0.889" x2="-1.27" y2="-0.889" width="0.1524" layer="21"/>
- <wire x1="-1.143" y1="-0.762" x2="-1.27" y2="-0.889" width="0.1524" layer="21"/>
- <wire x1="1.143" y1="0.762" x2="1.27" y2="0.889" width="0.1524" layer="21"/>
- <wire x1="1.143" y1="0.762" x2="-1.143" y2="0.762" width="0.1524" layer="21"/>
- <wire x1="1.143" y1="-0.762" x2="1.27" y2="-0.889" width="0.1524" layer="21"/>
- <wire x1="1.143" y1="-0.762" x2="-1.143" y2="-0.762" width="0.1524" layer="21"/>
- <wire x1="1.524" y1="0.889" x2="1.27" y2="0.889" width="0.1524" layer="21"/>
- <wire x1="1.524" y1="-0.889" x2="1.27" y2="-0.889" width="0.1524" layer="21"/>
- <wire x1="1.778" y1="-0.635" x2="1.778" y2="0.635" width="0.1524" layer="51"/>
- <rectangle x1="-2.032" y1="-0.254" x2="-1.778" y2="0.254" layer="51"/>
- <rectangle x1="1.778" y1="-0.254" x2="2.032" y2="0.254" layer="51"/>
- <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
- <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
- <text x="-2.0066" y="1.1684" size="0.9906" layer="25" ratio="10">>NAME</text>
- <text x="-2.1336" y="-2.3114" size="0.9906" layer="27" ratio="10">>VALUE</text>
- </package>
- <package name="0204/7">
- <description><b>RESISTOR</b><p>
- type 0204, grid 7.5 mm</description>
- <wire x1="3.81" y1="0" x2="2.921" y2="0" width="0.508" layer="51"/>
- <wire x1="-3.81" y1="0" x2="-2.921" y2="0" width="0.508" layer="51"/>
- <wire x1="-2.54" y1="0.762" x2="-2.286" y2="1.016" width="0.1524" layer="21" curve="-90"/>
- <wire x1="-2.54" y1="-0.762" x2="-2.286" y2="-1.016" width="0.1524" layer="21" curve="90"/>
- <wire x1="2.286" y1="-1.016" x2="2.54" y2="-0.762" width="0.1524" layer="21" curve="90"/>
- <wire x1="2.286" y1="1.016" x2="2.54" y2="0.762" width="0.1524" layer="21" curve="-90"/>
- <wire x1="-2.54" y1="-0.762" x2="-2.54" y2="0.762" width="0.1524" layer="21"/>
- <wire x1="-2.286" y1="1.016" x2="-1.905" y2="1.016" width="0.1524" layer="21"/>
- <wire x1="-1.778" y1="0.889" x2="-1.905" y2="1.016" width="0.1524" layer="21"/>
- <wire x1="-2.286" y1="-1.016" x2="-1.905" y2="-1.016" width="0.1524" layer="21"/>
- <wire x1="-1.778" y1="-0.889" x2="-1.905" y2="-1.016" width="0.1524" layer="21"/>
- <wire x1="1.778" y1="0.889" x2="1.905" y2="1.016" width="0.1524" layer="21"/>
- <wire x1="1.778" y1="0.889" x2="-1.778" y2="0.889" width="0.1524" layer="21"/>
- <wire x1="1.778" y1="-0.889" x2="1.905" y2="-1.016" width="0.1524" layer="21"/>
- <wire x1="1.778" y1="-0.889" x2="-1.778" y2="-0.889" width="0.1524" layer="21"/>
- <wire x1="2.286" y1="1.016" x2="1.905" y2="1.016" width="0.1524" layer="21"/>
- <wire x1="2.286" y1="-1.016" x2="1.905" y2="-1.016" width="0.1524" layer="21"/>
- <wire x1="2.54" y1="-0.762" x2="2.54" y2="0.762" width="0.1524" layer="21"/>
- <rectangle x1="2.54" y1="-0.254" x2="2.921" y2="0.254" layer="21"/>
- <rectangle x1="-2.921" y1="-0.254" x2="-2.54" y2="0.254" layer="21"/>
- <pad name="1" x="-3.81" y="0" drill="0.8128" shape="octagon"/>
- <pad name="2" x="3.81" y="0" drill="0.8128" shape="octagon"/>
- <text x="-2.54" y="1.2954" size="0.9906" layer="25" ratio="10">>NAME</text>
- <text x="-1.6256" y="-0.4826" size="0.9906" layer="27" ratio="10">>VALUE</text>
- </package>
- <package name="0204V">
- <description><b>RESISTOR</b><p>
- type 0204, grid 2.5 mm</description>
- <circle x="-1.27" y="0" radius="0.889" width="0.1524" layer="51"/>
- <circle x="-1.27" y="0" radius="0.635" width="0.0508" layer="51"/>
- <wire x1="-1.27" y1="0" x2="1.27" y2="0" width="0.508" layer="51"/>
- <wire x1="-0.127" y1="0" x2="0.127" y2="0" width="0.508" layer="21"/>
- <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
- <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
- <text x="-2.1336" y="1.1684" size="1.27" layer="25" ratio="10">>NAME</text>
- <text x="-2.1336" y="-2.3114" size="1.27" layer="27" ratio="10">>VALUE</text>
- </package>
- <package name="0207/2V">
- <description><b>RESISTOR</b><p>
- type 0207, grid 2.5 mm</description>
- <circle x="-1.27" y="0" radius="1.27" width="0.1524" layer="21"/>
- <circle x="-1.27" y="0" radius="1.016" width="0.1524" layer="51"/>
- <wire x1="-1.27" y1="0" x2="-0.381" y2="0" width="0.6096" layer="51"/>
- <wire x1="-0.254" y1="0" x2="0.254" y2="0" width="0.6096" layer="21"/>
- <wire x1="0.381" y1="0" x2="1.27" y2="0" width="0.6096" layer="51"/>
- <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
- <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
- <text x="-0.0508" y="1.016" size="1.27" layer="25" ratio="10">>NAME</text>
- <text x="-0.0508" y="-2.2352" size="1.27" layer="27" ratio="10">>VALUE</text>
- </package>
- <package name="0207/5V">
- <description><b>RESISTOR</b><p>
- type 0207, grid 5 mm</description>
- <circle x="-2.54" y="0" radius="1.27" width="0.1016" layer="21"/>
- <circle x="-2.54" y="0" radius="1.016" width="0.1524" layer="51"/>
- <wire x1="-2.54" y1="0" x2="-0.889" y2="0" width="0.6096" layer="51"/>
- <wire x1="-0.762" y1="0" x2="0.762" y2="0" width="0.6096" layer="21"/>
- <wire x1="0.889" y1="0" x2="2.54" y2="0" width="0.6096" layer="51"/>
- <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
- <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
- <text x="-1.143" y="0.889" size="1.27" layer="25" ratio="10">>NAME</text>
- <text x="-1.143" y="-2.159" size="1.27" layer="27" ratio="10">>VALUE</text>
- </package>
- <package name="0207/7">
- <description><b>RESISTOR</b><p>
- type 0207, grid 7.5 mm</description>
- <wire x1="-3.81" y1="0" x2="-3.429" y2="0" width="0.6096" layer="51"/>
- <wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
- <wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
- <wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
- <wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
- <wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="51"/>
- <wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
- <wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
- <wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
- <wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
- <wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
- <wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
- <wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
- <wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
- <wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
- <wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
- <wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="51"/>
- <wire x1="3.429" y1="0" x2="3.81" y2="0" width="0.6096" layer="51"/>
- <rectangle x1="-3.429" y1="-0.3048" x2="-3.175" y2="0.3048" layer="51"/>
- <rectangle x1="3.175" y1="-0.3048" x2="3.429" y2="0.3048" layer="51"/>
- <pad name="1" x="-3.81" y="0" drill="0.8128" shape="octagon"/>
- <pad name="2" x="3.81" y="0" drill="0.8128" shape="octagon"/>
- <text x="-2.54" y="1.397" size="1.27" layer="25" ratio="10">>NAME</text>
- <text x="-2.286" y="-0.5588" size="1.27" layer="27" ratio="10">>VALUE</text>
- </package>
- <package name="0207/10">
- <description><b>RESISTOR</b><p>
- type 0207, grid 10 mm</description>
- <wire x1="5.08" y1="0" x2="4.064" y2="0" width="0.6096" layer="51"/>
- <wire x1="-5.08" y1="0" x2="-4.064" y2="0" width="0.6096" layer="51"/>
- <wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
- <wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
- <wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
- <wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
- <wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="21"/>
- <wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
- <wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
- <wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
- <wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
- <wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
- <wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
- <wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
- <wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
- <wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
- <wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
- <wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="21"/>
- <rectangle x1="3.175" y1="-0.3048" x2="4.0386" y2="0.3048" layer="21"/>
- <rectangle x1="-4.0386" y1="-0.3048" x2="-3.175" y2="0.3048" layer="21"/>
- <pad name="1" x="-5.08" y="0" drill="0.8128" shape="octagon"/>
- <pad name="2" x="5.08" y="0" drill="0.8128" shape="octagon"/>
- <text x="-3.048" y="1.524" size="1.27" layer="25" ratio="10">>NAME</text>
- <text x="-2.2606" y="-0.635" size="1.27" layer="27" ratio="10">>VALUE</text>
- </package>
- <package name="0207/12">
- <description><b>RESISTOR</b><p>
- type 0207, grid 12 mm</description>
- <wire x1="6.35" y1="0" x2="5.334" y2="0" width="0.6096" layer="51"/>
- <wire x1="-6.35" y1="0" x2="-5.334" y2="0" width="0.6096" layer="51"/>
- <wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
- <wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
- <wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
- <wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
- <wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="21"/>
- <wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
- <wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
- <wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
- <wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
- <wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
- <wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
- <wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
- <wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
- <wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
- <wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
- <wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="21"/>
- <wire x1="4.445" y1="0" x2="4.064" y2="0" width="0.6096" layer="21"/>
- <wire x1="-4.445" y1="0" x2="-4.064" y2="0" width="0.6096" layer="21"/>
- <rectangle x1="3.175" y1="-0.3048" x2="4.0386" y2="0.3048" layer="21"/>
- <rectangle x1="-4.0386" y1="-0.3048" x2="-3.175" y2="0.3048" layer="21"/>
- <rectangle x1="4.445" y1="-0.3048" x2="5.3086" y2="0.3048" layer="21"/>
- <rectangle x1="-5.3086" y1="-0.3048" x2="-4.445" y2="0.3048" layer="21"/>
- <pad name="1" x="-6.35" y="0" drill="0.8128" shape="octagon"/>
- <pad name="2" x="6.35" y="0" drill="0.8128" shape="octagon"/>
- <text x="-3.175" y="1.397" size="1.27" layer="25" ratio="10">>NAME</text>
- <text x="-2.286" y="-0.6858" size="1.27" layer="27" ratio="10">>VALUE</text>
- </package>
- <package name="0207/15">
- <description><b>RESISTOR</b><p>
- type 0207, grid 15mm</description>
- <wire x1="7.62" y1="0" x2="6.604" y2="0" width="0.6096" layer="51"/>
- <wire x1="-7.62" y1="0" x2="-6.604" y2="0" width="0.6096" layer="51"/>
- <wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
- <wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
- <wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
- <wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
- <wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="21"/>
- <wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
- <wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
- <wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
- <wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
- <wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
- <wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
- <wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
- <wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
- <wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
- <wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
- <wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="21"/>
- <wire x1="5.715" y1="0" x2="4.064" y2="0" width="0.6096" layer="21"/>
- <wire x1="-5.715" y1="0" x2="-4.064" y2="0" width="0.6096" layer="21"/>
- <rectangle x1="3.175" y1="-0.3048" x2="4.0386" y2="0.3048" layer="21"/>
- <rectangle x1="-4.0386" y1="-0.3048" x2="-3.175" y2="0.3048" layer="21"/>
- <rectangle x1="5.715" y1="-0.3048" x2="6.5786" y2="0.3048" layer="21"/>
- <rectangle x1="-6.5786" y1="-0.3048" x2="-5.715" y2="0.3048" layer="21"/>
- <pad name="1" x="-7.62" y="0" drill="0.8128" shape="octagon"/>
- <pad name="2" x="7.62" y="0" drill="0.8128" shape="octagon"/>
- <text x="-3.175" y="1.397" size="1.27" layer="25" ratio="10">>NAME</text>
- <text x="-2.286" y="-0.6858" size="1.27" layer="27" ratio="10">>VALUE</text>
- </package>
- <package name="0309/10">
- <description><b>RESISTOR</b><p>
- type 0309, grid 10mm</description>
- <wire x1="-4.699" y1="0" x2="-5.08" y2="0" width="0.6096" layer="51"/>
- <wire x1="-4.318" y1="1.27" x2="-4.064" y2="1.524" width="0.1524" layer="21" curve="-90"/>
- <wire x1="-4.318" y1="-1.27" x2="-4.064" y2="-1.524" width="0.1524" layer="21" curve="90"/>
- <wire x1="4.064" y1="-1.524" x2="4.318" y2="-1.27" width="0.1524" layer="21" curve="90"/>
- <wire x1="4.064" y1="1.524" x2="4.318" y2="1.27" width="0.1524" layer="21" curve="-90"/>
- <wire x1="-4.318" y1="-1.27" x2="-4.318" y2="1.27" width="0.1524" layer="51"/>
- <wire x1="-4.064" y1="1.524" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
- <wire x1="-3.302" y1="1.397" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
- <wire x1="-4.064" y1="-1.524" x2="-3.429" y2="-1.524" width="0.1524" layer="21"/>
- <wire x1="-3.302" y1="-1.397" x2="-3.429" y2="-1.524" width="0.1524" layer="21"/>
- <wire x1="3.302" y1="1.397" x2="3.429" y2="1.524" width="0.1524" layer="21"/>
- <wire x1="3.302" y1="1.397" x2="-3.302" y2="1.397" width="0.1524" layer="21"/>
- <wire x1="3.302" y1="-1.397" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
- <wire x1="3.302" y1="-1.397" x2="-3.302" y2="-1.397" width="0.1524" layer="21"/>
- <wire x1="4.064" y1="1.524" x2="3.429" y2="1.524" width="0.1524" layer="21"/>
- <wire x1="4.064" y1="-1.524" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
- <wire x1="4.318" y1="-1.27" x2="4.318" y2="1.27" width="0.1524" layer="51"/>
- <wire x1="5.08" y1="0" x2="4.699" y2="0" width="0.6096" layer="51"/>
- <rectangle x1="-4.6228" y1="-0.3048" x2="-4.318" y2="0.3048" layer="51"/>
- <rectangle x1="4.318" y1="-0.3048" x2="4.6228" y2="0.3048" layer="51"/>
- <pad name="1" x="-5.08" y="0" drill="0.8128" shape="octagon"/>
- <pad name="2" x="5.08" y="0" drill="0.8128" shape="octagon"/>
- <text x="-4.191" y="1.905" size="1.27" layer="25" ratio="10">>NAME</text>
- <text x="-3.175" y="-0.6858" size="1.27" layer="27" ratio="10">>VALUE</text>
- </package>
- <package name="0309/12">
- <description><b>RESISTOR</b><p>
- type 0309, grid 12.5 mm</description>
- <wire x1="6.35" y1="0" x2="5.08" y2="0" width="0.6096" layer="51"/>
- <wire x1="-6.35" y1="0" x2="-5.08" y2="0" width="0.6096" layer="51"/>
- <wire x1="-4.318" y1="1.27" x2="-4.064" y2="1.524" width="0.1524" layer="21" curve="-90"/>
- <wire x1="-4.318" y1="-1.27" x2="-4.064" y2="-1.524" width="0.1524" layer="21" curve="90"/>
- <wire x1="4.064" y1="-1.524" x2="4.318" y2="-1.27" width="0.1524" layer="21" curve="90"/>
- <wire x1="4.064" y1="1.524" x2="4.318" y2="1.27" width="0.1524" layer="21" curve="-90"/>
- <wire x1="-4.318" y1="-1.27" x2="-4.318" y2="1.27" width="0.1524" layer="21"/>
- <wire x1="-4.064" y1="1.524" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
- <wire x1="-3.302" y1="1.397" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
- <wire x1="-4.064" y1="-1.524" x2="-3.429" y2="-1.524" width="0.1524" layer="21"/>
- <wire x1="-3.302" y1="-1.397" x2="-3.429" y2="-1.524" width="0.1524" layer="21"/>
- <wire x1="3.302" y1="1.397" x2="3.429" y2="1.524" width="0.1524" layer="21"/>
- <wire x1="3.302" y1="1.397" x2="-3.302" y2="1.397" width="0.1524" layer="21"/>
- <wire x1="3.302" y1="-1.397" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
- <wire x1="3.302" y1="-1.397" x2="-3.302" y2="-1.397" width="0.1524" layer="21"/>
- <wire x1="4.064" y1="1.524" x2="3.429" y2="1.524" width="0.1524" layer="21"/>
- <wire x1="4.064" y1="-1.524" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
- <wire x1="4.318" y1="-1.27" x2="4.318" y2="1.27" width="0.1524" layer="21"/>
- <rectangle x1="4.318" y1="-0.3048" x2="5.1816" y2="0.3048" layer="21"/>
- <rectangle x1="-5.1816" y1="-0.3048" x2="-4.318" y2="0.3048" layer="21"/>
- <pad name="1" x="-6.35" y="0" drill="0.8128" shape="octagon"/>
- <pad name="2" x="6.35" y="0" drill="0.8128" shape="octagon"/>
- <text x="-4.191" y="1.905" size="1.27" layer="25" ratio="10">>NAME</text>
- <text x="-3.175" y="-0.6858" size="1.27" layer="27" ratio="10">>VALUE</text>
- </package>
- <package name="0309V">
- <description><b>RESISTOR</b><p>
- type 0309, grid 2.5 mm</description>
- <circle x="-1.27" y="0" radius="1.524" width="0.1524" layer="21"/>
- <circle x="-1.27" y="0" radius="0.762" width="0.1524" layer="51"/>
- <wire x1="1.27" y1="0" x2="0.635" y2="0" width="0.6096" layer="51"/>
- <wire x1="-0.635" y1="0" x2="-1.27" y2="0" width="0.6096" layer="51"/>
- <rectangle x1="0.254" y1="-0.3048" x2="0.5588" y2="0.3048" layer="51"/>
- <rectangle x1="-0.635" y1="-0.3048" x2="-0.3302" y2="0.3048" layer="51"/>
- <rectangle x1="-0.3302" y1="-0.3048" x2="0.254" y2="0.3048" layer="21"/>
- <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
- <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
- <text x="0.254" y="1.016" size="1.27" layer="25" ratio="10">>NAME</text>
- <text x="0.254" y="-2.2098" size="1.27" layer="27" ratio="10">>VALUE</text>
- </package>
- <package name="0411/12">
- <description><b>RESISTOR</b><p>
- type 0411, grid 12.5 mm</description>
- <wire x1="6.35" y1="0" x2="5.461" y2="0" width="0.762" layer="51"/>
- <wire x1="-6.35" y1="0" x2="-5.461" y2="0" width="0.762" layer="51"/>
- <wire x1="5.08" y1="-1.651" x2="5.08" y2="1.651" width="0.1524" layer="21"/>
- <wire x1="4.699" y1="2.032" x2="5.08" y2="1.651" width="0.1524" layer="21" curve="-90"/>
- <wire x1="-5.08" y1="-1.651" x2="-4.699" y2="-2.032" width="0.1524" layer="21" curve="90"/>
- <wire x1="4.699" y1="-2.032" x2="5.08" y2="-1.651" width="0.1524" layer="21" curve="90"/>
- <wire x1="-5.08" y1="1.651" x2="-4.699" y2="2.032" width="0.1524" layer="21" curve="-90"/>
- <wire x1="4.699" y1="2.032" x2="4.064" y2="2.032" width="0.1524" layer="21"/>
- <wire x1="3.937" y1="1.905" x2="4.064" y2="2.032" width="0.1524" layer="21"/>
- <wire x1="4.699" y1="-2.032" x2="4.064" y2="-2.032" width="0.1524" layer="21"/>
- <wire x1="3.937" y1="-1.905" x2="4.064" y2="-2.032" width="0.1524" layer="21"/>
- <wire x1="-3.937" y1="1.905" x2="-4.064" y2="2.032" width="0.1524" layer="21"/>
- <wire x1="-3.937" y1="1.905" x2="3.937" y2="1.905" width="0.1524" layer="21"/>
- <wire x1="-3.937" y1="-1.905" x2="-4.064" y2="-2.032" width="0.1524" layer="21"/>
- <wire x1="-3.937" y1="-1.905" x2="3.937" y2="-1.905" width="0.1524" layer="21"/>
- <wire x1="-5.08" y1="1.651" x2="-5.08" y2="-1.651" width="0.1524" layer="21"/>
- <wire x1="-4.699" y1="2.032" x2="-4.064" y2="2.032" width="0.1524" layer="21"/>
- <wire x1="-4.699" y1="-2.032" x2="-4.064" y2="-2.032" width="0.1524" layer="21"/>
- <rectangle x1="-5.3594" y1="-0.381" x2="-5.08" y2="0.381" layer="21"/>
- <rectangle x1="5.08" y1="-0.381" x2="5.3594" y2="0.381" layer="21"/>
- <pad name="1" x="-6.35" y="0" drill="0.9144" shape="octagon"/>
- <pad name="2" x="6.35" y="0" drill="0.9144" shape="octagon"/>
- <text x="-5.08" y="2.413" size="1.27" layer="25" ratio="10">>NAME</text>
- <text x="-3.5814" y="-0.635" size="1.27" layer="27" ratio="10">>VALUE</text>
- </package>
- <package name="0411/15">
- <description><b>RESISTOR</b><p>
- type 0411, grid 15 mm</description>
- <wire x1="5.08" y1="-1.651" x2="5.08" y2="1.651" width="0.1524" layer="21"/>
- <wire x1="4.699" y1="2.032" x2="5.08" y2="1.651" width="0.1524" layer="21" curve="-90"/>
- <wire x1="-5.08" y1="-1.651" x2="-4.699" y2="-2.032" width="0.1524" layer="21" curve="90"/>
- <wire x1="4.699" y1="-2.032" x2="5.08" y2="-1.651" width="0.1524" layer="21" curve="90"/>
- <wire x1="-5.08" y1="1.651" x2="-4.699" y2="2.032" width="0.1524" layer="21" curve="-90"/>
- <wire x1="4.699" y1="2.032" x2="4.064" y2="2.032" width="0.1524" layer="21"/>
- <wire x1="3.937" y1="1.905" x2="4.064" y2="2.032" width="0.1524" layer="21"/>
- <wire x1="4.699" y1="-2.032" x2="4.064" y2="-2.032" width="0.1524" layer="21"/>
- <wire x1="3.937" y1="-1.905" x2="4.064" y2="-2.032" width="0.1524" layer="21"/>
- <wire x1="-3.937" y1="1.905" x2="-4.064" y2="2.032" width="0.1524" layer="21"/>
- <wire x1="-3.937" y1="1.905" x2="3.937" y2="1.905" width="0.1524" layer="21"/>
- <wire x1="-3.937" y1="-1.905" x2="-4.064" y2="-2.032" width="0.1524" layer="21"/>
- <wire x1="-3.937" y1="-1.905" x2="3.937" y2="-1.905" width="0.1524" layer="21"/>
- <wire x1="-5.08" y1="1.651" x2="-5.08" y2="-1.651" width="0.1524" layer="21"/>
- <wire x1="-4.699" y1="2.032" x2="-4.064" y2="2.032" width="0.1524" layer="21"/>
- <wire x1="-4.699" y1="-2.032" x2="-4.064" y2="-2.032" width="0.1524" layer="21"/>
- <wire x1="-7.62" y1="0" x2="-6.35" y2="0" width="0.762" layer="51"/>
- <wire x1="6.35" y1="0" x2="7.62" y2="0" width="0.762" layer="51"/>
- <rectangle x1="5.08" y1="-0.381" x2="6.477" y2="0.381" layer="21"/>
- <rectangle x1="-6.477" y1="-0.381" x2="-5.08" y2="0.381" layer="21"/>
- <pad name="1" x="-7.62" y="0" drill="0.9144" shape="octagon"/>
- <pad name="2" x="7.62" y="0" drill="0.9144" shape="octagon"/>
- <text x="-5.08" y="2.413" size="1.27" layer="25" ratio="10">>NAME</text>
- <text x="-3.5814" y="-0.635" size="1.27" layer="27" ratio="10">>VALUE</text>
- </package>
- <package name="0411V">
- <description><b>RESISTOR</b><p>
- type 0411, grid 3.81 mm</description>
- <circle x="-2.54" y="0" radius="2.032" width="0.1524" layer="21"/>
- <circle x="-2.54" y="0" radius="1.016" width="0.1524" layer="51"/>
- <wire x1="1.27" y1="0" x2="0.3048" y2="0" width="0.762" layer="51"/>
- <wire x1="-1.5748" y1="0" x2="-2.54" y2="0" width="0.762" layer="51"/>
- <rectangle x1="-1.4732" y1="-0.381" x2="0.2032" y2="0.381" layer="21"/>
- <pad name="1" x="-2.54" y="0" drill="0.9144" shape="octagon"/>
- <pad name="2" x="1.27" y="0" drill="0.9144" shape="octagon"/>
- <text x="-0.508" y="1.143" size="1.27" layer="25" ratio="10">>NAME</text>
- <text x="-0.5334" y="-2.413" size="1.27" layer="27" ratio="10">>VALUE</text>
- </package>
- <package name="0414/15">
- <description><b>RESISTOR</b><p>
- type 0414, grid 15 mm</description>
- <wire x1="7.62" y1="0" x2="6.604" y2="0" width="0.8128" layer="51"/>
- <wire x1="-7.62" y1="0" x2="-6.604" y2="0" width="0.8128" layer="51"/>
- <wire x1="-6.096" y1="1.905" x2="-5.842" y2="2.159" width="0.1524" layer="21" curve="-90"/>
- <wire x1="-6.096" y1="-1.905" x2="-5.842" y2="-2.159" width="0.1524" layer="21" curve="90"/>
- <wire x1="5.842" y1="-2.159" x2="6.096" y2="-1.905" width="0.1524" layer="21" curve="90"/>
- <wire x1="5.842" y1="2.159" x2="6.096" y2="1.905" width="0.1524" layer="21" curve="-90"/>
- <wire x1="-6.096" y1="-1.905" x2="-6.096" y2="1.905" width="0.1524" layer="21"/>
- <wire x1="-5.842" y1="2.159" x2="-4.953" y2="2.159" width="0.1524" layer="21"/>
- <wire x1="-4.826" y1="2.032" x2="-4.953" y2="2.159" width="0.1524" layer="21"/>
- <wire x1="-5.842" y1="-2.159" x2="-4.953" y2="-2.159" width="0.1524" layer="21"/>
- <wire x1="-4.826" y1="-2.032" x2="-4.953" y2="-2.159" width="0.1524" layer="21"/>
- <wire x1="4.826" y1="2.032" x2="4.953" y2="2.159" width="0.1524" layer="21"/>
- <wire x1="4.826" y1="2.032" x2="-4.826" y2="2.032" width="0.1524" layer="21"/>
- <wire x1="4.826" y1="-2.032" x2="4.953" y2="-2.159" width="0.1524" layer="21"/>
- <wire x1="4.826" y1="-2.032" x2="-4.826" y2="-2.032" width="0.1524" layer="21"/>
- <wire x1="5.842" y1="2.159" x2="4.953" y2="2.159" width="0.1524" layer="21"/>
- <wire x1="5.842" y1="-2.159" x2="4.953" y2="-2.159" width="0.1524" layer="21"/>
- <wire x1="6.096" y1="-1.905" x2="6.096" y2="1.905" width="0.1524" layer="21"/>
- <rectangle x1="6.096" y1="-0.4064" x2="6.5024" y2="0.4064" layer="21"/>
- <rectangle x1="-6.5024" y1="-0.4064" x2="-6.096" y2="0.4064" layer="21"/>
- <pad name="1" x="-7.62" y="0" drill="1.016" shape="octagon"/>
- <pad name="2" x="7.62" y="0" drill="1.016" shape="octagon"/>
- <text x="-6.096" y="2.5654" size="1.27" layer="25" ratio="10">>NAME</text>
- <text x="-4.318" y="-0.5842" size="1.27" layer="27" ratio="10">>VALUE</text>
- </package>
- <package name="0414V">
- <description><b>RESISTOR</b><p>
- type 0414, grid 5 mm</description>
- <circle x="-2.54" y="0" radius="2.159" width="0.1524" layer="21"/>
- <circle x="-2.54" y="0" radius="1.143" width="0.1524" layer="51"/>
- <wire x1="2.54" y1="0" x2="1.397" y2="0" width="0.8128" layer="51"/>
- <wire x1="-2.54" y1="0" x2="-1.397" y2="0" width="0.8128" layer="51"/>
- <rectangle x1="-1.2954" y1="-0.4064" x2="1.2954" y2="0.4064" layer="21"/>
- <pad name="1" x="-2.54" y="0" drill="1.016" shape="octagon"/>
- <pad name="2" x="2.54" y="0" drill="1.016" shape="octagon"/>
- <text x="-0.381" y="1.1684" size="1.27" layer="25" ratio="10">>NAME</text>
- <text x="-0.381" y="-2.3622" size="1.27" layer="27" ratio="10">>VALUE</text>
- </package>
- <package name="0617/17">
- <description><b>RESISTOR</b><p>
- type 0617, grid 17.5 mm</description>
- <wire x1="-8.89" y1="0" x2="-8.636" y2="0" width="0.8128" layer="51"/>
- <wire x1="-7.874" y1="3.048" x2="-6.985" y2="3.048" width="0.1524" layer="21"/>
- <wire x1="-6.731" y1="2.794" x2="-6.985" y2="3.048" width="0.1524" layer="21"/>
- <wire x1="-7.874" y1="-3.048" x2="-6.985" y2="-3.048" width="0.1524" layer="21"/>
- <wire x1="-6.731" y1="-2.794" x2="-6.985" y2="-3.048" width="0.1524" layer="21"/>
- <wire x1="6.731" y1="2.794" x2="6.985" y2="3.048" width="0.1524" layer="21"/>
- <wire x1="6.731" y1="2.794" x2="-6.731" y2="2.794" width="0.1524" layer="21"/>
- <wire x1="6.731" y1="-2.794" x2="6.985" y2="-3.048" width="0.1524" layer="21"/>
- <wire x1="6.731" y1="-2.794" x2="-6.731" y2="-2.794" width="0.1524" layer="21"/>
- <wire x1="7.874" y1="3.048" x2="6.985" y2="3.048" width="0.1524" layer="21"/>
- <wire x1="7.874" y1="-3.048" x2="6.985" y2="-3.048" width="0.1524" layer="21"/>
- <wire x1="-8.255" y1="-2.667" x2="-8.255" y2="-1.016" width="0.1524" layer="21"/>
- <wire x1="-8.255" y1="1.016" x2="-8.255" y2="-1.016" width="0.1524" layer="51"/>
- <wire x1="-8.255" y1="1.016" x2="-8.255" y2="2.667" width="0.1524" layer="21"/>
- <wire x1="8.255" y1="-2.667" x2="8.255" y2="-1.016" width="0.1524" layer="21"/>
- <wire x1="8.255" y1="1.016" x2="8.255" y2="-1.016" width="0.1524" layer="51"/>
- <wire x1="8.255" y1="1.016" x2="8.255" y2="2.667" width="0.1524" layer="21"/>
- <wire x1="8.636" y1="0" x2="8.89" y2="0" width="0.8128" layer="51"/>
- <wire x1="-8.255" y1="2.667" x2="-7.874" y2="3.048" width="0.1524" layer="21" curve="-90"/>
- <wire x1="7.874" y1="3.048" x2="8.255" y2="2.667" width="0.1524" layer="21" curve="-90"/>
- <wire x1="-8.255" y1="-2.667" x2="-7.874" y2="-3.048" width="0.1524" layer="21" curve="90"/>
- <wire x1="7.874" y1="-3.048" x2="8.255" y2="-2.667" width="0.1524" layer="21" curve="90"/>
- <rectangle x1="-8.5344" y1="-0.4064" x2="-8.2296" y2="0.4064" layer="51"/>
- <rectangle x1="8.2296" y1="-0.4064" x2="8.5344" y2="0.4064" layer="51"/>
- <pad name="1" x="-8.89" y="0" drill="1.016" shape="octagon"/>
- <pad name="2" x="8.89" y="0" drill="1.016" shape="octagon"/>
- <text x="-8.128" y="3.4544" size="1.27" layer="25" ratio="10">>NAME</text>
- <text x="-6.096" y="-0.7112" size="1.27" layer="27" ratio="10">>VALUE</text>
- </package>
- <package name="0617/22">
- <description><b>RESISTOR</b><p>
- type 0617, grid 22.5 mm</description>
- <wire x1="-10.287" y1="0" x2="-11.43" y2="0" width="0.8128" layer="51"/>
- <wire x1="-8.255" y1="-2.667" x2="-8.255" y2="2.667" width="0.1524" layer="21"/>
- <wire x1="-7.874" y1="3.048" x2="-6.985" y2="3.048" width="0.1524" layer="21"/>
- <wire x1="-6.731" y1="2.794" x2="-6.985" y2="3.048" width="0.1524" layer="21"/>
- <wire x1="-7.874" y1="-3.048" x2="-6.985" y2="-3.048" width="0.1524" layer="21"/>
- <wire x1="-6.731" y1="-2.794" x2="-6.985" y2="-3.048" width="0.1524" layer="21"/>
- <wire x1="6.731" y1="2.794" x2="6.985" y2="3.048" width="0.1524" layer="21"/>
- <wire x1="6.731" y1="2.794" x2="-6.731" y2="2.794" width="0.1524" layer="21"/>
- <wire x1="6.731" y1="-2.794" x2="6.985" y2="-3.048" width="0.1524" layer="21"/>
- <wire x1="6.731" y1="-2.794" x2="-6.731" y2="-2.794" width="0.1524" layer="21"/>
- <wire x1="7.874" y1="3.048" x2="6.985" y2="3.048" width="0.1524" layer="21"/>
- <wire x1="7.874" y1="-3.048" x2="6.985" y2="-3.048" width="0.1524" layer="21"/>
- <wire x1="8.255" y1="-2.667" x2="8.255" y2="2.667" width="0.1524" layer="21"/>
- <wire x1="11.43" y1="0" x2="10.287" y2="0" width="0.8128" layer="51"/>
- <wire x1="-8.255" y1="2.667" x2="-7.874" y2="3.048" width="0.1524" layer="21" curve="-90"/>
- <wire x1="-8.255" y1="-2.667" x2="-7.874" y2="-3.048" width="0.1524" layer="21" curve="90"/>
- <wire x1="7.874" y1="3.048" x2="8.255" y2="2.667" width="0.1524" layer="21" curve="-90"/>
- <wire x1="7.874" y1="-3.048" x2="8.255" y2="-2.667" width="0.1524" layer="21" curve="90"/>
- <rectangle x1="-10.1854" y1="-0.4064" x2="-8.255" y2="0.4064" layer="21"/>
- <rectangle x1="8.255" y1="-0.4064" x2="10.1854" y2="0.4064" layer="21"/>
- <pad name="1" x="-11.43" y="0" drill="1.016" shape="octagon"/>
- <pad name="2" x="11.43" y="0" drill="1.016" shape="octagon"/>
- <text x="-8.255" y="3.4544" size="1.27" layer="25" ratio="10">>NAME</text>
- <text x="-6.477" y="-0.5842" size="1.27" layer="27" ratio="10">>VALUE</text>
- </package>
- <package name="0617V">
- <description><b>RESISTOR</b><p>
- type 0617, grid 5 mm</description>
- <circle x="-2.54" y="0" radius="3.048" width="0.1524" layer="21"/>
- <circle x="-2.54" y="0" radius="1.143" width="0.1524" layer="51"/>
- <wire x1="-2.54" y1="0" x2="-1.27" y2="0" width="0.8128" layer="51"/>
- <wire x1="1.27" y1="0" x2="2.54" y2="0" width="0.8128" layer="51"/>
- <rectangle x1="-1.3208" y1="-0.4064" x2="1.3208" y2="0.4064" layer="21"/>
- <pad name="1" x="-2.54" y="0" drill="1.016" shape="octagon"/>
- <pad name="2" x="2.54" y="0" drill="1.016" shape="octagon"/>
- <text x="0.635" y="1.4224" size="1.27" layer="25" ratio="10">>NAME</text>
- <text x="0.635" y="-2.6162" size="1.27" layer="27" ratio="10">>VALUE</text>
- </package>
- <package name="0922/22">
- <description><b>RESISTOR</b><p>
- type 0922, grid 22.5 mm</description>
- <wire x1="11.43" y1="0" x2="10.795" y2="0" width="0.8128" layer="51"/>
- <wire x1="-11.43" y1="0" x2="-10.795" y2="0" width="0.8128" layer="51"/>
- <wire x1="-10.16" y1="-4.191" x2="-10.16" y2="4.191" width="0.1524" layer="21"/>
- <wire x1="-9.779" y1="4.572" x2="-8.89" y2="4.572" width="0.1524" layer="21"/>
- <wire x1="-8.636" y1="4.318" x2="-8.89" y2="4.572" width="0.1524" layer="21"/>
- <wire x1="-9.779" y1="-4.572" x2="-8.89" y2="-4.572" width="0.1524" layer="21"/>
- <wire x1="-8.636" y1="-4.318" x2="-8.89" y2="-4.572" width="0.1524" layer="21"/>
- <wire x1="8.636" y1="4.318" x2="8.89" y2="4.572" width="0.1524" layer="21"/>
- <wire x1="8.636" y1="4.318" x2="-8.636" y2="4.318" width="0.1524" layer="21"/>
- <wire x1="8.636" y1="-4.318" x2="8.89" y2="-4.572" width="0.1524" layer="21"/>
- <wire x1="8.636" y1="-4.318" x2="-8.636" y2="-4.318" width="0.1524" layer="21"/>
- <wire x1="9.779" y1="4.572" x2="8.89" y2="4.572" width="0.1524" layer="21"/>
- <wire x1="9.779" y1="-4.572" x2="8.89" y2="-4.572" width="0.1524" layer="21"/>
- <wire x1="10.16" y1="-4.191" x2="10.16" y2="4.191" width="0.1524" layer="21"/>
- <wire x1="-10.16" y1="-4.191" x2="-9.779" y2="-4.572" width="0.1524" layer="21" curve="90"/>
- <wire x1="-10.16" y1="4.191" x2="-9.779" y2="4.572" width="0.1524" layer="21" curve="-90"/>
- <wire x1="9.779" y1="-4.572" x2="10.16" y2="-4.191" width="0.1524" layer="21" curve="90"/>
- <wire x1="9.779" y1="4.572" x2="10.16" y2="4.191" width="0.1524" layer="21" curve="-90"/>
- <rectangle x1="-10.7188" y1="-0.4064" x2="-10.16" y2="0.4064" layer="51"/>
- <rectangle x1="10.16" y1="-0.4064" x2="10.3124" y2="0.4064" layer="21"/>
- <rectangle x1="-10.3124" y1="-0.4064" x2="-10.16" y2="0.4064" layer="21"/>
- <rectangle x1="10.16" y1="-0.4064" x2="10.7188" y2="0.4064" layer="51"/>
- <pad name="1" x="-11.43" y="0" drill="1.016" shape="octagon"/>
- <pad name="2" x="11.43" y="0" drill="1.016" shape="octagon"/>
- <text x="-10.16" y="5.1054" size="1.27" layer="25" ratio="10">>NAME</text>
- <text x="-6.477" y="-0.5842" size="1.27" layer="27" ratio="10">>VALUE</text>
- </package>
- <package name="0922V">
- <description><b>RESISTOR</b><p>
- type 0922, grid 7.5 mm</description>
- <circle x="-5.08" y="0" radius="4.572" width="0.1524" layer="21"/>
- <circle x="-5.08" y="0" radius="1.905" width="0.1524" layer="21"/>
- <wire x1="2.54" y1="0" x2="1.397" y2="0" width="0.8128" layer="51"/>
- <wire x1="-5.08" y1="0" x2="-3.81" y2="0" width="0.8128" layer="51"/>
- <rectangle x1="-3.81" y1="-0.4064" x2="1.3208" y2="0.4064" layer="21"/>
- <pad name="1" x="-5.08" y="0" drill="1.016" shape="octagon"/>
- <pad name="2" x="2.54" y="0" drill="1.016" shape="octagon"/>
- <text x="-0.508" y="1.6764" size="1.27" layer="25" ratio="10">>NAME</text>
- <text x="-0.508" y="-2.9972" size="1.27" layer="27" ratio="10">>VALUE</text>
- <text x="-6.858" y="2.54" size="1.016" layer="21" ratio="12">0922</text>
- </package>
- <package name="M0805">
- <description><b>RESISTOR</b><p>
- MELF 0.10 W</description>
- <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
- <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
- <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
- <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
- <wire x1="0.7112" y1="0.635" x2="-0.7112" y2="0.635" width="0.1524" layer="51"/>
- <wire x1="0.7112" y1="-0.635" x2="-0.7112" y2="-0.635" width="0.1524" layer="51"/>
- <rectangle x1="-1.0414" y1="-0.7112" x2="-0.6858" y2="0.7112" layer="51"/>
- <rectangle x1="0.6858" y1="-0.7112" x2="1.0414" y2="0.7112" layer="51"/>
- <rectangle x1="-0.1999" y1="-0.5999" x2="0.1999" y2="0.5999" layer="35"/>
- <smd name="1" x="-0.95" y="0" dx="1.3" dy="1.6" layer="1"/>
- <smd name="2" x="0.95" y="0" dx="1.3" dy="1.6" layer="1"/>
- <text x="-1.016" y="1.016" size="1.27" layer="25">>NAME</text>
- <text x="-1.016" y="-2.286" size="1.27" layer="27">>VALUE</text>
- </package>
- <package name="M1206">
- <description><b>RESISTOR</b><p>
- MELF 0.25 W</description>
- <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
- <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
- <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
- <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
- <wire x1="1.143" y1="0.8382" x2="-1.143" y2="0.8382" width="0.1524" layer="51"/>
- <wire x1="1.143" y1="-0.8382" x2="-1.143" y2="-0.8382" width="0.1524" layer="51"/>
- <rectangle x1="-1.7018" y1="-0.9144" x2="-1.1176" y2="0.9144" layer="51"/>
- <rectangle x1="1.1176" y1="-0.9144" x2="1.7018" y2="0.9144" layer="51"/>
- <rectangle x1="-0.3" y1="-0.8001" x2="0.3" y2="0.8001" layer="35"/>
- <smd name="1" x="-1.4" y="0" dx="1.6" dy="2" layer="1"/>
- <smd name="2" x="1.4" y="0" dx="1.6" dy="2" layer="1"/>
- <text x="-1.27" y="1.27" size="1.27" layer="25">>NAME</text>
- <text x="-1.27" y="-2.54" size="1.27" layer="27">>VALUE</text>
- </package>
- <package name="M1406">
- <description><b>RESISTOR</b><p>
- MELF 0.12 W</description>
- <wire x1="-2.973" y1="0.983" x2="2.973" y2="0.983" width="0.0508" layer="39"/>
- <wire x1="2.973" y1="-0.983" x2="-2.973" y2="-0.983" width="0.0508" layer="39"/>
- <wire x1="-2.973" y1="-0.983" x2="-2.973" y2="0.983" width="0.0508" layer="39"/>
- <wire x1="2.973" y1="0.983" x2="2.973" y2="-0.983" width="0.0508" layer="39"/>
- <wire x1="1.3208" y1="0.762" x2="-1.3208" y2="0.762" width="0.1524" layer="51"/>
- <wire x1="1.3208" y1="-0.762" x2="-1.3208" y2="-0.762" width="0.1524" layer="51"/>
- <wire x1="0.6858" y1="0.762" x2="-0.6858" y2="0.762" width="0.1524" layer="21"/>
- <wire x1="0.6858" y1="-0.762" x2="-0.6858" y2="-0.762" width="0.1524" layer="21"/>
- <rectangle x1="-1.8542" y1="-0.8382" x2="-1.2954" y2="0.8382" layer="51"/>
- <rectangle x1="1.2954" y1="-0.8382" x2="1.8542" y2="0.8382" layer="51"/>
- <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
- <smd name="1" x="-1.7" y="0" dx="1.4" dy="1.8" layer="1"/>
- <smd name="2" x="1.7" y="0" dx="1.4" dy="1.8" layer="1"/>
- <text x="-1.651" y="1.143" size="1.27" layer="25">>NAME</text>
- <text x="-1.651" y="-2.413" size="1.27" layer="27">>VALUE</text>
- </package>
- <package name="M2012">
- <description><b>RESISTOR</b><p>
- MELF 0.10 W</description>
- <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
- <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
- <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
- <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
- <wire x1="0.7112" y1="0.635" x2="-0.7112" y2="0.635" width="0.1524" layer="51"/>
- <wire x1="0.7112" y1="-0.635" x2="-0.7112" y2="-0.635" width="0.1524" layer="51"/>
- <rectangle x1="-1.0414" y1="-0.7112" x2="-0.6858" y2="0.7112" layer="51"/>
- <rectangle x1="0.6858" y1="-0.7112" x2="1.0414" y2="0.7112" layer="51"/>
- <rectangle x1="-0.1999" y1="-0.5999" x2="0.1999" y2="0.5999" layer="35"/>
- <smd name="1" x="-0.95" y="0" dx="1.3" dy="1.6" layer="1"/>
- <smd name="2" x="0.95" y="0" dx="1.3" dy="1.6" layer="1"/>
- <text x="-1.016" y="1.016" size="1.27" layer="25">>NAME</text>
- <text x="-1.016" y="-2.286" size="1.27" layer="27">>VALUE</text>
- </package>
- <package name="M2309">
- <description><b>RESISTOR</b><p>
- MELF 0.25 W</description>
- <wire x1="-4.473" y1="1.483" x2="4.473" y2="1.483" width="0.0508" layer="39"/>
- <wire x1="4.473" y1="-1.483" x2="-4.473" y2="-1.483" width="0.0508" layer="39"/>
- <wire x1="-4.473" y1="-1.483" x2="-4.473" y2="1.483" width="0.0508" layer="39"/>
- <wire x1="4.473" y1="1.483" x2="4.473" y2="-1.483" width="0.0508" layer="39"/>
- <wire x1="2.413" y1="1.1684" x2="-2.4384" y2="1.1684" width="0.1524" layer="51"/>
- <wire x1="2.413" y1="-1.1684" x2="-2.413" y2="-1.1684" width="0.1524" layer="51"/>
- <wire x1="1.651" y1="1.1684" x2="-1.6764" y2="1.1684" width="0.1524" layer="21"/>
- <wire x1="1.651" y1="-1.1684" x2="-1.651" y2="-1.1684" width="0.1524" layer="21"/>
- <rectangle x1="-3.048" y1="-1.2446" x2="-2.3876" y2="1.2446" layer="51"/>
- <rectangle x1="2.3876" y1="-1.2446" x2="3.048" y2="1.2446" layer="51"/>
- <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
- <smd name="1" x="-2.85" y="0" dx="1.5" dy="2.6" layer="1"/>
- <smd name="2" x="2.85" y="0" dx="1.5" dy="2.6" layer="1"/>
- <text x="-2.794" y="1.651" size="1.27" layer="25">>NAME</text>
- <text x="-2.794" y="-2.794" size="1.27" layer="27">>VALUE</text>
- </package>
- <package name="M3216">
- <description><b>RESISTOR</b><p>
- MELF 0.25 W</description>
- <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
- <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
- <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
- <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
- <wire x1="1.143" y1="0.8382" x2="-1.143" y2="0.8382" width="0.1524" layer="51"/>
- <wire x1="1.143" y1="-0.8382" x2="-1.143" y2="-0.8382" width="0.1524" layer="51"/>
- <rectangle x1="-1.7018" y1="-0.9144" x2="-1.1176" y2="0.9144" layer="51"/>
- <rectangle x1="1.1176" y1="-0.9144" x2="1.7018" y2="0.9144" layer="51"/>
- <rectangle x1="-0.3" y1="-0.8001" x2="0.3" y2="0.8001" layer="35"/>
- <smd name="1" x="-1.4" y="0" dx="1.6" dy="2" layer="1"/>
- <smd name="2" x="1.4" y="0" dx="1.6" dy="2" layer="1"/>
- <text x="-1.27" y="1.27" size="1.27" layer="25">>NAME</text>
- <text x="-1.27" y="-2.54" size="1.27" layer="27">>VALUE</text>
- </package>
- <package name="M3516">
- <description><b>RESISTOR</b><p>
- MELF 0.12 W</description>
- <wire x1="-2.973" y1="0.983" x2="2.973" y2="0.983" width="0.0508" layer="39"/>
- <wire x1="2.973" y1="-0.983" x2="-2.973" y2="-0.983" width="0.0508" layer="39"/>
- <wire x1="-2.973" y1="-0.983" x2="-2.973" y2="0.983" width="0.0508" layer="39"/>
- <wire x1="2.973" y1="0.983" x2="2.973" y2="-0.983" width="0.0508" layer="39"/>
- <wire x1="1.3208" y1="0.762" x2="-1.3208" y2="0.762" width="0.1524" layer="51"/>
- <wire x1="1.3208" y1="-0.762" x2="-1.3208" y2="-0.762" width="0.1524" layer="51"/>
- <wire x1="0.6858" y1="0.762" x2="-0.6858" y2="0.762" width="0.1524" layer="21"/>
- <wire x1="0.6858" y1="-0.762" x2="-0.6858" y2="-0.762" width="0.1524" layer="21"/>
- <rectangle x1="-1.8542" y1="-0.8382" x2="-1.2954" y2="0.8382" layer="51"/>
- <rectangle x1="1.2954" y1="-0.8382" x2="1.8542" y2="0.8382" layer="51"/>
- <rectangle x1="-0.4001" y1="-0.7" x2="0.4001" y2="0.7" layer="35"/>
- <smd name="1" x="-1.7" y="0" dx="1.4" dy="1.8" layer="1"/>
- <smd name="2" x="1.7" y="0" dx="1.4" dy="1.8" layer="1"/>
- <text x="-1.651" y="1.143" size="1.27" layer="25">>NAME</text>
- <text x="-1.651" y="-2.413" size="1.27" layer="27">>VALUE</text>
- </package>
- <package name="M5923">
- <description><b>RESISTOR</b><p>
- MELF 0.25 W</description>
- <wire x1="-4.473" y1="1.483" x2="4.473" y2="1.483" width="0.0508" layer="39"/>
- <wire x1="4.473" y1="-1.483" x2="-4.473" y2="-1.483" width="0.0508" layer="39"/>
- <wire x1="-4.473" y1="-1.483" x2="-4.473" y2="1.483" width="0.0508" layer="39"/>
- <wire x1="4.473" y1="1.483" x2="4.473" y2="-1.483" width="0.0508" layer="39"/>
- <wire x1="2.413" y1="1.1684" x2="-2.4384" y2="1.1684" width="0.1524" layer="51"/>
- <wire x1="2.413" y1="-1.1684" x2="-2.413" y2="-1.1684" width="0.1524" layer="51"/>
- <wire x1="1.651" y1="1.1684" x2="-1.6764" y2="1.1684" width="0.1524" layer="21"/>
- <wire x1="1.651" y1="-1.1684" x2="-1.651" y2="-1.1684" width="0.1524" layer="21"/>
- <rectangle x1="-3.048" y1="-1.2446" x2="-2.3876" y2="1.2446" layer="51"/>
- <rectangle x1="2.3876" y1="-1.2446" x2="3.048" y2="1.2446" layer="51"/>
- <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
- <smd name="1" x="-2.85" y="0" dx="1.5" dy="2.6" layer="1"/>
- <smd name="2" x="2.85" y="0" dx="1.5" dy="2.6" layer="1"/>
- <text x="-2.794" y="1.651" size="1.27" layer="25">>NAME</text>
- <text x="-2.794" y="-2.794" size="1.27" layer="27">>VALUE</text>
- </package>
- <package name="MINI_MELF-0102AX">
- <description><b>Mini MELF 0102 Axial</b></description>
- <circle x="0" y="0" radius="0.6" width="0" layer="51"/>
- <circle x="0" y="0" radius="0.6" width="0" layer="52"/>
- <smd name="1" x="0" y="0" dx="1.9" dy="1.9" layer="1" roundness="100"/>
- <smd name="2" x="0" y="0" dx="1.9" dy="1.9" layer="16" roundness="100"/>
- <text x="-1.27" y="0.9525" size="1.27" layer="25">>NAME</text>
- <text x="-1.27" y="-2.2225" size="1.27" layer="27">>VALUE</text>
- <hole x="0" y="0" drill="1.3"/>
- </package>
- <package name="MINI_MELF-0102R">
- <description><b>CECC Size RC2211</b> Reflow Soldering<p>
- source Beyschlag</description>
- <wire x1="-1" y1="-0.5" x2="1" y2="-0.5" width="0.2032" layer="51"/>
- <wire x1="1" y1="-0.5" x2="1" y2="0.5" width="0.2032" layer="51"/>
- <wire x1="1" y1="0.5" x2="-1" y2="0.5" width="0.2032" layer="51"/>
- <wire x1="-1" y1="0.5" x2="-1" y2="-0.5" width="0.2032" layer="51"/>
- <smd name="1" x="-0.9" y="0" dx="0.5" dy="1.3" layer="1"/>
- <smd name="2" x="0.9" y="0" dx="0.5" dy="1.3" layer="1"/>
- <text x="-1.27" y="0.9525" size="1.27" layer="25">>NAME</text>
- <text x="-1.27" y="-2.2225" size="1.27" layer="27">>VALUE</text>
- </package>
- <package name="MINI_MELF-0102W">
- <description><b>CECC Size RC2211</b> Wave Soldering<p>
- source Beyschlag</description>
- <wire x1="-1" y1="-0.5" x2="1" y2="-0.5" width="0.2032" layer="51"/>
- <wire x1="1" y1="-0.5" x2="1" y2="0.5" width="0.2032" layer="51"/>
- <wire x1="1" y1="0.5" x2="-1" y2="0.5" width="0.2032" layer="51"/>
- <wire x1="-1" y1="0.5" x2="-1" y2="-0.5" width="0.2032" layer="51"/>
- <smd name="1" x="-0.95" y="0" dx="0.6" dy="1.3" layer="1"/>
- <smd name="2" x="0.95" y="0" dx="0.6" dy="1.3" layer="1"/>
- <text x="-1.27" y="0.9525" size="1.27" layer="25">>NAME</text>
- <text x="-1.27" y="-2.2225" size="1.27" layer="27">>VALUE</text>
- </package>
- <package name="MINI_MELF-0204R">
- <description><b>CECC Size RC3715</b> Reflow Soldering<p>
- source Beyschlag</description>
- <wire x1="-1.7" y1="-0.6" x2="1.7" y2="-0.6" width="0.2032" layer="51"/>
- <wire x1="1.7" y1="-0.6" x2="1.7" y2="0.6" width="0.2032" layer="51"/>
- <wire x1="1.7" y1="0.6" x2="-1.7" y2="0.6" width="0.2032" layer="51"/>
- <wire x1="-1.7" y1="0.6" x2="-1.7" y2="-0.6" width="0.2032" layer="51"/>
- <smd name="1" x="-1.5" y="0" dx="0.8" dy="1.6" layer="1"/>
- <smd name="2" x="1.5" y="0" dx="0.8" dy="1.6" layer="1"/>
- <text x="-1.27" y="0.9525" size="1.27" layer="25">>NAME</text>
- <text x="-1.27" y="-2.2225" size="1.27" layer="27">>VALUE</text>
- </package>
- <package name="MINI_MELF-0204W">
- <description><b>CECC Size RC3715</b> Wave Soldering<p>
- source Beyschlag</description>
- <wire x1="-1.7" y1="-0.6" x2="1.7" y2="-0.6" width="0.2032" layer="51"/>
- <wire x1="1.7" y1="-0.6" x2="1.7" y2="0.6" width="0.2032" layer="51"/>
- <wire x1="1.7" y1="0.6" x2="-1.7" y2="0.6" width="0.2032" layer="51"/>
- <wire x1="-1.7" y1="0.6" x2="-1.7" y2="-0.6" width="0.2032" layer="51"/>
- <smd name="1" x="-1.5" y="0" dx="1.2" dy="1.6" layer="1"/>
- <smd name="2" x="1.5" y="0" dx="1.2" dy="1.6" layer="1"/>
- <text x="-1.27" y="0.9525" size="1.27" layer="25">>NAME</text>
- <text x="-1.27" y="-2.2225" size="1.27" layer="27">>VALUE</text>
- </package>
- <package name="MINI_MELF-0207R">
- <description><b>CECC Size RC6123</b> Reflow Soldering<p>
- source Beyschlag</description>
- <wire x1="-2.8" y1="-1" x2="2.8" y2="-1" width="0.2032" layer="51"/>
- <wire x1="2.8" y1="-1" x2="2.8" y2="1" width="0.2032" layer="51"/>
- <wire x1="2.8" y1="1" x2="-2.8" y2="1" width="0.2032" layer="51"/>
- <wire x1="-2.8" y1="1" x2="-2.8" y2="-1" width="0.2032" layer="51"/>
- <smd name="1" x="-2.25" y="0" dx="1.6" dy="2.5" layer="1"/>
- <smd name="2" x="2.25" y="0" dx="1.6" dy="2.5" layer="1"/>
- <text x="-2.2225" y="1.5875" size="1.27" layer="25">>NAME</text>
- <text x="-2.2225" y="-2.54" size="1.27" layer="27">>VALUE</text>
- </package>
- <package name="MINI_MELF-0207W">
- <description><b>CECC Size RC6123</b> Wave Soldering<p>
- source Beyschlag</description>
- <wire x1="-2.8" y1="-1" x2="2.8" y2="-1" width="0.2032" layer="51"/>
- <wire x1="2.8" y1="-1" x2="2.8" y2="1" width="0.2032" layer="51"/>
- <wire x1="2.8" y1="1" x2="-2.8" y2="1" width="0.2032" layer="51"/>
- <wire x1="-2.8" y1="1" x2="-2.8" y2="-1" width="0.2032" layer="51"/>
- <smd name="1" x="-2.6" y="0" dx="2.4" dy="2.5" layer="1"/>
- <smd name="2" x="2.6" y="0" dx="2.4" dy="2.5" layer="1"/>
- <text x="-2.54" y="1.5875" size="1.27" layer="25">>NAME</text>
- <text x="-2.54" y="-2.54" size="1.27" layer="27">>VALUE</text>
- </package>
- <package name="P0613/15">
- <description><b>RESISTOR</b><p>
- type 0613, grid 15 mm</description>
- <wire x1="7.62" y1="0" x2="6.985" y2="0" width="0.8128" layer="51"/>
- <wire x1="-7.62" y1="0" x2="-6.985" y2="0" width="0.8128" layer="51"/>
- <wire x1="-6.477" y1="2.032" x2="-6.223" y2="2.286" width="0.1524" layer="21" curve="-90"/>
- <wire x1="-6.477" y1="-2.032" x2="-6.223" y2="-2.286" width="0.1524" layer="21" curve="90"/>
- <wire x1="6.223" y1="-2.286" x2="6.477" y2="-2.032" width="0.1524" layer="21" curve="90"/>
- <wire x1="6.223" y1="2.286" x2="6.477" y2="2.032" width="0.1524" layer="21" curve="-90"/>
- <wire x1="-6.223" y1="2.286" x2="-5.334" y2="2.286" width="0.1524" layer="21"/>
- <wire x1="-5.207" y1="2.159" x2="-5.334" y2="2.286" width="0.1524" layer="21"/>
- <wire x1="-6.223" y1="-2.286" x2="-5.334" y2="-2.286" width="0.1524" layer="21"/>
- <wire x1="-5.207" y1="-2.159" x2="-5.334" y2="-2.286" width="0.1524" layer="21"/>
- <wire x1="5.207" y1="2.159" x2="5.334" y2="2.286" width="0.1524" layer="21"/>
- <wire x1="5.207" y1="2.159" x2="-5.207" y2="2.159" width="0.1524" layer="21"/>
- <wire x1="5.207" y1="-2.159" x2="5.334" y2="-2.286" width="0.1524" layer="21"/>
- <wire x1="5.207" y1="-2.159" x2="-5.207" y2="-2.159" width="0.1524" layer="21"/>
- <wire x1="6.223" y1="2.286" x2="5.334" y2="2.286" width="0.1524" layer="21"/>
- <wire x1="6.223" y1="-2.286" x2="5.334" y2="-2.286" width="0.1524" layer="21"/>
- <wire x1="6.477" y1="-0.635" x2="6.477" y2="-2.032" width="0.1524" layer="21"/>
- <wire x1="6.477" y1="-0.635" x2="6.477" y2="0.635" width="0.1524" layer="51"/>
- <wire x1="6.477" y1="2.032" x2="6.477" y2="0.635" width="0.1524" layer="21"/>
- <wire x1="-6.477" y1="-2.032" x2="-6.477" y2="-0.635" width="0.1524" layer="21"/>
- <wire x1="-6.477" y1="0.635" x2="-6.477" y2="-0.635" width="0.1524" layer="51"/>
- <wire x1="-6.477" y1="0.635" x2="-6.477" y2="2.032" width="0.1524" layer="21"/>
- <rectangle x1="-7.0358" y1="-0.4064" x2="-6.477" y2="0.4064" layer="51"/>
- <rectangle x1="6.477" y1="-0.4064" x2="7.0358" y2="0.4064" layer="51"/>
- <pad name="1" x="-7.62" y="0" drill="1.016" shape="octagon"/>
- <pad name="2" x="7.62" y="0" drill="1.016" shape="octagon"/>
- <text x="-6.477" y="2.6924" size="1.27" layer="25" ratio="10">>NAME</text>
- <text x="-4.318" y="-0.7112" size="1.27" layer="27" ratio="10">>VALUE</text>
- </package>
- <package name="P0613V">
- <description><b>RESISTOR</b><p>
- type 0613, grid 5 mm</description>
- <circle x="-2.54" y="0" radius="2.286" width="0.1524" layer="21"/>
- <circle x="-2.54" y="0" radius="1.143" width="0.1524" layer="51"/>
- <wire x1="2.54" y1="0" x2="1.397" y2="0" width="0.8128" layer="51"/>
- <wire x1="-2.54" y1="0" x2="-1.397" y2="0" width="0.8128" layer="51"/>
- <rectangle x1="-1.2954" y1="-0.4064" x2="1.3208" y2="0.4064" layer="21"/>
- <pad name="1" x="-2.54" y="0" drill="1.016" shape="octagon"/>
- <pad name="2" x="2.54" y="0" drill="1.016" shape="octagon"/>
- <text x="-0.254" y="1.143" size="1.27" layer="25" ratio="10">>NAME</text>
- <text x="-0.254" y="-2.413" size="1.27" layer="27" ratio="10">>VALUE</text>
- </package>
- <package name="P0817/22">
- <description><b>RESISTOR</b><p>
- type 0817, grid 22.5 mm</description>
- <wire x1="-10.414" y1="0" x2="-11.43" y2="0" width="0.8128" layer="51"/>
- <wire x1="-8.509" y1="-3.429" x2="-8.509" y2="3.429" width="0.1524" layer="21"/>
- <wire x1="-8.128" y1="3.81" x2="-7.239" y2="3.81" width="0.1524" layer="21"/>
- <wire x1="-6.985" y1="3.556" x2="-7.239" y2="3.81" width="0.1524" layer="21"/>
- <wire x1="-8.128" y1="-3.81" x2="-7.239" y2="-3.81" width="0.1524" layer="21"/>
- <wire x1="-6.985" y1="-3.556" x2="-7.239" y2="-3.81" width="0.1524" layer="21"/>
- <wire x1="6.985" y1="3.556" x2="7.239" y2="3.81" width="0.1524" layer="21"/>
- <wire x1="6.985" y1="3.556" x2="-6.985" y2="3.556" width="0.1524" layer="21"/>
- <wire x1="6.985" y1="-3.556" x2="7.239" y2="-3.81" width="0.1524" layer="21"/>
- <wire x1="6.985" y1="-3.556" x2="-6.985" y2="-3.556" width="0.1524" layer="21"/>
- <wire x1="8.128" y1="3.81" x2="7.239" y2="3.81" width="0.1524" layer="21"/>
- <wire x1="8.128" y1="-3.81" x2="7.239" y2="-3.81" width="0.1524" layer="21"/>
- <wire x1="8.509" y1="-3.429" x2="8.509" y2="3.429" width="0.1524" layer="21"/>
- <wire x1="11.43" y1="0" x2="10.414" y2="0" width="0.8128" layer="51"/>
- <wire x1="-8.509" y1="3.429" x2="-8.128" y2="3.81" width="0.1524" layer="21" curve="-90"/>
- <wire x1="-8.509" y1="-3.429" x2="-8.128" y2="-3.81" width="0.1524" layer="21" curve="90"/>
- <wire x1="8.128" y1="3.81" x2="8.509" y2="3.429" width="0.1524" layer="21" curve="-90"/>
- <wire x1="8.128" y1="-3.81" x2="8.509" y2="-3.429" width="0.1524" layer="21" curve="90"/>
- <rectangle x1="8.509" y1="-0.4064" x2="10.3124" y2="0.4064" layer="21"/>
- <rectangle x1="-10.3124" y1="-0.4064" x2="-8.509" y2="0.4064" layer="21"/>
- <pad name="1" x="-11.43" y="0" drill="1.016" shape="octagon"/>
- <pad name="2" x="11.43" y="0" drill="1.016" shape="octagon"/>
- <text x="-8.382" y="4.2164" size="1.27" layer="25" ratio="10">>NAME</text>
- <text x="-6.223" y="-0.5842" size="1.27" layer="27" ratio="10">>VALUE</text>
- <text x="6.604" y="-2.2606" size="1.27" layer="51" ratio="10" rot="R90">0817</text>
- </package>
- <package name="P0817V">
- <description><b>RESISTOR</b><p>
- type 0817, grid 6.35 mm</description>
- <circle x="-5.08" y="0" radius="3.81" width="0.1524" layer="21"/>
- <circle x="-5.08" y="0" radius="1.27" width="0.1524" layer="51"/>
- <wire x1="-3.81" y1="0" x2="-5.08" y2="0" width="0.8128" layer="51"/>
- <wire x1="1.27" y1="0" x2="0" y2="0" width="0.8128" layer="51"/>
- <rectangle x1="-3.81" y1="-0.4064" x2="0" y2="0.4064" layer="21"/>
- <pad name="1" x="-5.08" y="0" drill="1.016" shape="octagon"/>
- <pad name="2" x="1.27" y="0" drill="1.016" shape="octagon"/>
- <text x="-1.016" y="1.27" size="1.27" layer="25" ratio="10">>NAME</text>
- <text x="-1.016" y="-2.54" size="1.27" layer="27" ratio="10">>VALUE</text>
- <text x="-6.858" y="2.032" size="1.016" layer="21" ratio="12">0817</text>
- </package>
- <package name="R0402">
- <description><b>RESISTOR</b><p>
- chip</description>
- <wire x1="-0.245" y1="0.224" x2="0.245" y2="0.224" width="0.1524" layer="51"/>
- <wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.1524" layer="51"/>
- <wire x1="-1.473" y1="0.483" x2="1.473" y2="0.483" width="0.0508" layer="39"/>
- <wire x1="1.473" y1="0.483" x2="1.473" y2="-0.483" width="0.0508" layer="39"/>
- <wire x1="1.473" y1="-0.483" x2="-1.473" y2="-0.483" width="0.0508" layer="39"/>
- <wire x1="-1.473" y1="-0.483" x2="-1.473" y2="0.483" width="0.0508" layer="39"/>
- <rectangle x1="-0.554" y1="-0.3048" x2="-0.254" y2="0.2951" layer="51"/>
- <rectangle x1="0.2588" y1="-0.3048" x2="0.5588" y2="0.2951" layer="51"/>
- <rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
- <smd name="1" x="-0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
- <smd name="2" x="0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
- <text x="-0.635" y="0.762" size="1.27" layer="25">>NAME</text>
- <text x="-0.635" y="-2.032" size="1.27" layer="27">>VALUE</text>
- </package>
- <package name="R0603">
- <description><b>RESISTOR</b><p>
- chip</description>
- <wire x1="-0.432" y1="-0.356" x2="0.432" y2="-0.356" width="0.1524" layer="51"/>
- <wire x1="0.432" y1="0.356" x2="-0.432" y2="0.356" width="0.1524" layer="51"/>
- <wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
- <wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
- <wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
- <wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
- <rectangle x1="0.4318" y1="-0.4318" x2="0.8382" y2="0.4318" layer="51"/>
- <rectangle x1="-0.8382" y1="-0.4318" x2="-0.4318" y2="0.4318" layer="51"/>
- <rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
- <smd name="1" x="-0.85" y="0" dx="1" dy="1.1" layer="1"/>
- <smd name="2" x="0.85" y="0" dx="1" dy="1.1" layer="1"/>
- <text x="-0.889" y="0.889" size="1.27" layer="25">>NAME</text>
- <text x="-0.889" y="-2.032" size="1.27" layer="27">>VALUE</text>
- </package>
- <package name="R0805">
- <description><b>RESISTOR</b><p>
- chip</description>
- <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
- <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
- <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
- <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
- <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
- <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
- <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
- <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
- <rectangle x1="-0.1999" y1="-0.5001" x2="0.1999" y2="0.5001" layer="35"/>
- <smd name="1" x="-0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
- <smd name="2" x="0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
- <text x="-0.762" y="1.016" size="1.27" layer="25">>NAME</text>
- <text x="-0.762" y="-2.286" size="1.27" layer="27">>VALUE</text>
- </package>
- <package name="R0805W">
- <description><b>RESISTOR</b><p>
- chip, wave soldering</description>
- <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
- <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
- <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
- <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
- <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
- <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
- <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
- <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
- <rectangle x1="-0.1999" y1="-0.5001" x2="0.1999" y2="0.5001" layer="35"/>
- <smd name="1" x="-0.94" y="0" dx="1.5" dy="1" layer="1"/>
- <smd name="2" x="0.94" y="0" dx="1.5" dy="1" layer="1"/>
- <text x="-0.635" y="1.016" size="1.27" layer="25">>NAME</text>
- <text x="-0.635" y="-2.159" size="1.27" layer="27">>VALUE</text>
- </package>
- <package name="R1005">
- <description><b>RESISTOR</b><p>
- chip</description>
- <wire x1="-0.245" y1="0.224" x2="0.245" y2="0.224" width="0.1524" layer="51"/>
- <wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.1524" layer="51"/>
- <wire x1="-1.473" y1="0.483" x2="1.473" y2="0.483" width="0.0508" layer="39"/>
- <wire x1="1.473" y1="0.483" x2="1.473" y2="-0.483" width="0.0508" layer="39"/>
- <wire x1="1.473" y1="-0.483" x2="-1.473" y2="-0.483" width="0.0508" layer="39"/>
- <wire x1="-1.473" y1="-0.483" x2="-1.473" y2="0.483" width="0.0508" layer="39"/>
- <rectangle x1="-0.554" y1="-0.3048" x2="-0.254" y2="0.2951" layer="51"/>
- <rectangle x1="0.2588" y1="-0.3048" x2="0.5588" y2="0.2951" layer="51"/>
- <rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
- <smd name="1" x="-0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
- <smd name="2" x="0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
- <text x="-0.635" y="0.762" size="1.27" layer="25">>NAME</text>
- <text x="-0.635" y="-2.032" size="1.27" layer="27">>VALUE</text>
- </package>
- <package name="R1206">
- <description><b>RESISTOR</b><p>
- chip</description>
- <wire x1="0.9525" y1="-0.8128" x2="-0.9652" y2="-0.8128" width="0.1524" layer="51"/>
- <wire x1="0.9525" y1="0.8128" x2="-0.9652" y2="0.8128" width="0.1524" layer="51"/>
- <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
- <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
- <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
- <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
- <rectangle x1="-1.6891" y1="-0.8763" x2="-0.9525" y2="0.8763" layer="51"/>
- <rectangle x1="0.9525" y1="-0.8763" x2="1.6891" y2="0.8763" layer="51"/>
- <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
- <smd name="1" x="-1.422" y="0" dx="1.6" dy="1.803" layer="1"/>
- <smd name="2" x="1.422" y="0" dx="1.6" dy="1.803" layer="1"/>
- <text x="-1.397" y="1.143" size="1.27" layer="25">>NAME</text>
- <text x="-1.397" y="-2.413" size="1.27" layer="27">>VALUE</text>
- </package>
- <package name="R1206W">
- <description><b>RESISTOR</b><p>
- chip, wave soldering</description>
- <wire x1="-0.913" y1="0.8" x2="0.888" y2="0.8" width="0.1524" layer="21"/>
- <wire x1="-0.913" y1="-0.8" x2="0.888" y2="-0.8" width="0.1524" layer="21"/>
- <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
- <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
- <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
- <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
- <rectangle x1="-1.651" y1="-0.8763" x2="-0.9009" y2="0.8738" layer="51"/>
- <rectangle x1="0.889" y1="-0.8763" x2="1.6391" y2="0.8738" layer="51"/>
- <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
- <smd name="1" x="-1.499" y="0" dx="1.8" dy="1.2" layer="1"/>
- <smd name="2" x="1.499" y="0" dx="1.8" dy="1.2" layer="1"/>
- <text x="-1.651" y="1.143" size="1.27" layer="25">>NAME</text>
- <text x="-1.651" y="-2.413" size="1.27" layer="27">>VALUE</text>
- </package>
- <package name="R1210">
- <description><b>RESISTOR</b><p>
- chip</description>
- <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
- <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
- <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
- <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
- <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
- <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
- <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
- <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
- <rectangle x1="-0.3" y1="-0.8999" x2="0.3" y2="0.8999" layer="35"/>
- <smd name="1" x="-1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
- <smd name="2" x="1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
- <text x="-1.27" y="1.651" size="1.27" layer="25">>NAME</text>
- <text x="-1.27" y="-2.921" size="1.27" layer="27">>VALUE</text>
- </package>
- <package name="R1210W">
- <description><b>RESISTOR</b><p>
- chip, wave soldering</description>
- <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="21"/>
- <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="21"/>
- <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
- <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
- <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
- <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
- <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
- <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
- <rectangle x1="-0.3" y1="-0.8001" x2="0.3" y2="0.8001" layer="35"/>
- <smd name="1" x="-1.499" y="0" dx="1.8" dy="1.8" layer="1"/>
- <smd name="2" x="1.499" y="0" dx="1.8" dy="1.8" layer="1"/>
- <text x="-1.651" y="1.524" size="1.27" layer="25">>NAME</text>
- <text x="-1.651" y="-2.794" size="1.27" layer="27">>VALUE</text>
- </package>
- <package name="R2010">
- <description><b>RESISTOR</b><p>
- chip</description>
- <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
- <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
- <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
- <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
- <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
- <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
- <wire x1="-1.027" y1="1.245" x2="1.027" y2="1.245" width="0.1524" layer="21"/>
- <wire x1="-1.002" y1="-1.245" x2="1.016" y2="-1.245" width="0.1524" layer="21"/>
- <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
- <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
- <smd name="1" x="-2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
- <smd name="2" x="2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
- <text x="-2.159" y="1.651" size="1.27" layer="25">>NAME</text>
- <text x="-2.159" y="-2.921" size="1.27" layer="27">>VALUE</text>
- </package>
- <package name="R2010W">
- <description><b>RESISTOR</b><p>
- chip, wave soldering</description>
- <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="21"/>
- <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="21"/>
- <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
- <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
- <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
- <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
- <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
- <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
- <smd name="1" x="-2.311" y="0" dx="2" dy="1.8" layer="1"/>
- <smd name="2" x="2.311" y="0" dx="2" dy="1.8" layer="1"/>
- <text x="-2.286" y="1.524" size="1.27" layer="25">>NAME</text>
- <text x="-2.286" y="-2.921" size="1.27" layer="27">>VALUE</text>
- </package>
- <package name="R2012">
- <description><b>RESISTOR</b><p>
- chip</description>
- <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
- <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
- <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
- <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
- <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
- <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
- <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
- <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
- <rectangle x1="-0.1001" y1="-0.5999" x2="0.1001" y2="0.5999" layer="35"/>
- <smd name="1" x="-0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
- <smd name="2" x="0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
- <text x="-0.762" y="1.016" size="1.27" layer="25">>NAME</text>
- <text x="-0.762" y="-2.286" size="1.27" layer="27">>VALUE</text>
- </package>
- <package name="R2012W">
- <description><b>RESISTOR</b><p>
- chip, wave soldering</description>
- <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
- <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
- <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
- <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
- <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
- <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
- <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
- <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
- <rectangle x1="-0.1001" y1="-0.5999" x2="0.1001" y2="0.5999" layer="35"/>
- <smd name="1" x="-0.94" y="0" dx="1.5" dy="1" layer="1"/>
- <smd name="2" x="0.94" y="0" dx="1.5" dy="1" layer="1"/>
- <text x="-0.635" y="1.016" size="1.27" layer="25">>NAME</text>
- <text x="-0.635" y="-2.286" size="1.27" layer="27">>VALUE</text>
- </package>
- <package name="R2512">
- <description><b>RESISTOR</b><p>
- chip</description>
- <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
- <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
- <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
- <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
- <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
- <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
- <wire x1="-1.473" y1="1.473" x2="1.498" y2="1.473" width="0.1524" layer="21"/>
- <wire x1="-1.473" y1="-1.473" x2="1.498" y2="-1.473" width="0.1524" layer="21"/>
- <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
- <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
- <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
- <smd name="1" x="-2.8" y="0" dx="1.8" dy="3.2" layer="1"/>
- <smd name="2" x="2.8" y="0" dx="1.8" dy="3.2" layer="1"/>
- <text x="-2.667" y="1.905" size="1.27" layer="25">>NAME</text>
- <text x="-2.667" y="-3.175" size="1.27" layer="27">>VALUE</text>
- </package>
- <package name="R2512W">
- <description><b>RESISTOR</b><p>
- chip, wave soldering</description>
- <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="21"/>
- <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="21"/>
- <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
- <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
- <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
- <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
- <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
- <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
- <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
- <smd name="1" x="-2.896" y="0" dx="2" dy="2.1" layer="1"/>
- <smd name="2" x="2.896" y="0" dx="2" dy="2.1" layer="1"/>
- <text x="-2.794" y="1.778" size="1.27" layer="25">>NAME</text>
- <text x="-2.794" y="-3.048" size="1.27" layer="27">>VALUE</text>
- </package>
- <package name="R3216">
- <description><b>RESISTOR</b><p>
- chip</description>
- <wire x1="-0.913" y1="0.8" x2="0.888" y2="0.8" width="0.1524" layer="51"/>
- <wire x1="-0.913" y1="-0.8" x2="0.888" y2="-0.8" width="0.1524" layer="51"/>
- <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
- <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
- <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
- <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
- <rectangle x1="-1.651" y1="-0.8763" x2="-0.9009" y2="0.8738" layer="51"/>
- <rectangle x1="0.889" y1="-0.8763" x2="1.6391" y2="0.8738" layer="51"/>
- <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
- <smd name="1" x="-1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
- <smd name="2" x="1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
- <text x="-1.397" y="1.143" size="1.27" layer="25">>NAME</text>
- <text x="-1.397" y="-2.413" size="1.27" layer="27">>VALUE</text>
- </package>
- <package name="R3216W">
- <description><b>RESISTOR</b><p>
- chip, wave soldering</description>
- <wire x1="-0.913" y1="0.8" x2="0.888" y2="0.8" width="0.1524" layer="21"/>
- <wire x1="-0.913" y1="-0.8" x2="0.888" y2="-0.8" width="0.1524" layer="21"/>
- <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
- <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
- <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
- <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
- <rectangle x1="-1.651" y1="-0.8763" x2="-0.9009" y2="0.8738" layer="51"/>
- <rectangle x1="0.889" y1="-0.8763" x2="1.6391" y2="0.8738" layer="51"/>
- <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
- <smd name="1" x="-1.499" y="0" dx="1.8" dy="1.2" layer="1"/>
- <smd name="2" x="1.499" y="0" dx="1.8" dy="1.2" layer="1"/>
- <text x="-1.524" y="1.143" size="1.27" layer="25">>NAME</text>
- <text x="-1.524" y="-2.413" size="1.27" layer="27">>VALUE</text>
- </package>
- <package name="R3225">
- <description><b>RESISTOR</b><p>
- chip</description>
- <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
- <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
- <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
- <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
- <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
- <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
- <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
- <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
- <rectangle x1="-0.3" y1="-1" x2="0.3" y2="1" layer="35"/>
- <smd name="1" x="-1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
- <smd name="2" x="1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
- <text x="-1.397" y="1.651" size="1.27" layer="25">>NAME</text>
- <text x="-1.397" y="-2.921" size="1.27" layer="27">>VALUE</text>
- </package>
- <package name="R3225W">
- <description><b>RESISTOR</b><p>
- chip, wave soldering</description>
- <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="21"/>
- <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="21"/>
- <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
- <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
- <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
- <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
- <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
- <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
- <rectangle x1="-0.3" y1="-1" x2="0.3" y2="1" layer="35"/>
- <smd name="1" x="-1.499" y="0" dx="1.8" dy="1.8" layer="1"/>
- <smd name="2" x="1.499" y="0" dx="1.8" dy="1.8" layer="1"/>
- <text x="-1.397" y="1.524" size="1.27" layer="25">>NAME</text>
- <text x="-1.397" y="-2.921" size="1.27" layer="27">>VALUE</text>
- </package>
- <package name="R5025">
- <description><b>RESISTOR</b><p>
- chip</description>
- <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
- <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
- <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
- <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
- <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
- <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
- <wire x1="-0.9" y1="1.245" x2="0.9" y2="1.245" width="0.1524" layer="21"/>
- <wire x1="-0.875" y1="-1.245" x2="0.925" y2="-1.245" width="0.1524" layer="21"/>
- <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
- <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
- <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
- <smd name="1" x="-2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
- <smd name="2" x="2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
- <text x="-2.159" y="1.651" size="1.27" layer="25">>NAME</text>
- <text x="-2.159" y="-2.921" size="1.27" layer="27">>VALUE</text>
- </package>
- <package name="R5025W">
- <description><b>RESISTOR</b><p>
- chip, wave soldering</description>
- <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="21"/>
- <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="21"/>
- <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
- <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
- <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
- <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
- <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
- <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
- <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
- <smd name="1" x="-2.311" y="0" dx="2" dy="1.8" layer="1"/>
- <smd name="2" x="2.311" y="0" dx="2" dy="1.8" layer="1"/>
- <text x="-2.286" y="1.651" size="1.27" layer="25">>NAME</text>
- <text x="-2.286" y="-2.921" size="1.27" layer="27">>VALUE</text>
- </package>
- <package name="R6332">
- <description><b>RESISTOR</b><p>
- chip</description>
- <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
- <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
- <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
- <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
- <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
- <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
- <wire x1="-1.473" y1="1.473" x2="1.498" y2="1.473" width="0.1524" layer="21"/>
- <wire x1="-1.473" y1="-1.473" x2="1.498" y2="-1.473" width="0.1524" layer="21"/>
- <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
- <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
- <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
- <smd name="1" x="-2.8" y="0" dx="1.8" dy="3.2" layer="1"/>
- <smd name="2" x="2.8" y="0" dx="1.8" dy="3.2" layer="1"/>
- <text x="-2.794" y="1.905" size="1.27" layer="25">>NAME</text>
- <text x="-2.794" y="-3.175" size="1.27" layer="27">>VALUE</text>
- </package>
- <package name="R6332W">
- <description><b>RESISTOR</b><p>
- chip, wave soldering</description>
- <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="21"/>
- <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="21"/>
- <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
- <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
- <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
- <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
- <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
- <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
- <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
- <smd name="1" x="-2.896" y="0" dx="2" dy="2.1" layer="1"/>
- <smd name="2" x="2.896" y="0" dx="2" dy="2.1" layer="1"/>
- <text x="-2.921" y="1.778" size="1.27" layer="25">>NAME</text>
- <text x="-2.921" y="-3.048" size="1.27" layer="27">>VALUE</text>
- </package>
- <package name="RDH/15">
- <description><b>RESISTOR</b><p>
- type RDH, grid 15 mm</description>
- <wire x1="-7.62" y1="0" x2="-6.858" y2="0" width="0.8128" layer="51"/>
- <wire x1="-6.096" y1="3.048" x2="-5.207" y2="3.048" width="0.1524" layer="21"/>
- <wire x1="-4.953" y1="2.794" x2="-5.207" y2="3.048" width="0.1524" layer="21"/>
- <wire x1="-6.096" y1="-3.048" x2="-5.207" y2="-3.048" width="0.1524" layer="21"/>
- <wire x1="-4.953" y1="-2.794" x2="-5.207" y2="-3.048" width="0.1524" layer="21"/>
- <wire x1="4.953" y1="2.794" x2="5.207" y2="3.048" width="0.1524" layer="21"/>
- <wire x1="4.953" y1="2.794" x2="-4.953" y2="2.794" width="0.1524" layer="21"/>
- <wire x1="4.953" y1="-2.794" x2="5.207" y2="-3.048" width="0.1524" layer="21"/>
- <wire x1="4.953" y1="-2.794" x2="-4.953" y2="-2.794" width="0.1524" layer="21"/>
- <wire x1="6.096" y1="3.048" x2="5.207" y2="3.048" width="0.1524" layer="21"/>
- <wire x1="6.096" y1="-3.048" x2="5.207" y2="-3.048" width="0.1524" layer="21"/>
- <wire x1="-6.477" y1="-2.667" x2="-6.477" y2="-1.016" width="0.1524" layer="21"/>
- <wire x1="-6.477" y1="1.016" x2="-6.477" y2="-1.016" width="0.1524" layer="51"/>
- <wire x1="-6.477" y1="1.016" x2="-6.477" y2="2.667" width="0.1524" layer="21"/>
- <wire x1="6.477" y1="-2.667" x2="6.477" y2="-1.016" width="0.1524" layer="21"/>
- <wire x1="6.477" y1="1.016" x2="6.477" y2="-1.016" width="0.1524" layer="51"/>
- <wire x1="6.477" y1="1.016" x2="6.477" y2="2.667" width="0.1524" layer="21"/>
- <wire x1="6.858" y1="0" x2="7.62" y2="0" width="0.8128" layer="51"/>
- <wire x1="-6.477" y1="2.667" x2="-6.096" y2="3.048" width="0.1524" layer="21" curve="-90"/>
- <wire x1="6.096" y1="3.048" x2="6.477" y2="2.667" width="0.1524" layer="21" curve="-90"/>
- <wire x1="-6.477" y1="-2.667" x2="-6.096" y2="-3.048" width="0.1524" layer="21" curve="90"/>
- <wire x1="6.096" y1="-3.048" x2="6.477" y2="-2.667" width="0.1524" layer="21" curve="90"/>
- <rectangle x1="-6.7564" y1="-0.4064" x2="-6.4516" y2="0.4064" layer="51"/>
- <rectangle x1="6.4516" y1="-0.4064" x2="6.7564" y2="0.4064" layer="51"/>
- <pad name="1" x="-7.62" y="0" drill="1.016" shape="octagon"/>
- <pad name="2" x="7.62" y="0" drill="1.016" shape="octagon"/>
- <text x="-6.35" y="3.4544" size="1.27" layer="25" ratio="10">>NAME</text>
- <text x="-4.318" y="-0.5842" size="1.27" layer="27" ratio="10">>VALUE</text>
- <text x="4.572" y="-1.7272" size="1.27" layer="51" ratio="10" rot="R90">RDH</text>
- </package>
- <package name="V234/12">
- <description><b>RESISTOR</b><p>
- type V234, grid 12.5 mm</description>
- <wire x1="-4.953" y1="1.524" x2="-4.699" y2="1.778" width="0.1524" layer="21" curve="-90"/>
- <wire x1="4.699" y1="1.778" x2="4.953" y2="1.524" width="0.1524" layer="21" curve="-90"/>
- <wire x1="4.699" y1="-1.778" x2="4.953" y2="-1.524" width="0.1524" layer="21" curve="90"/>
- <wire x1="-4.953" y1="-1.524" x2="-4.699" y2="-1.778" width="0.1524" layer="21" curve="90"/>
- <wire x1="-4.699" y1="1.778" x2="4.699" y2="1.778" width="0.1524" layer="21"/>
- <wire x1="-4.953" y1="1.524" x2="-4.953" y2="-1.524" width="0.1524" layer="21"/>
- <wire x1="4.699" y1="-1.778" x2="-4.699" y2="-1.778" width="0.1524" layer="21"/>
- <wire x1="4.953" y1="1.524" x2="4.953" y2="-1.524" width="0.1524" layer="21"/>
- <wire x1="6.35" y1="0" x2="5.461" y2="0" width="0.8128" layer="51"/>
- <wire x1="-6.35" y1="0" x2="-5.461" y2="0" width="0.8128" layer="51"/>
- <rectangle x1="4.953" y1="-0.4064" x2="5.4102" y2="0.4064" layer="21"/>
- <rectangle x1="-5.4102" y1="-0.4064" x2="-4.953" y2="0.4064" layer="21"/>
- <pad name="1" x="-6.35" y="0" drill="1.016" shape="octagon"/>
- <pad name="2" x="6.35" y="0" drill="1.016" shape="octagon"/>
- <text x="-4.953" y="2.159" size="1.27" layer="25" ratio="10">>NAME</text>
- <text x="-3.81" y="-0.635" size="1.27" layer="27" ratio="10">>VALUE</text>
- </package>
- <package name="V235/17">
- <description><b>RESISTOR</b><p>
- type V235, grid 17.78 mm</description>
- <wire x1="-6.731" y1="2.921" x2="6.731" y2="2.921" width="0.1524" layer="21"/>
- <wire x1="-7.112" y1="2.54" x2="-7.112" y2="-2.54" width="0.1524" layer="21"/>
- <wire x1="6.731" y1="-2.921" x2="-6.731" y2="-2.921" width="0.1524" layer="21"/>
- <wire x1="7.112" y1="2.54" x2="7.112" y2="-2.54" width="0.1524" layer="21"/>
- <wire x1="8.89" y1="0" x2="7.874" y2="0" width="1.016" layer="51"/>
- <wire x1="-7.874" y1="0" x2="-8.89" y2="0" width="1.016" layer="51"/>
- <wire x1="-7.112" y1="-2.54" x2="-6.731" y2="-2.921" width="0.1524" layer="21" curve="90"/>
- <wire x1="6.731" y1="2.921" x2="7.112" y2="2.54" width="0.1524" layer="21" curve="-90"/>
- <wire x1="6.731" y1="-2.921" x2="7.112" y2="-2.54" width="0.1524" layer="21" curve="90"/>
- <wire x1="-7.112" y1="2.54" x2="-6.731" y2="2.921" width="0.1524" layer="21" curve="-90"/>
- <rectangle x1="7.112" y1="-0.508" x2="7.747" y2="0.508" layer="21"/>
- <rectangle x1="-7.747" y1="-0.508" x2="-7.112" y2="0.508" layer="21"/>
- <pad name="1" x="-8.89" y="0" drill="1.1938" shape="octagon"/>
- <pad name="2" x="8.89" y="0" drill="1.1938" shape="octagon"/>
- <text x="-6.858" y="3.302" size="1.27" layer="25" ratio="10">>NAME</text>
- <text x="-5.842" y="-0.635" size="1.27" layer="27" ratio="10">>VALUE</text>
- </package>
- <package name="V526-0">
- <description><b>RESISTOR</b><p>
- type V526-0, grid 2.5 mm</description>
- <wire x1="-2.54" y1="1.016" x2="-2.286" y2="1.27" width="0.1524" layer="21" curve="-90"/>
- <wire x1="2.286" y1="1.27" x2="2.54" y2="1.016" width="0.1524" layer="21" curve="-90"/>
- <wire x1="2.286" y1="-1.27" x2="2.54" y2="-1.016" width="0.1524" layer="21" curve="90"/>
- <wire x1="-2.54" y1="-1.016" x2="-2.286" y2="-1.27" width="0.1524" layer="21" curve="90"/>
- <wire x1="2.286" y1="1.27" x2="-2.286" y2="1.27" width="0.1524" layer="21"/>
- <wire x1="2.54" y1="-1.016" x2="2.54" y2="1.016" width="0.1524" layer="21"/>
- <wire x1="-2.286" y1="-1.27" x2="2.286" y2="-1.27" width="0.1524" layer="21"/>
- <wire x1="-2.54" y1="1.016" x2="-2.54" y2="-1.016" width="0.1524" layer="21"/>
- <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
- <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
- <text x="-2.413" y="1.651" size="1.27" layer="25" ratio="10">>NAME</text>
- <text x="-2.413" y="-2.794" size="1.27" layer="27" ratio="10">>VALUE</text>
- </package>
- </packages>
- <symbols>
- <symbol name="R-US">
- <wire x1="-2.54" y1="0" x2="-2.159" y2="1.016" width="0.2032" layer="94"/>
- <wire x1="-2.159" y1="1.016" x2="-1.524" y2="-1.016" width="0.2032" layer="94"/>
- <wire x1="-1.524" y1="-1.016" x2="-0.889" y2="1.016" width="0.2032" layer="94"/>
- <wire x1="-0.889" y1="1.016" x2="-0.254" y2="-1.016" width="0.2032" layer="94"/>
- <wire x1="-0.254" y1="-1.016" x2="0.381" y2="1.016" width="0.2032" layer="94"/>
- <wire x1="0.381" y1="1.016" x2="1.016" y2="-1.016" width="0.2032" layer="94"/>
- <wire x1="1.016" y1="-1.016" x2="1.651" y2="1.016" width="0.2032" layer="94"/>
- <wire x1="1.651" y1="1.016" x2="2.286" y2="-1.016" width="0.2032" layer="94"/>
- <wire x1="2.286" y1="-1.016" x2="2.54" y2="0" width="0.2032" layer="94"/>
- <pin name="1" x="-5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1"/>
- <pin name="2" x="5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1" rot="R180"/>
- <text x="-3.81" y="1.4986" size="1.778" layer="95">>NAME</text>
- <text x="-3.81" y="-3.302" size="1.778" layer="96">>VALUE</text>
- </symbol>
- </symbols>
- <devicesets>
- <deviceset name="R-US_" prefix="R" uservalue="yes">
- <description><B>RESISTOR</B>, American symbol</description>
- <gates>
- <gate name="G$1" symbol="R-US" x="0" y="0"/>
- </gates>
- <devices>
- <device name="0204/2V" package="0204V">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="0204/5" package="0204/5">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="0204/7" package="0204/7">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="0207/2V" package="0207/2V">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="0207/5V" package="0207/5V">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="0207/7" package="0207/7">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="0207/10" package="0207/10">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="0207/12" package="0207/12">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="0207/15" package="0207/15">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="0309/10" package="0309/10">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="0309/12" package="0309/12">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="0309/V" package="0309V">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="0411/3V" package="0411V">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="0411/12" package="0411/12">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="0411/15" package="0411/15">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="0414/5V" package="0414V">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="0414/15" package="0414/15">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="0613/5V" package="P0613V">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="0613/15" package="P0613/15">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="0617/5V" package="0617V">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="0617/17" package="0617/17">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="0617/22" package="0617/22">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="0817/7V" package="P0817V">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="0817/22" package="P0817/22">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="0922/22" package="0922/22">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="0922V" package="0922V">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="M0805" package="M0805">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="M1206" package="M1206">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="M1406" package="M1406">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="M2012" package="M2012">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="M2309" package="M2309">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="M3216" package="M3216">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="M3516" package="M3516">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="M5923" package="M5923">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="MELF0102AX" package="MINI_MELF-0102AX">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="MELF0102R" package="MINI_MELF-0102R">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="MELF0102W" package="MINI_MELF-0102W">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="MELF0204R" package="MINI_MELF-0204R">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="MELF0204W" package="MINI_MELF-0204W">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="MELF0207R" package="MINI_MELF-0207R">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="MELF0207W" package="MINI_MELF-0207W">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="R0402" package="R0402">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="R0603" package="R0603">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="R0805" package="R0805">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="R0805W" package="R0805W">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="R1005" package="R1005">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="R1206" package="R1206">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="R1206W" package="R1206W">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="R1210" package="R1210">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="R1210W" package="R1210W">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="R2010" package="R2010">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="R2010W" package="R2010W">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="R2012" package="R2012">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="R2012W" package="R2012W">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="R2512" package="R2512">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="R2512W" package="R2512W">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="R3216" package="R3216">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="R3216W" package="R3216W">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="R3225" package="R3225">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="R3225W" package="R3225W">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="R5025" package="R5025">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="R5025W" package="R5025W">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="R6332" package="R6332">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="R6332W" package="R6332W">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="RDH/15" package="RDH/15">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="V234/12" package="V234/12">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="V235/17" package="V235/17">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- <device name="V526-0" package="V526-0">
- <connects>
- <connect gate="G$1" pin="1" pad="1"/>
- <connect gate="G$1" pin="2" pad="2"/>
- </connects>
- <technologies>
- <technology name=""/>
- </technologies>
- </device>
- </devices>
- </deviceset>
- </devicesets>
- </library>
- </drawing>
- </eagle>
|