circut_bb.svg 533 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188
  1. <?xml version='1.0' encoding='UTF-8' standalone='no'?>
  2. <!-- Created with Fritzing (https://fritzing.org/) -->
  3. <svg xmlns="http://www.w3.org/2000/svg" baseProfile="tiny" height="6.18379in" version="1.2" viewBox="0 0 510.92 445.233" width="7.09611in" x="0in" xmlns:svg="http://www.w3.org/2000/svg" y="0in">
  4. <g id="watermark" >
  5. <g >
  6. <g >
  7. <path d="M486.188,439.033c-0.604,0,-1.131,0.325,-1.422,0.809l-2.796,0l3.96,-4.071c0.146,-0.146,0.289,-0.322,0.428,-0.521c0.149,-0.222,0.228,-0.479,0.228,-0.768c0,-0.279,-0.097,-0.518,-0.287,-0.71c-0.19,-0.188,-0.444,-0.287,-0.754,-0.287l-4.636,0c-0.305,0,-0.555,0.06,-0.742,0.17c-0.219,0.13,-0.33,0.368,-0.33,0.707c0,0.329,0.111,0.562,0.33,0.692c0.188,0.111,0.438,0.168,0.742,0.168l3.148,0l-3.974,4.086c-0.146,0.147,-0.289,0.315,-0.425,0.504c-0.153,0.212,-0.23,0.472,-0.23,0.771c0,0.28,0.096,0.521,0.288,0.711c0.188,0.188,0.442,0.285,0.754,0.285l4.315,0c0.293,0.467,0.812,0.776,1.4,0.776c0.916,0,1.66,-0.744,1.66,-1.661C487.847,439.778,487.102,439.033,486.188,439.033zM486.188,441.296c-0.334,0,-0.604,-0.271,-0.604,-0.604c0,-0.333,0.27,-0.604,0.604,-0.604c0.332,0,0.604,0.271,0.604,0.604C486.791,441.027,486.52,441.296,486.188,441.296z" fill="#8C8C8C" />
  8. <path d="M469.245,428.991c-0.914,0,-1.659,0.745,-1.659,1.66c0,0.916,0.745,1.66,1.659,1.66s1.658,-0.744,1.658,-1.66C470.905,429.736,470.161,428.991,469.245,428.991zM469.246,431.254c-0.333,0,-0.604,-0.27,-0.604,-0.603s0.271,-0.603,0.604,-0.603c0.331,0,0.604,0.27,0.604,0.603S469.577,431.254,469.246,431.254z" fill="#8C8C8C" />
  9. <path d="M477.766,433.653c-0.193,-0.111,-0.439,-0.169,-0.732,-0.169l-1.465,0L475.569,430.962c0,-0.292,-0.057,-0.538,-0.166,-0.729C475.313,430.076,475.12,429.891,474.71,429.891c-0.34,0,-0.578,0.116,-0.709,0.342c-0.109,0.193,-0.167,0.438,-0.167,0.729l0,2.521l-0.481,0c-0.295,0,-0.539,0.06,-0.731,0.169c-0.228,0.129,-0.341,0.368,-0.341,0.708c0,0.412,0.185,0.603,0.341,0.692c0.192,0.111,0.438,0.168,0.731,0.168l0.481,0l0,4.362c0,0.277,0.026,0.533,0.081,0.768c0.056,0.246,0.154,0.464,0.298,0.645c0.146,0.186,0.345,0.332,0.595,0.436c0.241,0.098,0.555,0.146,0.93,0.146l0.896,0c0.292,0,0.539,-0.054,0.731,-0.166c0.154,-0.089,0.341,-0.281,0.341,-0.693c0,-0.338,-0.114,-0.578,-0.341,-0.709c-0.192,-0.109,-0.439,-0.168,-0.731,-0.168l-0.821,0c-0.138,0,-0.19,-0.019,-0.207,-0.024c-0.014,-0.034,-0.035,-0.103,-0.035,-0.231L475.571,435.221l1.465,0c0.295,0,0.541,-0.057,0.734,-0.168c0.152,-0.09,0.34,-0.28,0.34,-0.692C478.106,434.021,477.993,433.782,477.766,433.653z" fill="#8C8C8C" />
  10. <path d="M469.311,433.483l-1.191,0c-0.292,0,-0.538,0.059,-0.731,0.169c-0.226,0.129,-0.341,0.368,-0.341,0.708c0,0.412,0.188,0.604,0.341,0.691c0.193,0.113,0.439,0.168,0.731,0.168l0.544,0l0,5.362c0,0.293,0.057,0.539,0.167,0.73c0.131,0.227,0.367,0.341,0.708,0.341c0.411,0,0.604,-0.187,0.692,-0.341c0.111,-0.191,0.168,-0.438,0.168,-0.73L470.399,434.571c0,-0.386,-0.084,-0.656,-0.256,-0.83C469.968,433.569,469.698,433.483,469.311,433.483z" fill="#8C8C8C" />
  11. <path d="M465.476,433.653c-0.193,-0.111,-0.44,-0.169,-0.732,-0.169l-0.604,0c-0.25,0,-0.498,0.063,-0.734,0.187c-0.226,0.119,-0.433,0.271,-0.616,0.453l-0.644,0.604l0,-0.247c0,-0.291,-0.055,-0.538,-0.168,-0.729c-0.128,-0.228,-0.368,-0.34,-0.707,-0.34c-0.41,0,-0.604,0.184,-0.693,0.34c-0.11,0.191,-0.167,0.438,-0.167,0.729l0,4.801c-0.475,0.293,-0.791,0.816,-0.791,1.412c0,0.917,0.745,1.661,1.658,1.661c0.916,0,1.66,-0.744,1.66,-1.661c0,-0.596,-0.317,-1.119,-0.792,-1.412l0,-2.21l1.738,-1.564c0.1,-0.09,0.199,-0.164,0.297,-0.217c0.084,-0.045,0.174,-0.067,0.274,-0.067l0.288,0c0.292,0,0.539,-0.056,0.732,-0.169c0.155,-0.088,0.339,-0.279,0.339,-0.691C465.816,434.021,465.701,433.782,465.476,433.653zM461.277,441.296c-0.332,0,-0.603,-0.271,-0.603,-0.604c0,-0.333,0.271,-0.604,0.603,-0.604c0.333,0,0.604,0.271,0.604,0.604C461.881,441.027,461.61,441.296,461.277,441.296z" fill="#8C8C8C" />
  12. <path d="M458.76,430.134c-0.193,-0.111,-0.44,-0.167,-0.731,-0.167l-0.59,0c-0.2,0,-0.389,0.004,-0.562,0.016c-0.176,0.009,-0.345,0.035,-0.506,0.07c-0.168,0.041,-0.336,0.109,-0.496,0.202c-0.158,0.093,-0.319,0.222,-0.48,0.382c-0.334,0.314,-0.554,0.656,-0.652,1.017c-0.094,0.348,-0.143,0.735,-0.143,1.151l0,0.678l-0.483,0c-0.292,0,-0.539,0.059,-0.73,0.169c-0.227,0.13,-0.342,0.369,-0.342,0.708c0,0.412,0.185,0.604,0.341,0.693c0.191,0.111,0.438,0.166,0.73,0.166l0.483,0l0,5.362c0,0.293,0.057,0.539,0.167,0.73c0.13,0.227,0.367,0.341,0.708,0.341c0.411,0,0.603,-0.187,0.692,-0.341c0.111,-0.191,0.168,-0.438,0.168,-0.73l0,-5.36l0.92,0c0.293,0,0.54,-0.057,0.732,-0.168c0.155,-0.09,0.34,-0.28,0.34,-0.692c0,-0.34,-0.114,-0.579,-0.34,-0.708c-0.189,-0.111,-0.436,-0.17,-0.729,-0.17l-0.92,0l0,-0.678c0,-0.218,0.019,-0.41,0.056,-0.571c0.032,-0.141,0.103,-0.261,0.218,-0.367l0.002,-0.004l0.002,-0.002c0.082,-0.082,0.176,-0.126,0.29,-0.136c0.15,-0.015,0.339,-0.022,0.564,-0.022l0.56,0c0.291,0,0.539,-0.058,0.731,-0.168c0.154,-0.088,0.339,-0.281,0.339,-0.693C459.1,430.503,458.985,430.264,458.76,430.134z" fill="#8C8C8C" />
  13. <path d="M510.753,433.751c-0.089,-0.156,-0.282,-0.34,-0.693,-0.34c-0.339,0,-0.578,0.113,-0.707,0.34c-0.078,0.133,-0.127,0.293,-0.152,0.477l-0.021,-0.021c-0.216,-0.236,-0.466,-0.42,-0.747,-0.539c-0.277,-0.119,-0.563,-0.183,-0.849,-0.183l-0.709,0c-0.249,0,-0.466,0.015,-0.64,0.041c-0.182,0.026,-0.352,0.074,-0.51,0.14c-0.158,0.066,-0.313,0.15,-0.459,0.254c-0.139,0.097,-0.303,0.226,-0.486,0.377c-0.188,0.156,-0.342,0.302,-0.463,0.434c-0.127,0.141,-0.23,0.293,-0.306,0.455c-0.069,0.16,-0.122,0.337,-0.147,0.523c-0.026,0.178,-0.041,0.391,-0.041,0.631l0,2.386c0,0.24,0.015,0.451,0.041,0.631c0.025,0.188,0.078,0.361,0.147,0.521c0.074,0.164,0.179,0.318,0.306,0.457c0.119,0.129,0.274,0.274,0.463,0.433c0.186,0.153,0.35,0.28,0.486,0.379c0.146,0.103,0.299,0.188,0.459,0.254c0.158,0.065,0.329,0.112,0.51,0.14c0.174,0.026,0.389,0.039,0.64,0.039l0.709,0c0.298,0,0.591,-0.066,0.87,-0.199c0.244,-0.114,0.492,-0.291,0.73,-0.523l0,1.434c0,0.18,-0.025,0.334,-0.072,0.465c-0.043,0.119,-0.159,0.258,-0.344,0.406c-0.154,0.127,-0.309,0.217,-0.457,0.264c-0.15,0.049,-0.341,0.074,-0.563,0.074l-2.203,0c-0.293,0,-0.538,0.055,-0.732,0.166c-0.152,0.088,-0.34,0.282,-0.34,0.692c0,0.341,0.115,0.579,0.34,0.71c0.194,0.109,0.439,0.167,0.732,0.167l2.326,0c0.247,0,0.463,-0.015,0.638,-0.041c0.179,-0.026,0.351,-0.073,0.513,-0.14c0.153,-0.064,0.31,-0.15,0.455,-0.254c0.143,-0.101,0.305,-0.227,0.487,-0.379c0.185,-0.153,0.343,-0.299,0.463,-0.431c0.128,-0.141,0.229,-0.294,0.304,-0.456c0.071,-0.162,0.123,-0.338,0.148,-0.523c0.025,-0.182,0.041,-0.393,0.041,-0.631l0,-7.898C510.92,434.189,510.866,433.942,510.753,433.751zM509.184,438.211c0,0.188,-0.062,0.35,-0.188,0.49c-0.15,0.172,-0.394,0.403,-0.716,0.686l-0.002,0.003l-0.002,0.004c-0.139,0.13,-0.291,0.237,-0.453,0.325c-0.148,0.082,-0.325,0.121,-0.526,0.121L506.996,439.84c-0.222,0,-0.41,-0.021,-0.563,-0.072c-0.148,-0.049,-0.301,-0.137,-0.453,-0.264c-0.231,-0.186,-0.315,-0.322,-0.346,-0.404c-0.049,-0.131,-0.072,-0.285,-0.072,-0.465l0,-2.206c0,-0.18,0.023,-0.336,0.072,-0.467c0.029,-0.082,0.113,-0.217,0.346,-0.403c0.152,-0.127,0.305,-0.216,0.453,-0.265c0.153,-0.049,0.342,-0.072,0.563,-0.072l0.301,0c0.212,0,0.388,0.037,0.526,0.113c0.152,0.082,0.308,0.191,0.457,0.324c0.322,0.293,0.564,0.529,0.716,0.7c0.128,0.146,0.188,0.304,0.188,0.492L509.184,438.211z" fill="#8C8C8C" />
  14. <path d="M490.774,428.991c-0.914,0,-1.66,0.745,-1.66,1.66c0,0.916,0.746,1.66,1.66,1.66s1.66,-0.744,1.66,-1.66C492.434,429.736,491.688,428.991,490.774,428.991zM490.774,431.254c-0.332,0,-0.604,-0.27,-0.604,-0.603s0.271,-0.603,0.604,-0.603s0.604,0.27,0.604,0.603C491.378,430.984,491.106,431.254,490.774,431.254z" fill="#8C8C8C" />
  15. <path d="M501.46,439.259l-0.107,-3.419c-0.011,-0.178,-0.021,-0.338,-0.031,-0.489c-0.01,-0.162,-0.037,-0.322,-0.082,-0.476c-0.045,-0.158,-0.11,-0.309,-0.198,-0.453c-0.093,-0.146,-0.216,-0.289,-0.37,-0.42c-0.225,-0.192,-0.443,-0.334,-0.646,-0.416c-0.207,-0.084,-0.461,-0.127,-0.754,-0.127l-1.012,0c-0.259,0,-0.501,0.058,-0.716,0.164c-0.197,0.098,-0.39,0.203,-0.572,0.315l-0.003,0.002l-0.003,0.003l-0.837,0.555l0,-0.041c0,-0.291,-0.057,-0.539,-0.168,-0.733c-0.129,-0.226,-0.367,-0.339,-0.707,-0.339c-0.411,0,-0.604,0.185,-0.693,0.339c-0.109,0.194,-0.168,0.438,-0.168,0.733l0,6.099c0,0.295,0.059,0.539,0.168,0.734c0.09,0.153,0.282,0.338,0.693,0.338c0.34,0,0.578,-0.114,0.707,-0.338c0.111,-0.195,0.168,-0.439,0.168,-0.734L496.129,436.521l1.953,-1.215c0.04,-0.024,0.082,-0.048,0.121,-0.063c0.031,-0.016,0.07,-0.025,0.115,-0.031c0.049,-0.012,0.117,-0.016,0.195,-0.016l0.362,0c0.188,0,0.334,0.021,0.435,0.059c0.082,0.029,0.143,0.076,0.18,0.143c0.05,0.078,0.08,0.18,0.098,0.303c0.02,0.139,0.034,0.309,0.045,0.504l0.096,3.097c-0.457,0.297,-0.762,0.811,-0.762,1.394c0,0.917,0.746,1.661,1.66,1.661c0.916,0,1.66,-0.744,1.66,-1.661C502.286,440.084,501.953,439.546,501.46,439.259zM500.626,441.296c-0.334,0,-0.602,-0.271,-0.602,-0.604c0,-0.333,0.268,-0.604,0.602,-0.604c0.333,0,0.604,0.271,0.604,0.604C501.231,441.027,500.959,441.296,500.626,441.296z" fill="#8C8C8C" />
  16. <path d="M490.837,433.483l-1.193,0c-0.293,0,-0.539,0.059,-0.731,0.169c-0.226,0.129,-0.341,0.368,-0.341,0.708c0,0.412,0.186,0.604,0.341,0.691c0.192,0.113,0.438,0.168,0.731,0.168l0.545,0l0,5.362c0,0.293,0.055,0.539,0.168,0.73c0.127,0.227,0.365,0.341,0.707,0.341c0.41,0,0.604,-0.187,0.691,-0.341c0.111,-0.191,0.17,-0.438,0.17,-0.73L491.925,434.571c0,-0.386,-0.085,-0.656,-0.259,-0.83C491.494,433.569,491.221,433.483,490.837,433.483z" fill="#8C8C8C" />
  17. </g>
  18. </g>
  19. </g>
  20. <g partID="855169920">
  21. <g transform="translate(42.6816,211.743)">
  22. <g id="breadboardbreadboard">
  23. <g id="background">
  24. <rect fill="#D9D9D9" height="151.199" width="468.238" y="0"/>
  25. </g>
  26. <g id="stripes">
  27. <rect fill="#B3B0B0" height="0.4" width="468.238" y="20.932"/>
  28. <rect fill="#B3B0B0" height="0.4" width="468.238" y="129.475"/>
  29. </g>
  30. <g>
  31. <rect fill="#FF0000" height="0.4" width="468.238" y="19.2"/>
  32. <rect fill="#FF0000" height="0.4" width="468.238" y="148.799"/>
  33. <rect fill="#0000FF" height="0.4" width="468.238" y="2.4"/>
  34. <rect fill="#0000FF" height="0.4" width="468.238" y="132"/>
  35. </g>
  36. <g>
  37. <rect fill="#CCC9C9" height="7.2" width="468.238" y="71.2"/>
  38. </g>
  39. <g id="sockets">
  40. <g id="pin1A">
  41. <path d="M8.526,115.2c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.071,2.394,2.394" fill="#BFBFBF"/>
  42. <path d="M13.313,115.2c0,1.322,-1.072,2.394,-2.394,2.394s-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  43. <circle cx="10.92" cy="115.2" fill="#383838" r="1.197"/>
  44. </g>
  45. <g id="pin1B">
  46. <path d="M8.526,108c0,-1.322,1.072,-2.395,2.394,-2.395s2.394,1.072,2.394,2.395" fill="#BFBFBF"/>
  47. <path d="M13.313,108c0,1.321,-1.072,2.393,-2.394,2.393S8.526,109.322,8.526,108" fill="#E6E6E6"/>
  48. <circle cx="10.92" cy="108" fill="#383838" r="1.197"/>
  49. </g>
  50. <g id="pin1C">
  51. <path d="M8.526,100.799c0,-1.321,1.072,-2.393,2.394,-2.393s2.394,1.071,2.394,2.393" fill="#BFBFBF"/>
  52. <path d="M13.313,100.799c0,1.322,-1.072,2.395,-2.394,2.395s-2.394,-1.072,-2.394,-2.395l0,0" fill="#E6E6E6"/>
  53. <circle cx="10.92" cy="100.8" fill="#383838" r="1.197"/>
  54. </g>
  55. <g id="pin1D">
  56. <path d="M8.526,93.6c0,-1.322,1.072,-2.395,2.394,-2.395s2.394,1.072,2.394,2.395" fill="#BFBFBF"/>
  57. <path d="M13.313,93.6c0,1.322,-1.072,2.394,-2.394,2.394S8.526,94.922,8.526,93.6l0,0" fill="#E6E6E6"/>
  58. <circle cx="10.92" cy="93.6" fill="#383838" r="1.197"/>
  59. </g>
  60. <g id="pin1E">
  61. <path d="M8.526,86.4c0,-1.321,1.072,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  62. <path d="M13.313,86.4c0,1.321,-1.072,2.394,-2.394,2.394S8.526,87.721,8.526,86.4l0,0" fill="#E6E6E6"/>
  63. <circle cx="10.92" cy="86.4" fill="#383838" r="1.196"/>
  64. </g>
  65. <g id="pin1F">
  66. <path d="M8.526,64.8c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  67. <path d="M13.313,64.8c0,1.322,-1.072,2.394,-2.394,2.394S8.526,66.122,8.526,64.8l0,0" fill="#E6E6E6"/>
  68. <circle cx="10.92" cy="64.8" fill="#383838" r="1.197"/>
  69. </g>
  70. <g id="pin1G">
  71. <path d="M8.526,57.6c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  72. <path d="M13.313,57.6c0,1.322,-1.072,2.394,-2.394,2.394S8.526,58.922,8.526,57.6" fill="#E6E6E6"/>
  73. <circle cx="10.92" cy="57.6" fill="#383838" r="1.197"/>
  74. </g>
  75. <g id="pin1H">
  76. <path d="M8.526,50.4c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  77. <path d="M13.313,50.4c0,1.322,-1.072,2.394,-2.394,2.394S8.526,51.722,8.526,50.4l0,0" fill="#E6E6E6"/>
  78. <circle cx="10.92" cy="50.4" fill="#383838" r="1.197"/>
  79. </g>
  80. <g id="pin1I">
  81. <path d="M8.526,43.2c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  82. <path d="M13.313,43.2c0,1.322,-1.072,2.394,-2.394,2.394S8.526,44.522,8.526,43.2l0,0" fill="#E6E6E6"/>
  83. <circle cx="10.92" cy="43.2" fill="#383838" r="1.197"/>
  84. </g>
  85. <g id="pin1J">
  86. <path d="M8.526,36c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  87. <path d="M13.313,36c0,1.322,-1.072,2.394,-2.394,2.394S8.526,37.322,8.526,36l0,0" fill="#E6E6E6"/>
  88. <circle cx="10.92" cy="36" fill="#383838" r="1.197"/>
  89. </g>
  90. <g id="pin2A">
  91. <path d="M15.727,115.2c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394" fill="#BFBFBF"/>
  92. <path d="M20.514,115.2c0,1.322,-1.07,2.395,-2.393,2.395c-1.322,0.002,-2.394,-1.07,-2.395,-2.392c0,-0.001,0,-0.002,0,-0.003" fill="#E6E6E6"/>
  93. <circle cx="18.12" cy="115.2" fill="#383838" r="1.197"/>
  94. </g>
  95. <g id="pin2B">
  96. <path d="M15.727,108c0,-1.322,1.071,-2.395,2.394,-2.395c1.322,0,2.394,1.072,2.394,2.395" fill="#BFBFBF"/>
  97. <path d="M20.514,108c0,1.321,-1.07,2.394,-2.393,2.395c-1.322,0,-2.394,-1.07,-2.395,-2.393c0,-0.001,0,-0.002,0,-0.002" fill="#E6E6E6"/>
  98. <circle cx="18.12" cy="108" fill="#383838" r="1.197"/>
  99. </g>
  100. <g id="pin2C">
  101. <path d="M15.727,100.799c0,-1.321,1.071,-2.393,2.394,-2.393c1.322,0,2.394,1.071,2.394,2.393" fill="#BFBFBF"/>
  102. <path d="M20.514,100.799c0,1.322,-1.07,2.395,-2.393,2.396c-1.322,0.001,-2.394,-1.07,-2.395,-2.392c0,-0.002,0,-0.002,0,-0.004" fill="#E6E6E6"/>
  103. <circle cx="18.12" cy="100.8" fill="#383838" r="1.197"/>
  104. </g>
  105. <g id="pin2D">
  106. <path d="M15.727,93.6c0,-1.322,1.071,-2.395,2.394,-2.395c1.322,0,2.394,1.072,2.394,2.395" fill="#BFBFBF"/>
  107. <path d="M20.514,93.6c0,1.322,-1.07,2.395,-2.393,2.395c-1.322,0.001,-2.394,-1.07,-2.395,-2.393L15.726,93.6" fill="#E6E6E6"/>
  108. <circle cx="18.12" cy="93.6" fill="#383838" r="1.197"/>
  109. </g>
  110. <g id="pin2E">
  111. <path d="M15.727,86.4c0,-1.321,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  112. <path d="M20.514,86.4c0,1.321,-1.07,2.394,-2.393,2.396c-1.322,0,-2.394,-1.07,-2.395,-2.393c0,-0.001,0,-0.002,0,-0.003" fill="#E6E6E6"/>
  113. <circle cx="18.12" cy="86.4" fill="#383838" r="1.196"/>
  114. </g>
  115. <g id="pin2F">
  116. <path d="M15.727,64.8c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  117. <path d="M20.514,64.8c0,1.322,-1.07,2.395,-2.393,2.395c-1.322,0.001,-2.394,-1.07,-2.395,-2.392c0,-0.001,0,-0.002,0,-0.003" fill="#E6E6E6"/>
  118. <circle cx="18.12" cy="64.8" fill="#383838" r="1.197"/>
  119. </g>
  120. <g id="pin2G">
  121. <path d="M15.727,57.6c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  122. <path d="M20.514,57.6c0,1.322,-1.07,2.394,-2.393,2.395c-1.322,0,-2.394,-1.07,-2.395,-2.393c0,0,0,-0.001,0,-0.002" fill="#E6E6E6"/>
  123. <circle cx="18.12" cy="57.6" fill="#383838" r="1.197"/>
  124. </g>
  125. <g id="pin2H">
  126. <path d="M15.727,50.4c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  127. <path d="M20.514,50.4c0,1.322,-1.07,2.395,-2.393,2.395c-1.322,0.001,-2.394,-1.07,-2.395,-2.392c0,-0.001,0,-0.002,0,-0.003" fill="#E6E6E6"/>
  128. <circle cx="18.12" cy="50.4" fill="#383838" r="1.197"/>
  129. </g>
  130. <g id="pin2I">
  131. <path d="M15.727,43.2c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  132. <path d="M20.514,43.2c0,1.322,-1.07,2.394,-2.393,2.395c-1.322,0,-2.394,-1.07,-2.395,-2.393c0,0,0,-0.001,0,-0.002" fill="#E6E6E6"/>
  133. <circle cx="18.12" cy="43.2" fill="#383838" r="1.197"/>
  134. </g>
  135. <g id="pin2J">
  136. <path d="M15.727,36c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  137. <path d="M20.514,36c0,1.322,-1.07,2.395,-2.393,2.395c-1.322,0.001,-2.394,-1.07,-2.395,-2.392c0,-0.001,0,-0.002,0,-0.003" fill="#E6E6E6"/>
  138. <circle cx="18.12" cy="36" fill="#383838" r="1.197"/>
  139. </g>
  140. <g id="pin3A">
  141. <path d="M22.926,115.2c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.071,2.394,2.394" fill="#BFBFBF"/>
  142. <path d="M27.713,115.2c0,1.322,-1.072,2.394,-2.394,2.394s-2.394,-1.071,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  143. <circle cx="25.32" cy="115.2" fill="#383838" r="1.197"/>
  144. </g>
  145. <g id="pin3B">
  146. <path d="M22.926,108c0,-1.322,1.072,-2.395,2.394,-2.395s2.394,1.072,2.394,2.395" fill="#BFBFBF"/>
  147. <path d="M27.713,108c0,1.321,-1.072,2.393,-2.394,2.393s-2.394,-1.071,-2.394,-2.393" fill="#E6E6E6"/>
  148. <circle cx="25.32" cy="108" fill="#383838" r="1.197"/>
  149. </g>
  150. <g id="pin3C">
  151. <path d="M22.926,100.799c0,-1.321,1.072,-2.393,2.394,-2.393s2.394,1.071,2.394,2.393" fill="#BFBFBF"/>
  152. <path d="M27.713,100.799c0,1.322,-1.072,2.395,-2.394,2.395s-2.394,-1.072,-2.394,-2.395l0,0" fill="#E6E6E6"/>
  153. <circle cx="25.32" cy="100.8" fill="#383838" r="1.197"/>
  154. </g>
  155. <g id="pin3D">
  156. <path d="M22.926,93.6c0,-1.322,1.072,-2.395,2.394,-2.395s2.394,1.072,2.394,2.395" fill="#BFBFBF"/>
  157. <path d="M27.713,93.6c0,1.322,-1.072,2.394,-2.394,2.394s-2.394,-1.071,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  158. <circle cx="25.32" cy="93.6" fill="#383838" r="1.197"/>
  159. </g>
  160. <g id="pin3E">
  161. <path d="M22.926,86.4c0,-1.321,1.072,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  162. <path d="M27.713,86.4c0,1.321,-1.072,2.394,-2.394,2.394s-2.394,-1.072,-2.394,-2.394" fill="#E6E6E6"/>
  163. <circle cx="25.32" cy="86.4" fill="#383838" r="1.196"/>
  164. </g>
  165. <g id="pin3F">
  166. <path d="M22.926,64.8c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  167. <path d="M27.713,64.8c0,1.322,-1.072,2.394,-2.394,2.394s-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  168. <circle cx="25.32" cy="64.8" fill="#383838" r="1.197"/>
  169. </g>
  170. <g id="pin3G">
  171. <path d="M22.926,57.6c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  172. <path d="M27.713,57.6c0,1.322,-1.072,2.394,-2.394,2.394s-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  173. <circle cx="25.32" cy="57.6" fill="#383838" r="1.197"/>
  174. </g>
  175. <g id="pin3H">
  176. <path d="M22.926,50.4c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  177. <path d="M27.713,50.4c0,1.322,-1.072,2.394,-2.394,2.394s-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  178. <circle cx="25.32" cy="50.4" fill="#383838" r="1.197"/>
  179. </g>
  180. <g id="pin3I">
  181. <path d="M22.926,43.2c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  182. <path d="M27.713,43.2c0,1.322,-1.072,2.394,-2.394,2.394s-2.394,-1.072,-2.394,-2.394" fill="#E6E6E6"/>
  183. <circle cx="25.32" cy="43.2" fill="#383838" r="1.197"/>
  184. </g>
  185. <g id="pin3J">
  186. <path d="M22.926,36c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  187. <path d="M27.713,36c0,1.322,-1.072,2.394,-2.394,2.394S22.926,37.322,22.926,36" fill="#E6E6E6"/>
  188. <circle cx="25.32" cy="36" fill="#383838" r="1.197"/>
  189. </g>
  190. <g id="pin4A">
  191. <path d="M30.126,115.2c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394" fill="#BFBFBF"/>
  192. <path d="M34.914,115.2c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  193. <circle cx="32.52" cy="115.2" fill="#383838" r="1.197"/>
  194. </g>
  195. <g id="pin4B">
  196. <path d="M30.126,108c0,-1.322,1.071,-2.395,2.394,-2.395c1.322,0,2.394,1.072,2.394,2.395" fill="#BFBFBF"/>
  197. <path d="M34.914,108c0,1.321,-1.072,2.393,-2.394,2.393c-1.322,0,-2.394,-1.071,-2.394,-2.393" fill="#E6E6E6"/>
  198. <circle cx="32.52" cy="108" fill="#383838" r="1.197"/>
  199. </g>
  200. <g id="pin4C">
  201. <path d="M30.126,100.799c0,-1.321,1.071,-2.393,2.394,-2.393c1.322,0,2.394,1.071,2.394,2.393" fill="#BFBFBF"/>
  202. <path d="M34.914,100.799c0,1.322,-1.072,2.395,-2.394,2.395c-1.322,0,-2.394,-1.072,-2.394,-2.395l0,0" fill="#E6E6E6"/>
  203. <circle cx="32.52" cy="100.8" fill="#383838" r="1.197"/>
  204. </g>
  205. <g id="pin4D">
  206. <path d="M30.126,93.6c0,-1.322,1.071,-2.395,2.394,-2.395c1.322,0,2.394,1.072,2.394,2.395" fill="#BFBFBF"/>
  207. <path d="M34.914,93.6c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  208. <circle cx="32.52" cy="93.6" fill="#383838" r="1.197"/>
  209. </g>
  210. <g id="pin4E">
  211. <path d="M30.126,86.4c0,-1.321,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  212. <path d="M34.914,86.4c0,1.321,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394" fill="#E6E6E6"/>
  213. <circle cx="32.52" cy="86.4" fill="#383838" r="1.196"/>
  214. </g>
  215. <g id="pin4F">
  216. <path d="M30.126,64.8c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  217. <path d="M34.914,64.8c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  218. <circle cx="32.52" cy="64.8" fill="#383838" r="1.197"/>
  219. </g>
  220. <g id="pin4G">
  221. <path d="M30.126,57.6c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  222. <path d="M34.914,57.6c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  223. <circle cx="32.52" cy="57.6" fill="#383838" r="1.197"/>
  224. </g>
  225. <g id="pin4H">
  226. <path d="M30.126,50.4c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  227. <path d="M34.914,50.4c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  228. <circle cx="32.52" cy="50.4" fill="#383838" r="1.197"/>
  229. </g>
  230. <g id="pin4I">
  231. <path d="M30.126,43.2c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  232. <path d="M34.914,43.2c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394" fill="#E6E6E6"/>
  233. <circle cx="32.52" cy="43.2" fill="#383838" r="1.197"/>
  234. </g>
  235. <g id="pin4J">
  236. <path d="M30.126,36c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  237. <path d="M34.914,36c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  238. <circle cx="32.52" cy="36" fill="#383838" r="1.197"/>
  239. </g>
  240. <g id="pin5A">
  241. <path d="M37.326,115.2c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394" fill="#BFBFBF"/>
  242. <path d="M42.113,115.2c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  243. <circle cx="39.72" cy="115.2" fill="#383838" r="1.197"/>
  244. </g>
  245. <g id="pin5B">
  246. <path d="M37.326,108c0,-1.322,1.072,-2.395,2.394,-2.395c1.322,0,2.394,1.072,2.394,2.395" fill="#BFBFBF"/>
  247. <path d="M42.113,108c0,1.321,-1.071,2.393,-2.394,2.393c-1.322,0,-2.394,-1.071,-2.394,-2.393" fill="#E6E6E6"/>
  248. <circle cx="39.72" cy="108" fill="#383838" r="1.197"/>
  249. </g>
  250. <g id="pin5C">
  251. <path d="M37.326,100.799c0,-1.321,1.072,-2.393,2.394,-2.393c1.322,0,2.394,1.071,2.394,2.393" fill="#BFBFBF"/>
  252. <path d="M42.113,100.799c0,1.322,-1.071,2.395,-2.394,2.395c-1.322,0,-2.394,-1.072,-2.394,-2.395l0,0" fill="#E6E6E6"/>
  253. <circle cx="39.72" cy="100.8" fill="#383838" r="1.197"/>
  254. </g>
  255. <g id="pin5D">
  256. <path d="M37.326,93.6c0,-1.322,1.072,-2.395,2.394,-2.395c1.322,0,2.394,1.072,2.394,2.395" fill="#BFBFBF"/>
  257. <path d="M42.113,93.6c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  258. <circle cx="39.72" cy="93.6" fill="#383838" r="1.197"/>
  259. </g>
  260. <g id="pin5E">
  261. <path d="M37.326,86.4c0,-1.321,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  262. <path d="M42.113,86.4c0,1.321,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394" fill="#E6E6E6"/>
  263. <circle cx="39.72" cy="86.4" fill="#383838" r="1.196"/>
  264. </g>
  265. <g id="pin5F">
  266. <path d="M37.326,64.8c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  267. <path d="M42.113,64.8c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  268. <circle cx="39.72" cy="64.8" fill="#383838" r="1.197"/>
  269. </g>
  270. <g id="pin5G">
  271. <path d="M37.326,57.6c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  272. <path d="M42.113,57.6c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  273. <circle cx="39.72" cy="57.6" fill="#383838" r="1.197"/>
  274. </g>
  275. <g id="pin5H">
  276. <path d="M37.326,50.4c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  277. <path d="M42.113,50.4c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  278. <circle cx="39.72" cy="50.4" fill="#383838" r="1.197"/>
  279. </g>
  280. <g id="pin5I">
  281. <path d="M37.326,43.2c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  282. <path d="M42.113,43.2c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394" fill="#E6E6E6"/>
  283. <circle cx="39.72" cy="43.2" fill="#383838" r="1.197"/>
  284. </g>
  285. <g id="pin5J">
  286. <path d="M37.326,36c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  287. <path d="M42.113,36c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  288. <circle cx="39.72" cy="36" fill="#383838" r="1.197"/>
  289. </g>
  290. <g id="pin6A">
  291. <path d="M44.526,115.2c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394" fill="#BFBFBF"/>
  292. <path d="M49.313,115.2c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  293. <circle cx="46.92" cy="115.2" fill="#383838" r="1.197"/>
  294. </g>
  295. <g id="pin6B">
  296. <path d="M44.526,108c0,-1.322,1.071,-2.395,2.394,-2.395c1.322,0,2.394,1.072,2.394,2.395" fill="#BFBFBF"/>
  297. <path d="M49.313,108c0,1.321,-1.072,2.393,-2.394,2.393c-1.322,0,-2.394,-1.071,-2.394,-2.393" fill="#E6E6E6"/>
  298. <circle cx="46.92" cy="108" fill="#383838" r="1.197"/>
  299. </g>
  300. <g id="pin6C">
  301. <path d="M44.526,100.799c0,-1.321,1.071,-2.393,2.394,-2.393c1.322,0,2.394,1.071,2.394,2.393" fill="#BFBFBF"/>
  302. <path d="M49.313,100.799c0,1.322,-1.072,2.395,-2.394,2.395c-1.322,0,-2.394,-1.072,-2.394,-2.395l0,0" fill="#E6E6E6"/>
  303. <circle cx="46.92" cy="100.8" fill="#383838" r="1.197"/>
  304. </g>
  305. <g id="pin6D">
  306. <path d="M44.526,93.6c0,-1.322,1.071,-2.395,2.394,-2.395c1.322,0,2.394,1.072,2.394,2.395" fill="#BFBFBF"/>
  307. <path d="M49.313,93.6c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  308. <circle cx="46.92" cy="93.6" fill="#383838" r="1.197"/>
  309. </g>
  310. <g id="pin6E">
  311. <path d="M44.526,86.4c0,-1.321,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  312. <path d="M49.313,86.4c0,1.321,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394" fill="#E6E6E6"/>
  313. <circle cx="46.92" cy="86.4" fill="#383838" r="1.196"/>
  314. </g>
  315. <g id="pin6F">
  316. <path d="M44.526,64.8c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  317. <path d="M49.313,64.8c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  318. <circle cx="46.92" cy="64.8" fill="#383838" r="1.197"/>
  319. </g>
  320. <g id="pin6G">
  321. <path d="M44.526,57.6c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  322. <path d="M49.313,57.6c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  323. <circle cx="46.92" cy="57.6" fill="#383838" r="1.197"/>
  324. </g>
  325. <g id="pin6H">
  326. <path d="M44.526,50.4c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  327. <path d="M49.313,50.4c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  328. <circle cx="46.92" cy="50.4" fill="#383838" r="1.197"/>
  329. </g>
  330. <g id="pin6I">
  331. <path d="M44.526,43.2c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  332. <path d="M49.313,43.2c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394" fill="#E6E6E6"/>
  333. <circle cx="46.92" cy="43.2" fill="#383838" r="1.197"/>
  334. </g>
  335. <g id="pin6J">
  336. <path d="M44.526,36c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  337. <path d="M49.313,36c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  338. <circle cx="46.92" cy="36" fill="#383838" r="1.197"/>
  339. </g>
  340. <g id="pin7A">
  341. <path d="M51.726,115.2c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394" fill="#BFBFBF"/>
  342. <path d="M56.513,115.2c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  343. <circle cx="54.12" cy="115.2" fill="#383838" r="1.197"/>
  344. </g>
  345. <g id="pin7B">
  346. <path d="M51.726,108c0,-1.322,1.072,-2.395,2.394,-2.395c1.322,0,2.394,1.072,2.394,2.395" fill="#BFBFBF"/>
  347. <path d="M56.513,108c0,1.321,-1.071,2.393,-2.394,2.393c-1.322,0,-2.394,-1.071,-2.394,-2.393" fill="#E6E6E6"/>
  348. <circle cx="54.12" cy="108" fill="#383838" r="1.197"/>
  349. </g>
  350. <g id="pin7C">
  351. <path d="M51.726,100.799c0,-1.321,1.072,-2.393,2.394,-2.393c1.322,0,2.394,1.071,2.394,2.393" fill="#BFBFBF"/>
  352. <path d="M56.513,100.799c0,1.322,-1.071,2.395,-2.394,2.395c-1.322,0,-2.394,-1.072,-2.394,-2.395l0,0" fill="#E6E6E6"/>
  353. <circle cx="54.12" cy="100.8" fill="#383838" r="1.197"/>
  354. </g>
  355. <g id="pin7D">
  356. <path d="M51.726,93.6c0,-1.322,1.072,-2.395,2.394,-2.395c1.322,0,2.394,1.072,2.394,2.395" fill="#BFBFBF"/>
  357. <path d="M56.513,93.6c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  358. <circle cx="54.12" cy="93.6" fill="#383838" r="1.197"/>
  359. </g>
  360. <g id="pin7E">
  361. <path d="M51.726,86.4c0,-1.321,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  362. <path d="M56.513,86.4c0,1.321,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394" fill="#E6E6E6"/>
  363. <circle cx="54.12" cy="86.4" fill="#383838" r="1.196"/>
  364. </g>
  365. <g id="pin7F">
  366. <path d="M51.726,64.8c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  367. <path d="M56.513,64.8c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  368. <circle cx="54.12" cy="64.8" fill="#383838" r="1.197"/>
  369. </g>
  370. <g id="pin7G">
  371. <path d="M51.726,57.6c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  372. <path d="M56.513,57.6c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  373. <circle cx="54.12" cy="57.6" fill="#383838" r="1.197"/>
  374. </g>
  375. <g id="pin7H">
  376. <path d="M51.726,50.4c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  377. <path d="M56.513,50.4c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  378. <circle cx="54.12" cy="50.4" fill="#383838" r="1.197"/>
  379. </g>
  380. <g id="pin7I">
  381. <path d="M51.726,43.2c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  382. <path d="M56.513,43.2c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394" fill="#E6E6E6"/>
  383. <circle cx="54.12" cy="43.2" fill="#383838" r="1.197"/>
  384. </g>
  385. <g id="pin7J">
  386. <path d="M51.726,36c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  387. <path d="M56.513,36c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  388. <circle cx="54.12" cy="36" fill="#383838" r="1.197"/>
  389. </g>
  390. <g id="pin8A">
  391. <path d="M58.926,115.2c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394" fill="#BFBFBF"/>
  392. <path d="M63.713,115.2c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  393. <circle cx="61.32" cy="115.2" fill="#383838" r="1.197"/>
  394. </g>
  395. <g id="pin8B">
  396. <path d="M58.926,108c0,-1.322,1.071,-2.395,2.394,-2.395c1.322,0,2.394,1.072,2.394,2.395" fill="#BFBFBF"/>
  397. <path d="M63.713,108c0,1.321,-1.072,2.393,-2.394,2.393c-1.322,0,-2.394,-1.071,-2.394,-2.393" fill="#E6E6E6"/>
  398. <circle cx="61.32" cy="108" fill="#383838" r="1.197"/>
  399. </g>
  400. <g id="pin8C">
  401. <path d="M58.926,100.799c0,-1.321,1.071,-2.393,2.394,-2.393c1.322,0,2.394,1.071,2.394,2.393" fill="#BFBFBF"/>
  402. <path d="M63.713,100.799c0,1.322,-1.072,2.395,-2.394,2.395c-1.322,0,-2.394,-1.072,-2.394,-2.395l0,0" fill="#E6E6E6"/>
  403. <circle cx="61.32" cy="100.8" fill="#383838" r="1.197"/>
  404. </g>
  405. <g id="pin8D">
  406. <path d="M58.926,93.6c0,-1.322,1.071,-2.395,2.394,-2.395c1.322,0,2.394,1.072,2.394,2.395" fill="#BFBFBF"/>
  407. <path d="M63.713,93.6c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  408. <circle cx="61.32" cy="93.6" fill="#383838" r="1.197"/>
  409. </g>
  410. <g id="pin8E">
  411. <path d="M58.926,86.4c0,-1.321,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  412. <path d="M63.713,86.4c0,1.321,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394" fill="#E6E6E6"/>
  413. <circle cx="61.32" cy="86.4" fill="#383838" r="1.196"/>
  414. </g>
  415. <g id="pin8F">
  416. <path d="M58.926,64.8c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  417. <path d="M63.713,64.8c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  418. <circle cx="61.32" cy="64.8" fill="#383838" r="1.197"/>
  419. </g>
  420. <g id="pin8G">
  421. <path d="M58.926,57.6c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  422. <path d="M63.713,57.6c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  423. <circle cx="61.32" cy="57.6" fill="#383838" r="1.197"/>
  424. </g>
  425. <g id="pin8H">
  426. <path d="M58.926,50.4c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  427. <path d="M63.713,50.4c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  428. <circle cx="61.32" cy="50.4" fill="#383838" r="1.197"/>
  429. </g>
  430. <g id="pin8I">
  431. <path d="M58.926,43.2c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  432. <path d="M63.713,43.2c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394" fill="#E6E6E6"/>
  433. <circle cx="61.32" cy="43.2" fill="#383838" r="1.197"/>
  434. </g>
  435. <g id="pin8J">
  436. <path d="M58.926,36c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  437. <path d="M63.713,36c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  438. <circle cx="61.32" cy="36" fill="#383838" r="1.197"/>
  439. </g>
  440. <g id="pin9A">
  441. <path d="M66.126,115.2c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394" fill="#BFBFBF"/>
  442. <path d="M70.913,115.2c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  443. <circle cx="68.52" cy="115.2" fill="#383838" r="1.197"/>
  444. </g>
  445. <g id="pin9B">
  446. <path d="M66.126,108c0,-1.322,1.072,-2.395,2.394,-2.395c1.322,0,2.394,1.072,2.394,2.395" fill="#BFBFBF"/>
  447. <path d="M70.913,108c0,1.321,-1.071,2.393,-2.394,2.393c-1.322,0,-2.394,-1.071,-2.394,-2.393" fill="#E6E6E6"/>
  448. <circle cx="68.52" cy="108" fill="#383838" r="1.197"/>
  449. </g>
  450. <g id="pin9C">
  451. <path d="M66.126,100.799c0,-1.321,1.072,-2.393,2.394,-2.393c1.322,0,2.394,1.071,2.394,2.393" fill="#BFBFBF"/>
  452. <path d="M70.913,100.799c0,1.322,-1.071,2.395,-2.394,2.395c-1.322,0,-2.394,-1.072,-2.394,-2.395l0,0" fill="#E6E6E6"/>
  453. <circle cx="68.52" cy="100.8" fill="#383838" r="1.197"/>
  454. </g>
  455. <g id="pin9D">
  456. <path d="M66.126,93.6c0,-1.322,1.072,-2.395,2.394,-2.395c1.322,0,2.394,1.072,2.394,2.395" fill="#BFBFBF"/>
  457. <path d="M70.913,93.6c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  458. <circle cx="68.52" cy="93.6" fill="#383838" r="1.197"/>
  459. </g>
  460. <g id="pin9E">
  461. <path d="M66.126,86.4c0,-1.321,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  462. <path d="M70.913,86.4c0,1.321,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394" fill="#E6E6E6"/>
  463. <circle cx="68.52" cy="86.4" fill="#383838" r="1.196"/>
  464. </g>
  465. <g id="pin9F">
  466. <path d="M66.126,64.8c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  467. <path d="M70.913,64.8c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  468. <circle cx="68.52" cy="64.8" fill="#383838" r="1.197"/>
  469. </g>
  470. <g id="pin9G">
  471. <path d="M66.126,57.6c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  472. <path d="M70.913,57.6c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  473. <circle cx="68.52" cy="57.6" fill="#383838" r="1.197"/>
  474. </g>
  475. <g id="pin9H">
  476. <path d="M66.126,50.4c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  477. <path d="M70.913,50.4c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  478. <circle cx="68.52" cy="50.4" fill="#383838" r="1.197"/>
  479. </g>
  480. <g id="pin9I">
  481. <path d="M66.126,43.2c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  482. <path d="M70.913,43.2c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394" fill="#E6E6E6"/>
  483. <circle cx="68.52" cy="43.2" fill="#383838" r="1.197"/>
  484. </g>
  485. <g id="pin9J">
  486. <path d="M66.126,36c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  487. <path d="M70.913,36c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  488. <circle cx="68.52" cy="36" fill="#383838" r="1.197"/>
  489. </g>
  490. <g id="pin10A">
  491. <path d="M73.326,115.2c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394" fill="#BFBFBF"/>
  492. <path d="M78.113,115.2c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  493. <circle cx="75.72" cy="115.2" fill="#383838" r="1.197"/>
  494. </g>
  495. <g id="pin10B">
  496. <path d="M73.326,108c0,-1.322,1.071,-2.395,2.394,-2.395c1.322,0,2.394,1.072,2.394,2.395" fill="#BFBFBF"/>
  497. <path d="M78.113,108c0,1.321,-1.072,2.393,-2.394,2.393c-1.322,0,-2.394,-1.071,-2.394,-2.393" fill="#E6E6E6"/>
  498. <circle cx="75.72" cy="108" fill="#383838" r="1.197"/>
  499. </g>
  500. <g id="pin10C">
  501. <path d="M73.326,100.799c0,-1.321,1.071,-2.393,2.394,-2.393c1.322,0,2.394,1.071,2.394,2.393" fill="#BFBFBF"/>
  502. <path d="M78.113,100.799c0,1.322,-1.072,2.395,-2.394,2.395c-1.322,0,-2.394,-1.072,-2.394,-2.395l0,0" fill="#E6E6E6"/>
  503. <circle cx="75.72" cy="100.8" fill="#383838" r="1.197"/>
  504. </g>
  505. <g id="pin10D">
  506. <path d="M73.326,93.6c0,-1.322,1.071,-2.395,2.394,-2.395c1.322,0,2.394,1.072,2.394,2.395" fill="#BFBFBF"/>
  507. <path d="M78.113,93.6c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  508. <circle cx="75.72" cy="93.6" fill="#383838" r="1.197"/>
  509. </g>
  510. <g id="pin10E">
  511. <path d="M73.326,86.4c0,-1.321,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  512. <path d="M78.113,86.4c0,1.321,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394" fill="#E6E6E6"/>
  513. <circle cx="75.72" cy="86.4" fill="#383838" r="1.196"/>
  514. </g>
  515. <g id="pin10F">
  516. <path d="M73.326,64.8c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  517. <path d="M78.113,64.8c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  518. <circle cx="75.72" cy="64.8" fill="#383838" r="1.197"/>
  519. </g>
  520. <g id="pin10G">
  521. <path d="M73.326,57.6c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  522. <path d="M78.113,57.6c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  523. <circle cx="75.72" cy="57.6" fill="#383838" r="1.197"/>
  524. </g>
  525. <g id="pin10H">
  526. <path d="M73.326,50.4c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  527. <path d="M78.113,50.4c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  528. <circle cx="75.72" cy="50.4" fill="#383838" r="1.197"/>
  529. </g>
  530. <g id="pin10I">
  531. <path d="M73.326,43.2c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  532. <path d="M78.113,43.2c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394" fill="#E6E6E6"/>
  533. <circle cx="75.72" cy="43.2" fill="#383838" r="1.197"/>
  534. </g>
  535. <g id="pin10J">
  536. <path d="M73.326,36c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  537. <path d="M78.113,36c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  538. <circle cx="75.72" cy="36" fill="#383838" r="1.197"/>
  539. </g>
  540. <g id="pin11A">
  541. <path d="M80.526,115.2c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394" fill="#BFBFBF"/>
  542. <path d="M85.313,115.2c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  543. <circle cx="82.919" cy="115.2" fill="#383838" r="1.197"/>
  544. </g>
  545. <g id="pin11B">
  546. <path d="M80.526,108c0,-1.322,1.072,-2.395,2.394,-2.395c1.322,0,2.394,1.072,2.394,2.395" fill="#BFBFBF"/>
  547. <path d="M85.313,108c0,1.321,-1.071,2.393,-2.394,2.393c-1.322,0,-2.394,-1.071,-2.394,-2.393" fill="#E6E6E6"/>
  548. <circle cx="82.919" cy="108" fill="#383838" r="1.197"/>
  549. </g>
  550. <g id="pin11C">
  551. <path d="M80.526,100.799c0,-1.321,1.072,-2.393,2.394,-2.393c1.322,0,2.394,1.071,2.394,2.393" fill="#BFBFBF"/>
  552. <path d="M85.313,100.799c0,1.322,-1.071,2.395,-2.394,2.395c-1.322,0,-2.394,-1.072,-2.394,-2.395l0,0" fill="#E6E6E6"/>
  553. <circle cx="82.919" cy="100.8" fill="#383838" r="1.197"/>
  554. </g>
  555. <g id="pin11D">
  556. <path d="M80.526,93.6c0,-1.322,1.072,-2.395,2.394,-2.395c1.322,0,2.394,1.072,2.394,2.395" fill="#BFBFBF"/>
  557. <path d="M85.313,93.6c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  558. <circle cx="82.919" cy="93.6" fill="#383838" r="1.197"/>
  559. </g>
  560. <g id="pin11E">
  561. <path d="M80.526,86.4c0,-1.321,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  562. <path d="M85.313,86.4c0,1.321,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394" fill="#E6E6E6"/>
  563. <circle cx="82.919" cy="86.4" fill="#383838" r="1.196"/>
  564. </g>
  565. <g id="pin11F">
  566. <path d="M80.526,64.8c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  567. <path d="M85.313,64.8c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  568. <circle cx="82.919" cy="64.8" fill="#383838" r="1.197"/>
  569. </g>
  570. <g id="pin11G">
  571. <path d="M80.526,57.6c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  572. <path d="M85.313,57.6c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  573. <circle cx="82.919" cy="57.6" fill="#383838" r="1.197"/>
  574. </g>
  575. <g id="pin11H">
  576. <path d="M80.526,50.4c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  577. <path d="M85.313,50.4c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  578. <circle cx="82.919" cy="50.4" fill="#383838" r="1.197"/>
  579. </g>
  580. <g id="pin11I">
  581. <path d="M80.526,43.2c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  582. <path d="M85.313,43.2c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394" fill="#E6E6E6"/>
  583. <circle cx="82.919" cy="43.2" fill="#383838" r="1.197"/>
  584. </g>
  585. <g id="pin11J">
  586. <path d="M80.526,36c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  587. <path d="M85.313,36c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  588. <circle cx="82.919" cy="36" fill="#383838" r="1.197"/>
  589. </g>
  590. <g id="pin12A">
  591. <path d="M87.726,115.2c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.071,2.394,2.394" fill="#BFBFBF"/>
  592. <path d="M92.513,115.2c0,1.322,-1.072,2.394,-2.394,2.394s-2.394,-1.071,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  593. <circle cx="90.12" cy="115.2" fill="#383838" r="1.197"/>
  594. </g>
  595. <g id="pin12B">
  596. <path d="M87.726,108c0,-1.322,1.072,-2.395,2.394,-2.395s2.394,1.072,2.394,2.395" fill="#BFBFBF"/>
  597. <path d="M92.513,108c0,1.321,-1.072,2.393,-2.394,2.393s-2.394,-1.071,-2.394,-2.393" fill="#E6E6E6"/>
  598. <circle cx="90.12" cy="108" fill="#383838" r="1.197"/>
  599. </g>
  600. <g id="pin12C">
  601. <path d="M87.726,100.799c0,-1.321,1.072,-2.393,2.394,-2.393s2.394,1.071,2.394,2.393" fill="#BFBFBF"/>
  602. <path d="M92.513,100.799c0,1.322,-1.072,2.395,-2.394,2.395s-2.394,-1.072,-2.394,-2.395l0,0" fill="#E6E6E6"/>
  603. <circle cx="90.12" cy="100.8" fill="#383838" r="1.197"/>
  604. </g>
  605. <g id="pin12D">
  606. <path d="M87.726,93.6c0,-1.322,1.072,-2.395,2.394,-2.395s2.394,1.072,2.394,2.395" fill="#BFBFBF"/>
  607. <path d="M92.513,93.6c0,1.322,-1.072,2.394,-2.394,2.394s-2.394,-1.071,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  608. <circle cx="90.12" cy="93.6" fill="#383838" r="1.197"/>
  609. </g>
  610. <g id="pin12E">
  611. <path d="M87.726,86.4c0,-1.321,1.072,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  612. <path d="M92.513,86.4c0,1.321,-1.072,2.394,-2.394,2.394s-2.394,-1.072,-2.394,-2.394" fill="#E6E6E6"/>
  613. <circle cx="90.12" cy="86.4" fill="#383838" r="1.196"/>
  614. </g>
  615. <g id="pin12F">
  616. <path d="M87.726,64.8c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  617. <path d="M92.513,64.8c0,1.322,-1.072,2.394,-2.394,2.394s-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  618. <circle cx="90.12" cy="64.8" fill="#383838" r="1.197"/>
  619. </g>
  620. <g id="pin12G">
  621. <path d="M87.726,57.6c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  622. <path d="M92.513,57.6c0,1.322,-1.072,2.394,-2.394,2.394s-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  623. <circle cx="90.12" cy="57.6" fill="#383838" r="1.197"/>
  624. </g>
  625. <g id="pin12H">
  626. <path d="M87.726,50.4c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  627. <path d="M92.513,50.4c0,1.322,-1.072,2.394,-2.394,2.394s-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  628. <circle cx="90.12" cy="50.4" fill="#383838" r="1.197"/>
  629. </g>
  630. <g id="pin12I">
  631. <path d="M87.726,43.2c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  632. <path d="M92.513,43.2c0,1.322,-1.072,2.394,-2.394,2.394s-2.394,-1.072,-2.394,-2.394" fill="#E6E6E6"/>
  633. <circle cx="90.12" cy="43.2" fill="#383838" r="1.197"/>
  634. </g>
  635. <g id="pin12J">
  636. <path d="M87.726,36c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  637. <path d="M92.513,36c0,1.322,-1.072,2.394,-2.394,2.394S87.726,37.322,87.726,36" fill="#E6E6E6"/>
  638. <circle cx="90.12" cy="36" fill="#383838" r="1.197"/>
  639. </g>
  640. <g id="pin13A">
  641. <path d="M94.926,115.2c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394" fill="#BFBFBF"/>
  642. <path d="M99.713,115.2c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  643. <circle cx="97.319" cy="115.2" fill="#383838" r="1.197"/>
  644. </g>
  645. <g id="pin13B">
  646. <path d="M94.926,108c0,-1.322,1.072,-2.395,2.394,-2.395c1.322,0,2.394,1.072,2.394,2.395" fill="#BFBFBF"/>
  647. <path d="M99.713,108c0,1.321,-1.071,2.393,-2.394,2.393c-1.322,0,-2.394,-1.071,-2.394,-2.393" fill="#E6E6E6"/>
  648. <circle cx="97.319" cy="108" fill="#383838" r="1.197"/>
  649. </g>
  650. <g id="pin13C">
  651. <path d="M94.926,100.799c0,-1.321,1.072,-2.393,2.394,-2.393c1.322,0,2.394,1.071,2.394,2.393" fill="#BFBFBF"/>
  652. <path d="M99.713,100.799c0,1.322,-1.071,2.395,-2.394,2.395c-1.322,0,-2.394,-1.072,-2.394,-2.395l0,0" fill="#E6E6E6"/>
  653. <circle cx="97.319" cy="100.8" fill="#383838" r="1.197"/>
  654. </g>
  655. <g id="pin13D">
  656. <path d="M94.926,93.6c0,-1.322,1.072,-2.395,2.394,-2.395c1.322,0,2.394,1.072,2.394,2.395" fill="#BFBFBF"/>
  657. <path d="M99.713,93.6c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  658. <circle cx="97.319" cy="93.6" fill="#383838" r="1.197"/>
  659. </g>
  660. <g id="pin13E">
  661. <path d="M94.926,86.4c0,-1.321,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  662. <path d="M99.713,86.4c0,1.321,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394" fill="#E6E6E6"/>
  663. <circle cx="97.319" cy="86.4" fill="#383838" r="1.196"/>
  664. </g>
  665. <g id="pin13F">
  666. <path d="M94.926,64.8c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  667. <path d="M99.713,64.8c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  668. <circle cx="97.319" cy="64.8" fill="#383838" r="1.197"/>
  669. </g>
  670. <g id="pin13G">
  671. <path d="M94.926,57.6c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  672. <path d="M99.713,57.6c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  673. <circle cx="97.319" cy="57.6" fill="#383838" r="1.197"/>
  674. </g>
  675. <g id="pin13H">
  676. <path d="M94.926,50.4c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  677. <path d="M99.713,50.4c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  678. <circle cx="97.319" cy="50.4" fill="#383838" r="1.197"/>
  679. </g>
  680. <g id="pin13I">
  681. <path d="M94.926,43.2c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  682. <path d="M99.713,43.2c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394" fill="#E6E6E6"/>
  683. <circle cx="97.319" cy="43.2" fill="#383838" r="1.197"/>
  684. </g>
  685. <g id="pin13J">
  686. <path d="M94.926,36c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  687. <path d="M99.713,36c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  688. <circle cx="97.319" cy="36" fill="#383838" r="1.197"/>
  689. </g>
  690. <g id="pin14A">
  691. <path d="M102.126,115.2c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394" fill="#BFBFBF"/>
  692. <path d="M106.913,115.2c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  693. <circle cx="104.52" cy="115.2" fill="#383838" r="1.197"/>
  694. </g>
  695. <g id="pin14B">
  696. <path d="M102.126,108c0,-1.322,1.071,-2.395,2.394,-2.395c1.322,0,2.394,1.072,2.394,2.395" fill="#BFBFBF"/>
  697. <path d="M106.913,108c0,1.321,-1.072,2.393,-2.394,2.393c-1.322,0,-2.394,-1.071,-2.394,-2.393" fill="#E6E6E6"/>
  698. <circle cx="104.52" cy="108" fill="#383838" r="1.197"/>
  699. </g>
  700. <g id="pin14C">
  701. <path d="M102.126,100.799c0,-1.321,1.071,-2.393,2.394,-2.393c1.322,0,2.394,1.071,2.394,2.393" fill="#BFBFBF"/>
  702. <path d="M106.913,100.799c0,1.322,-1.072,2.395,-2.394,2.395c-1.322,0,-2.394,-1.072,-2.394,-2.395l0,0" fill="#E6E6E6"/>
  703. <circle cx="104.52" cy="100.8" fill="#383838" r="1.197"/>
  704. </g>
  705. <g id="pin14D">
  706. <path d="M102.126,93.6c0,-1.322,1.071,-2.395,2.394,-2.395c1.322,0,2.394,1.072,2.394,2.395" fill="#BFBFBF"/>
  707. <path d="M106.913,93.6c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  708. <circle cx="104.52" cy="93.6" fill="#383838" r="1.197"/>
  709. </g>
  710. <g id="pin14E">
  711. <path d="M102.126,86.4c0,-1.321,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  712. <path d="M106.913,86.4c0,1.321,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394" fill="#E6E6E6"/>
  713. <circle cx="104.52" cy="86.4" fill="#383838" r="1.196"/>
  714. </g>
  715. <g id="pin14F">
  716. <path d="M102.126,64.8c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  717. <path d="M106.913,64.8c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  718. <circle cx="104.52" cy="64.8" fill="#383838" r="1.197"/>
  719. </g>
  720. <g id="pin14G">
  721. <path d="M102.126,57.6c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  722. <path d="M106.913,57.6c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  723. <circle cx="104.52" cy="57.6" fill="#383838" r="1.197"/>
  724. </g>
  725. <g id="pin14H">
  726. <path d="M102.126,50.4c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  727. <path d="M106.913,50.4c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  728. <circle cx="104.52" cy="50.4" fill="#383838" r="1.197"/>
  729. </g>
  730. <g id="pin14I">
  731. <path d="M102.126,43.2c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  732. <path d="M106.913,43.2c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394" fill="#E6E6E6"/>
  733. <circle cx="104.52" cy="43.2" fill="#383838" r="1.197"/>
  734. </g>
  735. <g id="pin14J">
  736. <path d="M102.126,36c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  737. <path d="M106.913,36c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  738. <circle cx="104.52" cy="36" fill="#383838" r="1.197"/>
  739. </g>
  740. <g id="pin15A">
  741. <path d="M109.326,115.2c0.002,-1.322,1.075,-2.393,2.397,-2.391c1.319,0.002,2.388,1.072,2.39,2.391" fill="#BFBFBF"/>
  742. <path d="M114.113,115.2c0.002,1.322,-1.068,2.395,-2.39,2.396c-1.322,0.002,-2.396,-1.067,-2.397,-2.389c0,-0.003,0,-0.006,0,-0.008" fill="#E6E6E6"/>
  743. <circle cx="111.719" cy="115.2" fill="#383838" r="1.197"/>
  744. </g>
  745. <g id="pin15B">
  746. <path d="M109.326,108c0.002,-1.322,1.075,-2.393,2.397,-2.391c1.319,0.002,2.388,1.07,2.39,2.391" fill="#BFBFBF"/>
  747. <path d="M114.113,108c0.002,1.321,-1.068,2.395,-2.39,2.396c-1.322,0.002,-2.396,-1.068,-2.397,-2.391c0,-0.002,0,-0.004,0,-0.006" fill="#E6E6E6"/>
  748. <circle cx="111.719" cy="108" fill="#383838" r="1.197"/>
  749. </g>
  750. <g id="pin15C">
  751. <path d="M109.326,100.799c0.002,-1.321,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  752. <path d="M114.113,100.799c0.002,1.322,-1.068,2.396,-2.39,2.398c-1.322,0.002,-2.396,-1.068,-2.397,-2.391c0,-0.002,0,-0.005,0,-0.008" fill="#E6E6E6"/>
  753. <circle cx="111.719" cy="100.8" fill="#383838" r="1.197"/>
  754. </g>
  755. <g id="pin15D">
  756. <path d="M109.326,93.6c0.002,-1.322,1.075,-2.393,2.397,-2.391c1.319,0.002,2.388,1.071,2.39,2.391" fill="#BFBFBF"/>
  757. <path d="M114.113,93.6c0.002,1.322,-1.068,2.395,-2.39,2.396c-1.322,0.002,-2.396,-1.068,-2.397,-2.39c0,-0.003,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  758. <circle cx="111.719" cy="93.6" fill="#383838" r="1.197"/>
  759. </g>
  760. <g id="pin15E">
  761. <path d="M109.326,86.4c0.002,-1.321,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.07,2.39,2.39" fill="#BFBFBF"/>
  762. <path d="M114.113,86.4c0.002,1.321,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.396,-1.068,-2.397,-2.391c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  763. <circle cx="111.719" cy="86.4" fill="#383838" r="1.196"/>
  764. </g>
  765. <g id="pin15F">
  766. <path d="M109.326,64.8c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  767. <path d="M114.113,64.8c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.396,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  768. <circle cx="111.719" cy="64.8" fill="#383838" r="1.197"/>
  769. </g>
  770. <g id="pin15G">
  771. <path d="M109.326,57.6c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  772. <path d="M114.113,57.6c0.002,1.322,-1.068,2.395,-2.39,2.397c-1.322,0.002,-2.396,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  773. <circle cx="111.719" cy="57.6" fill="#383838" r="1.197"/>
  774. </g>
  775. <g id="pin15H">
  776. <path d="M109.326,50.4c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  777. <path d="M114.113,50.4c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.396,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  778. <circle cx="111.719" cy="50.4" fill="#383838" r="1.197"/>
  779. </g>
  780. <g id="pin15I">
  781. <path d="M109.326,43.2c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  782. <path d="M114.113,43.2c0.002,1.322,-1.068,2.395,-2.39,2.397c-1.322,0.002,-2.396,-1.068,-2.397,-2.39c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  783. <circle cx="111.719" cy="43.2" fill="#383838" r="1.197"/>
  784. </g>
  785. <g id="pin15J">
  786. <path d="M109.326,36c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  787. <path d="M114.113,36c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.396,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  788. <circle cx="111.719" cy="36" fill="#383838" r="1.197"/>
  789. </g>
  790. <g id="pin16A">
  791. <path d="M116.526,115.2c0.002,-1.322,1.075,-2.393,2.397,-2.391c1.319,0.002,2.388,1.072,2.39,2.391" fill="#BFBFBF"/>
  792. <path d="M121.313,115.2c0.002,1.322,-1.068,2.395,-2.39,2.396c-1.322,0.002,-2.395,-1.067,-2.397,-2.389c0,-0.003,0,-0.006,0,-0.008" fill="#E6E6E6"/>
  793. <circle cx="118.919" cy="115.2" fill="#383838" r="1.197"/>
  794. </g>
  795. <g id="pin16B">
  796. <path d="M116.526,108c0.002,-1.322,1.075,-2.393,2.397,-2.391c1.319,0.002,2.388,1.07,2.39,2.391" fill="#BFBFBF"/>
  797. <path d="M121.313,108c0.002,1.321,-1.068,2.395,-2.39,2.396c-1.322,0.002,-2.395,-1.068,-2.397,-2.391c0,-0.002,0,-0.004,0,-0.006" fill="#E6E6E6"/>
  798. <circle cx="118.919" cy="108" fill="#383838" r="1.197"/>
  799. </g>
  800. <g id="pin16C">
  801. <path d="M116.526,100.799c0.002,-1.321,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  802. <path d="M121.313,100.799c0.002,1.322,-1.068,2.396,-2.39,2.398c-1.322,0.002,-2.395,-1.068,-2.397,-2.391c0,-0.002,0,-0.005,0,-0.008" fill="#E6E6E6"/>
  803. <circle cx="118.919" cy="100.8" fill="#383838" r="1.197"/>
  804. </g>
  805. <g id="pin16D">
  806. <path d="M116.526,93.6c0.002,-1.322,1.075,-2.393,2.397,-2.391c1.319,0.002,2.388,1.071,2.39,2.391" fill="#BFBFBF"/>
  807. <path d="M121.313,93.6c0.002,1.322,-1.068,2.395,-2.39,2.396c-1.322,0.002,-2.395,-1.068,-2.397,-2.39c0,-0.003,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  808. <circle cx="118.919" cy="93.6" fill="#383838" r="1.197"/>
  809. </g>
  810. <g id="pin16E">
  811. <path d="M116.526,86.4c0.002,-1.321,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.07,2.39,2.39" fill="#BFBFBF"/>
  812. <path d="M121.313,86.4c0.002,1.321,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.395,-1.068,-2.397,-2.391c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  813. <circle cx="118.919" cy="86.4" fill="#383838" r="1.196"/>
  814. </g>
  815. <g id="pin16F">
  816. <path d="M116.526,64.8c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  817. <path d="M121.313,64.8c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  818. <circle cx="118.919" cy="64.8" fill="#383838" r="1.197"/>
  819. </g>
  820. <g id="pin16G">
  821. <path d="M116.526,57.6c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  822. <path d="M121.313,57.6c0.002,1.322,-1.068,2.395,-2.39,2.397c-1.322,0.002,-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  823. <circle cx="118.919" cy="57.6" fill="#383838" r="1.197"/>
  824. </g>
  825. <g id="pin16H">
  826. <path d="M116.526,50.4c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  827. <path d="M121.313,50.4c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  828. <circle cx="118.919" cy="50.4" fill="#383838" r="1.197"/>
  829. </g>
  830. <g id="pin16I">
  831. <path d="M116.526,43.2c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  832. <path d="M121.313,43.2c0.002,1.322,-1.068,2.395,-2.39,2.397c-1.322,0.002,-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  833. <circle cx="118.919" cy="43.2" fill="#383838" r="1.197"/>
  834. </g>
  835. <g id="pin16J">
  836. <path d="M116.526,36c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  837. <path d="M121.313,36c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  838. <circle cx="118.919" cy="36" fill="#383838" r="1.197"/>
  839. </g>
  840. <g id="pin17A">
  841. <path d="M123.726,115.2c0.002,-1.322,1.075,-2.393,2.397,-2.391c1.319,0.002,2.388,1.072,2.39,2.391" fill="#BFBFBF"/>
  842. <path d="M128.513,115.2c0.002,1.322,-1.068,2.395,-2.39,2.396c-1.322,0.002,-2.396,-1.067,-2.397,-2.389c0,-0.003,0,-0.006,0,-0.008" fill="#E6E6E6"/>
  843. <circle cx="126.119" cy="115.2" fill="#383838" r="1.197"/>
  844. </g>
  845. <g id="pin17B">
  846. <path d="M123.726,108c0.002,-1.322,1.075,-2.393,2.397,-2.391c1.319,0.002,2.388,1.07,2.39,2.391" fill="#BFBFBF"/>
  847. <path d="M128.513,108c0.002,1.321,-1.068,2.395,-2.39,2.396c-1.322,0.002,-2.396,-1.068,-2.397,-2.391c0,-0.002,0,-0.004,0,-0.006" fill="#E6E6E6"/>
  848. <circle cx="126.119" cy="108" fill="#383838" r="1.197"/>
  849. </g>
  850. <g id="pin17C">
  851. <path d="M123.726,100.799c0.002,-1.321,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  852. <path d="M128.513,100.799c0.002,1.322,-1.068,2.396,-2.39,2.398c-1.322,0.002,-2.396,-1.068,-2.397,-2.391c0,-0.002,0,-0.005,0,-0.008" fill="#E6E6E6"/>
  853. <circle cx="126.119" cy="100.8" fill="#383838" r="1.197"/>
  854. </g>
  855. <g id="pin17D">
  856. <path d="M123.726,93.6c0.002,-1.322,1.075,-2.393,2.397,-2.391c1.319,0.002,2.388,1.071,2.39,2.391" fill="#BFBFBF"/>
  857. <path d="M128.513,93.6c0.002,1.322,-1.068,2.395,-2.39,2.396c-1.322,0.002,-2.396,-1.068,-2.397,-2.39c0,-0.003,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  858. <circle cx="126.119" cy="93.6" fill="#383838" r="1.197"/>
  859. </g>
  860. <g id="pin17E">
  861. <path d="M123.726,86.4c0.002,-1.321,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.07,2.39,2.39" fill="#BFBFBF"/>
  862. <path d="M128.513,86.4c0.002,1.321,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.396,-1.068,-2.397,-2.391c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  863. <circle cx="126.119" cy="86.4" fill="#383838" r="1.196"/>
  864. </g>
  865. <g id="pin17F">
  866. <path d="M123.726,64.8c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  867. <path d="M128.513,64.8c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.396,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  868. <circle cx="126.119" cy="64.8" fill="#383838" r="1.197"/>
  869. </g>
  870. <g id="pin17G">
  871. <path d="M123.726,57.6c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  872. <path d="M128.513,57.6c0.002,1.322,-1.068,2.395,-2.39,2.397c-1.322,0.002,-2.396,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  873. <circle cx="126.119" cy="57.6" fill="#383838" r="1.197"/>
  874. </g>
  875. <g id="pin17H">
  876. <path d="M123.726,50.4c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  877. <path d="M128.513,50.4c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.396,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  878. <circle cx="126.119" cy="50.4" fill="#383838" r="1.197"/>
  879. </g>
  880. <g id="pin17I">
  881. <path d="M123.726,43.2c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  882. <path d="M128.513,43.2c0.002,1.322,-1.068,2.395,-2.39,2.397c-1.322,0.002,-2.396,-1.068,-2.397,-2.39c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  883. <circle cx="126.119" cy="43.2" fill="#383838" r="1.197"/>
  884. </g>
  885. <g id="pin17J">
  886. <path d="M123.726,36c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  887. <path d="M128.513,36c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.396,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  888. <circle cx="126.119" cy="36" fill="#383838" r="1.197"/>
  889. </g>
  890. <g id="pin18A">
  891. <path d="M130.926,115.2c0.002,-1.322,1.075,-2.393,2.397,-2.391c1.319,0.002,2.388,1.072,2.39,2.391" fill="#BFBFBF"/>
  892. <path d="M135.713,115.2c0.002,1.322,-1.068,2.395,-2.39,2.396c-1.322,0.002,-2.395,-1.067,-2.397,-2.389c0,-0.003,0,-0.006,0,-0.008" fill="#E6E6E6"/>
  893. <circle cx="133.319" cy="115.2" fill="#383838" r="1.197"/>
  894. </g>
  895. <g id="pin18B">
  896. <path d="M130.926,108c0.002,-1.322,1.075,-2.393,2.397,-2.391c1.319,0.002,2.388,1.07,2.39,2.391" fill="#BFBFBF"/>
  897. <path d="M135.713,108c0.002,1.321,-1.068,2.395,-2.39,2.396c-1.322,0.002,-2.395,-1.068,-2.397,-2.391c0,-0.002,0,-0.004,0,-0.006" fill="#E6E6E6"/>
  898. <circle cx="133.319" cy="108" fill="#383838" r="1.197"/>
  899. </g>
  900. <g id="pin18C">
  901. <path d="M130.926,100.799c0.002,-1.321,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  902. <path d="M135.713,100.799c0.002,1.322,-1.068,2.396,-2.39,2.398c-1.322,0.002,-2.395,-1.068,-2.397,-2.391c0,-0.002,0,-0.005,0,-0.008" fill="#E6E6E6"/>
  903. <circle cx="133.319" cy="100.8" fill="#383838" r="1.197"/>
  904. </g>
  905. <g id="pin18D">
  906. <path d="M130.926,93.6c0.002,-1.322,1.075,-2.393,2.397,-2.391c1.319,0.002,2.388,1.071,2.39,2.391" fill="#BFBFBF"/>
  907. <path d="M135.713,93.6c0.002,1.322,-1.068,2.395,-2.39,2.396c-1.322,0.002,-2.395,-1.068,-2.397,-2.39c0,-0.003,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  908. <circle cx="133.319" cy="93.6" fill="#383838" r="1.197"/>
  909. </g>
  910. <g id="pin18E">
  911. <path d="M130.926,86.4c0.002,-1.321,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.07,2.39,2.39" fill="#BFBFBF"/>
  912. <path d="M135.713,86.4c0.002,1.321,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.395,-1.068,-2.397,-2.391c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  913. <circle cx="133.319" cy="86.4" fill="#383838" r="1.196"/>
  914. </g>
  915. <g id="pin18F">
  916. <path d="M130.926,64.8c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  917. <path d="M135.713,64.8c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  918. <circle cx="133.319" cy="64.8" fill="#383838" r="1.197"/>
  919. </g>
  920. <g id="pin18G">
  921. <path d="M130.926,57.6c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  922. <path d="M135.713,57.6c0.002,1.322,-1.068,2.395,-2.39,2.397c-1.322,0.002,-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  923. <circle cx="133.319" cy="57.6" fill="#383838" r="1.197"/>
  924. </g>
  925. <g id="pin18H">
  926. <path d="M130.926,50.4c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  927. <path d="M135.713,50.4c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  928. <circle cx="133.319" cy="50.4" fill="#383838" r="1.197"/>
  929. </g>
  930. <g id="pin18I">
  931. <path d="M130.926,43.2c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  932. <path d="M135.713,43.2c0.002,1.322,-1.068,2.395,-2.39,2.397c-1.322,0.002,-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  933. <circle cx="133.319" cy="43.2" fill="#383838" r="1.197"/>
  934. </g>
  935. <g id="pin18J">
  936. <path d="M130.926,36c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  937. <path d="M135.713,36c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  938. <circle cx="133.319" cy="36" fill="#383838" r="1.197"/>
  939. </g>
  940. <g id="pin19A">
  941. <path d="M138.125,115.2c0.002,-1.322,1.076,-2.393,2.397,-2.391c1.319,0.002,2.388,1.072,2.39,2.391" fill="#BFBFBF"/>
  942. <path d="M142.913,115.2c0.002,1.322,-1.068,2.395,-2.39,2.396s-2.395,-1.067,-2.397,-2.389c0,-0.003,0,-0.006,0,-0.008" fill="#E6E6E6"/>
  943. <circle cx="140.52" cy="115.2" fill="#383838" r="1.197"/>
  944. </g>
  945. <g id="pin19B">
  946. <path d="M138.125,108c0.002,-1.322,1.076,-2.393,2.397,-2.391c1.319,0.002,2.388,1.07,2.39,2.391" fill="#BFBFBF"/>
  947. <path d="M142.913,108c0.002,1.321,-1.068,2.395,-2.39,2.396s-2.395,-1.068,-2.397,-2.391c0,-0.002,0,-0.004,0,-0.006" fill="#E6E6E6"/>
  948. <circle cx="140.52" cy="108" fill="#383838" r="1.197"/>
  949. </g>
  950. <g id="pin19C">
  951. <path d="M138.125,100.799c0.002,-1.321,1.076,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  952. <path d="M142.913,100.799c0.002,1.322,-1.068,2.396,-2.39,2.398s-2.395,-1.068,-2.397,-2.391c0,-0.002,0,-0.005,0,-0.008" fill="#E6E6E6"/>
  953. <circle cx="140.52" cy="100.8" fill="#383838" r="1.197"/>
  954. </g>
  955. <g id="pin19D">
  956. <path d="M138.125,93.6c0.002,-1.322,1.076,-2.393,2.397,-2.391c1.319,0.002,2.388,1.071,2.39,2.391" fill="#BFBFBF"/>
  957. <path d="M142.913,93.6c0.002,1.322,-1.068,2.395,-2.39,2.396s-2.395,-1.068,-2.397,-2.39c0,-0.003,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  958. <circle cx="140.52" cy="93.6" fill="#383838" r="1.197"/>
  959. </g>
  960. <g id="pin19E">
  961. <path d="M138.125,86.4c0.002,-1.321,1.076,-2.392,2.397,-2.39c1.319,0.002,2.388,1.07,2.39,2.39" fill="#BFBFBF"/>
  962. <path d="M142.913,86.4c0.002,1.321,-1.068,2.396,-2.39,2.397s-2.395,-1.068,-2.397,-2.391c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  963. <circle cx="140.52" cy="86.4" fill="#383838" r="1.196"/>
  964. </g>
  965. <g id="pin19F">
  966. <path d="M138.125,64.8c0.002,-1.322,1.076,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  967. <path d="M142.913,64.8c0.002,1.322,-1.068,2.396,-2.39,2.397s-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  968. <circle cx="140.52" cy="64.8" fill="#383838" r="1.197"/>
  969. </g>
  970. <g id="pin19G">
  971. <path d="M138.125,57.6c0.002,-1.322,1.076,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  972. <path d="M142.913,57.6c0.002,1.322,-1.068,2.395,-2.39,2.397s-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  973. <circle cx="140.52" cy="57.6" fill="#383838" r="1.197"/>
  974. </g>
  975. <g id="pin19H">
  976. <path d="M138.125,50.4c0.002,-1.322,1.076,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  977. <path d="M142.913,50.4c0.002,1.322,-1.068,2.396,-2.39,2.397s-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  978. <circle cx="140.52" cy="50.4" fill="#383838" r="1.197"/>
  979. </g>
  980. <g id="pin19I">
  981. <path d="M138.125,43.2c0.002,-1.322,1.076,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  982. <path d="M142.913,43.2c0.002,1.322,-1.068,2.395,-2.39,2.397s-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  983. <circle cx="140.52" cy="43.2" fill="#383838" r="1.197"/>
  984. </g>
  985. <g id="pin19J">
  986. <path d="M138.125,36c0.002,-1.322,1.076,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  987. <path d="M142.913,36c0.002,1.322,-1.068,2.396,-2.39,2.397s-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  988. <circle cx="140.52" cy="36" fill="#383838" r="1.197"/>
  989. </g>
  990. <g id="pin20A">
  991. <path d="M145.326,115.2c0.002,-1.322,1.075,-2.393,2.397,-2.391c1.319,0.002,2.388,1.072,2.39,2.391" fill="#BFBFBF"/>
  992. <path d="M150.113,115.2c0.002,1.322,-1.068,2.395,-2.39,2.396c-1.322,0.002,-2.395,-1.067,-2.397,-2.389c0,-0.003,0,-0.006,0,-0.008" fill="#E6E6E6"/>
  993. <circle cx="147.719" cy="115.2" fill="#383838" r="1.197"/>
  994. </g>
  995. <g id="pin20B">
  996. <path d="M145.326,108c0.002,-1.322,1.075,-2.393,2.397,-2.391c1.319,0.002,2.388,1.07,2.39,2.391" fill="#BFBFBF"/>
  997. <path d="M150.113,108c0.002,1.321,-1.068,2.395,-2.39,2.396c-1.322,0.002,-2.395,-1.068,-2.397,-2.391c0,-0.002,0,-0.004,0,-0.006" fill="#E6E6E6"/>
  998. <circle cx="147.719" cy="108" fill="#383838" r="1.197"/>
  999. </g>
  1000. <g id="pin20C">
  1001. <path d="M145.326,100.799c0.002,-1.321,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1002. <path d="M150.113,100.799c0.002,1.322,-1.068,2.396,-2.39,2.398c-1.322,0.002,-2.395,-1.068,-2.397,-2.391c0,-0.002,0,-0.005,0,-0.008" fill="#E6E6E6"/>
  1003. <circle cx="147.719" cy="100.8" fill="#383838" r="1.197"/>
  1004. </g>
  1005. <g id="pin20D">
  1006. <path d="M145.326,93.6c0.002,-1.322,1.075,-2.393,2.397,-2.391c1.319,0.002,2.388,1.071,2.39,2.391" fill="#BFBFBF"/>
  1007. <path d="M150.113,93.6c0.002,1.322,-1.068,2.395,-2.39,2.396c-1.322,0.002,-2.395,-1.068,-2.397,-2.39c0,-0.003,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  1008. <circle cx="147.719" cy="93.6" fill="#383838" r="1.197"/>
  1009. </g>
  1010. <g id="pin20E">
  1011. <path d="M145.326,86.4c0.002,-1.321,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.07,2.39,2.39" fill="#BFBFBF"/>
  1012. <path d="M150.113,86.4c0.002,1.321,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.395,-1.068,-2.397,-2.391c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  1013. <circle cx="147.719" cy="86.4" fill="#383838" r="1.196"/>
  1014. </g>
  1015. <g id="pin20F">
  1016. <path d="M145.326,64.8c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1017. <path d="M150.113,64.8c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  1018. <circle cx="147.719" cy="64.8" fill="#383838" r="1.197"/>
  1019. </g>
  1020. <g id="pin20G">
  1021. <path d="M145.326,57.6c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1022. <path d="M150.113,57.6c0.002,1.322,-1.068,2.395,-2.39,2.397c-1.322,0.002,-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  1023. <circle cx="147.719" cy="57.6" fill="#383838" r="1.197"/>
  1024. </g>
  1025. <g id="pin20H">
  1026. <path d="M145.326,50.4c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1027. <path d="M150.113,50.4c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  1028. <circle cx="147.719" cy="50.4" fill="#383838" r="1.197"/>
  1029. </g>
  1030. <g id="pin20I">
  1031. <path d="M145.326,43.2c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1032. <path d="M150.113,43.2c0.002,1.322,-1.068,2.395,-2.39,2.397c-1.322,0.002,-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  1033. <circle cx="147.719" cy="43.2" fill="#383838" r="1.197"/>
  1034. </g>
  1035. <g id="pin20J">
  1036. <path d="M145.326,36c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1037. <path d="M150.113,36c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  1038. <circle cx="147.719" cy="36" fill="#383838" r="1.197"/>
  1039. </g>
  1040. <g id="pin21A">
  1041. <path d="M152.525,115.2c0.002,-1.322,1.075,-2.393,2.397,-2.391c1.319,0.002,2.388,1.072,2.39,2.391" fill="#BFBFBF"/>
  1042. <path d="M157.313,115.2c0.002,1.322,-1.068,2.395,-2.39,2.396c-1.322,0.002,-2.396,-1.067,-2.397,-2.389c0,-0.003,0,-0.006,0,-0.008" fill="#E6E6E6"/>
  1043. <circle cx="154.919" cy="115.2" fill="#383838" r="1.197"/>
  1044. </g>
  1045. <g id="pin21B">
  1046. <path d="M152.525,108c0.002,-1.322,1.075,-2.393,2.397,-2.391c1.319,0.002,2.388,1.07,2.39,2.391" fill="#BFBFBF"/>
  1047. <path d="M157.313,108c0.002,1.321,-1.068,2.395,-2.39,2.396c-1.322,0.002,-2.396,-1.068,-2.397,-2.391c0,-0.002,0,-0.004,0,-0.006" fill="#E6E6E6"/>
  1048. <circle cx="154.919" cy="108" fill="#383838" r="1.197"/>
  1049. </g>
  1050. <g id="pin21C">
  1051. <path d="M152.525,100.799c0.002,-1.321,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1052. <path d="M157.313,100.799c0.002,1.322,-1.068,2.396,-2.39,2.398c-1.322,0.002,-2.396,-1.068,-2.397,-2.391c0,-0.002,0,-0.005,0,-0.008" fill="#E6E6E6"/>
  1053. <circle cx="154.919" cy="100.8" fill="#383838" r="1.197"/>
  1054. </g>
  1055. <g id="pin21D">
  1056. <path d="M152.525,93.6c0.002,-1.322,1.075,-2.393,2.397,-2.391c1.319,0.002,2.388,1.071,2.39,2.391" fill="#BFBFBF"/>
  1057. <path d="M157.313,93.6c0.002,1.322,-1.068,2.395,-2.39,2.396c-1.322,0.002,-2.396,-1.068,-2.397,-2.39c0,-0.003,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  1058. <circle cx="154.919" cy="93.6" fill="#383838" r="1.197"/>
  1059. </g>
  1060. <g id="pin21E">
  1061. <path d="M152.525,86.4c0.002,-1.321,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.07,2.39,2.39" fill="#BFBFBF"/>
  1062. <path d="M157.313,86.4c0.002,1.321,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.396,-1.068,-2.397,-2.391c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  1063. <circle cx="154.919" cy="86.4" fill="#383838" r="1.196"/>
  1064. </g>
  1065. <g id="pin21F">
  1066. <path d="M152.525,64.8c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1067. <path d="M157.313,64.8c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.396,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  1068. <circle cx="154.919" cy="64.8" fill="#383838" r="1.197"/>
  1069. </g>
  1070. <g id="pin21G">
  1071. <path d="M152.525,57.6c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1072. <path d="M157.313,57.6c0.002,1.322,-1.068,2.395,-2.39,2.397c-1.322,0.002,-2.396,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  1073. <circle cx="154.919" cy="57.6" fill="#383838" r="1.197"/>
  1074. </g>
  1075. <g id="pin21H">
  1076. <path d="M152.525,50.4c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1077. <path d="M157.313,50.4c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.396,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  1078. <circle cx="154.919" cy="50.4" fill="#383838" r="1.197"/>
  1079. </g>
  1080. <g id="pin21I">
  1081. <path d="M152.525,43.2c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1082. <path d="M157.313,43.2c0.002,1.322,-1.068,2.395,-2.39,2.397c-1.322,0.002,-2.396,-1.068,-2.397,-2.39c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  1083. <circle cx="154.919" cy="43.2" fill="#383838" r="1.197"/>
  1084. </g>
  1085. <g id="pin21J">
  1086. <path d="M152.525,36c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1087. <path d="M157.313,36c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.396,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  1088. <circle cx="154.919" cy="36" fill="#383838" r="1.197"/>
  1089. </g>
  1090. <g id="pin22A">
  1091. <path d="M159.726,115.2c0.002,-1.322,1.075,-2.393,2.397,-2.391c1.319,0.002,2.388,1.072,2.39,2.391" fill="#BFBFBF"/>
  1092. <path d="M164.513,115.2c0.002,1.322,-1.068,2.395,-2.39,2.396c-1.322,0.002,-2.395,-1.067,-2.397,-2.389c0,-0.003,0,-0.006,0,-0.008" fill="#E6E6E6"/>
  1093. <circle cx="162.119" cy="115.2" fill="#383838" r="1.197"/>
  1094. </g>
  1095. <g id="pin22B">
  1096. <path d="M159.726,108c0.002,-1.322,1.075,-2.393,2.397,-2.391c1.319,0.002,2.388,1.07,2.39,2.391" fill="#BFBFBF"/>
  1097. <path d="M164.513,108c0.002,1.321,-1.068,2.395,-2.39,2.396c-1.322,0.002,-2.395,-1.068,-2.397,-2.391c0,-0.002,0,-0.004,0,-0.006" fill="#E6E6E6"/>
  1098. <circle cx="162.119" cy="108" fill="#383838" r="1.197"/>
  1099. </g>
  1100. <g id="pin22C">
  1101. <path d="M159.726,100.799c0.002,-1.321,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1102. <path d="M164.513,100.799c0.002,1.322,-1.068,2.396,-2.39,2.398c-1.322,0.002,-2.395,-1.068,-2.397,-2.391c0,-0.002,0,-0.005,0,-0.008" fill="#E6E6E6"/>
  1103. <circle cx="162.119" cy="100.8" fill="#383838" r="1.197"/>
  1104. </g>
  1105. <g id="pin22D">
  1106. <path d="M159.726,93.6c0.002,-1.322,1.075,-2.393,2.397,-2.391c1.319,0.002,2.388,1.071,2.39,2.391" fill="#BFBFBF"/>
  1107. <path d="M164.513,93.6c0.002,1.322,-1.068,2.395,-2.39,2.396c-1.322,0.002,-2.395,-1.068,-2.397,-2.39c0,-0.003,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  1108. <circle cx="162.119" cy="93.6" fill="#383838" r="1.197"/>
  1109. </g>
  1110. <g id="pin22E">
  1111. <path d="M159.726,86.4c0.002,-1.321,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.07,2.39,2.39" fill="#BFBFBF"/>
  1112. <path d="M164.513,86.4c0.002,1.321,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.395,-1.068,-2.397,-2.391c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  1113. <circle cx="162.119" cy="86.4" fill="#383838" r="1.196"/>
  1114. </g>
  1115. <g id="pin22F">
  1116. <path d="M159.726,64.8c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1117. <path d="M164.513,64.8c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  1118. <circle cx="162.119" cy="64.8" fill="#383838" r="1.197"/>
  1119. </g>
  1120. <g id="pin22G">
  1121. <path d="M159.726,57.6c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1122. <path d="M164.513,57.6c0.002,1.322,-1.068,2.395,-2.39,2.397c-1.322,0.002,-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  1123. <circle cx="162.119" cy="57.6" fill="#383838" r="1.197"/>
  1124. </g>
  1125. <g id="pin22H">
  1126. <path d="M159.726,50.4c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1127. <path d="M164.513,50.4c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  1128. <circle cx="162.119" cy="50.4" fill="#383838" r="1.197"/>
  1129. </g>
  1130. <g id="pin22I">
  1131. <path d="M159.726,43.2c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1132. <path d="M164.513,43.2c0.002,1.322,-1.068,2.395,-2.39,2.397c-1.322,0.002,-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  1133. <circle cx="162.119" cy="43.2" fill="#383838" r="1.197"/>
  1134. </g>
  1135. <g id="pin22J">
  1136. <path d="M159.726,36c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1137. <path d="M164.513,36c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  1138. <circle cx="162.119" cy="36" fill="#383838" r="1.197"/>
  1139. </g>
  1140. <g id="pin23A">
  1141. <path d="M166.926,115.2c0.002,-1.322,1.075,-2.393,2.397,-2.391c1.319,0.002,2.388,1.072,2.39,2.391" fill="#BFBFBF"/>
  1142. <path d="M171.713,115.2c0.002,1.322,-1.068,2.395,-2.39,2.396s-2.395,-1.067,-2.397,-2.389c0,-0.003,0,-0.006,0,-0.008" fill="#E6E6E6"/>
  1143. <circle cx="169.319" cy="115.2" fill="#383838" r="1.197"/>
  1144. </g>
  1145. <g id="pin23B">
  1146. <path d="M166.926,108c0.002,-1.322,1.075,-2.393,2.397,-2.391c1.319,0.002,2.388,1.07,2.39,2.391" fill="#BFBFBF"/>
  1147. <path d="M171.713,108c0.002,1.321,-1.068,2.395,-2.39,2.396s-2.395,-1.068,-2.397,-2.391c0,-0.002,0,-0.004,0,-0.006" fill="#E6E6E6"/>
  1148. <circle cx="169.319" cy="108" fill="#383838" r="1.197"/>
  1149. </g>
  1150. <g id="pin23C">
  1151. <path d="M166.926,100.799c0.002,-1.321,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1152. <path d="M171.713,100.799c0.002,1.322,-1.068,2.396,-2.39,2.398s-2.395,-1.068,-2.397,-2.391c0,-0.002,0,-0.005,0,-0.008" fill="#E6E6E6"/>
  1153. <circle cx="169.319" cy="100.8" fill="#383838" r="1.197"/>
  1154. </g>
  1155. <g id="pin23D">
  1156. <path d="M166.926,93.6c0.002,-1.322,1.075,-2.393,2.397,-2.391c1.319,0.002,2.388,1.071,2.39,2.391" fill="#BFBFBF"/>
  1157. <path d="M171.713,93.6c0.002,1.322,-1.068,2.395,-2.39,2.396s-2.395,-1.068,-2.397,-2.39c0,-0.003,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  1158. <circle cx="169.319" cy="93.6" fill="#383838" r="1.197"/>
  1159. </g>
  1160. <g id="pin23E">
  1161. <path d="M166.926,86.4c0.002,-1.321,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.07,2.39,2.39" fill="#BFBFBF"/>
  1162. <path d="M171.713,86.4c0.002,1.321,-1.068,2.396,-2.39,2.397s-2.395,-1.068,-2.397,-2.391c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  1163. <circle cx="169.319" cy="86.4" fill="#383838" r="1.196"/>
  1164. </g>
  1165. <g id="pin23F">
  1166. <path d="M166.926,64.8c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1167. <path d="M171.713,64.8c0.002,1.322,-1.068,2.396,-2.39,2.397s-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  1168. <circle cx="169.319" cy="64.8" fill="#383838" r="1.197"/>
  1169. </g>
  1170. <g id="pin23G">
  1171. <path d="M166.926,57.6c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1172. <path d="M171.713,57.6c0.002,1.322,-1.068,2.395,-2.39,2.397s-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  1173. <circle cx="169.319" cy="57.6" fill="#383838" r="1.197"/>
  1174. </g>
  1175. <g id="pin23H">
  1176. <path d="M166.926,50.4c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1177. <path d="M171.713,50.4c0.002,1.322,-1.068,2.396,-2.39,2.397s-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  1178. <circle cx="169.319" cy="50.4" fill="#383838" r="1.197"/>
  1179. </g>
  1180. <g id="pin23I">
  1181. <path d="M166.926,43.2c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1182. <path d="M171.713,43.2c0.002,1.322,-1.068,2.395,-2.39,2.397s-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  1183. <circle cx="169.319" cy="43.2" fill="#383838" r="1.197"/>
  1184. </g>
  1185. <g id="pin23J">
  1186. <path d="M166.926,36c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1187. <path d="M171.713,36c0.002,1.322,-1.068,2.396,-2.39,2.397s-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  1188. <circle cx="169.319" cy="36" fill="#383838" r="1.197"/>
  1189. </g>
  1190. <g id="pin24A">
  1191. <path d="M174.125,115.2c0.002,-1.322,1.075,-2.393,2.397,-2.391c1.319,0.002,2.388,1.072,2.39,2.391" fill="#BFBFBF"/>
  1192. <path d="M178.913,115.2c0.002,1.322,-1.068,2.395,-2.39,2.396c-1.322,0.002,-2.395,-1.067,-2.397,-2.389c0,-0.003,0,-0.006,0,-0.008" fill="#E6E6E6"/>
  1193. <circle cx="176.519" cy="115.2" fill="#383838" r="1.197"/>
  1194. </g>
  1195. <g id="pin24B">
  1196. <path d="M174.125,108c0.002,-1.322,1.075,-2.393,2.397,-2.391c1.319,0.002,2.388,1.07,2.39,2.391" fill="#BFBFBF"/>
  1197. <path d="M178.913,108c0.002,1.321,-1.068,2.395,-2.39,2.396c-1.322,0.002,-2.395,-1.068,-2.397,-2.391c0,-0.002,0,-0.004,0,-0.006" fill="#E6E6E6"/>
  1198. <circle cx="176.519" cy="108" fill="#383838" r="1.197"/>
  1199. </g>
  1200. <g id="pin24C">
  1201. <path d="M174.125,100.799c0.002,-1.321,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1202. <path d="M178.913,100.799c0.002,1.322,-1.068,2.396,-2.39,2.398c-1.322,0.002,-2.395,-1.068,-2.397,-2.391c0,-0.002,0,-0.005,0,-0.008" fill="#E6E6E6"/>
  1203. <circle cx="176.519" cy="100.8" fill="#383838" r="1.197"/>
  1204. </g>
  1205. <g id="pin24D">
  1206. <path d="M174.125,93.6c0.002,-1.322,1.075,-2.393,2.397,-2.391c1.319,0.002,2.388,1.071,2.39,2.391" fill="#BFBFBF"/>
  1207. <path d="M178.913,93.6c0.002,1.322,-1.068,2.395,-2.39,2.396c-1.322,0.002,-2.395,-1.068,-2.397,-2.39c0,-0.003,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  1208. <circle cx="176.519" cy="93.6" fill="#383838" r="1.197"/>
  1209. </g>
  1210. <g id="pin24E">
  1211. <path d="M174.125,86.4c0.002,-1.321,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.07,2.39,2.39" fill="#BFBFBF"/>
  1212. <path d="M178.913,86.4c0.002,1.321,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.395,-1.068,-2.397,-2.391c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  1213. <circle cx="176.519" cy="86.4" fill="#383838" r="1.196"/>
  1214. </g>
  1215. <g id="pin24F">
  1216. <path d="M174.125,64.8c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1217. <path d="M178.913,64.8c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  1218. <circle cx="176.519" cy="64.8" fill="#383838" r="1.197"/>
  1219. </g>
  1220. <g id="pin24G">
  1221. <path d="M174.125,57.6c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1222. <path d="M178.913,57.6c0.002,1.322,-1.068,2.395,-2.39,2.397c-1.322,0.002,-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  1223. <circle cx="176.519" cy="57.6" fill="#383838" r="1.197"/>
  1224. </g>
  1225. <g id="pin24H">
  1226. <path d="M174.125,50.4c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1227. <path d="M178.913,50.4c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  1228. <circle cx="176.519" cy="50.4" fill="#383838" r="1.197"/>
  1229. </g>
  1230. <g id="pin24I">
  1231. <path d="M174.125,43.2c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1232. <path d="M178.913,43.2c0.002,1.322,-1.068,2.395,-2.39,2.397c-1.322,0.002,-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  1233. <circle cx="176.519" cy="43.2" fill="#383838" r="1.197"/>
  1234. </g>
  1235. <g id="pin24J">
  1236. <path d="M174.125,36c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1237. <path d="M178.913,36c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  1238. <circle cx="176.519" cy="36" fill="#383838" r="1.197"/>
  1239. </g>
  1240. <g id="pin25A">
  1241. <path d="M181.326,115.2c0.002,-1.322,1.075,-2.393,2.397,-2.391c1.319,0.002,2.388,1.072,2.39,2.391" fill="#BFBFBF"/>
  1242. <path d="M186.113,115.2c0.002,1.322,-1.068,2.395,-2.39,2.396s-2.395,-1.067,-2.397,-2.389c0,-0.003,0,-0.006,0,-0.008" fill="#E6E6E6"/>
  1243. <circle cx="183.719" cy="115.2" fill="#383838" r="1.197"/>
  1244. </g>
  1245. <g id="pin25B">
  1246. <path d="M181.326,108c0.002,-1.322,1.075,-2.393,2.397,-2.391c1.319,0.002,2.388,1.07,2.39,2.391" fill="#BFBFBF"/>
  1247. <path d="M186.113,108c0.002,1.321,-1.068,2.395,-2.39,2.396s-2.395,-1.068,-2.397,-2.391c0,-0.002,0,-0.004,0,-0.006" fill="#E6E6E6"/>
  1248. <circle cx="183.719" cy="108" fill="#383838" r="1.197"/>
  1249. </g>
  1250. <g id="pin25C">
  1251. <path d="M181.326,100.799c0.002,-1.321,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1252. <path d="M186.113,100.799c0.002,1.322,-1.068,2.396,-2.39,2.398s-2.395,-1.068,-2.397,-2.391c0,-0.002,0,-0.005,0,-0.008" fill="#E6E6E6"/>
  1253. <circle cx="183.719" cy="100.8" fill="#383838" r="1.197"/>
  1254. </g>
  1255. <g id="pin25D">
  1256. <path d="M181.326,93.6c0.002,-1.322,1.075,-2.393,2.397,-2.391c1.319,0.002,2.388,1.071,2.39,2.391" fill="#BFBFBF"/>
  1257. <path d="M186.113,93.6c0.002,1.322,-1.068,2.395,-2.39,2.396s-2.395,-1.068,-2.397,-2.39c0,-0.003,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  1258. <circle cx="183.719" cy="93.6" fill="#383838" r="1.197"/>
  1259. </g>
  1260. <g id="pin25E">
  1261. <path d="M181.326,86.4c0.002,-1.321,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.07,2.39,2.39" fill="#BFBFBF"/>
  1262. <path d="M186.113,86.4c0.002,1.321,-1.068,2.396,-2.39,2.397s-2.395,-1.068,-2.397,-2.391c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  1263. <circle cx="183.719" cy="86.4" fill="#383838" r="1.196"/>
  1264. </g>
  1265. <g id="pin25F">
  1266. <path d="M181.326,64.8c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1267. <path d="M186.113,64.8c0.002,1.322,-1.068,2.396,-2.39,2.397s-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  1268. <circle cx="183.719" cy="64.8" fill="#383838" r="1.197"/>
  1269. </g>
  1270. <g id="pin25G">
  1271. <path d="M181.326,57.6c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1272. <path d="M186.113,57.6c0.002,1.322,-1.068,2.395,-2.39,2.397s-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  1273. <circle cx="183.719" cy="57.6" fill="#383838" r="1.197"/>
  1274. </g>
  1275. <g id="pin25H">
  1276. <path d="M181.326,50.4c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1277. <path d="M186.113,50.4c0.002,1.322,-1.068,2.396,-2.39,2.397s-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  1278. <circle cx="183.719" cy="50.4" fill="#383838" r="1.197"/>
  1279. </g>
  1280. <g id="pin25I">
  1281. <path d="M181.326,43.2c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1282. <path d="M186.113,43.2c0.002,1.322,-1.068,2.395,-2.39,2.397s-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  1283. <circle cx="183.719" cy="43.2" fill="#383838" r="1.197"/>
  1284. </g>
  1285. <g id="pin25J">
  1286. <path d="M181.326,36c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1287. <path d="M186.113,36c0.002,1.322,-1.068,2.396,-2.39,2.397s-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  1288. <circle cx="183.719" cy="36" fill="#383838" r="1.197"/>
  1289. </g>
  1290. <g id="pin26A">
  1291. <path d="M188.525,115.2c0.002,-1.322,1.075,-2.393,2.397,-2.391c1.319,0.002,2.388,1.072,2.39,2.391" fill="#BFBFBF"/>
  1292. <path d="M193.312,115.2c0.002,1.322,-1.068,2.395,-2.39,2.396c-1.322,0.002,-2.396,-1.067,-2.397,-2.389c0,-0.003,0,-0.006,0,-0.008" fill="#E6E6E6"/>
  1293. <circle cx="190.919" cy="115.2" fill="#383838" r="1.197"/>
  1294. </g>
  1295. <g id="pin26B">
  1296. <path d="M188.525,108c0.002,-1.322,1.075,-2.393,2.397,-2.391c1.319,0.002,2.388,1.07,2.39,2.391" fill="#BFBFBF"/>
  1297. <path d="M193.312,108c0.002,1.321,-1.068,2.395,-2.39,2.396c-1.322,0.002,-2.396,-1.068,-2.397,-2.391c0,-0.002,0,-0.004,0,-0.006" fill="#E6E6E6"/>
  1298. <circle cx="190.919" cy="108" fill="#383838" r="1.197"/>
  1299. </g>
  1300. <g id="pin26C">
  1301. <path d="M188.525,100.799c0.002,-1.321,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1302. <path d="M193.312,100.799c0.002,1.322,-1.068,2.396,-2.39,2.398c-1.322,0.002,-2.396,-1.068,-2.397,-2.391c0,-0.002,0,-0.005,0,-0.008" fill="#E6E6E6"/>
  1303. <circle cx="190.919" cy="100.8" fill="#383838" r="1.197"/>
  1304. </g>
  1305. <g id="pin26D">
  1306. <path d="M188.525,93.6c0.002,-1.322,1.075,-2.393,2.397,-2.391c1.319,0.002,2.388,1.071,2.39,2.391" fill="#BFBFBF"/>
  1307. <path d="M193.312,93.6c0.002,1.322,-1.068,2.395,-2.39,2.396c-1.322,0.002,-2.396,-1.068,-2.397,-2.39c0,-0.003,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  1308. <circle cx="190.919" cy="93.6" fill="#383838" r="1.197"/>
  1309. </g>
  1310. <g id="pin26E">
  1311. <path d="M188.525,86.4c0.002,-1.321,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.07,2.39,2.39" fill="#BFBFBF"/>
  1312. <path d="M193.312,86.4c0.002,1.321,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.396,-1.068,-2.397,-2.391c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  1313. <circle cx="190.919" cy="86.4" fill="#383838" r="1.196"/>
  1314. </g>
  1315. <g id="pin26F">
  1316. <path d="M188.525,64.8c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1317. <path d="M193.312,64.8c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.396,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  1318. <circle cx="190.919" cy="64.8" fill="#383838" r="1.197"/>
  1319. </g>
  1320. <g id="pin26G">
  1321. <path d="M188.525,57.6c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1322. <path d="M193.312,57.6c0.002,1.322,-1.068,2.395,-2.39,2.397c-1.322,0.002,-2.396,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  1323. <circle cx="190.919" cy="57.6" fill="#383838" r="1.197"/>
  1324. </g>
  1325. <g id="pin26H">
  1326. <path d="M188.525,50.4c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1327. <path d="M193.312,50.4c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.396,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  1328. <circle cx="190.919" cy="50.4" fill="#383838" r="1.197"/>
  1329. </g>
  1330. <g id="pin26I">
  1331. <path d="M188.525,43.2c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1332. <path d="M193.312,43.2c0.002,1.322,-1.068,2.395,-2.39,2.397c-1.322,0.002,-2.396,-1.068,-2.397,-2.39c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  1333. <circle cx="190.919" cy="43.2" fill="#383838" r="1.197"/>
  1334. </g>
  1335. <g id="pin26J">
  1336. <path d="M188.525,36c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1337. <path d="M193.312,36c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.396,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  1338. <circle cx="190.919" cy="36" fill="#383838" r="1.197"/>
  1339. </g>
  1340. <g id="pin27A">
  1341. <path d="M195.726,115.2c0.002,-1.322,1.075,-2.393,2.397,-2.391c1.319,0.002,2.388,1.072,2.39,2.391" fill="#BFBFBF"/>
  1342. <path d="M200.513,115.2c0.002,1.322,-1.068,2.395,-2.39,2.396s-2.395,-1.067,-2.397,-2.389c0,-0.003,0,-0.006,0,-0.008" fill="#E6E6E6"/>
  1343. <circle cx="198.119" cy="115.2" fill="#383838" r="1.197"/>
  1344. </g>
  1345. <g id="pin27B">
  1346. <path d="M195.726,108c0.002,-1.322,1.075,-2.393,2.397,-2.391c1.319,0.002,2.388,1.07,2.39,2.391" fill="#BFBFBF"/>
  1347. <path d="M200.513,108c0.002,1.321,-1.068,2.395,-2.39,2.396s-2.395,-1.068,-2.397,-2.391c0,-0.002,0,-0.004,0,-0.006" fill="#E6E6E6"/>
  1348. <circle cx="198.119" cy="108" fill="#383838" r="1.197"/>
  1349. </g>
  1350. <g id="pin27C">
  1351. <path d="M195.726,100.799c0.002,-1.321,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1352. <path d="M200.513,100.799c0.002,1.322,-1.068,2.396,-2.39,2.398s-2.395,-1.068,-2.397,-2.391c0,-0.002,0,-0.005,0,-0.008" fill="#E6E6E6"/>
  1353. <circle cx="198.119" cy="100.8" fill="#383838" r="1.197"/>
  1354. </g>
  1355. <g id="pin27D">
  1356. <path d="M195.726,93.6c0.002,-1.322,1.075,-2.393,2.397,-2.391c1.319,0.002,2.388,1.071,2.39,2.391" fill="#BFBFBF"/>
  1357. <path d="M200.513,93.6c0.002,1.322,-1.068,2.395,-2.39,2.396s-2.395,-1.068,-2.397,-2.39c0,-0.003,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  1358. <circle cx="198.119" cy="93.6" fill="#383838" r="1.197"/>
  1359. </g>
  1360. <g id="pin27E">
  1361. <path d="M195.726,86.4c0.002,-1.321,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.07,2.39,2.39" fill="#BFBFBF"/>
  1362. <path d="M200.513,86.4c0.002,1.321,-1.068,2.396,-2.39,2.397s-2.395,-1.068,-2.397,-2.391c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  1363. <circle cx="198.119" cy="86.4" fill="#383838" r="1.196"/>
  1364. </g>
  1365. <g id="pin27F">
  1366. <path d="M195.726,64.8c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1367. <path d="M200.513,64.8c0.002,1.322,-1.068,2.396,-2.39,2.397s-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  1368. <circle cx="198.119" cy="64.8" fill="#383838" r="1.197"/>
  1369. </g>
  1370. <g id="pin27G">
  1371. <path d="M195.726,57.6c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1372. <path d="M200.513,57.6c0.002,1.322,-1.068,2.395,-2.39,2.397s-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  1373. <circle cx="198.119" cy="57.6" fill="#383838" r="1.197"/>
  1374. </g>
  1375. <g id="pin27H">
  1376. <path d="M195.726,50.4c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1377. <path d="M200.513,50.4c0.002,1.322,-1.068,2.396,-2.39,2.397s-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  1378. <circle cx="198.119" cy="50.4" fill="#383838" r="1.197"/>
  1379. </g>
  1380. <g id="pin27I">
  1381. <path d="M195.726,43.2c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1382. <path d="M200.513,43.2c0.002,1.322,-1.068,2.395,-2.39,2.397s-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  1383. <circle cx="198.119" cy="43.2" fill="#383838" r="1.197"/>
  1384. </g>
  1385. <g id="pin27J">
  1386. <path d="M195.726,36c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1387. <path d="M200.513,36c0.002,1.322,-1.068,2.396,-2.39,2.397s-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  1388. <circle cx="198.119" cy="36" fill="#383838" r="1.197"/>
  1389. </g>
  1390. <g id="pin28A">
  1391. <path d="M202.925,115.2c0.002,-1.322,1.075,-2.393,2.397,-2.391c1.319,0.002,2.388,1.072,2.39,2.391" fill="#BFBFBF"/>
  1392. <path d="M207.712,115.2c0.002,1.322,-1.068,2.395,-2.39,2.396c-1.322,0.002,-2.395,-1.067,-2.397,-2.389c0,-0.003,0,-0.006,0,-0.008" fill="#E6E6E6"/>
  1393. <circle cx="205.319" cy="115.2" fill="#383838" r="1.197"/>
  1394. </g>
  1395. <g id="pin28B">
  1396. <path d="M202.925,108c0.002,-1.322,1.075,-2.393,2.397,-2.391c1.319,0.002,2.388,1.07,2.39,2.391" fill="#BFBFBF"/>
  1397. <path d="M207.712,108c0.002,1.321,-1.068,2.395,-2.39,2.396c-1.322,0.002,-2.395,-1.068,-2.397,-2.391c0,-0.002,0,-0.004,0,-0.006" fill="#E6E6E6"/>
  1398. <circle cx="205.319" cy="108" fill="#383838" r="1.197"/>
  1399. </g>
  1400. <g id="pin28C">
  1401. <path d="M202.925,100.799c0.002,-1.321,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1402. <path d="M207.712,100.799c0.002,1.322,-1.068,2.396,-2.39,2.398c-1.322,0.002,-2.395,-1.068,-2.397,-2.391c0,-0.002,0,-0.005,0,-0.008" fill="#E6E6E6"/>
  1403. <circle cx="205.319" cy="100.8" fill="#383838" r="1.197"/>
  1404. </g>
  1405. <g id="pin28D">
  1406. <path d="M202.925,93.6c0.002,-1.322,1.075,-2.393,2.397,-2.391c1.319,0.002,2.388,1.071,2.39,2.391" fill="#BFBFBF"/>
  1407. <path d="M207.712,93.6c0.002,1.322,-1.068,2.395,-2.39,2.396c-1.322,0.002,-2.395,-1.068,-2.397,-2.39c0,-0.003,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  1408. <circle cx="205.319" cy="93.6" fill="#383838" r="1.197"/>
  1409. </g>
  1410. <g id="pin28E">
  1411. <path d="M202.925,86.4c0.002,-1.321,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.07,2.39,2.39" fill="#BFBFBF"/>
  1412. <path d="M207.712,86.4c0.002,1.321,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.395,-1.068,-2.397,-2.391c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  1413. <circle cx="205.319" cy="86.4" fill="#383838" r="1.196"/>
  1414. </g>
  1415. <g id="pin28F">
  1416. <path d="M202.925,64.8c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1417. <path d="M207.712,64.8c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  1418. <circle cx="205.319" cy="64.8" fill="#383838" r="1.197"/>
  1419. </g>
  1420. <g id="pin28G">
  1421. <path d="M202.925,57.6c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1422. <path d="M207.712,57.6c0.002,1.322,-1.068,2.395,-2.39,2.397c-1.322,0.002,-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  1423. <circle cx="205.319" cy="57.6" fill="#383838" r="1.197"/>
  1424. </g>
  1425. <g id="pin28H">
  1426. <path d="M202.925,50.4c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1427. <path d="M207.712,50.4c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  1428. <circle cx="205.319" cy="50.4" fill="#383838" r="1.197"/>
  1429. </g>
  1430. <g id="pin28I">
  1431. <path d="M202.925,43.2c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1432. <path d="M207.712,43.2c0.002,1.322,-1.068,2.395,-2.39,2.397c-1.322,0.002,-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  1433. <circle cx="205.319" cy="43.2" fill="#383838" r="1.197"/>
  1434. </g>
  1435. <g id="pin28J">
  1436. <path d="M202.925,36c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  1437. <path d="M207.712,36c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  1438. <circle cx="205.319" cy="36" fill="#383838" r="1.197"/>
  1439. </g>
  1440. <g id="pin29A">
  1441. <path d="M210.125,115.2c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394" fill="#BFBFBF"/>
  1442. <path d="M214.913,115.2c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  1443. <circle cx="212.519" cy="115.2" fill="#383838" r="1.197"/>
  1444. </g>
  1445. <g id="pin29B">
  1446. <path d="M210.125,108c0,-1.322,1.071,-2.395,2.394,-2.395c1.322,0,2.394,1.072,2.394,2.395" fill="#BFBFBF"/>
  1447. <path d="M214.913,108c0,1.321,-1.072,2.393,-2.394,2.393c-1.322,0,-2.394,-1.071,-2.394,-2.393" fill="#E6E6E6"/>
  1448. <circle cx="212.519" cy="108" fill="#383838" r="1.197"/>
  1449. </g>
  1450. <g id="pin29C">
  1451. <path d="M210.125,100.799c0,-1.321,1.071,-2.393,2.394,-2.393c1.322,0,2.394,1.071,2.394,2.393l0,0" fill="#BFBFBF"/>
  1452. <path d="M214.913,100.799c0,1.322,-1.072,2.395,-2.394,2.395c-1.322,0,-2.394,-1.072,-2.394,-2.395" fill="#E6E6E6"/>
  1453. <circle cx="212.519" cy="100.8" fill="#383838" r="1.197"/>
  1454. </g>
  1455. <g id="pin29D">
  1456. <path d="M210.125,93.6c0,-1.322,1.071,-2.395,2.394,-2.395c1.322,0,2.394,1.072,2.394,2.395" fill="#BFBFBF"/>
  1457. <path d="M214.913,93.6c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  1458. <circle cx="212.519" cy="93.6" fill="#383838" r="1.197"/>
  1459. </g>
  1460. <g id="pin29E">
  1461. <path d="M210.125,86.4c0,-1.321,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  1462. <path d="M214.913,86.4c0,1.321,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  1463. <circle cx="212.519" cy="86.4" fill="#383838" r="1.196"/>
  1464. </g>
  1465. <g id="pin29F">
  1466. <path d="M210.125,64.8c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  1467. <path d="M214.913,64.8c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  1468. <circle cx="212.519" cy="64.8" fill="#383838" r="1.197"/>
  1469. </g>
  1470. <g id="pin29G">
  1471. <path d="M210.125,57.6c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  1472. <path d="M214.913,57.6c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  1473. <circle cx="212.519" cy="57.6" fill="#383838" r="1.197"/>
  1474. </g>
  1475. <g id="pin29H">
  1476. <path d="M210.125,50.4c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394l0,0" fill="#BFBFBF"/>
  1477. <path d="M214.913,50.4c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394" fill="#E6E6E6"/>
  1478. <circle cx="212.519" cy="50.4" fill="#383838" r="1.197"/>
  1479. </g>
  1480. <g id="pin29I">
  1481. <path d="M210.125,43.2c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394" fill="#BFBFBF"/>
  1482. <path d="M214.913,43.2c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  1483. <circle cx="212.519" cy="43.2" fill="#383838" r="1.197"/>
  1484. </g>
  1485. <g id="pin29J">
  1486. <path d="M210.125,36c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  1487. <path d="M214.913,36c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  1488. <circle cx="212.519" cy="36" fill="#383838" r="1.197"/>
  1489. </g>
  1490. <g id="pin30A">
  1491. <path d="M217.325,115.2c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394" fill="#BFBFBF"/>
  1492. <path d="M222.112,115.2c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  1493. <circle cx="219.719" cy="115.2" fill="#383838" r="1.197"/>
  1494. </g>
  1495. <g id="pin30B">
  1496. <path d="M217.325,108c0,-1.322,1.072,-2.395,2.394,-2.395c1.322,0,2.394,1.072,2.394,2.395" fill="#BFBFBF"/>
  1497. <path d="M222.112,108c0,1.321,-1.071,2.393,-2.394,2.393c-1.322,0,-2.394,-1.071,-2.394,-2.393" fill="#E6E6E6"/>
  1498. <circle cx="219.719" cy="108" fill="#383838" r="1.197"/>
  1499. </g>
  1500. <g id="pin30C">
  1501. <path d="M217.325,100.799c0,-1.321,1.072,-2.393,2.394,-2.393c1.322,0,2.394,1.071,2.394,2.393l0,0" fill="#BFBFBF"/>
  1502. <path d="M222.112,100.799c0,1.322,-1.071,2.395,-2.394,2.395c-1.322,0,-2.394,-1.072,-2.394,-2.395" fill="#E6E6E6"/>
  1503. <circle cx="219.719" cy="100.8" fill="#383838" r="1.197"/>
  1504. </g>
  1505. <g id="pin30D">
  1506. <path d="M217.325,93.6c0,-1.322,1.072,-2.395,2.394,-2.395c1.322,0,2.394,1.072,2.394,2.395" fill="#BFBFBF"/>
  1507. <path d="M222.112,93.6c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  1508. <circle cx="219.719" cy="93.6" fill="#383838" r="1.197"/>
  1509. </g>
  1510. <g id="pin30E">
  1511. <path d="M217.325,86.4c0,-1.321,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  1512. <path d="M222.112,86.4c0,1.321,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  1513. <circle cx="219.719" cy="86.4" fill="#383838" r="1.196"/>
  1514. </g>
  1515. <g id="pin30F">
  1516. <path d="M217.325,64.8c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  1517. <path d="M222.112,64.8c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  1518. <circle cx="219.719" cy="64.8" fill="#383838" r="1.197"/>
  1519. </g>
  1520. <g id="pin30G">
  1521. <path d="M217.325,57.6c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  1522. <path d="M222.112,57.6c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  1523. <circle cx="219.719" cy="57.6" fill="#383838" r="1.197"/>
  1524. </g>
  1525. <g id="pin30H">
  1526. <path d="M217.325,50.4c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394l0,0" fill="#BFBFBF"/>
  1527. <path d="M222.112,50.4c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394" fill="#E6E6E6"/>
  1528. <circle cx="219.719" cy="50.4" fill="#383838" r="1.197"/>
  1529. </g>
  1530. <g id="pin30I">
  1531. <path d="M217.325,43.2c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394" fill="#BFBFBF"/>
  1532. <path d="M222.112,43.2c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  1533. <circle cx="219.719" cy="43.2" fill="#383838" r="1.197"/>
  1534. </g>
  1535. <g id="pin30J">
  1536. <path d="M217.325,36c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  1537. <path d="M222.112,36c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  1538. <circle cx="219.719" cy="36" fill="#383838" r="1.197"/>
  1539. </g>
  1540. <g id="pin31A">
  1541. <path d="M224.525,115.2c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394" fill="#BFBFBF"/>
  1542. <path d="M229.312,115.2c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  1543. <circle cx="226.919" cy="115.2" fill="#383838" r="1.197"/>
  1544. </g>
  1545. <g id="pin31B">
  1546. <path d="M224.525,108c0,-1.322,1.071,-2.395,2.394,-2.395c1.322,0,2.394,1.072,2.394,2.395" fill="#BFBFBF"/>
  1547. <path d="M229.312,108c0,1.321,-1.072,2.393,-2.394,2.393c-1.322,0,-2.394,-1.071,-2.394,-2.393" fill="#E6E6E6"/>
  1548. <circle cx="226.919" cy="108" fill="#383838" r="1.197"/>
  1549. </g>
  1550. <g id="pin31C">
  1551. <path d="M224.525,100.799c0,-1.321,1.071,-2.393,2.394,-2.393c1.322,0,2.394,1.071,2.394,2.393l0,0" fill="#BFBFBF"/>
  1552. <path d="M229.312,100.799c0,1.322,-1.072,2.395,-2.394,2.395c-1.322,0,-2.394,-1.072,-2.394,-2.395" fill="#E6E6E6"/>
  1553. <circle cx="226.919" cy="100.8" fill="#383838" r="1.197"/>
  1554. </g>
  1555. <g id="pin31D">
  1556. <path d="M224.525,93.6c0,-1.322,1.071,-2.395,2.394,-2.395c1.322,0,2.394,1.072,2.394,2.395" fill="#BFBFBF"/>
  1557. <path d="M229.312,93.6c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  1558. <circle cx="226.919" cy="93.6" fill="#383838" r="1.197"/>
  1559. </g>
  1560. <g id="pin31E">
  1561. <path d="M224.525,86.4c0,-1.321,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  1562. <path d="M229.312,86.4c0,1.321,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  1563. <circle cx="226.919" cy="86.4" fill="#383838" r="1.196"/>
  1564. </g>
  1565. <g id="pin31F">
  1566. <path d="M224.525,64.8c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  1567. <path d="M229.312,64.8c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  1568. <circle cx="226.919" cy="64.8" fill="#383838" r="1.197"/>
  1569. </g>
  1570. <g id="pin31G">
  1571. <path d="M224.525,57.6c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  1572. <path d="M229.312,57.6c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  1573. <circle cx="226.919" cy="57.6" fill="#383838" r="1.197"/>
  1574. </g>
  1575. <g id="pin31H">
  1576. <path d="M224.525,50.4c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394l0,0" fill="#BFBFBF"/>
  1577. <path d="M229.312,50.4c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394" fill="#E6E6E6"/>
  1578. <circle cx="226.919" cy="50.4" fill="#383838" r="1.197"/>
  1579. </g>
  1580. <g id="pin31I">
  1581. <path d="M224.525,43.2c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394" fill="#BFBFBF"/>
  1582. <path d="M229.312,43.2c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  1583. <circle cx="226.919" cy="43.2" fill="#383838" r="1.197"/>
  1584. </g>
  1585. <g id="pin31J">
  1586. <path d="M224.525,36c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  1587. <path d="M229.312,36c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  1588. <circle cx="226.919" cy="36" fill="#383838" r="1.197"/>
  1589. </g>
  1590. <g id="pin32A">
  1591. <path d="M231.725,115.2c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394" fill="#BFBFBF"/>
  1592. <path d="M236.512,115.2c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  1593. <circle cx="234.119" cy="115.2" fill="#383838" r="1.197"/>
  1594. </g>
  1595. <g id="pin32B">
  1596. <path d="M231.725,108c0,-1.322,1.072,-2.395,2.394,-2.395c1.322,0,2.394,1.072,2.394,2.395" fill="#BFBFBF"/>
  1597. <path d="M236.512,108c0,1.321,-1.071,2.393,-2.394,2.393c-1.322,0,-2.394,-1.071,-2.394,-2.393" fill="#E6E6E6"/>
  1598. <circle cx="234.119" cy="108" fill="#383838" r="1.197"/>
  1599. </g>
  1600. <g id="pin32C">
  1601. <path d="M231.725,100.799c0,-1.321,1.072,-2.393,2.394,-2.393c1.322,0,2.394,1.071,2.394,2.393l0,0" fill="#BFBFBF"/>
  1602. <path d="M236.512,100.799c0,1.322,-1.071,2.395,-2.394,2.395c-1.322,0,-2.394,-1.072,-2.394,-2.395" fill="#E6E6E6"/>
  1603. <circle cx="234.119" cy="100.8" fill="#383838" r="1.197"/>
  1604. </g>
  1605. <g id="pin32D">
  1606. <path d="M231.725,93.6c0,-1.322,1.072,-2.395,2.394,-2.395c1.322,0,2.394,1.072,2.394,2.395" fill="#BFBFBF"/>
  1607. <path d="M236.512,93.6c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  1608. <circle cx="234.119" cy="93.6" fill="#383838" r="1.197"/>
  1609. </g>
  1610. <g id="pin32E">
  1611. <path d="M231.725,86.4c0,-1.321,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  1612. <path d="M236.512,86.4c0,1.321,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  1613. <circle cx="234.119" cy="86.4" fill="#383838" r="1.196"/>
  1614. </g>
  1615. <g id="pin32F">
  1616. <path d="M231.725,64.8c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  1617. <path d="M236.512,64.8c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  1618. <circle cx="234.119" cy="64.8" fill="#383838" r="1.197"/>
  1619. </g>
  1620. <g id="pin32G">
  1621. <path d="M231.725,57.6c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  1622. <path d="M236.512,57.6c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  1623. <circle cx="234.119" cy="57.6" fill="#383838" r="1.197"/>
  1624. </g>
  1625. <g id="pin32H">
  1626. <path d="M231.725,50.4c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394l0,0" fill="#BFBFBF"/>
  1627. <path d="M236.512,50.4c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394" fill="#E6E6E6"/>
  1628. <circle cx="234.119" cy="50.4" fill="#383838" r="1.197"/>
  1629. </g>
  1630. <g id="pin32I">
  1631. <path d="M231.725,43.2c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394" fill="#BFBFBF"/>
  1632. <path d="M236.512,43.2c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  1633. <circle cx="234.119" cy="43.2" fill="#383838" r="1.197"/>
  1634. </g>
  1635. <g id="pin32J">
  1636. <path d="M231.725,36c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  1637. <path d="M236.512,36c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  1638. <circle cx="234.119" cy="36" fill="#383838" r="1.197"/>
  1639. </g>
  1640. <g id="pin33A">
  1641. <path d="M238.925,115.2c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.071,2.394,2.394" fill="#BFBFBF"/>
  1642. <path d="M243.712,115.2c0,1.322,-1.072,2.394,-2.394,2.394s-2.394,-1.071,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  1643. <circle cx="241.319" cy="115.2" fill="#383838" r="1.197"/>
  1644. </g>
  1645. <g id="pin33B">
  1646. <path d="M238.925,108c0,-1.322,1.072,-2.395,2.394,-2.395s2.394,1.072,2.394,2.395" fill="#BFBFBF"/>
  1647. <path d="M243.712,108c0,1.321,-1.072,2.393,-2.394,2.393s-2.394,-1.071,-2.394,-2.393" fill="#E6E6E6"/>
  1648. <circle cx="241.319" cy="108" fill="#383838" r="1.197"/>
  1649. </g>
  1650. <g id="pin33C">
  1651. <path d="M238.925,100.799c0,-1.321,1.072,-2.393,2.394,-2.393s2.394,1.071,2.394,2.393l0,0" fill="#BFBFBF"/>
  1652. <path d="M243.712,100.799c0,1.322,-1.072,2.395,-2.394,2.395s-2.394,-1.072,-2.394,-2.395" fill="#E6E6E6"/>
  1653. <circle cx="241.319" cy="100.8" fill="#383838" r="1.197"/>
  1654. </g>
  1655. <g id="pin33D">
  1656. <path d="M238.925,93.6c0,-1.322,1.072,-2.395,2.394,-2.395s2.394,1.072,2.394,2.395" fill="#BFBFBF"/>
  1657. <path d="M243.712,93.6c0,1.322,-1.072,2.394,-2.394,2.394s-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  1658. <circle cx="241.319" cy="93.6" fill="#383838" r="1.197"/>
  1659. </g>
  1660. <g id="pin33E">
  1661. <path d="M238.925,86.4c0,-1.321,1.072,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  1662. <path d="M243.712,86.4c0,1.321,-1.072,2.394,-2.394,2.394s-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  1663. <circle cx="241.319" cy="86.4" fill="#383838" r="1.196"/>
  1664. </g>
  1665. <g id="pin33F">
  1666. <path d="M238.925,64.8c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  1667. <path d="M243.712,64.8c0,1.322,-1.072,2.394,-2.394,2.394s-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  1668. <circle cx="241.319" cy="64.8" fill="#383838" r="1.197"/>
  1669. </g>
  1670. <g id="pin33G">
  1671. <path d="M238.925,57.6c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  1672. <path d="M243.712,57.6c0,1.322,-1.072,2.394,-2.394,2.394s-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  1673. <circle cx="241.319" cy="57.6" fill="#383838" r="1.197"/>
  1674. </g>
  1675. <g id="pin33H">
  1676. <path d="M238.925,50.4c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394l0,0" fill="#BFBFBF"/>
  1677. <path d="M243.712,50.4c0,1.322,-1.072,2.394,-2.394,2.394s-2.394,-1.072,-2.394,-2.394" fill="#E6E6E6"/>
  1678. <circle cx="241.319" cy="50.4" fill="#383838" r="1.197"/>
  1679. </g>
  1680. <g id="pin33I">
  1681. <path d="M238.925,43.2c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.071,2.394,2.394" fill="#BFBFBF"/>
  1682. <path d="M243.712,43.2c0,1.322,-1.072,2.394,-2.394,2.394s-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  1683. <circle cx="241.319" cy="43.2" fill="#383838" r="1.197"/>
  1684. </g>
  1685. <g id="pin33J">
  1686. <path d="M238.925,36c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  1687. <path d="M243.712,36c0,1.322,-1.072,2.394,-2.394,2.394s-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  1688. <circle cx="241.319" cy="36" fill="#383838" r="1.197"/>
  1689. </g>
  1690. <g id="pin34A">
  1691. <path d="M246.125,115.2c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.071,2.393,2.394" fill="#BFBFBF"/>
  1692. <path d="M250.912,115.2c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.071,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  1693. <circle cx="248.519" cy="115.2" fill="#383838" r="1.197"/>
  1694. </g>
  1695. <g id="pin34B">
  1696. <path d="M246.125,108c0,-1.322,1.072,-2.395,2.395,-2.395s2.393,1.072,2.393,2.395" fill="#BFBFBF"/>
  1697. <path d="M250.912,108c0,1.321,-1.07,2.393,-2.393,2.393s-2.395,-1.071,-2.395,-2.393" fill="#E6E6E6"/>
  1698. <circle cx="248.519" cy="108" fill="#383838" r="1.197"/>
  1699. </g>
  1700. <g id="pin34C">
  1701. <path d="M246.125,100.799c0,-1.321,1.072,-2.393,2.395,-2.393s2.393,1.071,2.393,2.393l0,0" fill="#BFBFBF"/>
  1702. <path d="M250.912,100.799c0,1.322,-1.07,2.395,-2.393,2.395s-2.395,-1.072,-2.395,-2.395" fill="#E6E6E6"/>
  1703. <circle cx="248.519" cy="100.8" fill="#383838" r="1.197"/>
  1704. </g>
  1705. <g id="pin34D">
  1706. <path d="M246.125,93.6c0,-1.322,1.072,-2.395,2.395,-2.395s2.393,1.072,2.393,2.395" fill="#BFBFBF"/>
  1707. <path d="M250.912,93.6c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  1708. <circle cx="248.519" cy="93.6" fill="#383838" r="1.197"/>
  1709. </g>
  1710. <g id="pin34E">
  1711. <path d="M246.125,86.4c0,-1.321,1.072,-2.394,2.395,-2.394s2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  1712. <path d="M250.912,86.4c0,1.321,-1.07,2.394,-2.393,2.394s-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  1713. <circle cx="248.519" cy="86.4" fill="#383838" r="1.196"/>
  1714. </g>
  1715. <g id="pin34F">
  1716. <path d="M246.125,64.8c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  1717. <path d="M250.912,64.8c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  1718. <circle cx="248.519" cy="64.8" fill="#383838" r="1.197"/>
  1719. </g>
  1720. <g id="pin34G">
  1721. <path d="M246.125,57.6c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  1722. <path d="M250.912,57.6c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  1723. <circle cx="248.519" cy="57.6" fill="#383838" r="1.197"/>
  1724. </g>
  1725. <g id="pin34H">
  1726. <path d="M246.125,50.4c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.072,2.393,2.394l0,0" fill="#BFBFBF"/>
  1727. <path d="M250.912,50.4c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.072,-2.395,-2.394" fill="#E6E6E6"/>
  1728. <circle cx="248.519" cy="50.4" fill="#383838" r="1.197"/>
  1729. </g>
  1730. <g id="pin34I">
  1731. <path d="M246.125,43.2c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.071,2.393,2.394" fill="#BFBFBF"/>
  1732. <path d="M250.912,43.2c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  1733. <circle cx="248.519" cy="43.2" fill="#383838" r="1.197"/>
  1734. </g>
  1735. <g id="pin34J">
  1736. <path d="M246.125,36c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  1737. <path d="M250.912,36c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  1738. <circle cx="248.519" cy="36" fill="#383838" r="1.197"/>
  1739. </g>
  1740. <g id="pin35A">
  1741. <path d="M253.326,115.2c0,-1.322,1.071,-2.394,2.393,-2.394c1.322,0,2.395,1.071,2.395,2.394" fill="#BFBFBF"/>
  1742. <path d="M258.113,115.2c0,1.322,-1.072,2.394,-2.395,2.394c-1.321,0,-2.393,-1.071,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  1743. <circle cx="255.718" cy="115.2" fill="#383838" r="1.197"/>
  1744. </g>
  1745. <g id="pin35B">
  1746. <path d="M253.326,108c0,-1.322,1.071,-2.395,2.393,-2.395c1.322,0,2.395,1.072,2.395,2.395" fill="#BFBFBF"/>
  1747. <path d="M258.113,108c0,1.321,-1.072,2.393,-2.395,2.393c-1.321,0,-2.393,-1.071,-2.393,-2.393" fill="#E6E6E6"/>
  1748. <circle cx="255.718" cy="108" fill="#383838" r="1.197"/>
  1749. </g>
  1750. <g id="pin35C">
  1751. <path d="M253.326,100.799c0,-1.321,1.071,-2.393,2.393,-2.393c1.322,0,2.395,1.071,2.395,2.393l0,0" fill="#BFBFBF"/>
  1752. <path d="M258.113,100.799c0,1.322,-1.072,2.395,-2.395,2.395c-1.321,0,-2.393,-1.072,-2.393,-2.395" fill="#E6E6E6"/>
  1753. <circle cx="255.718" cy="100.8" fill="#383838" r="1.197"/>
  1754. </g>
  1755. <g id="pin35D">
  1756. <path d="M253.326,93.6c0,-1.322,1.071,-2.395,2.393,-2.395c1.322,0,2.395,1.072,2.395,2.395" fill="#BFBFBF"/>
  1757. <path d="M258.113,93.6c0,1.322,-1.072,2.394,-2.395,2.394c-1.321,0,-2.393,-1.071,-2.393,-2.394" fill="#E6E6E6"/>
  1758. <circle cx="255.718" cy="93.6" fill="#383838" r="1.197"/>
  1759. </g>
  1760. <g id="pin35E">
  1761. <path d="M253.326,86.4c0,-1.321,1.071,-2.394,2.393,-2.394c1.322,0,2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  1762. <path d="M258.113,86.4c0,1.321,-1.072,2.394,-2.395,2.394c-1.321,0,-2.393,-1.072,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  1763. <circle cx="255.718" cy="86.4" fill="#383838" r="1.196"/>
  1764. </g>
  1765. <g id="pin35F">
  1766. <path d="M253.326,64.8c0,-1.322,1.071,-2.394,2.393,-2.394c1.322,0,2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  1767. <path d="M258.113,64.8c0,1.322,-1.072,2.394,-2.395,2.394c-1.321,0,-2.393,-1.071,-2.393,-2.394" fill="#E6E6E6"/>
  1768. <circle cx="255.718" cy="64.8" fill="#383838" r="1.197"/>
  1769. </g>
  1770. <g id="pin35G">
  1771. <path d="M253.326,57.6c0,-1.322,1.071,-2.394,2.393,-2.394c1.322,0,2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  1772. <path d="M258.113,57.6c0,1.322,-1.072,2.394,-2.395,2.394c-1.321,0,-2.393,-1.072,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  1773. <circle cx="255.718" cy="57.6" fill="#383838" r="1.197"/>
  1774. </g>
  1775. <g id="pin35H">
  1776. <path d="M253.326,50.4c0,-1.322,1.071,-2.394,2.393,-2.394c1.322,0,2.395,1.072,2.395,2.394l0,0" fill="#BFBFBF"/>
  1777. <path d="M258.113,50.4c0,1.322,-1.072,2.394,-2.395,2.394c-1.321,0,-2.393,-1.072,-2.393,-2.394" fill="#E6E6E6"/>
  1778. <circle cx="255.718" cy="50.4" fill="#383838" r="1.197"/>
  1779. </g>
  1780. <g id="pin35I">
  1781. <path d="M253.326,43.2c0,-1.322,1.071,-2.394,2.393,-2.394c1.322,0,2.395,1.071,2.395,2.394" fill="#BFBFBF"/>
  1782. <path d="M258.113,43.2c0,1.322,-1.072,2.394,-2.395,2.394c-1.321,0,-2.393,-1.072,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  1783. <circle cx="255.718" cy="43.2" fill="#383838" r="1.197"/>
  1784. </g>
  1785. <g id="pin35J">
  1786. <path d="M253.326,36c0,-1.322,1.071,-2.394,2.393,-2.394c1.322,0,2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  1787. <path d="M258.113,36c0,1.322,-1.072,2.394,-2.395,2.394c-1.321,0,-2.393,-1.071,-2.393,-2.394" fill="#E6E6E6"/>
  1788. <circle cx="255.718" cy="36" fill="#383838" r="1.197"/>
  1789. </g>
  1790. <g id="pin36A">
  1791. <path d="M260.525,115.2c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394" fill="#BFBFBF"/>
  1792. <path d="M265.312,115.2c0,1.322,-1.071,2.394,-2.394,2.394c-1.321,0,-2.394,-1.071,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  1793. <circle cx="262.918" cy="115.2" fill="#383838" r="1.197"/>
  1794. </g>
  1795. <g id="pin36B">
  1796. <path d="M260.525,108c0,-1.322,1.072,-2.395,2.394,-2.395c1.322,0,2.394,1.072,2.394,2.395" fill="#BFBFBF"/>
  1797. <path d="M265.312,108c0,1.321,-1.071,2.393,-2.394,2.393c-1.321,0,-2.394,-1.071,-2.394,-2.393" fill="#E6E6E6"/>
  1798. <circle cx="262.918" cy="108" fill="#383838" r="1.197"/>
  1799. </g>
  1800. <g id="pin36C">
  1801. <path d="M260.525,100.799c0,-1.321,1.072,-2.393,2.394,-2.393c1.322,0,2.394,1.071,2.394,2.393l0,0" fill="#BFBFBF"/>
  1802. <path d="M265.312,100.799c0,1.322,-1.071,2.395,-2.394,2.395c-1.321,0,-2.394,-1.072,-2.394,-2.395" fill="#E6E6E6"/>
  1803. <circle cx="262.918" cy="100.8" fill="#383838" r="1.197"/>
  1804. </g>
  1805. <g id="pin36D">
  1806. <path d="M260.525,93.6c0,-1.322,1.072,-2.395,2.394,-2.395c1.322,0,2.394,1.072,2.394,2.395" fill="#BFBFBF"/>
  1807. <path d="M265.312,93.6c0,1.322,-1.071,2.394,-2.394,2.394c-1.321,0,-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  1808. <circle cx="262.918" cy="93.6" fill="#383838" r="1.197"/>
  1809. </g>
  1810. <g id="pin36E">
  1811. <path d="M260.525,86.4c0,-1.321,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  1812. <path d="M265.312,86.4c0,1.321,-1.071,2.394,-2.394,2.394c-1.321,0,-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  1813. <circle cx="262.918" cy="86.4" fill="#383838" r="1.196"/>
  1814. </g>
  1815. <g id="pin36F">
  1816. <path d="M260.525,64.8c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  1817. <path d="M265.312,64.8c0,1.322,-1.071,2.394,-2.394,2.394c-1.321,0,-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  1818. <circle cx="262.918" cy="64.8" fill="#383838" r="1.197"/>
  1819. </g>
  1820. <g id="pin36G">
  1821. <path d="M260.525,57.6c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  1822. <path d="M265.312,57.6c0,1.322,-1.071,2.394,-2.394,2.394c-1.321,0,-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  1823. <circle cx="262.918" cy="57.6" fill="#383838" r="1.197"/>
  1824. </g>
  1825. <g id="pin36H">
  1826. <path d="M260.525,50.4c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394l0,0" fill="#BFBFBF"/>
  1827. <path d="M265.312,50.4c0,1.322,-1.071,2.394,-2.394,2.394c-1.321,0,-2.394,-1.072,-2.394,-2.394" fill="#E6E6E6"/>
  1828. <circle cx="262.918" cy="50.4" fill="#383838" r="1.197"/>
  1829. </g>
  1830. <g id="pin36I">
  1831. <path d="M260.525,43.2c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394" fill="#BFBFBF"/>
  1832. <path d="M265.312,43.2c0,1.322,-1.071,2.394,-2.394,2.394c-1.321,0,-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  1833. <circle cx="262.918" cy="43.2" fill="#383838" r="1.197"/>
  1834. </g>
  1835. <g id="pin36J">
  1836. <path d="M260.525,36c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  1837. <path d="M265.312,36c0,1.322,-1.071,2.394,-2.394,2.394c-1.321,0,-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  1838. <circle cx="262.918" cy="36" fill="#383838" r="1.197"/>
  1839. </g>
  1840. <g id="pin37A">
  1841. <path d="M267.725,115.2c0,-1.322,1.071,-2.394,2.394,-2.394s2.394,1.071,2.394,2.394" fill="#BFBFBF"/>
  1842. <path d="M272.512,115.2c0,1.322,-1.071,2.394,-2.394,2.394s-2.394,-1.071,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  1843. <circle cx="270.119" cy="115.2" fill="#383838" r="1.197"/>
  1844. </g>
  1845. <g id="pin37B">
  1846. <path d="M267.725,108c0,-1.322,1.071,-2.395,2.394,-2.395s2.394,1.072,2.394,2.395" fill="#BFBFBF"/>
  1847. <path d="M272.512,108c0,1.321,-1.071,2.393,-2.394,2.393s-2.394,-1.071,-2.394,-2.393" fill="#E6E6E6"/>
  1848. <circle cx="270.119" cy="108" fill="#383838" r="1.197"/>
  1849. </g>
  1850. <g id="pin37C">
  1851. <path d="M267.725,100.799c0,-1.321,1.071,-2.393,2.394,-2.393s2.394,1.071,2.394,2.393l0,0" fill="#BFBFBF"/>
  1852. <path d="M272.512,100.799c0,1.322,-1.071,2.395,-2.394,2.395s-2.394,-1.072,-2.394,-2.395" fill="#E6E6E6"/>
  1853. <circle cx="270.119" cy="100.8" fill="#383838" r="1.197"/>
  1854. </g>
  1855. <g id="pin37D">
  1856. <path d="M267.725,93.6c0,-1.322,1.071,-2.395,2.394,-2.395s2.394,1.072,2.394,2.395" fill="#BFBFBF"/>
  1857. <path d="M272.512,93.6c0,1.322,-1.071,2.394,-2.394,2.394s-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  1858. <circle cx="270.119" cy="93.6" fill="#383838" r="1.197"/>
  1859. </g>
  1860. <g id="pin37E">
  1861. <path d="M267.725,86.4c0,-1.321,1.071,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  1862. <path d="M272.512,86.4c0,1.321,-1.071,2.394,-2.394,2.394s-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  1863. <circle cx="270.119" cy="86.4" fill="#383838" r="1.196"/>
  1864. </g>
  1865. <g id="pin37F">
  1866. <path d="M267.725,64.8c0,-1.322,1.071,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  1867. <path d="M272.512,64.8c0,1.322,-1.071,2.394,-2.394,2.394s-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  1868. <circle cx="270.119" cy="64.8" fill="#383838" r="1.197"/>
  1869. </g>
  1870. <g id="pin37G">
  1871. <path d="M267.725,57.6c0,-1.322,1.071,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  1872. <path d="M272.512,57.6c0,1.322,-1.071,2.394,-2.394,2.394s-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  1873. <circle cx="270.119" cy="57.6" fill="#383838" r="1.197"/>
  1874. </g>
  1875. <g id="pin37H">
  1876. <path d="M267.725,50.4c0,-1.322,1.071,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394l0,0" fill="#BFBFBF"/>
  1877. <path d="M272.512,50.4c0,1.322,-1.071,2.394,-2.394,2.394s-2.394,-1.072,-2.394,-2.394" fill="#E6E6E6"/>
  1878. <circle cx="270.119" cy="50.4" fill="#383838" r="1.197"/>
  1879. </g>
  1880. <g id="pin37I">
  1881. <path d="M267.725,43.2c0,-1.322,1.071,-2.394,2.394,-2.394s2.394,1.071,2.394,2.394" fill="#BFBFBF"/>
  1882. <path d="M272.512,43.2c0,1.322,-1.071,2.394,-2.394,2.394s-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  1883. <circle cx="270.119" cy="43.2" fill="#383838" r="1.197"/>
  1884. </g>
  1885. <g id="pin37J">
  1886. <path d="M267.725,36c0,-1.322,1.071,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  1887. <path d="M272.512,36c0,1.322,-1.071,2.394,-2.394,2.394s-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  1888. <circle cx="270.119" cy="36" fill="#383838" r="1.197"/>
  1889. </g>
  1890. <g id="pin38A">
  1891. <path d="M274.925,115.2c0,-1.322,1.071,-2.394,2.393,-2.394c1.322,0,2.395,1.071,2.395,2.394" fill="#BFBFBF"/>
  1892. <path d="M279.712,115.2c0,1.322,-1.072,2.394,-2.395,2.394c-1.321,0,-2.393,-1.071,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  1893. <circle cx="277.318" cy="115.2" fill="#383838" r="1.197"/>
  1894. </g>
  1895. <g id="pin38B">
  1896. <path d="M274.925,108c0,-1.322,1.071,-2.395,2.393,-2.395c1.322,0,2.395,1.072,2.395,2.395" fill="#BFBFBF"/>
  1897. <path d="M279.712,108c0,1.321,-1.072,2.393,-2.395,2.393c-1.321,0,-2.393,-1.071,-2.393,-2.393" fill="#E6E6E6"/>
  1898. <circle cx="277.318" cy="108" fill="#383838" r="1.197"/>
  1899. </g>
  1900. <g id="pin38C">
  1901. <path d="M274.925,100.799c0,-1.321,1.071,-2.393,2.393,-2.393c1.322,0,2.395,1.071,2.395,2.393l0,0" fill="#BFBFBF"/>
  1902. <path d="M279.712,100.799c0,1.322,-1.072,2.395,-2.395,2.395c-1.321,0,-2.393,-1.072,-2.393,-2.395" fill="#E6E6E6"/>
  1903. <circle cx="277.318" cy="100.8" fill="#383838" r="1.197"/>
  1904. </g>
  1905. <g id="pin38D">
  1906. <path d="M274.925,93.6c0,-1.322,1.071,-2.395,2.393,-2.395c1.322,0,2.395,1.072,2.395,2.395" fill="#BFBFBF"/>
  1907. <path d="M279.712,93.6c0,1.322,-1.072,2.394,-2.395,2.394c-1.321,0,-2.393,-1.071,-2.393,-2.394" fill="#E6E6E6"/>
  1908. <circle cx="277.318" cy="93.6" fill="#383838" r="1.197"/>
  1909. </g>
  1910. <g id="pin38E">
  1911. <path d="M274.925,86.4c0,-1.321,1.071,-2.394,2.393,-2.394c1.322,0,2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  1912. <path d="M279.712,86.4c0,1.321,-1.072,2.394,-2.395,2.394c-1.321,0,-2.393,-1.072,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  1913. <circle cx="277.318" cy="86.4" fill="#383838" r="1.196"/>
  1914. </g>
  1915. <g id="pin38F">
  1916. <path d="M274.925,64.8c0,-1.322,1.071,-2.394,2.393,-2.394c1.322,0,2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  1917. <path d="M279.712,64.8c0,1.322,-1.072,2.394,-2.395,2.394c-1.321,0,-2.393,-1.071,-2.393,-2.394" fill="#E6E6E6"/>
  1918. <circle cx="277.318" cy="64.8" fill="#383838" r="1.197"/>
  1919. </g>
  1920. <g id="pin38G">
  1921. <path d="M274.925,57.6c0,-1.322,1.071,-2.394,2.393,-2.394c1.322,0,2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  1922. <path d="M279.712,57.6c0,1.322,-1.072,2.394,-2.395,2.394c-1.321,0,-2.393,-1.072,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  1923. <circle cx="277.318" cy="57.6" fill="#383838" r="1.197"/>
  1924. </g>
  1925. <g id="pin38H">
  1926. <path d="M274.925,50.4c0,-1.322,1.071,-2.394,2.393,-2.394c1.322,0,2.395,1.072,2.395,2.394l0,0" fill="#BFBFBF"/>
  1927. <path d="M279.712,50.4c0,1.322,-1.072,2.394,-2.395,2.394c-1.321,0,-2.393,-1.072,-2.393,-2.394" fill="#E6E6E6"/>
  1928. <circle cx="277.318" cy="50.4" fill="#383838" r="1.197"/>
  1929. </g>
  1930. <g id="pin38I">
  1931. <path d="M274.925,43.2c0,-1.322,1.071,-2.394,2.393,-2.394c1.322,0,2.395,1.071,2.395,2.394" fill="#BFBFBF"/>
  1932. <path d="M279.712,43.2c0,1.322,-1.072,2.394,-2.395,2.394c-1.321,0,-2.393,-1.072,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  1933. <circle cx="277.318" cy="43.2" fill="#383838" r="1.197"/>
  1934. </g>
  1935. <g id="pin38J">
  1936. <path d="M274.925,36c0,-1.322,1.071,-2.394,2.393,-2.394c1.322,0,2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  1937. <path d="M279.712,36c0,1.322,-1.072,2.394,-2.395,2.394c-1.321,0,-2.393,-1.071,-2.393,-2.394" fill="#E6E6E6"/>
  1938. <circle cx="277.318" cy="36" fill="#383838" r="1.197"/>
  1939. </g>
  1940. <g id="pin39A">
  1941. <path d="M282.125,115.2c0,-1.322,1.072,-2.394,2.395,-2.394c1.321,0,2.393,1.071,2.393,2.394" fill="#BFBFBF"/>
  1942. <path d="M286.912,115.2c0,1.322,-1.071,2.394,-2.393,2.394c-1.322,0,-2.395,-1.071,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  1943. <circle cx="284.519" cy="115.2" fill="#383838" r="1.197"/>
  1944. </g>
  1945. <g id="pin39B">
  1946. <path d="M282.125,108c0,-1.322,1.072,-2.395,2.395,-2.395c1.321,0,2.393,1.072,2.393,2.395" fill="#BFBFBF"/>
  1947. <path d="M286.912,108c0,1.321,-1.071,2.393,-2.393,2.393c-1.322,0,-2.395,-1.071,-2.395,-2.393" fill="#E6E6E6"/>
  1948. <circle cx="284.519" cy="108" fill="#383838" r="1.197"/>
  1949. </g>
  1950. <g id="pin39C">
  1951. <path d="M282.125,100.799c0,-1.321,1.072,-2.393,2.395,-2.393c1.321,0,2.393,1.071,2.393,2.393l0,0" fill="#BFBFBF"/>
  1952. <path d="M286.912,100.799c0,1.322,-1.071,2.395,-2.393,2.395c-1.322,0,-2.395,-1.072,-2.395,-2.395" fill="#E6E6E6"/>
  1953. <circle cx="284.519" cy="100.8" fill="#383838" r="1.197"/>
  1954. </g>
  1955. <g id="pin39D">
  1956. <path d="M282.125,93.6c0,-1.322,1.072,-2.395,2.395,-2.395c1.321,0,2.393,1.072,2.393,2.395" fill="#BFBFBF"/>
  1957. <path d="M286.912,93.6c0,1.322,-1.071,2.394,-2.393,2.394c-1.322,0,-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  1958. <circle cx="284.519" cy="93.6" fill="#383838" r="1.197"/>
  1959. </g>
  1960. <g id="pin39E">
  1961. <path d="M282.125,86.4c0,-1.321,1.072,-2.394,2.395,-2.394c1.321,0,2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  1962. <path d="M286.912,86.4c0,1.321,-1.071,2.394,-2.393,2.394c-1.322,0,-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  1963. <circle cx="284.519" cy="86.4" fill="#383838" r="1.196"/>
  1964. </g>
  1965. <g id="pin39F">
  1966. <path d="M282.125,64.8c0,-1.322,1.072,-2.394,2.395,-2.394c1.321,0,2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  1967. <path d="M286.912,64.8c0,1.322,-1.071,2.394,-2.393,2.394c-1.322,0,-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  1968. <circle cx="284.519" cy="64.8" fill="#383838" r="1.197"/>
  1969. </g>
  1970. <g id="pin39G">
  1971. <path d="M282.125,57.6c0,-1.322,1.072,-2.394,2.395,-2.394c1.321,0,2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  1972. <path d="M286.912,57.6c0,1.322,-1.071,2.394,-2.393,2.394c-1.322,0,-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  1973. <circle cx="284.519" cy="57.6" fill="#383838" r="1.197"/>
  1974. </g>
  1975. <g id="pin39H">
  1976. <path d="M282.125,50.4c0,-1.322,1.072,-2.394,2.395,-2.394c1.321,0,2.393,1.072,2.393,2.394l0,0" fill="#BFBFBF"/>
  1977. <path d="M286.912,50.4c0,1.322,-1.071,2.394,-2.393,2.394c-1.322,0,-2.395,-1.072,-2.395,-2.394" fill="#E6E6E6"/>
  1978. <circle cx="284.519" cy="50.4" fill="#383838" r="1.197"/>
  1979. </g>
  1980. <g id="pin39I">
  1981. <path d="M282.125,43.2c0,-1.322,1.072,-2.394,2.395,-2.394c1.321,0,2.393,1.071,2.393,2.394" fill="#BFBFBF"/>
  1982. <path d="M286.912,43.2c0,1.322,-1.071,2.394,-2.393,2.394c-1.322,0,-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  1983. <circle cx="284.519" cy="43.2" fill="#383838" r="1.197"/>
  1984. </g>
  1985. <g id="pin39J">
  1986. <path d="M282.125,36c0,-1.322,1.072,-2.394,2.395,-2.394c1.321,0,2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  1987. <path d="M286.912,36c0,1.322,-1.071,2.394,-2.393,2.394c-1.322,0,-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  1988. <circle cx="284.519" cy="36" fill="#383838" r="1.197"/>
  1989. </g>
  1990. <g id="pin40A">
  1991. <path d="M289.326,115.2c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.071,2.395,2.394" fill="#BFBFBF"/>
  1992. <path d="M294.113,115.2c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.071,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  1993. <circle cx="291.718" cy="115.2" fill="#383838" r="1.197"/>
  1994. </g>
  1995. <g id="pin40B">
  1996. <path d="M289.326,108c0,-1.322,1.07,-2.395,2.393,-2.395s2.395,1.072,2.395,2.395" fill="#BFBFBF"/>
  1997. <path d="M294.113,108c0,1.321,-1.072,2.393,-2.395,2.393s-2.393,-1.071,-2.393,-2.393" fill="#E6E6E6"/>
  1998. <circle cx="291.718" cy="108" fill="#383838" r="1.197"/>
  1999. </g>
  2000. <g id="pin40C">
  2001. <path d="M289.326,100.799c0,-1.321,1.07,-2.393,2.393,-2.393s2.395,1.071,2.395,2.393l0,0" fill="#BFBFBF"/>
  2002. <path d="M294.113,100.799c0,1.322,-1.072,2.395,-2.395,2.395s-2.393,-1.072,-2.393,-2.395" fill="#E6E6E6"/>
  2003. <circle cx="291.718" cy="100.8" fill="#383838" r="1.197"/>
  2004. </g>
  2005. <g id="pin40D">
  2006. <path d="M289.326,93.6c0,-1.322,1.07,-2.395,2.393,-2.395s2.395,1.072,2.395,2.395" fill="#BFBFBF"/>
  2007. <path d="M294.113,93.6c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.071,-2.393,-2.394" fill="#E6E6E6"/>
  2008. <circle cx="291.718" cy="93.6" fill="#383838" r="1.197"/>
  2009. </g>
  2010. <g id="pin40E">
  2011. <path d="M289.326,86.4c0,-1.321,1.07,-2.394,2.393,-2.394s2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  2012. <path d="M294.113,86.4c0,1.321,-1.072,2.394,-2.395,2.394s-2.393,-1.072,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  2013. <circle cx="291.718" cy="86.4" fill="#383838" r="1.196"/>
  2014. </g>
  2015. <g id="pin40F">
  2016. <path d="M289.326,64.8c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  2017. <path d="M294.113,64.8c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.071,-2.393,-2.394" fill="#E6E6E6"/>
  2018. <circle cx="291.718" cy="64.8" fill="#383838" r="1.197"/>
  2019. </g>
  2020. <g id="pin40G">
  2021. <path d="M289.326,57.6c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  2022. <path d="M294.113,57.6c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.072,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  2023. <circle cx="291.718" cy="57.6" fill="#383838" r="1.197"/>
  2024. </g>
  2025. <g id="pin40H">
  2026. <path d="M289.326,50.4c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.072,2.395,2.394l0,0" fill="#BFBFBF"/>
  2027. <path d="M294.113,50.4c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.072,-2.393,-2.394" fill="#E6E6E6"/>
  2028. <circle cx="291.718" cy="50.4" fill="#383838" r="1.197"/>
  2029. </g>
  2030. <g id="pin40I">
  2031. <path d="M289.326,43.2c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.071,2.395,2.394" fill="#BFBFBF"/>
  2032. <path d="M294.113,43.2c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.072,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  2033. <circle cx="291.718" cy="43.2" fill="#383838" r="1.197"/>
  2034. </g>
  2035. <g id="pin40J">
  2036. <path d="M289.326,36c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  2037. <path d="M294.113,36c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.071,-2.393,-2.394" fill="#E6E6E6"/>
  2038. <circle cx="291.718" cy="36" fill="#383838" r="1.197"/>
  2039. </g>
  2040. <g id="pin41A">
  2041. <path d="M296.525,115.2c0,-1.322,1.072,-2.394,2.393,-2.394c1.322,0,2.395,1.071,2.395,2.394" fill="#BFBFBF"/>
  2042. <path d="M301.312,115.2c0,1.322,-1.072,2.394,-2.395,2.394c-1.32,0,-2.393,-1.071,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  2043. <circle cx="298.917" cy="115.2" fill="#383838" r="1.197"/>
  2044. </g>
  2045. <g id="pin41B">
  2046. <path d="M296.525,108c0,-1.322,1.072,-2.395,2.393,-2.395c1.322,0,2.395,1.072,2.395,2.395" fill="#BFBFBF"/>
  2047. <path d="M301.312,108c0,1.321,-1.072,2.393,-2.395,2.393c-1.32,0,-2.393,-1.071,-2.393,-2.393" fill="#E6E6E6"/>
  2048. <circle cx="298.917" cy="108" fill="#383838" r="1.197"/>
  2049. </g>
  2050. <g id="pin41C">
  2051. <path d="M296.525,100.799c0,-1.321,1.072,-2.393,2.393,-2.393c1.322,0,2.395,1.071,2.395,2.393l0,0" fill="#BFBFBF"/>
  2052. <path d="M301.312,100.799c0,1.322,-1.072,2.395,-2.395,2.395c-1.32,0,-2.393,-1.072,-2.393,-2.395" fill="#E6E6E6"/>
  2053. <circle cx="298.917" cy="100.8" fill="#383838" r="1.197"/>
  2054. </g>
  2055. <g id="pin41D">
  2056. <path d="M296.525,93.6c0,-1.322,1.072,-2.395,2.393,-2.395c1.322,0,2.395,1.072,2.395,2.395" fill="#BFBFBF"/>
  2057. <path d="M301.312,93.6c0,1.322,-1.072,2.394,-2.395,2.394c-1.32,0,-2.393,-1.071,-2.393,-2.394" fill="#E6E6E6"/>
  2058. <circle cx="298.917" cy="93.6" fill="#383838" r="1.197"/>
  2059. </g>
  2060. <g id="pin41E">
  2061. <path d="M296.525,86.4c0,-1.321,1.072,-2.394,2.393,-2.394c1.322,0,2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  2062. <path d="M301.312,86.4c0,1.321,-1.072,2.394,-2.395,2.394c-1.32,0,-2.393,-1.072,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  2063. <circle cx="298.917" cy="86.4" fill="#383838" r="1.196"/>
  2064. </g>
  2065. <g id="pin41F">
  2066. <path d="M296.525,64.8c0,-1.322,1.072,-2.394,2.393,-2.394c1.322,0,2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  2067. <path d="M301.312,64.8c0,1.322,-1.072,2.394,-2.395,2.394c-1.32,0,-2.393,-1.071,-2.393,-2.394" fill="#E6E6E6"/>
  2068. <circle cx="298.917" cy="64.8" fill="#383838" r="1.197"/>
  2069. </g>
  2070. <g id="pin41G">
  2071. <path d="M296.525,57.6c0,-1.322,1.072,-2.394,2.393,-2.394c1.322,0,2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  2072. <path d="M301.312,57.6c0,1.322,-1.072,2.394,-2.395,2.394c-1.32,0,-2.393,-1.072,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  2073. <circle cx="298.917" cy="57.6" fill="#383838" r="1.197"/>
  2074. </g>
  2075. <g id="pin41H">
  2076. <path d="M296.525,50.4c0,-1.322,1.072,-2.394,2.393,-2.394c1.322,0,2.395,1.072,2.395,2.394l0,0" fill="#BFBFBF"/>
  2077. <path d="M301.312,50.4c0,1.322,-1.072,2.394,-2.395,2.394c-1.32,0,-2.393,-1.072,-2.393,-2.394" fill="#E6E6E6"/>
  2078. <circle cx="298.917" cy="50.4" fill="#383838" r="1.197"/>
  2079. </g>
  2080. <g id="pin41I">
  2081. <path d="M296.525,43.2c0,-1.322,1.072,-2.394,2.393,-2.394c1.322,0,2.395,1.071,2.395,2.394" fill="#BFBFBF"/>
  2082. <path d="M301.312,43.2c0,1.322,-1.072,2.394,-2.395,2.394c-1.32,0,-2.393,-1.072,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  2083. <circle cx="298.917" cy="43.2" fill="#383838" r="1.197"/>
  2084. </g>
  2085. <g id="pin41J">
  2086. <path d="M296.525,36c0,-1.322,1.072,-2.394,2.393,-2.394c1.322,0,2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  2087. <path d="M301.312,36c0,1.322,-1.072,2.394,-2.395,2.394c-1.32,0,-2.393,-1.071,-2.393,-2.394" fill="#E6E6E6"/>
  2088. <circle cx="298.917" cy="36" fill="#383838" r="1.197"/>
  2089. </g>
  2090. <g id="pin42A">
  2091. <path d="M303.724,115.2c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.071,2.393,2.394" fill="#BFBFBF"/>
  2092. <path d="M308.511,115.2c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.071,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  2093. <circle cx="306.119" cy="115.2" fill="#383838" r="1.197"/>
  2094. </g>
  2095. <g id="pin42B">
  2096. <path d="M303.724,108c0,-1.322,1.072,-2.395,2.395,-2.395s2.393,1.072,2.393,2.395" fill="#BFBFBF"/>
  2097. <path d="M308.511,108c0,1.321,-1.07,2.393,-2.393,2.393s-2.395,-1.071,-2.395,-2.393" fill="#E6E6E6"/>
  2098. <circle cx="306.119" cy="108" fill="#383838" r="1.197"/>
  2099. </g>
  2100. <g id="pin42C">
  2101. <path d="M303.724,100.799c0,-1.321,1.072,-2.393,2.395,-2.393s2.393,1.071,2.393,2.393l0,0" fill="#BFBFBF"/>
  2102. <path d="M308.511,100.799c0,1.322,-1.07,2.395,-2.393,2.395s-2.395,-1.072,-2.395,-2.395" fill="#E6E6E6"/>
  2103. <circle cx="306.119" cy="100.8" fill="#383838" r="1.197"/>
  2104. </g>
  2105. <g id="pin42D">
  2106. <path d="M303.724,93.6c0,-1.322,1.072,-2.395,2.395,-2.395s2.393,1.072,2.393,2.395" fill="#BFBFBF"/>
  2107. <path d="M308.511,93.6c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  2108. <circle cx="306.119" cy="93.6" fill="#383838" r="1.197"/>
  2109. </g>
  2110. <g id="pin42E">
  2111. <path d="M303.724,86.4c0,-1.321,1.072,-2.394,2.395,-2.394s2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  2112. <path d="M308.511,86.4c0,1.321,-1.07,2.394,-2.393,2.394s-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  2113. <circle cx="306.119" cy="86.4" fill="#383838" r="1.196"/>
  2114. </g>
  2115. <g id="pin42F">
  2116. <path d="M303.724,64.8c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  2117. <path d="M308.511,64.8c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  2118. <circle cx="306.119" cy="64.8" fill="#383838" r="1.197"/>
  2119. </g>
  2120. <g id="pin42G">
  2121. <path d="M303.724,57.6c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  2122. <path d="M308.511,57.6c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  2123. <circle cx="306.119" cy="57.6" fill="#383838" r="1.197"/>
  2124. </g>
  2125. <g id="pin42H">
  2126. <path d="M303.724,50.4c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.072,2.393,2.394l0,0" fill="#BFBFBF"/>
  2127. <path d="M308.511,50.4c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.072,-2.395,-2.394" fill="#E6E6E6"/>
  2128. <circle cx="306.119" cy="50.4" fill="#383838" r="1.197"/>
  2129. </g>
  2130. <g id="pin42I">
  2131. <path d="M303.724,43.2c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.071,2.393,2.394" fill="#BFBFBF"/>
  2132. <path d="M308.511,43.2c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  2133. <circle cx="306.119" cy="43.2" fill="#383838" r="1.197"/>
  2134. </g>
  2135. <g id="pin42J">
  2136. <path d="M303.724,36c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  2137. <path d="M308.511,36c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  2138. <circle cx="306.119" cy="36" fill="#383838" r="1.197"/>
  2139. </g>
  2140. <g id="pin43A">
  2141. <path d="M310.925,115.2c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.071,2.395,2.394" fill="#BFBFBF"/>
  2142. <path d="M315.712,115.2c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.071,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  2143. <circle cx="313.318" cy="115.2" fill="#383838" r="1.197"/>
  2144. </g>
  2145. <g id="pin43B">
  2146. <path d="M310.925,108c0,-1.322,1.07,-2.395,2.393,-2.395s2.395,1.072,2.395,2.395" fill="#BFBFBF"/>
  2147. <path d="M315.712,108c0,1.321,-1.072,2.393,-2.395,2.393s-2.393,-1.071,-2.393,-2.393" fill="#E6E6E6"/>
  2148. <circle cx="313.318" cy="108" fill="#383838" r="1.197"/>
  2149. </g>
  2150. <g id="pin43C">
  2151. <path d="M310.925,100.799c0,-1.321,1.07,-2.393,2.393,-2.393s2.395,1.071,2.395,2.393l0,0" fill="#BFBFBF"/>
  2152. <path d="M315.712,100.799c0,1.322,-1.072,2.395,-2.395,2.395s-2.393,-1.072,-2.393,-2.395" fill="#E6E6E6"/>
  2153. <circle cx="313.318" cy="100.8" fill="#383838" r="1.197"/>
  2154. </g>
  2155. <g id="pin43D">
  2156. <path d="M310.925,93.6c0,-1.322,1.07,-2.395,2.393,-2.395s2.395,1.072,2.395,2.395" fill="#BFBFBF"/>
  2157. <path d="M315.712,93.6c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.071,-2.393,-2.394" fill="#E6E6E6"/>
  2158. <circle cx="313.318" cy="93.6" fill="#383838" r="1.197"/>
  2159. </g>
  2160. <g id="pin43E">
  2161. <path d="M310.925,86.4c0,-1.321,1.07,-2.394,2.393,-2.394s2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  2162. <path d="M315.712,86.4c0,1.321,-1.072,2.394,-2.395,2.394s-2.393,-1.072,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  2163. <circle cx="313.318" cy="86.4" fill="#383838" r="1.196"/>
  2164. </g>
  2165. <g id="pin43F">
  2166. <path d="M310.925,64.8c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  2167. <path d="M315.712,64.8c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.071,-2.393,-2.394" fill="#E6E6E6"/>
  2168. <circle cx="313.318" cy="64.8" fill="#383838" r="1.197"/>
  2169. </g>
  2170. <g id="pin43G">
  2171. <path d="M310.925,57.6c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  2172. <path d="M315.712,57.6c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.072,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  2173. <circle cx="313.318" cy="57.6" fill="#383838" r="1.197"/>
  2174. </g>
  2175. <g id="pin43H">
  2176. <path d="M310.925,50.4c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.072,2.395,2.394l0,0" fill="#BFBFBF"/>
  2177. <path d="M315.712,50.4c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.072,-2.393,-2.394" fill="#E6E6E6"/>
  2178. <circle cx="313.318" cy="50.4" fill="#383838" r="1.197"/>
  2179. </g>
  2180. <g id="pin43I">
  2181. <path d="M310.925,43.2c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.071,2.395,2.394" fill="#BFBFBF"/>
  2182. <path d="M315.712,43.2c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.072,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  2183. <circle cx="313.318" cy="43.2" fill="#383838" r="1.197"/>
  2184. </g>
  2185. <g id="pin43J">
  2186. <path d="M310.925,36c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  2187. <path d="M315.712,36c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.071,-2.393,-2.394" fill="#E6E6E6"/>
  2188. <circle cx="313.318" cy="36" fill="#383838" r="1.197"/>
  2189. </g>
  2190. <g id="pin44A">
  2191. <path d="M318.125,115.2c0,-1.322,1.072,-2.394,2.395,-2.394c1.32,0,2.393,1.071,2.393,2.394" fill="#BFBFBF"/>
  2192. <path d="M322.912,115.2c0,1.322,-1.072,2.394,-2.393,2.394c-1.322,0,-2.395,-1.071,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  2193. <circle cx="320.519" cy="115.2" fill="#383838" r="1.197"/>
  2194. </g>
  2195. <g id="pin44B">
  2196. <path d="M318.125,108c0,-1.322,1.072,-2.395,2.395,-2.395c1.32,0,2.393,1.072,2.393,2.395" fill="#BFBFBF"/>
  2197. <path d="M322.912,108c0,1.321,-1.072,2.393,-2.393,2.393c-1.322,0,-2.395,-1.071,-2.395,-2.393" fill="#E6E6E6"/>
  2198. <circle cx="320.519" cy="108" fill="#383838" r="1.197"/>
  2199. </g>
  2200. <g id="pin44C">
  2201. <path d="M318.125,100.799c0,-1.321,1.072,-2.393,2.395,-2.393c1.32,0,2.393,1.071,2.393,2.393l0,0" fill="#BFBFBF"/>
  2202. <path d="M322.912,100.799c0,1.322,-1.072,2.395,-2.393,2.395c-1.322,0,-2.395,-1.072,-2.395,-2.395" fill="#E6E6E6"/>
  2203. <circle cx="320.519" cy="100.8" fill="#383838" r="1.197"/>
  2204. </g>
  2205. <g id="pin44D">
  2206. <path d="M318.125,93.6c0,-1.322,1.072,-2.395,2.395,-2.395c1.32,0,2.393,1.072,2.393,2.395" fill="#BFBFBF"/>
  2207. <path d="M322.912,93.6c0,1.322,-1.072,2.394,-2.393,2.394c-1.322,0,-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  2208. <circle cx="320.519" cy="93.6" fill="#383838" r="1.197"/>
  2209. </g>
  2210. <g id="pin44E">
  2211. <path d="M318.125,86.4c0,-1.321,1.072,-2.394,2.395,-2.394c1.32,0,2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  2212. <path d="M322.912,86.4c0,1.321,-1.072,2.394,-2.393,2.394c-1.322,0,-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  2213. <circle cx="320.519" cy="86.4" fill="#383838" r="1.196"/>
  2214. </g>
  2215. <g id="pin44F">
  2216. <path d="M318.125,64.8c0,-1.322,1.072,-2.394,2.395,-2.394c1.32,0,2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  2217. <path d="M322.912,64.8c0,1.322,-1.072,2.394,-2.393,2.394c-1.322,0,-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  2218. <circle cx="320.519" cy="64.8" fill="#383838" r="1.197"/>
  2219. </g>
  2220. <g id="pin44G">
  2221. <path d="M318.125,57.6c0,-1.322,1.072,-2.394,2.395,-2.394c1.32,0,2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  2222. <path d="M322.912,57.6c0,1.322,-1.072,2.394,-2.393,2.394c-1.322,0,-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  2223. <circle cx="320.519" cy="57.6" fill="#383838" r="1.197"/>
  2224. </g>
  2225. <g id="pin44H">
  2226. <path d="M318.125,50.4c0,-1.322,1.072,-2.394,2.395,-2.394c1.32,0,2.393,1.072,2.393,2.394l0,0" fill="#BFBFBF"/>
  2227. <path d="M322.912,50.4c0,1.322,-1.072,2.394,-2.393,2.394c-1.322,0,-2.395,-1.072,-2.395,-2.394" fill="#E6E6E6"/>
  2228. <circle cx="320.519" cy="50.4" fill="#383838" r="1.197"/>
  2229. </g>
  2230. <g id="pin44I">
  2231. <path d="M318.125,43.2c0,-1.322,1.072,-2.394,2.395,-2.394c1.32,0,2.393,1.071,2.393,2.394" fill="#BFBFBF"/>
  2232. <path d="M322.912,43.2c0,1.322,-1.072,2.394,-2.393,2.394c-1.322,0,-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  2233. <circle cx="320.519" cy="43.2" fill="#383838" r="1.197"/>
  2234. </g>
  2235. <g id="pin44J">
  2236. <path d="M318.125,36c0,-1.322,1.072,-2.394,2.395,-2.394c1.32,0,2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  2237. <path d="M322.912,36c0,1.322,-1.072,2.394,-2.393,2.394c-1.322,0,-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  2238. <circle cx="320.519" cy="36" fill="#383838" r="1.197"/>
  2239. </g>
  2240. <g id="pin45A">
  2241. <path d="M325.324,115.2c0,-1.322,1.072,-2.394,2.395,-2.394s2.395,1.071,2.395,2.394" fill="#BFBFBF"/>
  2242. <path d="M330.113,115.2c0,1.322,-1.072,2.394,-2.395,2.394s-2.395,-1.071,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  2243. <circle cx="327.718" cy="115.2" fill="#383838" r="1.197"/>
  2244. </g>
  2245. <g id="pin45B">
  2246. <path d="M325.324,108c0,-1.322,1.072,-2.395,2.395,-2.395s2.395,1.072,2.395,2.395" fill="#BFBFBF"/>
  2247. <path d="M330.113,108c0,1.321,-1.072,2.393,-2.395,2.393s-2.395,-1.071,-2.395,-2.393" fill="#E6E6E6"/>
  2248. <circle cx="327.718" cy="108" fill="#383838" r="1.197"/>
  2249. </g>
  2250. <g id="pin45C">
  2251. <path d="M325.324,100.799c0,-1.321,1.072,-2.393,2.395,-2.393s2.395,1.071,2.395,2.393l0,0" fill="#BFBFBF"/>
  2252. <path d="M330.113,100.799c0,1.322,-1.072,2.395,-2.395,2.395s-2.395,-1.072,-2.395,-2.395" fill="#E6E6E6"/>
  2253. <circle cx="327.718" cy="100.8" fill="#383838" r="1.197"/>
  2254. </g>
  2255. <g id="pin45D">
  2256. <path d="M325.324,93.6c0,-1.322,1.072,-2.395,2.395,-2.395s2.395,1.072,2.395,2.395" fill="#BFBFBF"/>
  2257. <path d="M330.113,93.6c0,1.322,-1.072,2.394,-2.395,2.394s-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  2258. <circle cx="327.718" cy="93.6" fill="#383838" r="1.197"/>
  2259. </g>
  2260. <g id="pin45E">
  2261. <path d="M325.324,86.4c0,-1.321,1.072,-2.394,2.395,-2.394s2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  2262. <path d="M330.113,86.4c0,1.321,-1.072,2.394,-2.395,2.394s-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  2263. <circle cx="327.718" cy="86.4" fill="#383838" r="1.196"/>
  2264. </g>
  2265. <g id="pin45F">
  2266. <path d="M325.324,64.8c0,-1.322,1.072,-2.394,2.395,-2.394s2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  2267. <path d="M330.113,64.8c0,1.322,-1.072,2.394,-2.395,2.394s-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  2268. <circle cx="327.718" cy="64.8" fill="#383838" r="1.197"/>
  2269. </g>
  2270. <g id="pin45G">
  2271. <path d="M325.324,57.6c0,-1.322,1.072,-2.394,2.395,-2.394s2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  2272. <path d="M330.113,57.6c0,1.322,-1.072,2.394,-2.395,2.394s-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  2273. <circle cx="327.718" cy="57.6" fill="#383838" r="1.197"/>
  2274. </g>
  2275. <g id="pin45H">
  2276. <path d="M325.324,50.4c0,-1.322,1.072,-2.394,2.395,-2.394s2.395,1.072,2.395,2.394l0,0" fill="#BFBFBF"/>
  2277. <path d="M330.113,50.4c0,1.322,-1.072,2.394,-2.395,2.394s-2.395,-1.072,-2.395,-2.394" fill="#E6E6E6"/>
  2278. <circle cx="327.718" cy="50.4" fill="#383838" r="1.197"/>
  2279. </g>
  2280. <g id="pin45I">
  2281. <path d="M325.324,43.2c0,-1.322,1.072,-2.394,2.395,-2.394s2.395,1.071,2.395,2.394" fill="#BFBFBF"/>
  2282. <path d="M330.113,43.2c0,1.322,-1.072,2.394,-2.395,2.394s-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  2283. <circle cx="327.718" cy="43.2" fill="#383838" r="1.197"/>
  2284. </g>
  2285. <g id="pin45J">
  2286. <path d="M325.324,36c0,-1.322,1.072,-2.394,2.395,-2.394s2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  2287. <path d="M330.113,36c0,1.322,-1.072,2.394,-2.395,2.394s-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  2288. <circle cx="327.718" cy="36" fill="#383838" r="1.197"/>
  2289. </g>
  2290. <g id="pin46A">
  2291. <path d="M332.525,115.2c0,-1.322,1.072,-2.394,2.393,-2.394c1.322,0,2.395,1.071,2.395,2.394" fill="#BFBFBF"/>
  2292. <path d="M337.312,115.2c0,1.322,-1.072,2.394,-2.395,2.394c-1.32,0,-2.393,-1.071,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  2293. <circle cx="334.917" cy="115.2" fill="#383838" r="1.197"/>
  2294. </g>
  2295. <g id="pin46B">
  2296. <path d="M332.525,108c0,-1.322,1.072,-2.395,2.393,-2.395c1.322,0,2.395,1.072,2.395,2.395" fill="#BFBFBF"/>
  2297. <path d="M337.312,108c0,1.321,-1.072,2.393,-2.395,2.393c-1.32,0,-2.393,-1.071,-2.393,-2.393" fill="#E6E6E6"/>
  2298. <circle cx="334.917" cy="108" fill="#383838" r="1.197"/>
  2299. </g>
  2300. <g id="pin46C">
  2301. <path d="M332.525,100.799c0,-1.321,1.072,-2.393,2.393,-2.393c1.322,0,2.395,1.071,2.395,2.393l0,0" fill="#BFBFBF"/>
  2302. <path d="M337.312,100.799c0,1.322,-1.072,2.395,-2.395,2.395c-1.32,0,-2.393,-1.072,-2.393,-2.395" fill="#E6E6E6"/>
  2303. <circle cx="334.917" cy="100.8" fill="#383838" r="1.197"/>
  2304. </g>
  2305. <g id="pin46D">
  2306. <path d="M332.525,93.6c0,-1.322,1.072,-2.395,2.393,-2.395c1.322,0,2.395,1.072,2.395,2.395" fill="#BFBFBF"/>
  2307. <path d="M337.312,93.6c0,1.322,-1.072,2.394,-2.395,2.394c-1.32,0,-2.393,-1.071,-2.393,-2.394" fill="#E6E6E6"/>
  2308. <circle cx="334.917" cy="93.6" fill="#383838" r="1.197"/>
  2309. </g>
  2310. <g id="pin46E">
  2311. <path d="M332.525,86.4c0,-1.321,1.072,-2.394,2.393,-2.394c1.322,0,2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  2312. <path d="M337.312,86.4c0,1.321,-1.072,2.394,-2.395,2.394c-1.32,0,-2.393,-1.072,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  2313. <circle cx="334.917" cy="86.4" fill="#383838" r="1.196"/>
  2314. </g>
  2315. <g id="pin46F">
  2316. <path d="M332.525,64.8c0,-1.322,1.072,-2.394,2.393,-2.394c1.322,0,2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  2317. <path d="M337.312,64.8c0,1.322,-1.072,2.394,-2.395,2.394c-1.32,0,-2.393,-1.071,-2.393,-2.394" fill="#E6E6E6"/>
  2318. <circle cx="334.917" cy="64.8" fill="#383838" r="1.197"/>
  2319. </g>
  2320. <g id="pin46G">
  2321. <path d="M332.525,57.6c0,-1.322,1.072,-2.394,2.393,-2.394c1.322,0,2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  2322. <path d="M337.312,57.6c0,1.322,-1.072,2.394,-2.395,2.394c-1.32,0,-2.393,-1.072,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  2323. <circle cx="334.917" cy="57.6" fill="#383838" r="1.197"/>
  2324. </g>
  2325. <g id="pin46H">
  2326. <path d="M332.525,50.4c0,-1.322,1.072,-2.394,2.393,-2.394c1.322,0,2.395,1.072,2.395,2.394l0,0" fill="#BFBFBF"/>
  2327. <path d="M337.312,50.4c0,1.322,-1.072,2.394,-2.395,2.394c-1.32,0,-2.393,-1.072,-2.393,-2.394" fill="#E6E6E6"/>
  2328. <circle cx="334.917" cy="50.4" fill="#383838" r="1.197"/>
  2329. </g>
  2330. <g id="pin46I">
  2331. <path d="M332.525,43.2c0,-1.322,1.072,-2.394,2.393,-2.394c1.322,0,2.395,1.071,2.395,2.394" fill="#BFBFBF"/>
  2332. <path d="M337.312,43.2c0,1.322,-1.072,2.394,-2.395,2.394c-1.32,0,-2.393,-1.072,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  2333. <circle cx="334.917" cy="43.2" fill="#383838" r="1.197"/>
  2334. </g>
  2335. <g id="pin46J">
  2336. <path d="M332.525,36c0,-1.322,1.072,-2.394,2.393,-2.394c1.322,0,2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  2337. <path d="M337.312,36c0,1.322,-1.072,2.394,-2.395,2.394c-1.32,0,-2.393,-1.071,-2.393,-2.394" fill="#E6E6E6"/>
  2338. <circle cx="334.917" cy="36" fill="#383838" r="1.197"/>
  2339. </g>
  2340. <g id="pin47A">
  2341. <path d="M339.724,115.2c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.071,2.393,2.394" fill="#BFBFBF"/>
  2342. <path d="M344.511,115.2c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.071,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  2343. <circle cx="342.119" cy="115.2" fill="#383838" r="1.197"/>
  2344. </g>
  2345. <g id="pin47B">
  2346. <path d="M339.724,108c0,-1.322,1.072,-2.395,2.395,-2.395s2.393,1.072,2.393,2.395" fill="#BFBFBF"/>
  2347. <path d="M344.511,108c0,1.321,-1.07,2.393,-2.393,2.393s-2.395,-1.071,-2.395,-2.393" fill="#E6E6E6"/>
  2348. <circle cx="342.119" cy="108" fill="#383838" r="1.197"/>
  2349. </g>
  2350. <g id="pin47C">
  2351. <path d="M339.724,100.799c0,-1.321,1.072,-2.393,2.395,-2.393s2.393,1.071,2.393,2.393l0,0" fill="#BFBFBF"/>
  2352. <path d="M344.511,100.799c0,1.322,-1.07,2.395,-2.393,2.395s-2.395,-1.072,-2.395,-2.395" fill="#E6E6E6"/>
  2353. <circle cx="342.119" cy="100.8" fill="#383838" r="1.197"/>
  2354. </g>
  2355. <g id="pin47D">
  2356. <path d="M339.724,93.6c0,-1.322,1.072,-2.395,2.395,-2.395s2.393,1.072,2.393,2.395" fill="#BFBFBF"/>
  2357. <path d="M344.511,93.6c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  2358. <circle cx="342.119" cy="93.6" fill="#383838" r="1.197"/>
  2359. </g>
  2360. <g id="pin47E">
  2361. <path d="M339.724,86.4c0,-1.321,1.072,-2.394,2.395,-2.394s2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  2362. <path d="M344.511,86.4c0,1.321,-1.07,2.394,-2.393,2.394s-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  2363. <circle cx="342.119" cy="86.4" fill="#383838" r="1.196"/>
  2364. </g>
  2365. <g id="pin47F">
  2366. <path d="M339.724,64.8c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  2367. <path d="M344.511,64.8c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  2368. <circle cx="342.119" cy="64.8" fill="#383838" r="1.197"/>
  2369. </g>
  2370. <g id="pin47G">
  2371. <path d="M339.724,57.6c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  2372. <path d="M344.511,57.6c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  2373. <circle cx="342.119" cy="57.6" fill="#383838" r="1.197"/>
  2374. </g>
  2375. <g id="pin47H">
  2376. <path d="M339.724,50.4c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.072,2.393,2.394l0,0" fill="#BFBFBF"/>
  2377. <path d="M344.511,50.4c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.072,-2.395,-2.394" fill="#E6E6E6"/>
  2378. <circle cx="342.119" cy="50.4" fill="#383838" r="1.197"/>
  2379. </g>
  2380. <g id="pin47I">
  2381. <path d="M339.724,43.2c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.071,2.393,2.394" fill="#BFBFBF"/>
  2382. <path d="M344.511,43.2c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  2383. <circle cx="342.119" cy="43.2" fill="#383838" r="1.197"/>
  2384. </g>
  2385. <g id="pin47J">
  2386. <path d="M339.724,36c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  2387. <path d="M344.511,36c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  2388. <circle cx="342.119" cy="36" fill="#383838" r="1.197"/>
  2389. </g>
  2390. <g id="pin48A">
  2391. <path d="M346.925,115.2c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.071,2.395,2.394" fill="#BFBFBF"/>
  2392. <path d="M351.712,115.2c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.071,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  2393. <circle cx="349.318" cy="115.2" fill="#383838" r="1.197"/>
  2394. </g>
  2395. <g id="pin48B">
  2396. <path d="M346.925,108c0,-1.322,1.07,-2.395,2.393,-2.395s2.395,1.072,2.395,2.395" fill="#BFBFBF"/>
  2397. <path d="M351.712,108c0,1.321,-1.072,2.393,-2.395,2.393s-2.393,-1.071,-2.393,-2.393" fill="#E6E6E6"/>
  2398. <circle cx="349.318" cy="108" fill="#383838" r="1.197"/>
  2399. </g>
  2400. <g id="pin48C">
  2401. <path d="M346.925,100.799c0,-1.321,1.07,-2.393,2.393,-2.393s2.395,1.071,2.395,2.393l0,0" fill="#BFBFBF"/>
  2402. <path d="M351.712,100.799c0,1.322,-1.072,2.395,-2.395,2.395s-2.393,-1.072,-2.393,-2.395" fill="#E6E6E6"/>
  2403. <circle cx="349.318" cy="100.8" fill="#383838" r="1.197"/>
  2404. </g>
  2405. <g id="pin48D">
  2406. <path d="M346.925,93.6c0,-1.322,1.07,-2.395,2.393,-2.395s2.395,1.072,2.395,2.395" fill="#BFBFBF"/>
  2407. <path d="M351.712,93.6c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.071,-2.393,-2.394" fill="#E6E6E6"/>
  2408. <circle cx="349.318" cy="93.6" fill="#383838" r="1.197"/>
  2409. </g>
  2410. <g id="pin48E">
  2411. <path d="M346.925,86.4c0,-1.321,1.07,-2.394,2.393,-2.394s2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  2412. <path d="M351.712,86.4c0,1.321,-1.072,2.394,-2.395,2.394s-2.393,-1.072,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  2413. <circle cx="349.318" cy="86.4" fill="#383838" r="1.196"/>
  2414. </g>
  2415. <g id="pin48F">
  2416. <path d="M346.925,64.8c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  2417. <path d="M351.712,64.8c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.071,-2.393,-2.394" fill="#E6E6E6"/>
  2418. <circle cx="349.318" cy="64.8" fill="#383838" r="1.197"/>
  2419. </g>
  2420. <g id="pin48G">
  2421. <path d="M346.925,57.6c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  2422. <path d="M351.712,57.6c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.072,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  2423. <circle cx="349.318" cy="57.6" fill="#383838" r="1.197"/>
  2424. </g>
  2425. <g id="pin48H">
  2426. <path d="M346.925,50.4c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.072,2.395,2.394l0,0" fill="#BFBFBF"/>
  2427. <path d="M351.712,50.4c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.072,-2.393,-2.394" fill="#E6E6E6"/>
  2428. <circle cx="349.318" cy="50.4" fill="#383838" r="1.197"/>
  2429. </g>
  2430. <g id="pin48I">
  2431. <path d="M346.925,43.2c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.071,2.395,2.394" fill="#BFBFBF"/>
  2432. <path d="M351.712,43.2c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.072,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  2433. <circle cx="349.318" cy="43.2" fill="#383838" r="1.197"/>
  2434. </g>
  2435. <g id="pin48J">
  2436. <path d="M346.925,36c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  2437. <path d="M351.712,36c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.071,-2.393,-2.394" fill="#E6E6E6"/>
  2438. <circle cx="349.318" cy="36" fill="#383838" r="1.197"/>
  2439. </g>
  2440. <g id="pin49A">
  2441. <path d="M354.125,115.2c0,-1.322,1.072,-2.394,2.395,-2.394c1.32,0,2.393,1.071,2.393,2.394" fill="#BFBFBF"/>
  2442. <path d="M358.912,115.2c0,1.322,-1.072,2.394,-2.393,2.394c-1.322,0,-2.395,-1.071,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  2443. <circle cx="356.519" cy="115.2" fill="#383838" r="1.197"/>
  2444. </g>
  2445. <g id="pin49B">
  2446. <path d="M354.125,108c0,-1.322,1.072,-2.395,2.395,-2.395c1.32,0,2.393,1.072,2.393,2.395" fill="#BFBFBF"/>
  2447. <path d="M358.912,108c0,1.321,-1.072,2.393,-2.393,2.393c-1.322,0,-2.395,-1.071,-2.395,-2.393" fill="#E6E6E6"/>
  2448. <circle cx="356.519" cy="108" fill="#383838" r="1.197"/>
  2449. </g>
  2450. <g id="pin49C">
  2451. <path d="M354.125,100.799c0,-1.321,1.072,-2.393,2.395,-2.393c1.32,0,2.393,1.071,2.393,2.393l0,0" fill="#BFBFBF"/>
  2452. <path d="M358.912,100.799c0,1.322,-1.072,2.395,-2.393,2.395c-1.322,0,-2.395,-1.072,-2.395,-2.395" fill="#E6E6E6"/>
  2453. <circle cx="356.519" cy="100.8" fill="#383838" r="1.197"/>
  2454. </g>
  2455. <g id="pin49D">
  2456. <path d="M354.125,93.6c0,-1.322,1.072,-2.395,2.395,-2.395c1.32,0,2.393,1.072,2.393,2.395" fill="#BFBFBF"/>
  2457. <path d="M358.912,93.6c0,1.322,-1.072,2.394,-2.393,2.394c-1.322,0,-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  2458. <circle cx="356.519" cy="93.6" fill="#383838" r="1.197"/>
  2459. </g>
  2460. <g id="pin49E">
  2461. <path d="M354.125,86.4c0,-1.321,1.072,-2.394,2.395,-2.394c1.32,0,2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  2462. <path d="M358.912,86.4c0,1.321,-1.072,2.394,-2.393,2.394c-1.322,0,-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  2463. <circle cx="356.519" cy="86.4" fill="#383838" r="1.196"/>
  2464. </g>
  2465. <g id="pin49F">
  2466. <path d="M354.125,64.8c0,-1.322,1.072,-2.394,2.395,-2.394c1.32,0,2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  2467. <path d="M358.912,64.8c0,1.322,-1.072,2.394,-2.393,2.394c-1.322,0,-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  2468. <circle cx="356.519" cy="64.8" fill="#383838" r="1.197"/>
  2469. </g>
  2470. <g id="pin49G">
  2471. <path d="M354.125,57.6c0,-1.322,1.072,-2.394,2.395,-2.394c1.32,0,2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  2472. <path d="M358.912,57.6c0,1.322,-1.072,2.394,-2.393,2.394c-1.322,0,-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  2473. <circle cx="356.519" cy="57.6" fill="#383838" r="1.197"/>
  2474. </g>
  2475. <g id="pin49H">
  2476. <path d="M354.125,50.4c0,-1.322,1.072,-2.394,2.395,-2.394c1.32,0,2.393,1.072,2.393,2.394l0,0" fill="#BFBFBF"/>
  2477. <path d="M358.912,50.4c0,1.322,-1.072,2.394,-2.393,2.394c-1.322,0,-2.395,-1.072,-2.395,-2.394" fill="#E6E6E6"/>
  2478. <circle cx="356.519" cy="50.4" fill="#383838" r="1.197"/>
  2479. </g>
  2480. <g id="pin49I">
  2481. <path d="M354.125,43.2c0,-1.322,1.072,-2.394,2.395,-2.394c1.32,0,2.393,1.071,2.393,2.394" fill="#BFBFBF"/>
  2482. <path d="M358.912,43.2c0,1.322,-1.072,2.394,-2.393,2.394c-1.322,0,-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  2483. <circle cx="356.519" cy="43.2" fill="#383838" r="1.197"/>
  2484. </g>
  2485. <g id="pin49J">
  2486. <path d="M354.125,36c0,-1.322,1.072,-2.394,2.395,-2.394c1.32,0,2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  2487. <path d="M358.912,36c0,1.322,-1.072,2.394,-2.393,2.394c-1.322,0,-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  2488. <circle cx="356.519" cy="36" fill="#383838" r="1.197"/>
  2489. </g>
  2490. <g id="pin50A">
  2491. <path d="M361.324,115.2c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.071,2.393,2.394" fill="#BFBFBF"/>
  2492. <path d="M366.111,115.2c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.071,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  2493. <circle cx="363.718" cy="115.2" fill="#383838" r="1.197"/>
  2494. </g>
  2495. <g id="pin50B">
  2496. <path d="M361.324,108c0,-1.322,1.072,-2.395,2.395,-2.395s2.393,1.072,2.393,2.395" fill="#BFBFBF"/>
  2497. <path d="M366.111,108c0,1.321,-1.07,2.393,-2.393,2.393s-2.395,-1.071,-2.395,-2.393" fill="#E6E6E6"/>
  2498. <circle cx="363.718" cy="108" fill="#383838" r="1.197"/>
  2499. </g>
  2500. <g id="pin50C">
  2501. <path d="M361.324,100.799c0,-1.321,1.072,-2.393,2.395,-2.393s2.393,1.071,2.393,2.393l0,0" fill="#BFBFBF"/>
  2502. <path d="M366.111,100.799c0,1.322,-1.07,2.395,-2.393,2.395s-2.395,-1.072,-2.395,-2.395" fill="#E6E6E6"/>
  2503. <circle cx="363.718" cy="100.8" fill="#383838" r="1.197"/>
  2504. </g>
  2505. <g id="pin50D">
  2506. <path d="M361.324,93.6c0,-1.322,1.072,-2.395,2.395,-2.395s2.393,1.072,2.393,2.395" fill="#BFBFBF"/>
  2507. <path d="M366.111,93.6c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  2508. <circle cx="363.718" cy="93.6" fill="#383838" r="1.197"/>
  2509. </g>
  2510. <g id="pin50E">
  2511. <path d="M361.324,86.4c0,-1.321,1.072,-2.394,2.395,-2.394s2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  2512. <path d="M366.111,86.4c0,1.321,-1.07,2.394,-2.393,2.394s-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  2513. <circle cx="363.718" cy="86.4" fill="#383838" r="1.196"/>
  2514. </g>
  2515. <g id="pin50F">
  2516. <path d="M361.324,64.8c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  2517. <path d="M366.111,64.8c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  2518. <circle cx="363.718" cy="64.8" fill="#383838" r="1.197"/>
  2519. </g>
  2520. <g id="pin50G">
  2521. <path d="M361.324,57.6c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  2522. <path d="M366.111,57.6c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  2523. <circle cx="363.718" cy="57.6" fill="#383838" r="1.197"/>
  2524. </g>
  2525. <g id="pin50H">
  2526. <path d="M361.324,50.4c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.072,2.393,2.394l0,0" fill="#BFBFBF"/>
  2527. <path d="M366.111,50.4c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.072,-2.395,-2.394" fill="#E6E6E6"/>
  2528. <circle cx="363.718" cy="50.4" fill="#383838" r="1.197"/>
  2529. </g>
  2530. <g id="pin50I">
  2531. <path d="M361.324,43.2c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.071,2.393,2.394" fill="#BFBFBF"/>
  2532. <path d="M366.111,43.2c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  2533. <circle cx="363.718" cy="43.2" fill="#383838" r="1.197"/>
  2534. </g>
  2535. <g id="pin50J">
  2536. <path d="M361.324,36c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  2537. <path d="M366.111,36c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  2538. <circle cx="363.718" cy="36" fill="#383838" r="1.197"/>
  2539. </g>
  2540. <g id="pin51A">
  2541. <path d="M368.525,115.2c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.071,2.395,2.394" fill="#BFBFBF"/>
  2542. <path d="M373.312,115.2c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.071,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  2543. <circle cx="370.917" cy="115.2" fill="#383838" r="1.197"/>
  2544. </g>
  2545. <g id="pin51B">
  2546. <path d="M368.525,108c0,-1.322,1.07,-2.395,2.393,-2.395s2.395,1.072,2.395,2.395" fill="#BFBFBF"/>
  2547. <path d="M373.312,108c0,1.321,-1.072,2.393,-2.395,2.393s-2.393,-1.071,-2.393,-2.393" fill="#E6E6E6"/>
  2548. <circle cx="370.917" cy="108" fill="#383838" r="1.197"/>
  2549. </g>
  2550. <g id="pin51C">
  2551. <path d="M368.525,100.799c0,-1.321,1.07,-2.393,2.393,-2.393s2.395,1.071,2.395,2.393l0,0" fill="#BFBFBF"/>
  2552. <path d="M373.312,100.799c0,1.322,-1.072,2.395,-2.395,2.395s-2.393,-1.072,-2.393,-2.395" fill="#E6E6E6"/>
  2553. <circle cx="370.917" cy="100.8" fill="#383838" r="1.197"/>
  2554. </g>
  2555. <g id="pin51D">
  2556. <path d="M368.525,93.6c0,-1.322,1.07,-2.395,2.393,-2.395s2.395,1.072,2.395,2.395" fill="#BFBFBF"/>
  2557. <path d="M373.312,93.6c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.071,-2.393,-2.394" fill="#E6E6E6"/>
  2558. <circle cx="370.917" cy="93.6" fill="#383838" r="1.197"/>
  2559. </g>
  2560. <g id="pin51E">
  2561. <path d="M368.525,86.4c0,-1.321,1.07,-2.394,2.393,-2.394s2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  2562. <path d="M373.312,86.4c0,1.321,-1.072,2.394,-2.395,2.394s-2.393,-1.072,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  2563. <circle cx="370.917" cy="86.4" fill="#383838" r="1.196"/>
  2564. </g>
  2565. <g id="pin51F">
  2566. <path d="M368.525,64.8c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  2567. <path d="M373.312,64.8c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.071,-2.393,-2.394" fill="#E6E6E6"/>
  2568. <circle cx="370.917" cy="64.8" fill="#383838" r="1.197"/>
  2569. </g>
  2570. <g id="pin51G">
  2571. <path d="M368.525,57.6c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  2572. <path d="M373.312,57.6c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.072,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  2573. <circle cx="370.917" cy="57.6" fill="#383838" r="1.197"/>
  2574. </g>
  2575. <g id="pin51H">
  2576. <path d="M368.525,50.4c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.072,2.395,2.394l0,0" fill="#BFBFBF"/>
  2577. <path d="M373.312,50.4c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.072,-2.393,-2.394" fill="#E6E6E6"/>
  2578. <circle cx="370.917" cy="50.4" fill="#383838" r="1.197"/>
  2579. </g>
  2580. <g id="pin51I">
  2581. <path d="M368.525,43.2c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.071,2.395,2.394" fill="#BFBFBF"/>
  2582. <path d="M373.312,43.2c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.072,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  2583. <circle cx="370.917" cy="43.2" fill="#383838" r="1.197"/>
  2584. </g>
  2585. <g id="pin51J">
  2586. <path d="M368.525,36c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  2587. <path d="M373.312,36c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.071,-2.393,-2.394" fill="#E6E6E6"/>
  2588. <circle cx="370.917" cy="36" fill="#383838" r="1.197"/>
  2589. </g>
  2590. <g id="pin52A">
  2591. <path d="M375.724,115.2c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.071,2.393,2.394" fill="#BFBFBF"/>
  2592. <path d="M380.511,115.2c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.071,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  2593. <circle cx="378.119" cy="115.2" fill="#383838" r="1.197"/>
  2594. </g>
  2595. <g id="pin52B">
  2596. <path d="M375.724,108c0,-1.322,1.072,-2.395,2.395,-2.395s2.393,1.072,2.393,2.395" fill="#BFBFBF"/>
  2597. <path d="M380.511,108c0,1.321,-1.07,2.393,-2.393,2.393s-2.395,-1.071,-2.395,-2.393" fill="#E6E6E6"/>
  2598. <circle cx="378.119" cy="108" fill="#383838" r="1.197"/>
  2599. </g>
  2600. <g id="pin52C">
  2601. <path d="M375.724,100.799c0,-1.321,1.072,-2.393,2.395,-2.393s2.393,1.071,2.393,2.393l0,0" fill="#BFBFBF"/>
  2602. <path d="M380.511,100.799c0,1.322,-1.07,2.395,-2.393,2.395s-2.395,-1.072,-2.395,-2.395" fill="#E6E6E6"/>
  2603. <circle cx="378.119" cy="100.8" fill="#383838" r="1.197"/>
  2604. </g>
  2605. <g id="pin52D">
  2606. <path d="M375.724,93.6c0,-1.322,1.072,-2.395,2.395,-2.395s2.393,1.072,2.393,2.395" fill="#BFBFBF"/>
  2607. <path d="M380.511,93.6c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  2608. <circle cx="378.119" cy="93.6" fill="#383838" r="1.197"/>
  2609. </g>
  2610. <g id="pin52E">
  2611. <path d="M375.724,86.4c0,-1.321,1.072,-2.394,2.395,-2.394s2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  2612. <path d="M380.511,86.4c0,1.321,-1.07,2.394,-2.393,2.394s-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  2613. <circle cx="378.119" cy="86.4" fill="#383838" r="1.196"/>
  2614. </g>
  2615. <g id="pin52F">
  2616. <path d="M375.724,64.8c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  2617. <path d="M380.511,64.8c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  2618. <circle cx="378.119" cy="64.8" fill="#383838" r="1.197"/>
  2619. </g>
  2620. <g id="pin52G">
  2621. <path d="M375.724,57.6c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  2622. <path d="M380.511,57.6c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  2623. <circle cx="378.119" cy="57.6" fill="#383838" r="1.197"/>
  2624. </g>
  2625. <g id="pin52H">
  2626. <path d="M375.724,50.4c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.072,2.393,2.394l0,0" fill="#BFBFBF"/>
  2627. <path d="M380.511,50.4c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.072,-2.395,-2.394" fill="#E6E6E6"/>
  2628. <circle cx="378.119" cy="50.4" fill="#383838" r="1.197"/>
  2629. </g>
  2630. <g id="pin52I">
  2631. <path d="M375.724,43.2c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.071,2.393,2.394" fill="#BFBFBF"/>
  2632. <path d="M380.511,43.2c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  2633. <circle cx="378.119" cy="43.2" fill="#383838" r="1.197"/>
  2634. </g>
  2635. <g id="pin52J">
  2636. <path d="M375.724,36c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  2637. <path d="M380.511,36c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  2638. <circle cx="378.119" cy="36" fill="#383838" r="1.197"/>
  2639. </g>
  2640. <g id="pin53A">
  2641. <path d="M382.925,115.2c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.071,2.395,2.394" fill="#BFBFBF"/>
  2642. <path d="M387.712,115.2c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.071,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  2643. <circle cx="385.318" cy="115.2" fill="#383838" r="1.197"/>
  2644. </g>
  2645. <g id="pin53B">
  2646. <path d="M382.925,108c0,-1.322,1.07,-2.395,2.393,-2.395s2.395,1.072,2.395,2.395" fill="#BFBFBF"/>
  2647. <path d="M387.712,108c0,1.321,-1.072,2.393,-2.395,2.393s-2.393,-1.071,-2.393,-2.393" fill="#E6E6E6"/>
  2648. <circle cx="385.318" cy="108" fill="#383838" r="1.197"/>
  2649. </g>
  2650. <g id="pin53C">
  2651. <path d="M382.925,100.799c0,-1.321,1.07,-2.393,2.393,-2.393s2.395,1.071,2.395,2.393l0,0" fill="#BFBFBF"/>
  2652. <path d="M387.712,100.799c0,1.322,-1.072,2.395,-2.395,2.395s-2.393,-1.072,-2.393,-2.395" fill="#E6E6E6"/>
  2653. <circle cx="385.318" cy="100.8" fill="#383838" r="1.197"/>
  2654. </g>
  2655. <g id="pin53D">
  2656. <path d="M382.925,93.6c0,-1.322,1.07,-2.395,2.393,-2.395s2.395,1.072,2.395,2.395" fill="#BFBFBF"/>
  2657. <path d="M387.712,93.6c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.071,-2.393,-2.394" fill="#E6E6E6"/>
  2658. <circle cx="385.318" cy="93.6" fill="#383838" r="1.197"/>
  2659. </g>
  2660. <g id="pin53E">
  2661. <path d="M382.925,86.4c0,-1.321,1.07,-2.394,2.393,-2.394s2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  2662. <path d="M387.712,86.4c0,1.321,-1.072,2.394,-2.395,2.394s-2.393,-1.072,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  2663. <circle cx="385.318" cy="86.4" fill="#383838" r="1.196"/>
  2664. </g>
  2665. <g id="pin53F">
  2666. <path d="M382.925,64.8c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  2667. <path d="M387.712,64.8c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.071,-2.393,-2.394" fill="#E6E6E6"/>
  2668. <circle cx="385.318" cy="64.8" fill="#383838" r="1.197"/>
  2669. </g>
  2670. <g id="pin53G">
  2671. <path d="M382.925,57.6c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  2672. <path d="M387.712,57.6c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.072,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  2673. <circle cx="385.318" cy="57.6" fill="#383838" r="1.197"/>
  2674. </g>
  2675. <g id="pin53H">
  2676. <path d="M382.925,50.4c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.072,2.395,2.394l0,0" fill="#BFBFBF"/>
  2677. <path d="M387.712,50.4c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.072,-2.393,-2.394" fill="#E6E6E6"/>
  2678. <circle cx="385.318" cy="50.4" fill="#383838" r="1.197"/>
  2679. </g>
  2680. <g id="pin53I">
  2681. <path d="M382.925,43.2c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.071,2.395,2.394" fill="#BFBFBF"/>
  2682. <path d="M387.712,43.2c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.072,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  2683. <circle cx="385.318" cy="43.2" fill="#383838" r="1.197"/>
  2684. </g>
  2685. <g id="pin53J">
  2686. <path d="M382.925,36c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  2687. <path d="M387.712,36c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.071,-2.393,-2.394" fill="#E6E6E6"/>
  2688. <circle cx="385.318" cy="36" fill="#383838" r="1.197"/>
  2689. </g>
  2690. <g id="pin54A">
  2691. <path d="M390.125,115.2c0,-1.322,1.072,-2.394,2.393,-2.394c1.322,0,2.395,1.071,2.395,2.394" fill="#BFBFBF"/>
  2692. <path d="M394.912,115.2c0,1.322,-1.072,2.394,-2.395,2.394c-1.32,0,-2.393,-1.071,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  2693. <circle cx="392.517" cy="115.2" fill="#383838" r="1.197"/>
  2694. </g>
  2695. <g id="pin54B">
  2696. <path d="M390.125,108c0,-1.322,1.072,-2.395,2.393,-2.395c1.322,0,2.395,1.072,2.395,2.395" fill="#BFBFBF"/>
  2697. <path d="M394.912,108c0,1.321,-1.072,2.393,-2.395,2.393c-1.32,0,-2.393,-1.071,-2.393,-2.393" fill="#E6E6E6"/>
  2698. <circle cx="392.517" cy="108" fill="#383838" r="1.197"/>
  2699. </g>
  2700. <g id="pin54C">
  2701. <path d="M390.125,100.799c0,-1.321,1.072,-2.393,2.393,-2.393c1.322,0,2.395,1.071,2.395,2.393l0,0" fill="#BFBFBF"/>
  2702. <path d="M394.912,100.799c0,1.322,-1.072,2.395,-2.395,2.395c-1.32,0,-2.393,-1.072,-2.393,-2.395" fill="#E6E6E6"/>
  2703. <circle cx="392.517" cy="100.8" fill="#383838" r="1.197"/>
  2704. </g>
  2705. <g id="pin54D">
  2706. <path d="M390.125,93.6c0,-1.322,1.072,-2.395,2.393,-2.395c1.322,0,2.395,1.072,2.395,2.395" fill="#BFBFBF"/>
  2707. <path d="M394.912,93.6c0,1.322,-1.072,2.394,-2.395,2.394c-1.32,0,-2.393,-1.071,-2.393,-2.394" fill="#E6E6E6"/>
  2708. <circle cx="392.517" cy="93.6" fill="#383838" r="1.197"/>
  2709. </g>
  2710. <g id="pin54E">
  2711. <path d="M390.125,86.4c0,-1.321,1.072,-2.394,2.393,-2.394c1.322,0,2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  2712. <path d="M394.912,86.4c0,1.321,-1.072,2.394,-2.395,2.394c-1.32,0,-2.393,-1.072,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  2713. <circle cx="392.517" cy="86.4" fill="#383838" r="1.196"/>
  2714. </g>
  2715. <g id="pin54F">
  2716. <path d="M390.125,64.8c0,-1.322,1.072,-2.394,2.393,-2.394c1.322,0,2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  2717. <path d="M394.912,64.8c0,1.322,-1.072,2.394,-2.395,2.394c-1.32,0,-2.393,-1.071,-2.393,-2.394" fill="#E6E6E6"/>
  2718. <circle cx="392.517" cy="64.8" fill="#383838" r="1.197"/>
  2719. </g>
  2720. <g id="pin54G">
  2721. <path d="M390.125,57.6c0,-1.322,1.072,-2.394,2.393,-2.394c1.322,0,2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  2722. <path d="M394.912,57.6c0,1.322,-1.072,2.394,-2.395,2.394c-1.32,0,-2.393,-1.072,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  2723. <circle cx="392.517" cy="57.6" fill="#383838" r="1.197"/>
  2724. </g>
  2725. <g id="pin54H">
  2726. <path d="M390.125,50.4c0,-1.322,1.072,-2.394,2.393,-2.394c1.322,0,2.395,1.072,2.395,2.394l0,0" fill="#BFBFBF"/>
  2727. <path d="M394.912,50.4c0,1.322,-1.072,2.394,-2.395,2.394c-1.32,0,-2.393,-1.072,-2.393,-2.394" fill="#E6E6E6"/>
  2728. <circle cx="392.517" cy="50.4" fill="#383838" r="1.197"/>
  2729. </g>
  2730. <g id="pin54I">
  2731. <path d="M390.125,43.2c0,-1.322,1.072,-2.394,2.393,-2.394c1.322,0,2.395,1.071,2.395,2.394" fill="#BFBFBF"/>
  2732. <path d="M394.912,43.2c0,1.322,-1.072,2.394,-2.395,2.394c-1.32,0,-2.393,-1.072,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  2733. <circle cx="392.517" cy="43.2" fill="#383838" r="1.197"/>
  2734. </g>
  2735. <g id="pin54J">
  2736. <path d="M390.125,36c0,-1.322,1.072,-2.394,2.393,-2.394c1.322,0,2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  2737. <path d="M394.912,36c0,1.322,-1.072,2.394,-2.395,2.394c-1.32,0,-2.393,-1.071,-2.393,-2.394" fill="#E6E6E6"/>
  2738. <circle cx="392.517" cy="36" fill="#383838" r="1.197"/>
  2739. </g>
  2740. <g id="pin55A">
  2741. <path d="M397.324,115.2c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.071,2.393,2.394" fill="#BFBFBF"/>
  2742. <path d="M402.111,115.2c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.071,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  2743. <circle cx="399.718" cy="115.2" fill="#383838" r="1.197"/>
  2744. </g>
  2745. <g id="pin55B">
  2746. <path d="M397.324,108c0,-1.322,1.072,-2.395,2.395,-2.395s2.393,1.072,2.393,2.395" fill="#BFBFBF"/>
  2747. <path d="M402.111,108c0,1.321,-1.07,2.393,-2.393,2.393s-2.395,-1.071,-2.395,-2.393" fill="#E6E6E6"/>
  2748. <circle cx="399.718" cy="108" fill="#383838" r="1.197"/>
  2749. </g>
  2750. <g id="pin55C">
  2751. <path d="M397.324,100.799c0,-1.321,1.072,-2.393,2.395,-2.393s2.393,1.071,2.393,2.393l0,0" fill="#BFBFBF"/>
  2752. <path d="M402.111,100.799c0,1.322,-1.07,2.395,-2.393,2.395s-2.395,-1.072,-2.395,-2.395" fill="#E6E6E6"/>
  2753. <circle cx="399.718" cy="100.8" fill="#383838" r="1.197"/>
  2754. </g>
  2755. <g id="pin55D">
  2756. <path d="M397.324,93.6c0,-1.322,1.072,-2.395,2.395,-2.395s2.393,1.072,2.393,2.395" fill="#BFBFBF"/>
  2757. <path d="M402.111,93.6c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  2758. <circle cx="399.718" cy="93.6" fill="#383838" r="1.197"/>
  2759. </g>
  2760. <g id="pin55E">
  2761. <path d="M397.324,86.4c0,-1.321,1.072,-2.394,2.395,-2.394s2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  2762. <path d="M402.111,86.4c0,1.321,-1.07,2.394,-2.393,2.394s-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  2763. <circle cx="399.718" cy="86.4" fill="#383838" r="1.196"/>
  2764. </g>
  2765. <g id="pin55F">
  2766. <path d="M397.324,64.8c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  2767. <path d="M402.111,64.8c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  2768. <circle cx="399.718" cy="64.8" fill="#383838" r="1.197"/>
  2769. </g>
  2770. <g id="pin55G">
  2771. <path d="M397.324,57.6c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  2772. <path d="M402.111,57.6c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  2773. <circle cx="399.718" cy="57.6" fill="#383838" r="1.197"/>
  2774. </g>
  2775. <g id="pin55H">
  2776. <path d="M397.324,50.4c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.072,2.393,2.394l0,0" fill="#BFBFBF"/>
  2777. <path d="M402.111,50.4c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.072,-2.395,-2.394" fill="#E6E6E6"/>
  2778. <circle cx="399.718" cy="50.4" fill="#383838" r="1.197"/>
  2779. </g>
  2780. <g id="pin55I">
  2781. <path d="M397.324,43.2c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.071,2.393,2.394" fill="#BFBFBF"/>
  2782. <path d="M402.111,43.2c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  2783. <circle cx="399.718" cy="43.2" fill="#383838" r="1.197"/>
  2784. </g>
  2785. <g id="pin55J">
  2786. <path d="M397.324,36c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  2787. <path d="M402.111,36c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  2788. <circle cx="399.718" cy="36" fill="#383838" r="1.197"/>
  2789. </g>
  2790. <g id="pin56A">
  2791. <path d="M404.525,115.2c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.071,2.395,2.394" fill="#BFBFBF"/>
  2792. <path d="M409.312,115.2c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.071,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  2793. <circle cx="406.917" cy="115.2" fill="#383838" r="1.197"/>
  2794. </g>
  2795. <g id="pin56B">
  2796. <path d="M404.525,108c0,-1.322,1.07,-2.395,2.393,-2.395s2.395,1.072,2.395,2.395" fill="#BFBFBF"/>
  2797. <path d="M409.312,108c0,1.321,-1.072,2.393,-2.395,2.393s-2.393,-1.071,-2.393,-2.393" fill="#E6E6E6"/>
  2798. <circle cx="406.917" cy="108" fill="#383838" r="1.197"/>
  2799. </g>
  2800. <g id="pin56C">
  2801. <path d="M404.525,100.799c0,-1.321,1.07,-2.393,2.393,-2.393s2.395,1.071,2.395,2.393l0,0" fill="#BFBFBF"/>
  2802. <path d="M409.312,100.799c0,1.322,-1.072,2.395,-2.395,2.395s-2.393,-1.072,-2.393,-2.395" fill="#E6E6E6"/>
  2803. <circle cx="406.917" cy="100.8" fill="#383838" r="1.197"/>
  2804. </g>
  2805. <g id="pin56D">
  2806. <path d="M404.525,93.6c0,-1.322,1.07,-2.395,2.393,-2.395s2.395,1.072,2.395,2.395" fill="#BFBFBF"/>
  2807. <path d="M409.312,93.6c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.071,-2.393,-2.394" fill="#E6E6E6"/>
  2808. <circle cx="406.917" cy="93.6" fill="#383838" r="1.197"/>
  2809. </g>
  2810. <g id="pin56E">
  2811. <path d="M404.525,86.4c0,-1.321,1.07,-2.394,2.393,-2.394s2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  2812. <path d="M409.312,86.4c0,1.321,-1.072,2.394,-2.395,2.394s-2.393,-1.072,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  2813. <circle cx="406.917" cy="86.4" fill="#383838" r="1.196"/>
  2814. </g>
  2815. <g id="pin56F">
  2816. <path d="M404.525,64.8c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  2817. <path d="M409.312,64.8c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.071,-2.393,-2.394" fill="#E6E6E6"/>
  2818. <circle cx="406.917" cy="64.8" fill="#383838" r="1.197"/>
  2819. </g>
  2820. <g id="pin56G">
  2821. <path d="M404.525,57.6c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  2822. <path d="M409.312,57.6c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.072,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  2823. <circle cx="406.917" cy="57.6" fill="#383838" r="1.197"/>
  2824. </g>
  2825. <g id="pin56H">
  2826. <path d="M404.525,50.4c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.072,2.395,2.394l0,0" fill="#BFBFBF"/>
  2827. <path d="M409.312,50.4c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.072,-2.393,-2.394" fill="#E6E6E6"/>
  2828. <circle cx="406.917" cy="50.4" fill="#383838" r="1.197"/>
  2829. </g>
  2830. <g id="pin56I">
  2831. <path d="M404.525,43.2c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.071,2.395,2.394" fill="#BFBFBF"/>
  2832. <path d="M409.312,43.2c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.072,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  2833. <circle cx="406.917" cy="43.2" fill="#383838" r="1.197"/>
  2834. </g>
  2835. <g id="pin56J">
  2836. <path d="M404.525,36c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  2837. <path d="M409.312,36c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.071,-2.393,-2.394" fill="#E6E6E6"/>
  2838. <circle cx="406.917" cy="36" fill="#383838" r="1.197"/>
  2839. </g>
  2840. <g id="pin57A">
  2841. <path d="M411.724,115.2c0,-1.322,1.072,-2.394,2.395,-2.394c1.32,0,2.393,1.071,2.393,2.394" fill="#BFBFBF"/>
  2842. <path d="M416.511,115.2c0,1.322,-1.072,2.394,-2.393,2.394c-1.322,0,-2.395,-1.071,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  2843. <circle cx="414.119" cy="115.2" fill="#383838" r="1.197"/>
  2844. </g>
  2845. <g id="pin57B">
  2846. <path d="M411.724,108c0,-1.322,1.072,-2.395,2.395,-2.395c1.32,0,2.393,1.072,2.393,2.395" fill="#BFBFBF"/>
  2847. <path d="M416.511,108c0,1.321,-1.072,2.393,-2.393,2.393c-1.322,0,-2.395,-1.071,-2.395,-2.393" fill="#E6E6E6"/>
  2848. <circle cx="414.119" cy="108" fill="#383838" r="1.197"/>
  2849. </g>
  2850. <g id="pin57C">
  2851. <path d="M411.724,100.799c0,-1.321,1.072,-2.393,2.395,-2.393c1.32,0,2.393,1.071,2.393,2.393l0,0" fill="#BFBFBF"/>
  2852. <path d="M416.511,100.799c0,1.322,-1.072,2.395,-2.393,2.395c-1.322,0,-2.395,-1.072,-2.395,-2.395" fill="#E6E6E6"/>
  2853. <circle cx="414.119" cy="100.8" fill="#383838" r="1.197"/>
  2854. </g>
  2855. <g id="pin57D">
  2856. <path d="M411.724,93.6c0,-1.322,1.072,-2.395,2.395,-2.395c1.32,0,2.393,1.072,2.393,2.395" fill="#BFBFBF"/>
  2857. <path d="M416.511,93.6c0,1.322,-1.072,2.394,-2.393,2.394c-1.322,0,-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  2858. <circle cx="414.119" cy="93.6" fill="#383838" r="1.197"/>
  2859. </g>
  2860. <g id="pin57E">
  2861. <path d="M411.724,86.4c0,-1.321,1.072,-2.394,2.395,-2.394c1.32,0,2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  2862. <path d="M416.511,86.4c0,1.321,-1.072,2.394,-2.393,2.394c-1.322,0,-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  2863. <circle cx="414.119" cy="86.4" fill="#383838" r="1.196"/>
  2864. </g>
  2865. <g id="pin57F">
  2866. <path d="M411.724,64.8c0,-1.322,1.072,-2.394,2.395,-2.394c1.32,0,2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  2867. <path d="M416.511,64.8c0,1.322,-1.072,2.394,-2.393,2.394c-1.322,0,-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  2868. <circle cx="414.119" cy="64.8" fill="#383838" r="1.197"/>
  2869. </g>
  2870. <g id="pin57G">
  2871. <path d="M411.724,57.6c0,-1.322,1.072,-2.394,2.395,-2.394c1.32,0,2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  2872. <path d="M416.511,57.6c0,1.322,-1.072,2.394,-2.393,2.394c-1.322,0,-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  2873. <circle cx="414.119" cy="57.6" fill="#383838" r="1.197"/>
  2874. </g>
  2875. <g id="pin57H">
  2876. <path d="M411.724,50.4c0,-1.322,1.072,-2.394,2.395,-2.394c1.32,0,2.393,1.072,2.393,2.394l0,0" fill="#BFBFBF"/>
  2877. <path d="M416.511,50.4c0,1.322,-1.072,2.394,-2.393,2.394c-1.322,0,-2.395,-1.072,-2.395,-2.394" fill="#E6E6E6"/>
  2878. <circle cx="414.119" cy="50.4" fill="#383838" r="1.197"/>
  2879. </g>
  2880. <g id="pin57I">
  2881. <path d="M411.724,43.2c0,-1.322,1.072,-2.394,2.395,-2.394c1.32,0,2.393,1.071,2.393,2.394" fill="#BFBFBF"/>
  2882. <path d="M416.511,43.2c0,1.322,-1.072,2.394,-2.393,2.394c-1.322,0,-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  2883. <circle cx="414.119" cy="43.2" fill="#383838" r="1.197"/>
  2884. </g>
  2885. <g id="pin57J">
  2886. <path d="M411.724,36c0,-1.322,1.072,-2.394,2.395,-2.394c1.32,0,2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  2887. <path d="M416.511,36c0,1.322,-1.072,2.394,-2.393,2.394c-1.322,0,-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  2888. <circle cx="414.119" cy="36" fill="#383838" r="1.197"/>
  2889. </g>
  2890. <g id="pin58A">
  2891. <path d="M418.923,115.2c0,-1.322,1.072,-2.394,2.395,-2.394s2.395,1.071,2.395,2.394" fill="#BFBFBF"/>
  2892. <path d="M423.712,115.2c0,1.322,-1.072,2.394,-2.395,2.394s-2.395,-1.071,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  2893. <circle cx="421.318" cy="115.2" fill="#383838" r="1.197"/>
  2894. </g>
  2895. <g id="pin58B">
  2896. <path d="M418.923,108c0,-1.322,1.072,-2.395,2.395,-2.395s2.395,1.072,2.395,2.395" fill="#BFBFBF"/>
  2897. <path d="M423.712,108c0,1.321,-1.072,2.393,-2.395,2.393s-2.395,-1.071,-2.395,-2.393" fill="#E6E6E6"/>
  2898. <circle cx="421.318" cy="108" fill="#383838" r="1.197"/>
  2899. </g>
  2900. <g id="pin58C">
  2901. <path d="M418.923,100.799c0,-1.321,1.072,-2.393,2.395,-2.393s2.395,1.071,2.395,2.393l0,0" fill="#BFBFBF"/>
  2902. <path d="M423.712,100.799c0,1.322,-1.072,2.395,-2.395,2.395s-2.395,-1.072,-2.395,-2.395" fill="#E6E6E6"/>
  2903. <circle cx="421.318" cy="100.8" fill="#383838" r="1.197"/>
  2904. </g>
  2905. <g id="pin58D">
  2906. <path d="M418.923,93.6c0,-1.322,1.072,-2.395,2.395,-2.395s2.395,1.072,2.395,2.395" fill="#BFBFBF"/>
  2907. <path d="M423.712,93.6c0,1.322,-1.072,2.394,-2.395,2.394s-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  2908. <circle cx="421.318" cy="93.6" fill="#383838" r="1.197"/>
  2909. </g>
  2910. <g id="pin58E">
  2911. <path d="M418.923,86.4c0,-1.321,1.072,-2.394,2.395,-2.394s2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  2912. <path d="M423.712,86.4c0,1.321,-1.072,2.394,-2.395,2.394s-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  2913. <circle cx="421.318" cy="86.4" fill="#383838" r="1.196"/>
  2914. </g>
  2915. <g id="pin58F">
  2916. <path d="M418.923,64.8c0,-1.322,1.072,-2.394,2.395,-2.394s2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  2917. <path d="M423.712,64.8c0,1.322,-1.072,2.394,-2.395,2.394s-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  2918. <circle cx="421.318" cy="64.8" fill="#383838" r="1.197"/>
  2919. </g>
  2920. <g id="pin58G">
  2921. <path d="M418.923,57.6c0,-1.322,1.072,-2.394,2.395,-2.394s2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  2922. <path d="M423.712,57.6c0,1.322,-1.072,2.394,-2.395,2.394s-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  2923. <circle cx="421.318" cy="57.6" fill="#383838" r="1.197"/>
  2924. </g>
  2925. <g id="pin58H">
  2926. <path d="M418.923,50.4c0,-1.322,1.072,-2.394,2.395,-2.394s2.395,1.072,2.395,2.394l0,0" fill="#BFBFBF"/>
  2927. <path d="M423.712,50.4c0,1.322,-1.072,2.394,-2.395,2.394s-2.395,-1.072,-2.395,-2.394" fill="#E6E6E6"/>
  2928. <circle cx="421.318" cy="50.4" fill="#383838" r="1.197"/>
  2929. </g>
  2930. <g id="pin58I">
  2931. <path d="M418.923,43.2c0,-1.322,1.072,-2.394,2.395,-2.394s2.395,1.071,2.395,2.394" fill="#BFBFBF"/>
  2932. <path d="M423.712,43.2c0,1.322,-1.072,2.394,-2.395,2.394s-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  2933. <circle cx="421.318" cy="43.2" fill="#383838" r="1.197"/>
  2934. </g>
  2935. <g id="pin58J">
  2936. <path d="M418.923,36c0,-1.322,1.072,-2.394,2.395,-2.394s2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  2937. <path d="M423.712,36c0,1.322,-1.072,2.394,-2.395,2.394s-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  2938. <circle cx="421.318" cy="36" fill="#383838" r="1.197"/>
  2939. </g>
  2940. <g id="pin59A">
  2941. <path d="M426.125,115.2c0,-1.322,1.072,-2.394,2.393,-2.394c1.322,0,2.395,1.071,2.395,2.394" fill="#BFBFBF"/>
  2942. <path d="M430.912,115.2c0,1.322,-1.072,2.394,-2.395,2.394c-1.32,0,-2.393,-1.071,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  2943. <circle cx="428.517" cy="115.2" fill="#383838" r="1.197"/>
  2944. </g>
  2945. <g id="pin59B">
  2946. <path d="M426.125,108c0,-1.322,1.072,-2.395,2.393,-2.395c1.322,0,2.395,1.072,2.395,2.395" fill="#BFBFBF"/>
  2947. <path d="M430.912,108c0,1.321,-1.072,2.393,-2.395,2.393c-1.32,0,-2.393,-1.071,-2.393,-2.393" fill="#E6E6E6"/>
  2948. <circle cx="428.517" cy="108" fill="#383838" r="1.197"/>
  2949. </g>
  2950. <g id="pin59C">
  2951. <path d="M426.125,100.799c0,-1.321,1.072,-2.393,2.393,-2.393c1.322,0,2.395,1.071,2.395,2.393l0,0" fill="#BFBFBF"/>
  2952. <path d="M430.912,100.799c0,1.322,-1.072,2.395,-2.395,2.395c-1.32,0,-2.393,-1.072,-2.393,-2.395" fill="#E6E6E6"/>
  2953. <circle cx="428.517" cy="100.8" fill="#383838" r="1.197"/>
  2954. </g>
  2955. <g id="pin59D">
  2956. <path d="M426.125,93.6c0,-1.322,1.072,-2.395,2.393,-2.395c1.322,0,2.395,1.072,2.395,2.395" fill="#BFBFBF"/>
  2957. <path d="M430.912,93.6c0,1.322,-1.072,2.394,-2.395,2.394c-1.32,0,-2.393,-1.071,-2.393,-2.394" fill="#E6E6E6"/>
  2958. <circle cx="428.517" cy="93.6" fill="#383838" r="1.197"/>
  2959. </g>
  2960. <g id="pin59E">
  2961. <path d="M426.125,86.4c0,-1.321,1.072,-2.394,2.393,-2.394c1.322,0,2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  2962. <path d="M430.912,86.4c0,1.321,-1.072,2.394,-2.395,2.394c-1.32,0,-2.393,-1.072,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  2963. <circle cx="428.517" cy="86.4" fill="#383838" r="1.196"/>
  2964. </g>
  2965. <g id="pin59F">
  2966. <path d="M426.125,64.8c0,-1.322,1.072,-2.394,2.393,-2.394c1.322,0,2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  2967. <path d="M430.912,64.8c0,1.322,-1.072,2.394,-2.395,2.394c-1.32,0,-2.393,-1.071,-2.393,-2.394" fill="#E6E6E6"/>
  2968. <circle cx="428.517" cy="64.8" fill="#383838" r="1.197"/>
  2969. </g>
  2970. <g id="pin59G">
  2971. <path d="M426.125,57.6c0,-1.322,1.072,-2.394,2.393,-2.394c1.322,0,2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  2972. <path d="M430.912,57.6c0,1.322,-1.072,2.394,-2.395,2.394c-1.32,0,-2.393,-1.072,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  2973. <circle cx="428.517" cy="57.6" fill="#383838" r="1.197"/>
  2974. </g>
  2975. <g id="pin59H">
  2976. <path d="M426.125,50.4c0,-1.322,1.072,-2.394,2.393,-2.394c1.322,0,2.395,1.072,2.395,2.394l0,0" fill="#BFBFBF"/>
  2977. <path d="M430.912,50.4c0,1.322,-1.072,2.394,-2.395,2.394c-1.32,0,-2.393,-1.072,-2.393,-2.394" fill="#E6E6E6"/>
  2978. <circle cx="428.517" cy="50.4" fill="#383838" r="1.197"/>
  2979. </g>
  2980. <g id="pin59I">
  2981. <path d="M426.125,43.2c0,-1.322,1.072,-2.394,2.393,-2.394c1.322,0,2.395,1.071,2.395,2.394" fill="#BFBFBF"/>
  2982. <path d="M430.912,43.2c0,1.322,-1.072,2.394,-2.395,2.394c-1.32,0,-2.393,-1.072,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  2983. <circle cx="428.517" cy="43.2" fill="#383838" r="1.197"/>
  2984. </g>
  2985. <g id="pin59J">
  2986. <path d="M426.125,36c0,-1.322,1.072,-2.394,2.393,-2.394c1.322,0,2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  2987. <path d="M430.912,36c0,1.322,-1.072,2.394,-2.395,2.394c-1.32,0,-2.393,-1.071,-2.393,-2.394" fill="#E6E6E6"/>
  2988. <circle cx="428.517" cy="36" fill="#383838" r="1.197"/>
  2989. </g>
  2990. <g id="pin60A">
  2991. <path d="M433.324,115.2c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.071,2.393,2.394" fill="#BFBFBF"/>
  2992. <path d="M438.111,115.2c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.071,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  2993. <circle cx="435.718" cy="115.2" fill="#383838" r="1.197"/>
  2994. </g>
  2995. <g id="pin60B">
  2996. <path d="M433.324,108c0,-1.322,1.072,-2.395,2.395,-2.395s2.393,1.072,2.393,2.395" fill="#BFBFBF"/>
  2997. <path d="M438.111,108c0,1.321,-1.07,2.393,-2.393,2.393s-2.395,-1.071,-2.395,-2.393" fill="#E6E6E6"/>
  2998. <circle cx="435.718" cy="108" fill="#383838" r="1.197"/>
  2999. </g>
  3000. <g id="pin60C">
  3001. <path d="M433.324,100.799c0,-1.321,1.072,-2.393,2.395,-2.393s2.393,1.071,2.393,2.393l0,0" fill="#BFBFBF"/>
  3002. <path d="M438.111,100.799c0,1.322,-1.07,2.395,-2.393,2.395s-2.395,-1.072,-2.395,-2.395" fill="#E6E6E6"/>
  3003. <circle cx="435.718" cy="100.8" fill="#383838" r="1.197"/>
  3004. </g>
  3005. <g id="pin60D">
  3006. <path d="M433.324,93.6c0,-1.322,1.072,-2.395,2.395,-2.395s2.393,1.072,2.393,2.395" fill="#BFBFBF"/>
  3007. <path d="M438.111,93.6c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  3008. <circle cx="435.718" cy="93.6" fill="#383838" r="1.197"/>
  3009. </g>
  3010. <g id="pin60E">
  3011. <path d="M433.324,86.4c0,-1.321,1.072,-2.394,2.395,-2.394s2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  3012. <path d="M438.111,86.4c0,1.321,-1.07,2.394,-2.393,2.394s-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  3013. <circle cx="435.718" cy="86.4" fill="#383838" r="1.196"/>
  3014. </g>
  3015. <g id="pin60F">
  3016. <path d="M433.324,64.8c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  3017. <path d="M438.111,64.8c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  3018. <circle cx="435.718" cy="64.8" fill="#383838" r="1.197"/>
  3019. </g>
  3020. <g id="pin60G">
  3021. <path d="M433.324,57.6c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  3022. <path d="M438.111,57.6c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  3023. <circle cx="435.718" cy="57.6" fill="#383838" r="1.197"/>
  3024. </g>
  3025. <g id="pin60H">
  3026. <path d="M433.324,50.4c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.072,2.393,2.394l0,0" fill="#BFBFBF"/>
  3027. <path d="M438.111,50.4c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.072,-2.395,-2.394" fill="#E6E6E6"/>
  3028. <circle cx="435.718" cy="50.4" fill="#383838" r="1.197"/>
  3029. </g>
  3030. <g id="pin60I">
  3031. <path d="M433.324,43.2c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.071,2.393,2.394" fill="#BFBFBF"/>
  3032. <path d="M438.111,43.2c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  3033. <circle cx="435.718" cy="43.2" fill="#383838" r="1.197"/>
  3034. </g>
  3035. <g id="pin60J">
  3036. <path d="M433.324,36c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  3037. <path d="M438.111,36c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  3038. <circle cx="435.718" cy="36" fill="#383838" r="1.197"/>
  3039. </g>
  3040. <g id="pin61A">
  3041. <path d="M440.525,115.2c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.071,2.395,2.394" fill="#BFBFBF"/>
  3042. <path d="M445.312,115.2c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.071,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  3043. <circle cx="442.917" cy="115.2" fill="#383838" r="1.197"/>
  3044. </g>
  3045. <g id="pin61B">
  3046. <path d="M440.525,108c0,-1.322,1.07,-2.395,2.393,-2.395s2.395,1.072,2.395,2.395" fill="#BFBFBF"/>
  3047. <path d="M445.312,108c0,1.321,-1.072,2.393,-2.395,2.393s-2.393,-1.071,-2.393,-2.393" fill="#E6E6E6"/>
  3048. <circle cx="442.917" cy="108" fill="#383838" r="1.197"/>
  3049. </g>
  3050. <g id="pin61C">
  3051. <path d="M440.525,100.799c0,-1.321,1.07,-2.393,2.393,-2.393s2.395,1.071,2.395,2.393l0,0" fill="#BFBFBF"/>
  3052. <path d="M445.312,100.799c0,1.322,-1.072,2.395,-2.395,2.395s-2.393,-1.072,-2.393,-2.395" fill="#E6E6E6"/>
  3053. <circle cx="442.917" cy="100.8" fill="#383838" r="1.197"/>
  3054. </g>
  3055. <g id="pin61D">
  3056. <path d="M440.525,93.6c0,-1.322,1.07,-2.395,2.393,-2.395s2.395,1.072,2.395,2.395" fill="#BFBFBF"/>
  3057. <path d="M445.312,93.6c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.071,-2.393,-2.394" fill="#E6E6E6"/>
  3058. <circle cx="442.917" cy="93.6" fill="#383838" r="1.197"/>
  3059. </g>
  3060. <g id="pin61E">
  3061. <path d="M440.525,86.4c0,-1.321,1.07,-2.394,2.393,-2.394s2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  3062. <path d="M445.312,86.4c0,1.321,-1.072,2.394,-2.395,2.394s-2.393,-1.072,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  3063. <circle cx="442.917" cy="86.4" fill="#383838" r="1.196"/>
  3064. </g>
  3065. <g id="pin61F">
  3066. <path d="M440.525,64.8c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  3067. <path d="M445.312,64.8c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.071,-2.393,-2.394" fill="#E6E6E6"/>
  3068. <circle cx="442.917" cy="64.8" fill="#383838" r="1.197"/>
  3069. </g>
  3070. <g id="pin61G">
  3071. <path d="M440.525,57.6c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  3072. <path d="M445.312,57.6c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.072,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  3073. <circle cx="442.917" cy="57.6" fill="#383838" r="1.197"/>
  3074. </g>
  3075. <g id="pin61H">
  3076. <path d="M440.525,50.4c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.072,2.395,2.394l0,0" fill="#BFBFBF"/>
  3077. <path d="M445.312,50.4c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.072,-2.393,-2.394" fill="#E6E6E6"/>
  3078. <circle cx="442.917" cy="50.4" fill="#383838" r="1.197"/>
  3079. </g>
  3080. <g id="pin61I">
  3081. <path d="M440.525,43.2c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.071,2.395,2.394" fill="#BFBFBF"/>
  3082. <path d="M445.312,43.2c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.072,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  3083. <circle cx="442.917" cy="43.2" fill="#383838" r="1.197"/>
  3084. </g>
  3085. <g id="pin61J">
  3086. <path d="M440.525,36c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  3087. <path d="M445.312,36c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.071,-2.393,-2.394" fill="#E6E6E6"/>
  3088. <circle cx="442.917" cy="36" fill="#383838" r="1.197"/>
  3089. </g>
  3090. <g id="pin62A">
  3091. <path d="M447.724,115.2c0,-1.322,1.072,-2.394,2.395,-2.394c1.32,0,2.393,1.071,2.393,2.394" fill="#BFBFBF"/>
  3092. <path d="M452.511,115.2c0,1.322,-1.072,2.394,-2.393,2.394c-1.322,0,-2.395,-1.071,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  3093. <circle cx="450.119" cy="115.2" fill="#383838" r="1.197"/>
  3094. </g>
  3095. <g id="pin62B">
  3096. <path d="M447.724,108c0,-1.322,1.072,-2.395,2.395,-2.395c1.32,0,2.393,1.072,2.393,2.395" fill="#BFBFBF"/>
  3097. <path d="M452.511,108c0,1.321,-1.072,2.393,-2.393,2.393c-1.322,0,-2.395,-1.071,-2.395,-2.393" fill="#E6E6E6"/>
  3098. <circle cx="450.119" cy="108" fill="#383838" r="1.197"/>
  3099. </g>
  3100. <g id="pin62C">
  3101. <path d="M447.724,100.799c0,-1.321,1.072,-2.393,2.395,-2.393c1.32,0,2.393,1.071,2.393,2.393l0,0" fill="#BFBFBF"/>
  3102. <path d="M452.511,100.799c0,1.322,-1.072,2.395,-2.393,2.395c-1.322,0,-2.395,-1.072,-2.395,-2.395" fill="#E6E6E6"/>
  3103. <circle cx="450.119" cy="100.8" fill="#383838" r="1.197"/>
  3104. </g>
  3105. <g id="pin62D">
  3106. <path d="M447.724,93.6c0,-1.322,1.072,-2.395,2.395,-2.395c1.32,0,2.393,1.072,2.393,2.395" fill="#BFBFBF"/>
  3107. <path d="M452.511,93.6c0,1.322,-1.072,2.394,-2.393,2.394c-1.322,0,-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  3108. <circle cx="450.119" cy="93.6" fill="#383838" r="1.197"/>
  3109. </g>
  3110. <g id="pin62E">
  3111. <path d="M447.724,86.4c0,-1.321,1.072,-2.394,2.395,-2.394c1.32,0,2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  3112. <path d="M452.511,86.4c0,1.321,-1.072,2.394,-2.393,2.394c-1.322,0,-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  3113. <circle cx="450.119" cy="86.4" fill="#383838" r="1.196"/>
  3114. </g>
  3115. <g id="pin62F">
  3116. <path d="M447.724,64.8c0,-1.322,1.072,-2.394,2.395,-2.394c1.32,0,2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  3117. <path d="M452.511,64.8c0,1.322,-1.072,2.394,-2.393,2.394c-1.322,0,-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  3118. <circle cx="450.119" cy="64.8" fill="#383838" r="1.197"/>
  3119. </g>
  3120. <g id="pin62G">
  3121. <path d="M447.724,57.6c0,-1.322,1.072,-2.394,2.395,-2.394c1.32,0,2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  3122. <path d="M452.511,57.6c0,1.322,-1.072,2.394,-2.393,2.394c-1.322,0,-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  3123. <circle cx="450.119" cy="57.6" fill="#383838" r="1.197"/>
  3124. </g>
  3125. <g id="pin62H">
  3126. <path d="M447.724,50.4c0,-1.322,1.072,-2.394,2.395,-2.394c1.32,0,2.393,1.072,2.393,2.394l0,0" fill="#BFBFBF"/>
  3127. <path d="M452.511,50.4c0,1.322,-1.072,2.394,-2.393,2.394c-1.322,0,-2.395,-1.072,-2.395,-2.394" fill="#E6E6E6"/>
  3128. <circle cx="450.119" cy="50.4" fill="#383838" r="1.197"/>
  3129. </g>
  3130. <g id="pin62I">
  3131. <path d="M447.724,43.2c0,-1.322,1.072,-2.394,2.395,-2.394c1.32,0,2.393,1.071,2.393,2.394" fill="#BFBFBF"/>
  3132. <path d="M452.511,43.2c0,1.322,-1.072,2.394,-2.393,2.394c-1.322,0,-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  3133. <circle cx="450.119" cy="43.2" fill="#383838" r="1.197"/>
  3134. </g>
  3135. <g id="pin62J">
  3136. <path d="M447.724,36c0,-1.322,1.072,-2.394,2.395,-2.394c1.32,0,2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  3137. <path d="M452.511,36c0,1.322,-1.072,2.394,-2.393,2.394c-1.322,0,-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  3138. <circle cx="450.119" cy="36" fill="#383838" r="1.197"/>
  3139. </g>
  3140. <g id="pin63A">
  3141. <path d="M454.923,115.2c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.071,2.393,2.394" fill="#BFBFBF"/>
  3142. <path d="M459.71,115.2c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.071,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  3143. <circle cx="457.318" cy="115.2" fill="#383838" r="1.197"/>
  3144. </g>
  3145. <g id="pin63B">
  3146. <path d="M454.923,108c0,-1.322,1.072,-2.395,2.395,-2.395s2.393,1.072,2.393,2.395" fill="#BFBFBF"/>
  3147. <path d="M459.71,108c0,1.321,-1.07,2.393,-2.393,2.393s-2.395,-1.071,-2.395,-2.393" fill="#E6E6E6"/>
  3148. <circle cx="457.318" cy="108" fill="#383838" r="1.197"/>
  3149. </g>
  3150. <g id="pin63C">
  3151. <path d="M454.923,100.799c0,-1.321,1.072,-2.393,2.395,-2.393s2.393,1.071,2.393,2.393l0,0" fill="#BFBFBF"/>
  3152. <path d="M459.71,100.799c0,1.322,-1.07,2.395,-2.393,2.395s-2.395,-1.072,-2.395,-2.395" fill="#E6E6E6"/>
  3153. <circle cx="457.318" cy="100.8" fill="#383838" r="1.197"/>
  3154. </g>
  3155. <g id="pin63D">
  3156. <path d="M454.923,93.6c0,-1.322,1.072,-2.395,2.395,-2.395s2.393,1.072,2.393,2.395" fill="#BFBFBF"/>
  3157. <path d="M459.71,93.6c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  3158. <circle cx="457.318" cy="93.6" fill="#383838" r="1.197"/>
  3159. </g>
  3160. <g id="pin63E">
  3161. <path d="M454.923,86.4c0,-1.321,1.072,-2.394,2.395,-2.394s2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  3162. <path d="M459.71,86.4c0,1.321,-1.07,2.394,-2.393,2.394s-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  3163. <circle cx="457.318" cy="86.4" fill="#383838" r="1.196"/>
  3164. </g>
  3165. <g id="pin63F">
  3166. <path d="M454.923,64.8c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  3167. <path d="M459.71,64.8c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  3168. <circle cx="457.318" cy="64.8" fill="#383838" r="1.197"/>
  3169. </g>
  3170. <g id="pin63G">
  3171. <path d="M454.923,57.6c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  3172. <path d="M459.71,57.6c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  3173. <circle cx="457.318" cy="57.6" fill="#383838" r="1.197"/>
  3174. </g>
  3175. <g id="pin63H">
  3176. <path d="M454.923,50.4c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.072,2.393,2.394l0,0" fill="#BFBFBF"/>
  3177. <path d="M459.71,50.4c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.072,-2.395,-2.394" fill="#E6E6E6"/>
  3178. <circle cx="457.318" cy="50.4" fill="#383838" r="1.197"/>
  3179. </g>
  3180. <g id="pin63I">
  3181. <path d="M454.923,43.2c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.071,2.393,2.394" fill="#BFBFBF"/>
  3182. <path d="M459.71,43.2c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  3183. <circle cx="457.318" cy="43.2" fill="#383838" r="1.197"/>
  3184. </g>
  3185. <g id="pin63J">
  3186. <path d="M454.923,36c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  3187. <path d="M459.71,36c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  3188. <circle cx="457.318" cy="36" fill="#383838" r="1.197"/>
  3189. </g>
  3190. <g id="pin3W">
  3191. <path d="M22.94,144c0,-1.321,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  3192. <path d="M27.727,144c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  3193. <circle cx="25.333" cy="144" fill="#383838" r="1.196"/>
  3194. </g>
  3195. <g id="pin3X">
  3196. <path d="M22.94,136.799c0,-1.322,1.072,-2.393,2.394,-2.393c1.322,0,2.394,1.07,2.394,2.393" fill="#BFBFBF"/>
  3197. <path d="M27.727,136.799c0,1.322,-1.071,2.395,-2.394,2.395c-1.322,0,-2.394,-1.072,-2.394,-2.395" fill="#E6E6E6"/>
  3198. <circle cx="25.333" cy="136.8" fill="#383838" r="1.197"/>
  3199. </g>
  3200. <g id="pin3Y">
  3201. <path d="M22.94,14.4c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394" fill="#BFBFBF"/>
  3202. <path d="M27.727,14.4c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  3203. <circle cx="25.333" cy="14.4" fill="#383838" r="1.197"/>
  3204. </g>
  3205. <g id="pin3Z">
  3206. <path d="M22.94,7.2c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  3207. <path d="M27.727,7.2c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  3208. <circle cx="25.333" cy="7.2" fill="#383838" r="1.197"/>
  3209. </g>
  3210. <g id="pin4W">
  3211. <path d="M30.14,144c0,-1.321,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  3212. <path d="M34.927,144c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  3213. <circle cx="32.534" cy="144" fill="#383838" r="1.196"/>
  3214. </g>
  3215. <g id="pin4X">
  3216. <path d="M30.14,136.799c0,-1.322,1.071,-2.393,2.394,-2.393c1.322,0,2.394,1.07,2.394,2.393" fill="#BFBFBF"/>
  3217. <path d="M34.927,136.799c0,1.322,-1.072,2.395,-2.394,2.395c-1.322,0,-2.394,-1.072,-2.394,-2.395" fill="#E6E6E6"/>
  3218. <circle cx="32.534" cy="136.8" fill="#383838" r="1.197"/>
  3219. </g>
  3220. <g id="pin4Y">
  3221. <path d="M30.14,14.4c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394" fill="#BFBFBF"/>
  3222. <path d="M34.927,14.4c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  3223. <circle cx="32.534" cy="14.4" fill="#383838" r="1.197"/>
  3224. </g>
  3225. <g id="pin4Z">
  3226. <path d="M30.14,7.2c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  3227. <path d="M34.927,7.2c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  3228. <circle cx="32.534" cy="7.2" fill="#383838" r="1.197"/>
  3229. </g>
  3230. <g id="pin5W">
  3231. <path d="M37.34,144c0,-1.321,1.072,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  3232. <path d="M42.127,144c0,1.322,-1.072,2.394,-2.394,2.394S37.34,145.322,37.34,144" fill="#E6E6E6"/>
  3233. <circle cx="39.733" cy="144" fill="#383838" r="1.196"/>
  3234. </g>
  3235. <g id="pin5X">
  3236. <path d="M37.34,136.799c0,-1.322,1.072,-2.393,2.394,-2.393s2.394,1.07,2.394,2.393" fill="#BFBFBF"/>
  3237. <path d="M42.127,136.799c0,1.322,-1.072,2.395,-2.394,2.395s-2.394,-1.072,-2.394,-2.395" fill="#E6E6E6"/>
  3238. <circle cx="39.733" cy="136.8" fill="#383838" r="1.197"/>
  3239. </g>
  3240. <g id="pin5Y">
  3241. <path d="M37.34,14.4c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.071,2.394,2.394" fill="#BFBFBF"/>
  3242. <path d="M42.127,14.4c0,1.322,-1.072,2.394,-2.394,2.394S37.34,15.722,37.34,14.4l0,0" fill="#E6E6E6"/>
  3243. <circle cx="39.733" cy="14.4" fill="#383838" r="1.197"/>
  3244. </g>
  3245. <g id="pin5Z">
  3246. <path d="M37.34,7.2c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  3247. <path d="M42.127,7.2c0,1.322,-1.072,2.394,-2.394,2.394S37.34,8.522,37.34,7.2l0,0" fill="#E6E6E6"/>
  3248. <circle cx="39.733" cy="7.2" fill="#383838" r="1.197"/>
  3249. </g>
  3250. <g id="pin6W">
  3251. <path d="M44.54,144c0,-1.321,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  3252. <path d="M49.327,144c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  3253. <circle cx="46.934" cy="144" fill="#383838" r="1.196"/>
  3254. </g>
  3255. <g id="pin6X">
  3256. <path d="M44.54,136.799c0,-1.322,1.071,-2.393,2.394,-2.393c1.322,0,2.394,1.07,2.394,2.393" fill="#BFBFBF"/>
  3257. <path d="M49.327,136.799c0,1.322,-1.072,2.395,-2.394,2.395c-1.322,0,-2.394,-1.072,-2.394,-2.395" fill="#E6E6E6"/>
  3258. <circle cx="46.934" cy="136.8" fill="#383838" r="1.197"/>
  3259. </g>
  3260. <g id="pin6Y">
  3261. <path d="M44.54,14.4c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394" fill="#BFBFBF"/>
  3262. <path d="M49.327,14.4c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  3263. <circle cx="46.934" cy="14.4" fill="#383838" r="1.197"/>
  3264. </g>
  3265. <g id="pin6Z">
  3266. <path d="M44.54,7.2c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  3267. <path d="M49.327,7.2c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  3268. <circle cx="46.934" cy="7.2" fill="#383838" r="1.197"/>
  3269. </g>
  3270. <g id="pin7W">
  3271. <path d="M51.74,144c0,-1.321,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  3272. <path d="M56.527,144c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  3273. <circle cx="54.133" cy="144" fill="#383838" r="1.196"/>
  3274. </g>
  3275. <g id="pin7X">
  3276. <path d="M51.74,136.799c0,-1.322,1.072,-2.393,2.394,-2.393c1.322,0,2.394,1.07,2.394,2.393" fill="#BFBFBF"/>
  3277. <path d="M56.527,136.799c0,1.322,-1.071,2.395,-2.394,2.395c-1.322,0,-2.394,-1.072,-2.394,-2.395" fill="#E6E6E6"/>
  3278. <circle cx="54.133" cy="136.8" fill="#383838" r="1.197"/>
  3279. </g>
  3280. <g id="pin7Y">
  3281. <path d="M51.74,14.4c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394" fill="#BFBFBF"/>
  3282. <path d="M56.527,14.4c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  3283. <circle cx="54.133" cy="14.4" fill="#383838" r="1.197"/>
  3284. </g>
  3285. <g id="pin7Z">
  3286. <path d="M51.74,7.2c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  3287. <path d="M56.527,7.2c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  3288. <circle cx="54.133" cy="7.2" fill="#383838" r="1.197"/>
  3289. </g>
  3290. <g id="pin9W">
  3291. <path d="M66.14,144c0,-1.321,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  3292. <path d="M70.927,144c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  3293. <circle cx="68.533" cy="144" fill="#383838" r="1.196"/>
  3294. </g>
  3295. <g id="pin9X">
  3296. <path d="M66.14,136.799c0,-1.322,1.072,-2.393,2.394,-2.393c1.322,0,2.394,1.07,2.394,2.393" fill="#BFBFBF"/>
  3297. <path d="M70.927,136.799c0,1.322,-1.071,2.395,-2.394,2.395c-1.322,0,-2.394,-1.072,-2.394,-2.395" fill="#E6E6E6"/>
  3298. <circle cx="68.533" cy="136.8" fill="#383838" r="1.197"/>
  3299. </g>
  3300. <g id="pin9Y">
  3301. <path d="M66.14,14.4c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394" fill="#BFBFBF"/>
  3302. <path d="M70.927,14.4c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  3303. <circle cx="68.533" cy="14.4" fill="#383838" r="1.197"/>
  3304. </g>
  3305. <g id="pin9Z">
  3306. <path d="M66.14,7.2c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  3307. <path d="M70.927,7.2c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  3308. <circle cx="68.533" cy="7.2" fill="#383838" r="1.197"/>
  3309. </g>
  3310. <g id="pin10W">
  3311. <path d="M73.34,144c0,-1.321,1.072,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  3312. <path d="M78.127,144c0,1.322,-1.072,2.394,-2.394,2.394S73.34,145.322,73.34,144" fill="#E6E6E6"/>
  3313. <circle cx="75.733" cy="144" fill="#383838" r="1.196"/>
  3314. </g>
  3315. <g id="pin10X">
  3316. <path d="M73.34,136.799c0,-1.322,1.072,-2.393,2.394,-2.393s2.394,1.07,2.394,2.393" fill="#BFBFBF"/>
  3317. <path d="M78.127,136.799c0,1.322,-1.072,2.395,-2.394,2.395s-2.394,-1.072,-2.394,-2.395" fill="#E6E6E6"/>
  3318. <circle cx="75.733" cy="136.8" fill="#383838" r="1.197"/>
  3319. </g>
  3320. <g id="pin10Y">
  3321. <path d="M73.34,14.4c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.071,2.394,2.394" fill="#BFBFBF"/>
  3322. <path d="M78.127,14.4c0,1.322,-1.072,2.394,-2.394,2.394S73.34,15.722,73.34,14.4l0,0" fill="#E6E6E6"/>
  3323. <circle cx="75.733" cy="14.4" fill="#383838" r="1.197"/>
  3324. </g>
  3325. <g id="pin10Z">
  3326. <path d="M73.34,7.2c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  3327. <path d="M78.127,7.2c0,1.322,-1.072,2.394,-2.394,2.394S73.34,8.522,73.34,7.2l0,0" fill="#E6E6E6"/>
  3328. <circle cx="75.733" cy="7.2" fill="#383838" r="1.197"/>
  3329. </g>
  3330. <g id="pin11W">
  3331. <path d="M80.54,144c0,-1.321,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  3332. <path d="M85.327,144c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  3333. <circle cx="82.933" cy="144" fill="#383838" r="1.196"/>
  3334. </g>
  3335. <g id="pin11X">
  3336. <path d="M80.54,136.799c0,-1.322,1.072,-2.393,2.394,-2.393c1.322,0,2.394,1.07,2.394,2.393" fill="#BFBFBF"/>
  3337. <path d="M85.327,136.799c0,1.322,-1.071,2.395,-2.394,2.395c-1.322,0,-2.394,-1.072,-2.394,-2.395" fill="#E6E6E6"/>
  3338. <circle cx="82.933" cy="136.8" fill="#383838" r="1.197"/>
  3339. </g>
  3340. <g id="pin11Y">
  3341. <path d="M80.54,14.4c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394" fill="#BFBFBF"/>
  3342. <path d="M85.327,14.4c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  3343. <circle cx="82.933" cy="14.4" fill="#383838" r="1.197"/>
  3344. </g>
  3345. <g id="pin11Z">
  3346. <path d="M80.54,7.2c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  3347. <path d="M85.327,7.2c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  3348. <circle cx="82.933" cy="7.2" fill="#383838" r="1.197"/>
  3349. </g>
  3350. <g id="pin12W">
  3351. <path d="M87.74,144c0,-1.321,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  3352. <path d="M92.527,144c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  3353. <circle cx="90.133" cy="144" fill="#383838" r="1.196"/>
  3354. </g>
  3355. <g id="pin12X">
  3356. <path d="M87.74,136.799c0,-1.322,1.071,-2.393,2.394,-2.393c1.322,0,2.394,1.07,2.394,2.393" fill="#BFBFBF"/>
  3357. <path d="M92.527,136.799c0,1.322,-1.072,2.395,-2.394,2.395c-1.322,0,-2.394,-1.072,-2.394,-2.395" fill="#E6E6E6"/>
  3358. <circle cx="90.133" cy="136.8" fill="#383838" r="1.197"/>
  3359. </g>
  3360. <g id="pin12Y">
  3361. <path d="M87.74,14.4c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394" fill="#BFBFBF"/>
  3362. <path d="M92.527,14.4c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  3363. <circle cx="90.133" cy="14.4" fill="#383838" r="1.197"/>
  3364. </g>
  3365. <g id="pin12Z">
  3366. <path d="M87.74,7.2c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  3367. <path d="M92.527,7.2c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  3368. <circle cx="90.133" cy="7.2" fill="#383838" r="1.197"/>
  3369. </g>
  3370. <g id="pin13W">
  3371. <path d="M94.939,144c0,-1.321,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  3372. <path d="M99.727,144c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  3373. <circle cx="97.333" cy="144" fill="#383838" r="1.196"/>
  3374. </g>
  3375. <g id="pin13X">
  3376. <path d="M94.939,136.799c0,-1.322,1.072,-2.393,2.394,-2.393c1.322,0,2.394,1.07,2.394,2.393" fill="#BFBFBF"/>
  3377. <path d="M99.727,136.799c0,1.322,-1.072,2.395,-2.394,2.395c-1.322,0,-2.394,-1.072,-2.394,-2.395" fill="#E6E6E6"/>
  3378. <circle cx="97.333" cy="136.8" fill="#383838" r="1.197"/>
  3379. </g>
  3380. <g id="pin13Y">
  3381. <path d="M94.939,14.4c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394" fill="#BFBFBF"/>
  3382. <path d="M99.727,14.4c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  3383. <circle cx="97.333" cy="14.4" fill="#383838" r="1.197"/>
  3384. </g>
  3385. <g id="pin13Z">
  3386. <path d="M94.939,7.2c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  3387. <path d="M99.727,7.2c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  3388. <circle cx="97.333" cy="7.2" fill="#383838" r="1.197"/>
  3389. </g>
  3390. <g id="pin15W">
  3391. <path d="M109.339,144c0.002,-1.321,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.07,2.39,2.39" fill="#BFBFBF"/>
  3392. <path d="M114.126,144c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.396,-1.068,-2.397,-2.391c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  3393. <circle cx="111.733" cy="144" fill="#383838" r="1.196"/>
  3394. </g>
  3395. <g id="pin15X">
  3396. <path d="M109.339,136.799c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  3397. <path d="M114.126,136.799c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.396,-1.067,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.008" fill="#E6E6E6"/>
  3398. <circle cx="111.733" cy="136.8" fill="#383838" r="1.197"/>
  3399. </g>
  3400. <g id="pin15Y">
  3401. <path d="M109.339,14.4c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  3402. <path d="M114.126,14.4c0.002,1.322,-1.068,2.395,-2.39,2.397c-1.322,0.002,-2.396,-1.068,-2.397,-2.39c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  3403. <circle cx="111.733" cy="14.4" fill="#383838" r="1.197"/>
  3404. </g>
  3405. <g id="pin15Z">
  3406. <path d="M109.339,7.2c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  3407. <path d="M114.126,7.2c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.396,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  3408. <circle cx="111.733" cy="7.2" fill="#383838" r="1.197"/>
  3409. </g>
  3410. <g id="pin16W">
  3411. <path d="M116.54,144c0.002,-1.321,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.07,2.39,2.39" fill="#BFBFBF"/>
  3412. <path d="M121.327,144c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.395,-1.068,-2.397,-2.391c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  3413. <circle cx="118.933" cy="144" fill="#383838" r="1.196"/>
  3414. </g>
  3415. <g id="pin16X">
  3416. <path d="M116.54,136.799c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  3417. <path d="M121.327,136.799c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.395,-1.067,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.008" fill="#E6E6E6"/>
  3418. <circle cx="118.933" cy="136.8" fill="#383838" r="1.197"/>
  3419. </g>
  3420. <g id="pin16Y">
  3421. <path d="M116.54,14.4c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  3422. <path d="M121.327,14.4c0.002,1.322,-1.068,2.395,-2.39,2.397c-1.322,0.002,-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  3423. <circle cx="118.933" cy="14.4" fill="#383838" r="1.197"/>
  3424. </g>
  3425. <g id="pin16Z">
  3426. <path d="M116.54,7.2c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  3427. <path d="M121.327,7.2c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  3428. <circle cx="118.933" cy="7.2" fill="#383838" r="1.197"/>
  3429. </g>
  3430. <g id="pin17W">
  3431. <path d="M123.739,144c0.002,-1.321,1.076,-2.392,2.397,-2.39c1.319,0.002,2.388,1.07,2.39,2.39" fill="#BFBFBF"/>
  3432. <path d="M128.527,144c0.002,1.322,-1.068,2.396,-2.39,2.397s-2.395,-1.068,-2.397,-2.391c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  3433. <circle cx="126.133" cy="144" fill="#383838" r="1.196"/>
  3434. </g>
  3435. <g id="pin17X">
  3436. <path d="M123.739,136.799c0.002,-1.322,1.076,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  3437. <path d="M128.527,136.799c0.002,1.322,-1.068,2.396,-2.39,2.397s-2.395,-1.067,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.008" fill="#E6E6E6"/>
  3438. <circle cx="126.133" cy="136.8" fill="#383838" r="1.197"/>
  3439. </g>
  3440. <g id="pin17Y">
  3441. <path d="M123.739,14.4c0.002,-1.322,1.076,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  3442. <path d="M128.527,14.4c0.002,1.322,-1.068,2.395,-2.39,2.397s-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  3443. <circle cx="126.133" cy="14.4" fill="#383838" r="1.197"/>
  3444. </g>
  3445. <g id="pin17Z">
  3446. <path d="M123.739,7.2c0.002,-1.322,1.076,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  3447. <path d="M128.527,7.2c0.002,1.322,-1.068,2.396,-2.39,2.397s-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  3448. <circle cx="126.133" cy="7.2" fill="#383838" r="1.197"/>
  3449. </g>
  3450. <g id="pin18W">
  3451. <path d="M130.939,144c0.002,-1.321,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.07,2.39,2.39" fill="#BFBFBF"/>
  3452. <path d="M135.727,144c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.395,-1.068,-2.397,-2.391c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  3453. <circle cx="133.333" cy="144" fill="#383838" r="1.196"/>
  3454. </g>
  3455. <g id="pin18X">
  3456. <path d="M130.939,136.799c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  3457. <path d="M135.727,136.799c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.395,-1.067,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.008" fill="#E6E6E6"/>
  3458. <circle cx="133.333" cy="136.8" fill="#383838" r="1.197"/>
  3459. </g>
  3460. <g id="pin18Y">
  3461. <path d="M130.939,14.4c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  3462. <path d="M135.727,14.4c0.002,1.322,-1.068,2.395,-2.39,2.397c-1.322,0.002,-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  3463. <circle cx="133.333" cy="14.4" fill="#383838" r="1.197"/>
  3464. </g>
  3465. <g id="pin18Z">
  3466. <path d="M130.939,7.2c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  3467. <path d="M135.727,7.2c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  3468. <circle cx="133.333" cy="7.2" fill="#383838" r="1.197"/>
  3469. </g>
  3470. <g id="pin19W">
  3471. <path d="M138.139,144c0.002,-1.321,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.07,2.39,2.39" fill="#BFBFBF"/>
  3472. <path d="M142.927,144c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.396,-1.068,-2.397,-2.391c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  3473. <circle cx="140.533" cy="144" fill="#383838" r="1.196"/>
  3474. </g>
  3475. <g id="pin19X">
  3476. <path d="M138.139,136.799c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  3477. <path d="M142.927,136.799c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.396,-1.067,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.008" fill="#E6E6E6"/>
  3478. <circle cx="140.533" cy="136.8" fill="#383838" r="1.197"/>
  3479. </g>
  3480. <g id="pin19Y">
  3481. <path d="M138.139,14.4c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  3482. <path d="M142.927,14.4c0.002,1.322,-1.068,2.395,-2.39,2.397c-1.322,0.002,-2.396,-1.068,-2.397,-2.39c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  3483. <circle cx="140.533" cy="14.4" fill="#383838" r="1.197"/>
  3484. </g>
  3485. <g id="pin19Z">
  3486. <path d="M138.139,7.2c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  3487. <path d="M142.927,7.2c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.396,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  3488. <circle cx="140.533" cy="7.2" fill="#383838" r="1.197"/>
  3489. </g>
  3490. <g id="pin21W">
  3491. <path d="M152.54,144c0.002,-1.321,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.07,2.39,2.39" fill="#BFBFBF"/>
  3492. <path d="M157.327,144c0.002,1.322,-1.068,2.396,-2.39,2.397s-2.395,-1.068,-2.397,-2.391c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  3493. <circle cx="154.933" cy="144" fill="#383838" r="1.196"/>
  3494. </g>
  3495. <g id="pin21X">
  3496. <path d="M152.54,136.799c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  3497. <path d="M157.327,136.799c0.002,1.322,-1.068,2.396,-2.39,2.397s-2.395,-1.067,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.008" fill="#E6E6E6"/>
  3498. <circle cx="154.933" cy="136.8" fill="#383838" r="1.197"/>
  3499. </g>
  3500. <g id="pin21Y">
  3501. <path d="M152.54,14.4c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  3502. <path d="M157.327,14.4c0.002,1.322,-1.068,2.395,-2.39,2.397s-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  3503. <circle cx="154.933" cy="14.4" fill="#383838" r="1.197"/>
  3504. </g>
  3505. <g id="pin21Z">
  3506. <path d="M152.54,7.2c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  3507. <path d="M157.327,7.2c0.002,1.322,-1.068,2.396,-2.39,2.397s-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  3508. <circle cx="154.933" cy="7.2" fill="#383838" r="1.197"/>
  3509. </g>
  3510. <g id="pin22W">
  3511. <path d="M159.739,144c0.002,-1.321,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.07,2.39,2.39" fill="#BFBFBF"/>
  3512. <path d="M164.526,144c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.395,-1.068,-2.397,-2.391c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  3513. <circle cx="162.133" cy="144" fill="#383838" r="1.196"/>
  3514. </g>
  3515. <g id="pin22X">
  3516. <path d="M159.739,136.799c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  3517. <path d="M164.526,136.799c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.395,-1.067,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.008" fill="#E6E6E6"/>
  3518. <circle cx="162.133" cy="136.8" fill="#383838" r="1.197"/>
  3519. </g>
  3520. <g id="pin22Y">
  3521. <path d="M159.739,14.4c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  3522. <path d="M164.526,14.4c0.002,1.322,-1.068,2.395,-2.39,2.397c-1.322,0.002,-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  3523. <circle cx="162.133" cy="14.4" fill="#383838" r="1.197"/>
  3524. </g>
  3525. <g id="pin22Z">
  3526. <path d="M159.739,7.2c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  3527. <path d="M164.526,7.2c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  3528. <circle cx="162.133" cy="7.2" fill="#383838" r="1.197"/>
  3529. </g>
  3530. <g id="pin23W">
  3531. <path d="M166.939,144c0.002,-1.321,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.07,2.39,2.39" fill="#BFBFBF"/>
  3532. <path d="M171.727,144c0.002,1.322,-1.068,2.396,-2.39,2.397s-2.395,-1.068,-2.397,-2.391c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  3533. <circle cx="169.333" cy="144" fill="#383838" r="1.196"/>
  3534. </g>
  3535. <g id="pin23X">
  3536. <path d="M166.939,136.799c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  3537. <path d="M171.727,136.799c0.002,1.322,-1.068,2.396,-2.39,2.397s-2.395,-1.067,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.008" fill="#E6E6E6"/>
  3538. <circle cx="169.333" cy="136.8" fill="#383838" r="1.197"/>
  3539. </g>
  3540. <g id="pin23Y">
  3541. <path d="M166.939,14.4c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  3542. <path d="M171.727,14.4c0.002,1.322,-1.068,2.395,-2.39,2.397s-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  3543. <circle cx="169.333" cy="14.4" fill="#383838" r="1.197"/>
  3544. </g>
  3545. <g id="pin23Z">
  3546. <path d="M166.939,7.2c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  3547. <path d="M171.727,7.2c0.002,1.322,-1.068,2.396,-2.39,2.397s-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  3548. <circle cx="169.333" cy="7.2" fill="#383838" r="1.197"/>
  3549. </g>
  3550. <g id="pin24W">
  3551. <path d="M174.139,144c0.002,-1.321,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.07,2.39,2.39" fill="#BFBFBF"/>
  3552. <path d="M178.926,144c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.396,-1.068,-2.397,-2.391c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  3553. <circle cx="176.533" cy="144" fill="#383838" r="1.196"/>
  3554. </g>
  3555. <g id="pin24X">
  3556. <path d="M174.139,136.799c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  3557. <path d="M178.926,136.799c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.396,-1.067,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.008" fill="#E6E6E6"/>
  3558. <circle cx="176.533" cy="136.8" fill="#383838" r="1.197"/>
  3559. </g>
  3560. <g id="pin24Y">
  3561. <path d="M174.139,14.4c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  3562. <path d="M178.926,14.4c0.002,1.322,-1.068,2.395,-2.39,2.397c-1.322,0.002,-2.396,-1.068,-2.397,-2.39c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  3563. <circle cx="176.533" cy="14.4" fill="#383838" r="1.197"/>
  3564. </g>
  3565. <g id="pin24Z">
  3566. <path d="M174.139,7.2c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  3567. <path d="M178.926,7.2c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.396,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  3568. <circle cx="176.533" cy="7.2" fill="#383838" r="1.197"/>
  3569. </g>
  3570. <g id="pin25W">
  3571. <path d="M181.339,144c0.002,-1.321,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.07,2.39,2.39" fill="#BFBFBF"/>
  3572. <path d="M186.126,144c0.002,1.322,-1.068,2.396,-2.39,2.397s-2.395,-1.068,-2.397,-2.391c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  3573. <circle cx="183.733" cy="144" fill="#383838" r="1.196"/>
  3574. </g>
  3575. <g id="pin25X">
  3576. <path d="M181.339,136.799c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  3577. <path d="M186.126,136.799c0.002,1.322,-1.068,2.396,-2.39,2.397s-2.395,-1.067,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.008" fill="#E6E6E6"/>
  3578. <circle cx="183.733" cy="136.8" fill="#383838" r="1.197"/>
  3579. </g>
  3580. <g id="pin25Y">
  3581. <path d="M181.339,14.4c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  3582. <path d="M186.126,14.4c0.002,1.322,-1.068,2.395,-2.39,2.397s-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  3583. <circle cx="183.733" cy="14.4" fill="#383838" r="1.197"/>
  3584. </g>
  3585. <g id="pin25Z">
  3586. <path d="M181.339,7.2c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  3587. <path d="M186.126,7.2c0.002,1.322,-1.068,2.396,-2.39,2.397s-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  3588. <circle cx="183.733" cy="7.2" fill="#383838" r="1.197"/>
  3589. </g>
  3590. <g id="pin27W">
  3591. <path d="M195.739,144c0.002,-1.321,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.07,2.39,2.39" fill="#BFBFBF"/>
  3592. <path d="M200.526,144c0.002,1.322,-1.068,2.396,-2.39,2.397s-2.395,-1.068,-2.397,-2.391c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  3593. <circle cx="198.133" cy="144" fill="#383838" r="1.196"/>
  3594. </g>
  3595. <g id="pin27X">
  3596. <path d="M195.739,136.799c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  3597. <path d="M200.526,136.799c0.002,1.322,-1.068,2.396,-2.39,2.397s-2.395,-1.067,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.008" fill="#E6E6E6"/>
  3598. <circle cx="198.133" cy="136.8" fill="#383838" r="1.197"/>
  3599. </g>
  3600. <g id="pin27Y">
  3601. <path d="M195.739,14.4c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  3602. <path d="M200.526,14.4c0.002,1.322,-1.068,2.395,-2.39,2.397s-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  3603. <circle cx="198.133" cy="14.4" fill="#383838" r="1.197"/>
  3604. </g>
  3605. <g id="pin27Z">
  3606. <path d="M195.739,7.2c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39" fill="#BFBFBF"/>
  3607. <path d="M200.526,7.2c0.002,1.322,-1.068,2.396,-2.39,2.397s-2.395,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  3608. <circle cx="198.133" cy="7.2" fill="#383838" r="1.197"/>
  3609. </g>
  3610. <g id="pin28W">
  3611. <path d="M202.939,144c0,-1.321,1.071,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  3612. <path d="M207.726,144c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.396,-1.068,-2.397,-2.391c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  3613. <circle cx="205.333" cy="144" fill="#383838" r="1.196"/>
  3614. </g>
  3615. <g id="pin28X">
  3616. <path d="M202.939,136.799c0,-1.322,1.071,-2.393,2.394,-2.393s2.394,1.07,2.394,2.393" fill="#BFBFBF"/>
  3617. <path d="M207.726,136.799c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.396,-1.067,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.008" fill="#E6E6E6"/>
  3618. <circle cx="205.333" cy="136.8" fill="#383838" r="1.197"/>
  3619. </g>
  3620. <g id="pin28Y">
  3621. <path d="M202.939,14.4c0,-1.322,1.071,-2.394,2.394,-2.394s2.394,1.071,2.394,2.394" fill="#BFBFBF"/>
  3622. <path d="M207.726,14.4c0.002,1.322,-1.068,2.395,-2.39,2.397c-1.322,0.002,-2.396,-1.068,-2.397,-2.39c0,-0.002,0,-0.004,0,-0.007" fill="#E6E6E6"/>
  3623. <circle cx="205.333" cy="14.4" fill="#383838" r="1.197"/>
  3624. </g>
  3625. <g id="pin28Z">
  3626. <path d="M202.939,7.2c0,-1.322,1.071,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  3627. <path d="M207.726,7.2c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.396,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007" fill="#E6E6E6"/>
  3628. <circle cx="205.333" cy="7.2" fill="#383838" r="1.197"/>
  3629. </g>
  3630. <g id="pin29W">
  3631. <path d="M210.139,144c0,-1.321,1.071,-2.394,2.394,-2.394c1.321,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  3632. <path d="M214.926,144c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  3633. <circle cx="212.533" cy="144" fill="#383838" r="1.196"/>
  3634. </g>
  3635. <g id="pin29X">
  3636. <path d="M210.139,136.799c0,-1.322,1.071,-2.393,2.394,-2.393c1.321,0,2.394,1.07,2.394,2.393" fill="#BFBFBF"/>
  3637. <path d="M214.926,136.799c0,1.322,-1.072,2.395,-2.394,2.395c-1.322,0,-2.394,-1.072,-2.394,-2.395" fill="#E6E6E6"/>
  3638. <circle cx="212.533" cy="136.8" fill="#383838" r="1.197"/>
  3639. </g>
  3640. <g id="pin29Y">
  3641. <path d="M210.139,14.4c0,-1.322,1.071,-2.394,2.394,-2.394c1.321,0,2.394,1.071,2.394,2.394" fill="#BFBFBF"/>
  3642. <path d="M214.926,14.4c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  3643. <circle cx="212.533" cy="14.4" fill="#383838" r="1.197"/>
  3644. </g>
  3645. <g id="pin29Z">
  3646. <path d="M210.139,7.2c0,-1.322,1.071,-2.394,2.394,-2.394c1.321,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  3647. <path d="M214.926,7.2c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  3648. <circle cx="212.533" cy="7.2" fill="#383838" r="1.197"/>
  3649. </g>
  3650. <g id="pin30W">
  3651. <path d="M217.338,144c0,-1.321,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  3652. <path d="M222.125,144c0,1.322,-1.071,2.394,-2.394,2.394c-1.321,0,-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  3653. <circle cx="219.732" cy="144" fill="#383838" r="1.196"/>
  3654. </g>
  3655. <g id="pin30X">
  3656. <path d="M217.338,136.799c0,-1.322,1.072,-2.393,2.394,-2.393c1.322,0,2.394,1.07,2.394,2.393" fill="#BFBFBF"/>
  3657. <path d="M222.125,136.799c0,1.322,-1.071,2.395,-2.394,2.395c-1.321,0,-2.394,-1.072,-2.394,-2.395" fill="#E6E6E6"/>
  3658. <circle cx="219.732" cy="136.8" fill="#383838" r="1.197"/>
  3659. </g>
  3660. <g id="pin30Y">
  3661. <path d="M217.338,14.4c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394" fill="#BFBFBF"/>
  3662. <path d="M222.125,14.4c0,1.322,-1.071,2.394,-2.394,2.394c-1.321,0,-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  3663. <circle cx="219.732" cy="14.4" fill="#383838" r="1.197"/>
  3664. </g>
  3665. <g id="pin30Z">
  3666. <path d="M217.338,7.2c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  3667. <path d="M222.125,7.2c0,1.322,-1.071,2.394,-2.394,2.394c-1.321,0,-2.394,-1.071,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  3668. <circle cx="219.732" cy="7.2" fill="#383838" r="1.197"/>
  3669. </g>
  3670. <g id="pin31W">
  3671. <path d="M224.539,144c0,-1.321,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  3672. <path d="M229.326,144c0,1.322,-1.071,2.394,-2.394,2.394c-1.321,0,-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  3673. <circle cx="226.932" cy="144" fill="#383838" r="1.196"/>
  3674. </g>
  3675. <g id="pin31X">
  3676. <path d="M224.539,136.799c0,-1.322,1.072,-2.393,2.394,-2.393c1.322,0,2.394,1.07,2.394,2.393" fill="#BFBFBF"/>
  3677. <path d="M229.326,136.799c0,1.322,-1.071,2.395,-2.394,2.395c-1.321,0,-2.394,-1.072,-2.394,-2.395" fill="#E6E6E6"/>
  3678. <circle cx="226.932" cy="136.8" fill="#383838" r="1.197"/>
  3679. </g>
  3680. <g id="pin31Y">
  3681. <path d="M224.539,14.4c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394" fill="#BFBFBF"/>
  3682. <path d="M229.326,14.4c0,1.322,-1.071,2.394,-2.394,2.394c-1.321,0,-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  3683. <circle cx="226.932" cy="14.4" fill="#383838" r="1.197"/>
  3684. </g>
  3685. <g id="pin31Z">
  3686. <path d="M224.539,7.2c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  3687. <path d="M229.326,7.2c0,1.322,-1.071,2.394,-2.394,2.394c-1.321,0,-2.394,-1.071,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  3688. <circle cx="226.932" cy="7.2" fill="#383838" r="1.197"/>
  3689. </g>
  3690. <g id="pin33W">
  3691. <path d="M238.939,144c0,-1.321,1.071,-2.394,2.393,-2.394c1.322,0,2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  3692. <path d="M243.726,144c0,1.322,-1.072,2.394,-2.395,2.394c-1.321,0,-2.393,-1.071,-2.393,-2.394" fill="#E6E6E6"/>
  3693. <circle cx="241.332" cy="144" fill="#383838" r="1.196"/>
  3694. </g>
  3695. <g id="pin33X">
  3696. <path d="M238.939,136.799c0,-1.322,1.071,-2.393,2.393,-2.393c1.322,0,2.395,1.07,2.395,2.393" fill="#BFBFBF"/>
  3697. <path d="M243.726,136.799c0,1.322,-1.072,2.395,-2.395,2.395c-1.321,0,-2.393,-1.072,-2.393,-2.395" fill="#E6E6E6"/>
  3698. <circle cx="241.332" cy="136.8" fill="#383838" r="1.197"/>
  3699. </g>
  3700. <g id="pin33Y">
  3701. <path d="M238.939,14.4c0,-1.322,1.071,-2.394,2.393,-2.394c1.322,0,2.395,1.071,2.395,2.394" fill="#BFBFBF"/>
  3702. <path d="M243.726,14.4c0,1.322,-1.072,2.394,-2.395,2.394c-1.321,0,-2.393,-1.072,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  3703. <circle cx="241.332" cy="14.4" fill="#383838" r="1.197"/>
  3704. </g>
  3705. <g id="pin33Z">
  3706. <path d="M238.939,7.2c0,-1.322,1.071,-2.394,2.393,-2.394c1.322,0,2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  3707. <path d="M243.726,7.2c0,1.322,-1.072,2.394,-2.395,2.394c-1.321,0,-2.393,-1.071,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  3708. <circle cx="241.332" cy="7.2" fill="#383838" r="1.197"/>
  3709. </g>
  3710. <g id="pin34W">
  3711. <path d="M246.138,144c0,-1.321,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  3712. <path d="M250.925,144c0,1.322,-1.071,2.394,-2.394,2.394c-1.321,0,-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  3713. <circle cx="248.532" cy="144" fill="#383838" r="1.196"/>
  3714. </g>
  3715. <g id="pin34X">
  3716. <path d="M246.138,136.799c0,-1.322,1.072,-2.393,2.394,-2.393c1.322,0,2.394,1.07,2.394,2.393" fill="#BFBFBF"/>
  3717. <path d="M250.925,136.799c0,1.322,-1.071,2.395,-2.394,2.395c-1.321,0,-2.394,-1.072,-2.394,-2.395" fill="#E6E6E6"/>
  3718. <circle cx="248.532" cy="136.8" fill="#383838" r="1.197"/>
  3719. </g>
  3720. <g id="pin34Y">
  3721. <path d="M246.138,14.4c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394" fill="#BFBFBF"/>
  3722. <path d="M250.925,14.4c0,1.322,-1.071,2.394,-2.394,2.394c-1.321,0,-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  3723. <circle cx="248.532" cy="14.4" fill="#383838" r="1.197"/>
  3724. </g>
  3725. <g id="pin34Z">
  3726. <path d="M246.138,7.2c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  3727. <path d="M250.925,7.2c0,1.322,-1.071,2.394,-2.394,2.394c-1.321,0,-2.394,-1.071,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  3728. <circle cx="248.532" cy="7.2" fill="#383838" r="1.197"/>
  3729. </g>
  3730. <g id="pin35W">
  3731. <path d="M253.338,144c0,-1.321,1.071,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  3732. <path d="M258.125,144c0,1.322,-1.071,2.394,-2.394,2.394s-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  3733. <circle cx="255.732" cy="144" fill="#383838" r="1.196"/>
  3734. </g>
  3735. <g id="pin35X">
  3736. <path d="M253.338,136.799c0,-1.322,1.071,-2.393,2.394,-2.393s2.394,1.07,2.394,2.393" fill="#BFBFBF"/>
  3737. <path d="M258.125,136.799c0,1.322,-1.071,2.395,-2.394,2.395s-2.394,-1.072,-2.394,-2.395" fill="#E6E6E6"/>
  3738. <circle cx="255.732" cy="136.8" fill="#383838" r="1.197"/>
  3739. </g>
  3740. <g id="pin35Y">
  3741. <path d="M253.338,14.4c0,-1.322,1.071,-2.394,2.394,-2.394s2.394,1.071,2.394,2.394" fill="#BFBFBF"/>
  3742. <path d="M258.125,14.4c0,1.322,-1.071,2.394,-2.394,2.394s-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  3743. <circle cx="255.732" cy="14.4" fill="#383838" r="1.197"/>
  3744. </g>
  3745. <g id="pin35Z">
  3746. <path d="M253.338,7.2c0,-1.322,1.071,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  3747. <path d="M258.125,7.2c0,1.322,-1.071,2.394,-2.394,2.394s-2.394,-1.071,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  3748. <circle cx="255.732" cy="7.2" fill="#383838" r="1.197"/>
  3749. </g>
  3750. <g id="pin36W">
  3751. <path d="M260.539,144c0,-1.321,1.071,-2.394,2.393,-2.394c1.322,0,2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  3752. <path d="M265.326,144c0,1.322,-1.072,2.394,-2.395,2.394c-1.321,0,-2.393,-1.071,-2.393,-2.394" fill="#E6E6E6"/>
  3753. <circle cx="262.931" cy="144" fill="#383838" r="1.196"/>
  3754. </g>
  3755. <g id="pin36X">
  3756. <path d="M260.539,136.799c0,-1.322,1.071,-2.393,2.393,-2.393c1.322,0,2.395,1.07,2.395,2.393" fill="#BFBFBF"/>
  3757. <path d="M265.326,136.799c0,1.322,-1.072,2.395,-2.395,2.395c-1.321,0,-2.393,-1.072,-2.393,-2.395" fill="#E6E6E6"/>
  3758. <circle cx="262.931" cy="136.8" fill="#383838" r="1.197"/>
  3759. </g>
  3760. <g id="pin36Y">
  3761. <path d="M260.539,14.4c0,-1.322,1.071,-2.394,2.393,-2.394c1.322,0,2.395,1.071,2.395,2.394" fill="#BFBFBF"/>
  3762. <path d="M265.326,14.4c0,1.322,-1.072,2.394,-2.395,2.394c-1.321,0,-2.393,-1.072,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  3763. <circle cx="262.931" cy="14.4" fill="#383838" r="1.197"/>
  3764. </g>
  3765. <g id="pin36Z">
  3766. <path d="M260.539,7.2c0,-1.322,1.071,-2.394,2.393,-2.394c1.322,0,2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  3767. <path d="M265.326,7.2c0,1.322,-1.072,2.394,-2.395,2.394c-1.321,0,-2.393,-1.071,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  3768. <circle cx="262.931" cy="7.2" fill="#383838" r="1.197"/>
  3769. </g>
  3770. <g id="pin37W">
  3771. <path d="M267.738,144c0,-1.321,1.072,-2.394,2.395,-2.394c1.321,0,2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  3772. <path d="M272.525,144c0,1.322,-1.071,2.394,-2.393,2.394c-1.322,0,-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  3773. <circle cx="270.132" cy="144" fill="#383838" r="1.196"/>
  3774. </g>
  3775. <g id="pin37X">
  3776. <path d="M267.738,136.799c0,-1.322,1.072,-2.393,2.395,-2.393c1.321,0,2.393,1.07,2.393,2.393" fill="#BFBFBF"/>
  3777. <path d="M272.525,136.799c0,1.322,-1.071,2.395,-2.393,2.395c-1.322,0,-2.395,-1.072,-2.395,-2.395" fill="#E6E6E6"/>
  3778. <circle cx="270.132" cy="136.8" fill="#383838" r="1.197"/>
  3779. </g>
  3780. <g id="pin37Y">
  3781. <path d="M267.738,14.4c0,-1.322,1.072,-2.394,2.395,-2.394c1.321,0,2.393,1.071,2.393,2.394" fill="#BFBFBF"/>
  3782. <path d="M272.525,14.4c0,1.322,-1.071,2.394,-2.393,2.394c-1.322,0,-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  3783. <circle cx="270.132" cy="14.4" fill="#383838" r="1.197"/>
  3784. </g>
  3785. <g id="pin37Z">
  3786. <path d="M267.738,7.2c0,-1.322,1.072,-2.394,2.395,-2.394c1.321,0,2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  3787. <path d="M272.525,7.2c0,1.322,-1.071,2.394,-2.393,2.394c-1.322,0,-2.395,-1.071,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  3788. <circle cx="270.132" cy="7.2" fill="#383838" r="1.197"/>
  3789. </g>
  3790. <g id="pin39W">
  3791. <path d="M282.138,144c0,-1.321,1.072,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  3792. <path d="M286.925,144c0,1.322,-1.072,2.394,-2.394,2.394s-2.394,-1.071,-2.394,-2.394" fill="#E6E6E6"/>
  3793. <circle cx="284.532" cy="144" fill="#383838" r="1.196"/>
  3794. </g>
  3795. <g id="pin39X">
  3796. <path d="M282.138,136.799c0,-1.322,1.072,-2.393,2.394,-2.393s2.394,1.07,2.394,2.393" fill="#BFBFBF"/>
  3797. <path d="M286.925,136.799c0,1.322,-1.072,2.395,-2.394,2.395s-2.394,-1.072,-2.394,-2.395" fill="#E6E6E6"/>
  3798. <circle cx="284.532" cy="136.8" fill="#383838" r="1.197"/>
  3799. </g>
  3800. <g id="pin39Y">
  3801. <path d="M282.138,14.4c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.071,2.394,2.394" fill="#BFBFBF"/>
  3802. <path d="M286.925,14.4c0,1.322,-1.072,2.394,-2.394,2.394s-2.394,-1.072,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  3803. <circle cx="284.532" cy="14.4" fill="#383838" r="1.197"/>
  3804. </g>
  3805. <g id="pin39Z">
  3806. <path d="M282.138,7.2c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  3807. <path d="M286.925,7.2c0,1.322,-1.072,2.394,-2.394,2.394s-2.394,-1.071,-2.394,-2.394l0,0" fill="#E6E6E6"/>
  3808. <circle cx="284.532" cy="7.2" fill="#383838" r="1.197"/>
  3809. </g>
  3810. <g id="pin40W">
  3811. <path d="M289.337,144c0,-1.321,1.072,-2.394,2.395,-2.394s2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  3812. <path d="M294.125,144c0,1.322,-1.071,2.394,-2.394,2.394s-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  3813. <circle cx="291.732" cy="144" fill="#383838" r="1.196"/>
  3814. </g>
  3815. <g id="pin40X">
  3816. <path d="M289.337,136.799c0,-1.322,1.072,-2.393,2.395,-2.393s2.394,1.07,2.394,2.393" fill="#BFBFBF"/>
  3817. <path d="M294.125,136.799c0,1.322,-1.071,2.395,-2.394,2.395s-2.395,-1.072,-2.395,-2.395" fill="#E6E6E6"/>
  3818. <circle cx="291.732" cy="136.8" fill="#383838" r="1.197"/>
  3819. </g>
  3820. <g id="pin40Y">
  3821. <path d="M289.337,14.4c0,-1.322,1.072,-2.394,2.395,-2.394s2.394,1.071,2.394,2.394" fill="#BFBFBF"/>
  3822. <path d="M294.125,14.4c0,1.322,-1.071,2.394,-2.394,2.394s-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  3823. <circle cx="291.732" cy="14.4" fill="#383838" r="1.197"/>
  3824. </g>
  3825. <g id="pin40Z">
  3826. <path d="M289.337,7.2c0,-1.322,1.072,-2.394,2.395,-2.394s2.394,1.072,2.394,2.394" fill="#BFBFBF"/>
  3827. <path d="M294.125,7.2c0,1.322,-1.071,2.394,-2.394,2.394s-2.395,-1.071,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  3828. <circle cx="291.732" cy="7.2" fill="#383838" r="1.197"/>
  3829. </g>
  3830. <g id="pin41W">
  3831. <path d="M296.539,144c0,-1.321,1.071,-2.394,2.393,-2.394c1.322,0,2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  3832. <path d="M301.326,144c0,1.322,-1.072,2.394,-2.395,2.394c-1.321,0,-2.393,-1.071,-2.393,-2.394" fill="#E6E6E6"/>
  3833. <circle cx="298.931" cy="144" fill="#383838" r="1.196"/>
  3834. </g>
  3835. <g id="pin41X">
  3836. <path d="M296.539,136.799c0,-1.322,1.071,-2.393,2.393,-2.393c1.322,0,2.395,1.07,2.395,2.393" fill="#BFBFBF"/>
  3837. <path d="M301.326,136.799c0,1.322,-1.072,2.395,-2.395,2.395c-1.321,0,-2.393,-1.072,-2.393,-2.395" fill="#E6E6E6"/>
  3838. <circle cx="298.931" cy="136.8" fill="#383838" r="1.197"/>
  3839. </g>
  3840. <g id="pin41Y">
  3841. <path d="M296.539,14.4c0,-1.322,1.071,-2.394,2.393,-2.394c1.322,0,2.395,1.071,2.395,2.394" fill="#BFBFBF"/>
  3842. <path d="M301.326,14.4c0,1.322,-1.072,2.394,-2.395,2.394c-1.321,0,-2.393,-1.072,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  3843. <circle cx="298.931" cy="14.4" fill="#383838" r="1.197"/>
  3844. </g>
  3845. <g id="pin41Z">
  3846. <path d="M296.539,7.2c0,-1.322,1.071,-2.394,2.393,-2.394c1.322,0,2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  3847. <path d="M301.326,7.2c0,1.322,-1.072,2.394,-2.395,2.394c-1.321,0,-2.393,-1.071,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  3848. <circle cx="298.931" cy="7.2" fill="#383838" r="1.197"/>
  3849. </g>
  3850. <g id="pin42W">
  3851. <path d="M303.738,144c0,-1.321,1.072,-2.394,2.395,-2.394c1.32,0,2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  3852. <path d="M308.525,144c0,1.322,-1.072,2.394,-2.393,2.394c-1.322,0,-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  3853. <circle cx="306.132" cy="144" fill="#383838" r="1.196"/>
  3854. </g>
  3855. <g id="pin42X">
  3856. <path d="M303.738,136.799c0,-1.322,1.072,-2.393,2.395,-2.393c1.32,0,2.393,1.07,2.393,2.393" fill="#BFBFBF"/>
  3857. <path d="M308.525,136.799c0,1.322,-1.072,2.395,-2.393,2.395c-1.322,0,-2.395,-1.072,-2.395,-2.395" fill="#E6E6E6"/>
  3858. <circle cx="306.132" cy="136.8" fill="#383838" r="1.197"/>
  3859. </g>
  3860. <g id="pin42Y">
  3861. <path d="M303.738,14.4c0,-1.322,1.072,-2.394,2.395,-2.394c1.32,0,2.393,1.071,2.393,2.394" fill="#BFBFBF"/>
  3862. <path d="M308.525,14.4c0,1.322,-1.072,2.394,-2.393,2.394c-1.322,0,-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  3863. <circle cx="306.132" cy="14.4" fill="#383838" r="1.197"/>
  3864. </g>
  3865. <g id="pin42Z">
  3866. <path d="M303.738,7.2c0,-1.322,1.072,-2.394,2.395,-2.394c1.32,0,2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  3867. <path d="M308.525,7.2c0,1.322,-1.072,2.394,-2.393,2.394c-1.322,0,-2.395,-1.071,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  3868. <circle cx="306.132" cy="7.2" fill="#383838" r="1.197"/>
  3869. </g>
  3870. <g id="pin43W">
  3871. <path d="M310.937,144c0,-1.321,1.072,-2.394,2.395,-2.394s2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  3872. <path d="M315.726,144c0,1.322,-1.072,2.394,-2.395,2.394s-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  3873. <circle cx="313.332" cy="144" fill="#383838" r="1.196"/>
  3874. </g>
  3875. <g id="pin43X">
  3876. <path d="M310.937,136.799c0,-1.322,1.072,-2.393,2.395,-2.393s2.395,1.07,2.395,2.393" fill="#BFBFBF"/>
  3877. <path d="M315.726,136.799c0,1.322,-1.072,2.395,-2.395,2.395s-2.395,-1.072,-2.395,-2.395" fill="#E6E6E6"/>
  3878. <circle cx="313.332" cy="136.8" fill="#383838" r="1.197"/>
  3879. </g>
  3880. <g id="pin43Y">
  3881. <path d="M310.937,14.4c0,-1.322,1.072,-2.394,2.395,-2.394s2.395,1.071,2.395,2.394" fill="#BFBFBF"/>
  3882. <path d="M315.726,14.4c0,1.322,-1.072,2.394,-2.395,2.394s-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  3883. <circle cx="313.332" cy="14.4" fill="#383838" r="1.197"/>
  3884. </g>
  3885. <g id="pin43Z">
  3886. <path d="M310.937,7.2c0,-1.322,1.072,-2.394,2.395,-2.394s2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  3887. <path d="M315.726,7.2c0,1.322,-1.072,2.394,-2.395,2.394s-2.395,-1.071,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  3888. <circle cx="313.332" cy="7.2" fill="#383838" r="1.197"/>
  3889. </g>
  3890. <g id="pin45W">
  3891. <path d="M325.337,144c0,-1.321,1.072,-2.394,2.395,-2.394s2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  3892. <path d="M330.125,144c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  3893. <circle cx="327.732" cy="144" fill="#383838" r="1.196"/>
  3894. </g>
  3895. <g id="pin45X">
  3896. <path d="M325.337,136.799c0,-1.322,1.072,-2.393,2.395,-2.393s2.393,1.07,2.393,2.393" fill="#BFBFBF"/>
  3897. <path d="M330.125,136.799c0,1.322,-1.07,2.395,-2.393,2.395s-2.395,-1.072,-2.395,-2.395" fill="#E6E6E6"/>
  3898. <circle cx="327.732" cy="136.8" fill="#383838" r="1.197"/>
  3899. </g>
  3900. <g id="pin45Y">
  3901. <path d="M325.337,14.4c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.071,2.393,2.394" fill="#BFBFBF"/>
  3902. <path d="M330.125,14.4c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  3903. <circle cx="327.732" cy="14.4" fill="#383838" r="1.197"/>
  3904. </g>
  3905. <g id="pin45Z">
  3906. <path d="M325.337,7.2c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  3907. <path d="M330.125,7.2c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.071,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  3908. <circle cx="327.732" cy="7.2" fill="#383838" r="1.197"/>
  3909. </g>
  3910. <g id="pin46W">
  3911. <path d="M332.539,144c0,-1.321,1.07,-2.394,2.393,-2.394s2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  3912. <path d="M337.326,144c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.071,-2.393,-2.394" fill="#E6E6E6"/>
  3913. <circle cx="334.931" cy="144" fill="#383838" r="1.196"/>
  3914. </g>
  3915. <g id="pin46X">
  3916. <path d="M332.539,136.799c0,-1.322,1.07,-2.393,2.393,-2.393s2.395,1.07,2.395,2.393" fill="#BFBFBF"/>
  3917. <path d="M337.326,136.799c0,1.322,-1.072,2.395,-2.395,2.395s-2.393,-1.072,-2.393,-2.395" fill="#E6E6E6"/>
  3918. <circle cx="334.931" cy="136.8" fill="#383838" r="1.197"/>
  3919. </g>
  3920. <g id="pin46Y">
  3921. <path d="M332.539,14.4c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.071,2.395,2.394" fill="#BFBFBF"/>
  3922. <path d="M337.326,14.4c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.072,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  3923. <circle cx="334.931" cy="14.4" fill="#383838" r="1.197"/>
  3924. </g>
  3925. <g id="pin46Z">
  3926. <path d="M332.539,7.2c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  3927. <path d="M337.326,7.2c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.071,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  3928. <circle cx="334.931" cy="7.2" fill="#383838" r="1.197"/>
  3929. </g>
  3930. <g id="pin47W">
  3931. <path d="M339.738,144c0,-1.321,1.072,-2.394,2.395,-2.394c1.32,0,2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  3932. <path d="M344.525,144c0,1.322,-1.072,2.394,-2.393,2.394c-1.322,0,-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  3933. <circle cx="342.132" cy="144" fill="#383838" r="1.196"/>
  3934. </g>
  3935. <g id="pin47X">
  3936. <path d="M339.738,136.799c0,-1.322,1.072,-2.393,2.395,-2.393c1.32,0,2.393,1.07,2.393,2.393" fill="#BFBFBF"/>
  3937. <path d="M344.525,136.799c0,1.322,-1.072,2.395,-2.393,2.395c-1.322,0,-2.395,-1.072,-2.395,-2.395" fill="#E6E6E6"/>
  3938. <circle cx="342.132" cy="136.8" fill="#383838" r="1.197"/>
  3939. </g>
  3940. <g id="pin47Y">
  3941. <path d="M339.738,14.4c0,-1.322,1.072,-2.394,2.395,-2.394c1.32,0,2.393,1.071,2.393,2.394" fill="#BFBFBF"/>
  3942. <path d="M344.525,14.4c0,1.322,-1.072,2.394,-2.393,2.394c-1.322,0,-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  3943. <circle cx="342.132" cy="14.4" fill="#383838" r="1.197"/>
  3944. </g>
  3945. <g id="pin47Z">
  3946. <path d="M339.738,7.2c0,-1.322,1.072,-2.394,2.395,-2.394c1.32,0,2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  3947. <path d="M344.525,7.2c0,1.322,-1.072,2.394,-2.393,2.394c-1.322,0,-2.395,-1.071,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  3948. <circle cx="342.132" cy="7.2" fill="#383838" r="1.197"/>
  3949. </g>
  3950. <g id="pin48W">
  3951. <path d="M346.937,144c0,-1.321,1.072,-2.394,2.395,-2.394s2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  3952. <path d="M351.724,144c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  3953. <circle cx="349.332" cy="144" fill="#383838" r="1.196"/>
  3954. </g>
  3955. <g id="pin48X">
  3956. <path d="M346.937,136.799c0,-1.322,1.072,-2.393,2.395,-2.393s2.393,1.07,2.393,2.393" fill="#BFBFBF"/>
  3957. <path d="M351.724,136.799c0,1.322,-1.07,2.395,-2.393,2.395s-2.395,-1.072,-2.395,-2.395" fill="#E6E6E6"/>
  3958. <circle cx="349.332" cy="136.8" fill="#383838" r="1.197"/>
  3959. </g>
  3960. <g id="pin48Y">
  3961. <path d="M346.937,14.4c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.071,2.393,2.394" fill="#BFBFBF"/>
  3962. <path d="M351.724,14.4c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  3963. <circle cx="349.332" cy="14.4" fill="#383838" r="1.197"/>
  3964. </g>
  3965. <g id="pin48Z">
  3966. <path d="M346.937,7.2c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  3967. <path d="M351.724,7.2c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.071,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  3968. <circle cx="349.332" cy="7.2" fill="#383838" r="1.197"/>
  3969. </g>
  3970. <g id="pin49W">
  3971. <path d="M354.138,144c0,-1.321,1.07,-2.394,2.393,-2.394s2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  3972. <path d="M358.925,144c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.071,-2.393,-2.394" fill="#E6E6E6"/>
  3973. <circle cx="356.531" cy="144" fill="#383838" r="1.196"/>
  3974. </g>
  3975. <g id="pin49X">
  3976. <path d="M354.138,136.799c0,-1.322,1.07,-2.393,2.393,-2.393s2.395,1.07,2.395,2.393" fill="#BFBFBF"/>
  3977. <path d="M358.925,136.799c0,1.322,-1.072,2.395,-2.395,2.395s-2.393,-1.072,-2.393,-2.395" fill="#E6E6E6"/>
  3978. <circle cx="356.531" cy="136.8" fill="#383838" r="1.197"/>
  3979. </g>
  3980. <g id="pin49Y">
  3981. <path d="M354.138,14.4c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.071,2.395,2.394" fill="#BFBFBF"/>
  3982. <path d="M358.925,14.4c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.072,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  3983. <circle cx="356.531" cy="14.4" fill="#383838" r="1.197"/>
  3984. </g>
  3985. <g id="pin49Z">
  3986. <path d="M354.138,7.2c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  3987. <path d="M358.925,7.2c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.071,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  3988. <circle cx="356.531" cy="7.2" fill="#383838" r="1.197"/>
  3989. </g>
  3990. <g id="pin51W">
  3991. <path d="M368.539,144c0,-1.321,1.07,-2.394,2.393,-2.394s2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  3992. <path d="M373.326,144c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.071,-2.393,-2.394" fill="#E6E6E6"/>
  3993. <circle cx="370.931" cy="144" fill="#383838" r="1.196"/>
  3994. </g>
  3995. <g id="pin51X">
  3996. <path d="M368.539,136.799c0,-1.322,1.07,-2.393,2.393,-2.393s2.395,1.07,2.395,2.393" fill="#BFBFBF"/>
  3997. <path d="M373.326,136.799c0,1.322,-1.072,2.395,-2.395,2.395s-2.393,-1.072,-2.393,-2.395" fill="#E6E6E6"/>
  3998. <circle cx="370.931" cy="136.8" fill="#383838" r="1.197"/>
  3999. </g>
  4000. <g id="pin51Y">
  4001. <path d="M368.539,14.4c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.071,2.395,2.394" fill="#BFBFBF"/>
  4002. <path d="M373.326,14.4c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.072,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  4003. <circle cx="370.931" cy="14.4" fill="#383838" r="1.197"/>
  4004. </g>
  4005. <g id="pin51Z">
  4006. <path d="M368.539,7.2c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  4007. <path d="M373.326,7.2c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.071,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  4008. <circle cx="370.931" cy="7.2" fill="#383838" r="1.197"/>
  4009. </g>
  4010. <g id="pin52W">
  4011. <path d="M375.738,144c0,-1.321,1.072,-2.394,2.393,-2.394c1.322,0,2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  4012. <path d="M380.525,144c0,1.322,-1.072,2.394,-2.395,2.394c-1.32,0,-2.393,-1.071,-2.393,-2.394" fill="#E6E6E6"/>
  4013. <circle cx="378.13" cy="144" fill="#383838" r="1.196"/>
  4014. </g>
  4015. <g id="pin52X">
  4016. <path d="M375.738,136.799c0,-1.322,1.072,-2.393,2.393,-2.393c1.322,0,2.395,1.07,2.395,2.393" fill="#BFBFBF"/>
  4017. <path d="M380.525,136.799c0,1.322,-1.072,2.395,-2.395,2.395c-1.32,0,-2.393,-1.072,-2.393,-2.395" fill="#E6E6E6"/>
  4018. <circle cx="378.13" cy="136.8" fill="#383838" r="1.197"/>
  4019. </g>
  4020. <g id="pin52Y">
  4021. <path d="M375.738,14.4c0,-1.322,1.072,-2.394,2.393,-2.394c1.322,0,2.395,1.071,2.395,2.394" fill="#BFBFBF"/>
  4022. <path d="M380.525,14.4c0,1.322,-1.072,2.394,-2.395,2.394c-1.32,0,-2.393,-1.072,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  4023. <circle cx="378.13" cy="14.4" fill="#383838" r="1.197"/>
  4024. </g>
  4025. <g id="pin52Z">
  4026. <path d="M375.738,7.2c0,-1.322,1.072,-2.394,2.393,-2.394c1.322,0,2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  4027. <path d="M380.525,7.2c0,1.322,-1.072,2.394,-2.395,2.394c-1.32,0,-2.393,-1.071,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  4028. <circle cx="378.13" cy="7.2" fill="#383838" r="1.197"/>
  4029. </g>
  4030. <g id="pin53W">
  4031. <path d="M382.937,144c0,-1.321,1.072,-2.394,2.395,-2.394s2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  4032. <path d="M387.724,144c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  4033. <circle cx="385.332" cy="144" fill="#383838" r="1.196"/>
  4034. </g>
  4035. <g id="pin53X">
  4036. <path d="M382.937,136.799c0,-1.322,1.072,-2.393,2.395,-2.393s2.393,1.07,2.393,2.393" fill="#BFBFBF"/>
  4037. <path d="M387.724,136.799c0,1.322,-1.07,2.395,-2.393,2.395s-2.395,-1.072,-2.395,-2.395" fill="#E6E6E6"/>
  4038. <circle cx="385.332" cy="136.8" fill="#383838" r="1.197"/>
  4039. </g>
  4040. <g id="pin53Y">
  4041. <path d="M382.937,14.4c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.071,2.393,2.394" fill="#BFBFBF"/>
  4042. <path d="M387.724,14.4c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  4043. <circle cx="385.332" cy="14.4" fill="#383838" r="1.197"/>
  4044. </g>
  4045. <g id="pin53Z">
  4046. <path d="M382.937,7.2c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  4047. <path d="M387.724,7.2c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.071,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  4048. <circle cx="385.332" cy="7.2" fill="#383838" r="1.197"/>
  4049. </g>
  4050. <g id="pin54W">
  4051. <path d="M390.138,144c0,-1.321,1.07,-2.394,2.393,-2.394s2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  4052. <path d="M394.925,144c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.071,-2.393,-2.394" fill="#E6E6E6"/>
  4053. <circle cx="392.531" cy="144" fill="#383838" r="1.196"/>
  4054. </g>
  4055. <g id="pin54X">
  4056. <path d="M390.138,136.799c0,-1.322,1.07,-2.393,2.393,-2.393s2.395,1.07,2.395,2.393" fill="#BFBFBF"/>
  4057. <path d="M394.925,136.799c0,1.322,-1.072,2.395,-2.395,2.395s-2.393,-1.072,-2.393,-2.395" fill="#E6E6E6"/>
  4058. <circle cx="392.531" cy="136.8" fill="#383838" r="1.197"/>
  4059. </g>
  4060. <g id="pin54Y">
  4061. <path d="M390.138,14.4c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.071,2.395,2.394" fill="#BFBFBF"/>
  4062. <path d="M394.925,14.4c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.072,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  4063. <circle cx="392.531" cy="14.4" fill="#383838" r="1.197"/>
  4064. </g>
  4065. <g id="pin54Z">
  4066. <path d="M390.138,7.2c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  4067. <path d="M394.925,7.2c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.071,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  4068. <circle cx="392.531" cy="7.2" fill="#383838" r="1.197"/>
  4069. </g>
  4070. <g id="pin55W">
  4071. <path d="M397.337,144c0,-1.321,1.072,-2.394,2.395,-2.394c1.32,0,2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  4072. <path d="M402.125,144c0,1.322,-1.072,2.394,-2.393,2.394c-1.322,0,-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  4073. <circle cx="399.732" cy="144" fill="#383838" r="1.196"/>
  4074. </g>
  4075. <g id="pin55X">
  4076. <path d="M397.337,136.799c0,-1.322,1.072,-2.393,2.395,-2.393c1.32,0,2.393,1.07,2.393,2.393" fill="#BFBFBF"/>
  4077. <path d="M402.125,136.799c0,1.322,-1.072,2.395,-2.393,2.395c-1.322,0,-2.395,-1.072,-2.395,-2.395" fill="#E6E6E6"/>
  4078. <circle cx="399.732" cy="136.8" fill="#383838" r="1.197"/>
  4079. </g>
  4080. <g id="pin55Y">
  4081. <path d="M397.337,14.4c0,-1.322,1.072,-2.394,2.395,-2.394c1.32,0,2.393,1.071,2.393,2.394" fill="#BFBFBF"/>
  4082. <path d="M402.125,14.4c0,1.322,-1.072,2.394,-2.393,2.394c-1.322,0,-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  4083. <circle cx="399.732" cy="14.4" fill="#383838" r="1.197"/>
  4084. </g>
  4085. <g id="pin55Z">
  4086. <path d="M397.337,7.2c0,-1.322,1.072,-2.394,2.395,-2.394c1.32,0,2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  4087. <path d="M402.125,7.2c0,1.322,-1.072,2.394,-2.393,2.394c-1.322,0,-2.395,-1.071,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  4088. <circle cx="399.732" cy="7.2" fill="#383838" r="1.197"/>
  4089. </g>
  4090. <g id="pin57W">
  4091. <path d="M411.738,144c0,-1.321,1.072,-2.394,2.393,-2.394c1.322,0,2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  4092. <path d="M416.525,144c0,1.322,-1.072,2.394,-2.395,2.394c-1.32,0,-2.393,-1.071,-2.393,-2.394" fill="#E6E6E6"/>
  4093. <circle cx="414.13" cy="144" fill="#383838" r="1.196"/>
  4094. </g>
  4095. <g id="pin57X">
  4096. <path d="M411.738,136.799c0,-1.322,1.072,-2.393,2.393,-2.393c1.322,0,2.395,1.07,2.395,2.393" fill="#BFBFBF"/>
  4097. <path d="M416.525,136.799c0,1.322,-1.072,2.395,-2.395,2.395c-1.32,0,-2.393,-1.072,-2.393,-2.395" fill="#E6E6E6"/>
  4098. <circle cx="414.13" cy="136.8" fill="#383838" r="1.197"/>
  4099. </g>
  4100. <g id="pin57Y">
  4101. <path d="M411.738,14.4c0,-1.322,1.072,-2.394,2.393,-2.394c1.322,0,2.395,1.071,2.395,2.394" fill="#BFBFBF"/>
  4102. <path d="M416.525,14.4c0,1.322,-1.072,2.394,-2.395,2.394c-1.32,0,-2.393,-1.072,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  4103. <circle cx="414.13" cy="14.4" fill="#383838" r="1.197"/>
  4104. </g>
  4105. <g id="pin57Z">
  4106. <path d="M411.738,7.2c0,-1.322,1.072,-2.394,2.393,-2.394c1.322,0,2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  4107. <path d="M416.525,7.2c0,1.322,-1.072,2.394,-2.395,2.394c-1.32,0,-2.393,-1.071,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  4108. <circle cx="414.13" cy="7.2" fill="#383838" r="1.197"/>
  4109. </g>
  4110. <g id="pin58W">
  4111. <path d="M418.937,144c0,-1.321,1.072,-2.394,2.395,-2.394s2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  4112. <path d="M423.724,144c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  4113. <circle cx="421.332" cy="144" fill="#383838" r="1.196"/>
  4114. </g>
  4115. <g id="pin58X">
  4116. <path d="M418.937,136.799c0,-1.322,1.072,-2.393,2.395,-2.393s2.393,1.07,2.393,2.393" fill="#BFBFBF"/>
  4117. <path d="M423.724,136.799c0,1.322,-1.07,2.395,-2.393,2.395s-2.395,-1.072,-2.395,-2.395" fill="#E6E6E6"/>
  4118. <circle cx="421.332" cy="136.8" fill="#383838" r="1.197"/>
  4119. </g>
  4120. <g id="pin58Y">
  4121. <path d="M418.937,14.4c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.071,2.393,2.394" fill="#BFBFBF"/>
  4122. <path d="M423.724,14.4c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  4123. <circle cx="421.332" cy="14.4" fill="#383838" r="1.197"/>
  4124. </g>
  4125. <g id="pin58Z">
  4126. <path d="M418.937,7.2c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  4127. <path d="M423.724,7.2c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.071,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  4128. <circle cx="421.332" cy="7.2" fill="#383838" r="1.197"/>
  4129. </g>
  4130. <g id="pin59W">
  4131. <path d="M426.138,144c0,-1.321,1.07,-2.394,2.393,-2.394s2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  4132. <path d="M430.925,144c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.071,-2.393,-2.394" fill="#E6E6E6"/>
  4133. <circle cx="428.531" cy="144" fill="#383838" r="1.196"/>
  4134. </g>
  4135. <g id="pin59X">
  4136. <path d="M426.138,136.799c0,-1.322,1.07,-2.393,2.393,-2.393s2.395,1.07,2.395,2.393" fill="#BFBFBF"/>
  4137. <path d="M430.925,136.799c0,1.322,-1.072,2.395,-2.395,2.395s-2.393,-1.072,-2.393,-2.395" fill="#E6E6E6"/>
  4138. <circle cx="428.531" cy="136.8" fill="#383838" r="1.197"/>
  4139. </g>
  4140. <g id="pin59Y">
  4141. <path d="M426.138,14.4c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.071,2.395,2.394" fill="#BFBFBF"/>
  4142. <path d="M430.925,14.4c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.072,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  4143. <circle cx="428.531" cy="14.4" fill="#383838" r="1.197"/>
  4144. </g>
  4145. <g id="pin59Z">
  4146. <path d="M426.138,7.2c0,-1.322,1.07,-2.394,2.393,-2.394s2.395,1.072,2.395,2.394" fill="#BFBFBF"/>
  4147. <path d="M430.925,7.2c0,1.322,-1.072,2.394,-2.395,2.394s-2.393,-1.071,-2.393,-2.394l0,0" fill="#E6E6E6"/>
  4148. <circle cx="428.531" cy="7.2" fill="#383838" r="1.197"/>
  4149. </g>
  4150. <g id="pin60W">
  4151. <path d="M433.337,144c0,-1.321,1.072,-2.394,2.395,-2.394c1.32,0,2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  4152. <path d="M438.125,144c0,1.322,-1.072,2.394,-2.393,2.394c-1.322,0,-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  4153. <circle cx="435.732" cy="144" fill="#383838" r="1.196"/>
  4154. </g>
  4155. <g id="pin60X">
  4156. <path d="M433.337,136.799c0,-1.322,1.072,-2.393,2.395,-2.393c1.32,0,2.393,1.07,2.393,2.393" fill="#BFBFBF"/>
  4157. <path d="M438.125,136.799c0,1.322,-1.072,2.395,-2.393,2.395c-1.322,0,-2.395,-1.072,-2.395,-2.395" fill="#E6E6E6"/>
  4158. <circle cx="435.732" cy="136.8" fill="#383838" r="1.197"/>
  4159. </g>
  4160. <g id="pin60Y">
  4161. <path d="M433.337,14.4c0,-1.322,1.072,-2.394,2.395,-2.394c1.32,0,2.393,1.071,2.393,2.394" fill="#BFBFBF"/>
  4162. <path d="M438.125,14.4c0,1.322,-1.072,2.394,-2.393,2.394c-1.322,0,-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  4163. <circle cx="435.732" cy="14.4" fill="#383838" r="1.197"/>
  4164. </g>
  4165. <g id="pin60Z">
  4166. <path d="M433.337,7.2c0,-1.322,1.072,-2.394,2.395,-2.394c1.32,0,2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  4167. <path d="M438.125,7.2c0,1.322,-1.072,2.394,-2.393,2.394c-1.322,0,-2.395,-1.071,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  4168. <circle cx="435.732" cy="7.2" fill="#383838" r="1.197"/>
  4169. </g>
  4170. <g id="pin61W">
  4171. <path d="M440.537,144c0,-1.321,1.072,-2.394,2.395,-2.394s2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  4172. <path d="M445.324,144c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.071,-2.395,-2.394" fill="#E6E6E6"/>
  4173. <circle cx="442.931" cy="144" fill="#383838" r="1.196"/>
  4174. </g>
  4175. <g id="pin61X">
  4176. <path d="M440.537,136.799c0,-1.322,1.072,-2.393,2.395,-2.393s2.393,1.07,2.393,2.393" fill="#BFBFBF"/>
  4177. <path d="M445.324,136.799c0,1.322,-1.07,2.395,-2.393,2.395s-2.395,-1.072,-2.395,-2.395" fill="#E6E6E6"/>
  4178. <circle cx="442.931" cy="136.8" fill="#383838" r="1.197"/>
  4179. </g>
  4180. <g id="pin61Y">
  4181. <path d="M440.537,14.4c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.071,2.393,2.394" fill="#BFBFBF"/>
  4182. <path d="M445.324,14.4c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.072,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  4183. <circle cx="442.931" cy="14.4" fill="#383838" r="1.197"/>
  4184. </g>
  4185. <g id="pin61Z">
  4186. <path d="M440.537,7.2c0,-1.322,1.072,-2.394,2.395,-2.394s2.393,1.072,2.393,2.394" fill="#BFBFBF"/>
  4187. <path d="M445.324,7.2c0,1.322,-1.07,2.394,-2.393,2.394s-2.395,-1.071,-2.395,-2.394l0,0" fill="#E6E6E6"/>
  4188. <circle cx="442.931" cy="7.2" fill="#383838" r="1.197"/>
  4189. </g>
  4190. </g>
  4191. <g id="text">
  4192. <g transform="matrix(0, -1, 1, 0, 12.7993, 30.4009)">
  4193. <text fill="#B3B0B0" font-family="'Droid Sans'" font-size="4.6036">1</text>
  4194. </g>
  4195. <g transform="matrix(0, -1, 1, 0, 12.7993, 126.4)">
  4196. <text fill="#B3B0B0" font-family="'Droid Sans'" font-size="4.6036">1</text>
  4197. </g>
  4198. <g transform="matrix(0, -1, 1, 0, 41.5991, 30.4009)">
  4199. <text fill="#B3B0B0" font-family="'Droid Sans'" font-size="4.6036">5</text>
  4200. </g>
  4201. <g transform="matrix(0, -1, 1, 0, 41.5991, 126.4)">
  4202. <text fill="#B3B0B0" font-family="'Droid Sans'" font-size="4.6036">5</text>
  4203. </g>
  4204. <g transform="matrix(0, -1, 1, 0, 77.5991, 30.4009)">
  4205. <text fill="#B3B0B0" font-family="'Droid Sans'" font-size="4.6036">10</text>
  4206. </g>
  4207. <g transform="matrix(0, -1, 1, 0, 77.5991, 126.4)">
  4208. <text fill="#B3B0B0" font-family="'Droid Sans'" font-size="4.6036">10</text>
  4209. </g>
  4210. <g transform="matrix(0, -1, 1, 0, 113.599, 30.4009)">
  4211. <text fill="#B3B0B0" font-family="'Droid Sans'" font-size="4.6036">15</text>
  4212. </g>
  4213. <g transform="matrix(0, -1, 1, 0, 113.599, 126.4)">
  4214. <text fill="#B3B0B0" font-family="'Droid Sans'" font-size="4.6036">15</text>
  4215. </g>
  4216. <g transform="matrix(0, -1, 1, 0, 149.599, 30.4009)">
  4217. <text fill="#B3B0B0" font-family="'Droid Sans'" font-size="4.6036">20</text>
  4218. </g>
  4219. <g transform="matrix(0, -1, 1, 0, 149.599, 126.4)">
  4220. <text fill="#B3B0B0" font-family="'Droid Sans'" font-size="4.6036">20</text>
  4221. </g>
  4222. <g transform="matrix(0, -1, 1, 0, 185.599, 30.4009)">
  4223. <text fill="#B3B0B0" font-family="'Droid Sans'" font-size="4.6036">25</text>
  4224. </g>
  4225. <g transform="matrix(0, -1, 1, 0, 185.599, 126.4)">
  4226. <text fill="#B3B0B0" font-family="'Droid Sans'" font-size="4.6036">25</text>
  4227. </g>
  4228. <g transform="matrix(0, -1, 1, 0, 221.598, 30.4009)">
  4229. <text fill="#B3B0B0" font-family="'Droid Sans'" font-size="4.6036">30</text>
  4230. </g>
  4231. <g transform="matrix(0, -1, 1, 0, 221.598, 126.4)">
  4232. <text fill="#B3B0B0" font-family="'Droid Sans'" font-size="4.6036">30</text>
  4233. </g>
  4234. <g transform="matrix(0, -1, 1, 0, 257.598, 30.4009)">
  4235. <text fill="#B3B0B0" font-family="'Droid Sans'" font-size="4.6036">35</text>
  4236. </g>
  4237. <g transform="matrix(0, -1, 1, 0, 257.598, 126.4)">
  4238. <text fill="#B3B0B0" font-family="'Droid Sans'" font-size="4.6036">35</text>
  4239. </g>
  4240. <g transform="matrix(0, -1, 1, 0, 293.598, 30.4009)">
  4241. <text fill="#B3B0B0" font-family="'Droid Sans'" font-size="4.6036">40</text>
  4242. </g>
  4243. <g transform="matrix(0, -1, 1, 0, 293.598, 126.4)">
  4244. <text fill="#B3B0B0" font-family="'Droid Sans'" font-size="4.6036">40</text>
  4245. </g>
  4246. <g transform="matrix(0, -1, 1, 0, 329.597, 30.4009)">
  4247. <text fill="#B3B0B0" font-family="'Droid Sans'" font-size="4.6036">45</text>
  4248. </g>
  4249. <g transform="matrix(0, -1, 1, 0, 329.597, 126.4)">
  4250. <text fill="#B3B0B0" font-family="'Droid Sans'" font-size="4.6036">45</text>
  4251. </g>
  4252. <g transform="matrix(0, -1, 1, 0, 365.597, 30.4009)">
  4253. <text fill="#B3B0B0" font-family="'Droid Sans'" font-size="4.6036">50</text>
  4254. </g>
  4255. <g transform="matrix(0, -1, 1, 0, 365.597, 126.4)">
  4256. <text fill="#B3B0B0" font-family="'Droid Sans'" font-size="4.6036">50</text>
  4257. </g>
  4258. <g transform="matrix(0, -1, 1, 0, 401.597, 30.4009)">
  4259. <text fill="#B3B0B0" font-family="'Droid Sans'" font-size="4.6036">55</text>
  4260. </g>
  4261. <g transform="matrix(0, -1, 1, 0, 401.597, 126.4)">
  4262. <text fill="#B3B0B0" font-family="'Droid Sans'" font-size="4.6036">55</text>
  4263. </g>
  4264. <g transform="matrix(0, -1, 1, 0, 437.597, 30.4009)">
  4265. <text fill="#B3B0B0" font-family="'Droid Sans'" font-size="4.6036">60</text>
  4266. </g>
  4267. <g transform="matrix(0, -1, 1, 0, 437.597, 126.4)">
  4268. <text fill="#B3B0B0" font-family="'Droid Sans'" font-size="4.6036">60</text>
  4269. </g>
  4270. <g transform="matrix(0, -1, 1, 0, 5.5996, 116.799)">
  4271. <text fill="#B3B0B0" font-family="'Droid Sans'" font-size="4.6036">A</text>
  4272. </g>
  4273. <g transform="matrix(0, -1, 1, 0, 465.597, 116.799)">
  4274. <text fill="#B3B0B0" font-family="'Droid Sans'" font-size="4.6036">A</text>
  4275. </g>
  4276. <g transform="matrix(0, -1, 1, 0, 5.5996, 109.6)">
  4277. <text fill="#B3B0B0" font-family="'Droid Sans'" font-size="4.6036">B</text>
  4278. </g>
  4279. <g transform="matrix(0, -1, 1, 0, 465.597, 109.6)">
  4280. <text fill="#B3B0B0" font-family="'Droid Sans'" font-size="4.6036">B</text>
  4281. </g>
  4282. <g transform="matrix(0, -1, 1, 0, 5.5996, 102.4)">
  4283. <text fill="#B3B0B0" font-family="'Droid Sans'" font-size="4.6036">C</text>
  4284. </g>
  4285. <g transform="matrix(0, -1, 1, 0, 465.597, 102.4)">
  4286. <text fill="#B3B0B0" font-family="'Droid Sans'" font-size="4.6036">C</text>
  4287. </g>
  4288. <g transform="matrix(0, -1, 1, 0, 5.5996, 95.1997)">
  4289. <text fill="#B3B0B0" font-family="'Droid Sans'" font-size="4.6036">D</text>
  4290. </g>
  4291. <g transform="matrix(0, -1, 1, 0, 465.597, 95.1997)">
  4292. <text fill="#B3B0B0" font-family="'Droid Sans'" font-size="4.6036">D</text>
  4293. </g>
  4294. <g transform="matrix(0, -1, 1, 0, 5.5996, 88.0005)">
  4295. <text fill="#B3B0B0" font-family="'Droid Sans'" font-size="4.6036">E</text>
  4296. </g>
  4297. <g transform="matrix(0, -1, 1, 0, 465.597, 88.0005)">
  4298. <text fill="#B3B0B0" font-family="'Droid Sans'" font-size="4.6036">E</text>
  4299. </g>
  4300. <g transform="matrix(0, -1, 1, 0, 5.5996, 66.3999)">
  4301. <text fill="#B3B0B0" font-family="'Droid Sans'" font-size="4.6036">F</text>
  4302. </g>
  4303. <g transform="matrix(0, -1, 1, 0, 465.597, 66.3999)">
  4304. <text fill="#B3B0B0" font-family="'Droid Sans'" font-size="4.6036">F</text>
  4305. </g>
  4306. <g transform="matrix(0, -1, 1, 0, 5.5996, 59.1997)">
  4307. <text fill="#B3B0B0" font-family="'Droid Sans'" font-size="4.6036">G</text>
  4308. </g>
  4309. <g transform="matrix(0, -1, 1, 0, 465.597, 59.1997)">
  4310. <text fill="#B3B0B0" font-family="'Droid Sans'" font-size="4.6036">G</text>
  4311. </g>
  4312. <g transform="matrix(0, -1, 1, 0, 5.5996, 52.0005)">
  4313. <text fill="#B3B0B0" font-family="'Droid Sans'" font-size="4.6036">H</text>
  4314. </g>
  4315. <g transform="matrix(0, -1, 1, 0, 465.597, 52.0005)">
  4316. <text fill="#B3B0B0" font-family="'Droid Sans'" font-size="4.6036">H</text>
  4317. </g>
  4318. <g transform="matrix(0, -1, 1, 0, 5.5996, 44.0005)">
  4319. <text fill="#B3B0B0" font-family="'Droid Sans'" font-size="4.6036">I</text>
  4320. </g>
  4321. <g transform="matrix(0, -1, 1, 0, 465.597, 44.0005)">
  4322. <text fill="#B3B0B0" font-family="'Droid Sans'" font-size="4.6036">I</text>
  4323. </g>
  4324. <g transform="matrix(0, -1, 1, 0, 5.5996, 36.8003)">
  4325. <text fill="#B3B0B0" font-family="'Droid Sans'" font-size="4.6036">J</text>
  4326. </g>
  4327. <g transform="matrix(0, -1, 1, 0, 465.597, 36.8003)">
  4328. <text fill="#B3B0B0" font-family="'Droid Sans'" font-size="4.6036">J</text>
  4329. </g>
  4330. </g>
  4331. </g>
  4332. </g>
  4333. </g>
  4334. <g partID="855161070">
  4335. <g transform="translate(152.285,47.0214)">
  4336. <g id="breadboard">
  4337. <path d="M232.44,0L8.50399,0C3.826,0,0,3.82706,0,8.50399L0,150.235c0,4.67894,3.827,8.505,8.50399,8.505l223.938,0c4.67899,0,8.50399,-3.82606,8.50399,-8.505L240.946,8.50399C240.945,3.82706,237.119,0,232.44,0ZM9.92102,152.716c-2.152,0,-3.897,-1.7441,-3.897,-3.89809,0,-2.15198,1.745,-3.89598,3.897,-3.89598,2.15299,0,3.89799,1.744,3.89799,3.89598,0,2.15399,-1.746,3.89809,-3.89799,3.89809zm0,-138.897c-2.152,0,-3.897,-1.745,-3.897,-3.89809,0,-2.15198,1.745,-3.89698,3.897,-3.89698,2.15299,0,3.89799,1.745,3.89799,3.89698,0,2.15309,-1.746,3.89809,-3.89799,3.89809zM174.332,152.716c-2.151,0,-3.89699,-1.7441,-3.89699,-3.89809,0,-2.15198,1.74599,-3.89598,3.89699,-3.89598,2.152,0,3.896,1.744,3.896,3.89598,0,2.15399,-1.744,3.89809,-3.896,3.89809zm0,-138.897c-2.151,0,-3.89699,-1.745,-3.89699,-3.89809,0,-2.15198,1.74599,-3.89698,3.89699,-3.89698,2.152,0,3.896,1.745,3.896,3.89698,0,2.15309,-1.744,3.89809,-3.896,3.89809z" fill="#007300" id="path5" stroke-width="0.999999"/>
  4338. <g transform="scale(0.99950913,1.0004911)">
  4339. <text fill="#ffffff" font-family="OCRA" font-size="3.11135" id="text2560" stroke-width="0.75" x="217.85" y="4.36973">Ethernet</text>
  4340. </g>
  4341. <g transform="scale(1.271986,0.78617217)">
  4342. <text fill="#ffffff" font-family="OCRA" font-size="11.7414" id="text2450" stroke-width="0.999999" x="60.9381" y="171.418">HDMI</text>
  4343. </g>
  4344. <g transform="scale(0.99886508,1.0011362)">
  4345. <text fill="#ffffff" font-family="OCRA" font-size="3.10934" id="tspan8666_7_" stroke-width="0.75" x="228.292" y="102.176">USB3</text>
  4346. </g>
  4347. <text fill="#ffffff" font-family="OCRA" font-size="3.11287" id="tspan8666_3_" stroke-width="0.75" x="228.032" y="151.972">USB2</text>
  4348. <g transform="matrix(0,-0.87167179,1.1472208,0,0,0)">
  4349. <text fill="#ffffff" font-family="OCRA" font-size="2.02512" id="tspan8666_2_" stroke-width="0.487923" x="-176.227" y="59.3191">HDMI 0</text>
  4350. </g>
  4351. <g transform="matrix(0,-0.87167171,1.1472209,0,0,0)">
  4352. <text fill="#ffffff" font-family="OCRA" font-size="2.02512" id="text20331" stroke-width="0.487923" x="-176.224" y="95.0925">HDMI 1</text>
  4353. </g>
  4354. <g transform="matrix(0,-0.87167171,1.1472209,0,0,0)">
  4355. <text fill="#ffffff" font-family="OCRA" font-size="2.02512" id="text2193" stroke-width="0.487923" x="-176.224" y="124.577">A/V</text>
  4356. </g>
  4357. <g transform="matrix(0,-1.00554,0.99449052,0,0,0)">
  4358. <text fill="#ffffff" font-family="OCRA" font-size="2.50612" id="tspan8666_9_" stroke-width="0.994489" x="-127.28" y="125.322">CAMERA</text>
  4359. </g>
  4360. <rect fill="#1a1a1a" height="26.456" id="rect3941-8-8_1_" stroke-width="0.999999" width="26.646" x="150.819" y="70.0825"/>
  4361. <g transform="scale(0.98224552,1.0180754)">
  4362. <text fill="#ffffff" font-family="'Droid Sans'" font-size="4.29098" font-stretch="normal" font-style="normal" font-variant="normal" font-weight="normal" id="tspan6477" stroke-width="0.999999" x="77.803" y="25.4399">Raspberry Pi 4 Model B</text>
  4363. </g>
  4364. <text fill="#ffffff" font-family="'Droid Sans'" font-size="4.2148" font-stretch="normal" font-style="normal" font-variant="normal" font-weight="normal" id="tspan6479" stroke-width="0.999999" x="82.3558" y="30.6882">&#xa9; Raspberry Pi 2018</text>
  4365. <text fill="#ffffff" font-family="DroidSans" font-size="2.9053" id="text19" stroke-width="0.999999" x="29.1494" y="104.707"/>
  4366. <text fill="#ffffff" font-family="DroidSans" font-size="2.9053" id="text21" stroke-width="0.999999" x="30.8608" y="104.707"/>
  4367. <text fill="#ffffff" font-family="DroidSans" font-size="2.9053" id="text23" stroke-width="0.999999" x="31.8735" y="104.707"/>
  4368. <text fill="#ffffff" font-family="DroidSans" font-size="2.9053" id="text25" stroke-width="0.999999" x="32.8574" y="104.707"/>
  4369. <text fill="#ffffff" font-family="DroidSans" font-size="2.9053" id="text27" stroke-width="0.999999" x="34.5601" y="104.707"/>
  4370. <text fill="#ffffff" font-family="DroidSans" font-size="2.9053" id="text29" stroke-width="0.999999" x="35.3394" y="104.707"/>
  4371. <text fill="#ffffff" font-family="DroidSans" font-size="2.9053" id="text31" stroke-width="0.999999" x="36.4224" y="104.707"/>
  4372. <text fill="#ffffff" font-family="DroidSans" font-size="2.9053" id="text33" stroke-width="0.999999" x="37.5068" y="104.707"/>
  4373. <text fill="#ffffff" font-family="DroidSans" font-size="2.9053" id="text35" stroke-width="0.999999" x="39.6743" y="104.707"/>
  4374. <text fill="#ffffff" font-family="DroidSans" font-size="2.9053" id="text37" stroke-width="0.999999" x="41.8418" y="104.707"/>
  4375. <text fill="#ffffff" font-family="DroidSans" font-size="2.9053" id="text39" stroke-width="0.999999" x="44.0097" y="104.707"/>
  4376. <text fill="#ffffff" font-family="DroidSans" font-size="2.9053" id="text41" stroke-width="0.999999" x="44.789" y="104.707"/>
  4377. <text fill="#ffffff" font-family="DroidSans" font-size="2.9053" id="text43" stroke-width="0.999999" x="45.9193" y="104.707"/>
  4378. <text fill="#ffffff" font-family="DroidSans" font-size="2.9053" id="text45" stroke-width="0.999999" x="47.4608" y="104.707"/>
  4379. <text fill="#ffffff" font-family="DroidSans" font-size="2.9053" id="text47" stroke-width="0.999999" x="48.7719" y="104.707"/>
  4380. <text fill="#ffffff" font-family="DroidSans" font-size="2.9053" id="text49" stroke-width="0.999999" x="50.474" y="104.707"/>
  4381. <text fill="#ffffff" font-family="DroidSans" font-size="2.9053" id="text51" stroke-width="0.999999" x="52.1767" y="104.707"/>
  4382. <text fill="#ffffff" font-family="DroidSans" font-size="2.9053" id="text53" stroke-width="0.999999" x="53.7309" y="104.707"/>
  4383. <text fill="#ffffff" font-family="DroidSans" font-size="2.9053" id="text55" stroke-width="0.999999" x="54.89" y="104.707"/>
  4384. <text fill="#ffffff" font-family="DroidSans" font-size="2.9053" id="text57" stroke-width="0.999999" x="56.0492" y="104.707"/>
  4385. <text fill="#ffffff" font-family="DroidSans" font-size="2.9053" id="text59" stroke-width="0.999999" x="57.4691" y="104.707"/>
  4386. <text fill="#ffffff" font-family="DroidSans" font-size="2.9053" id="text61" stroke-width="0.999999" x="59.1718" y="104.707"/>
  4387. <text fill="#ffffff" font-family="DroidSans" font-size="2.9053" id="text63" stroke-width="0.999999" x="59.9232" y="104.707"/>
  4388. <text fill="#ffffff" font-family="DroidSans" font-size="2.9053" id="text65" stroke-width="0.999999" x="60.7025" y="104.707"/>
  4389. <text fill="#ffffff" font-family="DroidSans" font-size="2.9053" id="text67" stroke-width="0.999999" x="62.3788" y="104.707"/>
  4390. <text fill="#ffffff" font-family="DroidSans" font-size="2.9053" id="text69" stroke-width="0.999999" x="63.5097" y="104.707"/>
  4391. <g transform="rotate(-90)">
  4392. <text fill="#ffffff" font-family="OCRA" font-size="2.52" id="tspan8666_5_" stroke-width="0.999999" x="-156.97" y="47.2034">Power in</text>
  4393. </g>
  4394. <g transform="matrix(0,-1.00554,0.99449052,0,0,0)">
  4395. <text fill="#ffffff" font-family="OCRA" font-size="2.50612" id="tspan8666_8_" stroke-width="0.999999" x="-86.9748" y="20.7785">DISPLAY</text>
  4396. </g>
  4397. <rect fill="#666666" height="1.41636" id="_x30_.1.0.221.0.0.0" stroke-width="1.38587" width="1.13918" x="27.591" y="140.401"/>
  4398. <rect fill="#999999" height="1.26391" id="_x30_.1.0.221.0.0.1" stroke-width="1.38587" width="0.102554" x="27.591" y="140.394"/>
  4399. <rect fill="#666666" height="1.41636" id="_x30_.1.0.221.0.1.0" stroke-width="1.38587" width="1.13364" x="29.7128" y="140.401"/>
  4400. <rect fill="#999999" height="1.26391" id="_x30_.1.0.221.0.1.1" stroke-width="1.38587" width="0.0997826" x="29.7128" y="140.394"/>
  4401. <rect fill="#666666" height="1.41636" id="_x30_.1.0.221.0.2.0" stroke-width="1.38587" width="1.13918" x="31.829" y="140.401"/>
  4402. <rect fill="#999999" height="1.26391" id="_x30_.1.0.221.0.2.1" stroke-width="1.38587" width="0.102554" x="31.829" y="140.394"/>
  4403. <rect fill="#666666" height="1.41636" id="_x30_.1.0.221.0.3.0" stroke-width="1.38587" width="1.13641" x="33.9522" y="140.401"/>
  4404. <rect fill="#999999" height="1.26391" id="_x30_.1.0.221.0.3.1" stroke-width="1.38587" width="0.0997826" x="33.9522" y="140.394"/>
  4405. <rect fill="#666666" height="1.41636" id="_x30_.1.0.221.0.4.0" stroke-width="1.38587" width="1.13918" x="36.0684" y="140.401"/>
  4406. <rect fill="#999999" height="1.26391" id="_x30_.1.0.221.0.4.1" stroke-width="1.38587" width="0.102554" x="36.0684" y="140.394"/>
  4407. <g transform="matrix(19.2482, 0, 0, 19.2482, 16.4639, 103.696)">
  4408. <polygon fill="#b3b3b3" id="_x30_.1.0.221.0.5.0" points="1.39212,1.96358,1.39198,2.98008,0.265752,2.98008,0.265752,1.96358"/>
  4409. </g>
  4410. <rect fill="#666666" height="3.49655" id="_x30_.1.0.221.0.5.1" stroke-width="1.38587" width="1.14473" x="43.4925" y="149.104"/>
  4411. <rect fill="#666666" height="3.49655" id="_x30_.1.0.221.0.5.2" stroke-width="1.38587" width="1.15027" x="20.16" y="149.104"/>
  4412. <rect fill="#cccccc" height="0.149674" id="_x30_.1.0.221.0.5.3" stroke-width="1.38587" width="21.6833" x="21.5791" y="141.491"/>
  4413. <rect fill="#333333" height="17.9623" id="_x30_.1.0.221.0.5.4" stroke-width="1.38587" width="11.097" x="27.0755" y="141.491"/>
  4414. <g transform="matrix(19.2482, 0, 0, 19.2482, 16.4639, 103.696)">
  4415. <polygon fill="#b3b3b3" id="_x30_.1.0.221.0.5.5" points="0.192024,3.05136,0.251784,2.95812,0.251784,2.98656,0.213696,3.05136"/>
  4416. </g>
  4417. <g transform="matrix(19.2482, 0, 0, 19.2482, 16.4639, 103.696)">
  4418. <polygon fill="#cccccc" id="_x30_.1.0.221.0.5.6" points="0.213696,3.05136,0.251784,2.98656,0.251928,2.98656,0.251784,3.01889"/>
  4419. </g>
  4420. <g transform="matrix(19.2482, 0, 0, 19.2482, 16.4639, 103.696)">
  4421. <polygon fill="#b3b3b3" id="_x30_.1.0.221.0.5.7" points="1.40407,2.95812,1.46383,3.05136,1.44223,3.05136,1.40407,2.98656"/>
  4422. </g>
  4423. <g transform="matrix(19.2482, 0, 0, 19.2482, 16.4639, 103.696)">
  4424. <polygon fill="#cccccc" id="_x30_.1.0.221.0.5.8" points="1.40407,2.98656,1.44223,3.05136,1.40407,3.01889,1.40378,2.98656"/>
  4425. </g>
  4426. <rect fill="#f2f2f2" height="0.74144" id="_x30_.1.0.221.0.5.9.0.0" stroke-width="1.38587" width="0.551576" x="36.9263" y="159.89"/>
  4427. <rect fill="#f2f2f2" height="0.74144" id="_x30_.1.0.221.0.5.9.1.0" stroke-width="1.38587" width="0.551576" x="34.5259" y="159.89"/>
  4428. <rect fill="#f2f2f2" height="0.74144" id="_x30_.1.0.221.0.5.9.2.0" stroke-width="1.38587" width="0.548804" x="32.127" y="159.89"/>
  4429. <rect fill="#f2f2f2" height="0.74144" id="_x30_.1.0.221.0.5.9.3.0" stroke-width="1.38587" width="0.548804" x="29.7267" y="159.89"/>
  4430. <rect fill="#f2f2f2" height="0.74144" id="_x30_.1.0.221.0.5.9.4.0" stroke-width="1.38587" width="0.547418" x="27.3305" y="159.89"/>
  4431. <rect fill="#808080" height="0.74144" id="_x30_.1.0.221.0.5.9.5.0" stroke-width="1.38587" width="0.108098" x="27.3305" y="159.89"/>
  4432. <rect fill="#808080" height="0.74144" id="_x30_.1.0.221.0.5.9.6.0" stroke-width="1.38587" width="0.11087" x="29.7267" y="159.89"/>
  4433. <rect fill="#808080" height="0.74144" id="_x30_.1.0.221.0.5.9.7.0" stroke-width="1.38587" width="0.11087" x="32.127" y="159.89"/>
  4434. <rect fill="#808080" height="0.74144" id="_x30_.1.0.221.0.5.9.8.0" stroke-width="1.38587" width="0.113641" x="34.5259" y="159.89"/>
  4435. <rect fill="#808080" height="0.74144" id="_x30_.1.0.221.0.5.9.9.0" stroke-width="1.38587" width="0.116413" x="36.9263" y="159.89"/>
  4436. <path d="m26.7401,160.845l0.593152,0l0,-0.450309l0.547419,0l0,0.450309l1.85429,0l0,-0.450309l0.548805,0l0,0.450309l1.84875,0l0,-0.450309l0.547418,0l0,0.450309l1.84875,0l0,-0.450309l0.551577,0l0,0.450309l1.84598,0l0,-0.450309l0.548804,0l0,0.450309l0.372799,0,0.311821,0c0.0873093,0,0.167689,-0.073692,0.167689,-0.163498l0,-1.22788c0,-0.0875808,-0.0706788,-0.167659,-0.167689,-0.167659l-11.5083,0c-0.0900806,0,-0.167691,0.0778608,-0.167691,0.167659l0,1.22788c0,0.0875808,0.0748382,0.163498,0.167691,0.163498z" fill="#4d4d4d" id="_x30_.1.0.221.0.5.10" stroke-width="1.38587"/>
  4437. <path d="m21.3103,142.145,0.261929,-0.654113l2.91587,0c0,0,-2.65256,0.13207,-2.74264,0.320026,-0.0928526,0.199649,0.123342,0.331308,0.123342,0.331308z" fill="#cccccc" id="_x30_.1.0.221.0.5.11" stroke-width="1.38587"/>
  4438. <path d="m43.4897,142.145,-0.264701,-0.654113l-2.91587,0c0,0,2.64701,0.134856,2.74264,0.322819,0.0914681,0.199634,-0.124729,0.324338,-0.124729,0.324338z" fill="#cccccc" id="_x30_.1.0.221.0.5.12" stroke-width="1.38587"/>
  4439. <path d="m40.0776,141.491l0,1.87921l-1.89526,0l0,-1.87921l-0.544958,0l0,0.654113L27.7584,142.145l0,-0.654113l-0.617524,0l0,1.88198l-1.89526,0l0,-1.88198l-3.92427,0l0,19.5671L44.0816,161.058l0,-19.5671zm-12.9395,15.9402l0,0.938282l-1.88388,0l0,-1.01169c-0.503694,-0.31878,-0.833803,-0.874461,-0.833803,-1.50508,0,-0.69012,0.267499,-1.26945,0.833803,-1.57293l0,0,0,-5.15826l1.88103,0l0,5.15826c0.571992,0.306274,0.978933,0.888235,0.978933,1.57849,-0.0029088,0.685951,-0.398403,1.27084,-0.976082,1.57293zm12.8585,0l0,0.938282l-1.88103,0l0,-1.01169c-0.503695,-0.31878,-0.836647,-0.874461,-0.836647,-1.50508,0,-0.69012,0.261807,-1.26945,0.836647,-1.57293l0,0,0,-5.15826l1.88103,0l0,5.15826c0.577683,0.306274,0.976082,0.888235,0.976082,1.57849,0,0.685951,-0.396979,1.27084,-0.976082,1.57293z" fill="#e6e6e6" id="_x30_.1.0.221.0.5.13" stroke-width="1.38587"/>
  4440. <g transform="matrix(19.2482, 0, 0, 19.2482, 16.4639, 103.696)">
  4441. <polygon fill="#f2f2f2" id="_x30_.1.0.221.0.5.14" points="0.343512,1.99757,0.27612,2.98008,0.251784,2.98008,0.251784,1.99757"/>
  4442. </g>
  4443. <g transform="matrix(19.2482, 0, 0, 19.2482, 16.4639, 103.696)">
  4444. <polygon fill="#999999" id="_x30_.1.0.221.0.5.15" points="1.40407,1.99757,1.40407,2.98008,1.36994,2.32387,1.33603,1.99757"/>
  4445. </g>
  4446. <rect fill="#cccccc" height="0.15106" id="_x30_.1.0.221.0.5.16" stroke-width="1.38587" width="1.82935" x="25.1547" y="149.122"/>
  4447. <rect fill="#cccccc" height="0.15106" id="_x30_.1.0.221.0.5.17" stroke-width="1.38587" width="1.83212" x="37.6815" y="149.122"/>
  4448. <rect fill="#b3b3b3" height="0.758071" id="_x30_.1.0.221.0.5.18" stroke-width="1.38587" width="20.0009" x="22.4023" y="160.066"/>
  4449. <rect fill="#cccccc" height="0.360326" id="_x30_.1.0.221.0.5.19" stroke-width="1.38587" width="20.0009" x="22.4023" y="160.697"/>
  4450. <g transform="matrix(13.8889, 0, 0, 13.8889, 1.53617, -0.0330207)">
  4451. <polygon fill="#cccccc" id="_x30_.1.0.222.0.13" points="10.4037,8.88941,10.2798,9.18036,10.2798,11.5603,10.4442,11.5603,11.4309,11.5603,11.5953,11.5603,11.5953,9.18036,11.4715,8.88941"/>
  4452. </g>
  4453. <rect fill="#1a1a1a" height="3.709" id="_x30_.1.0.222.0.14" stroke-width="0.999999" width="0.532999" x="162.049" y="129.687"/>
  4454. <rect fill="#1a1a1a" height="3.709" id="_x30_.1.0.222.0.15" stroke-width="0.999999" width="0.532999" x="144.311" y="129.687"/>
  4455. <rect fill="#1a1a1a" height="3.711" id="_x30_.1.0.222.0.16" stroke-width="0.999999" width="0.760999" x="145.334" y="133.873"/>
  4456. <rect fill="#cccccc" height="2.108" id="_x30_.1.0.222.0.17" stroke-width="0.999999" width="0.414999" x="145.505" y="134.675"/>
  4457. <rect fill="#1a1a1a" height="3.711" id="_x30_.1.0.222.0.18" stroke-width="0.999999" width="0.761999" x="160.801" y="133.873"/>
  4458. <rect fill="#1a1a1a" height="3.709" id="_x30_.1.0.222.0.19" stroke-width="0.999999" width="0.762999" x="149.202" y="133.875"/>
  4459. <rect fill="#1a1a1a" height="3.709" id="_x30_.1.0.222.0.20" stroke-width="0.999999" width="0.759999" x="156.936" y="133.875"/>
  4460. <rect fill="#cccccc" height="2.108" id="_x30_.1.0.222.0.21" stroke-width="0.999999" width="0.417999" x="160.973" y="134.675"/>
  4461. <rect fill="#cccccc" height="2.108" id="_x30_.1.0.222.0.22" stroke-width="0.999999" width="0.417999" x="157.106" y="134.675"/>
  4462. <rect fill="#cccccc" height="2.108" id="_x30_.1.0.222.0.23" stroke-width="0.999999" width="0.417999" x="149.371" y="134.675"/>
  4463. <rect fill="#939393" height="5.73399" id="_x30_.1.0.222.0.24" stroke-width="0.999999" width="8.49599" x="149.2" y="141.941"/>
  4464. <g transform="matrix(13.8889, 0, 0, 13.8889, 1.53617, -0.0330207)">
  4465. <polyline fill="none" id="_x30_.1.0.222.0.25" points="10.6319,10.635,10.6319,10.2221,11.2435,10.2221" stroke="#1a1a1a" stroke-linecap="square" stroke-width="0.0122328"/>
  4466. </g>
  4467. <g transform="matrix(13.8889, 0, 0, 13.8889, 1.53617, -0.0330207)">
  4468. <polyline fill="none" id="_x30_.1.0.222.0.26" points="11.2435,10.2221,11.2435,10.635,10.6319,10.635" stroke="#262626" stroke-linecap="square" stroke-width="0.0122328"/>
  4469. </g>
  4470. <line fill="none" id="_x30_.1.0.222.0.27.0" stroke-width="0.999999" x1="150.545" x2="150.545" y1="159.47" y2="159.476"/>
  4471. <line fill="none" id="_x30_.1.0.222.0.27.1" stroke-width="0.999999" x1="156.356" x2="156.354" y1="159.476" y2="159.47"/>
  4472. <rect fill="#1a1a1a" height="1.854" id="_x30_.1.0.222.0.28" stroke-width="0.999999" width="1.523" x="152.67" y="148.627"/>
  4473. <rect fill="#cccccc" height="1.018" id="_x30_.1.0.222.0.29" stroke-width="0.999999" width="0.864999" x="152.998" y="149.045"/>
  4474. <rect fill="#212121" height="5.94899" id="_x30_.1.0.222.0.0" stroke-width="0.999999" width="18.894" x="144" y="158.263"/>
  4475. <g transform="matrix(13.8889, 0, 0, 13.8889, 1.53617, -0.0330207)">
  4476. <polygon fill="#2b2b2b" id="_x30_.1.0.222.0.1" points="11.4038,11.3952,10.4719,11.3952,10.4719,11.8166,10.4723,11.8166,10.4723,11.8256,11.4061,11.8256,11.4061,11.8166,11.4038,11.8166"/>
  4477. </g>
  4478. <g transform="matrix(13.8889, 0, 0, 13.8889, 1.53617, -0.0330207)">
  4479. <polygon fill="#292929" id="_x30_.1.0.222.0.2" points="10.5026,11.8256,10.5026,11.3952,10.4719,11.3952,10.3064,11.3972,10.3064,11.8256"/>
  4480. </g>
  4481. <g transform="matrix(13.8889, 0, 0, 13.8889, 1.53617, -0.0330207)">
  4482. <polygon fill="#292929" id="_x30_.1.0.222.0.3" points="11.3391,11.8256,11.3391,11.3952,11.4077,11.3952,11.5731,11.3973,11.5731,11.8256"/>
  4483. </g>
  4484. <rect fill="#333333" height="5.91999" id="_x30_.1.0.222.0.4" stroke-width="0.999999" width="5.02299" x="151.825" y="158.261"/>
  4485. <rect fill="#383838" height="5.91999" id="_x30_.1.0.222.0.5" stroke-width="0.999999" width="2.754" x="152.647" y="158.261"/>
  4486. <rect fill="#212121" height="5.94699" id="_x30_.1.0.222.0.6" stroke-width="0.999999" width="0.614999" x="162.276" y="158.265"/>
  4487. <rect fill="#1a1a1a" height="43.6908" id="_x30_.1.0.223.0.0.0" stroke-width="1.09642" width="53.2933" x="192.846" y="7.00361"/>
  4488. <path d="m246.252,17.8215c0.382169,0,0.707709,0.324591,0.707709,0.726257l0,2.63932c0,0.39913,-0.319637,0.726257,-0.707709,0.726257l-9.252,0c-0.389232,0,-0.710064,-0.325924,-0.710064,-0.726257L236.29,18.5478c0,-0.401667,0.31847,-0.726257,0.710064,-0.726257z" fill="#b3b3b3" id="_x30_.1.0.223.0.0.1.0" stroke-width="1.09642"/>
  4489. <path d="m246.252,35.794c0.382169,0,0.707709,0.327006,0.707709,0.726264l0,2.64173c0,0.39913,-0.319637,0.726257,-0.707709,0.726257l-9.252,0c-0.389232,0,-0.710064,-0.325916,-0.710064,-0.726257l0,-2.64173c0,-0.399261,0.31847,-0.726264,0.710064,-0.726264z" fill="#b3b3b3" id="_x30_.1.0.223.0.0.1.1" stroke-width="1.09642"/>
  4490. <path d="m237,17.8215l1.14766,0L238.148,21.911l-1.14766,0c-0.386877,0,-0.707702,-0.327127,-0.707702,-0.726257l0,-2.64173c0.001152,-0.400342,0.31847,-0.721433,0.707702,-0.721433z" fill="#cccccc" id="_x30_.1.0.223.0.0.1.2" stroke-width="1.09642"/>
  4491. <path d="m238.148,35.794l0,4.08943l-1.15002,0c-0.38687,0,-0.710057,-0.327128,-0.710057,-0.725054l0,-2.64173c0,-0.399261,0.319644,-0.726264,0.710057,-0.726264l1.15002,0z" fill="#cccccc" id="_x30_.1.0.223.0.0.1.3" stroke-width="1.09642"/>
  4492. <rect fill="#999999" height="4.0894" id="_x30_.1.0.223.0.0.1.4" stroke-width="1.09642" width="3.97845" x="237.959" y="17.8215"/>
  4493. <rect fill="#999999" height="4.0894" id="_x30_.1.0.223.0.0.1.5" stroke-width="1.09642" width="3.97845" x="237.959" y="35.794"/>
  4494. <rect fill="#b3b3b3" height="4.0894" id="_x30_.1.0.223.0.0.1.6" stroke-width="1.09642" width="3.79445" x="240.47" y="17.8215"/>
  4495. <rect fill="#b3b3b3" height="4.0894" id="_x30_.1.0.223.0.0.1.7" stroke-width="1.09642" width="3.79445" x="240.47" y="35.794"/>
  4496. <rect fill="#cccccc" height="4.0894" id="_x30_.1.0.223.0.0.1.8" stroke-width="1.09642" width="1.44017" x="242.214" y="17.8215"/>
  4497. <rect fill="#cccccc" height="4.0894" id="_x30_.1.0.223.0.0.1.9" stroke-width="1.09642" width="1.44017" x="242.214" y="35.794"/>
  4498. <rect fill="#e6e6e6" height="4.0894" id="_x30_.1.0.223.0.0.1.10" stroke-width="1.09642" width="0.30667" x="237.809" y="17.8215"/>
  4499. <rect fill="#f2f2f2" height="4.09301" id="_x30_.1.0.223.0.0.1.11" stroke-width="1.09642" width="0.478877" x="237.273" y="17.8227"/>
  4500. <path d="M235.922,50.6991L235.922,50.4285l10.2144,0l0,-0.431579,0,-8.61177,0,-0.719021l-0.705333,-0.0494589l0,0l-4.99636,-0.3451,-4.994,-0.347385c-0.386885,-0.0301536,-0.705341,-0.374051,-0.705341,-0.770774l0,-2.62484c0,-0.396845,0.318456,-0.741945,0.705341,-0.774396l4.994,-0.347506,4.99636,-0.347507l0,0l0.705333,-0.0494597L246.137,34.2859,246.137,23.3885,246.137,22.667l-0.705333,-0.0518659l0,0l-4.99636,-0.330625,-4.994,-0.337862c-0.384523,-0.02412,-0.705341,-0.369099,-0.705341,-0.765943l0,-2.6609c0,-0.399261,0.319637,-0.744357,0.705341,-0.776808l4.994,-0.32821,4.99636,-0.335568,0.705333,-0.0458316L246.137,16.3107,246.137,7.69903,246.137,7.26379l-10.2144,0l0,-0.283823l-48.7299,0,-0.712404,0l0,0.722649,0,42.26,0,0.725054l0.712404,0,48.7299,0z" fill="#cccccc" id="_x30_.1.0.223.0.0.1.12" stroke-width="1.09642"/>
  4501. <rect fill="#e6e6e6" fill-opacity="0.37000002" height="3.47377" id="_x30_.1.0.223.0.0.2" stroke-width="1.09642" width="59.6567" x="186.48" y="7.00361"/>
  4502. <rect fill="#808080" fill-opacity="0.37000002" height="3.47136" id="_x30_.1.0.223.0.0.3" stroke-width="1.09642" width="59.6567" x="186.48" y="47.2324"/>
  4503. <path d="m236.294,19.862c0,0,0,-1.02805,0,-1.319,0,-0.290939,0.23472,-0.726264,0.711237,-0.726264,0.467078,0,9.13406,0,9.13406,0l0,2.04055l-9.84528,0z" fill="#e6e6e6" fill-opacity="0.45" id="_x30_.1.0.223.0.0.4" stroke-width="1.09642"/>
  4504. <path d="m246.137,37.832l-9.84643,0c0,0,0,-1.02685,0,-1.31779,0,-0.29094,0.237089,-0.721433,0.710064,-0.721433,0.467078,0,9.13637,0,9.13637,0z" fill="#e6e6e6" fill-opacity="0.45" id="_x30_.1.0.223.0.0.5" stroke-width="1.09642"/>
  4505. <path d="m236.294,37.8381c0,0,0,1.02685,0,1.31911,0,0.289737,0.23472,0.726264,0.711237,0.726264,0.467078,0,9.13406,0,9.13406,0L246.139,37.8356l-9.84528,0z" fill="#b3b3b3" fill-opacity="0.45" id="_x30_.1.0.223.0.0.6" stroke-width="1.09642"/>
  4506. <path d="m236.294,19.862c0,0,0,1.03409,0,1.32756,0,0.288524,0.23472,0.726264,0.711237,0.726264,0.467078,0,9.13406,0,9.13406,0l0,-2.04779l-9.84528,0z" fill="#b3b3b3" fill-opacity="0.45" id="_x30_.1.0.223.0.0.7" stroke-width="1.09642"/>
  4507. <rect fill="#999999" height="0.387176" id="_x30_.1.0.223.0.0.12.0.0" stroke-width="1.09642" width="1.66073" x="233.577" y="5.82037"/>
  4508. <rect fill="#999999" height="0.387176" id="_x30_.1.0.223.0.0.12.0.1" stroke-width="1.09642" width="1.66073" x="233.577" y="5.82037"/>
  4509. <path d="m241.746,6.99987c-0.396302,-0.140769,-1.86125,-0.396845,-1.86125,-0.396845,0,0,-2.92398,-0.652922,-4.64251,-0.776801l0,0.389608c1.70674,0.125081,4.64251,0.776801,4.64251,0.776801,0,0,0.914119,0.01206,1.86125,0.01206z" fill="#999999" id="_x30_.1.0.223.0.0.12.1" stroke-width="1.09642"/>
  4510. <path d="m240.094,6.99987c-0.396309,-0.140769,-1.8589,-0.396845,-1.8589,-0.396845,0,0,-2.9393,-0.667276,-4.65312,-0.791157l0,0.394309c1.71382,0.12509,4.65312,0.793692,4.65312,0.793692,0,0,0.909403,0.0012096,1.8589,0z" fill="#cccccc" id="_x30_.1.0.223.0.0.12.2" stroke-width="1.09642"/>
  4511. <rect fill="#999999" height="0.387176" id="_x30_.1.0.223.0.0.13.0.0" stroke-width="1.09642" width="1.66073" x="233.577" y="51.4951"/>
  4512. <rect fill="#999999" height="0.387176" id="_x30_.1.0.223.0.0.13.0.1" stroke-width="1.09642" width="1.66073" x="233.577" y="51.4951"/>
  4513. <path d="m241.746,50.7039c-0.396302,0.143055,-1.86125,0.39443,-1.86125,0.39443,0,0,-2.92398,0.657631,-4.64251,0.779097l0,-0.394308c1.70674,-0.126294,4.64251,-0.779213,4.64251,-0.779213,0,0,0.914119,0,1.86125,0z" fill="#999999" id="_x30_.1.0.223.0.0.13.1" stroke-width="1.09642"/>
  4514. <path d="m240.094,50.7039c-0.396309,0.143055,-1.8589,0.39443,-1.8589,0.39443,0,0,-2.9393,0.669691,-4.65312,0.793569L233.582,51.495c1.71382,-0.122666,4.65312,-0.791157,4.65312,-0.791157,0,0,0.909403,0,1.8589,0z" fill="#cccccc" id="_x30_.1.0.223.0.0.13.2" stroke-width="1.09642"/>
  4515. <path d="m50.2895,68.7725,-0.163009,-0.295641c0.0078624,-2.13308,-0.946476,-3.00306,-2.05593,-3.6633,0.338113,-0.0921024,0.682074,-0.168539,0.778137,-0.60721,0.575829,-0.153553,0.697109,-0.431311,0.755331,-0.725892,0.150363,-0.103951,0.656359,-0.398418,0.60397,-0.903267,0.282352,-0.20275,0.439502,-0.464059,0.360431,-0.832209,0.303682,-0.344853,0.383735,-0.630499,0.255169,-0.893382,0.366259,-0.471566,0.204231,-0.71603,0.0471895,-0.963522,0.272631,-0.51656,0.0335649,-1.06812,-0.731068,-0.975755,-0.304644,-0.464062,-0.965871,-0.358276,-1.06968,-0.357223,-0.114558,-0.148548,-0.265843,-0.2767,-0.732053,-0.214204,-0.301255,-0.279724,-0.639381,-0.231963,-0.986237,-0.0947325,-0.414307,-0.332884,-0.687409,-0.0671033,-0.998363,0.0355219,-0.501142,-0.166966,-0.61368,0.0618415,-0.860121,0.155391,-0.545285,-0.118416,-0.7107,0.139205,-0.971703,0.410378l-0.305609,-0.0131558c-0.822764,0.496431,-1.23122,1.50692,-1.37532,2.02769,-0.145545,-0.519849,-0.553519,-1.53126,-1.37579,-2.02769l-0.303211,0.0131558c-0.261479,-0.271174,-0.427863,-0.528137,-0.973144,-0.410378,-0.245461,-0.0934171,-0.360439,-0.321436,-0.859127,-0.155391,-0.20619,-0.0670982,-0.394896,-0.205253,-0.616588,-0.197227,-0.116391,0,-0.24111,0.0486835,-0.383244,0.162361,-0.347342,-0.137628,-0.68548,-0.184861,-0.98675,0.0947333,-0.46571,-0.0618357,-0.616562,0.0657885,-0.732522,0.214206,-0.100399,0,-0.765026,-0.107891,-1.06869,0.357221,-0.763599,-0.0934157,-1.00614,0.45959,-0.733507,0.975758,-0.155246,0.247488,-0.316293,0.491955,0.0471902,0.963519,-0.128186,0.263278,-0.0490248,0.547481,0.256156,0.893391,-0.0806069,0.368143,0.0775879,0.629448,0.361391,0.832197,-0.0538761,0.505382,0.451177,0.799324,0.603011,0.903268,0.0572853,0.294589,0.17709,0.571814,0.756312,0.725892,0.0947599,0.437745,0.441936,0.515246,0.7757,0.60721,-1.10896,0.659712,-2.06127,1.52969,-2.05301,3.6633l-0.163004,0.295641c-1.27344,0.794464,-2.41783,3.34332,-0.628233,5.41272,0.118755,0.649836,0.3129,1.11391,0.488495,1.6302,0.260037,2.07585,1.96621,3.04715,2.41541,3.16201,0.660249,0.516161,1.36076,1.0031,2.30966,1.34295,0.895536,0.946166,1.8648,1.30771,2.84036,1.30684,0.0131098,0,0.0301486,0,0.042732,0,0.976058,0,1.94484,-0.360669,2.84036,-1.30684,0.949855,-0.341424,1.65232,-0.82967,2.31112,-1.34295,0.449694,-0.114487,2.1544,-1.08707,2.41587,-3.16201,0.174143,-0.51629,0.370165,-0.981266,0.487063,-1.6302,1.79253,-2.06993,0.646656,-4.61879,-0.624804,-5.41272zm-1.15217,-0.364721c-0.0646243,0.858531,-4.3709,-2.99318,-3.62771,-3.11976,2.01713,-0.349858,3.69563,0.878392,3.62771,3.11976zm-1.78135,4.28052c-1.08327,0.726825,-2.64341,0.258149,-3.48606,-1.04694,-0.841197,-1.30482,-0.646657,-2.95279,0.436116,-3.67935,1.08182,-0.72576,2.64294,-0.258417,3.48656,1.04694,0.841181,1.30576,0.646157,2.95279,-0.436614,3.67935zM44.4132,59.4305c0.0359172,0.192365,0.0775908,0.314597,0.126617,0.351436,0.24015,-0.267883,0.435173,-0.540114,0.744187,-0.797469,0.00036,0.149992,-0.0736567,0.313933,0.109575,0.433799,0.165925,-0.231176,0.389087,-0.437353,0.685965,-0.611298,-0.143091,0.255912,-0.0247752,0.333937,0.0524333,0.439856,0.225091,-0.201179,0.440009,-0.40551,0.858166,-0.564981,-0.114944,0.14513,-0.274081,0.285121,-0.10328,0.451564,0.23239,-0.151443,0.467204,-0.30249,1.02119,-0.410907,-0.125562,0.144731,-0.383226,0.289728,-0.226542,0.434326,0.292512,-0.115784,0.615135,-0.201175,0.975557,-0.248411,-0.173669,0.14552,-0.316276,0.289596,-0.176582,0.403408,0.313866,-0.101314,0.74662,-0.234991,1.16768,-0.119735l-0.26681,0.280253c-0.0305417,0.0368409,0.625326,0.0276336,1.05659,0.0342129,-0.157175,0.227096,-0.317756,0.44722,-0.412345,0.838651,0.0427377,0.0460512,0.25517,0.0197381,0.458431,0,-0.206168,0.452223,-0.567101,0.567088,-0.650543,0.761292,0.127009,0.0999964,0.302709,0.0749966,0.493862,0,-0.147964,0.319988,-0.46185,0.538532,-0.70828,0.797471,0.0626587,0.0460505,0.171235,0.0736783,0.429812,0.0421063,-0.227042,0.251829,-0.502579,0.481822,-0.829553,0.68905,0.0581861,0.0684144,0.256624,0.0670961,0.441946,0.0710503,-0.296893,0.30104,-0.676237,0.458539,-1.03427,0.654326,0.17852,0.127618,0.30465,0.0973613,0.44098,0.0960437,-0.251765,0.216048,-0.681605,0.329455,-1.08085,0.458145,0.0766721,0.123681,0.151834,0.155911,0.313862,0.19117,-0.422048,0.241049,-1.02553,0.130254,-1.19628,0.255392,0.0393285,0.122355,0.155716,0.200248,0.295412,0.26683,-0.678682,0.040793,-2.53618,-0.0263196,-2.89178,-1.48613,0.694708,-0.795503,1.96279,-1.72745,4.14631,-2.87924,-1.6984,0.590765,-3.23042,1.37877,-4.51014,2.46293,-1.50679,-0.729836,-0.46717,-2.57029,0.268736,-3.30119zm0.806261,6.86515c-0.0026352,0.690243,-0.927042,1.24851,-2.37755,1.23719,-1.41994,-0.0184205,-2.37514,-0.70169,-2.37176,-1.36995,0.002628,-0.547876,1.15801,-1.49653,2.36253,-1.46456,1.06872,-0.0131558,2.39212,0.817212,2.38678,1.59732zm-7.79147,-2.18466c0.163003,-0.0342029,0.237697,-0.0684144,0.312879,-0.191309,-0.396817,-0.128944,-0.827114,-0.241967,-1.08035,-0.458146,0.136825,0,0.262459,0.0329011,0.441466,-0.0960429,-0.357067,-0.19591,-0.737869,-0.353409,-1.03379,-0.654449,0.18435,0,0.384213,0,0.441948,-0.0710503,-0.326473,-0.207235,-0.602515,-0.437091,-0.830525,-0.689057,0.258567,0.0302594,0.366753,0,0.429339,-0.0421034,-0.246951,-0.258934,-0.558366,-0.477479,-0.707787,-0.797472,0.191128,0.0684209,0.366739,0.0934193,0.492857,0,-0.082967,-0.194198,-0.442907,-0.309069,-0.649554,-0.761287,0.203753,0.0197359,0.416705,0.0460505,0.458923,0,-0.0935827,-0.391435,-0.254214,-0.611556,-0.412364,-0.838656,0.431764,0,1.08618,0,1.05708,-0.0342086l-0.267308,-0.280252c0.421093,-0.115785,0.854286,0.018419,1.16624,0.119732,0.141648,-0.114468,-0.001188,-0.257886,-0.173686,-0.403404,0.359478,0.0473666,0.683531,0.133546,0.97557,0.248412,0.155242,-0.144602,-0.101314,-0.289595,-0.22703,-0.434329,0.553533,0.107893,0.788817,0.258939,1.02214,0.410907,0.169322,-0.166442,0.0118001,-0.306436,-0.104328,-0.451564,0.416701,0.158944,0.633063,0.363147,0.858153,0.564982,0.0771991,-0.105263,0.194537,-0.183944,0.0524217,-0.439853,0.29641,0.174466,0.519559,0.380645,0.685482,0.61116,0.184329,-0.119734,0.109575,-0.283673,0.111018,-0.433668,0.308531,0.257362,0.503066,0.529588,0.743204,0.797471,0.0490248,-0.0368409,0.0912261,-0.159073,0.128189,-0.351433,0.734451,0.731028,1.77504,2.57123,0.267296,3.30027,-1.27926,-1.08417,-2.81174,-1.87217,-4.50917,-2.46294,2.18157,1.15167,3.4516,2.08375,4.14533,2.87924,-0.355597,1.45982,-2.2136,1.52731,-2.89276,1.48613,0.140196,-0.0670961,0.255657,-0.14512,0.295437,-0.266829,-0.170276,-0.124998,-0.77521,-0.0131551,-1.19631,-0.254328zm2.50562,1.10997c0.742706,0.130264,-3.56271,3.97973,-3.62916,3.12028,-0.0664495,-2.2419,1.6101,-3.46896,3.62916,-3.12028zm-4.52226,8.58274c-1.04544,-0.861041,-1.38259,-3.38712,0.557388,-4.52038,1.16915,-0.321575,0.393924,4.95406,-0.557388,4.52038zm4.08179,4.51987c-0.58943,0.363261,-2.0244,0.215604,-3.04315,-1.28591,-0.688392,-1.25852,-0.598636,-2.53832,-0.116918,-2.91358,0.721371,-0.450101,1.83665,0.156578,2.69434,1.17664,0.748045,0.925113,1.08908,2.54392,0.465714,3.02285zm-1.15264,-5.4963c-0.0026352,0,-0.0066384,0,-0.0117994,-0.0131616,-1.08084,-0.728921,-1.27248,-2.37793,-0.427397,-3.68118,0.844118,-1.29786,2.39795,-1.76377,3.47977,-1.04445,1.0852,0.722467,1.28554,2.369,0.44435,3.67631,-0.838274,1.30706,-2.40035,1.7806,-3.48603,1.0572zm4.49413,8.06695c-1.29673,0.0552672,-2.57016,-1.09241,-2.55512,-1.48845,-0.0175666,-0.582357,1.58342,-1.03645,2.62594,-1.01105,1.05125,-0.0473904,2.45955,0.346154,2.46198,0.868507,0.0165175,0.505814,-1.27731,1.65049,-2.5328,1.63099zm2.67395,-5.749c-0.0039168,1.36338,-1.1764,2.46679,-2.62059,2.46386,-1.43838,0,-2.60557,-1.10403,-2.60896,-2.46386,-0.0026496,-1.36388,1.16524,-2.47097,2.60896,-2.47189,1.44419,0,2.6172,1.10012,2.62059,2.4644,0,0,0,0,0,0.0131688zm3.65536,1.96492c-1.11771,1.591,-2.6332,1.65218,-3.19643,1.21,-0.59087,-0.569484,-0.13976,-2.34074,0.667997,-3.31003,0.926088,-1.07219,1.91477,-1.77047,2.60412,-1.22233,0.464258,0.472097,0.736897,2.25571,-0.0756245,3.32237zm0.875644,-3.37355c-0.950827,0.433814,-1.72654,-4.84234,-0.556919,-4.5209,1.94048,1.13536,1.60333,3.65935,0.556919,4.5209z" fill="#ffffff" id="path808" stroke-width="0.995223"/>
  4516. <text fill="#ffffff" font-family="'Droid Sans'" font-size="3.9745" font-stretch="normal" font-style="normal" font-variant="normal" font-weight="normal" id="tspan6539" stroke-width="0.999999" x="53.6658" y="22.6298">GPIO</text>
  4517. <path d="m9.91999,1.10095c-4.85199,0,-8.78699,3.935,-8.78699,8.78699,0,4.85399,3.935,8.78799,8.78699,8.78799,4.85399,0,8.78799,-3.935,8.78799,-8.78799,0,-4.85299,-3.934,-8.78699,-8.78799,-8.78699zm0.0010008,12.6851c-2.152,0,-3.897,-1.745,-3.897,-3.89808,0,-2.15198,1.745,-3.89698,3.897,-3.89698,2.153,0,3.898,1.745,3.898,3.89698,0,2.15308,-1.746,3.89808,-3.898,3.89808z" fill="#b8af82" id="path819" stroke-width="0.999999"/>
  4518. <path d="m9.91999,139.998c-4.85199,0,-8.78699,3.936,-8.78699,8.78598,0,4.85399,3.935,8.78899,8.78699,8.78899,4.85399,0,8.78799,-3.937,8.78799,-8.78899,0,-4.85098,-3.934,-8.78598,-8.78799,-8.78598zm0.0010008,12.6851c-2.152,0,-3.897,-1.7441,-3.897,-3.89809,0,-2.15198,1.745,-3.89598,3.897,-3.89598,2.153,0,3.898,1.744,3.898,3.89598,0,2.15399,-1.746,3.89809,-3.898,3.89809z" fill="#b8af82" id="path821" stroke-width="0.999999"/>
  4519. <path d="m174.33,1.10095c-4.85199,0,-8.78499,3.935,-8.78499,8.78699,0,4.85399,3.935,8.78799,8.78499,8.78799,4.85499,0,8.78899,-3.935,8.78899,-8.78799,0,-4.85299,-3.934,-8.78699,-8.78899,-8.78699zm0.002016,12.6851c-2.151,0,-3.89699,-1.745,-3.89699,-3.89808,0,-2.15198,1.74599,-3.89698,3.89699,-3.89698,2.152,0,3.896,1.745,3.896,3.89698,0,2.15308,-1.744,3.89808,-3.896,3.89808z" fill="#b8af82" id="path823" stroke-width="0.999999"/>
  4520. <path d="m174.33,139.998c-4.85199,0,-8.78499,3.936,-8.78499,8.78598,0,4.85399,3.935,8.78899,8.78499,8.78899,4.85499,0,8.78899,-3.937,8.78899,-8.78899,0,-4.85098,-3.934,-8.78598,-8.78899,-8.78598zm0.002016,12.6851c-2.151,0,-3.89699,-1.7441,-3.89699,-3.89809,0,-2.15198,1.74599,-3.89598,3.89699,-3.89598,2.152,0,3.896,1.744,3.896,3.89598,0,2.15399,-1.744,3.89809,-3.896,3.89809z" fill="#b8af82" id="path825" stroke-width="0.999999"/>
  4521. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4522. <polygon fill="#404040" id="polygon3153-8_21_" points="1.96726,0.226296,1.85465,0.117648,1.56161,0.117648,1.44893,0.226296,1.44893,0.50904,1.44893,0.749232,1.44893,1.03205,1.56161,1.14062,1.85465,1.14062,1.96726,1.03205,1.96726,0.749232,1.96726,0.50904"/>
  4523. </g>
  4524. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4525. <polygon fill="#404040" id="polygon3159-0_21_" points="1.96726,0.226296,1.85465,0.117648,1.56161,0.117648,1.44893,0.226296,1.44893,0.50904,1.44893,0.749232,1.44893,1.03205,1.56161,1.14062,1.85465,1.14062,1.96726,1.03205,1.96726,0.749232,1.96726,0.50904"/>
  4526. </g>
  4527. <rect fill="#8c8663" height="1.181" id="rect3213-8_21_" stroke-width="0.999999" width="1.182" x="23.133" y="5.67705"/>
  4528. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4529. <polygon fill="#b8af82" id="polygon3215-9_21_" points="1.66558,0.40968,1.66558,0.325008,1.6254,0.284688,1.6254,0.45"/>
  4530. </g>
  4531. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4532. <polygon fill="#80795b" id="polygon3217-7_21_" points="1.66558,0.325008,1.6254,0.284688,1.79078,0.284688,1.75082,0.325008"/>
  4533. </g>
  4534. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4535. <polygon fill="#5e5b43" id="polygon3219-2_21_" points="1.75082,0.325008,1.79078,0.284688,1.79078,0.45,1.75082,0.40968"/>
  4536. </g>
  4537. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4538. <polygon fill="#9a916c" id="polygon20817" points="1.79078,0.45,1.6254,0.45,1.66558,0.40968,1.75082,0.40968"/>
  4539. </g>
  4540. <rect fill="#8c8663" height="1.182" id="rect3223-82_21_" stroke-width="0.999999" width="1.182" x="23.133" y="12.865"/>
  4541. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4542. <polygon fill="#b8af82" id="polygon3225-89_21_" points="1.66558,0.927216,1.66558,0.842472,1.6254,0.802296,1.6254,0.967464"/>
  4543. </g>
  4544. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4545. <polygon fill="#80795b" id="polygon3227-07_21_" points="1.66558,0.842472,1.6254,0.802296,1.79078,0.802296,1.75082,0.842472"/>
  4546. </g>
  4547. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4548. <polygon fill="#5e5b43" id="polygon3229-8_21_" points="1.75082,0.842472,1.79078,0.802296,1.79078,0.967464,1.75082,0.927216"/>
  4549. </g>
  4550. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4551. <polygon fill="#9a916c" id="dnc24pin_21_" points="1.6254,0.967464,1.66558,0.927216,1.75082,0.927216,1.79078,0.967464"/>
  4552. </g>
  4553. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4554. <polygon fill="#404040" id="polygon3153-8_20_" points="2.48573,0.226296,2.37305,0.117648,2.08001,0.117648,1.96733,0.226296,1.96733,0.50904,1.96733,0.749232,1.96733,1.03205,2.08001,1.14062,2.37305,1.14062,2.48573,1.03205,2.48573,0.749232,2.48573,0.50904"/>
  4555. </g>
  4556. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4557. <polygon fill="#404040" id="polygon3159-0_20_" points="2.48573,0.226296,2.37305,0.117648,2.08001,0.117648,1.96733,0.226296,1.96733,0.50904,1.96733,0.749232,1.96733,1.03205,2.08001,1.14062,2.37305,1.14062,2.48573,1.03205,2.48573,0.749232,2.48573,0.50904"/>
  4558. </g>
  4559. <rect fill="#8c8663" height="1.181" id="rect3213-8_20_" stroke-width="0.999999" width="1.182" x="30.333" y="5.67705"/>
  4560. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4561. <polygon fill="#b8af82" id="polygon3215-9_20_" points="2.18398,0.40968,2.18398,0.325008,2.14387,0.284688,2.14387,0.45"/>
  4562. </g>
  4563. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4564. <polygon fill="#80795b" id="polygon3217-7_20_" points="2.18398,0.325008,2.14387,0.284688,2.30918,0.284688,2.26922,0.325008"/>
  4565. </g>
  4566. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4567. <polygon fill="#5e5b43" id="polygon3219-2_20_" points="2.26922,0.325008,2.30918,0.284688,2.30918,0.45,2.26922,0.40968"/>
  4568. </g>
  4569. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4570. <polygon fill="#9a916c" id="polygon20819" points="2.30918,0.45,2.14387,0.45,2.18398,0.40968,2.26922,0.40968"/>
  4571. </g>
  4572. <rect fill="#8c8663" height="1.182" id="rect3223-82_20_" stroke-width="0.999999" width="1.182" x="30.333" y="12.865"/>
  4573. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4574. <polygon fill="#b8af82" id="polygon3225-89_20_" points="2.18398,0.927216,2.18398,0.842472,2.14387,0.802296,2.14387,0.967464"/>
  4575. </g>
  4576. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4577. <polygon fill="#80795b" id="polygon3227-07_20_" points="2.18398,0.842472,2.14387,0.802296,2.30918,0.802296,2.26922,0.842472"/>
  4578. </g>
  4579. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4580. <polygon fill="#5e5b43" id="polygon3229-8_20_" points="2.26922,0.842472,2.30918,0.802296,2.30918,0.967464,2.26922,0.927216"/>
  4581. </g>
  4582. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4583. <polygon fill="#9a916c" id="dnc24pin_20_" points="2.14387,0.967464,2.18398,0.927216,2.26922,0.927216,2.30918,0.967464"/>
  4584. </g>
  4585. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4586. <polygon fill="#404040" id="polygon3153-8_19_" points="3.00413,0.226296,2.89145,0.117648,2.59841,0.117648,2.4858,0.226296,2.4858,0.50904,2.4858,0.749232,2.4858,1.03205,2.59841,1.14062,2.89145,1.14062,3.00413,1.03205,3.00413,0.749232,3.00413,0.50904"/>
  4587. </g>
  4588. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4589. <polygon fill="#404040" id="polygon3159-0_19_" points="3.00413,0.226296,2.89145,0.117648,2.59841,0.117648,2.4858,0.226296,2.4858,0.50904,2.4858,0.749232,2.4858,1.03205,2.59841,1.14062,2.89145,1.14062,3.00413,1.03205,3.00413,0.749232,3.00413,0.50904"/>
  4590. </g>
  4591. <rect fill="#8c8663" height="1.181" id="rect3213-8_19_" stroke-width="0.999999" width="1.182" x="37.533" y="5.67705"/>
  4592. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4593. <polygon fill="#b8af82" id="polygon3215-9_19_" points="2.70238,0.40968,2.70238,0.325008,2.66227,0.284688,2.66227,0.45"/>
  4594. </g>
  4595. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4596. <polygon fill="#80795b" id="polygon3217-7_19_" points="2.70238,0.325008,2.66227,0.284688,2.82766,0.284688,2.78762,0.325008"/>
  4597. </g>
  4598. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4599. <polygon fill="#5e5b43" id="polygon3219-2_19_" points="2.78762,0.325008,2.82766,0.284688,2.82766,0.45,2.78762,0.40968"/>
  4600. </g>
  4601. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4602. <polygon fill="#9a916c" id="polygon20821" points="2.82766,0.45,2.66227,0.45,2.70238,0.40968,2.78762,0.40968"/>
  4603. </g>
  4604. <rect fill="#8c8663" height="1.182" id="rect3223-82_19_" stroke-width="0.999999" width="1.182" x="37.533" y="12.865"/>
  4605. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4606. <polygon fill="#b8af82" id="polygon3225-89_19_" points="2.70238,0.927216,2.70238,0.842472,2.66227,0.802296,2.66227,0.967464"/>
  4607. </g>
  4608. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4609. <polygon fill="#80795b" id="polygon3227-07_19_" points="2.70238,0.842472,2.66227,0.802296,2.82766,0.802296,2.78762,0.842472"/>
  4610. </g>
  4611. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4612. <polygon fill="#5e5b43" id="polygon3229-8_19_" points="2.78762,0.842472,2.82766,0.802296,2.82766,0.967464,2.78762,0.927216"/>
  4613. </g>
  4614. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4615. <polygon fill="#9a916c" id="dnc24pin_19_" points="2.66227,0.967464,2.70238,0.927216,2.78762,0.927216,2.82766,0.967464"/>
  4616. </g>
  4617. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4618. <polygon fill="#404040" id="polygon3153-8_18_" points="3.52253,0.226296,3.40992,0.117648,3.11681,0.117648,3.0042,0.226296,3.0042,0.50904,3.0042,0.749232,3.0042,1.03205,3.11681,1.14062,3.40992,1.14062,3.52253,1.03205,3.52253,0.749232,3.52253,0.50904"/>
  4619. </g>
  4620. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4621. <polygon fill="#404040" id="polygon3159-0_18_" points="3.52253,0.226296,3.40992,0.117648,3.11681,0.117648,3.0042,0.226296,3.0042,0.50904,3.0042,0.749232,3.0042,1.03205,3.11681,1.14062,3.40992,1.14062,3.52253,1.03205,3.52253,0.749232,3.52253,0.50904"/>
  4622. </g>
  4623. <rect fill="#8c8663" height="1.181" id="rect3213-8_18_" stroke-width="0.999999" width="1.182" x="44.7339" y="5.67705"/>
  4624. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4625. <polygon fill="#b8af82" id="polygon3215-9_18_" points="3.22085,0.40968,3.22085,0.325008,3.18067,0.284688,3.18067,0.45"/>
  4626. </g>
  4627. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4628. <polygon fill="#80795b" id="polygon3217-7_18_" points="3.22085,0.325008,3.18067,0.284688,3.34605,0.284688,3.30602,0.325008"/>
  4629. </g>
  4630. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4631. <polygon fill="#5e5b43" id="polygon3219-2_18_" points="3.30602,0.325008,3.34605,0.284688,3.34605,0.45,3.30602,0.40968"/>
  4632. </g>
  4633. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4634. <polygon fill="#9a916c" id="polygon20823" points="3.34605,0.45,3.18067,0.45,3.22085,0.40968,3.30602,0.40968"/>
  4635. </g>
  4636. <rect fill="#8c8663" height="1.182" id="rect3223-82_18_" stroke-width="0.999999" width="1.182" x="44.7339" y="12.865"/>
  4637. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4638. <polygon fill="#b8af82" id="polygon3225-89_18_" points="3.22085,0.927216,3.22085,0.842472,3.18067,0.802296,3.18067,0.967464"/>
  4639. </g>
  4640. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4641. <polygon fill="#80795b" id="polygon3227-07_18_" points="3.22085,0.842472,3.18067,0.802296,3.34605,0.802296,3.30602,0.842472"/>
  4642. </g>
  4643. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4644. <polygon fill="#5e5b43" id="polygon3229-8_18_" points="3.30602,0.842472,3.34605,0.802296,3.34605,0.967464,3.30602,0.927216"/>
  4645. </g>
  4646. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4647. <polygon fill="#9a916c" id="dnc24pin_18_" points="3.18067,0.967464,3.22085,0.927216,3.30602,0.927216,3.34605,0.967464"/>
  4648. </g>
  4649. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4650. <polygon fill="#404040" id="polygon3153-8_17_" points="4.04093,0.226296,3.92832,0.117648,3.63521,0.117648,3.5226,0.226296,3.5226,0.50904,3.5226,0.749232,3.5226,1.03205,3.63521,1.14062,3.92832,1.14062,4.04093,1.03205,4.04093,0.749232,4.04093,0.50904"/>
  4651. </g>
  4652. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4653. <polygon fill="#404040" id="polygon3159-0_17_" points="4.04093,0.226296,3.92832,0.117648,3.63521,0.117648,3.5226,0.226296,3.5226,0.50904,3.5226,0.749232,3.5226,1.03205,3.63521,1.14062,3.92832,1.14062,4.04093,1.03205,4.04093,0.749232,4.04093,0.50904"/>
  4654. </g>
  4655. <rect fill="#8c8663" height="1.181" id="rect3213-8_17_" stroke-width="0.999999" width="1.182" x="51.9339" y="5.67705"/>
  4656. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4657. <polygon fill="#b8af82" id="polygon3215-9_17_" points="3.73925,0.40968,3.73925,0.325008,3.69907,0.284688,3.69907,0.45"/>
  4658. </g>
  4659. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4660. <polygon fill="#80795b" id="polygon3217-7_17_" points="3.73925,0.325008,3.69907,0.284688,3.86445,0.284688,3.82442,0.325008"/>
  4661. </g>
  4662. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4663. <polygon fill="#5e5b43" id="polygon3219-2_17_" points="3.82442,0.325008,3.86445,0.284688,3.86445,0.45,3.82442,0.40968"/>
  4664. </g>
  4665. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4666. <polygon fill="#9a916c" id="polygon20825" points="3.86445,0.45,3.69907,0.45,3.73925,0.40968,3.82442,0.40968"/>
  4667. </g>
  4668. <rect fill="#8c8663" height="1.182" id="rect3223-82_17_" stroke-width="0.999999" width="1.182" x="51.9339" y="12.865"/>
  4669. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4670. <polygon fill="#b8af82" id="polygon3225-89_17_" points="3.73925,0.927216,3.73925,0.842472,3.69907,0.802296,3.69907,0.967464"/>
  4671. </g>
  4672. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4673. <polygon fill="#80795b" id="polygon3227-07_17_" points="3.73925,0.842472,3.69907,0.802296,3.86445,0.802296,3.82442,0.842472"/>
  4674. </g>
  4675. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4676. <polygon fill="#5e5b43" id="polygon3229-8_17_" points="3.82442,0.842472,3.86445,0.802296,3.86445,0.967464,3.82442,0.927216"/>
  4677. </g>
  4678. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4679. <polygon fill="#9a916c" id="dnc24pin_17_" points="3.69907,0.967464,3.73925,0.927216,3.82442,0.927216,3.86445,0.967464"/>
  4680. </g>
  4681. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4682. <polygon fill="#404040" id="polygon3153-8_16_" points="4.55933,0.226296,4.44672,0.117648,4.15368,0.117648,4.041,0.226296,4.041,0.50904,4.041,0.749232,4.041,1.03205,4.15368,1.14062,4.44672,1.14062,4.55933,1.03205,4.55933,0.749232,4.55933,0.50904"/>
  4683. </g>
  4684. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4685. <polygon fill="#404040" id="polygon3159-0_16_" points="4.55933,0.226296,4.44672,0.117648,4.15368,0.117648,4.041,0.226296,4.041,0.50904,4.041,0.749232,4.041,1.03205,4.15368,1.14062,4.44672,1.14062,4.55933,1.03205,4.55933,0.749232,4.55933,0.50904"/>
  4686. </g>
  4687. <rect fill="#8c8663" height="1.181" id="rect3213-8_16_" stroke-width="0.999999" width="1.182" x="59.1339" y="5.67705"/>
  4688. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4689. <polygon fill="#b8af82" id="polygon3215-9_16_" points="4.25765,0.40968,4.25765,0.325008,4.21747,0.284688,4.21747,0.45"/>
  4690. </g>
  4691. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4692. <polygon fill="#80795b" id="polygon3217-7_16_" points="4.25765,0.325008,4.21747,0.284688,4.38285,0.284688,4.34289,0.325008"/>
  4693. </g>
  4694. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4695. <polygon fill="#5e5b43" id="polygon3219-2_16_" points="4.34289,0.325008,4.38285,0.284688,4.38285,0.45,4.34289,0.40968"/>
  4696. </g>
  4697. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4698. <polygon fill="#9a916c" id="polygon20827" points="4.38285,0.45,4.21747,0.45,4.25765,0.40968,4.34289,0.40968"/>
  4699. </g>
  4700. <rect fill="#8c8663" height="1.182" id="rect3223-82_16_" stroke-width="0.999999" width="1.182" x="59.1339" y="12.865"/>
  4701. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4702. <polygon fill="#b8af82" id="polygon3225-89_16_" points="4.25765,0.927216,4.25765,0.842472,4.21747,0.802296,4.21747,0.967464"/>
  4703. </g>
  4704. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4705. <polygon fill="#80795b" id="polygon3227-07_16_" points="4.25765,0.842472,4.21747,0.802296,4.38285,0.802296,4.34289,0.842472"/>
  4706. </g>
  4707. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4708. <polygon fill="#5e5b43" id="polygon3229-8_16_" points="4.34289,0.842472,4.38285,0.802296,4.38285,0.967464,4.34289,0.927216"/>
  4709. </g>
  4710. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4711. <polygon fill="#9a916c" id="dnc24pin_16_" points="4.21747,0.967464,4.25765,0.927216,4.34289,0.927216,4.38285,0.967464"/>
  4712. </g>
  4713. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4714. <polygon fill="#404040" id="polygon3153-8_15_" points="5.0778,0.226296,4.96512,0.117648,4.67208,0.117648,4.5594,0.226296,4.5594,0.50904,4.5594,0.749232,4.5594,1.03205,4.67208,1.14062,4.96512,1.14062,5.0778,1.03205,5.0778,0.749232,5.0778,0.50904"/>
  4715. </g>
  4716. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4717. <polygon fill="#404040" id="polygon3159-0_15_" points="5.0778,0.226296,4.96512,0.117648,4.67208,0.117648,4.5594,0.226296,4.5594,0.50904,4.5594,0.749232,4.5594,1.03205,4.67208,1.14062,4.96512,1.14062,5.0778,1.03205,5.0778,0.749232,5.0778,0.50904"/>
  4718. </g>
  4719. <rect fill="#8c8663" height="1.181" id="rect3213-8_15_" stroke-width="0.999999" width="1.182" x="66.3339" y="5.67705"/>
  4720. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4721. <polygon fill="#b8af82" id="polygon3215-9_15_" points="4.77605,0.40968,4.77605,0.325008,4.73594,0.284688,4.73594,0.45"/>
  4722. </g>
  4723. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4724. <polygon fill="#80795b" id="polygon3217-7_15_" points="4.77605,0.325008,4.73594,0.284688,4.90125,0.284688,4.86129,0.325008"/>
  4725. </g>
  4726. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4727. <polygon fill="#5e5b43" id="polygon3219-2_15_" points="4.86129,0.325008,4.90125,0.284688,4.90125,0.45,4.86129,0.40968"/>
  4728. </g>
  4729. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4730. <polygon fill="#9a916c" id="polygon20829" points="4.90125,0.45,4.73594,0.45,4.77605,0.40968,4.86129,0.40968"/>
  4731. </g>
  4732. <rect fill="#8c8663" height="1.182" id="rect3223-82_15_" stroke-width="0.999999" width="1.182" x="66.3339" y="12.865"/>
  4733. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4734. <polygon fill="#b8af82" id="polygon3225-89_15_" points="4.77605,0.927216,4.77605,0.842472,4.73594,0.802296,4.73594,0.967464"/>
  4735. </g>
  4736. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4737. <polygon fill="#80795b" id="polygon3227-07_15_" points="4.77605,0.842472,4.73594,0.802296,4.90125,0.802296,4.86129,0.842472"/>
  4738. </g>
  4739. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4740. <polygon fill="#5e5b43" id="polygon3229-8_15_" points="4.86129,0.842472,4.90125,0.802296,4.90125,0.967464,4.86129,0.927216"/>
  4741. </g>
  4742. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4743. <polygon fill="#9a916c" id="dnc24pin_15_" points="4.73594,0.967464,4.77605,0.927216,4.86129,0.927216,4.90125,0.967464"/>
  4744. </g>
  4745. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4746. <polygon fill="#404040" id="polygon3153-8_14_" points="5.5962,0.226296,5.48352,0.117648,5.19048,0.117648,5.07787,0.226296,5.07787,0.50904,5.07787,0.749232,5.07787,1.03205,5.19048,1.14062,5.48352,1.14062,5.5962,1.03205,5.5962,0.749232,5.5962,0.50904"/>
  4747. </g>
  4748. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4749. <polygon fill="#404040" id="polygon3159-0_14_" points="5.5962,0.226296,5.48352,0.117648,5.19048,0.117648,5.07787,0.226296,5.07787,0.50904,5.07787,0.749232,5.07787,1.03205,5.19048,1.14062,5.48352,1.14062,5.5962,1.03205,5.5962,0.749232,5.5962,0.50904"/>
  4750. </g>
  4751. <rect fill="#8c8663" height="1.181" id="rect3213-8_14_" stroke-width="0.999999" width="1.182" x="73.5339" y="5.67705"/>
  4752. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4753. <polygon fill="#b8af82" id="polygon3215-9_14_" points="5.29445,0.40968,5.29445,0.325008,5.25434,0.284688,5.25434,0.45"/>
  4754. </g>
  4755. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4756. <polygon fill="#80795b" id="polygon3217-7_14_" points="5.29445,0.325008,5.25434,0.284688,5.41973,0.284688,5.37969,0.325008"/>
  4757. </g>
  4758. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4759. <polygon fill="#5e5b43" id="polygon3219-2_14_" points="5.37969,0.325008,5.41973,0.284688,5.41973,0.45,5.37969,0.40968"/>
  4760. </g>
  4761. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4762. <polygon fill="#9a916c" id="polygon849" points="5.41973,0.45,5.25434,0.45,5.29445,0.40968,5.37969,0.40968"/>
  4763. </g>
  4764. <rect fill="#8c8663" height="1.182" id="rect3223-82_14_" stroke-width="0.999999" width="1.182" x="73.5339" y="12.865"/>
  4765. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4766. <polygon fill="#b8af82" id="polygon3225-89_14_" points="5.29445,0.927216,5.29445,0.842472,5.25434,0.802296,5.25434,0.967464"/>
  4767. </g>
  4768. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4769. <polygon fill="#80795b" id="polygon3227-07_14_" points="5.29445,0.842472,5.25434,0.802296,5.41973,0.802296,5.37969,0.842472"/>
  4770. </g>
  4771. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4772. <polygon fill="#5e5b43" id="polygon3229-8_14_" points="5.37969,0.842472,5.41973,0.802296,5.41973,0.967464,5.37969,0.927216"/>
  4773. </g>
  4774. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4775. <polygon fill="#9a916c" id="dnc24pin_14_" points="5.25434,0.967464,5.29445,0.927216,5.37969,0.927216,5.41973,0.967464"/>
  4776. </g>
  4777. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4778. <polygon fill="#404040" id="polygon3153-8_13_" points="6.1146,0.226296,6.00199,0.117648,5.70888,0.117648,5.59627,0.226296,5.59627,0.50904,5.59627,0.749232,5.59627,1.03205,5.70888,1.14062,6.00199,1.14062,6.1146,1.03205,6.1146,0.749232,6.1146,0.50904"/>
  4779. </g>
  4780. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4781. <polygon fill="#404040" id="polygon3159-0_13_" points="6.1146,0.226296,6.00199,0.117648,5.70888,0.117648,5.59627,0.226296,5.59627,0.50904,5.59627,0.749232,5.59627,1.03205,5.70888,1.14062,6.00199,1.14062,6.1146,1.03205,6.1146,0.749232,6.1146,0.50904"/>
  4782. </g>
  4783. <rect fill="#8c8663" height="1.181" id="rect3213-8_13_" stroke-width="0.999999" width="1.182" x="80.7349" y="5.67705"/>
  4784. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4785. <polygon fill="#b8af82" id="polygon3215-9_13_" points="5.81292,0.40968,5.81292,0.325008,5.77274,0.284688,5.77274,0.45"/>
  4786. </g>
  4787. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4788. <polygon fill="#80795b" id="polygon3217-7_13_" points="5.81292,0.325008,5.77274,0.284688,5.93813,0.284688,5.89809,0.325008"/>
  4789. </g>
  4790. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4791. <polygon fill="#5e5b43" id="polygon3219-2_13_" points="5.89809,0.325008,5.93813,0.284688,5.93813,0.45,5.89809,0.40968"/>
  4792. </g>
  4793. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4794. <polygon fill="#9a916c" id="polygon851" points="5.93813,0.45,5.77274,0.45,5.81292,0.40968,5.89809,0.40968"/>
  4795. </g>
  4796. <rect fill="#8c8663" height="1.182" id="rect3223-82_13_" stroke-width="0.999999" width="1.182" x="80.7349" y="12.865"/>
  4797. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4798. <polygon fill="#b8af82" id="polygon3225-89_13_" points="5.81292,0.927216,5.81292,0.842472,5.77274,0.802296,5.77274,0.967464"/>
  4799. </g>
  4800. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4801. <polygon fill="#80795b" id="polygon3227-07_13_" points="5.81292,0.842472,5.77274,0.802296,5.93813,0.802296,5.89809,0.842472"/>
  4802. </g>
  4803. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4804. <polygon fill="#5e5b43" id="polygon3229-8_13_" points="5.89809,0.842472,5.93813,0.802296,5.93813,0.967464,5.89809,0.927216"/>
  4805. </g>
  4806. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4807. <polygon fill="#9a916c" id="dnc24pin_13_" points="5.77274,0.967464,5.81292,0.927216,5.89809,0.927216,5.93813,0.967464"/>
  4808. </g>
  4809. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4810. <polygon fill="#404040" id="polygon3153-8_12_" points="6.633,0.226296,6.52039,0.117648,6.22728,0.117648,6.11467,0.226296,6.11467,0.50904,6.11467,0.749232,6.11467,1.03205,6.22728,1.14062,6.52039,1.14062,6.633,1.03205,6.633,0.749232,6.633,0.50904"/>
  4811. </g>
  4812. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4813. <polygon fill="#404040" id="polygon3159-0_12_" points="6.633,0.226296,6.52039,0.117648,6.22728,0.117648,6.11467,0.226296,6.11467,0.50904,6.11467,0.749232,6.11467,1.03205,6.22728,1.14062,6.52039,1.14062,6.633,1.03205,6.633,0.749232,6.633,0.50904"/>
  4814. </g>
  4815. <rect fill="#8c8663" height="1.181" id="rect3213-8_12_" stroke-width="0.999999" width="1.182" x="87.9349" y="5.67705"/>
  4816. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4817. <polygon fill="#b8af82" id="polygon3215-9_12_" points="6.33132,0.40968,6.33132,0.325008,6.29114,0.284688,6.29114,0.45"/>
  4818. </g>
  4819. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4820. <polygon fill="#80795b" id="polygon3217-7_12_" points="6.33132,0.325008,6.29114,0.284688,6.45653,0.284688,6.41649,0.325008"/>
  4821. </g>
  4822. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4823. <polygon fill="#5e5b43" id="polygon3219-2_12_" points="6.41649,0.325008,6.45653,0.284688,6.45653,0.45,6.41649,0.40968"/>
  4824. </g>
  4825. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4826. <polygon fill="#9a916c" id="polygon853" points="6.45653,0.45,6.29114,0.45,6.33132,0.40968,6.41649,0.40968"/>
  4827. </g>
  4828. <rect fill="#8c8663" height="1.182" id="rect3223-82_12_" stroke-width="0.999999" width="1.182" x="87.9349" y="12.865"/>
  4829. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4830. <polygon fill="#b8af82" id="polygon3225-89_12_" points="6.33132,0.927216,6.33132,0.842472,6.29114,0.802296,6.29114,0.967464"/>
  4831. </g>
  4832. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4833. <polygon fill="#80795b" id="polygon3227-07_12_" points="6.33132,0.842472,6.29114,0.802296,6.45653,0.802296,6.41649,0.842472"/>
  4834. </g>
  4835. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4836. <polygon fill="#5e5b43" id="polygon3229-8_12_" points="6.41649,0.842472,6.45653,0.802296,6.45653,0.967464,6.41649,0.927216"/>
  4837. </g>
  4838. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4839. <polygon fill="#9a916c" id="dnc24pin_12_" points="6.29114,0.967464,6.33132,0.927216,6.41649,0.927216,6.45653,0.967464"/>
  4840. </g>
  4841. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4842. <polygon fill="#404040" id="polygon3153-8_11_" points="7.1514,0.226296,7.03879,0.117648,6.74575,0.117648,6.63307,0.226296,6.63307,0.50904,6.63307,0.749232,6.63307,1.03205,6.74575,1.14062,7.03879,1.14062,7.1514,1.03205,7.1514,0.749232,7.1514,0.50904"/>
  4843. </g>
  4844. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4845. <polygon fill="#404040" id="polygon3159-0_11_" points="7.1514,0.226296,7.03879,0.117648,6.74575,0.117648,6.63307,0.226296,6.63307,0.50904,6.63307,0.749232,6.63307,1.03205,6.74575,1.14062,7.03879,1.14062,7.1514,1.03205,7.1514,0.749232,7.1514,0.50904"/>
  4846. </g>
  4847. <rect fill="#8c8663" height="1.181" id="rect3213-8_11_" stroke-width="0.999999" width="1.182" x="95.1349" y="5.67705"/>
  4848. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4849. <polygon fill="#b8af82" id="polygon3215-9_11_" points="6.84972,0.40968,6.84972,0.325008,6.80954,0.284688,6.80954,0.45"/>
  4850. </g>
  4851. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4852. <polygon fill="#80795b" id="polygon3217-7_11_" points="6.84972,0.325008,6.80954,0.284688,6.97493,0.284688,6.93497,0.325008"/>
  4853. </g>
  4854. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4855. <polygon fill="#5e5b43" id="polygon3219-2_11_" points="6.93497,0.325008,6.97493,0.284688,6.97493,0.45,6.93497,0.40968"/>
  4856. </g>
  4857. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4858. <polygon fill="#9a916c" id="polygon855" points="6.97493,0.45,6.80954,0.45,6.84972,0.40968,6.93497,0.40968"/>
  4859. </g>
  4860. <rect fill="#8c8663" height="1.182" id="rect3223-82_11_" stroke-width="0.999999" width="1.182" x="95.1349" y="12.865"/>
  4861. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4862. <polygon fill="#b8af82" id="polygon3225-89_11_" points="6.84972,0.927216,6.84972,0.842472,6.80954,0.802296,6.80954,0.967464"/>
  4863. </g>
  4864. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4865. <polygon fill="#80795b" id="polygon3227-07_11_" points="6.84972,0.842472,6.80954,0.802296,6.97493,0.802296,6.93497,0.842472"/>
  4866. </g>
  4867. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4868. <polygon fill="#5e5b43" id="polygon3229-8_11_" points="6.93497,0.842472,6.97493,0.802296,6.97493,0.967464,6.93497,0.927216"/>
  4869. </g>
  4870. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4871. <polygon fill="#9a916c" id="dnc24pin_11_" points="6.80954,0.967464,6.84972,0.927216,6.93497,0.927216,6.97493,0.967464"/>
  4872. </g>
  4873. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4874. <polygon fill="#404040" id="polygon3153-8_10_" points="7.66987,0.226296,7.55719,0.117648,7.26415,0.117648,7.15147,0.226296,7.15147,0.50904,7.15147,0.749232,7.15147,1.03205,7.26415,1.14062,7.55719,1.14062,7.66987,1.03205,7.66987,0.749232,7.66987,0.50904"/>
  4875. </g>
  4876. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4877. <polygon fill="#404040" id="polygon3159-0_10_" points="7.66987,0.226296,7.55719,0.117648,7.26415,0.117648,7.15147,0.226296,7.15147,0.50904,7.15147,0.749232,7.15147,1.03205,7.26415,1.14062,7.55719,1.14062,7.66987,1.03205,7.66987,0.749232,7.66987,0.50904"/>
  4878. </g>
  4879. <rect fill="#8c8663" height="1.181" id="rect3213-8_10_" stroke-width="0.999999" width="1.182" x="102.335" y="5.67705"/>
  4880. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4881. <polygon fill="#b8af82" id="polygon3215-9_10_" points="7.36812,0.40968,7.36812,0.325008,7.32801,0.284688,7.32801,0.45"/>
  4882. </g>
  4883. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4884. <polygon fill="#80795b" id="polygon3217-7_10_" points="7.36812,0.325008,7.32801,0.284688,7.49333,0.284688,7.45337,0.325008"/>
  4885. </g>
  4886. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4887. <polygon fill="#5e5b43" id="polygon3219-2_10_" points="7.45337,0.325008,7.49333,0.284688,7.49333,0.45,7.45337,0.40968"/>
  4888. </g>
  4889. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4890. <polygon fill="#9a916c" id="polygon857" points="7.49333,0.45,7.32801,0.45,7.36812,0.40968,7.45337,0.40968"/>
  4891. </g>
  4892. <rect fill="#8c8663" height="1.182" id="rect3223-82_10_" stroke-width="0.999999" width="1.182" x="102.335" y="12.865"/>
  4893. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4894. <polygon fill="#b8af82" id="polygon3225-89_10_" points="7.36812,0.927216,7.36812,0.842472,7.32801,0.802296,7.32801,0.967464"/>
  4895. </g>
  4896. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4897. <polygon fill="#80795b" id="polygon3227-07_10_" points="7.36812,0.842472,7.32801,0.802296,7.49333,0.802296,7.45337,0.842472"/>
  4898. </g>
  4899. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4900. <polygon fill="#5e5b43" id="polygon3229-8_10_" points="7.45337,0.842472,7.49333,0.802296,7.49333,0.967464,7.45337,0.927216"/>
  4901. </g>
  4902. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4903. <polygon fill="#9a916c" id="dnc24pin_10_" points="7.32801,0.967464,7.36812,0.927216,7.45337,0.927216,7.49333,0.967464"/>
  4904. </g>
  4905. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4906. <polygon fill="#404040" id="polygon3153-8_9_" points="8.18827,0.226296,8.07559,0.117648,7.78255,0.117648,7.66994,0.226296,7.66994,0.50904,7.66994,0.749232,7.66994,1.03205,7.78255,1.14062,8.07559,1.14062,8.18827,1.03205,8.18827,0.749232,8.18827,0.50904"/>
  4907. </g>
  4908. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4909. <polygon fill="#404040" id="polygon3159-0_9_" points="8.18827,0.226296,8.07559,0.117648,7.78255,0.117648,7.66994,0.226296,7.66994,0.50904,7.66994,0.749232,7.66994,1.03205,7.78255,1.14062,8.07559,1.14062,8.18827,1.03205,8.18827,0.749232,8.18827,0.50904"/>
  4910. </g>
  4911. <rect fill="#8c8663" height="1.181" id="rect3213-8_9_" stroke-width="0.999999" width="1.182" x="109.535" y="5.67705"/>
  4912. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4913. <polygon fill="#b8af82" id="polygon3215-9_9_" points="7.88652,0.40968,7.88652,0.325008,7.84641,0.284688,7.84641,0.45"/>
  4914. </g>
  4915. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4916. <polygon fill="#80795b" id="polygon3217-7_9_" points="7.88652,0.325008,7.84641,0.284688,8.0118,0.284688,7.97177,0.325008"/>
  4917. </g>
  4918. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4919. <polygon fill="#5e5b43" id="polygon3219-2_9_" points="7.97177,0.325008,8.0118,0.284688,8.0118,0.45,7.97177,0.40968"/>
  4920. </g>
  4921. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4922. <polygon fill="#9a916c" id="polygon859" points="8.0118,0.45,7.84641,0.45,7.88652,0.40968,7.97177,0.40968"/>
  4923. </g>
  4924. <rect fill="#8c8663" height="1.182" id="rect3223-82_9_" stroke-width="0.999999" width="1.182" x="109.535" y="12.865"/>
  4925. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4926. <polygon fill="#b8af82" id="polygon3225-89_9_" points="7.88652,0.927216,7.88652,0.842472,7.84641,0.802296,7.84641,0.967464"/>
  4927. </g>
  4928. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4929. <polygon fill="#80795b" id="polygon3227-07_9_" points="7.88652,0.842472,7.84641,0.802296,8.0118,0.802296,7.97177,0.842472"/>
  4930. </g>
  4931. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4932. <polygon fill="#5e5b43" id="polygon3229-8_9_" points="7.97177,0.842472,8.0118,0.802296,8.0118,0.967464,7.97177,0.927216"/>
  4933. </g>
  4934. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4935. <polygon fill="#9a916c" id="dnc24pin_9_" points="7.84641,0.967464,7.88652,0.927216,7.97177,0.927216,8.0118,0.967464"/>
  4936. </g>
  4937. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4938. <polygon fill="#404040" id="polygon3153-8_8_" points="8.70667,0.226296,8.59406,0.117648,8.30095,0.117648,8.18834,0.226296,8.18834,0.50904,8.18834,0.749232,8.18834,1.03205,8.30095,1.14062,8.59406,1.14062,8.70667,1.03205,8.70667,0.749232,8.70667,0.50904"/>
  4939. </g>
  4940. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4941. <polygon fill="#404040" id="polygon3159-0_8_" points="8.70667,0.226296,8.59406,0.117648,8.30095,0.117648,8.18834,0.226296,8.18834,0.50904,8.18834,0.749232,8.18834,1.03205,8.30095,1.14062,8.59406,1.14062,8.70667,1.03205,8.70667,0.749232,8.70667,0.50904"/>
  4942. </g>
  4943. <rect fill="#8c8663" height="1.181" id="rect3213-8_8_" stroke-width="0.999999" width="1.182" x="116.736" y="5.67705"/>
  4944. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4945. <polygon fill="#b8af82" id="polygon3215-9_8_" points="8.40499,0.40968,8.40499,0.325008,8.36481,0.284688,8.36481,0.45"/>
  4946. </g>
  4947. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4948. <polygon fill="#80795b" id="polygon3217-7_8_" points="8.40499,0.325008,8.36481,0.284688,8.5302,0.284688,8.49017,0.325008"/>
  4949. </g>
  4950. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4951. <polygon fill="#5e5b43" id="polygon3219-2_8_" points="8.49017,0.325008,8.5302,0.284688,8.5302,0.45,8.49017,0.40968"/>
  4952. </g>
  4953. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4954. <polygon fill="#9a916c" id="polygon861" points="8.5302,0.45,8.36481,0.45,8.40499,0.40968,8.49017,0.40968"/>
  4955. </g>
  4956. <rect fill="#8c8663" height="1.182" id="rect3223-82_8_" stroke-width="0.999999" width="1.182" x="116.736" y="12.865"/>
  4957. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4958. <polygon fill="#b8af82" id="polygon3225-89_8_" points="8.40499,0.927216,8.40499,0.842472,8.36481,0.802296,8.36481,0.967464"/>
  4959. </g>
  4960. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4961. <polygon fill="#80795b" id="polygon3227-07_8_" points="8.40499,0.842472,8.36481,0.802296,8.5302,0.802296,8.49017,0.842472"/>
  4962. </g>
  4963. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4964. <polygon fill="#5e5b43" id="polygon3229-8_8_" points="8.49017,0.842472,8.5302,0.802296,8.5302,0.967464,8.49017,0.927216"/>
  4965. </g>
  4966. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4967. <polygon fill="#9a916c" id="dnc24pin_8_" points="8.36481,0.967464,8.40499,0.927216,8.49017,0.927216,8.5302,0.967464"/>
  4968. </g>
  4969. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4970. <polygon fill="#404040" id="polygon3153-8_7_" points="9.22507,0.226296,9.11246,0.117648,8.81935,0.117648,8.70674,0.226296,8.70674,0.50904,8.70674,0.749232,8.70674,1.03205,8.81935,1.14062,9.11246,1.14062,9.22507,1.03205,9.22507,0.749232,9.22507,0.50904"/>
  4971. </g>
  4972. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4973. <polygon fill="#404040" id="polygon3159-0_7_" points="9.22507,0.226296,9.11246,0.117648,8.81935,0.117648,8.70674,0.226296,8.70674,0.50904,8.70674,0.749232,8.70674,1.03205,8.81935,1.14062,9.11246,1.14062,9.22507,1.03205,9.22507,0.749232,9.22507,0.50904"/>
  4974. </g>
  4975. <rect fill="#8c8663" height="1.181" id="rect3213-8_7_" stroke-width="0.999999" width="1.183" x="123.936" y="5.67705"/>
  4976. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4977. <polygon fill="#b8af82" id="polygon3215-9_7_" points="8.92339,0.40968,8.92339,0.325008,8.88321,0.284688,8.88321,0.45"/>
  4978. </g>
  4979. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4980. <polygon fill="#80795b" id="polygon3217-7_7_" points="8.92339,0.325008,8.88321,0.284688,9.0486,0.284688,9.00857,0.325008"/>
  4981. </g>
  4982. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4983. <polygon fill="#5e5b43" id="polygon3219-2_7_" points="9.00857,0.325008,9.0486,0.284688,9.0486,0.45,9.00857,0.40968"/>
  4984. </g>
  4985. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4986. <polygon fill="#9a916c" id="polygon863" points="9.0486,0.45,8.88321,0.45,8.92339,0.40968,9.00857,0.40968"/>
  4987. </g>
  4988. <rect fill="#8c8663" height="1.182" id="rect3223-82_7_" stroke-width="0.999999" width="1.183" x="123.936" y="12.865"/>
  4989. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4990. <polygon fill="#b8af82" id="polygon3225-89_7_" points="8.92339,0.927216,8.92339,0.842472,8.88321,0.802296,8.88321,0.967464"/>
  4991. </g>
  4992. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4993. <polygon fill="#80795b" id="polygon3227-07_7_" points="8.92339,0.842472,8.88321,0.802296,9.0486,0.802296,9.00857,0.842472"/>
  4994. </g>
  4995. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4996. <polygon fill="#5e5b43" id="polygon3229-8_7_" points="9.00857,0.842472,9.0486,0.802296,9.0486,0.967464,9.00857,0.927216"/>
  4997. </g>
  4998. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  4999. <polygon fill="#9a916c" id="dnc24pin_7_" points="8.88321,0.967464,8.92339,0.927216,9.00857,0.927216,9.0486,0.967464"/>
  5000. </g>
  5001. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  5002. <polygon fill="#404040" id="polygon3153-8_6_" points="9.74347,0.226296,9.63079,0.117648,9.33775,0.117648,9.22507,0.226296,9.22507,0.50904,9.22507,0.749232,9.22507,1.03205,9.33775,1.14062,9.63079,1.14062,9.74347,1.03205,9.74347,0.749232,9.74347,0.50904"/>
  5003. </g>
  5004. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  5005. <polygon fill="#404040" id="polygon3159-0_6_" points="9.74347,0.226296,9.63079,0.117648,9.33775,0.117648,9.22507,0.226296,9.22507,0.50904,9.22507,0.749232,9.22507,1.03205,9.33775,1.14062,9.63079,1.14062,9.74347,1.03205,9.74347,0.749232,9.74347,0.50904"/>
  5006. </g>
  5007. <rect fill="#8c8663" height="1.181" id="rect3213-8_6_" stroke-width="0.999999" width="1.182" x="131.136" y="5.67705"/>
  5008. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  5009. <polygon fill="#b8af82" id="polygon3215-9_6_" points="9.44179,0.40968,9.44179,0.325008,9.40161,0.284688,9.40161,0.45"/>
  5010. </g>
  5011. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  5012. <polygon fill="#80795b" id="polygon3217-7_6_" points="9.44179,0.325008,9.40161,0.284688,9.567,0.284688,9.52704,0.325008"/>
  5013. </g>
  5014. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  5015. <polygon fill="#5e5b43" id="polygon3219-2_6_" points="9.52704,0.325008,9.567,0.284688,9.567,0.45,9.52704,0.40968"/>
  5016. </g>
  5017. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  5018. <polygon fill="#9a916c" id="polygon865" points="9.567,0.45,9.40161,0.45,9.44179,0.40968,9.52704,0.40968"/>
  5019. </g>
  5020. <rect fill="#8c8663" height="1.182" id="rect3223-82_6_" stroke-width="0.999999" width="1.182" x="131.136" y="12.865"/>
  5021. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  5022. <polygon fill="#b8af82" id="polygon3225-89_6_" points="9.44179,0.927216,9.44179,0.842472,9.40161,0.802296,9.40161,0.967464"/>
  5023. </g>
  5024. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  5025. <polygon fill="#80795b" id="polygon3227-07_6_" points="9.44179,0.842472,9.40161,0.802296,9.567,0.802296,9.52704,0.842472"/>
  5026. </g>
  5027. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  5028. <polygon fill="#5e5b43" id="polygon3229-8_6_" points="9.52704,0.842472,9.567,0.802296,9.567,0.967464,9.52704,0.927216"/>
  5029. </g>
  5030. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  5031. <polygon fill="#9a916c" id="dnc24pin_6_" points="9.40161,0.967464,9.44179,0.927216,9.52704,0.927216,9.567,0.967464"/>
  5032. </g>
  5033. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  5034. <polygon fill="#404040" id="polygon3153-8_5_" points="10.2619,0.226296,10.1493,0.117648,9.85622,0.117648,9.74361,0.226296,9.74361,0.50904,9.74361,0.749232,9.74361,1.03205,9.85622,1.14062,10.1493,1.14062,10.2619,1.03205,10.2619,0.749232,10.2619,0.50904"/>
  5035. </g>
  5036. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  5037. <polygon fill="#404040" id="polygon3159-0_5_" points="10.2619,0.226296,10.1493,0.117648,9.85622,0.117648,9.74361,0.226296,9.74361,0.50904,9.74361,0.749232,9.74361,1.03205,9.85622,1.14062,10.1493,1.14062,10.2619,1.03205,10.2619,0.749232,10.2619,0.50904"/>
  5038. </g>
  5039. <rect fill="#8c8663" height="1.181" id="rect3213-8_5_" stroke-width="0.999999" width="1.183" x="138.335" y="5.67705"/>
  5040. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  5041. <polygon fill="#b8af82" id="polygon3215-9_5_" points="9.96012,0.40968,9.96012,0.325008,9.92008,0.284688,9.92008,0.45"/>
  5042. </g>
  5043. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  5044. <polygon fill="#80795b" id="polygon3217-7_5_" points="9.96012,0.325008,9.92008,0.284688,10.0855,0.284688,10.0454,0.325008"/>
  5045. </g>
  5046. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  5047. <polygon fill="#5e5b43" id="polygon3219-2_5_" points="10.0454,0.325008,10.0855,0.284688,10.0855,0.45,10.0454,0.40968"/>
  5048. </g>
  5049. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  5050. <polygon fill="#9a916c" id="polygon867" points="10.0855,0.45,9.92008,0.45,9.96012,0.40968,10.0454,0.40968"/>
  5051. </g>
  5052. <rect fill="#8c8663" height="1.182" id="rect3223-82_5_" stroke-width="0.999999" width="1.183" x="138.335" y="12.865"/>
  5053. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  5054. <polygon fill="#b8af82" id="polygon3225-89_5_" points="9.96012,0.927216,9.96012,0.842472,9.92008,0.802296,9.92008,0.967464"/>
  5055. </g>
  5056. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  5057. <polygon fill="#80795b" id="polygon3227-07_5_" points="9.96012,0.842472,9.92008,0.802296,10.0855,0.802296,10.0454,0.842472"/>
  5058. </g>
  5059. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  5060. <polygon fill="#5e5b43" id="polygon3229-8_5_" points="10.0454,0.842472,10.0855,0.802296,10.0855,0.967464,10.0454,0.927216"/>
  5061. </g>
  5062. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  5063. <polygon fill="#9a916c" id="dnc24pin_5_" points="9.92008,0.967464,9.96012,0.927216,10.0454,0.927216,10.0855,0.967464"/>
  5064. </g>
  5065. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  5066. <polygon fill="#404040" id="polygon3153-8_4_" points="10.7803,0.226296,10.6677,0.117648,10.3745,0.117648,10.2619,0.226296,10.2619,0.50904,10.2619,0.749232,10.2619,1.03205,10.3745,1.14062,10.6677,1.14062,10.7803,1.03205,10.7803,0.749232,10.7803,0.50904"/>
  5067. </g>
  5068. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  5069. <polygon fill="#404040" id="polygon3159-0_4_" points="10.7803,0.226296,10.6677,0.117648,10.3745,0.117648,10.2619,0.226296,10.2619,0.50904,10.2619,0.749232,10.2619,1.03205,10.3745,1.14062,10.6677,1.14062,10.7803,1.03205,10.7803,0.749232,10.7803,0.50904"/>
  5070. </g>
  5071. <rect fill="#8c8663" height="1.181" id="rect3213-8_4_" stroke-width="0.999999" width="1.183" x="145.537" y="5.67705"/>
  5072. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  5073. <polygon fill="#b8af82" id="polygon3215-9_4_" points="10.4787,0.40968,10.4787,0.325008,10.4384,0.284688,10.4384,0.45"/>
  5074. </g>
  5075. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  5076. <polygon fill="#80795b" id="polygon3217-7_4_" points="10.4787,0.325008,10.4384,0.284688,10.6038,0.284688,10.5638,0.325008"/>
  5077. </g>
  5078. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  5079. <polygon fill="#5e5b43" id="polygon3219-2_4_" points="10.5638,0.325008,10.6038,0.284688,10.6038,0.45,10.5638,0.40968"/>
  5080. </g>
  5081. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  5082. <polygon fill="#9a916c" id="polygon869" points="10.6038,0.45,10.4384,0.45,10.4787,0.40968,10.5638,0.40968"/>
  5083. </g>
  5084. <rect fill="#8c8663" height="1.182" id="rect3223-82_4_" stroke-width="0.999999" width="1.183" x="145.537" y="12.865"/>
  5085. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  5086. <polygon fill="#b8af82" id="polygon3225-89_4_" points="10.4787,0.927216,10.4787,0.842472,10.4384,0.802296,10.4384,0.967464"/>
  5087. </g>
  5088. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  5089. <polygon fill="#80795b" id="polygon3227-07_4_" points="10.4787,0.842472,10.4384,0.802296,10.6038,0.802296,10.5638,0.842472"/>
  5090. </g>
  5091. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  5092. <polygon fill="#5e5b43" id="polygon3229-8_4_" points="10.5638,0.842472,10.6038,0.802296,10.6038,0.967464,10.5638,0.927216"/>
  5093. </g>
  5094. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  5095. <polygon fill="#9a916c" id="dnc24pin_4_" points="10.4384,0.967464,10.4787,0.927216,10.5638,0.927216,10.6038,0.967464"/>
  5096. </g>
  5097. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  5098. <polygon fill="#404040" id="polygon3153-8_3_" points="11.2987,0.226296,11.1861,0.117648,10.893,0.117648,10.7804,0.226296,10.7804,0.50904,10.7804,0.749232,10.7804,1.03205,10.893,1.14062,11.1861,1.14062,11.2987,1.03205,11.2987,0.749232,11.2987,0.50904"/>
  5099. </g>
  5100. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  5101. <polygon fill="#404040" id="polygon3159-0_3_" points="11.2987,0.226296,11.1861,0.117648,10.893,0.117648,10.7804,0.226296,10.7804,0.50904,10.7804,0.749232,10.7804,1.03205,10.893,1.14062,11.1861,1.14062,11.2987,1.03205,11.2987,0.749232,11.2987,0.50904"/>
  5102. </g>
  5103. <rect fill="#8c8663" height="1.181" id="rect3213-8_3_" stroke-width="0.999999" width="1.182" x="152.736" y="5.67705"/>
  5104. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  5105. <polygon fill="#b8af82" id="polygon3215-9_3_" points="10.997,0.40968,10.997,0.325008,10.9569,0.284688,10.9569,0.45"/>
  5106. </g>
  5107. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  5108. <polygon fill="#80795b" id="polygon3217-7_3_" points="10.997,0.325008,10.9569,0.284688,11.1223,0.284688,11.0822,0.325008"/>
  5109. </g>
  5110. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  5111. <polygon fill="#5e5b43" id="polygon3219-2_3_" points="11.0822,0.325008,11.1223,0.284688,11.1223,0.45,11.0822,0.40968"/>
  5112. </g>
  5113. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  5114. <polygon fill="#9a916c" id="polygon871" points="11.1223,0.45,10.9569,0.45,10.997,0.40968,11.0822,0.40968"/>
  5115. </g>
  5116. <rect fill="#8c8663" height="1.182" id="rect3223-82_3_" stroke-width="0.999999" width="1.182" x="152.736" y="12.865"/>
  5117. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  5118. <polygon fill="#b8af82" id="polygon3225-89_3_" points="10.997,0.927216,10.997,0.842472,10.9569,0.802296,10.9569,0.967464"/>
  5119. </g>
  5120. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  5121. <polygon fill="#80795b" id="polygon3227-07_3_" points="10.997,0.842472,10.9569,0.802296,11.1223,0.802296,11.0822,0.842472"/>
  5122. </g>
  5123. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  5124. <polygon fill="#5e5b43" id="polygon3229-8_3_" points="11.0822,0.842472,11.1223,0.802296,11.1223,0.967464,11.0822,0.927216"/>
  5125. </g>
  5126. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  5127. <polygon fill="#9a916c" id="dnc24pin_3_" points="10.9569,0.967464,10.997,0.927216,11.0822,0.927216,11.1223,0.967464"/>
  5128. </g>
  5129. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  5130. <polygon fill="#404040" id="polygon3153-8_1_" points="11.8171,0.226296,11.7045,0.117648,11.4114,0.117648,11.2987,0.226296,11.2987,0.50904,11.2987,0.749232,11.2987,1.03205,11.4114,1.14062,11.7045,1.14062,11.8171,1.03205,11.8171,0.749232,11.8171,0.50904"/>
  5131. </g>
  5132. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  5133. <polygon fill="#404040" id="polygon3159-0_1_" points="11.8171,0.226296,11.7045,0.117648,11.4114,0.117648,11.2987,0.226296,11.2987,0.50904,11.2987,0.749232,11.2987,1.03205,11.4114,1.14062,11.7045,1.14062,11.8171,1.03205,11.8171,0.749232,11.8171,0.50904"/>
  5134. </g>
  5135. <rect fill="#8c8663" height="1.181" id="rect3213-8_1_" stroke-width="0.999999" width="1.182" x="159.937" y="5.67705"/>
  5136. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  5137. <polygon fill="#b8af82" id="polygon3215-9_1_" points="11.5155,0.40968,11.5155,0.325008,11.4752,0.284688,11.4752,0.45"/>
  5138. </g>
  5139. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  5140. <polygon fill="#80795b" id="polygon3217-7_1_" points="11.5155,0.325008,11.4752,0.284688,11.6406,0.284688,11.6007,0.325008"/>
  5141. </g>
  5142. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  5143. <polygon fill="#5e5b43" id="polygon3219-2_1_" points="11.6007,0.325008,11.6406,0.284688,11.6406,0.45,11.6007,0.40968"/>
  5144. </g>
  5145. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  5146. <polygon fill="#9a916c" id="polygon3219" points="11.6406,0.45,11.4752,0.45,11.5155,0.40968,11.6007,0.40968"/>
  5147. </g>
  5148. <rect fill="#8c8663" height="1.182" id="rect3223-82_1_" stroke-width="0.999999" width="1.182" x="159.937" y="12.865"/>
  5149. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  5150. <polygon fill="#b8af82" id="polygon3225-89_1_" points="11.5155,0.927216,11.5155,0.842472,11.4752,0.802296,11.4752,0.967464"/>
  5151. </g>
  5152. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  5153. <polygon fill="#80795b" id="polygon3227-07_1_" points="11.5155,0.842472,11.4752,0.802296,11.6406,0.802296,11.6007,0.842472"/>
  5154. </g>
  5155. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  5156. <polygon fill="#5e5b43" id="polygon3229-8_1_" points="11.6007,0.842472,11.6406,0.802296,11.6406,0.967464,11.6007,0.927216"/>
  5157. </g>
  5158. <g transform="matrix(13.8889, 0, 0, 13.8889, 0, 1.16698)">
  5159. <polygon fill="#9a916c" id="dnc24pin_1_" points="11.4752,0.967464,11.5155,0.927216,11.6007,0.927216,11.6406,0.967464"/>
  5160. </g>
  5161. <rect fill="#000000" fill-opacity="0" height="4.50556" id="rect6481" stroke="#ffffff" stroke-dasharray="none" stroke-miterlimit="4" stroke-opacity="1" stroke-width="0.431794" width="10.7502" x="53.0639" y="18.8888"/>
  5162. <rect fill="#b3b3b3" height="36.72" id="rect20497" stroke="none" stroke-width="0" width="30.24" x="17.4931" y="19.284"/>
  5163. <rect fill="#b3b3b3" height="44.25" id="rect20499" stroke="none" stroke-width="0" width="44.25" x="58.4524" y="36.8706"/>
  5164. <rect fill="#b3b3b3" height="37.5" id="rect20501" stroke="#4d4d4d" stroke-width="1.44" width="37.5" x="61.3324" y="40.7406"/>
  5165. <rect fill="#1a1a1a" height="43.2" id="rect20509" stroke-width="1.3285" width="28.8" x="115.782" y="36.9343"/>
  5166. <rect fill="#1a1a1a" height="18" id="rect20511" stroke-width="0.677945" width="18" x="152.657" y="39.177"/>
  5167. <g transform="matrix(13.8908, 0, 0, 13.8889, 17.4112, 18.2313)">
  5168. <polygon fill="#404040" id="polygon20521" points="10.893,0.117648,10.7804,0.226296,10.7804,0.50904,10.7804,0.749232,10.7804,1.03205,10.893,1.14062,11.1861,1.14062,11.2987,1.03205,11.2987,0.749232,11.2987,0.50904,11.2987,0.226296,11.1861,0.117648"/>
  5169. </g>
  5170. <g transform="matrix(13.8908, 0, 0, 13.8889, 17.4112, 18.2313)">
  5171. <polygon fill="#404040" id="polygon20523" points="10.893,0.117648,10.7804,0.226296,10.7804,0.50904,10.7804,0.749232,10.7804,1.03205,10.893,1.14062,11.1861,1.14062,11.2987,1.03205,11.2987,0.749232,11.2987,0.50904,11.2987,0.226296,11.1861,0.117648"/>
  5172. </g>
  5173. <rect fill="#8c8663" height="1.181" id="rect20525" stroke-width="1.00007" width="1.18216" x="170.169" y="22.7414"/>
  5174. <g transform="matrix(13.8908, 0, 0, 13.8889, 17.4112, 18.2313)">
  5175. <polygon fill="#b8af82" id="polygon20527" points="10.9569,0.284688,10.9569,0.45,10.997,0.40968,10.997,0.325008"/>
  5176. </g>
  5177. <g transform="matrix(13.8908, 0, 0, 13.8889, 17.4112, 18.2313)">
  5178. <polygon fill="#80795b" id="polygon20529" points="11.1223,0.284688,11.0822,0.325008,10.997,0.325008,10.9569,0.284688"/>
  5179. </g>
  5180. <g transform="matrix(13.8908, 0, 0, 13.8889, 17.4112, 18.2313)">
  5181. <polygon fill="#5e5b43" id="polygon20531" points="11.1223,0.45,11.0822,0.40968,11.0822,0.325008,11.1223,0.284688"/>
  5182. </g>
  5183. <g transform="matrix(13.8908, 0, 0, 13.8889, 17.4112, 18.2313)">
  5184. <polygon fill="#9a916c" id="polygon20533" points="10.9569,0.45,10.997,0.40968,11.0822,0.40968,11.1223,0.45"/>
  5185. </g>
  5186. <rect fill="#8c8663" height="1.182" id="rect20535" stroke-width="1.00007" width="1.18216" x="170.169" y="29.9293"/>
  5187. <g transform="matrix(13.8908, 0, 0, 13.8889, 17.4112, 18.2313)">
  5188. <polygon fill="#b8af82" id="polygon20537" points="10.9569,0.802296,10.9569,0.967464,10.997,0.927216,10.997,0.842472"/>
  5189. </g>
  5190. <g transform="matrix(13.8908, 0, 0, 13.8889, 17.4112, 18.2313)">
  5191. <polygon fill="#80795b" id="polygon20539" points="11.1223,0.802296,11.0822,0.842472,10.997,0.842472,10.9569,0.802296"/>
  5192. </g>
  5193. <g transform="matrix(13.8908, 0, 0, 13.8889, 17.4112, 18.2313)">
  5194. <polygon fill="#5e5b43" id="polygon20541" points="11.1223,0.967464,11.0822,0.927216,11.0822,0.842472,11.1223,0.802296"/>
  5195. </g>
  5196. <g transform="matrix(13.8908, 0, 0, 13.8889, 17.4112, 18.2313)">
  5197. <polygon fill="#9a916c" id="polygon20543" points="11.0822,0.927216,11.1223,0.967464,10.9569,0.967464,10.997,0.927216"/>
  5198. </g>
  5199. <g transform="matrix(13.8908, 0, 0, 13.8889, 17.4112, 18.2313)">
  5200. <polygon fill="#404040" id="polygon20545" points="11.4114,0.117648,11.2987,0.226296,11.2987,0.50904,11.2987,0.749232,11.2987,1.03205,11.4114,1.14062,11.7045,1.14062,11.8171,1.03205,11.8171,0.749232,11.8171,0.50904,11.8171,0.226296,11.7045,0.117648"/>
  5201. </g>
  5202. <g transform="matrix(13.8908, 0, 0, 13.8889, 17.4112, 18.2313)">
  5203. <polygon fill="#404040" id="polygon20547" points="11.4114,0.117648,11.2987,0.226296,11.2987,0.50904,11.2987,0.749232,11.2987,1.03205,11.4114,1.14062,11.7045,1.14062,11.8171,1.03205,11.8171,0.749232,11.8171,0.50904,11.8171,0.226296,11.7045,0.117648"/>
  5204. </g>
  5205. <rect fill="#8c8663" height="1.181" id="rect20549" stroke-width="1.00007" width="1.18216" x="177.371" y="22.7414"/>
  5206. <g transform="matrix(13.8908, 0, 0, 13.8889, 17.4112, 18.2313)">
  5207. <polygon fill="#b8af82" id="polygon20551" points="11.4752,0.284688,11.4752,0.45,11.5155,0.40968,11.5155,0.325008"/>
  5208. </g>
  5209. <g transform="matrix(13.8908, 0, 0, 13.8889, 17.4112, 18.2313)">
  5210. <polygon fill="#80795b" id="polygon20553" points="11.6406,0.284688,11.6007,0.325008,11.5155,0.325008,11.4752,0.284688"/>
  5211. </g>
  5212. <g transform="matrix(13.8908, 0, 0, 13.8889, 17.4112, 18.2313)">
  5213. <polygon fill="#5e5b43" id="polygon20555" points="11.6406,0.45,11.6007,0.40968,11.6007,0.325008,11.6406,0.284688"/>
  5214. </g>
  5215. <g transform="matrix(13.8908, 0, 0, 13.8889, 17.4112, 18.2313)">
  5216. <polygon fill="#9a916c" id="polygon20557" points="11.4752,0.45,11.5155,0.40968,11.6007,0.40968,11.6406,0.45"/>
  5217. </g>
  5218. <rect fill="#8c8663" height="1.182" id="rect20559" stroke-width="1.00007" width="1.18216" x="177.371" y="29.9293"/>
  5219. <g transform="matrix(13.8908, 0, 0, 13.8889, 17.4112, 18.2313)">
  5220. <polygon fill="#b8af82" id="polygon20561" points="11.4752,0.802296,11.4752,0.967464,11.5155,0.927216,11.5155,0.842472"/>
  5221. </g>
  5222. <g transform="matrix(13.8908, 0, 0, 13.8889, 17.4112, 18.2313)">
  5223. <polygon fill="#80795b" id="polygon20563" points="11.6406,0.802296,11.6007,0.842472,11.5155,0.842472,11.4752,0.802296"/>
  5224. </g>
  5225. <g transform="matrix(13.8908, 0, 0, 13.8889, 17.4112, 18.2313)">
  5226. <polygon fill="#5e5b43" id="polygon20565" points="11.6406,0.967464,11.6007,0.927216,11.6007,0.842472,11.6406,0.802296"/>
  5227. </g>
  5228. <g transform="matrix(13.8908, 0, 0, 13.8889, 17.4112, 18.2313)">
  5229. <polygon fill="#9a916c" id="polygon20567" points="11.6007,0.927216,11.6406,0.967464,11.4752,0.967464,11.5155,0.927216"/>
  5230. </g>
  5231. <rect fill="#1a1a1a" height="14.4" id="rect20599" stroke-width="0.677945" width="14.4" x="20.52" y="121.722"/>
  5232. <g transform="matrix(0,-1.00554,0.99449052,0,0,0)">
  5233. <text fill="#ffffff" font-family="OCRA" font-size="2.50612" id="text20601" stroke-width="0.994489" x="-29.7739" y="162.702">PoE</text>
  5234. </g>
  5235. <g transform="scale(1.00554,0.99449052)">
  5236. <text fill="#ffffff" font-family="OCRA" font-size="2.50612" id="text20603" stroke-width="0.994489" x="179.155" y="19.9682">J14</text>
  5237. </g>
  5238. <g transform="scale(1.0000355,0.99996451)">
  5239. <text fill="#ffffff" font-family="OCRA" font-size="2.52009" id="text20613" stroke-width="0.999999" x="23.9081" y="94.6417">RUN</text>
  5240. </g>
  5241. <text fill="#ffffff" font-family="OCRA" font-size="2.52" id="text20615" stroke-width="0.999999" x="32.8919" y="94.3838">GLOBAL_EN</text>
  5242. <line fill="none" id="line1" stroke="#ffffff" stroke-linecap="round" stroke-width="0.216" x1="26.5372" x2="26.5372" y1="95.6003" y2="97.1056"/>
  5243. <rect fill="none" height="7.03356" id="rect20623" stroke="#ffffff" stroke-width="0.216" width="21.9983" x="23.0686" y="97.0892"/>
  5244. <line fill="none" id="line20625" stroke="#ffffff" stroke-linecap="round" stroke-width="0.216" x1="41.0871" x2="41.0871" y1="95.6003" y2="97.1056"/>
  5245. <g transform="scale(1.0000355,0.99996451)">
  5246. <text fill="#ffffff" font-family="OCRA" font-size="2.52009" id="text20627" stroke-width="0.999999" x="47.1469" y="101.561">J2</text>
  5247. </g>
  5248. <circle cx="23.715" cy="13.5218" fill="none" id="connector0pin" r="2.088" stroke-width="0.72"/>
  5249. <circle cx="23.715" cy="6.32288" fill="none" id="connector1pin" r="2.088" stroke-width="0.72"/>
  5250. <circle cx="30.915" cy="13.5218" fill="none" id="connector2pin" r="2.088" stroke-width="0.72"/>
  5251. <circle cx="30.915" cy="6.32288" fill="none" id="connector3pin" r="2.088" stroke-width="0.72"/>
  5252. <circle cx="38.115" cy="13.5218" fill="none" id="connector4pin" r="2.088" stroke-width="0.72"/>
  5253. <circle cx="38.115" cy="6.32288" fill="none" id="connector5pin" r="2.088" stroke-width="0.72"/>
  5254. <circle cx="45.3149" cy="13.5218" fill="none" id="connector6pin" r="2.088" stroke-width="0.72"/>
  5255. <circle cx="45.3149" cy="6.32288" fill="none" id="connector7pin" r="2.088" stroke-width="0.72"/>
  5256. <circle cx="52.5149" cy="13.5218" fill="none" id="connector8pin" r="2.088" stroke-width="0.72"/>
  5257. <circle cx="52.5149" cy="6.32288" fill="none" id="connector9pin" r="2.088" stroke-width="0.72"/>
  5258. <circle cx="59.7149" cy="13.5218" fill="none" id="connector10pin" r="2.088" stroke-width="0.72"/>
  5259. <circle cx="59.7149" cy="6.32288" fill="none" id="connector11pin" r="2.088" stroke-width="0.72"/>
  5260. <circle cx="66.9149" cy="13.5218" fill="none" id="connector12pin" r="2.088" stroke-width="0.72"/>
  5261. <circle cx="66.9149" cy="6.32288" fill="none" id="connector13pin" r="2.088" stroke-width="0.72"/>
  5262. <circle cx="74.1149" cy="13.5218" fill="none" id="connector14pin" r="2.088" stroke-width="0.72"/>
  5263. <circle cx="74.1149" cy="6.32288" fill="none" id="connector15pin" r="2.088" stroke-width="0.72"/>
  5264. <circle cx="81.3159" cy="13.5218" fill="none" id="connector16pin" r="2.088" stroke-width="0.72"/>
  5265. <circle cx="81.3159" cy="6.32288" fill="none" id="connector17pin" r="2.088" stroke-width="0.72"/>
  5266. <circle cx="88.5149" cy="13.5218" fill="none" id="connector18pin" r="2.088" stroke-width="0.72"/>
  5267. <circle cx="88.5149" cy="6.32288" fill="none" id="connector19pin" r="2.088" stroke-width="0.72"/>
  5268. <circle cx="95.7149" cy="13.5218" fill="none" id="connector20pin" r="2.088" stroke-width="7.272"/>
  5269. <circle cx="95.7149" cy="6.32288" fill="none" id="connector21pin" r="2.088" stroke-width="0.72"/>
  5270. <circle cx="102.915" cy="13.5218" fill="none" id="connector22pin" r="2.088" stroke-width="0.72"/>
  5271. <circle cx="102.915" cy="6.32288" fill="none" id="connector23pin" r="2.088" stroke-width="0.72"/>
  5272. <circle cx="110.115" cy="13.5218" fill="none" id="connector24pin" r="2.088" stroke-width="0.72"/>
  5273. <circle cx="110.115" cy="6.32288" fill="none" id="connector25pin" r="2.088" stroke-width="0.72"/>
  5274. <circle cx="117.315" cy="13.5218" fill="none" id="connector26pin" r="2.088" stroke-width="0.72"/>
  5275. <ellipse cx="117.315" cy="6.32288" fill="none" id="connector27pin" rx="2.088" ry="2.088" stroke-width="0.72"/>
  5276. <circle cx="124.516" cy="13.5218" fill="none" id="connector28pin" r="2.088" stroke-width="0.72"/>
  5277. <circle cx="124.516" cy="6.32288" fill="none" id="connector29pin" r="2.088" stroke-width="0.72"/>
  5278. <circle cx="131.714" cy="13.5218" fill="none" id="connector30pin" r="2.088" stroke-width="0.72"/>
  5279. <circle cx="131.714" cy="6.32288" fill="none" id="connector31pin" r="2.088" stroke-width="0.72"/>
  5280. <circle cx="138.916" cy="13.5218" fill="none" id="connector32pin" r="2.088" stroke-width="0.72"/>
  5281. <circle cx="138.916" cy="6.32288" fill="none" id="connector33pin" r="2.088" stroke-width="0.72"/>
  5282. <circle cx="146.115" cy="13.5218" fill="none" id="connector34pin" r="2.088" stroke-width="0.72"/>
  5283. <circle cx="146.115" cy="6.32288" fill="none" id="connector35pin" r="2.088" stroke-width="0.72"/>
  5284. <circle cx="153.314" cy="13.5218" fill="none" id="connector36pin" r="2.088" stroke-width="0.72"/>
  5285. <circle cx="153.314" cy="6.32288" fill="none" id="connector37pin" r="2.088" stroke-width="0.72"/>
  5286. <circle cx="160.515" cy="13.5218" fill="none" id="connector38pin" r="2.088" stroke-width="0.72"/>
  5287. <circle cx="160.515" cy="6.32288" fill="none" id="connector39pin" r="2.088" stroke-width="0.72"/>
  5288. <ellipse cx="177.888" cy="30.5862" fill="none" id="connector40pin" rx="2.088" ry="2.088" stroke-width="0.72"/>
  5289. <ellipse cx="170.688" cy="30.6173" fill="none" id="connector41pin" rx="2.088" ry="2.088" stroke-width="0.72"/>
  5290. <ellipse cx="177.888" cy="23.3872" fill="none" id="connector42pin" rx="2.088" ry="2.088" stroke-width="0.72"/>
  5291. <ellipse cx="170.688" cy="23.4173" fill="none" id="connector43pin" rx="2.088" ry="2.088" stroke-width="0.72"/>
  5292. <ellipse cx="26.7836" cy="100.632" fill="#ffffff" id="connector44pin" rx="2.16" ry="2.16" stroke="#d4aa00" stroke-width="0.75"/>
  5293. <ellipse cx="33.9539" cy="100.632" fill="#ffffff" id="connector45pin" rx="2.16" ry="2.16" stroke="#d4aa00" stroke-width="0.75"/>
  5294. <ellipse cx="41.1539" cy="100.632" fill="#ffffff" id="connector46pin" rx="2.16" ry="2.16" stroke="#d4aa00" stroke-width="0.75"/>
  5295. <rect fill="#666666" height="1.494" id="rect1512-8" stroke-width="1" width="0.552" x="73.1483" y="139.1"/>
  5296. <rect fill="#666666" height="1.494" id="rect1514-0" stroke-width="1" width="0.553" x="72.0663" y="139.1"/>
  5297. <rect fill="#666666" height="1.494" id="rect1516-43" stroke-width="1" width="0.553" x="74.2303" y="139.1"/>
  5298. <rect fill="#666666" height="1.494" id="rect1518-5" stroke-width="1" width="0.552" x="75.3123" y="139.1"/>
  5299. <rect fill="#666666" height="1.494" id="rect1520-7" stroke-width="1" width="0.552" x="76.3963" y="139.1"/>
  5300. <rect fill="#666666" height="1.494" id="rect1524-6" stroke-width="1" width="0.553" x="78.5153" y="139.1"/>
  5301. <rect fill="#666666" height="1.494" id="rect1526-5" stroke-width="1" width="0.553" x="77.4334" y="139.1"/>
  5302. <rect fill="#666666" height="1.494" id="rect1528-09" stroke-width="1" width="0.553" x="79.5973" y="139.1"/>
  5303. <rect fill="#666666" height="1.494" id="rect1530-2" stroke-width="1" width="0.553" x="80.6793" y="139.1"/>
  5304. <rect fill="#666666" height="1.494" id="rect1532-8" stroke-width="1" width="0.551" x="81.7653" y="139.1"/>
  5305. <g transform="matrix(13.8889, 0, 0, 13.8889, 103.426, 184.976)">
  5306. <polygon fill="#999999" id="polygon1538-4" points="-1.38182,-1.73686,-1.38182,-3.2675,-2.41913,-3.2675,-2.41913,-1.73686"/>
  5307. </g>
  5308. <path d="m82.8727,148.522c0.151006,0,0.271001,0.129002,0.256003,0.281002l-1.1,10.492c-0.0209952,0.151999,-0.151999,0.279,-0.312998,0.279l-1.742,0c-0.153,0,-0.297,-0.127001,-0.312998,-0.279l-1.10101,-10.492c-0.0209952,-0.151999,0.10301,-0.279,0.254009,-0.279l0.258998,0c0.153,0,0.295006,0.127001,0.313005,0.279l0.826999,9.54101c0.0149976,0.148003,0.146002,0.275004,0.311997,0.275004l0.646005,0c0.149998,0,0.298994,-0.127001,0.313999,-0.275004l0.822996,-9.54101c0.0210024,-0.151999,0.146002,-0.279,0.312998,-0.279z" fill="#333333" id="path1540-5" stroke-width="1"/>
  5309. <g transform="matrix(13.8889, 0, 0, 13.8889, 103.426, 184.976)">
  5310. <polygon fill="none" id="polygon1542-8" points="-1.66954,-1.89756,-1.58213,-1.89756,-1.57673,-1.95732,-1.67422,-1.95732"/>
  5311. </g>
  5312. <g transform="matrix(13.8889, 0, 0, 13.8889, 103.426, 184.976)">
  5313. <polygon fill="#939393" id="polygon1544-8" points="-1.57673,-1.95732,-1.58213,-1.89756,-1.66954,-1.89756,-1.67422,-1.95732"/>
  5314. </g>
  5315. <g transform="matrix(13.8889, 0, 0, 13.8889, 103.426, 184.976)">
  5316. <polygon fill="#545454" id="polygon1546-8" points="-1.57673,-1.95732,-1.5745,-1.98223,-1.67702,-1.98223,-1.67422,-1.95732"/>
  5317. </g>
  5318. <path d="m75.7325,148.522c0.15601,0,0.271008,0.129002,0.257011,0.281002l-1.09899,10.488c-0.0169992,0.154001,-0.150998,0.281002,-0.311997,0.281002l-1.743,0c-0.154001,0,-0.297,-0.127001,-0.312998,-0.281002l-1.1,-10.488c-0.0190008,-0.151999,0.102002,-0.281002,0.254002,-0.281002l0.255996,0c0.152004,0,0.296998,0.129002,0.312003,0.281002l0.830001,9.54101c0.0109944,0.148003,0.148997,0.275004,0.307994,0.275004l0.649001,0c0.151006,0,0.295006,-0.127001,0.310003,-0.275004l0.829001,-9.54101c0.012996,-0.151999,0.150984,-0.281002,0.309974,-0.281002z" fill="#333333" id="path1550-7" stroke-width="1"/>
  5319. <g transform="matrix(13.8889, 0, 0, 13.8889, 103.426, 184.976)">
  5320. <polygon fill="none" id="polygon1552-4" points="-2.18398,-1.89756,-2.09578,-1.89756,-2.09102,-1.95732,-2.18844,-1.95732"/>
  5321. </g>
  5322. <g transform="matrix(13.8889, 0, 0, 13.8889, 103.426, 184.976)">
  5323. <polygon fill="#939393" id="polygon1554-2" points="-2.09102,-1.95732,-2.09578,-1.89756,-2.18398,-1.89756,-2.18844,-1.95732"/>
  5324. </g>
  5325. <g transform="matrix(13.8889, 0, 0, 13.8889, 103.426, 184.976)">
  5326. <polygon fill="#545454" id="polygon1556-9" points="-2.09102,-1.95732,-2.0885,-1.98223,-2.19118,-1.98223,-2.18844,-1.95732"/>
  5327. </g>
  5328. <path d="m70.2533,160.359c-0.185998,0,-0.337003,-0.208994,-0.337003,-0.466999l0,-19.764c0,-0.256997,0.151006,-0.465998,0.337003,-0.465998,0.185998,0,0.337997,0.209002,0.337997,0.465998l0,19.764c0,0.259999,-0.151999,0.466999,-0.337997,0.466999z" fill="#ffffff" id="path1560-1" stroke-width="1"/>
  5329. <path d="m83.9801,160.579c-0.0919944,0,-0.167998,-0.103997,-0.167998,-0.231998l0,-20.211c0,-0.128995,0.0760032,-0.234,0.167998,-0.234,0.0960048,0,0.170006,0.104004,0.170006,0.234l0,20.211c0,0.127001,-0.077004,0.231998,-0.170006,0.231998z" fill="#ffffff" id="path1564-3" stroke-width="1"/>
  5330. <path d="m75.4625,144.912l-2.63798,0c-0.127994,0,-0.231998,-0.104004,-0.231998,-0.229003l0,-3.031c0,-0.124999,0.104004,-0.229003,0.231998,-0.229003l2.63898,0" fill="none" id="path1570-9" stroke="#333333" stroke-linecap="round" stroke-miterlimit="10" stroke-width="0.75"/>
  5331. <path d="m79.0682,141.425l2.641,0c0.127001,0,0.229997,0.104004,0.229997,0.229003l0,3.03c0,0.124999,-0.103997,0.229003,-0.229997,0.229003l-2.641,0" fill="none" id="path1572-7" stroke="#333333" stroke-linecap="round" stroke-miterlimit="10" stroke-width="0.75"/>
  5332. <rect fill="#666666" height="1.494" id="rect1512" stroke-width="1" width="0.552" x="115.435" y="138.359"/>
  5333. <rect fill="#666666" height="1.494" id="rect1514" stroke-width="1" width="0.553" x="114.353" y="138.359"/>
  5334. <rect fill="#666666" height="1.494" id="rect1516" stroke-width="1" width="0.553" x="116.517" y="138.359"/>
  5335. <rect fill="#666666" height="1.494" id="rect1518" stroke-width="1" width="0.552" x="117.599" y="138.359"/>
  5336. <rect fill="#666666" height="1.494" id="rect1520" stroke-width="1" width="0.552" x="118.683" y="138.359"/>
  5337. <rect fill="#666666" height="1.494" id="rect1524" stroke-width="1" width="0.553" x="120.802" y="138.359"/>
  5338. <rect fill="#666666" height="1.494" id="rect1526" stroke-width="1" width="0.553" x="119.72" y="138.359"/>
  5339. <rect fill="#666666" height="1.494" id="rect1528" stroke-width="1" width="0.553" x="121.884" y="138.359"/>
  5340. <rect fill="#666666" height="1.494" id="rect1530" stroke-width="1" width="0.553" x="122.966" y="138.359"/>
  5341. <rect fill="#666666" height="1.494" id="rect1532" stroke-width="1" width="0.551" x="124.052" y="138.359"/>
  5342. <g transform="matrix(13.8889, 0, 0, 13.8889, 145.713, 184.235)">
  5343. <polygon fill="#999999" id="polygon1538" points="-1.38182,-1.73686,-1.38182,-3.2675,-2.41913,-3.2675,-2.41913,-1.73686"/>
  5344. </g>
  5345. <path d="m125.159,147.78c0.150998,0,0.271001,0.129002,0.256003,0.281002l-1.1,10.492c-0.0210024,0.152006,-0.151999,0.279,-0.312998,0.279l-1.742,0c-0.153,0,-0.297,-0.126994,-0.312998,-0.279l-1.101,-10.492c-0.0210024,-0.151999,0.103003,-0.279,0.254002,-0.279l0.258998,0c0.153,0,0.294998,0.127001,0.312998,0.279l0.827006,9.54101c0.0149976,0.148003,0.145994,0.275004,0.311997,0.275004l0.645998,0c0.150005,0,0.299002,-0.127001,0.313999,-0.275004l0.823003,-9.54101c0.0210024,-0.151999,0.146002,-0.279,0.312998,-0.279z" fill="#333333" id="path1540" stroke-width="1"/>
  5346. <g transform="matrix(13.8889, 0, 0, 13.8889, 145.713, 184.235)">
  5347. <polygon fill="none" id="polygon1542" points="-1.66954,-1.89756,-1.58213,-1.89756,-1.57673,-1.95732,-1.67422,-1.95732"/>
  5348. </g>
  5349. <g transform="matrix(13.8889, 0, 0, 13.8889, 145.713, 184.235)">
  5350. <polygon fill="#939393" id="polygon1544" points="-1.57673,-1.95732,-1.58213,-1.89756,-1.66954,-1.89756,-1.67422,-1.95732"/>
  5351. </g>
  5352. <g transform="matrix(13.8889, 0, 0, 13.8889, 145.713, 184.235)">
  5353. <polygon fill="#545454" id="polygon1546" points="-1.57673,-1.95732,-1.5745,-1.98223,-1.67702,-1.98223,-1.67422,-1.95732"/>
  5354. </g>
  5355. <path d="m118.019,147.78c0.156002,0,0.271001,0.129002,0.257004,0.281002l-1.099,10.488c-0.0170064,0.154001,-0.151006,0.281002,-0.312005,0.281002l-1.743,0c-0.154001,0,-0.297,-0.127001,-0.312998,-0.281002l-1.1,-10.488c-0.0190008,-0.151999,0.101995,-0.281002,0.254002,-0.281002l0.255996,0c0.151999,0,0.297,0.129002,0.311997,0.281002l0.830001,9.54101c0.0110016,0.148003,0.149004,0.275004,0.308002,0.275004l0.649001,0c0.150998,0,0.294998,-0.127001,0.310003,-0.275004l0.828993,-9.54101c0.0130032,-0.151999,0.151006,-0.281002,0.310003,-0.281002z" fill="#333333" id="path1550" stroke-width="1"/>
  5356. <g transform="matrix(13.8889, 0, 0, 13.8889, 145.713, 184.235)">
  5357. <polygon fill="none" id="polygon1552" points="-2.18398,-1.89756,-2.09578,-1.89756,-2.09102,-1.95732,-2.18844,-1.95732"/>
  5358. </g>
  5359. <g transform="matrix(13.8889, 0, 0, 13.8889, 145.713, 184.235)">
  5360. <polygon fill="#939393" id="polygon1554" points="-2.09102,-1.95732,-2.09578,-1.89756,-2.18398,-1.89756,-2.18844,-1.95732"/>
  5361. </g>
  5362. <g transform="matrix(13.8889, 0, 0, 13.8889, 145.713, 184.235)">
  5363. <polygon fill="#545454" id="polygon1556" points="-2.09102,-1.95732,-2.0885,-1.98223,-2.19118,-1.98223,-2.18844,-1.95732"/>
  5364. </g>
  5365. <path d="m112.54,159.617c-0.186005,0,-0.337003,-0.209002,-0.337003,-0.466999l0,-19.764c0,-0.257004,0.150998,-0.465998,0.337003,-0.465998,0.185998,0,0.337997,0.208994,0.337997,0.465998l0,19.764c0,0.259999,-0.151999,0.466999,-0.337997,0.466999z" fill="#ffffff" id="path1560" stroke-width="1"/>
  5366. <path d="m126.267,159.836c-0.0920016,0,-0.167998,-0.104004,-0.167998,-0.231998l0,-20.211c0,-0.128995,0.075996,-0.234,0.167998,-0.234,0.0959976,0,0.169999,0.104004,0.169999,0.234l0,20.211c0,0.127001,-0.0769968,0.231998,-0.169999,0.231998z" fill="#ffffff" id="path1564" stroke-width="1"/>
  5367. <path d="m117.749,144.171l-2.638,0c-0.128002,0,-0.231998,-0.104004,-0.231998,-0.229003l0,-3.031c0,-0.124999,0.103997,-0.229003,0.231998,-0.229003l2.639,0" fill="none" id="path1570" stroke="#333333" stroke-linecap="round" stroke-miterlimit="10" stroke-width="0.75"/>
  5368. <path d="m121.355,140.683l2.641,0c0.127001,0,0.230004,0.103997,0.230004,0.229003l0,3.03c0,0.124999,-0.104004,0.229003,-0.230004,0.229003l-2.641,0" fill="none" id="path1572" stroke="#333333" stroke-linecap="round" stroke-miterlimit="10" stroke-width="0.75"/>
  5369. <rect fill="#ffffff" fill-opacity="0.1" height="0.537152" id="_x30_.1.0.226.0.4" stroke-width="1" width="3.408" x="136.347" y="142.569"/>
  5370. <rect fill="#ffffff" fill-opacity="0.1" height="0.349709" id="_x30_.1.0.226.0.8" stroke-width="1" width="2.578" x="129.131" y="149.077"/>
  5371. <g transform="scale(-1)">
  5372. <rect fill="#999999" height="1.80356" id="_x30_.1.0.226.0.0.0.0.0" stroke-width="1" width="3.791" x="-131.951" y="-108.995"/>
  5373. </g>
  5374. <g transform="scale(-1)">
  5375. <rect fill="#999999" height="1.80356" id="_x30_.1.0.226.0.0.0.1.0" stroke-width="1" width="3.791" x="-131.951" y="-111.774"/>
  5376. </g>
  5377. <g transform="scale(-1)">
  5378. <rect fill="#999999" height="1.80356" id="_x30_.1.0.226.0.0.0.2.0" stroke-width="1" width="3.791" x="-131.951" y="-114.556"/>
  5379. </g>
  5380. <g transform="scale(-1)">
  5381. <rect fill="#999999" height="1.80356" id="_x30_.1.0.226.0.0.0.3.0" stroke-width="1" width="3.791" x="-131.951" y="-117.335"/>
  5382. </g>
  5383. <g transform="scale(-1)">
  5384. <rect fill="#999999" height="1.80356" id="_x30_.1.0.226.0.0.0.4.0" stroke-width="1" width="3.791" x="-131.951" y="-120.114"/>
  5385. </g>
  5386. <g transform="scale(-1)">
  5387. <rect fill="#999999" height="1.80543" id="_x30_.1.0.226.0.0.0.5.0" stroke-width="1" width="3.791" x="-131.951" y="-122.897"/>
  5388. </g>
  5389. <g transform="scale(-1)">
  5390. <rect fill="#999999" height="1.80729" id="_x30_.1.0.226.0.0.0.6.0" stroke-width="1" width="3.791" x="-131.951" y="-125.676"/>
  5391. </g>
  5392. <g transform="scale(-1)">
  5393. <rect fill="#999999" height="1.80356" id="_x30_.1.0.226.0.0.0.7.0" stroke-width="1" width="3.791" x="-131.951" y="-128.458"/>
  5394. </g>
  5395. <g transform="scale(-1)">
  5396. <rect fill="#999999" height="1.80729" id="_x30_.1.0.226.0.0.0.8.0" stroke-width="1" width="3.791" x="-131.951" y="-131.237"/>
  5397. </g>
  5398. <g transform="scale(-1)">
  5399. <rect fill="#999999" height="1.80356" id="_x30_.1.0.226.0.0.0.9.0" stroke-width="1" width="3.791" x="-131.951" y="-134.019"/>
  5400. </g>
  5401. <g transform="scale(-1)">
  5402. <rect fill="#999999" height="1.80356" id="_x30_.1.0.226.0.0.0.10.0" stroke-width="1" width="3.791" x="-131.951" y="-136.798"/>
  5403. </g>
  5404. <g transform="scale(-1)">
  5405. <rect fill="#999999" height="1.80543" id="_x30_.1.0.226.0.0.0.11.0" stroke-width="1" width="3.791" x="-131.951" y="-139.58"/>
  5406. </g>
  5407. <g transform="scale(-1)">
  5408. <rect fill="#999999" height="1.80543" id="_x30_.1.0.226.0.0.0.12.0" stroke-width="1" width="3.791" x="-131.951" y="-142.361"/>
  5409. </g>
  5410. <g transform="scale(-1)">
  5411. <rect fill="#999999" height="1.80543" id="_x30_.1.0.226.0.0.0.13.0" stroke-width="1" width="3.791" x="-131.951" y="-145.14"/>
  5412. </g>
  5413. <g transform="scale(-1)">
  5414. <rect fill="#999999" height="1.80356" id="_x30_.1.0.226.0.0.0.14.0" stroke-width="1" width="3.791" x="-131.951" y="-147.921"/>
  5415. </g>
  5416. <g transform="scale(-1)">
  5417. <rect fill="#999999" height="1.80356" id="_x30_.1.0.226.0.0.1.0.0" stroke-width="1" width="3.791" x="-141.868" y="-108.995"/>
  5418. </g>
  5419. <g transform="scale(-1)">
  5420. <rect fill="#999999" height="1.80356" id="_x30_.1.0.226.0.0.1.1.0" stroke-width="1" width="3.791" x="-141.868" y="-111.774"/>
  5421. </g>
  5422. <g transform="scale(-1)">
  5423. <rect fill="#999999" height="1.80356" id="_x30_.1.0.226.0.0.1.2.0" stroke-width="1" width="3.791" x="-141.868" y="-114.556"/>
  5424. </g>
  5425. <g transform="scale(-1)">
  5426. <rect fill="#999999" height="1.80356" id="_x30_.1.0.226.0.0.1.3.0" stroke-width="1" width="3.791" x="-141.868" y="-117.335"/>
  5427. </g>
  5428. <g transform="scale(-1)">
  5429. <rect fill="#999999" height="1.80356" id="_x30_.1.0.226.0.0.1.4.0" stroke-width="1" width="3.791" x="-141.868" y="-120.114"/>
  5430. </g>
  5431. <g transform="scale(-1)">
  5432. <rect fill="#999999" height="1.80543" id="_x30_.1.0.226.0.0.1.5.0" stroke-width="1" width="3.791" x="-141.868" y="-122.897"/>
  5433. </g>
  5434. <g transform="scale(-1)">
  5435. <rect fill="#999999" height="1.80729" id="_x30_.1.0.226.0.0.1.6.0" stroke-width="1" width="3.791" x="-141.868" y="-125.676"/>
  5436. </g>
  5437. <g transform="scale(-1)">
  5438. <rect fill="#999999" height="1.80356" id="_x30_.1.0.226.0.0.1.7.0" stroke-width="1" width="3.791" x="-141.868" y="-128.458"/>
  5439. </g>
  5440. <g transform="scale(-1)">
  5441. <rect fill="#999999" height="1.80729" id="_x30_.1.0.226.0.0.1.8.0" stroke-width="1" width="3.791" x="-141.868" y="-131.237"/>
  5442. </g>
  5443. <g transform="scale(-1)">
  5444. <rect fill="#999999" height="1.80356" id="_x30_.1.0.226.0.0.1.9.0" stroke-width="1" width="3.791" x="-141.868" y="-134.019"/>
  5445. </g>
  5446. <g transform="scale(-1)">
  5447. <rect fill="#999999" height="1.80356" id="_x30_.1.0.226.0.0.1.10.0" stroke-width="1" width="3.791" x="-141.868" y="-136.798"/>
  5448. </g>
  5449. <g transform="scale(-1)">
  5450. <rect fill="#999999" height="1.80543" id="_x30_.1.0.226.0.0.1.11.0" stroke-width="1" width="3.791" x="-141.868" y="-139.58"/>
  5451. </g>
  5452. <g transform="scale(-1)">
  5453. <rect fill="#999999" height="1.80543" id="_x30_.1.0.226.0.0.1.12.0" stroke-width="1" width="3.791" x="-141.868" y="-142.361"/>
  5454. </g>
  5455. <g transform="scale(-1)">
  5456. <rect fill="#999999" height="1.80543" id="_x30_.1.0.226.0.0.1.13.0" stroke-width="1" width="3.791" x="-141.868" y="-145.14"/>
  5457. </g>
  5458. <g transform="scale(-1)">
  5459. <rect fill="#999999" height="1.80356" id="_x30_.1.0.226.0.0.1.14.0" stroke-width="1" width="3.791" x="-141.868" y="-147.921"/>
  5460. </g>
  5461. <g transform="scale(-1)">
  5462. <rect fill-opacity="0.2" height="0.225679" id="_x30_.1.0.226.0.0.4.0.0" stroke-width="1" width="3.791" x="-131.951" y="-107.417"/>
  5463. </g>
  5464. <g transform="scale(-1)">
  5465. <rect fill-opacity="0.2" height="0.226611" id="_x30_.1.0.226.0.0.4.1.0" stroke-width="1" width="3.791" x="-131.951" y="-110.198"/>
  5466. </g>
  5467. <g transform="scale(-1)">
  5468. <rect fill-opacity="0.2" height="0.223814" id="_x30_.1.0.226.0.0.4.2.0" stroke-width="1" width="3.791" x="-131.951" y="-112.976"/>
  5469. </g>
  5470. <g transform="scale(-1)">
  5471. <rect fill-opacity="0.2" height="0.229409" id="_x30_.1.0.226.0.0.4.3.0" stroke-width="1" width="3.791" x="-131.951" y="-115.761"/>
  5472. </g>
  5473. <g transform="scale(-1)">
  5474. <rect fill-opacity="0.2" height="0.227544" id="_x30_.1.0.226.0.0.4.4.0" stroke-width="1" width="3.791" x="-131.951" y="-118.538"/>
  5475. </g>
  5476. <g transform="scale(-1)">
  5477. <rect fill-opacity="0.2" height="0.227544" id="_x30_.1.0.226.0.0.4.5.0" stroke-width="1" width="3.791" x="-131.951" y="-121.32"/>
  5478. </g>
  5479. <g transform="scale(-1)">
  5480. <rect fill-opacity="0.2" height="0.225679" id="_x30_.1.0.226.0.0.4.6.0" stroke-width="1" width="3.791" x="-131.951" y="-124.099"/>
  5481. </g>
  5482. <g transform="scale(-1)">
  5483. <rect fill-opacity="0.2" height="0.225679" id="_x30_.1.0.226.0.0.4.7.0" stroke-width="1" width="3.791" x="-131.951" y="-126.88"/>
  5484. </g>
  5485. <g transform="scale(-1)">
  5486. <rect fill-opacity="0.2" height="0.229409" id="_x30_.1.0.226.0.0.4.8.0" stroke-width="1" width="3.791" x="-131.951" y="-129.662"/>
  5487. </g>
  5488. <g transform="scale(-1)">
  5489. <rect fill-opacity="0.2" height="0.225679" id="_x30_.1.0.226.0.0.4.9.0" stroke-width="1" width="3.791" x="-131.951" y="-132.441"/>
  5490. </g>
  5491. <g transform="scale(-1)">
  5492. <rect fill-opacity="0.2" height="0.228476" id="_x30_.1.0.226.0.0.4.10.0" stroke-width="1" width="3.791" x="-131.951" y="-135.224"/>
  5493. </g>
  5494. <g transform="scale(-1)">
  5495. <rect fill-opacity="0.2" height="0.229409" id="_x30_.1.0.226.0.0.4.11.0" stroke-width="1" width="3.791" x="-131.951" y="-138.004"/>
  5496. </g>
  5497. <g transform="scale(-1)">
  5498. <rect fill-opacity="0.2" height="0.227544" id="_x30_.1.0.226.0.0.4.12.0" stroke-width="1" width="3.791" x="-131.951" y="-140.784"/>
  5499. </g>
  5500. <g transform="scale(-1)">
  5501. <rect fill-opacity="0.2" height="0.227544" id="_x30_.1.0.226.0.0.4.13.0" stroke-width="1" width="3.791" x="-131.951" y="-143.563"/>
  5502. </g>
  5503. <g transform="scale(-1)">
  5504. <rect fill-opacity="0.2" height="0.225679" id="_x30_.1.0.226.0.0.4.14.0" stroke-width="1" width="3.791" x="-131.951" y="-146.344"/>
  5505. </g>
  5506. <g transform="scale(-1)">
  5507. <rect fill="#ffffff" fill-opacity="0.2" height="0.225679" id="_x30_.1.0.226.0.0.5.0.0" stroke-width="1" width="3.791" x="-131.951" y="-108.993"/>
  5508. </g>
  5509. <g transform="scale(-1)">
  5510. <rect fill="#ffffff" fill-opacity="0.2" height="0.227544" id="_x30_.1.0.226.0.0.5.1.0" stroke-width="1" width="3.791" x="-131.951" y="-111.776"/>
  5511. </g>
  5512. <g transform="scale(-1)">
  5513. <rect fill="#ffffff" fill-opacity="0.2" height="0.225679" id="_x30_.1.0.226.0.0.5.2.0" stroke-width="1" width="3.791" x="-131.951" y="-114.557"/>
  5514. </g>
  5515. <g transform="scale(-1)">
  5516. <rect fill="#ffffff" fill-opacity="0.2" height="0.226611" id="_x30_.1.0.226.0.0.5.3.0" stroke-width="1" width="3.791" x="-131.951" y="-117.335"/>
  5517. </g>
  5518. <g transform="scale(-1)">
  5519. <rect fill="#ffffff" fill-opacity="0.2" height="0.227544" id="_x30_.1.0.226.0.0.5.4.0" stroke-width="1" width="3.791" x="-131.951" y="-120.118"/>
  5520. </g>
  5521. <g transform="scale(-1)">
  5522. <rect fill="#ffffff" fill-opacity="0.2" height="0.223814" id="_x30_.1.0.226.0.0.5.5.0" stroke-width="1" width="3.791" x="-131.951" y="-122.895"/>
  5523. </g>
  5524. <g transform="scale(-1)">
  5525. <rect fill="#ffffff" fill-opacity="0.2" height="0.227544" id="_x30_.1.0.226.0.0.5.6.0" stroke-width="1" width="3.791" x="-131.951" y="-125.676"/>
  5526. </g>
  5527. <g transform="scale(-1)">
  5528. <rect fill="#ffffff" fill-opacity="0.2" height="0.225679" id="_x30_.1.0.226.0.0.5.7.0" stroke-width="1" width="3.791" x="-131.951" y="-128.458"/>
  5529. </g>
  5530. <g transform="scale(-1)">
  5531. <rect fill="#ffffff" fill-opacity="0.2" height="0.225679" id="_x30_.1.0.226.0.0.5.8.0" stroke-width="1" width="3.791" x="-131.951" y="-131.237"/>
  5532. </g>
  5533. <g transform="scale(-1)">
  5534. <rect fill="#ffffff" fill-opacity="0.2" height="0.227544" id="_x30_.1.0.226.0.0.5.9.0" stroke-width="1" width="3.791" x="-131.951" y="-134.021"/>
  5535. </g>
  5536. <g transform="scale(-1)">
  5537. <rect fill="#ffffff" fill-opacity="0.2" height="0.224746" id="_x30_.1.0.226.0.0.5.10.0" stroke-width="1" width="3.791" x="-131.951" y="-136.798"/>
  5538. </g>
  5539. <g transform="scale(-1)">
  5540. <rect fill="#ffffff" fill-opacity="0.2" height="0.229409" id="_x30_.1.0.226.0.0.5.11.0" stroke-width="1" width="3.791" x="-131.951" y="-139.583"/>
  5541. </g>
  5542. <g transform="scale(-1)">
  5543. <rect fill="#ffffff" fill-opacity="0.2" height="0.227544" id="_x30_.1.0.226.0.0.5.12.0" stroke-width="1" width="3.791" x="-131.951" y="-142.361"/>
  5544. </g>
  5545. <g transform="scale(-1)">
  5546. <rect fill="#ffffff" fill-opacity="0.2" height="0.225679" id="_x30_.1.0.226.0.0.5.13.0" stroke-width="1" width="3.791" x="-131.951" y="-145.14"/>
  5547. </g>
  5548. <g transform="scale(-1)">
  5549. <rect fill="#ffffff" fill-opacity="0.2" height="0.225679" id="_x30_.1.0.226.0.0.5.14.0" stroke-width="1" width="3.791" x="-131.951" y="-147.921"/>
  5550. </g>
  5551. <g transform="scale(-1)">
  5552. <rect fill-opacity="0.2" height="0.533422" id="_x30_.1.0.226.0.6" stroke-width="1" width="3.408" x="-141.675" y="-110.938"/>
  5553. </g>
  5554. <rect fill="#1a1a1a" height="60.48" id="rect5586-4-4-8" stroke-width="1" width="6.027" x="131.951" y="97.2519"/>
  5555. <rect fill="#ffffff" height="39.9162" id="rect6475-9" stroke="#ffffff" stroke-width="0.7707" width="2.236" x="131.484" y="107.545"/>
  5556. <g transform="scale(-1)">
  5557. <rect fill="#999999" height="1.8288" id="_x30_.1.0.226.0.0.0.0.0_1_-4" stroke-width="1" width="3.79" x="-15.149" y="-101.656"/>
  5558. </g>
  5559. <g transform="scale(-1)">
  5560. <rect fill="#999999" height="1.8288" id="_x30_.1.0.226.0.0.0.1.0_1_-0" stroke-width="1" width="3.79" x="-15.149" y="-98.8369"/>
  5561. </g>
  5562. <g transform="scale(-1)">
  5563. <rect fill="#999999" height="1.8288" id="_x30_.1.0.226.0.0.0.2.0_1_-1" stroke-width="1" width="3.79" x="-15.149" y="-96.0171"/>
  5564. </g>
  5565. <g transform="scale(-1)">
  5566. <rect fill="#999999" height="1.8288" id="_x30_.1.0.226.0.0.0.3.0_1_-3" stroke-width="1" width="3.79" x="-15.149" y="-93.1982"/>
  5567. </g>
  5568. <g transform="scale(-1)">
  5569. <rect fill="#999999" height="1.8288" id="_x30_.1.0.226.0.0.0.4.0_1_-2" stroke-width="1" width="3.79" x="-15.149" y="-90.3803"/>
  5570. </g>
  5571. <g transform="scale(-1)">
  5572. <rect fill="#999999" height="1.83258" id="_x30_.1.0.226.0.0.0.5.0_1_-2" stroke-width="1" width="3.79" x="-15.149" y="-87.5596"/>
  5573. </g>
  5574. <g transform="scale(-1)">
  5575. <rect fill="#999999" height="1.8288" id="_x30_.1.0.226.0.0.0.6.0_1_-9" stroke-width="1" width="3.79" x="-15.149" y="-84.7398"/>
  5576. </g>
  5577. <g transform="scale(-1)">
  5578. <rect fill="#999999" height="1.8288" id="_x30_.1.0.226.0.0.0.7.0_1_-3" stroke-width="1" width="3.79" x="-15.149" y="-81.919"/>
  5579. </g>
  5580. <g transform="scale(-1)">
  5581. <rect fill="#999999" height="1.83164" id="_x30_.1.0.226.0.0.0.8.0_1_-9" stroke-width="1" width="3.79" x="-15.149" y="-79.104"/>
  5582. </g>
  5583. <g transform="scale(-1)">
  5584. <rect fill="#999999" height="1.8288" id="_x30_.1.0.226.0.0.0.9.0_1_-8" stroke-width="1" width="3.79" x="-15.149" y="-76.2804"/>
  5585. </g>
  5586. <g transform="scale(-1)">
  5587. <rect fill="#999999" height="1.8288" id="_x30_.1.0.226.0.0.0.10.0_1_-5" stroke-width="1" width="3.79" x="-15.149" y="-73.4624"/>
  5588. </g>
  5589. <g transform="scale(-1)">
  5590. <rect fill="#999999" height="1.83069" id="_x30_.1.0.226.0.0.0.11.0_1_-6" stroke-width="1" width="3.79" x="-15.149" y="-70.6436"/>
  5591. </g>
  5592. <g transform="scale(-1)">
  5593. <rect fill="#999999" height="1.83069" id="_x30_.1.0.226.0.0.0.12.0_1_-7" stroke-width="1" width="3.79" x="-15.149" y="-67.8237"/>
  5594. </g>
  5595. <g transform="scale(-1)">
  5596. <rect fill="#999999" height="1.83069" id="_x30_.1.0.226.0.0.0.13.0_1_-5" stroke-width="1" width="3.79" x="-15.149" y="-65.0049"/>
  5597. </g>
  5598. <g transform="scale(-1)">
  5599. <rect fill="#999999" height="1.8288" id="_x30_.1.0.226.0.0.0.14.0_1_-4" stroke-width="1" width="3.79" x="-15.149" y="-62.1832"/>
  5600. </g>
  5601. <g transform="scale(-1)">
  5602. <rect fill="#999999" height="1.8288" id="_x30_.1.0.226.0.0.1.0.0_1_-5" stroke-width="1" width="3.792" x="-5.232" y="-101.656"/>
  5603. </g>
  5604. <g transform="scale(-1)">
  5605. <rect fill="#999999" height="1.8288" id="_x30_.1.0.226.0.0.1.1.0_1_-9" stroke-width="1" width="3.792" x="-5.232" y="-98.8369"/>
  5606. </g>
  5607. <g transform="scale(-1)">
  5608. <rect fill="#999999" height="1.8288" id="_x30_.1.0.226.0.0.1.2.0_1_-6" stroke-width="1" width="3.792" x="-5.232" y="-96.0171"/>
  5609. </g>
  5610. <g transform="scale(-1)">
  5611. <rect fill="#999999" height="1.8288" id="_x30_.1.0.226.0.0.1.3.0_1_-4" stroke-width="1" width="3.792" x="-5.232" y="-93.1982"/>
  5612. </g>
  5613. <g transform="scale(-1)">
  5614. <rect fill="#999999" height="1.8288" id="_x30_.1.0.226.0.0.1.4.0_1_-1" stroke-width="1" width="3.792" x="-5.232" y="-90.3803"/>
  5615. </g>
  5616. <g transform="scale(-1)">
  5617. <rect fill="#999999" height="1.83258" id="_x30_.1.0.226.0.0.1.5.0_1_-1" stroke-width="1" width="3.792" x="-5.232" y="-87.5596"/>
  5618. </g>
  5619. <g transform="scale(-1)">
  5620. <rect fill="#999999" height="1.8288" id="_x30_.1.0.226.0.0.1.6.0_1_-7" stroke-width="1" width="3.792" x="-5.232" y="-84.7398"/>
  5621. </g>
  5622. <g transform="scale(-1)">
  5623. <rect fill="#999999" height="1.8288" id="_x30_.1.0.226.0.0.1.7.0_1_-9" stroke-width="1" width="3.792" x="-5.232" y="-81.919"/>
  5624. </g>
  5625. <g transform="scale(-1)">
  5626. <rect fill="#999999" height="1.83164" id="_x30_.1.0.226.0.0.1.8.0_1_-8" stroke-width="1" width="3.792" x="-5.232" y="-79.104"/>
  5627. </g>
  5628. <g transform="scale(-1)">
  5629. <rect fill="#999999" height="1.8288" id="_x30_.1.0.226.0.0.1.9.0_1_-7" stroke-width="1" width="3.792" x="-5.232" y="-76.2804"/>
  5630. </g>
  5631. <g transform="scale(-1)">
  5632. <rect fill="#999999" height="1.8288" id="_x30_.1.0.226.0.0.1.10.0_1_-2" stroke-width="1" width="3.792" x="-5.232" y="-73.4624"/>
  5633. </g>
  5634. <g transform="scale(-1)">
  5635. <rect fill="#999999" height="1.83069" id="_x30_.1.0.226.0.0.1.11.0_1_-1" stroke-width="1" width="3.792" x="-5.232" y="-70.6436"/>
  5636. </g>
  5637. <g transform="scale(-1)">
  5638. <rect fill="#999999" height="1.83069" id="_x30_.1.0.226.0.0.1.12.0_1_-7" stroke-width="1" width="3.792" x="-5.232" y="-67.8237"/>
  5639. </g>
  5640. <g transform="scale(-1)">
  5641. <rect fill="#999999" height="1.83069" id="_x30_.1.0.226.0.0.1.13.0_1_-4" stroke-width="1" width="3.792" x="-5.232" y="-65.0049"/>
  5642. </g>
  5643. <g transform="scale(-1)">
  5644. <rect fill="#999999" height="1.8288" id="_x30_.1.0.226.0.0.1.14.0_1_-5" stroke-width="1" width="3.792" x="-5.232" y="-62.1832"/>
  5645. </g>
  5646. <g transform="scale(-1)">
  5647. <rect fill-opacity="0.2" height="0.228837" id="_x30_.1.0.226.0.0.4.0.0_1_-6" stroke-width="1" width="3.79" x="-15.149" y="-101.656"/>
  5648. </g>
  5649. <g transform="scale(-1)">
  5650. <rect fill-opacity="0.2" height="0.230728" id="_x30_.1.0.226.0.0.4.1.0_1_-7" stroke-width="1" width="3.79" x="-15.149" y="-98.8369"/>
  5651. </g>
  5652. <g transform="scale(-1)">
  5653. <rect fill-opacity="0.2" height="0.226945" id="_x30_.1.0.226.0.0.4.2.0_1_-5" stroke-width="1" width="3.79" x="-15.149" y="-96.0171"/>
  5654. </g>
  5655. <g transform="scale(-1)">
  5656. <rect fill-opacity="0.2" height="0.232619" id="_x30_.1.0.226.0.0.4.3.0_1_-3" stroke-width="1" width="3.79" x="-15.149" y="-93.1982"/>
  5657. </g>
  5658. <g transform="scale(-1)">
  5659. <rect fill-opacity="0.2" height="0.230728" id="_x30_.1.0.226.0.0.4.4.0_1_-6" stroke-width="1" width="3.79" x="-15.149" y="-90.3803"/>
  5660. </g>
  5661. <g transform="scale(-1)">
  5662. <rect fill-opacity="0.2" height="0.230728" id="_x30_.1.0.226.0.0.4.5.0_1_-8" stroke-width="1" width="3.79" x="-15.149" y="-87.5596"/>
  5663. </g>
  5664. <g transform="scale(-1)">
  5665. <rect fill-opacity="0.2" height="0.228837" id="_x30_.1.0.226.0.0.4.6.0_1_-0" stroke-width="1" width="3.79" x="-15.149" y="-84.7398"/>
  5666. </g>
  5667. <g transform="scale(-1)">
  5668. <rect fill-opacity="0.2" height="0.228837" id="_x30_.1.0.226.0.0.4.7.0_1_-7" stroke-width="1" width="3.79" x="-15.149" y="-81.919"/>
  5669. </g>
  5670. <g transform="scale(-1)">
  5671. <rect fill-opacity="0.2" height="0.232619" id="_x30_.1.0.226.0.0.4.8.0_1_-8" stroke-width="1" width="3.79" x="-15.149" y="-79.103"/>
  5672. </g>
  5673. <g transform="scale(-1)">
  5674. <rect fill-opacity="0.2" height="0.228837" id="_x30_.1.0.226.0.0.4.9.0_1_-0" stroke-width="1" width="3.79" x="-15.149" y="-76.2804"/>
  5675. </g>
  5676. <g transform="scale(-1)">
  5677. <rect fill-opacity="0.2" height="0.231673" id="_x30_.1.0.226.0.0.4.10.0_1_-4" stroke-width="1" width="3.79" x="-15.149" y="-73.4624"/>
  5678. </g>
  5679. <g transform="scale(-1)">
  5680. <rect fill-opacity="0.2" height="0.232619" id="_x30_.1.0.226.0.0.4.11.0_1_-3" stroke-width="1" width="3.79" x="-15.149" y="-70.6436"/>
  5681. </g>
  5682. <g transform="scale(-1)">
  5683. <rect fill-opacity="0.2" height="0.230728" id="_x30_.1.0.226.0.0.4.12.0_1_-7" stroke-width="1" width="3.79" x="-15.149" y="-67.8237"/>
  5684. </g>
  5685. <g transform="scale(-1)">
  5686. <rect fill-opacity="0.2" height="0.230728" id="_x30_.1.0.226.0.0.4.13.0_1_-1" stroke-width="1" width="3.79" x="-15.149" y="-65.0049"/>
  5687. </g>
  5688. <g transform="scale(-1)">
  5689. <rect fill-opacity="0.2" height="0.228837" id="_x30_.1.0.226.0.0.4.14.0_1_-1" stroke-width="1" width="3.79" x="-15.149" y="-62.1832"/>
  5690. </g>
  5691. <g transform="scale(-1)">
  5692. <rect fill="#ffffff" fill-opacity="0.2" height="0.228837" id="_x30_.1.0.226.0.0.5.0.0_1_-4" stroke-width="1" width="3.79" x="-15.149" y="-100.058"/>
  5693. </g>
  5694. <g transform="scale(-1)">
  5695. <rect fill="#ffffff" fill-opacity="0.2" height="0.230728" id="_x30_.1.0.226.0.0.5.1.0_1_-0" stroke-width="1" width="3.79" x="-15.149" y="-97.2378"/>
  5696. </g>
  5697. <g transform="scale(-1)">
  5698. <rect fill="#ffffff" fill-opacity="0.2" height="0.228837" id="_x30_.1.0.226.0.0.5.2.0_1_-4" stroke-width="1" width="3.79" x="-15.149" y="-94.4152"/>
  5699. </g>
  5700. <g transform="scale(-1)">
  5701. <rect fill="#ffffff" fill-opacity="0.2" height="0.228837" id="_x30_.1.0.226.0.0.5.3.0_1_-2" stroke-width="1" width="3.79" x="-15.149" y="-91.5992"/>
  5702. </g>
  5703. <g transform="scale(-1)">
  5704. <rect fill="#ffffff" fill-opacity="0.2" height="0.230728" id="_x30_.1.0.226.0.0.5.4.0_1_-1" stroke-width="1" width="3.79" x="-15.149" y="-88.7785"/>
  5705. </g>
  5706. <g transform="scale(-1)">
  5707. <rect fill="#ffffff" fill-opacity="0.2" height="0.226945" id="_x30_.1.0.226.0.0.5.5.0_1_-3" stroke-width="1" width="3.79" x="-15.149" y="-85.9587"/>
  5708. </g>
  5709. <g transform="scale(-1)">
  5710. <rect fill="#ffffff" fill-opacity="0.2" height="0.230728" id="_x30_.1.0.226.0.0.5.6.0_1_-7" stroke-width="1" width="3.79" x="-15.149" y="-83.1417"/>
  5711. </g>
  5712. <g transform="scale(-1)">
  5713. <rect fill="#ffffff" fill-opacity="0.2" height="0.228837" id="_x30_.1.0.226.0.0.5.7.0_1_-8" stroke-width="1" width="3.79" x="-15.149" y="-80.32"/>
  5714. </g>
  5715. <g transform="scale(-1)">
  5716. <rect fill="#ffffff" fill-opacity="0.2" height="0.228837" id="_x30_.1.0.226.0.0.5.8.0_1_-6" stroke-width="1" width="3.79" x="-15.149" y="-77.5012"/>
  5717. </g>
  5718. <g transform="scale(-1)">
  5719. <rect fill="#ffffff" fill-opacity="0.2" height="0.230728" id="_x30_.1.0.226.0.0.5.9.0_1_-8" stroke-width="1" width="3.79" x="-15.149" y="-74.6814"/>
  5720. </g>
  5721. <g transform="scale(-1)">
  5722. <rect fill="#ffffff" fill-opacity="0.2" height="0.227891" id="_x30_.1.0.226.0.0.5.10.0_1_-6" stroke-width="1" width="3.79" x="-15.149" y="-71.8615"/>
  5723. </g>
  5724. <g transform="scale(-1)">
  5725. <rect fill="#ffffff" fill-opacity="0.2" height="0.232619" id="_x30_.1.0.226.0.0.5.11.0_1_-7" stroke-width="1" width="3.79" x="-15.149" y="-69.0426"/>
  5726. </g>
  5727. <g transform="scale(-1)">
  5728. <rect fill="#ffffff" fill-opacity="0.2" height="0.230728" id="_x30_.1.0.226.0.0.5.12.0_1_-4" stroke-width="1" width="3.79" x="-15.149" y="-66.2238"/>
  5729. </g>
  5730. <g transform="scale(-1)">
  5731. <rect fill="#ffffff" fill-opacity="0.2" height="0.228837" id="_x30_.1.0.226.0.0.5.13.0_1_-9" stroke-width="1" width="3.79" x="-15.149" y="-63.404"/>
  5732. </g>
  5733. <g transform="scale(-1)">
  5734. <rect fill="#ffffff" fill-opacity="0.2" height="0.228837" id="_x30_.1.0.226.0.0.5.14.0_1_-7" stroke-width="1" width="3.79" x="-15.149" y="-60.5841"/>
  5735. </g>
  5736. <g transform="scale(-1)">
  5737. <rect fill-opacity="0.2" height="0.540887" id="_x30_.1.0.226.0.6_1_-6" stroke-width="1" width="3.409" x="-5.042" y="-98.3972"/>
  5738. </g>
  5739. <rect fill="#1a1a1a" height="60.48" id="rect5586-4-4-8_1_-8" stroke-width="1" width="6.027" x="5.33159" y="50.4519"/>
  5740. <rect fill="#ffffff" height="40.4757" id="rect6475-9_1_-1" stroke="#ffffff" stroke-width="0.7707" width="2.236" x="9.44063" y="60.8217"/>
  5741. <path d="m243.189,85.7016c0.368165,0.0531504,0.655625,0.387403,0.655625,0.779544l0,4.36195c0,0.387417,-0.295949,0.745301,-0.655625,0.784274l-23.1323,2.7497c-0.359676,0.0531504,-0.655617,-0.251582,-0.655617,-0.634269l0,-0.641361c0,-0.387417,0.298778,-0.738216,0.655617,-0.779558l20.4447,-2.07644c0.365328,-0.0271656,0.65561,-0.369698,0.65561,-0.779551l0,-1.61698c0,-0.373241,-0.295942,-0.747662,-0.65561,-0.78192l-20.4376,-2.06227c-0.371001,-0.0460656,-0.66695,-0.369698,-0.66695,-0.781913l-0.00288,-0.634277c0,-0.385056,0.298786,-0.677973,0.664121,-0.639zm0,-18.2699c0.368165,0.0555156,0.655625,0.388597,0.655625,0.783101l0,4.35841c0,0.388591,-0.295949,0.747662,-0.655625,0.787824l-23.1295,2.75087c-0.362513,0.0507888,-0.658454,-0.249214,-0.658454,-0.633081l0,-0.637819c0,-0.388598,0.298778,-0.740577,0.658454,-0.78192l20.4447,-2.07644c0.365335,-0.0330696,0.658454,-0.367329,0.658454,-0.777182l0,-1.61698c0,-0.377971,-0.298786,-0.747669,-0.658454,-0.783108l-20.4447,-2.06345c-0.359676,-0.0460591,-0.655632,-0.364966,-0.655632,-0.779544l-0.00288,-0.631914c0,-0.386236,0.298786,-0.67679,0.655625,-0.64018z" fill="#7a7a7a" id="_x30_.1.0.224.0.0_1_-5" stroke-width="1"/>
  5742. <rect fill="#0051a9" height="31.5577" id="_x30_.1.0.224.0.1_1_-4" stroke-width="1" width="37.7217" x="205.885" y="63.7611"/>
  5743. <path d="m241.803,62.5645l0,-0.980352c0.630129,0,1.03936,-0.098033,1.17248,-0.265748,0.029736,-0.0614174,0.12461,-0.615372,0.12461,-0.99334l0.794397,0,0.383745,0,0.0693792,0,0.179834,0,0.992635,0c0,0.591752,-0.130277,1.28743,-0.318607,1.53193,-0.522511,0.65081,-1.57604,0.705143,-2.0405,0.70869l-0.00288,0.0023832l-0.879357,0l0.0226512,-0.0212609c-0.219485,0.0165326,-0.393653,0.0177142,-0.498441,0.0177142z" fill="#b0b0b0" id="_x30_.1.0.224.0.2_1_-6" stroke-width="1"/>
  5744. <path d="m242.813,61.4377c-0.202493,0.098033,-0.548006,0.144092,-1.01246,0.144092l0,0.981532l1.23903,0c0.331351,0,1.21637,-0.007056,1.8366,-0.421668,0.174168,-0.122846,0.371001,-0.184263,0.531007,-0.797263,-0.203911,0.102753,-2.59417,0.0933055,-2.59417,0.0933055z" fill="#8f8f8f" id="_x30_.1.0.224.0.3_1_-5" stroke-width="1"/>
  5745. <rect fill="#4d4d4d" height="2.78159" id="_x30_.1.0.224.0.4_1_-8" stroke-width="1" width="2.30388" x="195.84" y="87.1713"/>
  5746. <rect fill="#4d4d4d" height="2.7804" id="_x30_.1.0.224.0.5_1_-3" stroke-width="1" width="2.30388" x="195.84" y="80.9219"/>
  5747. <rect fill="#4d4d4d" height="2.7804" id="_x30_.1.0.224.0.6_1_-1" stroke-width="1" width="2.30388" x="195.84" y="75.3599"/>
  5748. <rect fill="#4d4d4d" height="2.78277" id="_x30_.1.0.224.0.7_1_-8" stroke-width="1" width="2.30388" x="195.84" y="69.1046"/>
  5749. <path d="m241.803,96.4843l0,0.980352c0.630129,0,1.03936,0.0992088,1.17248,0.270475,0.029736,0.0720504,0.12461,0.615377,0.12461,0.994521l0.794397,0,0.383745,0,0.0693792,0,0.179834,0,0.992635,0c0,-0.595289,-0.130277,-1.29217,-0.318607,-1.53194,-0.522511,-0.659073,-1.57604,-0.709869,-2.0405,-0.713412l-0.00288,0,-0.879357,0l0.0226512,0.024804c-0.219485,-0.024804,-0.393653,-0.024804,-0.498441,-0.024804z" fill="#b0b0b0" id="_x30_.1.0.224.0.8_1_-6" stroke-width="1"/>
  5750. <path d="m245.401,97.6997c-0.157183,-0.609465,-0.368172,-0.67325,-0.531021,-0.798451,-0.614549,-0.413402,-1.49674,-0.418125,-1.83376,-0.418125l-1.23903,0l0,0.980352c0.464465,0,0.809978,0.055512,1.0068,0.13819,0.00846,0.0106344,2.39876,0.0036,2.59701,0.0980352z" fill="#8f8f8f" id="_x30_.1.0.224.0.9_1_-4" stroke-width="1"/>
  5751. <path d="m196.885,97.8868l45.3866,0l0,-1.56383l1.62278,0L243.894,62.7393l-1.62278,0L242.271,61.172l-45.3866,0zm42.4257,-12.1846c0.363924,0.0531504,0.652788,0.387403,0.652788,0.779544l0,4.36195c0,0.387417,-0.295949,0.745301,-0.652788,0.784274l-24.3161,2.7497c-0.356839,0.0531504,-0.649958,-0.251582,-0.649958,-0.634269l0,-0.641361c0,-0.387417,0.293119,-0.738216,0.649958,-0.779558l20.4447,-2.07644c0.368172,-0.0271656,0.661291,-0.369698,0.661291,-0.779551l0,-1.61698c0,-0.373241,-0.304452,-0.747662,-0.661291,-0.78192l-20.4418,-2.06227c-0.359669,-0.0460656,-0.652788,-0.369698,-0.652788,-0.781913l0,-0.634277c0,-0.385056,0.293119,-0.677973,0.649958,-0.639zm0,-18.2699c0.363924,0.0555156,0.652788,0.388597,0.652788,0.783101l0,4.35841c0,0.388591,-0.295949,0.747662,-0.652788,0.787824l-24.3161,2.75087c-0.356839,0.0507888,-0.652781,-0.249214,-0.652781,-0.633081l0,-0.637819c0,-0.388598,0.295942,-0.740577,0.652781,-0.78192l20.4447,-2.07644c0.368172,-0.0330696,0.661291,-0.367329,0.661291,-0.777182l0,-1.61698c0,-0.377971,-0.304452,-0.747669,-0.661291,-0.783108l-20.4418,-2.06345c-0.359669,-0.0460591,-0.652788,-0.364966,-0.652788,-0.779544l-0.00288,-0.631914c0,-0.386236,0.295956,-0.67679,0.652795,-0.64018z" fill="#b3b3b3" id="_x30_.1.0.224.0.10_1_-2" stroke-width="1"/>
  5752. <g transform="matrix(19.6671, 0, 0, 16.4047, -101.368, -17.5144)">
  5753. <polygon fill="none" id="_x30_.1.0.224.0.11_1_-1" points="17.1576,6.56561,17.1576,6.37956,17.0603,6.36847,17.0603,6.57533" stroke-width="0.0556731"/>
  5754. </g>
  5755. <g transform="matrix(19.6671, 0, 0, 16.4047, -101.368, -17.5144)">
  5756. <polygon fill="#939393" id="_x30_.1.0.224.0.12_1_-6" points="17.0603,6.36847,17.1576,6.37956,17.1576,6.56561,17.0603,6.57533" stroke-width="0.0556731"/>
  5757. </g>
  5758. <g transform="matrix(19.6671, 0, 0, 16.4047, -101.368, -17.5144)">
  5759. <polygon fill="#666666" id="_x30_.1.0.224.0.13_1_-8" points="17.0603,6.36847,17.0194,6.36357,17.0194,6.58094,17.0603,6.57533" stroke-width="0.0556731"/>
  5760. </g>
  5761. <g transform="matrix(19.6671, 0, 0, 16.4047, -101.368, -17.5144)">
  5762. <polygon fill="none" id="_x30_.1.0.224.0.14_1_-9" points="17.1576,5.45191,17.1576,5.26615,17.0603,5.25506,17.0603,5.4617" stroke-width="0.0556731"/>
  5763. </g>
  5764. <g transform="matrix(19.6671, 0, 0, 16.4047, -101.368, -17.5144)">
  5765. <polygon fill="#939393" id="_x30_.1.0.224.0.15_1_-3" points="17.0603,5.25506,17.1576,5.26615,17.1576,5.45191,17.0603,5.4617" stroke-width="0.0556731"/>
  5766. </g>
  5767. <g transform="matrix(19.6671, 0, 0, 16.4047, -101.368, -17.5144)">
  5768. <polygon fill="#666666" id="_x30_.1.0.224.0.16_1_-4" points="17.0603,5.25506,17.0194,5.25009,17.0194,5.46753,17.0603,5.4617" stroke-width="0.0556731"/>
  5769. </g>
  5770. <line fill="none" id="_x30_.1.0.224.0.17_1_-2" stroke="#ffffff" stroke-linecap="round" stroke-opacity="0.23999999" stroke-width="0.8064" x1="198.135" x2="241.44" y1="97.3327" y2="97.3327"/>
  5771. <line fill="none" id="_x30_.1.0.224.0.18_1_-5" stroke="#ffffff" stroke-linecap="round" stroke-opacity="0.23999999" stroke-width="0.8064" x1="198.135" x2="241.615" y1="61.7307" y2="61.7307"/>
  5772. <line fill="none" id="_x30_.1.0.224.0.19_1_-6" stroke="#000000" stroke-linecap="round" stroke-opacity="0.15" stroke-width="0.4032" x1="242.951" x2="242.951" y1="62.9555" y2="96.1078"/>
  5773. <path d="m208.256,58.9479l2.42283,0l0,1.39493,0,0,0,0.833882l-3.99888,0l0,-1.60636c0,-0.344896,0.328529,-0.621287,0.746251,-0.621287z" fill="#999999" id="_x30_.1.0.224.0.20_1_-8" stroke-width="1"/>
  5774. <path d="m207.331,58.9479l0,2.22528l-0.666943,0c0,0,0,-1.52723,0,-1.70558,0.0098856,-0.275208,0.468705,-0.519704,0.666943,-0.519704z" fill="#808080" id="_x30_.1.0.224.0.21_1_-2" stroke-width="1"/>
  5775. <path d="m208.256,100.132l2.42283,0l0,-1.39611,0,0,0,-0.856325l-3.99888,0l0,1.62407c0,0.346075,0.328529,0.617738,0.746251,0.617738l0.8298,0z" fill="#b3b3b3" id="_x30_.1.0.224.0.22_1_-9" stroke-width="1"/>
  5776. <path d="m207.331,100.132l0,-2.23944l-0.666943,0c0,0,0,1.54139,0,1.72565,0.0098856,0.270482,0.468705,0.513792,0.666943,0.513792z" fill="#e6e6e6" id="_x30_.1.0.224.0.23_1_-0" stroke-width="1"/>
  5777. <path d="m243.189,135.381c0.368172,0.0531576,0.655632,0.388613,0.655632,0.778421l0,4.36692c0,0.381528,-0.295956,0.745344,-0.655632,0.778421l-23.1322,2.74749c-0.359669,0.0555192,-0.655617,-0.251604,-0.655617,-0.631951l0,-0.641397c0,-0.381528,0.298778,-0.738252,0.655617,-0.77369l20.4446,-2.08483c0.365328,-0.0248112,0.655625,-0.368532,0.655625,-0.771329l0,-1.61707c0,-0.376812,-0.295956,-0.750074,-0.655625,-0.786686l-20.4376,-2.0624c-0.371001,-0.0460656,-0.66695,-0.36972,-0.66695,-0.778413l-0.00288,-0.636667c0,-0.383897,0.298786,-0.676836,0.664121,-0.639036zm0,-18.2709c0.368172,0.055512,0.655632,0.389793,0.655632,0.784317l0,4.35629c0,0.38862,-0.295956,0.747705,-0.655632,0.787867l-23.1294,2.74986c-0.362498,0.0507888,-0.658447,-0.249242,-0.658447,-0.631951l0,-0.637855c0,-0.388613,0.298778,-0.740613,0.658447,-0.779601l20.4446,-2.07892c0.365335,-0.0295272,0.658454,-0.367358,0.658454,-0.774871l0,-1.61708c0,-0.374443,-0.298778,-0.750067,-0.658454,-0.781963l-20.4446,-2.06475c-0.359669,-0.0460656,-0.65561,-0.367351,-0.65561,-0.776052l-0.00288,-0.631944c0,-0.387439,0.298778,-0.676836,0.655617,-0.641397z" fill="#7a7a7a" id="_x30_.1.0.224.0.0" stroke-width="1"/>
  5778. <rect fill="#333333" height="31.5619" id="_x30_.1.0.224.0.1" stroke-width="1" width="37.7216" x="205.885" y="113.439"/>
  5779. <path d="m241.803,112.242l0,-0.979221c0.630129,0,1.03936,-0.0968616,1.17247,-0.266954,0.0297432,-0.0661392,0.12461,-0.615405,0.12461,-0.998121l0.794397,0,0.383745,0,0.0693792,0,0.179834,0,0.992635,0c0,0.591797,-0.130277,1.29107,-0.318607,1.53558,-0.522511,0.653198,-1.57604,0.706356,-2.04049,0.712267l-0.00288,0.002376l-0.87935,0l0.0226512,-0.0248112c-0.219485,0.0189,-0.393653,0.0189,-0.498441,0.0189z" fill="#b0b0b0" id="_x30_.1.0.224.0.2" stroke-width="1"/>
  5780. <path d="m242.813,111.118c-0.202493,0.0968544,-0.548006,0.141746,-1.01246,0.141746l0,0.982756l1.23903,0c0.331351,0,1.21637,-0.007056,1.83659,-0.421689,0.174168,-0.122846,0.370994,-0.18427,0.531007,-0.797313,-0.203911,0.103946,-2.59416,0.0945,-2.59416,0.0945z" fill="#8f8f8f" id="_x30_.1.0.224.0.3" stroke-width="1"/>
  5781. <rect fill="#4d4d4d" height="2.78056" id="_x30_.1.0.224.0.4" stroke-width="1" width="2.30388" x="195.84" y="136.852"/>
  5782. <rect fill="#4d4d4d" height="2.78056" id="_x30_.1.0.224.0.5" stroke-width="1" width="2.30388" x="195.84" y="130.6"/>
  5783. <rect fill="#4d4d4d" height="2.78056" id="_x30_.1.0.224.0.6" stroke-width="1" width="2.30388" x="195.84" y="125.04"/>
  5784. <rect fill="#4d4d4d" height="2.78056" id="_x30_.1.0.224.0.7" stroke-width="1" width="2.30388" x="195.84" y="118.783"/>
  5785. <path d="m241.803,146.164l0,0.980402c0.630129,0,1.03936,0.0992232,1.17247,0.27049,0.0297432,0.0732456,0.12461,0.61542,0.12461,0.992217l0.794397,0,0.383745,0,0.0693792,0,0.179834,0,0.992635,0c0,-0.592963,-0.130277,-1.28988,-0.318607,-1.52966,-0.522511,-0.662659,-1.57604,-0.713448,-2.04049,-0.713448l-0.00288,0,-0.87935,0l0.0226512,0.024804c-0.219485,-0.024804,-0.393653,-0.024804,-0.498441,-0.024804z" fill="#b0b0b0" id="_x30_.1.0.224.0.8" stroke-width="1"/>
  5786. <path d="m245.401,147.379c-0.157183,-0.61187,-0.368172,-0.672105,-0.531021,-0.796133,-0.614549,-0.418147,-1.49674,-0.418147,-1.83375,-0.418147l-1.23903,0l0,0.980402c0.464457,0,0.809971,0.0555192,1.0068,0.141746,0.00846,0.005976,2.39875,-0.002376,2.597,0.0921312z" fill="#8f8f8f" id="_x30_.1.0.224.0.9" stroke-width="1"/>
  5787. <path d="m196.885,147.571l45.3866,0l0,-1.56392l1.62277,0l0,-33.5865l-1.62277,0l0,-1.56628l-45.3866,0zm42.4256,-12.1901c0.363924,0.0531576,0.652795,0.388613,0.652795,0.778421l0,4.36692c0,0.381528,-0.295956,0.745344,-0.652795,0.778421l-24.316,2.74749c-0.356839,0.0555192,-0.649958,-0.251604,-0.649958,-0.631951l0,-0.641397c0,-0.381528,0.293119,-0.738252,0.649958,-0.77369l20.4446,-2.08483c0.368165,-0.0248112,0.661284,-0.368532,0.661284,-0.771329l0,-1.61707c0,-0.376812,-0.304445,-0.750074,-0.661284,-0.786686l-20.4418,-2.0624c-0.359676,-0.0460656,-0.652795,-0.36972,-0.652795,-0.778413l0,-0.636667c0,-0.383897,0.293119,-0.676836,0.649958,-0.639036zm0,-18.2709c0.363924,0.055512,0.652795,0.389793,0.652795,0.784317l0,4.35629c0,0.38862,-0.295956,0.747705,-0.652795,0.787867l-24.316,2.74986c-0.356839,0.0507888,-0.652781,-0.249242,-0.652781,-0.631951l0,-0.637855c0,-0.388613,0.295942,-0.740613,0.652781,-0.779601l20.4446,-2.07892c0.368165,-0.0295272,0.661284,-0.367358,0.661284,-0.774871l0,-1.61708c0,-0.374443,-0.304445,-0.750067,-0.661284,-0.781963l-20.4418,-2.06475c-0.359676,-0.0460656,-0.652795,-0.367351,-0.652795,-0.776052l-0.00288,-0.631944c0,-0.387439,0.295949,-0.676836,0.652788,-0.641397z" fill="#b3b3b3" id="_x30_.1.0.224.0.10" stroke-width="1"/>
  5788. <g transform="matrix(19.6671, 0, 0, 16.4057, -101.367, -28.4041)">
  5789. <polygon fill="none" id="_x30_.1.0.224.0.11" points="17.1576,10.2573,17.1576,10.0714,17.0603,10.0605,17.0603,10.2671" stroke-width="0.0556715"/>
  5790. </g>
  5791. <g transform="matrix(19.6671, 0, 0, 16.4057, -101.367, -28.4041)">
  5792. <polygon fill="#939393" id="_x30_.1.0.224.0.12" points="17.0603,10.0605,17.1576,10.0714,17.1576,10.2573,17.0603,10.2671" stroke-width="0.0556715"/>
  5793. </g>
  5794. <g transform="matrix(19.6671, 0, 0, 16.4057, -101.367, -28.4041)">
  5795. <polygon fill="#666666" id="_x30_.1.0.224.0.13" points="17.0603,10.0605,17.0194,10.0553,17.0194,10.2727,17.0603,10.2671" stroke-width="0.0556715"/>
  5796. </g>
  5797. <g transform="matrix(19.6671, 0, 0, 16.4057, -101.367, -28.4041)">
  5798. <polygon fill="none" id="_x30_.1.0.224.0.14" points="17.1576,9.14349,17.1576,8.95773,17.0603,8.94686,17.0603,9.15343" stroke-width="0.0556715"/>
  5799. </g>
  5800. <g transform="matrix(19.6671, 0, 0, 16.4057, -101.367, -28.4041)">
  5801. <polygon fill="#939393" id="_x30_.1.0.224.0.15" points="17.0603,8.94686,17.1576,8.95773,17.1576,9.14349,17.0603,9.15343" stroke-width="0.0556715"/>
  5802. </g>
  5803. <g transform="matrix(19.6671, 0, 0, 16.4057, -101.367, -28.4041)">
  5804. <polygon fill="#666666" id="_x30_.1.0.224.0.16" points="17.0603,8.94686,17.0194,8.94175,17.0194,9.15926,17.0603,9.15343" stroke-width="0.0556715"/>
  5805. </g>
  5806. <line fill="none" id="_x30_.1.0.224.0.17" stroke="#ffffff" stroke-linecap="round" stroke-opacity="0.23999999" stroke-width="0.8064" x1="198.135" x2="241.44" y1="147.014" y2="147.014"/>
  5807. <line fill="none" id="_x30_.1.0.224.0.18" stroke="#ffffff" stroke-linecap="round" stroke-opacity="0.23999999" stroke-width="0.8064" x1="198.135" x2="241.615" y1="111.411" y2="111.411"/>
  5808. <line fill="none" id="_x30_.1.0.224.0.19" stroke="#000000" stroke-linecap="round" stroke-opacity="0.15" stroke-width="0.4032" x1="242.951" x2="242.951" y1="112.635" y2="145.79"/>
  5809. <path d="m208.256,108.628l2.42282,0l0,1.39856,0,0,0,0.832745l-3.99886,0l0,-1.60408c0,-0.343735,0.328521,-0.616593,0.746251,-0.616593z" fill="#999999" id="_x30_.1.0.224.0.20" stroke-width="1"/>
  5810. <path d="m207.331,108.628l0,2.22658l-0.666943,0c0,0,0,-1.52731,0,-1.70093,0.0098928,-0.281131,0.468705,-0.525643,0.666943,-0.525643z" fill="#808080" id="_x30_.1.0.224.0.21" stroke-width="1"/>
  5811. <path d="m208.256,149.812l2.42282,0l0,-1.39738,0,0,0,-0.861098l-3.99886,0l0,1.62417c0,0.35082,0.328521,0.615405,0.746251,0.615405l0.829793,0z" fill="#b3b3b3" id="_x30_.1.0.224.0.22" stroke-width="1"/>
  5812. <path d="m207.331,149.812l0,-2.24075l-0.666943,0c0,0,0,1.54501,0,1.72575,0.0098928,0.272858,0.468705,0.515001,0.666943,0.515001z" fill="#e6e6e6" id="_x30_.1.0.224.0.23" stroke-width="1"/>
  5813. </g>
  5814. </g>
  5815. </g>
  5816. <g partID="855161590">
  5817. <g transform="translate(449.693,129.38)">
  5818. <g id="breadboard" >
  5819. <defs >
  5820. <style type="text/css" ><![CDATA[ .str0 {stroke:#1E1E1E;stroke-width:0.0762} .str3 {stroke:#78786E;stroke-width:0.0762} .str2 {stroke:#78786E;stroke-width:0.25} .str1 {stroke:#8C8C8C;stroke-width:0.762} .fil3 {fill:none} .fil1 {fill:#1E1E1E} .fil6 {fill:#323232} .fil2 {fill:#C3C3C3} .fil4 {fill:#CBCBCB} .fil0 {fill:#E6E6E6} .fil5 {fill:#F0F0F0} .fil7 {fill:url(#id0)} ]]></style>
  5821. <linearGradient gradientUnits="userSpaceOnUse" id="id0" x1="13.0731" x2="13.0731" y1="13.9748" y2="12.0132">
  5822. <stop offset="0" style="stop-color:#A8A89E" />
  5823. <stop offset="1" style="stop-color:white" />
  5824. </linearGradient>
  5825. </defs>
  5826. <g id="Capa_x0020_1" >
  5827. <metadata id="CorelCorpID_0Corel-Layer" />
  5828. <g id="_144824656" >
  5829. <g >
  5830. <rect class="fil0" height="47.1013" id="_144825976" rx="8.10312" ry="8.10312" width="31.0334" x="2.50951" y="1.73877"/>
  5831. <ellipse class="fil1 str0" cx="18.2372" cy="8.08526" id="_144821416" rx="2.93746" ry="3.03591" />
  5832. </g>
  5833. <g >
  5834. <rect class="fil2" height="31.1253" id="_144822136" width="31.7772" x="2.81027" y="18.4986"/>
  5835. <rect class="fil2" height="10.9934" id="_144818704" rx="0.19389" ry="0.19389" width="2.63452" x="2.80233" y="12.3885"/>
  5836. <rect class="fil2" height="10.9934" id="_144826744" rx="0.19389" ry="0.19389" width="2.60249" x="31.9992" y="12.3885"/>
  5837. <rect class="fil2" height="10.3522" id="_144823288" rx="0.646299" ry="0.646299" width="2.63452" x="2.80233" y="43.7224"/>
  5838. <rect class="fil2" height="5.73823" id="_144827656" rx="0.646299" ry="0.646299" width="4.60517" x="29.982" y="48.3364"/>
  5839. <rect class="fil2" height="36.5658" id="_144829120" width="27.6879" x="4.85861" y="15.0415"/>
  5840. <rect class="fil2" height="41.7475" id="_144820960" width="29.2963" x="3.88715" y="12.327"/>
  5841. </g>
  5842. <g >
  5843. <line class="fil3 str1" id="_144824728" x1="21.5059" x2="21.5133" y1="53.6723" y2="62.8965"/>
  5844. <line class="fil3 str1" id="_144822016" x1="28.7059" x2="28.7133" y1="53.6661" y2="62.8903"/>
  5845. <line class="fil3 str1" id="_144829456" x1="7.10589" x2="7.11326" y1="53.6661" y2="62.8903"/>
  5846. <line class="fil3 str1" id="_144819832" x1="14.3059" x2="14.3133" y1="53.6661" y2="62.8903"/>
  5847. </g>
  5848. <g >
  5849. <g >
  5850. <rect class="fil4" height="2.664" id="_144826048" width="7.17931" x="26.4793" y="19.4824"/>
  5851. <rect class="fil4" height="2.664" id="_144823816" width="7.17931" x="26.4793" y="24.8682"/>
  5852. <rect class="fil4" height="2.664" id="_144826288" width="7.17562" x="26.483" y="30.2539"/>
  5853. <rect class="fil4" height="2.664" id="_144823936" width="7.17902" x="26.4796" y="35.6397"/>
  5854. <rect class="fil4" height="2.664" id="_144820816" width="7.17931" x="26.4793" y="41.0255"/>
  5855. </g>
  5856. <g >
  5857. <rect class="fil4" height="2.664" id="_144817768" width="1.99559" x="2.45254" y="19.4824"/>
  5858. <rect class="fil4" height="2.664" id="_144819880" width="1.99559" x="2.45254" y="24.8682"/>
  5859. <rect class="fil4" height="2.664" id="_144822112" width="1.99559" x="2.45254" y="30.2539"/>
  5860. <rect class="fil4" height="2.664" id="_144820576" width="1.99559" x="2.45254" y="35.6397"/>
  5861. <rect class="fil4" height="2.664" id="_144821872" width="1.99559" x="2.45254" y="41.0255"/>
  5862. </g>
  5863. </g>
  5864. <g >
  5865. <g >
  5866. <rect class="fil1" height="2.66406" id="_144818008" width="2.664" x="11.7439" y="19.4818"/>
  5867. <rect class="fil1" height="2.66406" id="_144821656" width="2.664" x="16.8463" y="19.4818"/>
  5868. <rect class="fil1" height="2.66406" id="_144829816" width="2.664" x="21.6652" y="19.4818"/>
  5869. <path class="fil1" d="M26.4841,19.4817l4.48668,0c0.587055,0,1.06668,0.237827,1.06668,0.528945l0,1.60611c0,0.291118,-0.479622,0.529228,-1.06668,0.529228l-4.48668,0,0,-2.66428z" id="_144831328" />
  5870. <rect class="fil1" height="2.66406" id="_144827224" width="4.8566" x="4.44898" y="19.4818"/>
  5871. </g>
  5872. <g >
  5873. <rect class="fil1" height="2.66406" id="_144824824" width="2.664" x="11.7439" y="24.8676"/>
  5874. <rect class="fil1" height="2.66406" id="_144817504" width="2.664" x="16.8463" y="24.8676"/>
  5875. <rect class="fil1" height="2.66406" id="_144825928" width="2.664" x="21.6652" y="24.8676"/>
  5876. <path class="fil1" d="M26.4841,24.8675l4.48668,0c0.587055,0,1.06668,0.237827,1.06668,0.528945l0,1.60611c0,0.291118,-0.479622,0.529228,-1.06668,0.529228l-4.48668,0,0,-2.66428z" id="_144829048" />
  5877. <rect class="fil1" height="2.66406" id="_144825112" width="4.8566" x="4.44898" y="24.8676"/>
  5878. </g>
  5879. <g >
  5880. <rect class="fil1" height="2.66406" id="_144821512" width="2.664" x="11.7439" y="30.2533"/>
  5881. <rect class="fil1" height="2.66406" id="_144822784" width="2.664" x="16.8463" y="30.2533"/>
  5882. <rect class="fil1" height="2.66406" id="_144822664" width="2.664" x="21.6652" y="30.2533"/>
  5883. <path class="fil1" d="M26.4841,30.2533l4.48668,0c0.587055,0,1.06668,0.237827,1.06668,0.528945l0,1.60611c0,0.291118,-0.479622,0.529228,-1.06668,0.529228l-4.48668,0,0,-2.66428z" id="_144820672" />
  5884. <rect class="fil1" height="2.66406" id="_144824752" width="4.8566" x="4.44898" y="30.2533"/>
  5885. </g>
  5886. <g >
  5887. <rect class="fil1" height="2.66406" id="_144828472" width="2.664" x="11.7439" y="35.6391"/>
  5888. <rect class="fil1" height="2.66406" id="_144821968" width="2.664" x="16.8463" y="35.6391"/>
  5889. <rect class="fil1" height="2.66406" id="_144828256" width="2.664" x="21.6652" y="35.6391"/>
  5890. <path class="fil1" d="M26.4841,35.6391l4.48668,0c0.587055,0,1.06668,0.237827,1.06668,0.528945l0,1.60611c0,0.291118,-0.479622,0.529228,-1.06668,0.529228l-4.48668,0,0,-2.66428z" id="_144828376" />
  5891. <rect class="fil1" height="2.66406" id="_144823504" width="4.8566" x="4.44898" y="35.6391"/>
  5892. </g>
  5893. <g >
  5894. <rect class="fil1" height="2.66406" id="_144825784" width="2.664" x="11.7439" y="41.025"/>
  5895. <rect class="fil1" height="2.66406" id="_144826936" width="2.664" x="16.8463" y="41.025"/>
  5896. <rect class="fil1" height="2.66406" id="_144826912" width="2.664" x="21.6652" y="41.025"/>
  5897. <path class="fil1" d="M26.4841,41.025l4.48668,0c0.587055,0,1.06668,0.237827,1.06668,0.528945l0,1.60611c0,0.291118,-0.479622,0.529228,-1.06668,0.529228l-4.48668,0,0,-2.66428z" id="_144827152" />
  5898. <rect class="fil1" height="2.66406" id="_144827080" width="4.8566" x="4.44898" y="41.025"/>
  5899. </g>
  5900. </g>
  5901. <g >
  5902. <g >
  5903. <g >
  5904. <g >
  5905. <rect class="fil5" height="39.6357" id="_144817024" width="2.43751" x="9.30671" y="12.0137"/>
  5906. <rect class="fil5" height="2.12326" id="_144817168" rx="0.166677" ry="0.166677" width="2.42306" x="9.31876" y="11.215"/>
  5907. </g>
  5908. <g >
  5909. <rect class="fil5" height="39.6357" id="_144817240" width="2.43751" x="14.4091" y="12.0137"/>
  5910. <rect class="fil5" height="2.12326" id="_144816328" rx="0.166677" ry="0.166677" width="2.42306" x="14.4211" y="11.215"/>
  5911. </g>
  5912. <g >
  5913. <rect class="fil5" height="39.6357" id="_144815368" width="2.43751" x="19.5114" y="12.0137"/>
  5914. <rect class="fil5" height="2.12326" id="_144818248" rx="0.166677" ry="0.166677" width="2.42306" x="19.5235" y="11.215"/>
  5915. </g>
  5916. <g >
  5917. <rect class="fil5" height="39.6357" id="_144817960" width="2.43751" x="24.3303" y="12.0137"/>
  5918. <rect class="fil5" height="2.12326" id="_144818128" rx="0.166677" ry="0.166677" width="2.42306" x="24.3424" y="11.215"/>
  5919. </g>
  5920. </g>
  5921. <g >
  5922. <g >
  5923. <rect class="fil5" height="3.55861" id="_144817864" width="30.714" x="2.81424" y="15.9148"/>
  5924. <rect class="fil5" height="3.55833" id="_144817720" rx="0.256252" ry="0.256252" width="3.41603" x="1.88787" y="15.9231"/>
  5925. <rect class="fil5" height="3.55833" id="_144817408" rx="0.256252" ry="0.256252" width="3.5606" x="30.5178" y="15.9231"/>
  5926. </g>
  5927. <g >
  5928. <rect class="fil5" height="2.66684" id="_144817744" width="30.714" x="2.81424" y="22.1899"/>
  5929. <rect class="fil5" height="2.66663" id="_144828448" rx="0.256252" ry="0.256252" width="3.41603" x="1.88787" y="22.196"/>
  5930. <rect class="fil5" height="2.66663" id="_144815320" rx="0.256252" ry="0.256252" width="3.5606" x="30.5178" y="22.196"/>
  5931. </g>
  5932. <g >
  5933. <rect class="fil5" height="2.707" id="_144826264" width="30.714" x="2.81424" y="27.5355"/>
  5934. <rect class="fil5" height="2.70679" id="_144825736" rx="0.256252" ry="0.256252" width="3.41603" x="1.88787" y="27.5417"/>
  5935. <rect class="fil5" height="2.70679" id="_144821320" rx="0.256252" ry="0.256252" width="3.5606" x="30.5178" y="27.5417"/>
  5936. </g>
  5937. <g >
  5938. <rect class="fil5" height="2.707" id="_144828688" width="30.714" x="2.81424" y="32.9213"/>
  5939. <rect class="fil5" height="2.70679" id="_144819808" rx="0.256252" ry="0.256252" width="3.41603" x="1.88787" y="32.9275"/>
  5940. <rect class="fil5" height="2.70679" id="_144820288" rx="0.256252" ry="0.256252" width="3.5606" x="30.5178" y="32.9275"/>
  5941. </g>
  5942. <g >
  5943. <rect class="fil5" height="2.707" id="_144820888" width="30.714" x="2.81424" y="38.3071"/>
  5944. <rect class="fil5" height="2.70679" id="_144819568" rx="0.256252" ry="0.256252" width="3.41603" x="1.88787" y="38.3134"/>
  5945. <rect class="fil5" height="2.70679" id="_144818536" rx="0.256252" ry="0.256252" width="3.5606" x="30.5178" y="38.3134"/>
  5946. </g>
  5947. </g>
  5948. </g>
  5949. <g >
  5950. <g >
  5951. <rect class="fil5" height="7.32104" id="_144827800" width="31.7772" x="2.24334" y="45.1397"/>
  5952. <rect class="fil5" height="2.58576" id="_144826000" rx="0.19389" ry="0.19389" width="2.63452" x="2.2354" y="43.7026"/>
  5953. <rect class="fil5" height="2.58576" id="_144827488" rx="0.19389" ry="0.19389" width="2.60249" x="31.4323" y="43.7026"/>
  5954. <rect class="fil5" height="2.43496" id="_144825808" rx="0.646299" ry="0.646299" width="2.63452" x="2.2354" y="51.0727"/>
  5955. <rect class="fil5" height="2.43496" id="_144825208" rx="0.646299" ry="0.646299" width="2.58803" x="31.4323" y="51.0727"/>
  5956. <rect class="fil5" height="8.60066" id="_144821752" width="27.6879" x="4.29168" y="44.3265"/>
  5957. <rect class="fil5" height="9.8195" id="_144821560" width="29.2963" x="3.32022" y="43.6881"/>
  5958. </g>
  5959. <g >
  5960. <rect class="fil5" height="6.33317" id="_144822040" rx="1.26652" ry="1.26652" width="9.03146" x="1.90233" y="11.2085"/>
  5961. <rect class="fil5" height="6.33317" id="_144822280" rx="1.26652" ry="1.26652" width="8.93055" x="25.1334" y="11.2085"/>
  5962. </g>
  5963. </g>
  5964. </g>
  5965. <g >
  5966. <g >
  5967. <g >
  5968. <rect class="fil6" height="1.96186" id="_144827680" width="2.65578" x="11.7454" y="13.9538"/>
  5969. <rect class="fil6" height="1.96186" id="_144824176" width="2.65578" x="16.8477" y="13.9538"/>
  5970. <rect class="fil6" height="1.96186" id="_144822616" width="2.25383" x="21.9563" y="13.9538"/>
  5971. </g>
  5972. <g >
  5973. <path class="fil3 str2" d="M11.7442,14.8178c2.66343,0,2.66343,0,2.66343,0" id="_144828880" />
  5974. <path class="fil3 str3" d="M16.8471,14.6945c0.834236,-0.00510236,1.29231,0.401953,1.34532,1.21465" id="_144823480" />
  5975. </g>
  5976. </g>
  5977. <g >
  5978. <rect class="fil7" height="1.96186" id="_144817384" width="2.65578" x="11.7454" y="12.0132"/>
  5979. <rect class="fil7" height="1.96186" id="_144825040" width="2.65578" x="16.8477" y="12.0132"/>
  5980. <rect class="fil7" height="1.96186" id="_144817648" width="2.25383" x="21.9563" y="12.0132"/>
  5981. </g>
  5982. </g>
  5983. </g>
  5984. </g>
  5985. <rect fill="none" height="4" id="connector8" width="4" x="5.06049" y="58.7631"/>
  5986. <rect fill="none" height="4" id="connector9" width="4" x="12.4017" y="58.7631"/>
  5987. <rect fill="none" height="4" id="connector10" width="4" x="19.3664" y="58.9514"/>
  5988. <rect fill="none" height="4" id="connector11" width="4" x="26.7075" y="58.7631"/>
  5989. </g>
  5990. </g>
  5991. </g>
  5992. <g partID="855167650">
  5993. <g transform="translate(52.084,275.012)">
  5994. <g id="breadboard" >
  5995. <g >
  5996. <polygon fill="#8C8C8C" points="14.8219,23.7449,14.8219,15.4706,16.9819,15.4706,16.9819,23.7449" />
  5997. <polygon fill="#8C8C8C" points="0.42192,8.27496,0.42192,0.00072,2.58048,0.00072,2.58048,8.27496" />
  5998. <polygon fill="#8C8C8C" points="14.8219,8.27568,14.8219,0,16.9819,0,16.9819,8.27568" />
  5999. <polygon fill="#8C8C8C" points="0.42264,23.7463,0.42264,15.4706,2.58192,15.4706,2.58192,23.7463" />
  6000. <rect height="17.6544" width="17.653" x="0.00864" y="3.04704"/>
  6001. <path d="M17.6609,19.2614c0,0.79272,-0.64512,1.43928,-1.44,1.43928L1.44792,20.7007c-0.79272,0,-1.43928,-0.64656,-1.43928,-1.43928L0.00864,4.4856c0,-0.792,0.64656,-1.43856,1.43928,-1.43856l14.7751,0c0.79416,0,1.43784,0.64656,1.43784,1.43856L17.6609,19.2614L17.6609,19.2614z" fill="#999999" />
  6002. <circle cx="2.57976" cy="5.61816" r="1.52928" />
  6003. <circle cx="15.133" cy="5.6448" r="1.52928" />
  6004. <circle cx="15.1063" cy="18.198" r="1.52928" />
  6005. <circle cx="2.55312" cy="18.1699" r="1.52928" />
  6006. <circle cx="8.8344" cy="11.8735" fill="#3F3F3F" r="5.148" />
  6007. <linearGradient gradientTransform="matrix(1 0 0 -1 273 -448.8574)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-192.873" x2="-182.577" y1="-335.051" y2="-335.051">
  6008. <stop offset="0" style="stop-color:#333333" />
  6009. <stop offset="1" style="stop-color:#3C3C3C" />
  6010. </linearGradient>
  6011. <circle cx="8.8344" cy="11.8735" fill="url(#SVGID_1_)" r="5.148" />
  6012. <circle cx="8.9244" cy="12.4855" enable-background="new " opacity="0.6" r="4.53024" />
  6013. <circle cx="8.84088" cy="11.9038" fill="#735348" r="4.41504" />
  6014. <path d="M2.38176,5.53824c0.03024,-0.072,0.08568,-0.12744,0.16416,-0.14112L2.39472,4.43376C2.33712,4.44312,2.27592,4.4352,2.21904,4.45248L2.2176,4.44816C1.8612,4.55832,1.5948,4.824,1.45872,5.16312L2.38176,5.53824z" enable-background="new " fill="#FFFFFF" opacity="0.5" />
  6015. <path d="M14.9335,5.56416c0.02952,-0.07344,0.08496,-0.12888,0.16488,-0.14184l-0.14904,-0.96336c-0.05904,0.0108,-0.11952,0.00144,-0.1764,0.01872l-0.00216,-0.00504c-0.35496,0.10944,-0.62208,0.37512,-0.75816,0.71496L14.9335,5.56416z" enable-background="new " fill="#FFFFFF" opacity="0.5" />
  6016. <path d="M14.909,18.1174c0.02952,-0.07344,0.08352,-0.1296,0.16344,-0.14184l-0.14904,-0.96264c-0.05904,0.0108,-0.11952,0.00144,-0.17712,0.01872l-0.00144,-0.0072c-0.35568,0.10944,-0.6228,0.37512,-0.75816,0.71568L14.909,18.1174z" enable-background="new " fill="#FFFFFF" opacity="0.5" />
  6017. <path d="M2.35512,18.0907c0.02952,-0.07344,0.08496,-0.12672,0.16488,-0.1404l-0.1512,-0.96408c-0.05904,0.01224,-0.11952,0.00144,-0.1764,0.01944l-0.00144,-0.00504c-0.3564,0.108,-0.6228,0.37512,-0.76032,0.71424L2.35512,18.0907z" enable-background="new " fill="#FFFFFF" opacity="0.5" />
  6018. <path d="M10.4206,7.78896c-0.342,-0.1332,-0.702,-0.22896,-1.08288,-0.27216c-0.94752,-0.10584,-1.85472,0.1044,-2.63016,0.53424L6.61104,8.3016c0.86616,-0.46296,1.87488,-0.67752,2.92464,-0.56016c0.32256,0.03744,0.63648,0.10944,0.93672,0.20448L10.4206,7.78896z" enable-background="new " fill="#FFFFFF" opacity="0.6" />
  6019. </g>
  6020. </g>
  6021. </g>
  6022. </g>
  6023. <g partID="855166370">
  6024. <g transform="translate(73.684,275.012)">
  6025. <g id="breadboard" >
  6026. <g >
  6027. <polygon fill="#8C8C8C" points="14.8219,23.7449,14.8219,15.4706,16.9819,15.4706,16.9819,23.7449" />
  6028. <polygon fill="#8C8C8C" points="0.42192,8.27496,0.42192,0.00072,2.58048,0.00072,2.58048,8.27496" />
  6029. <polygon fill="#8C8C8C" points="14.8219,8.27568,14.8219,0,16.9819,0,16.9819,8.27568" />
  6030. <polygon fill="#8C8C8C" points="0.42264,23.7463,0.42264,15.4706,2.58192,15.4706,2.58192,23.7463" />
  6031. <rect height="17.6544" width="17.653" x="0.00864" y="3.04704"/>
  6032. <path d="M17.6609,19.2614c0,0.79272,-0.64512,1.43928,-1.44,1.43928L1.44792,20.7007c-0.79272,0,-1.43928,-0.64656,-1.43928,-1.43928L0.00864,4.4856c0,-0.792,0.64656,-1.43856,1.43928,-1.43856l14.7751,0c0.79416,0,1.43784,0.64656,1.43784,1.43856L17.6609,19.2614L17.6609,19.2614z" fill="#999999" />
  6033. <circle cx="2.57976" cy="5.61816" r="1.52928" />
  6034. <circle cx="15.133" cy="5.6448" r="1.52928" />
  6035. <circle cx="15.1063" cy="18.198" r="1.52928" />
  6036. <circle cx="2.55312" cy="18.1699" r="1.52928" />
  6037. <circle cx="8.8344" cy="11.8735" fill="#3F3F3F" r="5.148" />
  6038. <linearGradient gradientTransform="matrix(1 0 0 -1 273 -448.8574)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-192.873" x2="-182.577" y1="-335.051" y2="-335.051">
  6039. <stop offset="0" style="stop-color:#333333" />
  6040. <stop offset="1" style="stop-color:#3C3C3C" />
  6041. </linearGradient>
  6042. <circle cx="8.8344" cy="11.8735" fill="url(#SVGID_1_)" r="5.148" />
  6043. <circle cx="8.9244" cy="12.4855" enable-background="new " opacity="0.6" r="4.53024" />
  6044. <circle cx="8.84088" cy="11.9038" fill="#735348" r="4.41504" />
  6045. <path d="M2.38176,5.53824c0.03024,-0.072,0.08568,-0.12744,0.16416,-0.14112L2.39472,4.43376C2.33712,4.44312,2.27592,4.4352,2.21904,4.45248L2.2176,4.44816C1.8612,4.55832,1.5948,4.824,1.45872,5.16312L2.38176,5.53824z" enable-background="new " fill="#FFFFFF" opacity="0.5" />
  6046. <path d="M14.9335,5.56416c0.02952,-0.07344,0.08496,-0.12888,0.16488,-0.14184l-0.14904,-0.96336c-0.05904,0.0108,-0.11952,0.00144,-0.1764,0.01872l-0.00216,-0.00504c-0.35496,0.10944,-0.62208,0.37512,-0.75816,0.71496L14.9335,5.56416z" enable-background="new " fill="#FFFFFF" opacity="0.5" />
  6047. <path d="M14.909,18.1174c0.02952,-0.07344,0.08352,-0.1296,0.16344,-0.14184l-0.14904,-0.96264c-0.05904,0.0108,-0.11952,0.00144,-0.17712,0.01872l-0.00144,-0.0072c-0.35568,0.10944,-0.6228,0.37512,-0.75816,0.71568L14.909,18.1174z" enable-background="new " fill="#FFFFFF" opacity="0.5" />
  6048. <path d="M2.35512,18.0907c0.02952,-0.07344,0.08496,-0.12672,0.16488,-0.1404l-0.1512,-0.96408c-0.05904,0.01224,-0.11952,0.00144,-0.1764,0.01944l-0.00144,-0.00504c-0.3564,0.108,-0.6228,0.37512,-0.76032,0.71424L2.35512,18.0907z" enable-background="new " fill="#FFFFFF" opacity="0.5" />
  6049. <path d="M10.4206,7.78896c-0.342,-0.1332,-0.702,-0.22896,-1.08288,-0.27216c-0.94752,-0.10584,-1.85472,0.1044,-2.63016,0.53424L6.61104,8.3016c0.86616,-0.46296,1.87488,-0.67752,2.92464,-0.56016c0.32256,0.03744,0.63648,0.10944,0.93672,0.20448L10.4206,7.78896z" enable-background="new " fill="#FFFFFF" opacity="0.6" />
  6050. </g>
  6051. </g>
  6052. </g>
  6053. </g>
  6054. <g partID="855166400">
  6055. <g transform="translate(95.284,275.012)">
  6056. <g id="breadboard" >
  6057. <g >
  6058. <polygon fill="#8C8C8C" points="14.8219,23.7449,14.8219,15.4706,16.9819,15.4706,16.9819,23.7449" />
  6059. <polygon fill="#8C8C8C" points="0.42192,8.27496,0.42192,0.00072,2.58048,0.00072,2.58048,8.27496" />
  6060. <polygon fill="#8C8C8C" points="14.8219,8.27568,14.8219,0,16.9819,0,16.9819,8.27568" />
  6061. <polygon fill="#8C8C8C" points="0.42264,23.7463,0.42264,15.4706,2.58192,15.4706,2.58192,23.7463" />
  6062. <rect height="17.6544" width="17.653" x="0.00864" y="3.04704"/>
  6063. <path d="M17.6609,19.2614c0,0.79272,-0.64512,1.43928,-1.44,1.43928L1.44792,20.7007c-0.79272,0,-1.43928,-0.64656,-1.43928,-1.43928L0.00864,4.4856c0,-0.792,0.64656,-1.43856,1.43928,-1.43856l14.7751,0c0.79416,0,1.43784,0.64656,1.43784,1.43856L17.6609,19.2614L17.6609,19.2614z" fill="#999999" />
  6064. <circle cx="2.57976" cy="5.61816" r="1.52928" />
  6065. <circle cx="15.133" cy="5.6448" r="1.52928" />
  6066. <circle cx="15.1063" cy="18.198" r="1.52928" />
  6067. <circle cx="2.55312" cy="18.1699" r="1.52928" />
  6068. <circle cx="8.8344" cy="11.8735" fill="#3F3F3F" r="5.148" />
  6069. <linearGradient gradientTransform="matrix(1 0 0 -1 273 -448.8574)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-192.873" x2="-182.577" y1="-335.051" y2="-335.051">
  6070. <stop offset="0" style="stop-color:#333333" />
  6071. <stop offset="1" style="stop-color:#3C3C3C" />
  6072. </linearGradient>
  6073. <circle cx="8.8344" cy="11.8735" fill="url(#SVGID_1_)" r="5.148" />
  6074. <circle cx="8.9244" cy="12.4855" enable-background="new " opacity="0.6" r="4.53024" />
  6075. <circle cx="8.84088" cy="11.9038" fill="#735348" r="4.41504" />
  6076. <path d="M2.38176,5.53824c0.03024,-0.072,0.08568,-0.12744,0.16416,-0.14112L2.39472,4.43376C2.33712,4.44312,2.27592,4.4352,2.21904,4.45248L2.2176,4.44816C1.8612,4.55832,1.5948,4.824,1.45872,5.16312L2.38176,5.53824z" enable-background="new " fill="#FFFFFF" opacity="0.5" />
  6077. <path d="M14.9335,5.56416c0.02952,-0.07344,0.08496,-0.12888,0.16488,-0.14184l-0.14904,-0.96336c-0.05904,0.0108,-0.11952,0.00144,-0.1764,0.01872l-0.00216,-0.00504c-0.35496,0.10944,-0.62208,0.37512,-0.75816,0.71496L14.9335,5.56416z" enable-background="new " fill="#FFFFFF" opacity="0.5" />
  6078. <path d="M14.909,18.1174c0.02952,-0.07344,0.08352,-0.1296,0.16344,-0.14184l-0.14904,-0.96264c-0.05904,0.0108,-0.11952,0.00144,-0.17712,0.01872l-0.00144,-0.0072c-0.35568,0.10944,-0.6228,0.37512,-0.75816,0.71568L14.909,18.1174z" enable-background="new " fill="#FFFFFF" opacity="0.5" />
  6079. <path d="M2.35512,18.0907c0.02952,-0.07344,0.08496,-0.12672,0.16488,-0.1404l-0.1512,-0.96408c-0.05904,0.01224,-0.11952,0.00144,-0.1764,0.01944l-0.00144,-0.00504c-0.3564,0.108,-0.6228,0.37512,-0.76032,0.71424L2.35512,18.0907z" enable-background="new " fill="#FFFFFF" opacity="0.5" />
  6080. <path d="M10.4206,7.78896c-0.342,-0.1332,-0.702,-0.22896,-1.08288,-0.27216c-0.94752,-0.10584,-1.85472,0.1044,-2.63016,0.53424L6.61104,8.3016c0.86616,-0.46296,1.87488,-0.67752,2.92464,-0.56016c0.32256,0.03744,0.63648,0.10944,0.93672,0.20448L10.4206,7.78896z" enable-background="new " fill="#FFFFFF" opacity="0.6" />
  6081. </g>
  6082. </g>
  6083. </g>
  6084. </g>
  6085. <g partID="855166430">
  6086. <g transform="translate(116.884,275.012)">
  6087. <g id="breadboard" >
  6088. <g >
  6089. <polygon fill="#8C8C8C" points="14.8219,23.7449,14.8219,15.4706,16.9819,15.4706,16.9819,23.7449" />
  6090. <polygon fill="#8C8C8C" points="0.42192,8.27496,0.42192,0.00072,2.58048,0.00072,2.58048,8.27496" />
  6091. <polygon fill="#8C8C8C" points="14.8219,8.27568,14.8219,0,16.9819,0,16.9819,8.27568" />
  6092. <polygon fill="#8C8C8C" points="0.42264,23.7463,0.42264,15.4706,2.58192,15.4706,2.58192,23.7463" />
  6093. <rect height="17.6544" width="17.653" x="0.00864" y="3.04704"/>
  6094. <path d="M17.6609,19.2614c0,0.79272,-0.64512,1.43928,-1.44,1.43928L1.44792,20.7007c-0.79272,0,-1.43928,-0.64656,-1.43928,-1.43928L0.00864,4.4856c0,-0.792,0.64656,-1.43856,1.43928,-1.43856l14.7751,0c0.79416,0,1.43784,0.64656,1.43784,1.43856L17.6609,19.2614L17.6609,19.2614z" fill="#999999" />
  6095. <circle cx="2.57976" cy="5.61816" r="1.52928" />
  6096. <circle cx="15.133" cy="5.6448" r="1.52928" />
  6097. <circle cx="15.1063" cy="18.198" r="1.52928" />
  6098. <circle cx="2.55312" cy="18.1699" r="1.52928" />
  6099. <circle cx="8.8344" cy="11.8735" fill="#3F3F3F" r="5.148" />
  6100. <linearGradient gradientTransform="matrix(1 0 0 -1 273 -448.8574)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-192.873" x2="-182.577" y1="-335.051" y2="-335.051">
  6101. <stop offset="0" style="stop-color:#333333" />
  6102. <stop offset="1" style="stop-color:#3C3C3C" />
  6103. </linearGradient>
  6104. <circle cx="8.8344" cy="11.8735" fill="url(#SVGID_1_)" r="5.148" />
  6105. <circle cx="8.9244" cy="12.4855" enable-background="new " opacity="0.6" r="4.53024" />
  6106. <circle cx="8.84088" cy="11.9038" fill="#735348" r="4.41504" />
  6107. <path d="M2.38176,5.53824c0.03024,-0.072,0.08568,-0.12744,0.16416,-0.14112L2.39472,4.43376C2.33712,4.44312,2.27592,4.4352,2.21904,4.45248L2.2176,4.44816C1.8612,4.55832,1.5948,4.824,1.45872,5.16312L2.38176,5.53824z" enable-background="new " fill="#FFFFFF" opacity="0.5" />
  6108. <path d="M14.9335,5.56416c0.02952,-0.07344,0.08496,-0.12888,0.16488,-0.14184l-0.14904,-0.96336c-0.05904,0.0108,-0.11952,0.00144,-0.1764,0.01872l-0.00216,-0.00504c-0.35496,0.10944,-0.62208,0.37512,-0.75816,0.71496L14.9335,5.56416z" enable-background="new " fill="#FFFFFF" opacity="0.5" />
  6109. <path d="M14.909,18.1174c0.02952,-0.07344,0.08352,-0.1296,0.16344,-0.14184l-0.14904,-0.96264c-0.05904,0.0108,-0.11952,0.00144,-0.17712,0.01872l-0.00144,-0.0072c-0.35568,0.10944,-0.6228,0.37512,-0.75816,0.71568L14.909,18.1174z" enable-background="new " fill="#FFFFFF" opacity="0.5" />
  6110. <path d="M2.35512,18.0907c0.02952,-0.07344,0.08496,-0.12672,0.16488,-0.1404l-0.1512,-0.96408c-0.05904,0.01224,-0.11952,0.00144,-0.1764,0.01944l-0.00144,-0.00504c-0.3564,0.108,-0.6228,0.37512,-0.76032,0.71424L2.35512,18.0907z" enable-background="new " fill="#FFFFFF" opacity="0.5" />
  6111. <path d="M10.4206,7.78896c-0.342,-0.1332,-0.702,-0.22896,-1.08288,-0.27216c-0.94752,-0.10584,-1.85472,0.1044,-2.63016,0.53424L6.61104,8.3016c0.86616,-0.46296,1.87488,-0.67752,2.92464,-0.56016c0.32256,0.03744,0.63648,0.10944,0.93672,0.20448L10.4206,7.78896z" enable-background="new " fill="#FFFFFF" opacity="0.6" />
  6112. </g>
  6113. </g>
  6114. </g>
  6115. </g>
  6116. <g partID="855168460">
  6117. <g transform="translate(394.894,209.008)">
  6118. <g id="breadboard" >
  6119. <rect fill="none" height="0.72" id="connector0pin" width="2.16" x="5.40072" y="43.2"/>
  6120. <rect fill="none" height="0.72" id="connector1pin" width="2.16" x="12.5993" y="43.2"/>
  6121. <rect fill="none" height="0.72" id="connector2pin" width="2.16" x="19.7978" y="43.2"/>
  6122. <g fill="none" id="connector0leg" stroke="#8C8C8C" stroke-linecap="round" stroke-width="2.16" x1="9.001" x2="9.001" y1="62.317" y2="72.317"/>
  6123. <g fill="none" id="connector1leg" stroke="#8C8C8C" stroke-linecap="round" stroke-width="2.16" x1="18.999" x2="18.999" y1="62.317" y2="72.317"/>
  6124. <g fill="none" id="connector2leg" stroke="#8C8C8C" stroke-linecap="round" stroke-width="2.16" x1="28.997" x2="28.997" y1="62.317" y2="72.317"/>
  6125. <path d="M24.4778,0.36L13.6793,0.36l0,1.80144c3.13488,0,5.67,1.7784,5.67,3.97152c-0.00144,2.19168,-2.53656,3.96936,-5.67,3.96936l0,5.82264l10.7986,0L24.4778,0.36z" fill="#BFBCBC" />
  6126. <path d="M8.01072,6.13008C8.01072,3.93624,10.5473,2.16,13.6793,2.16L13.6793,0.35928L2.88072,0.35928L2.88072,15.9192l10.7986,0l0,-5.82192C10.5473,10.0987,8.01072,8.32248,8.01072,6.13008z" fill="#808080" />
  6127. <rect fill="#8C8C8C" height="11.3666" id="rect4" width="2.16" x="5.40072" y="33.5016"/>
  6128. <rect fill="#8C8C8C" height="11.3666" id="rect6" width="2.16" x="12.5993" y="33.5016"/>
  6129. <rect fill="#8C8C8C" height="11.3666" id="rect8" width="2.16" x="19.7978" y="33.5016"/>
  6130. <polygon fill="#CCCCCC" id="polygon10" points="0.36072,3.258,0.36072,12.8628,2.88072,12.8628,2.88072,0.36" />
  6131. <polygon fill="#999999" id="polygon12" points="26.9978,3.258,24.4778,0.36,24.4778,12.8628,26.9978,12.8628" />
  6132. <polygon fill="#8C8C8C" id="polygon21" points="9.00072,40.806,7.38792,41.526,5.57352,41.526,3.96072,40.806,3.96072,32.0364,9.00072,32.0364" />
  6133. <polygon fill="#8C8C8C" id="polygon23" points="16.1993,40.806,14.5865,41.526,12.7728,41.526,11.1593,40.806,11.1593,32.0364,16.1993,32.0364" />
  6134. <polygon fill="#8C8C8C" id="polygon25" points="23.3978,40.806,21.785,41.526,19.9721,41.526,18.3593,40.806,18.3593,32.0364,23.3978,32.0364" />
  6135. <rect fill="#141414" height="15.9998" width="8.64" x="18.3593" y="22.6958"/>
  6136. <rect fill="#333333" height="15.9998" width="8.64" x="0.36072" y="22.6958"/>
  6137. <path d="M0.36072,28.5545l0,5.16672c2.0376,0,3.69,-1.15488,3.69,-2.58336C4.05072,29.7115,2.39832,28.5545,0.36072,28.5545z" fill="#262626" id="path40_1_" />
  6138. <path d="M26.9978,28.5545c-2.0376,0,-3.69,1.15488,-3.69,2.58336c0,1.42488,1.6524,2.58336,3.69,2.58336L26.9978,28.5545z" id="path47" />
  6139. <path d="M0.36072,22.6958l0,7.11936c2.0376,0,3.69,1.15632,3.69,2.58336c0,1.42704,-1.6524,2.58336,-3.69,2.58336l0,3.71376l26.6386,0L26.9993,22.6958L0.36072,22.6958zM26.9978,34.9812c-2.0376,0,-3.69,-1.15488,-3.69,-2.58336c0,-1.42488,1.6524,-2.58336,3.69,-2.58336L26.9978,34.9812z" fill="#1A1A1A" />
  6140. <rect height="3.34728" id="rect49" width="26.6386" x="0.36072" y="19.3478"/>
  6141. <rect fill="#333333" height="4.13856" id="rect51" width="26.6386" x="0.36072" y="15.2093"/>
  6142. <rect fill="#B2B2B2" height="3.06" id="rect53" width="21.5986" x="2.88072" y="0.36"/>
  6143. <path d="M24.4778,2.70648L2.88072,2.70648l-2.52,2.89728l0,9.6048l26.6371,0L26.9978,5.60376L24.4778,2.70648zM13.6793,12.4459c-3.132,0,-5.66856,-1.77696,-5.66856,-3.96936c0,-2.19168,2.53656,-3.96792,5.66856,-3.96792c3.13488,0,5.67,1.77696,5.67,3.96792C19.3478,10.6682,16.8127,12.4459,13.6793,12.4459z" fill="#8C8C8C" id="path55" />
  6144. <g >
  6145. <path d="M8.40456,23.1372l0,0.54l-2.16,0l0,0.54l1.62,0l0,0.54l-1.62,0l0,1.08l-1.08,0l0,-2.7L8.40456,23.1372z" fill="#6D6D6D" />
  6146. <path d="M12.1846,23.1372l0,0.54l-2.16,0l0,0.54l1.62,0l0,0.54l-1.62,0l0,0.54l2.16,0l0,0.54l-3.24,0l0,-2.7L12.1846,23.1372z" fill="#6D6D6D" />
  6147. <path d="M12.7246,23.6772l0,-0.54l3.24,0l0,0.54l-1.08,0l0,2.16l-1.08,0l0,-2.16L12.7246,23.6772z" fill="#6D6D6D" />
  6148. <path d="M18.6646,25.8372l0,-2.7l1.08,0l0,0.54l0.54,0l0,0.54l0.54,0l0,-1.08l1.08,0l0,2.7l-1.08,0l0,-0.54l-0.54,0l0,-0.54l-0.54,0l0,1.08L18.6646,25.8372z" fill="#6D6D6D" />
  6149. </g>
  6150. </g>
  6151. </g>
  6152. </g>
  6153. <path d="M401.375,253.876L399.2,262.143" fill="none" opacity="1" stroke="#8c8c8c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.16"/>
  6154. <path d="M400.218,258.274L399.2,262.143" fill="none" opacity="0.2" stroke="#00ff00" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.16"/>
  6155. <path d="M408.574,253.876L406.4,262.143" fill="none" opacity="1" stroke="#8c8c8c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.16"/>
  6156. <path d="M407.417,258.274L406.4,262.143" fill="none" opacity="0.2" stroke="#00ff00" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.16"/>
  6157. <path d="M415.772,253.876L413.6,262.143" fill="none" opacity="1" stroke="#8c8c8c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.16"/>
  6158. <path d="M414.617,258.274L413.6,262.143" fill="none" opacity="0.2" stroke="#00ff00" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.16"/>
  6159. <g partID="855172390">
  6160. <g transform="translate(210.635,313.507)">
  6161. <g id="breadboard">
  6162. <path d="M0,0l227.347,0l0,108.684L0,108.684L0,0zM21.525,13.436c0,0.795,0.645,1.44,1.44,1.44s1.44,-0.645,1.44,-1.44c0,-0.795,-0.644,-1.44,-1.439,-1.441s-1.44,0.644,-1.441,1.439C21.525,13.435,21.525,13.436,21.525,13.436zM28.726,13.436c-0.001,0.795,0.644,1.44,1.439,1.441c0.795,0,1.44,-0.644,1.441,-1.439c0,0,0,-0.001,0,-0.002c0,-0.795,-0.644,-1.44,-1.439,-1.441s-1.44,0.644,-1.441,1.439C28.726,13.435,28.726,13.436,28.726,13.436zM35.925,13.436c0,0.795,0.644,1.44,1.439,1.441c0.795,0,1.44,-0.644,1.441,-1.439c0,0,0,-0.001,0,-0.002c0.001,-0.795,-0.644,-1.44,-1.439,-1.441c-0.795,0,-1.44,0.644,-1.441,1.439C35.925,13.435,35.925,13.436,35.925,13.436zM43.125,13.436c0,0.795,0.645,1.44,1.44,1.44s1.44,-0.645,1.44,-1.44c0,-0.795,-0.644,-1.44,-1.439,-1.441s-1.44,0.644,-1.441,1.439C43.125,13.435,43.125,13.436,43.125,13.436zM50.325,13.436c0,0.795,0.645,1.44,1.44,1.44c0.795,0,1.44,-0.645,1.44,-1.44c0,-0.795,-0.645,-1.44,-1.44,-1.44C50.97,11.996,50.325,12.641,50.325,13.436L50.325,13.436zM57.525,13.436c0,0.795,0.645,1.44,1.44,1.44s1.44,-0.645,1.44,-1.44c0,-0.795,-0.645,-1.44,-1.44,-1.44S57.525,12.641,57.525,13.436L57.525,13.436zM64.726,13.436c0,0.795,0.645,1.44,1.44,1.44c0.795,0,1.44,-0.645,1.44,-1.44c0,-0.795,-0.645,-1.44,-1.44,-1.44C65.37,11.996,64.726,12.641,64.726,13.436L64.726,13.436zM71.925,13.436c0,0.795,0.645,1.44,1.44,1.44s1.44,-0.645,1.44,-1.44c0,-0.795,-0.645,-1.44,-1.44,-1.44S71.925,12.641,71.925,13.436L71.925,13.436zM79.125,13.436c0,0.795,0.645,1.44,1.44,1.44s1.44,-0.645,1.44,-1.44c0,-0.795,-0.645,-1.44,-1.44,-1.44S79.125,12.641,79.125,13.436L79.125,13.436zM86.325,13.436c0,0.795,0.645,1.44,1.44,1.44c0.795,0,1.44,-0.645,1.44,-1.44c0,-0.795,-0.645,-1.44,-1.44,-1.44C86.97,11.996,86.325,12.641,86.325,13.436L86.325,13.436zM93.525,13.436c-0.001,0.795,0.643,1.441,1.438,1.442c0.795,0.001,1.441,-0.643,1.442,-1.438c0,-0.001,0,-0.003,0,-0.004c0.001,-0.795,-0.643,-1.441,-1.438,-1.442c-0.795,-0.001,-1.441,0.642,-1.442,1.438C93.525,13.433,93.525,13.435,93.525,13.436zM100.725,13.436c-0.001,0.795,0.643,1.441,1.438,1.442s1.441,-0.643,1.442,-1.438c0,-0.001,0,-0.003,0,-0.004c0.001,-0.795,-0.643,-1.441,-1.438,-1.442c-0.795,-0.001,-1.441,0.642,-1.442,1.438C100.725,13.433,100.725,13.435,100.725,13.436zM107.925,13.436c-0.001,0.795,0.643,1.441,1.438,1.442c0.795,0.001,1.441,-0.643,1.442,-1.438c0,-0.001,0,-0.003,0,-0.004c0.001,-0.795,-0.643,-1.441,-1.438,-1.442c-0.795,-0.001,-1.441,0.642,-1.442,1.438C107.925,13.433,107.925,13.435,107.925,13.436zM115.125,13.436c-0.001,0.795,0.643,1.441,1.438,1.442c0.796,0.001,1.441,-0.643,1.443,-1.438c0,-0.001,0,-0.003,0,-0.004c0,-0.795,-0.643,-1.441,-1.438,-1.442c-0.795,-0.001,-1.44,0.642,-1.442,1.438C115.125,13.433,115.125,13.435,115.125,13.436zM122.325,13.436c-0.001,0.795,0.643,1.441,1.438,1.442c0.795,0.001,1.44,-0.643,1.441,-1.438c0,-0.001,0,-0.003,0,-0.004c0.002,-0.795,-0.643,-1.441,-1.438,-1.442c-0.795,-0.001,-1.441,0.642,-1.442,1.438C122.325,13.433,122.325,13.435,122.325,13.436zM129.525,13.436c-0.002,0.795,0.643,1.441,1.438,1.442s1.441,-0.643,1.442,-1.438c0,-0.001,0,-0.003,0,-0.004c0.001,-0.795,-0.643,-1.441,-1.438,-1.442c-0.795,-0.001,-1.44,0.642,-1.441,1.438C129.525,13.433,129.525,13.435,129.525,13.436z" fill="#1F7A34"/>
  6163. <circle cx="22.965" cy="13.436" fill="none" id="connector0pin" r="2.052" stroke="#9A916C" stroke-width="0.4318"/>
  6164. <circle cx="30.166" cy="13.436" fill="none" id="connector1pin" r="2.052" stroke="#9A916C" stroke-width="0.4318"/>
  6165. <circle cx="37.365" cy="13.436" fill="none" id="connector2pin" r="2.052" stroke="#9A916C" stroke-width="0.4318"/>
  6166. <circle cx="44.565" cy="13.436" fill="none" id="connector3pin" r="2.052" stroke="#9A916C" stroke-width="0.4318"/>
  6167. <circle cx="51.765" cy="13.436" fill="none" id="connector4pin" r="2.052" stroke="#9A916C" stroke-width="0.4318"/>
  6168. <circle cx="58.965" cy="13.436" fill="none" id="connector5pin" r="2.052" stroke="#9A916C" stroke-width="0.4318"/>
  6169. <circle cx="66.166" cy="13.436" fill="none" id="connector6pin" r="2.052" stroke="#9A916C" stroke-width="0.4318"/>
  6170. <circle cx="73.365" cy="13.436" fill="none" id="connector7pin" r="2.052" stroke="#9A916C" stroke-width="0.4318"/>
  6171. <circle cx="80.565" cy="13.436" fill="none" id="connector8pin" r="2.052" stroke="#9A916C" stroke-width="0.4318"/>
  6172. <circle cx="87.765" cy="13.436" fill="none" id="connector9pin" r="2.052" stroke="#9A916C" stroke-width="0.4318"/>
  6173. <circle cx="94.965" cy="13.436" fill="none" id="connector10pin" r="2.052" stroke="#9A916C" stroke-width="0.4318"/>
  6174. <circle cx="102.166" cy="13.436" fill="none" id="connector11pin" r="2.052" stroke="#9A916C" stroke-width="0.4318"/>
  6175. <circle cx="109.365" cy="13.436" fill="none" id="connector12pin" r="2.052" stroke="#9A916C" stroke-width="0.4318"/>
  6176. <circle cx="116.565" cy="13.436" fill="none" id="connector13pin" r="2.052" stroke="#9A916C" stroke-width="0.4318"/>
  6177. <circle cx="123.766" cy="13.436" fill="none" id="connector14pin" r="2.052" stroke="#9A916C" stroke-width="0.4318"/>
  6178. <circle cx="130.965" cy="13.436" fill="none" id="connector15pin" r="2.052" stroke="#9A916C" stroke-width="0.4318"/>
  6179. <circle cx="7.375" cy="13.436" id="nonconn8" r="3.969"/>
  6180. <circle cx="7.375" cy="101.311" id="nonconn9" r="3.968"/>
  6181. <circle cx="219.973" cy="13.436" id="nonconn10" r="3.969"/>
  6182. <circle cx="219.973" cy="101.311" id="nonconn11" r="3.968"/>
  6183. <line fill="none" stroke="#F8F8F8" stroke-linecap="round" stroke-width="0.2032" x1="0.288" x2="227.06" y1="6.35" y2="6.35"/>
  6184. <line fill="none" stroke="#F8F8F8" stroke-linecap="round" stroke-width="0.2032" x1="227.06" x2="227.06" y1="6.35" y2="108.397"/>
  6185. <line fill="none" stroke="#F8F8F8" stroke-linecap="round" stroke-width="0.2032" x1="227.06" x2="0.288" y1="108.397" y2="108.397"/>
  6186. <line fill="none" stroke="#F8F8F8" stroke-linecap="round" stroke-width="0.2032" x1="0.288" x2="0.288" y1="108.397" y2="6.35"/>
  6187. <line fill="none" stroke="#F8F8F8" stroke-linecap="round" stroke-width="0.2032" x1="12.619" x2="214.729" y1="20.098" y2="20.098"/>
  6188. <line fill="none" stroke="#F8F8F8" stroke-linecap="round" stroke-width="0.2032" x1="214.729" x2="12.619" y1="94.649" y2="94.649"/>
  6189. <g transform="matrix(1, 0, 0, 1, 16.4736, 14.1714)">
  6190. <text fill="#F8F8F8" font-family="'OCRA'" font-size="3.744">1</text>
  6191. </g>
  6192. <g transform="matrix(1, 0, 0, 1, 2.43071, 28.1397)">
  6193. <g id="tuxgr_16x2_r2_oval">
  6194. <g>
  6195. <path d="M215.421,43.438c-0.734,0,-1.336,-0.604,-1.336,-1.336L214.085,16.28c0,-0.734,0.602,-1.338,1.336,-1.338l0.057,0L215.478,-5.107l0,-0.698l-0.699,0l-2.049,-2.049l0,-0.713l-0.713,0L10.468,-8.567L9.755,-8.567l0,0.713L7.708,-5.806l-0.7,0l0,0.698l0,20.05l0.058,0c0.734,0,1.337,0.604,1.337,1.338l0,25.822c0,0.732,-0.603,1.336,-1.337,1.336L7.008,43.438l0,20.049l0,0.699l0.7,0l2.049,2.049l0,0.713l0.713,0l201.548,0l0.713,0l0,-0.713l2.049,-2.049l0.699,0l0,-0.699L215.479,43.438L215.421,43.438z" fill="#303030"/>
  6196. <g>
  6197. <path d="M206.52,49.549c0,2.205,-1.805,4.012,-4.012,4.012L19.978,53.561c-2.206,0,-4.012,-1.805,-4.012,-4.012L15.966,8.832c0,-2.206,1.806,-4.013,4.012,-4.013l182.531,0c2.207,0,4.012,1.807,4.012,4.013L206.521,49.549z" fill="#333333"/>
  6198. <g opacity="0.2">
  6199. <path d="M206.513,8.813l0,40.753c0,-0.006,0.002,-0.012,0.002,-0.02L206.515,8.832C206.515,8.825,206.513,8.819,206.513,8.813zM19.978,4.821c-2.205,0,-4.012,1.807,-4.012,4.012l0,40.718c0,2.203,1.807,4.012,4.012,4.012l2.325,0c-2.206,0,-4.011,-1.809,-4.011,-4.012L18.292,10.17c0,-2.206,1.805,-4.011,4.011,-4.011l183.165,0c-0.734,-0.813,-1.785,-1.34,-2.963,-1.34L19.978,4.819L19.978,4.821z" fill="#22420D"/>
  6200. </g>
  6201. </g>
  6202. <g>
  6203. <path d="M208.216,-3.215c0,-0.735,-0.605,-1.336,-1.336,-1.336L15.608,-4.551c-0.732,0,-1.336,0.602,-1.336,1.336l0,0.736c0,0.734,0.604,1.336,1.336,1.336L206.88,-1.143c0.73,0,1.336,-0.603,1.336,-1.336L208.216,-3.215L208.216,-3.215z" fill="#1A1A1A"/>
  6204. <path d="M207.548,-2.021c0,-0.483,-0.436,-0.88,-0.957,-0.88L15.975,-2.901c-0.526,0,-0.957,0.396,-0.957,0.88s0.431,0.88,0.957,0.88l190.616,0C207.116,-1.142,207.548,-1.538,207.548,-2.021z" fill="#424242"/>
  6205. </g>
  6206. <g>
  6207. <path d="M208.216,60.225c0,-0.734,-0.605,-1.336,-1.336,-1.336L15.608,58.887c-0.732,0,-1.336,0.604,-1.336,1.336l0,0.736c0,0.732,0.604,1.336,1.336,1.336L206.88,62.295c0.73,0,1.336,-0.604,1.336,-1.336L208.216,60.225L208.216,60.225z" fill="#1A1A1A"/>
  6208. <path d="M207.548,61.418c0,-0.482,-0.436,-0.881,-0.957,-0.881L15.975,60.537c-0.526,0,-0.957,0.396,-0.957,0.881c0,0.482,0.431,0.879,0.957,0.879l190.616,0C207.116,62.297,207.548,61.901,207.548,61.418z" fill="#424242"/>
  6209. </g>
  6210. <g>
  6211. <line fill="none" stroke="#F2F2F2" stroke-linecap="round" stroke-opacity="0.2" stroke-width="0.2358" x1="7.795" x2="9.909" y1="-5.66" y2="-7.773"/>
  6212. <line fill="none" stroke="#F2F2F2" stroke-linecap="round" stroke-opacity="0.2" stroke-width="0.2358" x1="9.929" x2="7.817" y1="66.145" y2="64.03"/>
  6213. </g>
  6214. <g>
  6215. <line fill="none" stroke="#F2F2F2" stroke-linecap="round" stroke-opacity="0.2" stroke-width="0.2358" x1="214.681" x2="212.567" y1="-5.66" y2="-7.773"/>
  6216. <line fill="none" stroke="#F2F2F2" stroke-linecap="round" stroke-opacity="0.2" stroke-width="0.2358" x1="212.546" x2="214.659" y1="66.145" y2="64.03"/>
  6217. </g>
  6218. <path d="M206.515,49.549c0,2.205,-1.805,4.012,-4.01,4.012L19.978,53.561c-2.205,0,-4.012,-1.807,-4.012,-4.012L15.966,8.832c0,-2.205,1.807,-4.013,4.012,-4.013l182.527,0c2.205,0,4.01,1.808,4.01,4.013L206.515,49.549L206.515,49.549z" fill="none" stroke="#1A1A1A" stroke-opacity="0.4" stroke-width="1.415"/>
  6219. <g>
  6220. <rect fill="#999999" fill-opacity="0.1" height="16.522" width="10.026" x="25.648" y="29.537"/>
  6221. <rect fill="#999999" fill-opacity="0.1" height="16.522" width="10.026" x="36.392" y="29.537"/>
  6222. <rect fill="#999999" fill-opacity="0.1" height="16.522" width="10.027" x="47.135" y="29.537"/>
  6223. <rect fill="#999999" fill-opacity="0.1" height="16.522" width="10.025" x="57.879" y="29.537"/>
  6224. <rect fill="#999999" fill-opacity="0.1" height="16.522" width="10.024" x="68.626" y="29.537"/>
  6225. <rect fill="#999999" fill-opacity="0.1" height="16.522" width="10.025" x="79.37" y="29.537"/>
  6226. <rect fill="#999999" fill-opacity="0.1" height="16.522" width="10.027" x="90.114" y="29.537"/>
  6227. <rect fill="#999999" fill-opacity="0.1" height="16.522" width="10.027" x="100.858" y="29.537"/>
  6228. <rect fill="#999999" fill-opacity="0.1" height="16.522" width="10.028" x="111.602" y="29.537"/>
  6229. <rect fill="#999999" fill-opacity="0.1" height="16.522" width="10.027" x="122.347" y="29.537"/>
  6230. <rect fill="#999999" fill-opacity="0.1" height="16.522" width="10.023" x="133.091" y="29.537"/>
  6231. <rect fill="#999999" fill-opacity="0.1" height="16.522" width="10.025" x="143.835" y="29.537"/>
  6232. <rect fill="#999999" fill-opacity="0.1" height="16.522" width="10.025" x="154.579" y="29.537"/>
  6233. <rect fill="#999999" fill-opacity="0.1" height="16.522" width="10.027" x="165.323" y="29.537"/>
  6234. <rect fill="#999999" fill-opacity="0.1" height="16.522" width="10.025" x="176.067" y="29.537"/>
  6235. <rect fill="#999999" fill-opacity="0.1" height="16.522" width="10.027" x="186.811" y="29.537"/>
  6236. <rect fill="#999999" fill-opacity="0.1" height="16.522" width="10.026" x="25.648" y="12.321"/>
  6237. <rect fill="#999999" fill-opacity="0.1" height="16.522" width="10.026" x="36.392" y="12.321"/>
  6238. <rect fill="#999999" fill-opacity="0.1" height="16.522" width="10.027" x="47.135" y="12.321"/>
  6239. <rect fill="#999999" fill-opacity="0.1" height="16.522" width="10.025" x="57.879" y="12.321"/>
  6240. <rect fill="#999999" fill-opacity="0.1" height="16.522" width="10.024" x="68.626" y="12.321"/>
  6241. <rect fill="#999999" fill-opacity="0.1" height="16.522" width="10.025" x="79.37" y="12.321"/>
  6242. <rect fill="#999999" fill-opacity="0.1" height="16.522" width="10.027" x="90.114" y="12.321"/>
  6243. <rect fill="#999999" fill-opacity="0.1" height="16.522" width="10.027" x="100.858" y="12.321"/>
  6244. <rect fill="#999999" fill-opacity="0.1" height="16.522" width="10.028" x="111.602" y="12.321"/>
  6245. <rect fill="#999999" fill-opacity="0.1" height="16.522" width="10.027" x="122.347" y="12.321"/>
  6246. <rect fill="#999999" fill-opacity="0.1" height="16.522" width="10.023" x="133.091" y="12.321"/>
  6247. <rect fill="#999999" fill-opacity="0.1" height="16.522" width="10.025" x="143.835" y="12.321"/>
  6248. <rect fill="#999999" fill-opacity="0.1" height="16.522" width="10.025" x="154.579" y="12.321"/>
  6249. <rect fill="#999999" fill-opacity="0.1" height="16.522" width="10.027" x="165.323" y="12.321"/>
  6250. <rect fill="#999999" fill-opacity="0.1" height="16.522" width="10.025" x="176.067" y="12.321"/>
  6251. <rect fill="#999999" fill-opacity="0.1" height="16.522" width="10.027" x="186.811" y="12.321"/>
  6252. </g>
  6253. <g>
  6254. <path d="M7.312,43.391l0,20.797l0.271,0L7.583,43.334C7.497,43.37,7.402,43.372,7.312,43.391z" fill="#606060"/>
  6255. <path d="M7.581,15.048L7.581,-5.807L7.312,-5.807l0,20.801C7.402,15.011,7.497,15.013,7.581,15.048z" fill="#606060"/>
  6256. </g>
  6257. <rect fill="#606060" height="0.268" width="202.97" x="9.757" y="-8.261"/>
  6258. <rect fill="#212121" height="0.305" width="202.97" x="9.757" y="-8.563"/>
  6259. <g>
  6260. <path d="M7.066,14.942c0.087,0,0.164,0.035,0.247,0.052L7.313,-5.807L7.009,-5.807l0,20.75L7.066,14.943L7.066,14.942z" fill="#212121"/>
  6261. <path d="M7.066,43.438L7.009,43.438l0,20.75l0.304,0L7.313,43.391C7.23,43.405,7.153,43.438,7.066,43.438z" fill="#212121"/>
  6262. </g>
  6263. <rect fill="#212121" height="0.305" width="202.97" x="9.757" y="66.647"/>
  6264. <rect fill="#606060" height="0.268" width="202.97" x="9.757" y="66.383"/>
  6265. <g>
  6266. <path d="M215.421,43.438c-0.09,0,-0.166,-0.033,-0.25,-0.051l0,20.801l0.305,0l0,-20.75L215.421,43.438z" fill="#212121"/>
  6267. <path d="M215.421,14.942l0.055,0l0,-20.75l-0.305,0l0,20.802C215.255,14.977,215.333,14.942,215.421,14.942z" fill="#212121"/>
  6268. </g>
  6269. <g>
  6270. <path d="M214.907,43.334l0,20.854l0.268,0L215.175,43.391C215.085,43.372,214.989,43.37,214.907,43.334z" fill="#606060"/>
  6271. <path d="M215.173,14.994l0,-20.8l-0.27,0l0,20.854C214.989,15.013,215.085,15.011,215.173,14.994z" fill="#606060"/>
  6272. </g>
  6273. <g id="Ebene_2"/>
  6274. </g>
  6275. <g>
  6276. <g>
  6277. <path d="M126.097,-21.833l0,7.357c0,1.33,1.078,2.41,2.41,2.41c1.33,0,2.407,-1.08,2.407,-2.41l0,-7.357L126.097,-21.833zM128.526,-13.36c-0.769,0,-1.39,-0.621,-1.39,-1.388c0,-0.766,0.621,-1.387,1.39,-1.387c0.766,0,1.387,0.621,1.387,1.387C129.912,-13.981,129.29,-13.36,128.526,-13.36z" fill="#9A916C"/>
  6278. </g>
  6279. <g>
  6280. <path d="M118.896,-21.833l0,7.357c0,1.33,1.078,2.41,2.41,2.41c1.33,0,2.407,-1.08,2.407,-2.41l0,-7.357L118.896,-21.833zM121.326,-13.36c-0.769,0,-1.39,-0.621,-1.39,-1.388c0,-0.766,0.621,-1.387,1.39,-1.387c0.766,0,1.387,0.621,1.387,1.387C122.712,-13.981,122.09,-13.36,121.326,-13.36z" fill="#9A916C"/>
  6281. </g>
  6282. <g>
  6283. <path d="M111.697,-21.833l0,7.357c0,1.33,1.078,2.41,2.41,2.41c1.33,0,2.407,-1.08,2.407,-2.41l0,-7.357L111.697,-21.833zM114.126,-13.36c-0.769,0,-1.39,-0.621,-1.39,-1.388c0,-0.766,0.621,-1.387,1.39,-1.387c0.766,0,1.387,0.621,1.387,1.387C115.512,-13.981,114.89,-13.36,114.126,-13.36z" fill="#9A916C"/>
  6284. </g>
  6285. <g>
  6286. <path d="M104.497,-21.833l0,7.357c0,1.33,1.078,2.41,2.41,2.41c1.33,0,2.407,-1.08,2.407,-2.41l0,-7.357L104.497,-21.833zM106.926,-13.36c-0.769,0,-1.39,-0.621,-1.39,-1.388c0,-0.766,0.621,-1.387,1.39,-1.387c0.766,0,1.387,0.621,1.387,1.387C108.311,-13.981,107.689,-13.36,106.926,-13.36z" fill="#9A916C"/>
  6287. </g>
  6288. <g>
  6289. <path d="M97.296,-21.833l0,7.357c0,1.33,1.078,2.41,2.41,2.41c1.33,0,2.407,-1.08,2.407,-2.41l0,-7.357L97.296,-21.833zM99.726,-13.36c-0.769,0,-1.39,-0.621,-1.39,-1.388c0,-0.766,0.621,-1.387,1.39,-1.387c0.766,0,1.387,0.621,1.387,1.387C101.111,-13.981,100.489,-13.36,99.726,-13.36z" fill="#9A916C"/>
  6290. </g>
  6291. <g>
  6292. <path d="M90.096,-21.833l0,7.357c0,1.33,1.078,2.41,2.41,2.41c1.33,0,2.407,-1.08,2.407,-2.41l0,-7.357L90.096,-21.833zM92.525,-13.36c-0.769,0,-1.39,-0.621,-1.39,-1.388c0,-0.766,0.621,-1.387,1.39,-1.387c0.766,0,1.387,0.621,1.387,1.387C93.911,-13.981,93.289,-13.36,92.525,-13.36z" fill="#9A916C"/>
  6293. </g>
  6294. <g>
  6295. <path d="M82.896,-21.833l0,7.357c0,1.33,1.078,2.41,2.41,2.41c1.33,0,2.407,-1.08,2.407,-2.41l0,-7.357L82.896,-21.833zM85.325,-13.36c-0.769,0,-1.39,-0.621,-1.39,-1.388c0,-0.766,0.621,-1.387,1.39,-1.387c0.766,0,1.387,0.621,1.387,1.387C86.711,-13.981,86.089,-13.36,85.325,-13.36z" fill="#9A916C"/>
  6296. </g>
  6297. <g>
  6298. <path d="M75.696,-21.833l0,7.357c0,1.33,1.078,2.41,2.41,2.41c1.33,0,2.407,-1.08,2.407,-2.41l0,-7.357L75.696,-21.833zM78.125,-13.36c-0.769,0,-1.39,-0.621,-1.39,-1.388c0,-0.766,0.621,-1.387,1.39,-1.387c0.766,0,1.387,0.621,1.387,1.387C79.511,-13.981,78.889,-13.36,78.125,-13.36z" fill="#9A916C"/>
  6299. </g>
  6300. <g>
  6301. <path d="M68.496,-21.833l0,7.357c0,1.33,1.078,2.41,2.41,2.41c1.33,0,2.407,-1.08,2.407,-2.41l0,-7.357L68.496,-21.833zM70.925,-13.36c-0.769,0,-1.39,-0.621,-1.39,-1.388c0,-0.766,0.621,-1.387,1.39,-1.387c0.766,0,1.387,0.621,1.387,1.387C72.31,-13.981,71.688,-13.36,70.925,-13.36z" fill="#9A916C"/>
  6302. </g>
  6303. <g>
  6304. <path d="M61.295,-21.833l0,7.357c0,1.33,1.078,2.41,2.41,2.41c1.33,0,2.407,-1.08,2.407,-2.41l0,-7.357L61.295,-21.833zM63.725,-13.36c-0.769,0,-1.39,-0.621,-1.39,-1.388c0,-0.766,0.621,-1.387,1.39,-1.387c0.766,0,1.387,0.621,1.387,1.387C65.11,-13.981,64.488,-13.36,63.725,-13.36z" fill="#9A916C"/>
  6305. </g>
  6306. <g>
  6307. <path d="M54.095,-21.833l0,7.357c0,1.33,1.078,2.41,2.41,2.41c1.33,0,2.407,-1.08,2.407,-2.41l0,-7.357L54.095,-21.833zM56.524,-13.36c-0.769,0,-1.39,-0.621,-1.39,-1.388c0,-0.766,0.621,-1.387,1.39,-1.387c0.766,0,1.387,0.621,1.387,1.387C57.91,-13.981,57.288,-13.36,56.524,-13.36z" fill="#9A916C"/>
  6308. </g>
  6309. <g>
  6310. <path d="M46.895,-21.833l0,7.357c0,1.33,1.078,2.41,2.41,2.41c1.33,0,2.407,-1.08,2.407,-2.41l0,-7.357L46.895,-21.833zM49.324,-13.36c-0.769,0,-1.39,-0.621,-1.39,-1.388c0,-0.766,0.621,-1.387,1.39,-1.387c0.766,0,1.387,0.621,1.387,1.387C50.71,-13.981,50.088,-13.36,49.324,-13.36z" fill="#9A916C"/>
  6311. </g>
  6312. <g>
  6313. <path d="M39.695,-21.833l0,7.357c0,1.33,1.078,2.41,2.41,2.41c1.33,0,2.407,-1.08,2.407,-2.41l0,-7.357L39.695,-21.833zM42.124,-13.36c-0.769,0,-1.39,-0.621,-1.39,-1.388c0,-0.766,0.621,-1.387,1.39,-1.387c0.766,0,1.387,0.621,1.387,1.387C43.51,-13.981,42.888,-13.36,42.124,-13.36z" fill="#9A916C"/>
  6314. </g>
  6315. <g>
  6316. <path d="M32.495,-21.833l0,7.357c0,1.33,1.078,2.41,2.41,2.41c1.33,0,2.407,-1.08,2.407,-2.41l0,-7.357L32.495,-21.833zM34.924,-13.36c-0.769,0,-1.39,-0.621,-1.39,-1.388c0,-0.766,0.621,-1.387,1.39,-1.387c0.766,0,1.387,0.621,1.387,1.387C36.31,-13.981,35.687,-13.36,34.924,-13.36z" fill="#9A916C"/>
  6317. </g>
  6318. <g>
  6319. <path d="M25.294,-21.833l0,7.357c0,1.33,1.078,2.41,2.41,2.41c1.33,0,2.407,-1.08,2.407,-2.41l0,-7.357L25.294,-21.833zM27.724,-13.36c-0.769,0,-1.39,-0.621,-1.39,-1.388c0,-0.766,0.621,-1.387,1.39,-1.387c0.766,0,1.387,0.621,1.387,1.387C29.109,-13.981,28.487,-13.36,27.724,-13.36z" fill="#9A916C"/>
  6320. </g>
  6321. <g>
  6322. <path d="M18.094,-21.833l0,7.357c0,1.33,1.078,2.41,2.41,2.41c1.33,0,2.407,-1.08,2.407,-2.41l0,-7.357L18.094,-21.833zM20.523,-13.36c-0.769,0,-1.39,-0.621,-1.39,-1.388c0,-0.766,0.621,-1.387,1.39,-1.387c0.766,0,1.387,0.621,1.387,1.387C21.909,-13.981,21.287,-13.36,20.523,-13.36z" fill="#9A916C"/>
  6323. </g>
  6324. </g>
  6325. </g>
  6326. </g>
  6327. </g>
  6328. </g>
  6329. </g>
  6330. <g partID="855169900">
  6331. <g transform="translate(42.1072,139.635)">
  6332. <g id="breadboard">
  6333. <desc>
  6334. <referenceFile>ZS-042_BREADBOARD_v4a.svg</referenceFile>
  6335. </desc>
  6336. <g gorn="0.1" id="Layer_2">
  6337. <path d="M102.604,0L5.375,0l0,0.006C3.064,1.131,1.179,2.928,0,5.131l0,51.871c1.125,2.303,2.918,4.182,5.116,5.358l97.3069,0c2.275,-1.127,4.133,-2.906,5.297,-5.084L107.72,5.356C106.594,3.054,104.802,1.176,102.604,0zM4.293,51.846c-0.735999,0,-1.334,-0.598,-1.334,-1.334s0.598,-1.334,1.334,-1.334s1.334,0.598,1.334,1.334S5.029,51.846,4.293,51.846zM4.293,44.645c-0.735999,0,-1.334,-0.598,-1.334,-1.334s0.598,-1.332,1.334,-1.332s1.334,0.596,1.334,1.332S5.029,44.645,4.293,44.645zM4.293,37.445c-0.735999,0,-1.334,-0.598,-1.334,-1.334s0.598,-1.334,1.334,-1.334s1.334,0.598,1.334,1.334S5.029,37.445,4.293,37.445zM4.293,30.245c-0.735999,0,-1.334,-0.597,-1.334,-1.333s0.598,-1.333,1.334,-1.333s1.334,0.597,1.334,1.333S5.029,30.245,4.293,30.245zM4.293,23.045c-0.735999,0,-1.334,-0.597,-1.334,-1.333s0.598,-1.333,1.334,-1.333s1.334,0.597,1.334,1.333S5.029,23.045,4.293,23.045zM4.293,15.845c-0.735999,0,-1.334,-0.597,-1.334,-1.333s0.598,-1.333,1.334,-1.333s1.334,0.597,1.334,1.333S5.029,15.845,4.293,15.845zM24.031,59.479c-1.691,0,-3.063,-1.371,-3.063,-3.063s1.371,-3.063,3.063,-3.063s3.063,1.371,3.063,3.063S25.723,59.479,24.031,59.479zM23.437,31.391c0,-0.736,0.598,-1.334,1.334,-1.334s1.334,0.598,1.334,1.334s-0.598,1.334,-1.334,1.334S23.437,32.127,23.437,31.391zM24.031,9.406c-1.691,0,-3.063,-1.371,-3.063,-3.063s1.371,-3.063,3.063,-3.063s3.063,1.371,3.063,3.063S25.723,9.406,24.031,9.406zM82.1039,32.709c-0.735999,0,-1.334,-0.598,-1.334,-1.334s0.598,-1.334,1.334,-1.334s1.334,0.598,1.334,1.334S82.8399,32.709,82.1039,32.709zM97.5389,9.188c-1.691,0,-3.063,-1.371,-3.063,-3.063s1.371,-3.063,3.063,-3.063s3.063,1.371,3.063,3.063S99.2299,9.188,97.5389,9.188zM104.354,43.541c-0.735999,0,-1.334,-0.596,-1.334,-1.332s0.598,-1.334,1.334,-1.334s1.334,0.598,1.334,1.334S105.091,43.541,104.354,43.541zM104.354,36.342c-0.735999,0,-1.334,-0.598,-1.334,-1.334s0.598,-1.332,1.334,-1.332s1.334,0.596,1.334,1.332S105.091,36.342,104.354,36.342zM104.354,29.142c-0.735999,0,-1.334,-0.597,-1.334,-1.333s0.598,-1.333,1.334,-1.333s1.334,0.597,1.334,1.333S105.091,29.142,104.354,29.142zM104.354,21.942c-0.735999,0,-1.334,-0.597,-1.334,-1.333s0.598,-1.333,1.334,-1.333s1.334,0.597,1.334,1.333S105.091,21.942,104.354,21.942z" fill="#113753"/>
  6338. </g>
  6339. <g gorn="0.2" id="Layer_3">
  6340. <g gorn="0.2.0" id="silkscreen">
  6341. <g transform="matrix(1, 0, 0, 1, 29.7188, 6.125)">
  6342. <g>
  6343. <g>
  6344. <g>
  6345. <text fill="#FFFFFF" font-family="Droid Sans" font-size="6">POWER</text>
  6346. </g>
  6347. </g>
  6348. </g>
  6349. </g>
  6350. <g transform="matrix(1, 0, 0, 1, 8.66699, 16.4995)">
  6351. <g>
  6352. <g>
  6353. <g>
  6354. <g>
  6355. <text fill="#FFFFFF" font-family="Droid Sans" font-size="6" x="0" y="0">32K</text>
  6356. <text fill="#FFFFFF" font-family="Droid Sans" font-size="6" x="0" y="7.2">SQW</text>
  6357. <text fill="#FFFFFF" font-family="Droid Sans" font-size="6" x="0" y="14.4">SCL</text>
  6358. <text fill="#FFFFFF" font-family="Droid Sans" font-size="6" x="0" y="21.6">SDA</text>
  6359. <text fill="#FFFFFF" font-family="Droid Sans" font-size="6" x="0" y="28.8">VCC</text>
  6360. <text fill="#FFFFFF" font-family="Droid Sans" font-size="6" x="0" y="36">GND</text>
  6361. </g>
  6362. </g>
  6363. </g>
  6364. </g>
  6365. </g>
  6366. <g transform="matrix(1, 0, 0, 1, 87.5106, 22.7578)">
  6367. <g>
  6368. <g>
  6369. <g>
  6370. <g>
  6371. <text fill="#FFFFFF" font-family="Droid Sans" font-size="6" x="0" y="0">SCL</text>
  6372. <text fill="#FFFFFF" font-family="Droid Sans" font-size="6" x="0" y="7.2">SDA</text>
  6373. <text fill="#FFFFFF" font-family="Droid Sans" font-size="6" x="0" y="14.4">VCC</text>
  6374. <text fill="#FFFFFF" font-family="Droid Sans" font-size="6" x="0" y="21.6">GND</text>
  6375. </g>
  6376. </g>
  6377. </g>
  6378. </g>
  6379. </g>
  6380. <g transform="matrix(1, 0, 0, 1, 63.5, 47.4375)">
  6381. <g>
  6382. <g>
  6383. <g>
  6384. <text fill="#FFFFFF" font-family="Droid Sans" font-size="6">ZS&#x2014;042</text>
  6385. </g>
  6386. </g>
  6387. </g>
  6388. </g>
  6389. <g transform="matrix(1, 0, 0, 1, 84.7909, 61.084)">
  6390. <g>
  6391. <g>
  6392. <g>
  6393. <text fill="#FFFFFF" font-family="Droid Sans" font-size="4.5">A1</text>
  6394. </g>
  6395. </g>
  6396. </g>
  6397. </g>
  6398. <g transform="matrix(1, 0, 0, 1, 90.4569, 61.084)">
  6399. <g>
  6400. <g>
  6401. <g>
  6402. <text fill="#FFFFFF" font-family="Droid Sans" font-size="4.5">A2</text>
  6403. </g>
  6404. </g>
  6405. </g>
  6406. </g>
  6407. <g transform="matrix(1, 0, 0, 1, 77.9579, 61.084)">
  6408. <g>
  6409. <g>
  6410. <g>
  6411. <text fill="#FFFFFF" font-family="Droid Sans" font-size="4.5">A0</text>
  6412. </g>
  6413. </g>
  6414. </g>
  6415. </g>
  6416. <g>
  6417. <polyline fill="none" points="35.908,26.783,30.604,26.783,30.604,20.991,35.908,20.991" stroke="#FFFFFF" stroke-miterlimit="10" stroke-width="0.45"/>
  6418. <polyline fill="none" points="38.542,20.991,43.846,20.991,43.846,26.783,38.542,26.783" stroke="#FFFFFF" stroke-miterlimit="10" stroke-width="0.45"/>
  6419. </g>
  6420. <g>
  6421. <polyline fill="none" points="35.908,33.886,30.604,33.886,30.604,28.094,35.908,28.094" stroke="#FFFFFF" stroke-miterlimit="10" stroke-width="0.45"/>
  6422. <polyline fill="none" points="38.38,28.094,43.685,28.094,43.685,33.886,38.38,33.886" stroke="#FFFFFF" stroke-miterlimit="10" stroke-width="0.45"/>
  6423. </g>
  6424. <g>
  6425. <polyline fill="none" points="35.908,19.917,30.604,19.917,30.604,14.125,35.908,14.125" stroke="#FFFFFF" stroke-miterlimit="10" stroke-width="0.45"/>
  6426. <polyline fill="none" points="38.542,14.125,43.846,14.125,43.846,19.917,38.542,19.917" stroke="#FFFFFF" stroke-miterlimit="10" stroke-width="0.45"/>
  6427. </g>
  6428. <polyline fill="none" points="37.688,7.208,42.242,7.208,42.242,12.917,37.688,12.917" stroke="#FFFFFF" stroke-miterlimit="10" stroke-width="0.45"/>
  6429. <polyline fill="none" points="35.242,12.917,30.688,12.917,30.688,7.208,35.242,7.208" stroke="#FFFFFF" stroke-miterlimit="10" stroke-width="0.45"/>
  6430. <rect fill="none" height="10.146" stroke="#FFFFFF" stroke-miterlimit="10" stroke-width="0.45" width="9.91699" x="31.208" y="35.667"/>
  6431. <rect fill="none" height="10.146" stroke="#FFFFFF" stroke-miterlimit="10" stroke-width="0.45" width="9.91699" x="31.208" y="47.126"/>
  6432. <rect fill="none" height="16.51" stroke="#FFFFFF" stroke-miterlimit="10" stroke-width="0.45" width="6.323" x="77.9579" y="9.521"/>
  6433. <rect fill="none" height="43.606" stroke="#FFFFFF" stroke-miterlimit="10" stroke-width="0.45" width="6.93799" x="0.812999" y="10.751"/>
  6434. <g>
  6435. <polyline fill="none" points="91.1819,16.386,85.8769,16.386,85.8769,10.594,91.1819,10.594" stroke="#FFFFFF" stroke-miterlimit="10" stroke-width="0.45"/>
  6436. <polyline fill="none" points="93.8149,10.594,99.1189,10.594,99.1189,16.386,93.8149,16.386" stroke="#FFFFFF" stroke-miterlimit="10" stroke-width="0.45"/>
  6437. </g>
  6438. <g>
  6439. <polyline fill="none" points="107.375,16.875,100.792,16.875,100.792,45.875,107.375,45.875" stroke="#FFFFFF" stroke-miterlimit="10" stroke-width="0.45"/>
  6440. <line fill="none" stroke="#FFFFFF" stroke-miterlimit="10" stroke-width="0.45" x1="100.792" x2="107.375" y1="24.042" y2="24.042"/>
  6441. </g>
  6442. </g>
  6443. </g>
  6444. <g gorn="0.3" id="Layer_4">
  6445. <g>
  6446. <path d="M21.667,28.5l0,5.781l6.208,0L27.875,28.5L21.667,28.5zM24.771,32.725c-0.735999,0,-1.334,-0.598,-1.334,-1.334s0.598,-1.334,1.334,-1.334s1.334,0.598,1.334,1.334S25.507,32.725,24.771,32.725z" fill="#B5B5B6"/>
  6447. <path d="M78.9989,28.5l0,5.781l6.209,0L85.2079,28.5L78.9989,28.5zM82.1039,32.709c-0.735999,0,-1.334,-0.598,-1.334,-1.334s0.598,-1.334,1.334,-1.334s1.334,0.598,1.334,1.334S82.8399,32.709,82.1039,32.709z" fill="#B5B5B6"/>
  6448. <path d="M24.031,2.5c-2.123,0,-3.844,1.721,-3.844,3.844s1.721,3.844,3.844,3.844s3.844,-1.721,3.844,-3.844S26.154,2.5,24.031,2.5zM24.031,9.406c-1.691,0,-3.063,-1.371,-3.063,-3.063s1.371,-3.063,3.063,-3.063s3.063,1.371,3.063,3.063S25.723,9.406,24.031,9.406z" fill="#B5B5B6"/>
  6449. <path d="M24.031,52.573c-2.123,0,-3.844,1.721,-3.844,3.844s1.721,3.844,3.844,3.844s3.844,-1.721,3.844,-3.844S26.154,52.573,24.031,52.573zM24.031,59.479c-1.691,0,-3.063,-1.371,-3.063,-3.063s1.371,-3.063,3.063,-3.063s3.063,1.371,3.063,3.063S25.723,59.479,24.031,59.479z" fill="#B5B5B6"/>
  6450. <path d="M97.5389,2.281c-2.123,0,-3.844,1.721,-3.844,3.844s1.721,3.844,3.844,3.844s3.844,-1.721,3.844,-3.844S99.6619,2.281,97.5389,2.281zM97.5389,9.188c-1.691,0,-3.063,-1.371,-3.063,-3.063s1.371,-3.063,3.063,-3.063s3.063,1.371,3.063,3.063S99.2299,9.188,97.5389,9.188z" fill="#B5B5B6"/>
  6451. <g>
  6452. <rect fill="#D3D3D3" height="2.917" width="2.708" x="79.6669" y="49.125"/>
  6453. <rect fill="#D3D3D3" height="2.792" width="2.708" x="79.6669" y="53.625"/>
  6454. </g>
  6455. <g>
  6456. <rect fill="#D3D3D3" height="2.917" width="2.708" x="85.2079" y="49.125"/>
  6457. <rect fill="#D3D3D3" height="2.792" width="2.708" x="85.2079" y="53.625"/>
  6458. </g>
  6459. <g>
  6460. <rect fill="#D3D3D3" height="2.917" width="2.708" x="91.1669" y="49.125"/>
  6461. <rect fill="#D3D3D3" height="2.792" width="2.708" x="91.1669" y="53.625"/>
  6462. </g>
  6463. </g>
  6464. <g>
  6465. <rect fill="#030303" height="3.258" width="5.459" x="89.7689" y="11.752"/>
  6466. <rect fill="#989898" height="3.258" width="1.092" x="89.7689" y="11.752"/>
  6467. <rect fill="#989898" height="3.258" width="0.972999" x="94.2559" y="11.752"/>
  6468. </g>
  6469. <g>
  6470. <rect fill="#030303" height="3.258" width="5.459" x="34.519" y="15.307"/>
  6471. <rect fill="#989898" height="3.258" width="1.092" x="34.519" y="15.307"/>
  6472. <rect fill="#989898" height="3.258" width="0.972999" x="39.006" y="15.307"/>
  6473. </g>
  6474. <g display="none">
  6475. <rect display="inline" fill="#424242" height="9.809" width="13.973" x="47.671" y="44.55"/>
  6476. <g display="inline">
  6477. <g>
  6478. <rect fill="#989898" height="3.457" width="1.107" x="59.751" y="41.093"/>
  6479. <rect fill="#676867" height="0.875" width="1.107" x="59.751" y="42.306"/>
  6480. </g>
  6481. <g>
  6482. <rect fill="#989898" height="3.457" width="1.105" x="56.19" y="41.093"/>
  6483. <rect fill="#676867" height="0.875" width="1.105" x="56.19" y="42.306"/>
  6484. </g>
  6485. <g>
  6486. <rect fill="#989898" height="3.457" width="1.107" x="52.607" y="41.093"/>
  6487. <rect fill="#676867" height="0.875" width="1.107" x="52.607" y="42.306"/>
  6488. </g>
  6489. <g>
  6490. <rect fill="#989898" height="3.457" width="1.107" x="48.898" y="41.093"/>
  6491. <rect fill="#676867" height="0.875" width="1.107" x="48.898" y="42.306"/>
  6492. </g>
  6493. </g>
  6494. <g display="inline">
  6495. <g>
  6496. <rect fill="#989898" height="3.457" width="1.107" x="48.855" y="54.36"/>
  6497. <rect fill="#676867" height="0.875" width="1.107" x="48.855" y="55.729"/>
  6498. </g>
  6499. <g>
  6500. <rect fill="#989898" height="3.457" width="1.107" x="52.502" y="54.36"/>
  6501. <rect fill="#676867" height="0.875" width="1.107" x="52.502" y="55.729"/>
  6502. </g>
  6503. <g>
  6504. <rect fill="#989898" height="3.457" width="1.107" x="56.042" y="54.36"/>
  6505. <rect fill="#676867" height="0.875" width="1.107" x="56.042" y="55.729"/>
  6506. </g>
  6507. <g>
  6508. <rect fill="#989898" height="3.457" width="1.107" x="59.751" y="54.358"/>
  6509. <rect fill="#676867" height="0.875" width="1.107" x="59.751" y="55.728"/>
  6510. </g>
  6511. </g>
  6512. <circle cx="60.063" cy="46.665" display="inline" fill="#232323" r="0.728999"/>
  6513. </g>
  6514. <g>
  6515. <rect fill="#788984" height="0.531" width="3.281" x="79.7419" y="12.959"/>
  6516. <rect fill="#788984" height="0.531" width="3.281" x="79.7419" y="21.422"/>
  6517. <rect fill="#CD5F28" height="4.973" width="2.918" x="79.9239" y="16.449"/>
  6518. <rect fill="#39291B" height="1.354" width="2.918" x="79.9239" y="13.49"/>
  6519. <rect fill="#131B1F" height="1.605" width="2.918" x="79.9239" y="14.844"/>
  6520. <linearGradient gradientTransform="matrix(0 1 1 0 324.0176 -379.3174)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="396.773" x2="396.773" y1="-241.301" y2="-244.037">
  6521. <stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0"/>
  6522. <stop offset="0.0132" style="stop-color:#FFFFFF;stop-opacity:0.0333"/>
  6523. <stop offset="0.3981" style="stop-color:#FFFFFF"/>
  6524. <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
  6525. <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
  6526. <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
  6527. <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
  6528. <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
  6529. </linearGradient>
  6530. <rect enable-background="new " fill="url(#SVGID_1_)" height="7.932" opacity="0.5" width="2.918" x="79.9239" y="13.49"/>
  6531. </g>
  6532. <g>
  6533. <rect fill="#726E68" height="3.338" width="5.087" x="34.705" y="22.219"/>
  6534. <rect fill="#C6C6C5" height="3.338" width="1.25" x="38.542" y="22.219"/>
  6535. <rect fill="#C6C6C5" height="3.341" width="1.273" x="34.705" y="22.217"/>
  6536. </g>
  6537. <g>
  6538. <rect fill="#726E68" height="3.338" width="5.087" x="34.705" y="29.144"/>
  6539. <rect fill="#C6C6C5" height="3.338" width="1.25" x="38.542" y="29.144"/>
  6540. <rect fill="#C6C6C5" height="3.34" width="1.273" x="34.705" y="29.141"/>
  6541. </g>
  6542. <g>
  6543. <rect fill="#CEC3B2" height="3.021" width="5.522" x="33.97" y="8.361"/>
  6544. <polyline enable-background="new " fill="none" opacity="0.52" points="35.117,9.114,35.543,9.114,37.063,9.459" stroke="#A3A1A2" stroke-miterlimit="10" stroke-width="0.5"/>
  6545. <polyline fill="none" points="35.658,8.704,35.658,9.496,35.242,9.871" stroke="#FFFFFF" stroke-miterlimit="10" stroke-width="0.5"/>
  6546. <polyline fill="none" points="37.18,8.704,37.18,9.939,36.73,10.227,35.908,10.751" stroke="#FFFFFF" stroke-miterlimit="10" stroke-width="0.5"/>
  6547. <line fill="none" stroke="#FFFFFF" stroke-miterlimit="10" stroke-width="0.5" x1="37.826" x2="36.73" y1="10.538" y2="10.227"/>
  6548. <circle cx="36.73" cy="9.871" enable-background="new " fill="#696053" opacity="0.69" r="0.333"/>
  6549. <rect fill="#E2E2E2" height="3.021" width="0.479" x="39.014" y="8.361"/>
  6550. <rect fill="#E2E2E2" height="3.021" width="0.479" x="33.97" y="8.362"/>
  6551. <polyline fill="#696053" points="39.492,9.287,39.492,10.227,39.097,9.755"/>
  6552. <polyline fill="#696053" points="33.97,10.227,33.97,9.287,34.365,9.756"/>
  6553. </g>
  6554. <g>
  6555. <rect fill="#C6C6C5" height="1.635" width="0.964999" x="37.416" y="50.252"/>
  6556. <rect fill="#C6C6C5" height="1.635" width="0.963999" x="34.377" y="50.252"/>
  6557. <rect fill="#C6C6C5" height="1.635" width="0.964999" x="37.416" y="52.729"/>
  6558. <rect fill="#C6C6C5" height="1.635" width="0.963999" x="34.377" y="52.729"/>
  6559. <rect fill="#C6C6C5" height="1.635" width="0.964999" x="37.416" y="54.932"/>
  6560. <rect fill="#C6C6C5" height="1.635" width="0.963999" x="34.377" y="54.932"/>
  6561. <rect fill="#191919" height="8.957" width="2.074" x="35.341" y="47.721"/>
  6562. <rect fill="#C6C6C5" height="1.635" width="0.964999" x="37.416" y="47.846"/>
  6563. <rect fill="#C6C6C5" height="1.635" width="0.963999" x="34.377" y="47.846"/>
  6564. </g>
  6565. <g>
  6566. <rect fill="#C6C6C5" height="1.635" width="0.963999" x="37.417" y="38.615"/>
  6567. <rect fill="#C6C6C5" height="1.635" width="0.963999" x="34.378" y="38.615"/>
  6568. <rect fill="#C6C6C5" height="1.635" width="0.963999" x="37.417" y="41.092"/>
  6569. <rect fill="#C6C6C5" height="1.635" width="0.963999" x="34.378" y="41.092"/>
  6570. <rect fill="#C6C6C5" height="1.635" width="0.963999" x="37.417" y="43.295"/>
  6571. <rect fill="#C6C6C5" height="1.635" width="0.963999" x="34.378" y="43.295"/>
  6572. <rect fill="#191919" height="8.958" width="2.075" x="35.342" y="36.084"/>
  6573. <rect fill="#C6C6C5" height="1.635" width="0.963999" x="37.417" y="36.209"/>
  6574. <rect fill="#C6C6C5" height="1.635" width="0.963999" x="34.378" y="36.209"/>
  6575. </g>
  6576. <g>
  6577. <rect fill="#383838" height="21.052" width="28.86" x="47.504" y="9.521"/>
  6578. <g>
  6579. <g>
  6580. <rect fill="#989898" height="3.708" width="1.107" x="74.1039" y="5.813"/>
  6581. <rect fill="#676867" height="0.938" width="1.107" x="74.1039" y="7.114"/>
  6582. </g>
  6583. <g>
  6584. <rect fill="#989898" height="3.708" width="1.107" x="70.3959" y="5.813"/>
  6585. <rect fill="#676867" height="0.938" width="1.107" x="70.3959" y="7.114"/>
  6586. </g>
  6587. <g>
  6588. <rect fill="#989898" height="3.708" width="1.107" x="66.804" y="5.813"/>
  6589. <rect fill="#676867" height="0.938" width="1.107" x="66.804" y="7.114"/>
  6590. </g>
  6591. <g>
  6592. <rect fill="#989898" height="3.708" width="1.107" x="63.146" y="5.813"/>
  6593. <rect fill="#676867" height="0.938" width="1.107" x="63.146" y="7.114"/>
  6594. </g>
  6595. <g>
  6596. <rect fill="#989898" height="3.708" width="1.106" x="59.5" y="5.813"/>
  6597. <rect fill="#676867" height="0.938" width="1.106" x="59.5" y="7.114"/>
  6598. </g>
  6599. <g>
  6600. <rect fill="#989898" height="3.708" width="1.107" x="55.854" y="5.813"/>
  6601. <rect fill="#676867" height="0.938" width="1.107" x="55.854" y="7.114"/>
  6602. </g>
  6603. <g>
  6604. <rect fill="#989898" height="3.708" width="1.107" x="52.313" y="5.813"/>
  6605. <rect fill="#676867" height="0.938" width="1.107" x="52.313" y="7.114"/>
  6606. </g>
  6607. <g>
  6608. <rect fill="#989898" height="3.708" width="1.107" x="48.604" y="5.813"/>
  6609. <rect fill="#676867" height="0.938" width="1.107" x="48.604" y="7.114"/>
  6610. </g>
  6611. </g>
  6612. <g>
  6613. <g>
  6614. <rect fill="#989898" height="3.708" width="1.107" x="48.604" y="30.573"/>
  6615. <rect fill="#676867" height="0.938" width="1.107" x="48.604" y="32.043"/>
  6616. </g>
  6617. <g>
  6618. <rect fill="#989898" height="3.71" width="1.106" x="52.167" y="30.573"/>
  6619. <rect fill="#676867" height="0.939" width="1.106" x="52.167" y="32.043"/>
  6620. </g>
  6621. <g>
  6622. <rect fill="#989898" height="3.71" width="1.106" x="55.75" y="30.573"/>
  6623. <rect fill="#676867" height="0.939" width="1.106" x="55.75" y="32.043"/>
  6624. </g>
  6625. <g>
  6626. <rect fill="#989898" height="3.71" width="1.106" x="59.458" y="30.573"/>
  6627. <rect fill="#676867" height="0.939" width="1.106" x="59.458" y="32.043"/>
  6628. </g>
  6629. <g>
  6630. <rect fill="#989898" height="3.71" width="1.106" x="63.05" y="30.573"/>
  6631. <rect fill="#676867" height="0.939" width="1.106" x="63.05" y="32.043"/>
  6632. </g>
  6633. <g>
  6634. <rect fill="#989898" height="3.71" width="1.106" x="66.709" y="30.573"/>
  6635. <rect fill="#676867" height="0.939" width="1.106" x="66.709" y="32.043"/>
  6636. </g>
  6637. <g>
  6638. <rect fill="#989898" height="3.71" width="1.107" x="70.3539" y="30.573"/>
  6639. <rect fill="#676867" height="0.939" width="1.107" x="70.3539" y="32.043"/>
  6640. </g>
  6641. <g>
  6642. <rect fill="#989898" height="3.71" width="1.106" x="73.9999" y="30.573"/>
  6643. <rect fill="#676867" height="0.939" width="1.106" x="73.9999" y="32.043"/>
  6644. </g>
  6645. </g>
  6646. <polygon fill="#212121" points="75.9379,10.227,48,10.227,47.504,9.521,76.3639,9.521"/>
  6647. <polygon fill="#212121" points="76.3639,30.573,47.504,30.573,48,29.867,75.9379,29.867"/>
  6648. <polygon fill="#282828" points="75.9379,29.867,76.3639,30.573,76.3639,9.521,75.9379,10.227"/>
  6649. <polygon fill="#4F4F4F" points="48,29.867,47.504,30.573,47.504,9.521,48,10.227"/>
  6650. <path d="M47.504,17.969c0.989999,0,1.793,0.931,1.793,2.078s-0.802999,2.078,-1.793,2.078" fill="#282D32"/>
  6651. </g>
  6652. <g>
  6653. <g>
  6654. <g>
  6655. <rect fill="#999999" height="3.495" width="1.119" x="59.806" y="41.003"/>
  6656. <rect fill="#666766" height="0.883" width="1.119" x="59.806" y="42.229"/>
  6657. </g>
  6658. <g>
  6659. <rect fill="#999999" height="3.495" width="1.118" x="56.207" y="41.003"/>
  6660. <rect fill="#666766" height="0.883" width="1.118" x="56.207" y="42.229"/>
  6661. </g>
  6662. <g>
  6663. <rect fill="#999999" height="3.495" width="1.119" x="52.586" y="41.003"/>
  6664. <rect fill="#666766" height="0.883" width="1.119" x="52.586" y="42.229"/>
  6665. </g>
  6666. <g>
  6667. <rect fill="#999999" height="3.495" width="1.118" x="48.838" y="41.003"/>
  6668. <rect fill="#666766" height="0.883" width="1.118" x="48.838" y="42.229"/>
  6669. </g>
  6670. </g>
  6671. <g>
  6672. <g>
  6673. <rect fill="#999999" height="3.493" width="1.12" x="48.794" y="54.413"/>
  6674. <rect fill="#666766" height="0.885" width="1.12" x="48.794" y="55.795"/>
  6675. </g>
  6676. <g>
  6677. <rect fill="#999999" height="3.493" width="1.118" x="52.479" y="54.413"/>
  6678. <rect fill="#666766" height="0.885" width="1.118" x="52.479" y="55.795"/>
  6679. </g>
  6680. <g>
  6681. <rect fill="#999999" height="3.493" width="1.119" x="56.058" y="54.413"/>
  6682. <rect fill="#666766" height="0.885" width="1.119" x="56.058" y="55.795"/>
  6683. </g>
  6684. <g>
  6685. <rect fill="#999999" height="3.493" width="1.119" x="59.806" y="54.412"/>
  6686. <rect fill="#666766" height="0.885" width="1.119" x="59.806" y="55.794"/>
  6687. </g>
  6688. </g>
  6689. <rect fill="#2D2D2D" height="9.914" width="14.121" x="47.597" y="44.498"/>
  6690. <circle cx="60.073" cy="46.725" fill="#232323" r="0.734999"/>
  6691. <polygon fill="#191919" points="47.902,44.857,61.413,44.857,61.718,44.498,47.597,44.498"/>
  6692. <polygon fill="#3D3D3D" points="47.902,44.857,47.597,44.498,47.597,54.412,47.902,54.032"/>
  6693. <polygon fill="#232323" points="61.718,44.498,61.413,44.857,61.413,54.032,61.718,54.412"/>
  6694. <polygon fill="#191919" points="47.902,54.032,61.413,54.032,61.718,54.412,47.597,54.412"/>
  6695. </g>
  6696. </g>
  6697. <g gorn="0.4" id="Layer_5">
  6698. <g gorn="0.4.0" id="copper1">
  6699. <g gorn="0.4.0.0" id="copper0">
  6700. <path d="M4.293,12.28c-1.23,0,-2.229,0.998,-2.229,2.229s0.997999,2.229,2.229,2.229s2.229,-0.998,2.229,-2.229S5.525,12.28,4.293,12.28zM4.293,15.843c-0.735999,0,-1.333,-0.597,-1.333,-1.333c0,-0.736,0.597,-1.333,1.333,-1.333s1.333,0.597,1.333,1.333C5.626,15.246,5.03,15.843,4.293,15.843z" fill="#9A916C" gorn="0.4.0.0.0" id="connector5pin"/>
  6701. <path d="M4.293,19.479c-1.23,0,-2.229,0.998,-2.229,2.229s0.997999,2.229,2.229,2.229s2.229,-0.998,2.229,-2.229S5.525,19.479,4.293,19.479zM4.293,23.042c-0.735999,0,-1.333,-0.597,-1.333,-1.333c0,-0.736,0.597,-1.333,1.333,-1.333s1.333,0.597,1.333,1.333C5.626,22.446,5.03,23.042,4.293,23.042z" fill="#9A916C" gorn="0.4.0.0.1" id="connector4pin"/>
  6702. <path d="M4.293,26.68c-1.23,0,-2.229,0.998,-2.229,2.229c0,1.23,0.997999,2.229,2.229,2.229s2.229,-0.998,2.229,-2.229C6.521,27.678,5.525,26.68,4.293,26.68zM4.293,30.243c-0.735999,0,-1.333,-0.598,-1.333,-1.333c0,-0.736,0.597,-1.333,1.333,-1.333s1.333,0.597,1.333,1.333C5.626,29.645,5.03,30.243,4.293,30.243z" fill="#9A916C" gorn="0.4.0.0.2" id="connector3pin"/>
  6703. <path d="M4.293,33.879c-1.23,0,-2.229,0.998,-2.229,2.229c0,1.232,0.997999,2.23,2.229,2.23s2.229,-0.998,2.229,-2.23C6.521,34.877,5.525,33.879,4.293,33.879zM4.293,37.441c-0.735999,0,-1.333,-0.598,-1.333,-1.334c0,-0.734,0.597,-1.334,1.333,-1.334s1.333,0.6,1.333,1.334C5.626,36.844,5.03,37.441,4.293,37.441z" fill="#9A916C" gorn="0.4.0.0.3" id="connector2pin"/>
  6704. <path d="M4.293,41.078c-1.23,0,-2.229,0.998,-2.229,2.23c0,1.23,0.997999,2.229,2.229,2.229s2.229,-0.998,2.229,-2.229C6.523,42.078,5.525,41.078,4.293,41.078zM4.293,44.641c-0.735999,0,-1.333,-0.596,-1.333,-1.332c0,-0.734,0.597,-1.334,1.333,-1.334s1.333,0.6,1.333,1.334C5.626,44.045,5.03,44.641,4.293,44.641z" fill="#9A916C" gorn="0.4.0.0.4" id="connector1pin"/>
  6705. <path d="M2.148,52.656l4.291,0l0,-4.293L2.148,48.363L2.148,52.656zM4.293,49.174c0.735999,0,1.333,0.598,1.333,1.334s-0.597,1.334,-1.333,1.334S2.96,51.244,2.96,50.508S3.557,49.174,4.293,49.174z" fill="#9A916C" gorn="0.4.0.0.5" id="connector0pin"/>
  6706. <path d="M106.5,18.464l-4.291,0l0,4.294l4.291,0L106.5,18.464zM104.355,21.945c-0.735999,0,-1.334,-0.598,-1.334,-1.334s0.598,-1.334,1.334,-1.334c0.734999,0,1.332,0.598,1.332,1.334S105.091,21.945,104.355,21.945z" fill="#9A916C" gorn="0.4.0.0.6" id="connector9pin"/>
  6707. <path d="M104.355,30.04c1.23,0,2.229,-0.998,2.229,-2.229c0,-1.23,-0.997999,-2.229,-2.229,-2.229c-1.231,0,-2.229,0.998,-2.229,2.229C102.125,29.042,103.123,30.04,104.355,30.04zM104.355,26.479c0.734999,0,1.332,0.596,1.332,1.332c0,0.735,-0.597,1.334,-1.332,1.334c-0.735999,0,-1.334,-0.599,-1.334,-1.334C103.021,27.074,103.618,26.479,104.355,26.479z" fill="#9A916C" gorn="0.4.0.0.7" id="connector8pin"/>
  6708. <path d="M104.355,37.239c1.23,0,2.229,-0.998,2.229,-2.229c0,-1.229,-0.997999,-2.228,-2.229,-2.228c-1.231,0,-2.229,0.998,-2.229,2.228C102.125,36.241,103.123,37.239,104.355,37.239zM104.355,33.678c0.734999,0,1.332,0.598,1.332,1.332c0,0.736,-0.597,1.335,-1.332,1.335c-0.735999,0,-1.334,-0.599,-1.334,-1.335C103.021,34.275,103.618,33.678,104.355,33.678z" fill="#9A916C" gorn="0.4.0.0.8" id="connector7pin"/>
  6709. <path d="M104.355,44.438c1.23,0,2.229,-0.998,2.229,-2.229s-0.997999,-2.229,-2.229,-2.229c-1.231,0,-2.229,0.998,-2.229,2.229S103.123,44.438,104.355,44.438zM104.355,40.876c0.734999,0,1.332,0.598,1.332,1.334s-0.597,1.332,-1.332,1.332c-0.735999,0,-1.334,-0.596,-1.334,-1.332S103.618,40.876,104.355,40.876z" fill="#9A916C" gorn="0.4.0.0.9" id="connector6pin"/>
  6710. </g>
  6711. </g>
  6712. </g>
  6713. </g>
  6714. </g>
  6715. </g>
  6716. <g partID="855171440">
  6717. <g transform="translate(187.846,231.592)">
  6718. <g id="breadboard" >
  6719. <path d="M31.203,33.371c0,1.563,-1.271,2.835,-2.834,2.835L5.453,36.206c-1.565,0,-2.834,-1.271,-2.834,-2.835L2.619,5.875c0,-1.564,1.269,-2.835,2.834,-2.835l22.916,0c1.564,0,2.834,1.271,2.834,2.835L31.203,33.371L31.203,33.371z" stroke="#000000" stroke-width="0.8826" />
  6720. <rect fill="#CCCCCC" height="4.416" width="30.833" x="1.452" y="17.415"/>
  6721. <rect fill="#CCCCCC" height="2.666" width="1.734" x="23.187" y="36.197"/>
  6722. <rect fill="#CCCCCC" height="2.666" width="1.735" x="15.986" y="36.197"/>
  6723. <rect fill="#CCCCCC" height="2.666" width="1.735" x="8.786" y="36.197"/>
  6724. <g >
  6725. <path d="M27.648,35.209L4.733,35.209c-1.806,0,-3.275,-1.471,-3.275,-3.277L1.458,4.435c0,-1.806,1.469,-3.275,3.275,-3.275l22.915,0c1.806,0,3.275,1.469,3.275,3.275l0,27.497C30.923,33.739,29.454,35.209,27.648,35.209zM4.733,2.042c-1.319,0,-2.393,1.073,-2.393,2.393l0,27.497c0,1.32,1.073,2.395,2.393,2.395l22.915,0c1.319,0,2.393,-1.074,2.393,-2.395L30.041,4.435c0,-1.319,-1.073,-2.393,-2.393,-2.393L4.733,2.042z" />
  6726. </g>
  6727. <polygon fill="#CCCCCC" points="31.703,6.956,31.703,32.29,30.982,30.852,1.399,30.852,1.399,5.517,30.982,5.517" />
  6728. <polygon fill="#ABABAB" points="32.287,17.415,32.287,21.831,31.566,20.392,1.399,20.31,1.385,21.811,0.732,20.392,0.732,15.976,31.566,15.976" />
  6729. <path d="M30.267,31.689c0,1.539,-1.246,2.785,-2.785,2.785L4.971,34.474c-1.538,0,-2.785,-1.246,-2.785,-2.785L2.186,4.678c0,-1.537,1.247,-2.785,2.785,-2.785l22.511,0c1.537,0,2.784,1.248,2.784,2.785L30.267,31.689L30.267,31.689z" fill="#ABABAB" />
  6730. <circle cx="27.386" cy="31.429" r="1.917" />
  6731. <circle cx="5.065" cy="31.429" r="1.917" />
  6732. <circle cx="27.386" cy="4.787" r="1.917" />
  6733. <circle cx="5.065" cy="4.787" r="1.917" />
  6734. <circle cx="16.194" cy="18.162" fill="#878787" r="8.125" stroke="#777777" />
  6735. <circle cx="16.194" cy="18.162" fill="#878787" r="6.5" />
  6736. <circle cx="15.476" cy="16.722" fill="#3A3A3A" r="6.5" />
  6737. <polygon fill="#3A3A3A" points="6.731,13.768,9.862,19.923,21.428,14.111,18.394,8.098" />
  6738. <path d="M13.37,20.268l7.149,-7.957c0.122,0.496,0.109,0.963,0.109,1.498c0,3.59,-2.91,6.502,-6.501,6.502C13.871,20.312,13.619,20.297,13.37,20.268z" fill="#595959" />
  6739. <path d="M13.364,20.309c-3.275,-0.335,-5.831,-3.104,-5.831,-6.469c0,-3.59,2.91,-6.5,6.5,-6.5c3.122,0,5.728,2.198,6.357,5.13L13.364,20.309z" fill="#3A3A3A" />
  6740. <path d="M11.924,17.429c-3.275,-0.335,-5.831,-3.105,-5.831,-6.469c0,-3.59,2.91,-6.5,6.5,-6.5c3.122,0,5.729,2.198,6.358,5.13L11.924,17.429z" fill="#3A3A3A" />
  6741. <path d="M30.923,4.701c0,-1.806,-1.47,-3.275,-3.275,-3.275L4.733,1.426c-1.806,0,-3.275,1.469,-3.275,3.275L1.458,4.435c0,-1.806,1.469,-3.275,3.275,-3.275l22.915,0c1.806,0,3.275,1.469,3.275,3.275" fill="#FFFFFF" opacity="0.2" />
  6742. <polygon fill="#828282" points="11.924,17.429,13.37,20.268,20.521,12.312,19.066,9.493" />
  6743. </g>
  6744. </g>
  6745. </g>
  6746. <g partID="855164560">
  6747. <g transform="translate(339.046,231.592)">
  6748. <g id="breadboard" >
  6749. <path d="M31.203,33.371c0,1.563,-1.271,2.835,-2.834,2.835L5.453,36.206c-1.565,0,-2.834,-1.271,-2.834,-2.835L2.619,5.875c0,-1.564,1.269,-2.835,2.834,-2.835l22.916,0c1.564,0,2.834,1.271,2.834,2.835L31.203,33.371L31.203,33.371z" stroke="#000000" stroke-width="0.8826" />
  6750. <rect fill="#CCCCCC" height="4.416" width="30.833" x="1.452" y="17.415"/>
  6751. <rect fill="#CCCCCC" height="2.666" width="1.734" x="23.187" y="36.197"/>
  6752. <rect fill="#CCCCCC" height="2.666" width="1.735" x="15.986" y="36.197"/>
  6753. <rect fill="#CCCCCC" height="2.666" width="1.735" x="8.786" y="36.197"/>
  6754. <g >
  6755. <path d="M27.648,35.209L4.733,35.209c-1.806,0,-3.275,-1.471,-3.275,-3.277L1.458,4.435c0,-1.806,1.469,-3.275,3.275,-3.275l22.915,0c1.806,0,3.275,1.469,3.275,3.275l0,27.497C30.923,33.739,29.454,35.209,27.648,35.209zM4.733,2.042c-1.319,0,-2.393,1.073,-2.393,2.393l0,27.497c0,1.32,1.073,2.395,2.393,2.395l22.915,0c1.319,0,2.393,-1.074,2.393,-2.395L30.041,4.435c0,-1.319,-1.073,-2.393,-2.393,-2.393L4.733,2.042z" />
  6756. </g>
  6757. <polygon fill="#CCCCCC" points="31.703,6.956,31.703,32.29,30.982,30.852,1.399,30.852,1.399,5.517,30.982,5.517" />
  6758. <polygon fill="#ABABAB" points="32.287,17.415,32.287,21.831,31.566,20.392,1.399,20.31,1.385,21.811,0.732,20.392,0.732,15.976,31.566,15.976" />
  6759. <path d="M30.267,31.689c0,1.539,-1.246,2.785,-2.785,2.785L4.971,34.474c-1.538,0,-2.785,-1.246,-2.785,-2.785L2.186,4.678c0,-1.537,1.247,-2.785,2.785,-2.785l22.511,0c1.537,0,2.784,1.248,2.784,2.785L30.267,31.689L30.267,31.689z" fill="#ABABAB" />
  6760. <circle cx="27.386" cy="31.429" r="1.917" />
  6761. <circle cx="5.065" cy="31.429" r="1.917" />
  6762. <circle cx="27.386" cy="4.787" r="1.917" />
  6763. <circle cx="5.065" cy="4.787" r="1.917" />
  6764. <circle cx="16.194" cy="18.162" fill="#878787" r="8.125" stroke="#777777" />
  6765. <circle cx="16.194" cy="18.162" fill="#878787" r="6.5" />
  6766. <circle cx="15.476" cy="16.722" fill="#3A3A3A" r="6.5" />
  6767. <polygon fill="#3A3A3A" points="6.731,13.768,9.862,19.923,21.428,14.111,18.394,8.098" />
  6768. <path d="M13.37,20.268l7.149,-7.957c0.122,0.496,0.109,0.963,0.109,1.498c0,3.59,-2.91,6.502,-6.501,6.502C13.871,20.312,13.619,20.297,13.37,20.268z" fill="#595959" />
  6769. <path d="M13.364,20.309c-3.275,-0.335,-5.831,-3.104,-5.831,-6.469c0,-3.59,2.91,-6.5,6.5,-6.5c3.122,0,5.728,2.198,6.357,5.13L13.364,20.309z" fill="#3A3A3A" />
  6770. <path d="M11.924,17.429c-3.275,-0.335,-5.831,-3.105,-5.831,-6.469c0,-3.59,2.91,-6.5,6.5,-6.5c3.122,0,5.729,2.198,6.358,5.13L11.924,17.429z" fill="#3A3A3A" />
  6771. <path d="M30.923,4.701c0,-1.806,-1.47,-3.275,-3.275,-3.275L4.733,1.426c-1.806,0,-3.275,1.469,-3.275,3.275L1.458,4.435c0,-1.806,1.469,-3.275,3.275,-3.275l22.915,0c1.806,0,3.275,1.469,3.275,3.275" fill="#FFFFFF" opacity="0.2" />
  6772. <polygon fill="#828282" points="11.924,17.429,13.37,20.268,20.521,12.312,19.066,9.493" />
  6773. </g>
  6774. </g>
  6775. </g>
  6776. <g partID="855197010">
  6777. <g transform="translate(402.77,305.375)">
  6778. <g transform="matrix(0,-1,1,0,0,0)">
  6779. <g id="breadboard" >
  6780. <rect fill="none" height="1" id="connector0pin" width="1" x="0.011" y="2.583"/>
  6781. <rect fill="none" height="1" id="connector1pin" width="1" x="25.576" y="2.583"/>
  6782. <g fill="none" id="connector0leg" stroke="#8C8C8C" stroke-linecap="round" stroke-width="2.094" x1="1.047" x2="2.094" y1="3.63" y2="3.63"/>
  6783. <g fill="none" id="connector1leg" stroke="#8C8C8C" stroke-linecap="round" stroke-width="2.094" x1="27.785" x2="28.832" y1="3.63" y2="3.63"/>
  6784. <rect fill="#8C8C8C" height="2.094" id="rect7" width="25.691" x="2.094" y="2.583"/>
  6785. <g >
  6786. <path d="M9.159,0L7.002,0c-0.475,0,-0.393,7.193,0,7.193l2.157,0c0.396,0,11.114,0,11.508,0l2.158,0c0.515,0,0.558,-7.193,0,-7.193l-2.158,0C20.27,0,9.553,0,9.159,0z" fill="#1A1A1A" id="Body_1_" />
  6787. <rect enable-background="new " fill="#FFFFFF" height="7.193" id="rect16" opacity="0.74" width="1.992" x="9.783" y="0"/>
  6788. <path d="M7.289,0.358c0.726,0,1.145,0,1.866,0c0.719,0,10.786,0,11.508,0c0.021,0,0.229,0,0.479,0c0.563,0,1.066,0,1.311,0c0.354,0,1.146,0.36,-0.354,0.36c-1.08,0,-0.726,0,-1.438,0c-0.717,0,-10.791,0,-11.508,0c-0.723,0,-1.145,0,-1.866,0C6.931,0.719,6.573,0.358,7.289,0.358z" enable-background="new " fill="#FFFFFF" id="Reflex_1_" opacity="0.4" />
  6789. <path d="M22.822,7.194c-0.727,0.014,-1.438,0,-2.156,0c-0.902,0,-12.942,0,-13.667,0c-0.091,0,-0.202,-0.723,-0.182,-0.723c1.293,0,1.613,0,2.336,0c0.723,0,10.789,0,11.509,0c0.721,0,1.67,0,2.393,0C23.076,6.471,22.969,7.192,22.822,7.194z" enable-background="new " id="Shaddow_1_" opacity="0.4" />
  6790. </g>
  6791. </g>
  6792. </g>
  6793. </g>
  6794. </g>
  6795. <path d="M406.4,303.281L406.4,304.328" fill="none" opacity="1" stroke="#8c8c8c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.094"/>
  6796. <path d="M406.4,303.281L406.4,304.328" fill="none" opacity="0.2" stroke="#00ff00" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.094"/>
  6797. <path d="M406.4,277.59L406.4,276.543" fill="none" opacity="1" stroke="#8c8c8c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.094"/>
  6798. <path d="M406.4,277.59L406.4,276.543" fill="none" opacity="0.2" stroke="#00ff00" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.094"/>
  6799. <g partID="855207150">
  6800. <g transform="translate(460.367,227.196)">
  6801. <g transform="matrix(0,-1,1,0,0,0)">
  6802. <g id="breadboard" >
  6803. <rect fill="none" height="0.72" id="connector0pin" width="0.72" x="0.36" y="2.5848"/>
  6804. <rect fill="none" height="0.72" id="connector1pin" width="0.72" x="29.8202" y="2.5848"/>
  6805. <line fill="none" id="connector0leg" stroke="#8C8C8C" stroke-linecap="round" stroke-width="2.0952" x1="1.0476" x2="2.0952" y1="3.6324" y2="3.6324"/>
  6806. <line fill="none" id="connector1leg" stroke="#8C8C8C" stroke-linecap="round" stroke-width="2.0952" x1="29.8526" x2="28.805" y1="3.6324" y2="3.6324"/>
  6807. <path d="M1.0476,3.6324l28.3666,0" fill="none" stroke="#8C8C8C" stroke-width="2.0952" />
  6808. <path d="M10.2478,0.49536c-0.36,-0.1656,-0.9792,-0.2952,-1.3752,-0.2952l-1.9872,0c-0.396,0,-0.72,0.324,-0.72,0.72l0,5.35608c0,0.39672,0.324,0.72,0.72,0.72l1.9872,0c0.396,0,1.0152,-0.13608,1.3752,-0.2952l0.072,-0.03528c0.36,-0.1656,0.9792,-0.2952,1.3752,-0.2952l7.1856,0c0.39672,0,1.01448,0.13608,1.37448,0.2952l0.07272,0.03528c0.36,0.1656,0.97776,0.2952,1.3752,0.2952l1.9872,0c0.39744,0,0.72,-0.32328,0.72,-0.72L24.4102,0.92016c0,-0.396,-0.32256,-0.72,-0.72,-0.72l-1.9872,0c-0.39744,0,-1.0152,0.1368,-1.3752,0.2952l-0.07272,0.036c-0.36,0.1656,-0.97776,0.2952,-1.37448,0.2952l-7.1856,0c-0.396,0,-1.0152,-0.1368,-1.3752,-0.2952L10.2478,0.49536z" fill="#D9B477" id="body" />
  6809. <rect fill="#ad9f4e" height="6.79536" id="gold_band" width="0.70272" x="22.019" y="0.19368"/>
  6810. <rect fill="#c40808" height="5.5368" id="band_rd_multiplier" width="1.8504" x="16.1726" y="0.82656"/>
  6811. <rect fill="#000000" height="5.5368" id="band_2_nd" width="1.8504" x="12.4726" y="0.82656"/>
  6812. <path d="M10.6286,0.63936c-0.1152,-0.036,-0.2232,-0.072,-0.3096,-0.1152l-0.072,-0.036c-0.36,-0.16488,-0.9792,-0.2952,-1.3752,-0.2952l-0.0864,0l0,6.79608l0.0864,0c0.396,0,1.0152,-0.13608,1.3752,-0.2952l0.072,-0.03528c0.0864,-0.04464,0.1944,-0.07992,0.3096,-0.1152L10.6286,0.63936z" fill="#8a3d06" id="band_1_st" />
  6813. <path d="M23.711,4.0896L23.711,4.0896c0,0.37944,-0.13032,0.69912,-0.2952,0.69912l-1.9224,0c-0.38016,0,-0.97776,-0.05616,-1.33272,-0.1224L20.088,4.65048c-0.34488,-0.0648,-0.94896,-0.1224,-1.33344,-0.1224L11.808,4.52808c-0.3816,0,-0.9792,0.0576,-1.332,0.1224l-0.072,0.01512c-0.3456,0.06552,-0.9432,0.1224,-1.332,0.1224l-0.3168,0l-1.0008,0l-0.3096,0c-0.3816,0,-0.6984,0.29376,-0.6984,0.64512l0,0.24696L6.7464,5.8392l0,0.1728c0,0.36,0.3168,0.64512,0.6984,0.64512l1.62,0c0.3816,0,0.9792,-0.1224,1.332,-0.26712l0.072,-0.02808c0.3456,-0.14112,0.9504,-0.26496,1.332,-0.26496l6.94656,0c0.37944,0,0.97704,0.12384,1.33416,0.26568l0.07416,0.02808c0.34488,0.14472,0.94464,0.26712,1.33344,0.26712l2.2248,0c0.38088,0,0.69912,-0.2952,0.69912,-0.64512L24.413,5.472L24.413,4.49928L24.413,2.65536C24.1358,2.76336,23.711,3.06576,23.711,4.0896z" id="Shadow" opacity="0.3" />
  6814. <rect height="3.15288" id="ShadowExtra" opacity="0.4" width="0.70272" x="22.019" y="3.48336"/>
  6815. <path d="M19.751,1.08576c0.22968,0,0.49104,-0.1008,0.6624,-0.1728c0.2016,-0.0792,0.57672,-0.144,0.96624,-0.144l1.46088,0c0.22464,0,0.22464,0.2448,0.22464,0.3744c0,0.1296,-0.01512,0.3816,-0.22464,0.3816l-3.06,0c-0.10728,0,-0.2304,-0.1152,-0.2304,-0.22392C19.5566,1.21536,19.6286,1.08576,19.751,1.08576z" fill="#FFFFFF" id="ReflexRight" opacity="0.25" />
  6816. <circle cx="6.99984" cy="1.13616" fill="#FFFFFF" id="ReflexLeft" opacity="0.35" r="0.432" />
  6817. <rect fill="#FFFF33" height="1.62" id="Reflex_gold" opacity="0.5" width="0.70272" x="22.019" y="0.42336"/>
  6818. <rect fill="#FFFFFF" height="0.7488" id="Reflex_extra" opacity="0.5" width="0.70272" x="22.019" y="0.78336"/>
  6819. </g>
  6820. </g>
  6821. </g>
  6822. </g>
  6823. <path d="M464,225.101L464,226.148" fill="none" opacity="1" stroke="#8c8c8c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.0952"/>
  6824. <path d="M464,225.101L464,226.148" fill="none" opacity="0.2" stroke="#00ff00" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.0952"/>
  6825. <path d="M464,198.391L464,198.41" fill="none" opacity="1" stroke="#8c8c8c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.0952"/>
  6826. <path d="M464,198.01L464,198.41" fill="none" opacity="0.2" stroke="#00ff00" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.0952"/>
  6827. <g partID="855188170">
  6828. <line stroke="#1b5bb3" stroke-linecap="round" stroke-width="3.2" x1="39.4666" x2="182.934" y1="67.743" y2="67.743"/>
  6829. <line stroke="#418dd9" stroke-linecap="round" stroke-width="1.6" x1="39.4666" x2="182.934" y1="67.743" y2="67.743"/>
  6830. </g>
  6831. <g partID="855188120">
  6832. <line stroke="#1b5bb3" stroke-linecap="round" stroke-width="3.2" x1="182.934" x2="183.2" y1="67.743" y2="60.543"/>
  6833. <line stroke="#418dd9" stroke-linecap="round" stroke-width="1.6" x1="182.934" x2="183.2" y1="67.743" y2="60.543"/>
  6834. </g>
  6835. <g partID="855188070">
  6836. <line stroke="#1b5bb3" stroke-linecap="round" stroke-width="3.2" x1="39.4666" x2="39.4666" y1="176.009" y2="67.743"/>
  6837. <line stroke="#418dd9" stroke-linecap="round" stroke-width="1.6" x1="39.4666" x2="39.4666" y1="176.009" y2="67.743"/>
  6838. </g>
  6839. <g partID="855170850">
  6840. <line stroke="#1b5bb3" stroke-linecap="round" stroke-width="3.2" x1="46.4" x2="39.4667" y1="175.744" y2="176.01"/>
  6841. <line stroke="#418dd9" stroke-linecap="round" stroke-width="1.6" x1="46.4" x2="39.4667" y1="175.744" y2="176.01"/>
  6842. </g>
  6843. <g partID="855188020">
  6844. <line stroke="#1b5bb3" stroke-linecap="round" stroke-width="3.2" x1="46.4" x2="46.4002" y1="75.2094" y2="168.544"/>
  6845. <line stroke="#418dd9" stroke-linecap="round" stroke-width="1.6" x1="46.4" x2="46.4002" y1="75.2094" y2="168.544"/>
  6846. </g>
  6847. <g partID="855224280">
  6848. <line stroke="#1b5bb3" stroke-linecap="round" stroke-width="3.2" x1="190.4" x2="46.4" y1="75.2094" y2="75.2094"/>
  6849. <line stroke="#418dd9" stroke-linecap="round" stroke-width="1.6" x1="190.4" x2="46.4" y1="75.2094" y2="75.2094"/>
  6850. </g>
  6851. <g partID="855170920">
  6852. <line stroke="#1b5bb3" stroke-linecap="round" stroke-width="3.2" x1="190.4" x2="190.4" y1="60.543" y2="75.2094"/>
  6853. <line stroke="#418dd9" stroke-linecap="round" stroke-width="1.6" x1="190.4" x2="190.4" y1="60.543" y2="75.2094"/>
  6854. </g>
  6855. <g partID="855168480">
  6856. <line stroke="#8c0000" stroke-linecap="round" stroke-width="3.2" x1="168.814" x2="169.067" y1="226.146" y2="53.343"/>
  6857. <line stroke="#cc1414" stroke-linecap="round" stroke-width="1.6" x1="168.814" x2="169.067" y1="226.146" y2="53.343"/>
  6858. </g>
  6859. <g partID="855188220">
  6860. <line stroke="#8c0000" stroke-linecap="round" stroke-width="3.2" x1="169.066" x2="176" y1="53.343" y2="53.344"/>
  6861. <line stroke="#cc1414" stroke-linecap="round" stroke-width="1.6" x1="169.066" x2="176" y1="53.343" y2="53.344"/>
  6862. </g>
  6863. <g partID="855189330">
  6864. <line stroke="#000000" stroke-linecap="round" stroke-width="3.2" x1="161.6" x2="190.4" y1="38.943" y2="38.943"/>
  6865. <line stroke="#404040" stroke-linecap="round" stroke-width="1.6" x1="161.6" x2="190.4" y1="38.943" y2="38.943"/>
  6866. </g>
  6867. <g partID="855189260">
  6868. <line stroke="#000000" stroke-linecap="round" stroke-width="3.2" x1="190.4" x2="190.4" y1="38.943" y2="53.344"/>
  6869. <line stroke="#404040" stroke-linecap="round" stroke-width="1.6" x1="190.4" x2="190.4" y1="38.943" y2="53.344"/>
  6870. </g>
  6871. <g partID="855189120">
  6872. <line stroke="#000000" stroke-linecap="round" stroke-width="3.2" x1="161.615" x2="161.6" y1="218.946" y2="38.943"/>
  6873. <line stroke="#404040" stroke-linecap="round" stroke-width="1.6" x1="161.615" x2="161.6" y1="218.946" y2="38.943"/>
  6874. </g>
  6875. <g partID="855229480">
  6876. <line stroke="#8c0000" stroke-linecap="round" stroke-width="3.2" x1="241.066" x2="240.801" y1="320.01" y2="326.945"/>
  6877. <line stroke="#cc1414" stroke-linecap="round" stroke-width="1.6" x1="241.066" x2="240.801" y1="320.01" y2="326.945"/>
  6878. </g>
  6879. <g partID="855172560">
  6880. <line stroke="#8c0000" stroke-linecap="round" stroke-width="3.2" x1="197.866" x2="241.066" y1="320.01" y2="320.01"/>
  6881. <line stroke="#cc1414" stroke-linecap="round" stroke-width="1.6" x1="197.866" x2="241.066" y1="320.01" y2="320.01"/>
  6882. </g>
  6883. <g partID="855172410">
  6884. <line stroke="#8c0000" stroke-linecap="round" stroke-width="3.2" x1="197.615" x2="197.867" y1="355.746" y2="320.01"/>
  6885. <line stroke="#cc1414" stroke-linecap="round" stroke-width="1.6" x1="197.615" x2="197.867" y1="355.746" y2="320.01"/>
  6886. </g>
  6887. <g partID="855172860">
  6888. <line stroke="#000000" stroke-linecap="round" stroke-width="3.2" x1="204.8" x2="233.6" y1="326.943" y2="326.945"/>
  6889. <line stroke="#404040" stroke-linecap="round" stroke-width="1.6" x1="204.8" x2="233.6" y1="326.943" y2="326.945"/>
  6890. </g>
  6891. <g partID="855172710">
  6892. <line stroke="#000000" stroke-linecap="round" stroke-width="3.2" x1="204.814" x2="204.8" y1="348.545" y2="326.943"/>
  6893. <line stroke="#404040" stroke-linecap="round" stroke-width="1.6" x1="204.814" x2="204.8" y1="348.545" y2="326.943"/>
  6894. </g>
  6895. <g partID="855185570">
  6896. <line stroke="#8c0000" stroke-linecap="round" stroke-width="3.2" x1="75.2" x2="39.4666" y1="219.209" y2="219.209"/>
  6897. <line stroke="#cc1414" stroke-linecap="round" stroke-width="1.6" x1="75.2" x2="39.4666" y1="219.209" y2="219.209"/>
  6898. </g>
  6899. <g partID="855185380">
  6900. <line stroke="#8c0000" stroke-linecap="round" stroke-width="3.2" x1="39.4666" x2="39.4666" y1="219.209" y2="182.943"/>
  6901. <line stroke="#cc1414" stroke-linecap="round" stroke-width="1.6" x1="39.4666" x2="39.4666" y1="219.209" y2="182.943"/>
  6902. </g>
  6903. <g partID="855184360">
  6904. <line stroke="#8c0000" stroke-linecap="round" stroke-width="3.2" x1="39.4666" x2="46.4" y1="182.943" y2="182.942"/>
  6905. <line stroke="#cc1414" stroke-linecap="round" stroke-width="1.6" x1="39.4666" x2="46.4" y1="182.943" y2="182.942"/>
  6906. </g>
  6907. <g partID="855183980">
  6908. <line stroke="#8c0000" stroke-linecap="round" stroke-width="3.2" x1="75.2152" x2="75.2004" y1="226.143" y2="219.21"/>
  6909. <line stroke="#cc1414" stroke-linecap="round" stroke-width="1.6" x1="75.2152" x2="75.2004" y1="226.143" y2="219.21"/>
  6910. </g>
  6911. <g partID="855184550">
  6912. <line stroke="#000000" stroke-linecap="round" stroke-width="3.2" x1="46.4" x2="46.4005" y1="226.143" y2="190.144"/>
  6913. <line stroke="#404040" stroke-linecap="round" stroke-width="1.6" x1="46.4" x2="46.4005" y1="226.143" y2="190.144"/>
  6914. </g>
  6915. <g partID="855184170">
  6916. <line stroke="#000000" stroke-linecap="round" stroke-width="3.2" x1="68.0152" x2="46.4004" y1="226.143" y2="226.143"/>
  6917. <line stroke="#404040" stroke-linecap="round" stroke-width="1.6" x1="68.0152" x2="46.4004" y1="226.143" y2="226.143"/>
  6918. </g>
  6919. <g partID="855186060">
  6920. <line stroke="#000000" stroke-linecap="round" stroke-width="3.2" x1="492.8" x2="492.8" y1="348.81" y2="219.21"/>
  6921. <line stroke="#404040" stroke-linecap="round" stroke-width="1.6" x1="492.8" x2="492.8" y1="348.81" y2="219.21"/>
  6922. </g>
  6923. <g partID="855185910">
  6924. <line stroke="#000000" stroke-linecap="round" stroke-width="3.2" x1="492.8" x2="485.612" y1="219.209" y2="218.943"/>
  6925. <line stroke="#404040" stroke-linecap="round" stroke-width="1.6" x1="492.8" x2="485.612" y1="219.209" y2="218.943"/>
  6926. </g>
  6927. <g partID="855185760">
  6928. <line stroke="#000000" stroke-linecap="round" stroke-width="3.2" x1="485.612" x2="492.8" y1="348.543" y2="348.81"/>
  6929. <line stroke="#404040" stroke-linecap="round" stroke-width="1.6" x1="485.612" x2="492.8" y1="348.543" y2="348.81"/>
  6930. </g>
  6931. <g partID="855186670">
  6932. <line stroke="#8c0000" stroke-linecap="round" stroke-width="3.2" x1="500.266" x2="500.266" y1="355.743" y2="226.143"/>
  6933. <line stroke="#cc1414" stroke-linecap="round" stroke-width="1.6" x1="500.266" x2="500.266" y1="355.743" y2="226.143"/>
  6934. </g>
  6935. <g partID="855186440">
  6936. <line stroke="#8c0000" stroke-linecap="round" stroke-width="3.2" x1="500.266" x2="485.612" y1="226.143" y2="226.143"/>
  6937. <line stroke="#cc1414" stroke-linecap="round" stroke-width="1.6" x1="500.266" x2="485.612" y1="226.143" y2="226.143"/>
  6938. </g>
  6939. <g partID="855186210">
  6940. <line stroke="#8c0000" stroke-linecap="round" stroke-width="3.2" x1="485.612" x2="500.267" y1="355.743" y2="355.743"/>
  6941. <line stroke="#cc1414" stroke-linecap="round" stroke-width="1.6" x1="485.612" x2="500.267" y1="355.743" y2="355.743"/>
  6942. </g>
  6943. <g partID="855189990">
  6944. <line stroke="#ad6a38" stroke-linecap="round" stroke-width="3.2" x1="255.201" x2="197.6" y1="298.143" y2="60.543"/>
  6945. <line stroke="#ef6100" stroke-linecap="round" stroke-width="1.6" x1="255.201" x2="197.6" y1="298.143" y2="60.543"/>
  6946. </g>
  6947. <g partID="855190060">
  6948. <line stroke="#ad6a38" stroke-linecap="round" stroke-width="3.2" x1="262.4" x2="212" y1="298.143" y2="60.543"/>
  6949. <line stroke="#ef6100" stroke-linecap="round" stroke-width="1.6" x1="262.4" x2="212" y1="298.143" y2="60.543"/>
  6950. </g>
  6951. <g partID="855190130">
  6952. <line stroke="#ad6a38" stroke-linecap="round" stroke-width="3.2" x1="269.6" x2="219.2" y1="298.143" y2="60.543"/>
  6953. <line stroke="#ef6100" stroke-linecap="round" stroke-width="1.6" x1="269.6" x2="219.2" y1="298.143" y2="60.543"/>
  6954. </g>
  6955. <g partID="855190200">
  6956. <line stroke="#00a0c6" stroke-linecap="round" stroke-width="3.2" x1="276.8" x2="226.4" y1="298.143" y2="60.543"/>
  6957. <line stroke="#33ffc5" stroke-linecap="round" stroke-width="1.6" x1="276.8" x2="226.4" y1="298.143" y2="60.543"/>
  6958. </g>
  6959. <g partID="855190430">
  6960. <line stroke="#00a0c6" stroke-linecap="round" stroke-width="3.2" x1="284" x2="240.8" y1="298.143" y2="60.543"/>
  6961. <line stroke="#33ffc5" stroke-linecap="round" stroke-width="1.6" x1="284" x2="240.8" y1="298.143" y2="60.543"/>
  6962. </g>
  6963. <g partID="855190500">
  6964. <line stroke="#00a0c6" stroke-linecap="round" stroke-width="3.2" x1="291.2" x2="248" y1="298.143" y2="60.543"/>
  6965. <line stroke="#33ffc5" stroke-linecap="round" stroke-width="1.6" x1="291.2" x2="248" y1="298.143" y2="60.543"/>
  6966. </g>
  6967. <g partID="855190570">
  6968. <line stroke="#00a0c6" stroke-linecap="round" stroke-width="3.2" x1="298.401" x2="255.2" y1="298.143" y2="60.543"/>
  6969. <line stroke="#33ffc5" stroke-linecap="round" stroke-width="1.6" x1="298.401" x2="255.2" y1="298.143" y2="60.543"/>
  6970. </g>
  6971. <g partID="855190640">
  6972. <line stroke="#00a0c6" stroke-linecap="round" stroke-width="3.2" x1="305.6" x2="276.801" y1="298.143" y2="60.543"/>
  6973. <line stroke="#33ffc5" stroke-linecap="round" stroke-width="1.6" x1="305.6" x2="276.801" y1="298.143" y2="60.543"/>
  6974. </g>
  6975. <g partID="855190710">
  6976. <line stroke="#00a0c6" stroke-linecap="round" stroke-width="3.2" x1="312.8" x2="283.999" y1="298.143" y2="60.543"/>
  6977. <line stroke="#33ffc5" stroke-linecap="round" stroke-width="1.6" x1="312.8" x2="283.999" y1="298.143" y2="60.543"/>
  6978. </g>
  6979. <g partID="855190780">
  6980. <line stroke="#00a0c6" stroke-linecap="round" stroke-width="3.2" x1="291.201" x2="320" y1="60.543" y2="298.143"/>
  6981. <line stroke="#33ffc5" stroke-linecap="round" stroke-width="1.6" x1="291.201" x2="320" y1="60.543" y2="298.143"/>
  6982. </g>
  6983. <g partID="855190850">
  6984. <line stroke="#00a0c6" stroke-linecap="round" stroke-width="3.2" x1="327.2" x2="298.4" y1="298.143" y2="60.543"/>
  6985. <line stroke="#33ffc5" stroke-linecap="round" stroke-width="1.6" x1="327.2" x2="298.4" y1="298.143" y2="60.543"/>
  6986. </g>
  6987. <g partID="855191190">
  6988. <line stroke="#8c0000" stroke-linecap="round" stroke-width="3.2" x1="182.934" x2="197.601" y1="276.809" y2="276.546"/>
  6989. <line stroke="#cc1414" stroke-linecap="round" stroke-width="1.6" x1="182.934" x2="197.601" y1="276.809" y2="276.546"/>
  6990. </g>
  6991. <g partID="855191000">
  6992. <line stroke="#8c0000" stroke-linecap="round" stroke-width="3.2" x1="183.214" x2="182.933" y1="226.146" y2="276.809"/>
  6993. <line stroke="#cc1414" stroke-linecap="round" stroke-width="1.6" x1="183.214" x2="182.933" y1="226.146" y2="276.809"/>
  6994. </g>
  6995. <g partID="855191650">
  6996. <line stroke="#000000" stroke-linecap="round" stroke-width="3.2" x1="226.666" x2="212.001" y1="276.809" y2="276.546"/>
  6997. <line stroke="#404040" stroke-linecap="round" stroke-width="1.6" x1="226.666" x2="212.001" y1="276.809" y2="276.546"/>
  6998. </g>
  6999. <g partID="855191380">
  7000. <line stroke="#000000" stroke-linecap="round" stroke-width="3.2" x1="226.414" x2="226.666" y1="218.946" y2="276.809"/>
  7001. <line stroke="#404040" stroke-linecap="round" stroke-width="1.6" x1="226.414" x2="226.666" y1="218.946" y2="276.809"/>
  7002. </g>
  7003. <g partID="855192350">
  7004. <line stroke="#d6d63a" stroke-linecap="round" stroke-width="3.2" x1="204.8" x2="204.801" y1="298.143" y2="276.546"/>
  7005. <line stroke="#fff800" stroke-linecap="round" stroke-width="1.6" x1="204.8" x2="204.801" y1="298.143" y2="276.546"/>
  7006. </g>
  7007. <g partID="855192200">
  7008. <line stroke="#d6d63a" stroke-linecap="round" stroke-width="3.2" x1="248" x2="204.8" y1="298.146" y2="298.143"/>
  7009. <line stroke="#fff800" stroke-linecap="round" stroke-width="1.6" x1="248" x2="204.8" y1="298.146" y2="298.143"/>
  7010. </g>
  7011. <g partID="855192690">
  7012. <line stroke="#8c0000" stroke-linecap="round" stroke-width="3.2" x1="334.4" x2="348.799" y1="276.809" y2="276.543"/>
  7013. <line stroke="#cc1414" stroke-linecap="round" stroke-width="1.6" x1="334.4" x2="348.799" y1="276.809" y2="276.543"/>
  7014. </g>
  7015. <g partID="855192460">
  7016. <line stroke="#8c0000" stroke-linecap="round" stroke-width="3.2" x1="334.413" x2="334.4" y1="226.143" y2="276.81"/>
  7017. <line stroke="#cc1414" stroke-linecap="round" stroke-width="1.6" x1="334.413" x2="334.4" y1="226.143" y2="276.81"/>
  7018. </g>
  7019. <g partID="855193190">
  7020. <line stroke="#000000" stroke-linecap="round" stroke-width="3.2" x1="377.6" x2="363.2" y1="276.809" y2="276.543"/>
  7021. <line stroke="#404040" stroke-linecap="round" stroke-width="1.6" x1="377.6" x2="363.2" y1="276.809" y2="276.543"/>
  7022. </g>
  7023. <g partID="855192920">
  7024. <line stroke="#000000" stroke-linecap="round" stroke-width="3.2" x1="377.614" x2="377.6" y1="218.943" y2="276.81"/>
  7025. <line stroke="#404040" stroke-linecap="round" stroke-width="1.6" x1="377.614" x2="377.6" y1="218.943" y2="276.81"/>
  7026. </g>
  7027. <g partID="855193960">
  7028. <line stroke="#dc00dc" stroke-linecap="round" stroke-width="3.2" x1="334.4" x2="355.733" y1="283.743" y2="283.743"/>
  7029. <line stroke="#fa50e6" stroke-linecap="round" stroke-width="1.6" x1="334.4" x2="355.733" y1="283.743" y2="283.743"/>
  7030. </g>
  7031. <g partID="855193890">
  7032. <line stroke="#dc00dc" stroke-linecap="round" stroke-width="3.2" x1="355.734" x2="356" y1="283.743" y2="276.543"/>
  7033. <line stroke="#fa50e6" stroke-linecap="round" stroke-width="1.6" x1="355.734" x2="356" y1="283.743" y2="276.543"/>
  7034. </g>
  7035. <g partID="855193820">
  7036. <line stroke="#dc00dc" stroke-linecap="round" stroke-width="3.2" x1="334.401" x2="334.4" y1="298.143" y2="283.743"/>
  7037. <line stroke="#fa50e6" stroke-linecap="round" stroke-width="1.6" x1="334.401" x2="334.4" y1="298.143" y2="283.743"/>
  7038. </g>
  7039. <g partID="855197160">
  7040. <line stroke="#dc00dc" stroke-linecap="round" stroke-width="3.2" x1="406.399" x2="334.401" y1="305.342" y2="305.342"/>
  7041. <line stroke="#fa50e6" stroke-linecap="round" stroke-width="1.6" x1="406.399" x2="334.401" y1="305.342" y2="305.342"/>
  7042. </g>
  7043. <g partID="855198190">
  7044. <line stroke="#000000" stroke-linecap="round" stroke-width="3.2" x1="428.266" x2="413.6" y1="269.343" y2="269.343"/>
  7045. <line stroke="#404040" stroke-linecap="round" stroke-width="1.6" x1="428.266" x2="413.6" y1="269.343" y2="269.343"/>
  7046. </g>
  7047. <g partID="855197960">
  7048. <line stroke="#000000" stroke-linecap="round" stroke-width="3.2" x1="428.012" x2="428.267" y1="218.943" y2="269.343"/>
  7049. <line stroke="#404040" stroke-linecap="round" stroke-width="1.6" x1="428.012" x2="428.267" y1="218.943" y2="269.343"/>
  7050. </g>
  7051. <g partID="855198560">
  7052. <line stroke="#dc00dc" stroke-linecap="round" stroke-width="3.2" x1="392" x2="305.599" y1="60.8094" y2="60.5427"/>
  7053. <line stroke="#fa50e6" stroke-linecap="round" stroke-width="1.6" x1="392" x2="305.599" y1="60.8094" y2="60.5427"/>
  7054. </g>
  7055. <g partID="855198490">
  7056. <line stroke="#dc00dc" stroke-linecap="round" stroke-width="3.2" x1="392" x2="392" y1="269.343" y2="60.8094"/>
  7057. <line stroke="#fa50e6" stroke-linecap="round" stroke-width="1.6" x1="392" x2="392" y1="269.343" y2="60.8094"/>
  7058. </g>
  7059. <g partID="855198420">
  7060. <line stroke="#dc00dc" stroke-linecap="round" stroke-width="3.2" x1="399.2" x2="392" y1="269.343" y2="269.343"/>
  7061. <line stroke="#fa50e6" stroke-linecap="round" stroke-width="1.6" x1="399.2" x2="392" y1="269.343" y2="269.343"/>
  7062. </g>
  7063. <g partID="855201000">
  7064. <line stroke="#dc00dc" stroke-linecap="round" stroke-width="3.2" x1="392" x2="341.6" y1="312.543" y2="312.543"/>
  7065. <line stroke="#fa50e6" stroke-linecap="round" stroke-width="1.6" x1="392" x2="341.6" y1="312.543" y2="312.543"/>
  7066. </g>
  7067. <g partID="855200790">
  7068. <line stroke="#dc00dc" stroke-linecap="round" stroke-width="3.2" x1="392" x2="392" y1="276.809" y2="312.543"/>
  7069. <line stroke="#fa50e6" stroke-linecap="round" stroke-width="1.6" x1="392" x2="392" y1="276.809" y2="312.543"/>
  7070. </g>
  7071. <g partID="855200600">
  7072. <line stroke="#dc00dc" stroke-linecap="round" stroke-width="3.2" x1="406.399" x2="392" y1="276.543" y2="276.81"/>
  7073. <line stroke="#fa50e6" stroke-linecap="round" stroke-width="1.6" x1="406.399" x2="392" y1="276.543" y2="276.81"/>
  7074. </g>
  7075. <g partID="855202690">
  7076. <line stroke="#000000" stroke-linecap="round" stroke-width="3.2" x1="68.0152" x2="68.0012" y1="348.543" y2="305.342"/>
  7077. <line stroke="#404040" stroke-linecap="round" stroke-width="1.6" x1="68.0152" x2="68.0012" y1="348.543" y2="305.342"/>
  7078. </g>
  7079. <g partID="855202960">
  7080. <line stroke="#000000" stroke-linecap="round" stroke-width="3.2" x1="89.6152" x2="89.6012" y1="348.543" y2="305.342"/>
  7081. <line stroke="#404040" stroke-linecap="round" stroke-width="1.6" x1="89.6152" x2="89.6012" y1="348.543" y2="305.342"/>
  7082. </g>
  7083. <g partID="855203270">
  7084. <line stroke="#000000" stroke-linecap="round" stroke-width="3.2" x1="111.215" x2="111.201" y1="348.543" y2="305.342"/>
  7085. <line stroke="#404040" stroke-linecap="round" stroke-width="1.6" x1="111.215" x2="111.201" y1="348.543" y2="305.342"/>
  7086. </g>
  7087. <g partID="855203620">
  7088. <line stroke="#000000" stroke-linecap="round" stroke-width="3.2" x1="132.815" x2="132.801" y1="348.543" y2="305.342"/>
  7089. <line stroke="#404040" stroke-linecap="round" stroke-width="1.6" x1="132.815" x2="132.801" y1="348.543" y2="305.342"/>
  7090. </g>
  7091. <g partID="855204530">
  7092. <line stroke="#00a527" stroke-linecap="round" stroke-width="3.2" x1="25.0667" x2="118.401" y1="248.01" y2="247.743"/>
  7093. <line stroke="#25cc35" stroke-linecap="round" stroke-width="1.6" x1="25.0667" x2="118.401" y1="248.01" y2="247.743"/>
  7094. </g>
  7095. <g partID="855204460">
  7096. <line stroke="#00a527" stroke-linecap="round" stroke-width="3.2" x1="25.0664" x2="25.0667" y1="24.543" y2="248.01"/>
  7097. <line stroke="#25cc35" stroke-linecap="round" stroke-width="1.6" x1="25.0664" x2="25.0667" y1="24.543" y2="248.01"/>
  7098. </g>
  7099. <g partID="855204390">
  7100. <line stroke="#00a527" stroke-linecap="round" stroke-width="3.2" x1="197.867" x2="25.0664" y1="24.5427" y2="24.543"/>
  7101. <line stroke="#25cc35" stroke-linecap="round" stroke-width="1.6" x1="197.867" x2="25.0664" y1="24.5427" y2="24.543"/>
  7102. </g>
  7103. <g partID="855204070">
  7104. <line stroke="#00a527" stroke-linecap="round" stroke-width="3.2" x1="197.6" x2="197.867" y1="53.3442" y2="24.5427"/>
  7105. <line stroke="#25cc35" stroke-linecap="round" stroke-width="1.6" x1="197.6" x2="197.867" y1="53.3442" y2="24.5427"/>
  7106. </g>
  7107. <g partID="855204740">
  7108. <line stroke="#00a527" stroke-linecap="round" stroke-width="3.2" x1="17.6" x2="17.6" y1="254.943" y2="17.6094"/>
  7109. <line stroke="#25cc35" stroke-linecap="round" stroke-width="1.6" x1="17.6" x2="17.6" y1="254.943" y2="17.6094"/>
  7110. </g>
  7111. <g partID="855204670">
  7112. <line stroke="#00a527" stroke-linecap="round" stroke-width="3.2" x1="17.6" x2="204.8" y1="17.6094" y2="17.6094"/>
  7113. <line stroke="#25cc35" stroke-linecap="round" stroke-width="1.6" x1="17.6" x2="204.8" y1="17.6094" y2="17.6094"/>
  7114. </g>
  7115. <g partID="855204600">
  7116. <line stroke="#00a527" stroke-linecap="round" stroke-width="3.2" x1="204.8" x2="204.8" y1="17.6094" y2="53.3442"/>
  7117. <line stroke="#25cc35" stroke-linecap="round" stroke-width="1.6" x1="204.8" x2="204.8" y1="17.6094" y2="53.3442"/>
  7118. </g>
  7119. <g partID="855204140">
  7120. <line stroke="#00a527" stroke-linecap="round" stroke-width="3.2" x1="96.8011" x2="17.6" y1="254.943" y2="254.943"/>
  7121. <line stroke="#25cc35" stroke-linecap="round" stroke-width="1.6" x1="96.8011" x2="17.6" y1="254.943" y2="254.943"/>
  7122. </g>
  7123. <g partID="855205110">
  7124. <line stroke="#00a527" stroke-linecap="round" stroke-width="3.2" x1="211.734" x2="212" y1="10.143" y2="53.3442"/>
  7125. <line stroke="#25cc35" stroke-linecap="round" stroke-width="1.6" x1="211.734" x2="212" y1="10.143" y2="53.3442"/>
  7126. </g>
  7127. <g partID="855205040">
  7128. <line stroke="#00a527" stroke-linecap="round" stroke-width="3.2" x1="10.6666" x2="211.734" y1="10.143" y2="10.143"/>
  7129. <line stroke="#25cc35" stroke-linecap="round" stroke-width="1.6" x1="10.6666" x2="211.734" y1="10.143" y2="10.143"/>
  7130. </g>
  7131. <g partID="855204970">
  7132. <line stroke="#00a527" stroke-linecap="round" stroke-width="3.2" x1="10.6667" x2="10.6666" y1="262.41" y2="10.143"/>
  7133. <line stroke="#25cc35" stroke-linecap="round" stroke-width="1.6" x1="10.6667" x2="10.6666" y1="262.41" y2="10.143"/>
  7134. </g>
  7135. <g partID="855204250">
  7136. <line stroke="#00a527" stroke-linecap="round" stroke-width="3.2" x1="75.2016" x2="10.6667" y1="262.143" y2="262.41"/>
  7137. <line stroke="#25cc35" stroke-linecap="round" stroke-width="1.6" x1="75.2016" x2="10.6667" y1="262.143" y2="262.41"/>
  7138. </g>
  7139. <g partID="855205390">
  7140. <line stroke="#00a527" stroke-linecap="round" stroke-width="3.2" x1="3.2" x2="226.666" y1="3.20935" y2="3.20935"/>
  7141. <line stroke="#25cc35" stroke-linecap="round" stroke-width="1.6" x1="3.2" x2="226.666" y1="3.20935" y2="3.20935"/>
  7142. </g>
  7143. <g partID="855205320">
  7144. <line stroke="#00a527" stroke-linecap="round" stroke-width="3.2" x1="226.666" x2="226.4" y1="3.20935" y2="53.3442"/>
  7145. <line stroke="#25cc35" stroke-linecap="round" stroke-width="1.6" x1="226.666" x2="226.4" y1="3.20935" y2="53.3442"/>
  7146. </g>
  7147. <g partID="855205250">
  7148. <line stroke="#00a527" stroke-linecap="round" stroke-width="3.2" x1="3.2" x2="3.2" y1="269.343" y2="3.20935"/>
  7149. <line stroke="#25cc35" stroke-linecap="round" stroke-width="1.6" x1="3.2" x2="3.2" y1="269.343" y2="3.20935"/>
  7150. </g>
  7151. <g partID="855204320">
  7152. <line stroke="#00a527" stroke-linecap="round" stroke-width="3.2" x1="53.6016" x2="3.2" y1="269.343" y2="269.343"/>
  7153. <line stroke="#25cc35" stroke-linecap="round" stroke-width="1.6" x1="53.6016" x2="3.2" y1="269.343" y2="269.343"/>
  7154. </g>
  7155. <g partID="855205460">
  7156. <line stroke="#8c0000" stroke-linecap="round" stroke-width="3.2" x1="456.813" x2="456.753" y1="226.143" y2="190.143"/>
  7157. <line stroke="#cc1414" stroke-linecap="round" stroke-width="1.6" x1="456.813" x2="456.753" y1="226.143" y2="190.143"/>
  7158. </g>
  7159. <g partID="855205730">
  7160. <line stroke="#000000" stroke-linecap="round" stroke-width="3.2" x1="478.413" x2="478.4" y1="218.943" y2="190.143"/>
  7161. <line stroke="#404040" stroke-linecap="round" stroke-width="1.6" x1="478.413" x2="478.4" y1="218.943" y2="190.143"/>
  7162. </g>
  7163. <g partID="855208020">
  7164. <line stroke="#8c0000" stroke-linecap="round" stroke-width="3.2" x1="464" x2="464.094" y1="198.41" y2="190.143"/>
  7165. <line stroke="#cc1414" stroke-linecap="round" stroke-width="1.6" x1="464" x2="464.094" y1="198.41" y2="190.143"/>
  7166. </g>
  7167. <g partID="855208530">
  7168. <line stroke="#7a3a73" stroke-linecap="round" stroke-width="3.2" x1="413.334" x2="464" y1="182.943" y2="182.943"/>
  7169. <line stroke="#ab58a2" stroke-linecap="round" stroke-width="1.6" x1="413.334" x2="464" y1="182.943" y2="182.943"/>
  7170. </g>
  7171. <g partID="855208420">
  7172. <line stroke="#7a3a73" stroke-linecap="round" stroke-width="3.2" x1="413.866" x2="413.333" y1="38.943" y2="182.943"/>
  7173. <line stroke="#ab58a2" stroke-linecap="round" stroke-width="1.6" x1="413.866" x2="413.333" y1="38.943" y2="182.943"/>
  7174. </g>
  7175. <g partID="855208310">
  7176. <line stroke="#7a3a73" stroke-linecap="round" stroke-width="3.2" x1="312.799" x2="413.867" y1="38.9438" y2="38.9427"/>
  7177. <line stroke="#ab58a2" stroke-linecap="round" stroke-width="1.6" x1="312.799" x2="413.867" y1="38.9438" y2="38.9427"/>
  7178. </g>
  7179. <g partID="855208160">
  7180. <line stroke="#7a3a73" stroke-linecap="round" stroke-width="3.2" x1="464" x2="464.094" y1="182.943" y2="190.143"/>
  7181. <line stroke="#ab58a2" stroke-linecap="round" stroke-width="1.6" x1="464" x2="464.094" y1="182.943" y2="190.143"/>
  7182. </g>
  7183. <g partID="855208090">
  7184. <line stroke="#7a3a73" stroke-linecap="round" stroke-width="3.2" x1="312.8" x2="312.799" y1="53.3438" y2="38.9438"/>
  7185. <line stroke="#ab58a2" stroke-linecap="round" stroke-width="1.6" x1="312.8" x2="312.799" y1="53.3438" y2="38.9438"/>
  7186. </g>
  7187. </svg>