123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292 |
- <svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="268.22 131.22 263.57 337.54">
- <title>Produce by Acme CAD Converter</title>
- <desc>Produce by Acme CAD Converter</desc>
- <polyline points="526.36,246.55 526.36,248.72" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="528.52,246.55 528.52,248.72" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="526.36,248.72 528.52,248.72" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="526.36,246.55 528.52,246.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="526.36,272.88 528.52,272.88" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="526.36,275.04 528.52,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="528.52,272.88 528.52,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="526.36,272.88 526.36,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.86,272.88 496.86,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.86,275.04 499.02,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.86,272.88 499.02,272.88" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.69,272.88 457.69,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="459.85,272.88 459.85,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.69,275.04 459.85,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.69,272.88 459.85,272.88" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.52,272.88 418.52,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="420.68,272.88 420.68,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.52,275.04 420.68,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.52,272.88 420.68,272.88" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="379.36,272.88 379.36,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="381.52,272.88 381.52,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="379.36,275.04 381.52,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="379.36,272.88 381.52,272.88" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="340.19,272.88 342.35,272.88" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="340.19,275.04 342.35,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="342.35,272.88 342.35,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="340.19,272.88 340.19,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="301.02,272.88 303.18,272.88" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="301.02,275.04 303.18,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="303.18,272.88 303.18,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="301.02,272.88 301.02,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="273.68,272.88 273.68,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="271.52,275.04 273.68,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="271.52,272.88 273.68,272.88" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="526.36,302.38 528.52,302.38" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="526.36,304.54 528.52,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="528.52,302.38 528.52,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="526.36,302.38 526.36,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.86,302.38 496.86,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.86,304.54 499.02,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.86,302.38 499.02,302.38" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.69,302.38 457.69,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="459.85,302.38 459.85,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.69,304.54 459.85,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.69,302.38 459.85,302.38" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.52,302.38 418.52,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="420.68,302.38 420.68,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.52,304.54 420.68,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.52,302.38 420.68,302.38" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="379.36,302.38 379.36,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="381.52,302.38 381.52,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="379.36,304.54 381.52,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="379.36,302.38 381.52,302.38" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="340.19,302.38 342.35,302.38" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="340.19,304.54 342.35,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="342.35,302.38 342.35,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="340.19,302.38 340.19,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="301.02,302.38 303.18,302.38" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="301.02,304.54 303.18,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="303.18,302.38 303.18,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="301.02,302.38 301.02,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="271.52,302.38 271.52,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="271.52,304.54 272.73,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="271.52,302.38 272.73,302.38" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="526.36,331.88 528.52,331.88" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="526.36,334.04 528.52,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="528.52,331.88 528.52,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="526.36,331.88 526.36,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.86,331.88 496.86,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.02,331.88 499.02,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.86,334.04 499.02,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.86,331.88 499.02,331.88" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="379.36,331.88 379.36,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="381.52,331.88 381.52,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="379.36,334.04 381.52,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="379.36,331.88 381.52,331.88" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="340.19,331.88 342.35,331.88" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="340.19,334.04 342.35,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="342.35,331.88 342.35,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="340.19,331.88 340.19,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="301.02,331.88 303.18,331.88" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="301.02,334.04 303.18,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="303.18,331.88 303.18,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="301.02,331.88 301.02,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="271.52,331.88 271.52,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="273.74,331.88 273.74,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="271.52,334.04 273.74,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="271.52,331.88 273.74,331.88" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="526.36,361.39 529.03,361.39" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="526.36,363.55 529.03,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="526.36,361.39 526.36,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.86,361.39 496.86,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.02,361.39 499.02,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.86,363.55 499.02,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.86,361.39 499.02,361.39" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.69,361.39 457.69,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="459.85,361.39 459.85,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.69,363.55 459.85,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.69,361.39 459.85,361.39" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.52,361.39 418.52,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="420.68,361.39 420.68,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.52,363.55 420.68,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.52,361.39 420.68,361.39" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="379.36,361.39 379.36,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="381.52,361.39 381.52,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="379.36,363.55 381.52,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="379.36,361.39 381.52,361.39" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="340.19,361.39 342.35,361.39" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="340.19,363.55 342.35,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="342.35,361.39 342.35,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="340.19,361.39 340.19,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="301.02,361.39 303.18,361.39" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="301.02,363.55 303.18,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="303.18,361.39 303.18,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="301.02,361.39 301.02,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="271.52,361.39 271.52,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="273.74,361.39 273.74,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="271.52,363.55 273.74,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="271.52,361.39 273.74,361.39" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="526.36,390.89 528.52,390.89" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="526.36,393.05 528.52,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="528.52,390.89 528.52,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="526.36,390.89 526.36,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.86,390.89 496.86,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.02,390.89 499.02,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.86,393.05 499.02,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.86,390.89 499.02,390.89" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.69,390.89 457.69,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="459.85,390.89 459.85,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.69,393.05 459.85,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.69,390.89 459.85,390.89" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.52,390.89 418.52,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="420.68,390.89 420.68,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.52,393.05 420.68,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.52,390.89 420.68,390.89" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="379.36,390.89 379.36,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="381.52,390.89 381.52,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="379.36,393.05 381.52,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="379.36,390.89 381.52,390.89" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="340.19,390.89 342.35,390.89" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="340.19,393.05 342.35,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="342.35,390.89 342.35,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="340.19,390.89 340.19,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="301.02,390.89 303.18,390.89" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="301.02,393.05 303.18,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="303.18,390.89 303.18,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="301.02,390.89 301.02,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="271.52,387.71 271.52,389.87" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="273.68,387.71 273.68,389.87" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="271.52,389.87 273.68,389.87" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="271.52,387.71 273.68,387.71" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.86,420.39 496.86,422.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.02,420.39 499.02,422.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.86,422.55 499.02,422.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.86,420.39 499.02,420.39" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.69,420.39 457.69,422.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="459.85,420.39 459.85,422.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.69,422.55 459.85,422.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.69,420.39 459.85,420.39" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.52,420.39 418.52,422.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="420.68,420.39 420.68,422.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.52,422.55 420.68,422.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.52,420.39 420.68,420.39" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="379.36,420.39 379.36,422.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="381.52,420.39 381.52,422.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="379.36,422.55 381.52,422.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="379.36,420.39 381.52,420.39" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="340.19,420.39 342.35,420.39" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="340.19,422.55 342.35,422.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="342.35,420.39 342.35,422.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="340.19,420.39 340.19,422.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="301.02,420.39 303.18,420.39" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="301.02,422.55 303.18,422.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="303.18,420.39 303.18,422.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="301.02,420.39 301.02,422.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="286.27,420.39 286.27,422.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="288.43,420.39 288.43,422.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="286.27,422.55 288.43,422.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="286.27,420.39 288.43,420.39" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="528.52,446.71 528.52,448.88" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="526.23,448.88 528.52,448.88" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="526.23,446.71 528.52,446.71" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="286.27,446.71 288.43,446.71" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="286.27,448.88 288.43,448.88" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="288.43,446.71 288.43,448.88" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="286.27,446.71 286.27,448.88" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="340.12,149.02 342.41,149.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="342.25,146.85 342.76,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="342.41,148.13 342.76,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="340.19,146.85 339.77,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="340.19,146.85 339.77,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="340.19,146.85 339.77,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="340.28,146.85 339.77,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="340.28,147.36 342.25,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.45,244.14 500.93,244.14" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="509.03,243.53 509.03,244.29" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="507.95,243.53 507.95,244.29" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="507.95,243.53 509.03,243.53" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="508.94,244.29 508.94,245.76" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="508.05,244.29 508.05,245.76" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="501.31,243.79 501.31,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.93,243.79 500.93,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.93,245.06 501.31,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="515.68,243.79 515.68,245.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="516.06,243.79 516.06,245.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="522.8,245.76 523.69,245.76" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="522.8,244.29 522.8,245.76" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="523.69,244.29 523.69,245.76" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="522.7,243.53 522.7,244.29" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="523.78,243.53 523.78,244.29" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.54,251.29 530.78,251.29" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.54,252.37 530.78,252.37" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.54,252.37 531.54,251.29" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,251.39 529.32,251.39" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,252.28 529.32,252.28" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="523.69,245.76 529.32,245.76" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.29,259.02 530.02,259.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.29,259.4 530.02,259.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,267.03 529.32,267.03" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,266.14 529.32,266.14" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.54,267.12 531.54,266.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.54,267.12 530.78,267.12" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.54,266.04 530.78,266.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.29,274.15 530.02,274.15" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.29,273.77 530.02,273.77" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.54,280.79 530.78,280.79" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.54,281.87 530.78,281.87" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.54,281.87 531.54,280.79" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,280.89 529.32,280.89" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,281.78 529.32,281.78" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.29,288.52 530.02,288.52" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.29,288.9 530.02,288.9" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="508.05,245.06 508.05,244.29" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="508.05,245.76 508.94,245.76" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="501.31,245.06 501.31,244.29" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="508.05,245.06 501.31,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="508.05,244.29 501.31,244.29" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="501.56,244.77 507.79,244.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="501.56,244.58 507.79,244.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="507.79,245.06 508.05,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="508.05,245.06 508.05,244.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="508.05,244.29 507.79,244.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="507.79,244.29 507.79,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="501.31,245.06 501.56,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="501.56,245.06 501.56,244.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="501.56,244.29 501.31,244.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="501.31,244.29 501.31,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="515.68,245.04 516.06,245.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="515.68,245.06 516.06,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="515.68,244.29 515.68,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="508.94,244.29 508.94,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="515.68,244.29 508.94,244.29" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="515.68,245.06 508.94,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="509.19,244.77 515.42,244.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="509.19,244.58 515.42,244.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="515.42,245.06 515.68,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="515.68,245.06 515.68,244.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="515.68,244.29 515.42,244.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="515.42,244.29 515.42,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="508.94,245.06 509.19,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="509.19,245.06 509.19,244.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="509.19,244.29 508.94,244.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="508.94,244.29 508.94,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="522.8,245.06 522.8,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="522.7,243.53 523.78,243.53" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="516.06,245.06 516.06,244.29" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="522.8,245.06 516.06,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="522.8,244.29 516.06,244.29" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="516.31,244.77 522.54,244.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="516.31,244.58 522.54,244.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="522.54,245.06 522.8,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="522.8,245.06 522.8,244.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="522.8,244.29 522.54,244.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="522.54,244.29 522.54,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="516.06,245.06 516.31,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="516.31,245.06 516.31,244.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="516.31,244.29 516.06,244.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="516.06,244.29 516.06,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="523.69,245.06 523.94,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="523.94,245.06 523.94,244.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="523.94,244.29 523.69,244.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="523.69,244.29 523.69,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="522.7,244.29 522.8,244.29" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="523.69,244.29 523.78,244.29" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,251.39 530.02,251.39" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,244.9 530.78,251.39" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,244.9 530.02,251.39" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,251.39 530.78,251.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,251.13 530.02,251.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,251.13 530.02,251.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,251.39 530.78,251.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,259.02 530.02,259.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,259.02 530.02,259.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,259.02 530.78,259.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,252.28 530.78,252.28" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="529.32,252.28 529.32,251.39" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,259.02 530.78,259.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,252.28 530.02,259.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,252.28 530.78,259.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.49,258.76 530.49,252.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.3,258.76 530.3,252.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,252.53 530.78,252.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,252.28 530.02,252.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,252.28 530.02,252.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,252.53 530.78,252.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,259.02 530.78,258.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,258.76 530.02,258.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,258.76 530.02,259.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,259.02 530.78,259.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,259.4 530.78,259.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,259.4 530.02,259.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,266.14 530.78,266.14" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,259.4 530.02,266.14" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,259.4 530.78,266.14" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.49,265.88 530.49,259.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.3,265.88 530.3,259.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,259.65 530.78,259.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,259.4 530.02,259.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,259.4 530.02,259.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,259.65 530.78,259.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,266.14 530.78,265.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,265.88 530.02,265.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,265.88 530.02,266.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,266.14 530.78,266.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,273.77 530.02,273.77" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,273.77 530.02,274.15" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,273.77 530.78,273.77" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="529.32,267.03 529.32,266.14" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,267.03 530.78,267.03" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,273.77 530.78,273.77" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,267.03 530.02,273.77" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,267.03 530.78,273.77" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.49,273.51 530.49,267.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.3,273.51 530.3,267.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,267.28 530.78,267.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,267.03 530.02,267.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,267.03 530.02,267.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,267.28 530.78,267.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,273.77 530.78,273.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,273.51 530.02,273.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,273.51 530.02,273.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,273.77 530.78,273.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,274.15 530.78,274.15" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,274.15 530.02,273.77" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,280.89 530.78,280.89" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,274.15 530.02,280.89" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,274.15 530.78,280.89" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.49,280.63 530.49,274.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.3,280.63 530.3,274.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,274.4 530.78,274.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,274.15 530.02,274.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,274.15 530.02,274.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,274.4 530.78,274.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,280.89 530.78,280.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,280.63 530.02,280.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,280.63 530.02,280.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,280.89 530.78,280.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,288.52 530.02,288.9" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,288.52 530.78,288.52" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,281.78 530.78,281.78" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,288.52 530.78,288.52" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,281.78 530.02,288.52" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,281.78 530.78,288.52" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.49,288.26 530.49,282.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.3,288.26 530.3,282.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,282.03 530.78,281.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,281.78 530.02,281.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,281.78 530.02,282.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,282.03 530.78,282.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,288.52 530.78,288.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,288.26 530.02,288.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,288.26 530.02,288.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,288.52 530.78,288.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,288.9 530.78,288.9" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,288.9 530.02,288.52" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,295.64 530.78,295.64" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,288.9 530.02,295.64" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,288.9 530.78,295.64" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.49,295.39 530.49,289.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.3,295.39 530.3,289.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,289.15 530.78,288.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,288.9 530.02,288.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,288.9 530.02,289.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,289.15 530.78,289.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,295.64 530.78,295.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,295.39 530.02,295.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,295.39 530.02,295.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,295.64 530.78,295.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,384.15 530.78,383.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,383.89 530.02,383.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,383.89 530.02,384.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,384.15 530.78,384.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,377.66 530.78,377.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,377.41 530.02,377.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,377.41 530.02,377.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,377.66 530.78,377.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.49,383.89 530.49,377.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.3,383.89 530.3,377.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,377.41 530.78,384.15" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,377.41 530.02,384.15" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,384.15 530.78,384.15" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,377.41 530.02,377.03" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.18,377.41 530.94,377.41" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,377.03 530.78,376.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,376.77 530.02,376.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,376.77 530.02,377.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,377.03 530.78,377.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,370.54 530.78,370.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,370.29 530.02,370.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,370.29 530.02,370.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,370.54 530.78,370.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.49,376.77 530.49,370.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.3,376.77 530.3,370.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,370.29 530.78,377.03" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,370.29 530.02,377.03" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.18,377.03 530.94,377.03" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="529.32,370.29 529.32,369.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,370.29 530.78,370.29" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.94,377.03 530.94,377.03" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,377.03 530.02,377.41" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,369.4 530.78,369.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,369.14 530.02,369.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,369.14 530.02,369.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,369.4 530.78,369.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,362.91 530.78,362.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,362.66 530.02,362.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,362.66 530.02,362.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,362.91 530.78,362.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.49,369.14 530.49,362.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.3,369.14 530.3,362.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,362.66 530.78,369.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,362.66 530.02,369.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,369.4 530.78,369.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.18,362.66 530.94,362.66" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.18,362.28 530.94,362.28" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.94,362.28 530.94,362.28" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.18,362.28 530.18,362.28" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.29,377.41 530.02,377.41" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.29,377.03 530.02,377.03" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,370.29 529.32,370.29" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,369.4 529.32,369.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.54,370.38 531.54,369.3" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.54,370.38 530.78,370.38" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.54,369.3 530.78,369.3" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.23,362.28 530.02,362.28" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.23,362.66 530.02,362.66" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,362.66 530.02,362.28" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="529.03,361.39 529.03,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="529.32,369.4 529.32,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.54,384.05 530.78,384.05" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.54,385.13 530.78,385.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.54,385.13 531.54,384.05" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,384.15 529.32,384.15" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,385.04 529.32,385.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.29,391.78 530.02,391.78" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.29,392.16 530.02,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,384.15 530.78,384.15" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,391.78 530.02,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,391.78 530.78,391.78" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,385.04 530.78,385.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,391.78 530.78,391.78" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,385.04 530.02,391.78" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,385.04 530.78,391.78" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.49,391.52 530.49,385.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.3,391.52 530.3,385.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,385.29 530.78,385.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,385.04 530.02,385.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,385.04 530.02,385.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,385.29 530.78,385.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,391.78 530.78,391.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,391.52 530.02,391.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,391.52 530.02,391.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,391.78 530.78,391.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,392.16 530.78,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,392.16 530.02,391.78" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,398.9 530.78,398.9" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,392.16 530.02,398.9" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,392.16 530.78,398.9" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.49,398.64 530.49,392.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.3,398.64 530.3,392.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,392.41 530.78,392.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,392.16 530.02,392.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,392.16 530.02,392.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,392.41 530.78,392.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,398.9 530.78,398.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,398.64 530.02,398.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,398.64 530.02,398.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,398.9 530.78,398.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="529.32,385.04 529.32,391.71" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,413.65 530.78,413.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,413.4 530.02,413.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,413.4 530.02,413.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,413.65 530.78,413.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,407.17 530.78,406.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,406.91 530.02,406.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,406.91 530.02,407.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,407.17 530.78,407.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.49,413.4 530.49,407.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.3,413.4 530.3,407.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,406.91 530.78,413.65" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,406.91 530.02,413.65" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,413.65 530.78,413.65" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,406.91 530.02,406.53" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,406.91 530.78,406.91" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,406.53 530.78,406.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,406.27 530.02,406.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,406.27 530.02,406.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,406.53 530.78,406.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,400.04 530.78,399.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,399.79 530.02,399.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,399.79 530.02,400.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,400.04 530.78,400.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.49,406.27 530.49,400.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.3,406.27 530.3,400.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,399.79 530.78,406.53" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,399.79 530.02,406.53" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,406.53 530.78,406.53" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="529.32,399.79 529.32,398.9" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,399.79 530.78,399.79" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,406.53 530.78,406.53" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,406.53 530.02,406.91" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,398.9 530.78,398.9" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.29,406.91 530.02,406.91" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.29,406.53 530.02,406.53" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,399.79 529.32,399.79" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,398.9 529.32,398.9" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.54,399.88 531.54,398.8" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.54,399.88 530.78,399.88" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.54,398.8 530.78,398.8" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,398.9 530.78,398.9" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,413.65 530.78,413.65" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.54,413.56 530.78,413.56" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.54,414.64 530.78,414.64" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.54,414.64 531.54,413.56" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,413.65 529.32,413.65" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,414.54 529.32,414.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.29,421.28 530.02,421.28" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.29,421.66 530.02,421.66" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,413.65 530.78,413.65" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,421.28 530.02,421.66" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,421.28 530.78,421.28" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,414.54 530.78,414.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="529.32,414.54 529.32,413.65" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,421.28 530.78,421.28" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,414.54 530.02,421.28" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,414.54 530.78,421.28" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.49,421.03 530.49,414.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.3,421.03 530.3,414.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,414.8 530.78,414.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,414.54 530.02,414.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,414.54 530.02,414.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,414.8 530.78,414.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="339.77,146.85 339.77,147.87" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,421.28 530.78,421.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,421.03 530.02,421.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,421.03 530.02,421.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,421.28 530.78,421.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,421.66 530.78,421.66" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="529.32,414.54 529.32,428.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,413.65 530.78,413.65" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,421.66 530.02,421.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,421.66 530.02,421.28" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,421.66 530.02,421.66" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="523.69,451.13 523.78,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="522.7,451.13 522.8,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="523.69,450.37 523.94,450.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="523.94,450.37 523.94,451.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="523.94,451.13 523.69,451.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="523.69,451.13 523.69,450.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.17,450.37 523.69,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,451.13 530.43,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="516.06,450.37 516.31,450.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="516.31,450.37 516.31,451.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="516.31,451.13 516.06,451.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="516.06,451.13 516.06,450.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="522.54,450.37 522.8,450.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="522.8,450.37 522.8,451.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="522.8,451.13 522.54,451.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="522.54,451.13 522.54,450.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="516.31,450.66 522.54,450.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="516.31,450.85 522.54,450.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="522.8,451.13 516.06,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="522.8,450.37 516.06,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="516.06,450.37 516.06,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="522.7,451.9 523.78,451.9" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="522.8,450.37 522.8,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="508.94,450.37 509.19,450.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="509.19,450.37 509.19,451.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="509.19,451.13 508.94,451.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="508.94,451.13 508.94,450.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="515.42,450.37 515.68,450.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="515.68,450.37 515.68,451.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="515.68,451.13 515.42,451.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="515.42,451.13 515.42,450.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="509.19,450.66 515.42,450.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="509.19,450.85 515.42,450.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="515.68,450.37 508.94,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="515.68,451.13 508.94,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="508.94,451.13 508.94,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="515.68,451.13 515.68,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="515.68,450.37 516.06,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="515.68,450.38 516.06,450.38" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="501.31,450.37 501.56,450.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="501.56,450.37 501.56,451.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="501.56,451.13 501.31,451.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="501.31,451.13 501.31,450.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="507.79,450.37 508.05,450.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="508.05,450.37 508.05,451.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="508.05,451.13 507.79,451.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="507.79,451.13 507.79,450.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="501.56,450.66 507.79,450.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="501.56,450.85 507.79,450.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="508.05,451.13 501.31,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="508.05,450.37 501.31,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="501.31,450.37 501.31,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.08,449.67 508.05,449.67" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="508.05,449.67 508.94,449.67" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="508.05,450.37 508.05,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.93,450.37 500.93,449.67" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,450.78 530.78,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.29,450.78 530.78,450.78" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.29,451.16 530.81,451.16" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.43,451.64 530.43,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.81,451.64 530.81,451.16" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="523.78,451.9 523.78,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="522.7,451.9 522.7,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="523.69,451.13 523.69,449.67" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="522.8,451.13 522.8,449.67" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="522.8,449.67 523.69,449.67" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="516.06,451.64 516.06,450.38" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="515.68,451.64 515.68,450.38" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.93,450.37 501.31,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.93,451.64 500.93,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="501.31,451.64 501.31,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="508.05,451.13 508.05,449.67" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="508.94,451.13 508.94,449.67" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="507.95,451.9 509.03,451.9" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="507.95,451.9 507.95,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="509.03,451.9 509.03,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="528.52,448.88 528.52,446.71" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,444.27 530.02,444.27" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,444.04 530.02,450.53" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,444.3 530.78,444.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,444.04 530.02,444.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,444.04 530.02,444.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,444.3 530.78,444.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="298.6,451.13 298.73,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.11,450.37 298.73,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.11,450.37 299.11,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="298.73,451.13 298.48,451.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="298.48,451.13 298.48,450.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="298.48,450.37 298.73,450.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="298.73,450.37 298.73,451.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="292.25,451.13 291.99,451.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="291.99,451.13 291.99,450.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="291.99,450.37 292.25,450.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="292.25,450.37 292.25,451.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="298.48,450.84 292.25,450.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="298.48,450.65 292.25,450.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="291.99,451.13 298.73,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="291.99,450.37 298.73,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="298.73,450.37 298.73,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="291.99,449.67 291.1,449.67" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="291.99,450.37 291.99,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="298.73,451.13 298.73,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="298.73,450.37 299.11,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="298.73,450.37 298.73,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="291.1,451.13 290.85,451.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="290.85,451.13 290.85,450.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="290.85,450.37 291.1,450.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="291.1,450.37 291.1,451.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="291.1,451.13 291.1,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.01,444.04 284.01,444.14" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.01,443.06 284.01,443.15" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.78,444.04 284.78,444.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.78,444.3 284.01,444.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.01,444.3 284.01,444.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.01,444.04 284.78,444.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.78,450.37 284.78,444.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.78,436.41 284.78,436.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.78,436.67 284.01,436.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.01,436.67 284.01,436.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.01,436.41 284.78,436.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.78,442.9 284.78,443.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.78,443.15 284.01,443.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.01,443.15 284.01,442.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.01,442.9 284.78,442.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.49,436.67 284.49,442.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.3,436.67 284.3,442.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.01,443.15 284.01,436.41" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.78,443.15 284.78,436.41" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.78,436.41 284.01,436.41" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="283.25,443.06 283.25,444.14" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.78,443.15 284.78,443.15" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.78,429.29 284.78,429.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.78,429.55 284.01,429.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.01,429.55 284.01,429.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.01,429.29 284.78,429.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.78,435.78 284.78,436.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.78,436.03 284.01,436.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.01,436.03 284.01,435.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.01,435.78 284.78,435.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.49,429.55 284.49,435.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.3,429.55 284.3,435.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.78,436.03 284.78,429.29" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.01,436.03 284.01,429.29" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.01,429.29 284.78,429.29" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.01,436.03 284.78,436.03" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.78,436.03 284.78,436.41" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.76,436.03 284.76,436.41" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.78,421.66 284.78,421.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.78,421.92 284.01,421.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.01,421.92 284.01,421.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.01,421.66 284.78,421.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.78,428.15 284.78,428.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.78,428.4 284.01,428.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.01,428.4 284.01,428.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.01,428.15 284.78,428.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.49,421.92 284.49,428.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.3,421.92 284.3,428.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.01,428.4 284.01,421.66" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.78,428.4 284.78,421.66" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.78,421.66 284.01,421.66" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="285.47,428.4 285.47,429.29" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.78,428.4 284.01,428.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="291.99,449.67 298.73,449.67" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.11,451.64 299.11,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="298.73,451.64 298.73,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="291.1,449.67 285.47,449.67" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="285.47,444.04 285.47,449.67" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="291.99,451.13 291.99,449.67" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="291.1,451.13 291.1,449.67" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="292.09,451.89 291.01,451.89" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="292.09,451.89 292.09,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="291.01,451.89 291.01,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="283.25,444.14 284.01,444.14" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="283.25,443.06 284.01,443.06" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.01,444.04 285.47,444.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.01,443.15 285.47,443.15" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="285.47,443.15 285.47,444.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="283.5,436.41 284.76,436.41" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="283.5,436.03 284.76,436.03" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.78,421.28 284.78,421.66" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="283.5,421.28 284.78,421.28" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="283.5,421.66 284.78,421.66" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.01,428.4 285.47,428.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.01,429.29 285.47,429.29" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="283.25,428.31 283.25,429.39" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="283.25,428.31 284.01,428.31" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="283.25,429.39 284.01,429.39" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="286.27,446.71 286.27,448.88" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="288.43,446.71 288.43,448.88" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="286.27,448.88 288.43,448.88" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="286.27,446.71 288.43,446.71" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="298.73,450.37 298.73,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.11,450.37 298.73,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="298.73,451.64 298.73,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.61,451.29 299.11,451.29" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.78,392.16 284.78,392.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.78,392.41 284.01,392.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.01,392.41 284.01,392.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.01,392.16 284.78,392.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,259.4 269.26,259.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,259.02 269.26,258.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,258.76 270.02,258.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,258.76 270.02,259.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,259.02 269.26,259.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,252.53 269.26,252.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,252.28 270.02,252.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,252.28 270.02,252.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,252.53 269.26,252.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.55,258.76 269.55,252.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.74,258.76 269.74,252.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,252.28 269.26,259.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,252.28 270.02,259.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,259.02 269.26,259.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.72,252.28 270.72,251.39" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,252.28 269.26,252.28" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,259.02 269.26,259.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,259.02 270.02,259.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,259.02 270.02,259.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,251.39 269.26,251.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,251.13 270.02,251.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,251.13 270.02,251.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,251.39 269.26,251.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,245.31 269.26,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,245.06 270.02,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,245.06 270.02,245.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,245.31 269.26,245.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,244.9 270.02,251.39" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,245.06 269.26,251.39" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,251.39 270.02,251.39" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="276.35,244.3 276.26,244.3" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="277.34,244.3 277.24,244.3" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="276.35,245.06 276.1,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="276.1,245.06 276.1,244.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="276.1,244.3 276.35,244.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="276.35,244.3 276.35,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.28,245.06 270.02,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,245.06 270.02,244.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,244.3 270.28,244.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.28,244.3 270.28,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,245.06 276.35,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,244.3 276.35,244.3" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="283.98,245.06 283.73,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="283.73,245.06 283.73,244.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="283.73,244.3 283.98,244.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="283.98,244.3 283.98,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="277.49,245.06 277.24,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="277.24,245.06 277.24,244.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="277.24,244.3 277.49,244.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="277.49,244.3 277.49,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="283.73,244.77 277.49,244.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="283.73,244.58 277.49,244.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="277.24,244.3 283.98,244.3" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="277.24,245.06 283.98,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="283.98,245.06 283.98,244.3" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="277.34,243.53 276.26,243.53" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="277.24,245.06 277.24,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="291.1,245.06 290.85,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="290.85,245.06 290.85,244.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="290.85,244.3 291.1,244.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="291.1,244.3 291.1,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.62,245.06 284.36,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.36,245.06 284.36,244.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.36,244.3 284.62,244.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.62,244.3 284.62,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="290.85,244.77 284.62,244.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="290.85,244.58 284.62,244.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.36,245.06 291.1,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.36,244.3 291.1,244.3" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="291.1,244.3 291.1,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.36,244.3 284.36,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.36,245.06 283.98,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.36,245.05 283.98,245.05" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="298.73,245.06 298.48,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="298.48,245.06 298.48,244.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="298.48,244.3 298.73,244.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="298.73,244.3 298.73,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="292.25,245.06 291.99,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="291.99,245.06 291.99,244.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="291.99,244.3 292.25,244.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="292.25,244.3 292.25,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="298.48,244.77 292.25,244.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="298.48,244.58 292.25,244.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="291.99,244.3 298.73,244.3" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="291.99,245.06 298.73,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="298.73,245.06 298.73,244.3" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="298.7,245.76 291.93,245.76" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="291.99,245.76 291.1,245.76" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="291.99,245.06 291.99,244.3" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.75,259.4 270.02,259.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.75,259.02 270.02,259.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="276.35,245.76 270.72,245.76" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,252.28 270.72,252.28" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,251.39 270.72,251.39" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.5,252.37 268.5,251.29" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.5,252.37 269.26,252.37" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.5,251.29 269.26,251.29" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="276.26,243.53 276.26,244.3" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="277.34,243.53 277.34,244.3" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="276.35,244.3 276.35,245.76" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="277.24,244.3 277.24,245.76" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="277.24,245.76 276.35,245.76" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="283.98,243.79 283.98,245.05" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="330.6,452.75 321.94,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.36,243.79 284.36,245.05" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.11,245.06 298.73,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.11,243.79 299.11,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="298.73,243.79 298.73,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="291.99,244.3 291.99,245.76" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="291.1,244.3 291.1,245.76" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="292.09,243.53 291.01,243.53" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="292.09,243.53 292.09,244.3" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="291.01,243.53 291.01,244.3" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="273.68,272.88 273.68,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="273.68,275.04 271.04,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="273.68,272.88 271.04,272.88" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="312.26,452.75 303.6,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="303.6,452.75 303.6,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="342.25,146.85 342.25,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="340.28,146.85 340.28,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="340.12,148.13 340.12,149.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="342.41,148.13 342.41,149.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="303.25,148.13 303.25,149.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="303.09,146.85 303.09,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="303.6,146.85 303.6,147.87" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.97,147.36 303.09,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="303.25,148.13 303.6,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="303.09,146.85 303.6,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="312.77,148.13 312.77,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="312.26,148.13 312.26,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="321.43,148.13 321.43,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="321.94,148.13 321.94,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="331.11,148.13 331.11,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="330.6,148.13 330.6,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="312.26,148.13 312.77,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="312.26,148.13 312.77,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="312.26,147.36 312.26,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="312.26,147.36 303.6,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="312.26,148.13 303.6,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="303.85,147.87 312,147.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="303.85,147.62 312,147.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="312,148.13 312.26,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="312.26,148.13 312.26,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="312.26,147.36 312,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="312,147.36 312,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="303.6,148.13 303.85,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="303.85,148.13 303.85,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="303.85,147.36 303.6,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="303.6,147.36 303.6,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="321.43,147.36 321.43,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="321.43,148.13 321.94,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="321.43,148.13 321.94,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="312.77,147.36 312.77,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="321.43,147.36 312.77,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="321.43,148.13 312.77,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="313.02,147.87 321.18,147.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="313.02,147.62 321.18,147.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="321.18,148.13 321.43,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="321.43,148.13 321.43,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="321.43,147.36 321.18,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="321.18,147.36 321.18,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="312.77,148.13 313.02,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="313.02,148.13 313.02,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="313.02,147.36 312.77,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="312.77,147.36 312.77,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="330.6,147.36 330.6,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="330.6,148.13 331.11,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="330.6,148.13 331.11,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="321.94,147.36 321.94,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="330.6,147.36 321.94,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="330.6,148.13 321.94,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.78,413.65 284.02,413.65" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="322.19,147.87 330.35,147.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="322.19,147.62 330.35,147.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="330.35,148.13 330.6,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.78,413.65 284.78,406.91" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="330.6,147.36 330.35,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="330.35,147.36 330.35,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="321.94,148.13 322.19,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="322.19,148.13 322.19,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="322.19,147.36 321.94,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="321.94,147.36 321.94,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="339.77,148.13 340.12,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="331.11,147.36 331.11,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="339.77,147.36 331.11,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="339.77,148.13 331.11,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="331.37,147.87 339.52,147.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.78,398.9 284.01,398.9" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="331.37,147.62 339.52,147.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.01,398.9 285.47,398.9" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="339.52,148.13 339.77,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="339.77,148.13 339.77,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="339.77,147.36 339.52,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="339.52,147.36 339.52,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="331.11,148.13 331.37,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="331.37,148.13 331.37,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="331.37,147.36 331.11,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.23,398.58 269.23,398.77" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="331.11,147.36 331.11,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="343.02,147.87 351.17,147.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="271.52,398.58 269.23,398.58" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="343.02,147.62 351.17,147.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="351.43,148.13 342.76,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="351.43,147.36 342.76,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="342.76,148.13 343.02,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="343.02,148.13 343.02,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="343.02,147.36 342.76,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.23,413.52 268.47,413.52" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="342.76,147.36 342.76,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="378.94,148.13 370.28,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="378.94,147.36 370.28,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="370.28,147.36 370.28,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="378.94,148.13 379.29,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="378.94,147.36 378.94,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="369.77,148.13 358.67,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="369.77,147.36 361.11,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="361.11,147.36 361.11,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="369.77,148.13 370.28,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="369.77,148.13 370.28,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="369.77,147.36 369.77,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="351.93,148.13 352.19,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="352.19,148.13 352.19,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="352.19,147.36 351.93,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="351.93,147.36 351.93,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="351.93,147.36 351.93,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="360.6,148.13 361.11,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="360.6,148.13 361.11,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="360.6,147.36 360.6,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="351.17,148.13 351.43,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="351.43,148.13 351.43,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="351.43,147.36 351.17,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="351.17,147.36 351.17,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="351.43,147.36 351.43,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="351.43,148.13 351.93,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="351.43,148.13 351.93,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="369.77,148.13 369.77,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="370.28,148.13 370.28,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="361.11,148.13 361.11,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="360.6,148.13 360.6,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="351.43,148.13 351.43,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="351.93,148.13 351.93,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="379.45,146.85 379.45,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="381.42,146.85 381.42,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="379.45,147.36 381.42,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="379.45,146.85 378.94,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="379.29,148.13 378.94,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="379.36,146.85 378.94,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="379.36,146.85 378.94,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="379.36,146.85 378.94,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="381.58,148.13 381.93,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="381.42,146.85 381.93,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="381.58,148.13 381.58,149.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="379.29,148.13 379.29,149.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="379.29,149.02 381.58,149.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="420.59,146.85 421.1,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="420.75,148.13 421.1,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.52,146.85 418.11,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.52,146.85 418.11,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.52,146.85 418.11,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.62,146.85 418.11,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.62,147.36 420.59,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="420.59,146.85 420.59,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.62,146.85 418.62,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="391.1,148.13 391.1,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="390.59,148.13 390.59,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="399.77,148.13 399.77,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="400.27,148.13 400.27,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="409.45,148.13 409.45,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="408.94,148.13 408.94,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="390.59,148.13 391.1,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="390.59,148.13 391.1,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="390.59,147.36 390.59,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="390.34,148.13 390.59,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="390.59,148.13 390.59,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="390.59,147.36 390.34,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="390.34,147.36 390.34,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="399.77,147.36 399.77,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="399.77,148.13 400.27,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="399.77,148.13 400.27,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="391.1,147.36 391.1,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="399.77,147.36 391.1,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="399.77,148.13 391.1,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="391.36,147.87 399.51,147.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="391.36,147.62 399.51,147.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="399.51,148.13 399.77,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="399.77,148.13 399.77,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="399.77,147.36 399.51,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="399.51,147.36 399.51,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="391.1,148.13 391.36,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="391.36,148.13 391.36,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="391.36,147.36 391.1,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="391.1,147.36 391.1,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="408.94,147.36 408.94,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="408.94,148.13 409.45,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="408.94,148.13 409.45,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="400.27,147.36 400.27,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="408.94,147.36 400.27,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="408.94,148.13 400.27,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="400.53,147.87 408.68,147.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="400.53,147.62 408.68,147.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="408.68,148.13 408.94,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="408.94,148.13 408.94,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="408.94,147.36 408.68,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="408.68,147.36 408.68,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="400.27,148.13 400.53,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="400.53,148.13 400.53,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="400.53,147.36 400.27,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="400.27,147.36 400.27,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="418.11,147.36 418.11,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.11,148.13 418.46,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="409.45,147.36 409.45,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.11,147.36 409.45,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.11,148.13 409.45,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="409.7,147.87 417.85,147.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="409.7,147.62 417.85,147.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="417.85,148.13 418.11,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="418.11,148.13 418.11,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="418.11,147.36 417.85,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="417.85,147.36 417.85,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="409.45,148.13 409.7,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="409.7,148.13 409.7,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="409.7,147.36 409.45,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="409.45,147.36 409.45,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="418.46,149.02 420.75,149.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.46,148.13 418.46,149.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="420.75,148.13 420.75,149.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="390.59,147.36 381.93,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="390.59,148.13 381.93,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="382.18,147.87 390.34,147.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="382.18,147.62 390.34,147.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="381.93,148.13 382.18,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="382.18,148.13 382.18,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="382.18,147.36 381.93,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="381.93,147.36 381.93,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="459.91,148.13 459.91,149.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.63,148.13 457.63,149.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="448.61,148.13 448.87,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="448.87,148.13 448.87,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="448.87,147.36 448.61,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="448.61,147.36 448.61,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="457.02,148.13 457.28,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="457.28,148.13 457.28,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="457.28,147.36 457.02,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="457.02,147.36 457.02,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="448.87,147.87 457.02,147.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="448.87,147.62 457.02,147.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="457.28,148.13 448.61,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.28,147.36 448.61,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="448.61,147.36 448.61,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.28,148.13 457.63,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.28,147.36 457.28,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="439.44,148.13 439.7,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="439.7,148.13 439.7,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="439.7,147.36 439.44,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="439.44,147.36 439.44,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="447.85,148.13 448.1,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="448.1,148.13 448.1,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="448.1,147.36 447.85,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="447.85,147.36 447.85,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="439.7,147.87 447.85,147.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="439.7,147.62 447.85,147.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="448.1,148.13 439.44,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="448.1,147.36 439.44,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="439.44,147.36 439.44,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="448.1,148.13 448.61,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="448.1,148.13 448.61,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="448.1,147.36 448.1,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="430.27,148.13 430.52,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="430.52,148.13 430.52,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="430.52,147.36 430.27,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="430.27,147.36 430.27,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="438.68,148.13 438.93,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="438.93,148.13 438.93,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="438.93,147.36 438.68,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="438.68,147.36 438.68,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="430.52,147.87 438.68,147.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="430.52,147.62 438.68,147.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="438.93,148.13 430.27,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="438.93,147.36 430.27,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="430.27,147.36 430.27,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="438.93,148.13 439.44,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="438.93,148.13 439.44,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="438.93,147.36 438.93,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="429.51,148.13 429.76,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="429.76,148.13 429.76,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="429.76,147.36 429.51,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="429.51,147.36 429.51,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="429.76,147.36 429.76,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="429.76,148.13 430.27,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="429.76,148.13 430.27,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="448.1,148.13 448.1,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="448.61,148.13 448.61,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="439.44,148.13 439.44,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="438.93,148.13 438.93,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="429.76,148.13 429.76,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="430.27,148.13 430.27,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.78,146.85 457.78,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="459.76,146.85 459.76,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="460.26,146.85 460.26,147.87" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.28,146.85 457.28,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.78,147.36 459.76,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.63,148.13 457.28,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.78,146.85 457.28,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="459.91,148.13 460.26,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="459.76,146.85 460.26,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="421.1,148.13 421.35,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="421.35,148.13 421.35,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="421.35,147.36 421.1,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="421.1,147.36 421.1,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="421.35,147.87 429.51,147.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="421.35,147.62 429.51,147.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="429.76,148.13 421.1,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="429.76,147.36 421.1,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="468.93,147.36 460.26,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="468.93,148.13 460.26,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="460.52,147.87 468.67,147.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="460.52,147.62 468.67,147.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="460.26,148.13 460.52,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="460.52,148.13 460.52,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="460.52,147.36 460.26,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="460.26,147.36 460.26,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="468.93,147.08 468.93,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="478.1,147.08 478.1,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="478.61,147.08 478.61,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="487.78,147.08 487.78,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="487.27,147.08 487.27,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="468.93,147.36 468.93,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="468.67,148.13 468.93,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="468.93,148.13 468.93,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="468.93,147.36 468.67,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="468.67,147.36 468.67,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.08,451.32 499.08,449.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.79,449.26 499.08,449.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.95,453.26 496.95,452.69" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="498.92,453.26 498.92,452.69" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.43,453.26 499.43,451.32" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.79,451.99 496.79,449.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.44,451.99 487.78,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.44,452.75 487.78,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="487.78,452.75 487.78,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.44,451.99 496.79,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.44,452.75 496.44,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="478.61,451.99 478.86,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="478.86,451.99 478.86,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="478.86,452.75 478.61,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="478.61,452.75 478.61,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="487.02,451.99 487.27,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="487.27,451.99 487.27,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="487.27,452.75 487.02,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="487.02,452.75 487.02,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="478.86,452.25 487.02,452.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="500.26,213.24 500.26,214.76" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="487.27,451.99 478.61,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="487.27,452.75 478.61,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="478.61,452.75 478.61,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="487.27,451.99 487.78,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="487.27,451.99 487.78,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="487.27,452.75 487.27,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="469.44,451.99 469.69,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="469.69,451.99 469.69,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="469.69,452.75 469.44,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="469.44,452.75 469.44,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="477.85,451.99 478.1,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="478.1,451.99 478.1,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="478.1,452.75 477.85,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="477.85,452.75 477.85,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="469.69,452.25 477.85,452.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="469.69,452.5 477.85,452.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="478.1,451.99 469.44,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="478.1,452.75 469.44,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="469.44,452.75 469.44,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="478.1,451.99 478.61,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="478.1,451.99 478.61,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="478.1,452.75 478.1,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="468.93,452.75 468.93,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="468.93,451.99 469.44,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="468.93,451.99 469.44,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="487.27,451.99 487.27,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="487.78,451.99 487.78,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="478.61,451.99 478.61,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="478.1,451.99 478.1,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="468.93,451.99 468.93,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="469.44,451.99 469.44,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.44,453.26 496.44,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.79,451.99 496.44,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="468.93,451.99 460.26,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="468.93,452.75 460.26,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="429.76,452.75 421.1,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="429.76,451.99 421.1,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="459.91,451.99 460.26,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.63,451.99 457.28,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.28,453.33 457.28,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="460.26,453.33 460.26,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="459.76,453.33 459.76,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.78,453.33 457.78,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="430.27,451.99 430.27,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="429.76,451.99 429.76,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="438.93,451.99 438.93,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="439.44,451.99 439.44,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="448.61,451.99 448.61,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="448.1,451.99 448.1,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="429.76,451.99 430.27,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="429.76,451.99 430.27,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="429.76,452.75 429.76,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="438.93,452.75 438.93,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="438.93,451.99 439.44,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="438.93,451.99 439.44,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="430.27,452.75 430.27,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="438.93,452.75 430.27,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="438.93,451.99 430.27,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="430.52,452.25 438.68,452.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="430.52,452.5 438.68,452.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="438.68,451.99 438.93,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="438.93,451.99 438.93,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="438.93,452.75 438.68,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="438.68,452.75 438.68,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="430.27,451.99 430.52,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="430.52,451.99 430.52,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="430.52,452.75 430.27,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="430.27,452.75 430.27,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="448.1,452.75 448.1,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="448.1,451.99 448.61,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="448.1,451.99 448.61,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="439.44,452.75 439.44,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="448.1,452.75 439.44,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="448.1,451.99 439.44,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="439.7,452.25 447.85,452.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="439.7,452.5 447.85,452.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="447.85,451.99 448.1,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="448.1,451.99 448.1,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="448.1,452.75 447.85,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="447.85,452.75 447.85,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="439.44,451.99 439.7,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="439.7,451.99 439.7,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="439.7,452.75 439.44,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="439.44,452.75 439.44,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="457.28,452.75 457.28,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.28,451.99 457.63,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="448.61,452.75 448.61,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.28,452.75 448.61,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.28,451.99 448.61,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.63,449.19 459.91,449.19" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.63,451.99 457.63,449.19" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="459.91,451.99 459.91,449.19" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="390.59,451.99 381.93,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="390.59,452.75 381.93,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="420.75,451.99 420.75,449.19" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.46,451.99 418.46,449.19" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.46,449.19 420.75,449.19" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.11,451.99 409.45,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.11,452.75 409.45,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="409.45,452.75 409.45,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.11,451.99 418.46,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.11,452.75 418.11,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="400.27,451.99 400.53,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="400.53,451.99 400.53,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="400.53,452.75 400.27,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="400.27,452.75 400.27,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="408.68,451.99 408.94,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="408.94,451.99 408.94,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="408.94,452.75 408.68,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="408.68,452.75 408.68,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="400.53,452.25 408.68,452.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="400.53,452.5 408.68,452.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="408.94,451.99 400.27,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="408.94,452.75 400.27,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="400.27,452.75 400.27,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="408.94,451.99 409.45,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="408.94,451.99 409.45,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="408.94,452.75 408.94,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="391.1,451.99 391.36,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="391.36,451.99 391.36,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="391.36,452.75 391.1,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="391.1,452.75 391.1,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="399.51,451.99 399.77,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="399.77,451.99 399.77,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="399.77,452.75 399.51,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="399.51,452.75 399.51,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="391.36,452.25 399.51,452.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="391.36,452.5 399.51,452.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="399.77,451.99 391.1,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="399.77,452.75 391.1,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="391.1,452.75 391.1,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="399.77,451.99 400.27,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="399.77,451.99 400.27,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="399.77,452.75 399.77,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="390.59,452.75 390.59,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="390.59,451.99 391.1,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="390.59,451.99 391.1,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="408.94,451.99 408.94,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="409.45,451.99 409.45,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="400.27,451.99 400.27,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="399.77,451.99 399.77,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="390.59,451.99 390.59,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="391.1,451.99 391.1,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.62,453.26 418.62,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="420.59,453.26 420.59,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="421.1,453.26 421.1,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.11,453.26 418.11,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.46,451.99 418.11,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="420.75,451.99 421.1,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="379.29,449.19 381.58,449.19" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="379.29,451.99 379.29,449.19" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="381.58,451.99 381.58,449.19" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="381.58,451.99 381.93,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="379.29,451.99 378.94,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="378.94,453.26 378.94,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="381.93,453.26 381.93,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="381.42,453.26 381.42,452.69" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="379.45,453.26 379.45,452.69" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="351.93,451.99 351.93,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="351.43,451.99 351.43,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="360.6,451.99 360.6,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="361.11,451.99 361.11,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="370.28,451.99 370.28,453.07" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="369.77,451.99 369.77,453.07" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="351.43,451.99 351.93,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="351.43,451.99 351.93,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="360.6,451.99 361.11,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="360.6,451.99 361.11,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="360.6,452.75 351.93,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="360.6,451.99 351.93,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="369.77,452.75 369.77,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="369.77,451.99 370.28,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="369.77,451.99 370.28,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="361.11,452.75 361.11,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="369.77,452.75 361.11,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="369.77,451.99 361.11,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="361.36,452.25 369.52,452.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="361.36,452.5 369.52,452.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="369.52,451.99 369.77,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="369.77,451.99 369.77,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="369.77,452.75 369.52,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="369.52,452.75 369.52,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="361.11,451.99 361.36,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="361.36,451.99 361.36,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="361.36,452.75 361.11,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="361.11,452.75 361.11,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="378.94,452.75 378.94,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="378.94,451.99 379.29,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="370.28,452.75 370.28,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="378.94,452.75 370.28,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="378.94,451.99 370.28,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="351.43,452.75 342.76,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="351.43,451.99 342.76,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="331.11,451.99 331.37,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="331.37,451.99 331.37,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="331.37,452.75 331.11,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="331.11,452.75 331.11,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="331.11,452.75 331.11,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="339.77,451.99 340.12,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="339.77,452.75 339.77,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="321.94,451.99 322.19,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="322.19,451.99 322.19,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="322.19,452.75 321.94,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="321.94,452.75 321.94,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="330.35,451.99 330.6,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.99,242.23 299.97,242.23" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="330.6,451.99 330.6,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="330.6,452.75 330.35,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.99,212.92 300.99,212.73" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="322.19,452.25 330.35,452.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="303.18,212.92 300.99,212.92" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="330.6,451.99 321.94,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.67,242.74 300.67,242.23" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="321.94,452.75 321.94,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="330.6,451.99 331.11,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="330.6,451.99 331.11,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="330.6,452.75 330.6,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="312.77,451.99 313.02,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="303.34,245.76 298.7,245.76" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="313.02,451.99 313.02,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="313.02,452.75 312.77,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="312.77,452.75 312.77,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="321.18,451.99 321.43,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="321.43,451.99 321.43,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="321.43,452.75 321.18,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="298.73,243.79 298.73,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.59,244.14 299.11,244.14" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="313.02,452.5 321.18,452.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="321.43,451.99 312.77,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="321.43,452.75 312.77,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="312.77,452.75 312.77,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.48,148.89 300.48,153.91" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="321.43,451.99 321.94,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="321.43,451.99 321.94,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="321.43,452.75 321.43,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="498.86,165.42 498.86,164.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="312.26,451.99 303.6,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.92,164.4 498.86,164.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.92,163.64 496.92,164.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="312.26,452.75 312.26,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="312.26,451.99 312.77,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="312.26,451.99 312.77,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="330.6,451.99 330.6,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="331.11,451.99 331.11,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="321.94,451.99 321.94,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="321.43,451.99 321.43,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="312.26,451.99 312.26,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="312.77,451.99 312.77,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="298.73,449.67 303.25,449.67" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="303.25,451.99 303.6,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.61,453.26 300.61,451.29" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="303.6,453.26 303.6,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="303.09,453.26 303.09,452.69" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="301.12,453.26 301.12,452.69" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="303.25,451.99 303.25,449.67" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="342.41,451.99 342.41,449.19" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="340.12,451.99 340.12,449.19" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="340.28,453.26 340.28,452.69" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="342.25,453.26 342.25,452.69" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="342.76,453.26 342.76,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="339.77,453.26 339.77,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="340.12,451.99 339.77,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="342.41,451.99 342.76,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="340.12,449.19 342.41,449.19" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,259.4 270.02,259.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,259.4 270.02,259.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,259.4 269.26,266.14" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,259.4 270.02,266.14" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,259.65 270.02,259.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,259.4 269.26,259.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,259.4 269.26,259.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,259.65 270.02,259.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,266.14 270.02,265.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,265.88 269.26,265.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,265.88 269.26,266.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,266.14 270.02,266.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="299.11,243.79 298.73,243.79" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.36,243.79 283.98,243.79" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.75,259.02 268.75,259.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="515.68,243.79 516.06,243.79" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.93,243.79 501.31,243.79" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.29,288.52 531.29,288.9" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.29,273.77 531.29,274.15" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.29,259.02 531.29,259.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="298.73,451.64 299.11,451.64" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="283.5,436.41 283.5,436.03" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="283.5,421.66 283.5,421.28" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.5,325.05 268.5,326.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.5,267.12 269.26,267.12" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="283.51,406.91 283.51,406.53" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="283.25,414.64 284.02,414.64" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="283.25,413.56 284.02,413.56" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="283.25,413.56 283.25,414.64" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.02,414.54 285.48,414.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.02,413.65 285.48,413.65" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="283.51,406.91 284.78,406.91" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="283.51,406.53 284.78,406.53" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.78,406.53 284.78,406.91" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,421.66 530.02,428.31" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="285.48,413.65 285.48,414.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.78,406.91 284.02,406.91" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="523.94,450.66 530.02,450.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.02,413.65 284.02,406.91" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="523.94,450.84 530.02,450.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.3,407.17 284.3,413.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.78,413.4 284.78,413.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.78,413.65 284.02,413.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.02,413.65 284.02,413.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.02,413.4 284.78,413.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.78,406.91 284.78,407.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.78,407.17 284.02,407.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.02,407.17 284.02,406.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.02,406.91 284.78,406.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.02,414.54 284.78,414.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.02,421.28 284.02,414.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.78,421.28 284.78,414.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.49,414.8 284.49,421.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.3,414.8 284.3,421.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.78,421.03 284.78,421.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.78,421.28 284.02,421.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.02,421.28 284.02,421.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.02,421.03 284.78,421.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.78,414.54 284.78,414.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.78,414.8 284.02,414.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.02,414.8 284.02,414.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.02,414.54 284.78,414.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.78,399.79 284.78,400.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.78,400.04 284.01,400.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.01,400.04 284.01,399.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.01,399.79 284.78,399.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.78,406.27 284.78,406.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.78,406.53 284.01,406.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.01,406.53 284.01,406.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.01,406.27 284.78,406.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,244.29 523.69,244.29" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.3,400.04 284.3,406.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.78,406.53 284.78,399.79" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.01,406.53 284.01,399.79" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.01,399.79 284.78,399.79" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.49,251.13 530.49,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.78,398.9 284.01,398.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,244.3 269.61,244.3" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.01,398.64 284.78,398.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.01,398.9 284.01,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.75,244.27 269.23,244.27" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.78,398.9 284.78,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="285.47,390.7 285.47,398.9" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.23,243.79 269.23,244.27" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="285.47,398.9 285.47,399.79" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,245.06 270.02,244.3" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,245.06 269.26,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.01,399.79 285.47,399.79" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="283.25,398.8 283.25,399.88" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="283.25,398.8 284.01,398.8" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="283.25,399.88 284.01,399.88" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.78,406.53 284.78,406.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="271.52,398.58 271.52,400.11" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.81,451.64 530.43,451.64" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.47,398.77 268.47,399.92" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.29,421.28 531.29,421.66" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="271.52,400.11 269.23,400.11" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.23,399.92 269.23,400.11" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.23,398.77 268.47,398.77" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.23,399.92 268.47,399.92" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.23,414.67 268.47,414.67" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.29,244.64 531.29,244.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.23,414.67 269.23,414.86" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="271.52,414.86 269.23,414.86" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="271.52,413.33 269.23,413.33" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.47,413.52 268.47,414.67" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.23,413.33 269.23,413.52" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="271.52,413.33 271.52,414.86" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="271.52,442.84 271.52,444.36" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.23,442.84 269.23,443.03" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.47,443.03 268.47,444.17" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="271.52,442.84 269.23,442.84" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="271.52,444.36 269.23,444.36" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.23,444.17 269.23,444.36" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.23,443.03 268.47,443.03" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.23,444.17 268.47,444.17" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.23,429.42 268.47,429.42" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.23,428.27 268.47,428.27" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.23,429.42 269.23,429.61" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="271.52,429.61 269.23,429.61" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="271.52,428.08 269.23,428.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.47,428.27 268.47,429.42" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.23,428.08 269.23,428.27" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="271.52,428.08 271.52,429.61" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="277.37,451.1 277.37,451.86" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="276.22,451.1 276.22,451.86" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="277.37,451.1 277.56,451.1" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="277.56,448.81 277.56,451.1" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="276.03,448.81 276.03,451.1" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="276.22,451.86 277.37,451.86" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="276.03,451.1 276.22,451.1" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="276.03,448.81 277.56,448.81" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="276.26,392.9 277.4,392.9" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="276.26,392.9 276.26,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="493.61,361.39 493.61,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="488.27,361.39 488.27,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.86,363.55 493.61,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="497.3,361.39 493.61,361.39" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="497.3,361.39 497.3,351.21" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="498.38,361.39 498.38,342.06" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="488.27,363.55 483.57,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="488.27,361.39 484.59,361.39" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="487.51,362.15 484.59,362.15" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="487.51,362.78 484.59,362.78" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.86,362.15 494.38,362.15" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.86,362.78 494.38,362.78" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="487.51,362.15 487.51,362.78" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="494.38,362.15 494.38,362.78" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="484.59,362.78 484.59,362.15" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="483.57,363.55 483.57,361.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="484.59,361.39 484.59,351.21" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="497.3,351.21 484.59,351.21" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="497.3,350.19 484.59,350.19" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="484.59,350.19 484.59,332.96" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="497.3,350.19 497.3,342.06" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.98,340.02 498.89,340.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="526.36,363.55 504.11,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="526.36,362.66 505.99,362.66" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="504.11,363.55 504.11,361.58" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="504.11,361.58 505.99,361.58" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="529.63,362.72 530.02,362.72" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="529.63,362.72 530.02,362.72" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="529.63,363.55 529.63,362.72" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="529.03,363.55 529.63,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="529.03,362.21 530.02,362.21" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="529.32,391.71 530.02,391.71" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="529.32,390.89 529.32,391.71" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="529.32,390.89 528.52,390.89" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="528.52,392.22 530.02,392.22" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="526.36,390.89 504.3,390.89" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="526.3,386.95 506.46,386.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="526.61,387.26 505.56,387.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="518.67,379.32 505.56,379.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="518.35,379 505.56,379" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="518.67,374.8 506.08,374.8" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="518.35,375.12 506.9,375.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="526.3,367.17 506.08,367.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="526.61,366.85 506.9,366.85" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="505.56,386.95 526.3,386.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="526.3,367.17 526.3,377.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="526.61,366.85 526.61,377.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="518.67,374.8 518.67,375.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="518.35,375.12 518.35,375.34" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="518.67,374.8 518.67,367.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="518.67,379.32 518.67,386.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="517.27,374.8 517.27,367.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="515.87,374.8 515.87,367.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="514.47,374.8 514.47,367.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="513.07,374.8 513.07,367.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="517.27,379.32 517.27,386.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="515.87,379.32 515.87,386.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="514.47,379.32 514.47,386.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="513.07,379.32 513.07,386.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="511.67,379.32 511.67,386.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="510.27,379.32 510.27,386.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="508.87,379.32 508.87,386.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="507.48,379.32 507.48,386.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="506.08,379.32 506.08,386.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="505.56,379 505.56,379.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="505.56,386.95 505.56,387.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="529.32,384.4 526.61,384.4" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="529.32,384.78 526.61,384.78" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="529.32,370.03 526.61,370.03" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="529.32,369.65 526.61,369.65" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="522.34,383.23 505.01,383.23" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="271.04,272.88 271.04,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="274.25,249.64 274.25,261.72" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="273.93,249.32 273.93,261.57" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="281.88,257.27 281.88,265.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="282.2,257.59 282.2,265.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="274.25,249.64 290.72,249.64" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="273.93,249.32 290.4,249.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="281.88,257.27 290.72,257.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="282.2,257.59 290.4,257.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="281.88,257.27 274.25,257.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="281.88,258.67 274.25,258.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="281.88,260.07 274.25,260.07" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="281.88,261.46 274.25,261.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="281.88,262.86 276.59,262.86" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="281.88,264.26 279.45,264.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="278.59,265.66 274.25,265.66" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="281.39,267.06 274.25,267.06" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="281.88,268.46 274.25,268.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="281.88,269.86 274.25,269.86" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="281.88,271.26 274.25,271.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="281.88,272.66 274.25,272.66" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="281.88,274.05 274.25,274.05" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="281.88,275.45 274.25,275.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="281.88,276.85 274.25,276.85" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="273.93,280.22 274.25,280.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="281.88,280.22 282.2,280.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="281.88,257.27 281.88,249.64" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="283.28,257.27 283.28,249.64" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="284.68,257.27 284.68,249.64" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="286.08,257.27 286.08,249.64" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="287.48,257.27 287.48,249.64" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="276.91,260.6 278.07,261.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="278.07,261.18 279.23,260.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="276.91,260.31 278.07,260.89" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="278.07,260.89 279.23,260.31" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="276.91,260.31 276.91,260.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="279.23,260.31 279.23,260.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <path d="M276.91 260.31L276.91 260.6 278.07 261.18 278.07 260.89 276.91 260.31Z" fill-rule="evenodd" fill="blue"/>
- <path d="M279.23 260.31L279.23 260.6 278.07 261.18 278.07 260.89 279.23 260.31Z" fill-rule="evenodd" fill="blue"/>
- <polyline points="278.07,253.35 278.07,261.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="340.19,212.92 340.19,215.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="342.35,212.92 342.35,215.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="340.19,215.08 342.35,215.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="340.19,212.92 342.35,212.92" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="379.36,212.92 381.52,212.92" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="379.36,215.08 381.52,215.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="381.52,212.92 381.52,215.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="379.36,212.92 379.36,215.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.52,212.92 420.68,212.92" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.52,215.08 420.68,215.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="420.68,212.92 420.68,215.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.52,212.92 418.52,215.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.69,212.92 459.85,212.92" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.69,215.08 459.85,215.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="459.85,212.92 459.85,215.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.69,212.92 457.69,215.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.69,183.42 457.69,185.58" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="459.85,183.42 459.85,185.58" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.69,185.58 459.85,185.58" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.69,183.42 459.85,183.42" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.52,183.42 418.52,185.58" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="420.68,183.42 420.68,185.58" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.52,185.58 420.68,185.58" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.52,183.42 420.68,183.42" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="379.36,183.42 379.36,185.58" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="381.52,183.42 381.52,185.58" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="379.36,185.58 381.52,185.58" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="379.36,183.42 381.52,183.42" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="340.19,183.42 342.35,183.42" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="340.19,185.58 342.35,185.58" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="342.35,183.42 342.35,185.58" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="340.19,183.42 340.19,185.58" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="340.19,153.91 340.19,156.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="342.35,153.91 342.35,156.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="340.19,156.08 342.35,156.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="340.19,153.91 342.35,153.91" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="379.36,153.91 381.52,153.91" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="379.36,156.08 381.52,156.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="381.52,153.91 381.52,156.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="379.36,153.91 379.36,156.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.52,153.91 420.68,153.91" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.52,156.08 420.68,156.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="420.68,153.91 420.68,156.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.52,153.91 418.52,156.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.69,153.91 459.85,153.91" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.69,156.08 459.85,156.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="459.85,153.91 459.85,156.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.69,153.91 457.69,156.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.69,243.38 457.69,245.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="459.85,243.38 459.85,245.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.69,245.54 459.85,245.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.69,243.38 459.85,243.38" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.52,243.38 418.52,245.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="420.68,243.38 420.68,245.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.52,245.54 420.68,245.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.52,243.38 420.68,243.38" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="379.36,243.38 379.36,245.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="381.52,243.38 381.52,245.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="379.36,245.54 381.52,245.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="379.36,243.38 381.52,243.38" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="340.19,243.38 342.35,243.38" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="340.19,245.54 342.35,245.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="342.35,243.38 342.35,245.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="340.19,243.38 340.19,245.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="459.91,149.02 457.63,149.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <path d="M276.75 273.7L276.75 273.41 277.91 272.83 277.91 273.12 276.75 273.7Z" fill-rule="evenodd" fill="blue"/>
- <polyline points="340.12,149.02 301.88,149.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="342.76,146.85 342.76,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="378.94,146.85 378.94,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="381.93,146.85 381.93,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.11,146.85 418.11,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="421.1,146.85 421.1,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.63,149.02 420.75,149.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.46,149.02 381.58,149.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="379.29,149.02 358.67,149.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.95,243.25 499.05,243.25" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.95,245.76 501.34,245.76" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.37,233.58 500.64,233.58" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.37,233.07 500.64,233.07" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.37,242.23 500.64,242.23" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.37,242.74 500.64,242.74" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.64,242.74 500.64,242.23" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.37,242.74 499.37,242.23" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.86,215.08 499.05,215.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.86,212.92 499.05,212.92" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.05,215.27 499.05,215.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.05,212.92 499.05,212.73" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.05,243.25 499.05,242.23" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.05,242.23 500.07,242.23" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.95,245.76 496.95,243.25" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="501.34,245.76 501.34,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.45,242.74 500.45,244.14" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.05,242.23 499.05,215.27" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.37,242.74 499.37,242.23" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.45,233.58 500.45,242.23" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.37,223.92 500.64,223.92" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.37,224.43 500.64,224.43" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.26,213.24 500.64,213.24" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.45,224.43 500.45,233.07" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.05,212.73 500.64,212.73" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.64,213.24 500.64,212.73" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.64,214.76 500.64,215.27" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.05,215.27 500.64,215.27" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.26,214.76 500.64,214.76" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.45,215.27 500.45,223.92" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.05,185.77 500.64,185.77" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.26,185.26 500.64,185.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.64,183.73 500.64,183.23" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.64,185.26 500.64,185.77" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.05,183.23 500.64,183.23" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.26,183.73 500.64,183.73" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.05,183.42 499.05,183.23" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.26,183.73 500.26,185.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.05,185.77 499.05,185.58" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.86,183.42 499.05,183.42" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.86,185.58 499.05,185.58" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.07,185.77 500.07,194.42" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.45,185.77 500.45,194.42" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.05,212.73 499.05,185.77" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.05,183.23 499.05,165.42" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.07,242.23 500.07,242.23" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.64,233.58 500.64,233.07" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.37,234.11 499.37,233.6" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.37,234.11 499.37,233.6" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.07,233.58 499.37,233.58" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.07,242.23 499.37,242.23" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.07,233.58 500.07,242.23" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.37,233.58 499.37,242.23" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.84,241.98 499.84,233.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="500.07,233.84 500.07,233.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.59,241.98 499.59,233.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="500.07,233.58 499.37,233.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.37,233.58 499.37,233.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.37,233.84 500.07,233.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="500.07,241.98 499.37,241.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.37,242.23 500.07,242.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.37,224.43 499.37,223.92" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.07,224.43 499.37,224.43" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.37,224.43 499.37,223.92" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.07,233.07 499.37,233.07" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.64,224.43 500.64,223.92" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.07,224.43 500.07,233.07" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.37,224.43 499.37,233.07" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.59,232.82 499.59,224.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.84,232.82 499.84,224.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="500.07,224.68 500.07,224.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="500.07,224.43 499.37,224.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.37,224.43 499.37,224.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.37,224.68 500.07,224.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="500.07,232.82 499.37,232.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="500.07,233.07 500.07,232.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.37,232.82 499.37,233.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.37,233.07 500.07,233.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="500.07,223.92 499.37,223.92" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.07,215.27 499.37,215.27" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.37,215.27 499.37,223.92" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.07,215.27 500.07,223.92" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.59,223.66 499.59,215.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.84,223.66 499.84,215.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="500.07,215.53 500.07,215.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="500.07,215.27 499.37,215.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.37,215.53 500.07,215.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.37,215.27 499.37,215.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="500.07,223.92 500.07,223.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="500.07,223.66 499.37,223.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.37,223.92 500.07,223.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.37,223.66 499.37,223.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="500.07,194.16 499.37,194.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="500.07,194.42 500.07,194.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.37,194.16 499.37,194.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.37,194.42 500.07,194.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.84,194.16 499.84,186.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.59,194.16 499.59,186.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="500.07,185.77 500.07,194.42" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.37,185.77 499.37,194.42" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.07,194.42 499.37,194.42" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.07,185.77 499.37,185.77" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.07,203.32 499.37,203.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="500.07,203.57 500.07,203.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.37,203.32 499.37,203.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.37,203.57 500.07,203.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="500.07,195.18 500.07,194.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="500.07,194.92 499.37,194.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.37,195.18 500.07,195.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.37,194.92 499.37,195.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.59,203.32 499.59,195.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.84,203.32 499.84,195.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="500.07,194.92 500.07,203.57" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.37,194.92 499.37,203.57" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.07,203.57 499.37,203.57" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.64,194.92 500.64,194.42" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.07,194.92 499.37,194.92" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.37,194.92 499.37,194.42" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.37,194.92 499.37,194.42" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.07,204.34 500.07,204.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="500.07,204.08 499.37,204.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.37,204.08 499.37,204.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.37,204.34 500.07,204.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.37,204.08 499.37,203.57" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.07,204.08 499.37,204.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.37,204.08 499.37,203.57" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.64,204.08 500.64,203.57" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.05,185.77 500.64,185.77" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.37,194.92 500.64,194.92" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.45,194.92 500.45,203.57" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.37,194.42 500.64,194.42" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.37,203.57 500.64,203.57" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.07,212.73 500.07,212.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.37,204.08 500.64,204.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.07,212.47 499.37,212.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.37,212.47 499.37,212.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.37,212.73 500.07,212.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.84,212.47 499.84,204.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.59,212.47 499.59,204.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.37,204.08 499.37,212.73" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.07,186.02 500.07,185.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="500.07,204.08 500.07,212.73" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.07,185.77 499.37,185.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.37,185.77 499.37,186.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="500.45,204.08 500.45,212.73" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.37,186.02 500.07,186.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="500.07,204.08 500.07,212.73" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.07,194.92 500.07,203.57" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.45,194.92 500.45,203.57" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.07,165.42 500.07,174.07" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.37,174.07 500.64,174.07" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.37,174.58 500.64,174.58" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.37,164.91 500.64,164.91" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.37,165.42 500.64,165.42" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.37,174.58 499.37,174.07" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.64,174.58 500.64,174.07" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.07,174.58 499.37,174.58" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.37,174.58 499.37,174.07" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.07,174.58 499.37,174.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,326.03 530.78,326.03" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.37,174.58 499.37,174.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.37,174.83 500.07,174.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.37,165.42 499.37,164.91" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.07,165.42 499.37,165.42" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.64,165.42 500.64,164.91" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.37,165.42 499.37,164.91" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.07,165.42 500.07,174.07" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.07,174.07 499.37,174.07" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.84,173.82 499.84,165.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.37,165.42 499.37,174.07" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.07,165.68 500.07,165.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.59,173.82 499.59,165.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="500.07,165.42 499.37,165.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.37,165.42 499.37,165.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.37,165.68 500.07,165.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="500.07,174.07 500.07,173.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="500.07,173.82 499.37,173.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.37,173.82 499.37,174.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.37,174.58 499.37,183.23" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.37,174.07 500.07,174.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.59,182.97 499.59,174.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.84,182.97 499.84,174.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="500.07,183.23 500.07,182.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="500.07,174.58 500.07,183.23" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.37,182.97 499.37,183.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="500.07,182.97 499.37,182.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="500.45,174.58 500.45,183.23" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.37,183.23 500.07,183.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="299.59,165.42 299.59,174.07" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.45,165.42 500.45,174.07" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.97,156.52 299.97,156.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="299.59,174.58 299.59,183.23" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.67,156.27 300.67,156.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="299.97,156.27 300.67,156.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="299.97,183.23 299.97,182.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.67,156.52 299.97,156.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.67,182.97 300.67,183.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="299.97,182.97 300.67,182.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.67,183.23 299.97,183.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.2,182.97 300.2,174.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.67,174.58 300.67,183.23" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.45,182.97 300.45,174.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="299.97,164.91 299.97,164.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.99,156.27 299.4,156.27" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.97,164.66 300.67,164.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.67,164.66 300.67,164.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.2,164.66 300.2,156.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.67,164.91 299.97,164.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.45,164.66 300.45,156.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.67,156.27 300.67,164.91" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.97,164.91 300.67,164.91" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.97,156.27 299.97,164.91" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.97,156.27 300.67,156.27" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.97,174.07 299.97,173.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,333.15 269.26,333.15" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.67,173.82 300.67,174.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,333.15 270.02,332.77" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.97,165.68 299.97,165.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.67,174.07 299.97,174.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="299.97,165.42 300.67,165.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.67,165.42 300.67,165.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.2,173.82 300.2,165.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.67,165.68 299.97,165.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.45,173.82 300.45,165.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.67,165.42 300.67,174.07" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.97,174.07 300.67,174.07" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.97,165.42 299.97,174.07" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.4,165.42 299.4,164.91" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.67,165.42 300.67,164.91" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.67,165.42 300.67,164.91" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.97,165.42 300.67,165.42" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.97,174.58 300.67,174.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="299.97,174.83 299.97,174.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.67,174.58 300.67,174.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.67,174.83 299.97,174.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="299.97,174.58 300.67,174.58" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.67,174.58 300.67,174.07" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.4,174.58 299.4,174.07" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.67,174.58 300.67,174.07" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.67,164.91 299.4,164.91" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.67,165.42 299.4,165.42" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.67,174.58 299.4,174.58" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.67,174.07 299.4,174.07" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.97,194.92 299.97,203.57" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.59,194.92 299.59,203.57" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.59,204.08 299.59,212.73" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.97,204.08 299.97,212.73" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.97,186.02 299.97,185.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="299.97,185.77 300.67,185.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.67,186.02 299.97,186.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.67,185.77 300.67,186.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.67,204.08 300.67,212.73" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.97,204.08 299.97,212.73" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.2,212.47 300.2,204.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.45,212.47 300.45,204.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="299.97,212.73 299.97,212.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="299.97,212.47 300.67,212.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.67,212.47 300.67,212.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.67,212.73 299.97,212.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.67,204.08 299.4,204.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.67,203.57 299.4,203.57" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.67,194.42 299.4,194.42" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.67,194.92 299.4,194.92" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.99,185.77 299.4,185.77" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.59,194.92 299.59,203.57" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.67,204.08 300.67,203.57" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.4,204.08 299.4,203.57" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.97,204.34 299.97,204.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="299.97,204.08 300.67,204.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.97,204.08 300.67,204.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.67,204.08 300.67,204.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.67,204.34 299.97,204.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.67,194.92 300.67,194.42" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.67,194.92 300.67,194.42" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.97,194.92 300.67,194.92" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.97,203.57 300.67,203.57" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.4,194.92 299.4,194.42" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.67,194.92 300.67,203.57" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.97,194.92 299.97,203.57" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.2,203.32 300.2,195.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.45,203.32 300.45,195.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="299.97,195.18 299.97,194.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="299.97,194.92 300.67,194.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.67,195.18 299.97,195.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.67,194.92 300.67,195.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="299.97,203.57 299.97,203.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="299.97,203.32 300.67,203.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.67,203.32 300.67,203.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.67,203.57 299.97,203.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="299.97,194.42 300.67,194.42" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.97,185.77 300.67,185.77" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.67,185.77 300.67,194.42" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.97,185.77 299.97,194.42" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.2,194.16 300.2,186.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.45,194.16 300.45,186.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="299.97,194.42 299.97,194.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="299.97,194.16 300.67,194.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.67,194.16 300.67,194.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.67,194.42 299.97,194.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="299.97,223.92 299.97,223.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="299.97,223.66 300.67,223.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.67,223.92 299.97,223.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.67,223.66 300.67,223.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="299.97,215.53 299.97,215.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="299.97,215.27 300.67,215.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.67,215.53 299.97,215.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.67,215.27 300.67,215.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.2,223.66 300.2,215.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.45,223.66 300.45,215.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.67,215.27 300.67,223.92" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.97,215.27 299.97,223.92" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.97,223.92 300.67,223.92" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.97,215.27 300.67,215.27" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.97,233.07 299.97,232.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="299.97,232.82 300.67,232.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.67,232.82 300.67,233.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.67,233.07 299.97,233.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="299.97,224.68 299.97,224.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="299.97,224.43 300.67,224.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.67,224.43 300.67,224.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.67,224.68 299.97,224.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.45,232.82 300.45,224.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.2,232.82 300.2,224.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.67,224.43 300.67,233.07" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.97,224.43 299.97,233.07" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.97,233.07 300.67,233.07" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.4,224.43 299.4,223.92" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.97,224.43 300.67,224.43" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.67,224.43 300.67,223.92" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.97,242.23 299.97,241.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.67,224.43 300.67,223.92" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.67,241.98 300.67,242.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="299.97,241.98 300.67,241.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.67,242.23 299.97,242.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="299.97,233.84 299.97,233.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="299.97,233.58 300.67,233.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.67,233.58 300.67,233.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.2,241.98 300.2,233.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.67,233.84 299.97,233.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.45,241.98 300.45,233.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.67,233.58 300.67,242.23" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.97,242.23 300.67,242.23" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.97,233.58 299.97,242.23" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.97,233.58 300.67,233.58" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.67,233.58 300.67,233.07" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.67,233.58 300.67,233.07" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.4,233.58 299.4,233.07" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.97,242.23 299.97,242.23" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.59,156.27 299.59,164.91" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.99,183.23 300.99,156.27" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.59,185.77 299.59,194.42" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.99,156.27 299.4,156.27" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.97,155.76 299.4,155.76" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.99,156.27 300.99,156.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.4,155.76 299.4,156.27" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="303.69,153.91 303.69,156.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="303.69,153.91 301.88,153.91" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="303.69,156.08 300.99,156.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="303.69,185.58 300.99,185.58" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="303.69,183.42 300.99,183.42" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="303.69,183.42 303.69,185.58" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.99,185.77 300.99,185.58" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.99,183.42 300.99,183.23" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.78,183.73 299.4,183.73" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.78,183.73 299.78,185.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.4,183.73 299.4,183.23" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.99,183.23 299.4,183.23" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.4,185.26 299.4,185.77" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.99,185.77 299.4,185.77" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.78,185.26 299.4,185.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.59,215.27 299.59,223.92" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.78,214.76 299.4,214.76" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.99,215.27 299.4,215.27" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.4,214.76 299.4,215.27" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.4,213.24 299.4,212.73" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.78,213.24 299.4,213.24" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.99,212.73 299.4,212.73" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.67,224.43 299.4,224.43" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.59,224.43 299.59,233.07" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.59,233.58 299.59,242.23" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.67,223.92 299.4,223.92" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.99,242.23 300.99,215.27" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.67,242.74 300.67,242.23" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="298.7,245.76 298.7,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.59,242.74 299.59,244.14" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.99,243.25 300.99,242.23" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.78,213.24 299.78,214.76" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.99,215.27 300.99,215.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="303.18,215.08 300.99,215.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.67,242.74 299.4,242.74" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.67,242.23 299.4,242.23" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.4,242.74 299.4,242.23" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.11,243.79 298.73,243.79" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.67,233.07 299.4,233.07" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.67,233.58 299.4,233.58" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="303.34,243.25 300.99,243.25" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="298.48,245.06 298.48,244.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="298.48,244.3 298.73,244.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="298.73,245.06 298.48,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="298.73,245.06 298.73,244.3" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.11,245.06 298.73,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="298.73,244.3 298.73,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="299.11,243.79 299.11,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.97,174.58 299.97,183.23" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="303.34,245.76 303.34,243.25" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="301.88,153.91 301.88,149.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.97,147.36 299.97,155.76" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.99,148.89 300.99,153.91" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="470.33,162.12 498.67,162.12" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.37,165.42 498.86,165.42" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="468.93,163.64 496.92,163.64" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.45,147.08 500.45,155.66" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.45,155.66 500.65,155.66" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.95,147.08 496.95,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.45,156.23 500.65,156.23" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.45,156.23 500.45,164.91" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="470.33,148.89 470.33,156.81" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="459.91,149.02 468.93,149.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.44,147.08 496.44,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="470.33,148.89 498.67,148.89" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="492.95,165.17 492.95,163.64" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="468.93,148.13 468.93,156.81" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="493.2,164.91 498.86,164.91" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="492.95,165.17 498.86,165.17" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="493.2,164.91 493.2,163.64" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="312.26,146.85 312.77,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="321.43,146.98 312.77,146.98" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.45,147.08 496.95,147.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="330.6,146.98 321.94,146.98" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="312.26,146.98 303.6,146.98" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="330.6,146.85 331.11,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="321.94,146.85 321.43,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="339.77,146.98 331.11,146.98" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="360.6,146.85 361.11,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="351.43,146.98 342.76,146.98" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="390.59,146.85 391.1,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="351.43,146.85 351.93,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="369.77,146.85 370.28,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="399.77,146.98 391.1,146.98" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="390.59,146.98 381.93,146.98" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="399.77,146.85 400.27,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="408.94,146.85 409.45,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="408.94,146.98 400.27,146.98" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.11,146.98 409.45,146.98" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="438.93,146.85 439.44,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="429.76,146.85 430.27,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="438.93,146.98 430.27,146.98" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="448.1,146.85 448.61,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="448.1,146.98 439.44,146.98" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="478.1,146.85 478.61,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="468.93,146.98 460.26,146.98" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="429.76,146.98 421.1,146.98" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.28,146.98 448.61,146.98" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="478.1,147.08 468.93,147.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="487.27,146.85 487.78,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.44,147.08 487.78,147.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="487.27,147.08 478.61,147.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.44,146.85 496.95,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="468.93,146.85 469.44,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.65,155.66 500.65,156.23" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="498.67,148.89 498.67,162.12" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.99,153.91 300.48,153.91" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="469.44,146.85 469.44,147.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="468.93,147.08 468.93,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.3,398.64 284.3,392.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.99,148.89 300.48,148.89" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="301.88,183.42 301.88,156.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,421.92 530.78,421.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.49,398.64 284.49,392.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="518.27,376.64 521.79,377.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="521.79,377.46 522.63,376.44" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="522.63,376.44 523.25,379.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="523.25,379.02 524.1,378" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="524.1,378 527.22,378.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="530.78,421.66 530.02,421.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,421.66 530.02,421.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,421.92 530.78,421.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,428.4 530.78,428.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,421.66 530.78,428.31" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,428.14 530.02,428.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,444.04 530.78,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,450.37 530.78,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,451.13 523.69,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.78,450.37 284.78,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.48,444.3 530.48,450.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="283.98,451.64 283.98,451.16" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.31,444.3 530.31,450.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,450.37 530.02,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.78,450.37 284.01,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="283.5,451.16 283.98,451.16" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.36,451.64 284.36,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="283.5,450.78 284.01,450.78" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.01,450.37 284.01,444.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.78,451.13 284.36,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.01,450.78 284.01,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.48,444.3 284.48,450.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.78,451.13 291.1,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.3,444.3 284.3,450.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="290.85,450.65 284.78,450.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.78,450.37 291.1,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,245.06 530.78,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.81,243.79 530.81,244.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="290.85,450.84 284.78,450.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="531.29,244.26 530.81,244.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.43,243.79 530.43,244.29" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,244.64 530.78,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,245.06 530.02,244.29" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,244.29 530.43,244.29" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,245.06 523.69,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.29,244.64 530.78,244.64" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="523.94,244.58 530.02,244.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.3,251.13 530.3,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="523.94,244.77 530.02,244.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="369.77,453.07 370.28,453.07" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,244.65 269.26,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.75,244.65 269.26,244.65" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.61,243.79 269.61,244.3" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="276.1,244.59 270.28,244.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.55,251.13 269.55,245.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="501.31,451.64 500.93,451.64" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.74,251.13 269.74,245.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="276.1,244.77 270.28,244.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="516.06,451.64 515.68,451.64" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.29,406.53 531.29,406.91" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.29,450.78 531.29,451.16" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.29,377.03 531.29,377.41" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.29,391.78 531.29,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.23,362.28 531.23,362.66" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.81,243.79 530.43,243.79" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.75,244.65 268.75,244.27" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="476.63,156.27 484.01,156.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="479.3,156.46 479.3,162.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="269.23,243.79 269.61,243.79" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="283.98,451.64 284.36,451.64" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="283.5,450.78 283.5,451.16" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="482.1,156.46 482.1,162.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="476.63,154.74 493.6,154.74" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="476.43,154.55 493.79,154.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="484.9,159.11 484.9,162.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="480.7,156.46 480.7,162.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="487.7,156.46 487.7,158.5" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="483.5,156.46 483.5,162.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="476.43,156.46 484.1,156.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="493.79,154.55 493.79,156.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="494.95,151.79 475.13,151.79" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="489.1,156.46 489.1,162.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="486.3,156.46 486.3,158.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="489.69,158.13 489.11,159.29" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="490.49,156.46 490.49,162.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="493.6,154.74 493.6,156.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="489.4,159.29 489.98,160.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="494.95,159.29 494.95,151.79" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="489.11,159.29 489.69,160.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="489.98,158.13 489.4,159.29" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <path d="M489.98 160.45L489.69 160.45 489.11 159.29 489.4 159.29 489.98 160.45Z" fill-rule="evenodd" fill="blue"/>
- <polyline points="489.98,160.45 489.69,160.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="529.32,384.15 529.32,385.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="494.95,159.29 489.09,159.29" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="529.32,370.29 529.32,384.15" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="488.27,361.39 493.61,361.39" style="fill:none;stroke:red;stroke-width:0.5"/>
- <path d="M489.98 158.13L489.69 158.13 489.11 159.29 489.4 159.29 489.98 158.13Z" fill-rule="evenodd" fill="blue"/>
- <polyline points="489.98,158.13 489.69,158.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="285.47,429.29 285.47,443.15" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="285.47,414.54 285.47,428.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="508.94,449.67 515.76,449.67" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="291.1,245.76 277.18,245.76" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="285.48,399.79 285.48,413.65" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="303.18,275.04 312.78,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="313.99,317.45 313.99,310.71" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.02,361.39 499.02,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="313.99,291.89 319.62,291.89" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="529.32,392.22 529.32,398.9" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="313.99,309.69 318.6,309.69" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="302.07,318.47 319.62,318.47" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="313.99,310.71 318.6,310.71" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="313.99,292.91 318.6,292.91" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="303.18,303.33 312.78,303.33" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="313.99,309.69 313.99,303.33" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="302.74,302.32 312.78,302.32" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="313.99,317.45 318.6,317.45" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="301.02,272.88 301.02,292.18" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="313.99,291.89 313.99,284.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="302.74,275.04 302.74,288.07" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="313.99,303.33 318.6,303.33" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="312.78,303.33 312.78,317.45" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="312.78,275.04 312.78,278.12" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="313.99,302.32 313.99,292.91" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="313.99,302.32 318.6,302.32" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="312.78,273.64 312.78,274.28" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="318.6,317.45 318.6,315.57" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="319.62,312.78 319.62,307.98" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="318.6,302.32 318.6,302.19" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="319.62,318.47 319.62,315.57" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="318.6,309.69 318.6,307.98" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="319.62,312.78 318.6,312.78" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="318.6,305.11 319.62,305.11" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="318.6,312.78 318.6,310.71" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="319.62,315.57 318.6,315.57" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="319.62,305.11 319.62,302.19" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="318.6,307.98 319.62,307.98" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="302.74,288.07 312.78,288.07" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="318.6,305.11 318.6,303.33" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="302.74,288.58 312.78,288.58" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="303.18,273.64 312.78,273.64" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="302.74,288.58 302.74,292.18" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="312.78,278.12 313.99,278.12" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="313.99,278.12 313.99,272.88" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="312.78,288.58 312.78,302.32" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="303.18,274.28 312.78,274.28" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="303.18,272.88 313.99,272.88" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="312.78,284.99 312.78,288.07" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="302.74,298.79 302.74,302.38" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="312.78,284.99 313.99,284.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.72,355.54 270.72,362.32" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.75,303.27 268.75,303.65" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="301.02,298.79 301.02,310.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,303.91 269.26,303.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="268.75,288.52 268.75,288.9" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,303.65 269.26,310.3" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.75,273.77 268.75,274.15" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,303.65 270.02,303.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,303.91 269.26,303.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,303.27 269.26,303.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,303.65 270.02,303.27" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,303.65 270.02,303.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,303.65 269.26,303.65" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,303.65 270.02,310.39" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,303.27 269.26,303.27" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,303.02 270.02,303.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,289.15 269.26,288.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,303.02 270.02,303.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,303.27 269.26,303.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,296.63 269.26,303.27" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,303.27 269.26,303.27" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,296.53 270.02,303.27" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,288.9 269.26,295.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,288.9 270.02,289.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,288.9 270.02,288.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,288.9 270.02,288.52" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,289.15 269.26,289.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,303.27 270.02,303.65" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,288.9 270.02,295.64" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,288.26 270.02,288.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,288.9 269.26,288.9" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,288.26 270.02,288.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,288.52 269.26,288.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,281.78 270.02,282.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,282.03 269.26,281.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,288.52 269.26,288.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,288.52 269.26,288.52" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,288.52 269.26,288.52" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,281.78 269.26,288.52" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,281.78 270.02,281.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,282.03 269.26,282.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,288.52 270.02,288.52" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,280.89 269.26,280.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,288.52 270.02,288.9" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,281.78 270.02,288.52" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,280.63 270.02,280.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,280.63 270.02,280.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,280.89 269.26,280.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,274.15 269.26,280.79" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,274.15 270.02,274.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,274.4 269.26,274.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,274.15 269.26,274.15" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,274.15 270.02,274.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,274.15 270.02,273.77" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,273.51 270.02,273.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,274.4 269.26,274.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,273.77 269.26,273.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,274.15 270.02,280.89" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,267.28 269.26,267.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,267.03 270.02,267.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,273.51 270.02,273.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,273.77 269.26,273.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,267.03 270.02,267.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,267.28 269.26,267.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,267.03 269.26,273.77" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.55,273.51 269.55,267.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,267.03 270.02,273.77" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.74,273.51 269.74,267.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,273.77 269.26,273.77" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.75,288.52 270.02,288.52" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,273.77 270.02,273.77" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,273.77 269.26,273.77" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,273.77 270.02,274.15" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.75,303.65 270.02,303.65" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.5,281.87 268.5,280.79" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.75,303.27 270.02,303.27" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.75,288.9 270.02,288.9" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.5,326.13 268.5,325.05" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.75,274.15 270.02,274.15" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.73,259.65 269.73,265.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="268.75,273.77 270.02,273.77" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.75,318.4 270.02,318.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.55,259.65 269.55,265.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="268.75,318.02 270.02,318.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,318.02 270.02,318.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,318.02 270.02,318.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,318.02 269.26,318.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,318.02 269.26,318.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,317.77 270.02,317.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,311.28 270.02,318.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,311.38 269.26,318.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,318.02 269.26,318.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,318.02 269.26,317.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,317.77 270.02,318.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,318.4 270.02,318.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,318.4 270.02,318.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,318.4 270.02,325.14" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,318.4 270.02,318.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,318.66 269.26,318.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,318.4 269.26,318.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,318.4 269.26,325.05" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.5,281.87 268.5,280.79" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,318.66 269.26,318.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.74,274.4 269.74,280.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="268.75,318.02 268.75,318.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.74,282.03 269.74,288.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,296.78 270.02,296.63" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,295.39 270.02,295.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.55,274.4 269.55,280.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,295.39 270.02,295.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,295.39 270.02,295.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,295.64 269.26,295.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.55,282.03 269.55,288.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,296.53 270.02,296.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,296.78 269.26,296.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,296.78 269.26,296.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.74,289.15 269.74,295.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,296.53 270.02,296.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.55,289.15 269.55,295.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.74,296.78 269.74,303.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,295.64 269.26,295.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,310.14 270.02,310.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,311.28 270.02,311.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.55,296.78 269.55,303.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,311.54 269.26,311.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,311.28 270.02,311.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,311.54 269.26,311.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,310.39 269.26,310.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,310.39 269.26,310.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,310.14 270.02,310.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.74,303.91 269.74,310.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.55,303.91 269.55,310.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="268.5,326.13 268.5,325.05" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.55,311.54 269.55,317.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,324.89 270.02,325.05" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.5,326.13 268.5,325.05" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.74,311.54 269.74,317.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,325.14 269.26,324.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,324.89 270.02,324.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,325.14 269.26,325.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="268.5,326.13 268.5,325.05" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,324.89 270.02,325.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.55,318.66 269.55,324.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.74,362.91 269.74,369.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.74,370.54 269.74,376.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.55,377.66 269.55,383.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.74,377.66 269.74,383.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.55,370.54 269.55,376.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.74,318.66 269.74,324.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,369.4 269.26,369.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,370.54 270.02,370.38" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,369.14 270.02,369.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,369.14 270.02,369.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,369.4 269.26,369.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.55,362.91 269.55,369.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,370.29 270.02,370.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,369.14 270.02,369.3" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,370.54 269.26,370.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,370.29 270.02,370.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.74,355.79 269.74,362.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,370.54 269.26,370.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="268.75,377.03 268.75,377.41" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.55,355.79 269.55,362.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,377.41 270.02,377.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,355.79 270.02,355.63" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,377.66 269.26,377.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,377.66 269.26,377.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,377.41 270.02,377.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,354.39 270.02,354.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,377.41 270.02,384.05" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,377.41 269.26,377.41" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,377.41 270.02,377.03" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,377.41 269.26,384.05" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,377.03 269.26,376.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,376.77 270.02,376.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,370.29 270.02,377.03" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,370.29 269.26,377.03" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,377.03 269.26,377.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,377.03 269.26,377.03" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,377.03 270.02,377.41" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,376.77 270.02,377.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="268.75,377.03 270.02,377.03" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,377.03 269.26,377.03" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,377.03 270.02,377.03" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,362.28 270.02,362.66" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.75,362.28 270.02,362.28" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.75,377.41 270.02,377.41" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.75,362.66 270.02,362.66" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,362.28 269.26,362.28" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,355.63 269.26,362.28" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,362.28 269.26,362.28" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,362.02 270.02,362.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,362.02 270.02,362.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,362.28 269.26,362.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,362.28 269.26,362.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,355.63 270.02,362.28" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,362.66 270.02,362.28" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,362.66 269.26,362.66" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,362.66 270.02,362.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,362.91 269.26,362.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,362.66 270.02,369.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,362.66 269.26,369.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="290.4,249.32 290.4,246.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="270.02,362.91 269.26,362.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,362.66 270.02,362.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="290.4,273.1 290.4,257.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="282.31,267.51 278.59,265.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="278.59,265.69 278.58,264.37" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="278.58,264.37 276.47,265.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="276.47,265.98 276.46,264.65" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="290.72,249.64 290.72,246.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="290.72,273.42 290.72,257.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="282.2,273.42 290.72,273.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="282.32,273.1 290.4,273.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="268.75,362.28 268.75,362.66" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="273.93,263.42 273.93,280.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="282.32,273.1 282.32,273.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="282.33,265.67 279.14,264.11" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="279.14,264.11 279.13,262.78" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="279.13,262.78 277.02,264.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="277.02,264.39 277.01,263.07" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="277.01,263.07 273.93,261.57" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="274.25,263.57 274.25,280.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="288.88,257.27 288.88,249.64" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="282.2,267.46 282.2,280.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="279.07,273.7 279.07,273.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="275.66,264.26 274.25,264.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <path d="M279.07 273.7L279.07 273.41 277.91 272.83 277.91 273.12 279.07 273.7Z" fill-rule="evenodd" fill="blue"/>
- <polyline points="277.19,264.26 277.02,264.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="277.91,280.66 277.91,272.81" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="290.28,257.27 290.28,249.64" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="281.88,267.3 281.88,280.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="374.62,244.9 374.62,248.44" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="276.75,273.41 277.91,272.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="276.75,273.7 277.91,273.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="291.48,253.35 278.07,253.35" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="277.91,273.12 279.07,273.7" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="277.91,272.83 279.07,273.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="276.75,273.7 276.75,273.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="503.85,363.55 504.11,363.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="290.4,246.02 290.72,246.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="499.27,363.55 499.27,368.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.94,362.28 530.94,362.28" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.42,363.55 499.42,368.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.27,363.55 499.42,363.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.42,363.55 499.42,363.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.02,363.55 499.27,363.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="503.85,362.69 503.85,363.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="506.58,363.55 506.58,367.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="504.11,363.55 504.11,362.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.14,368.12 500.35,368 501.48,367.56 502.46,366.83 503.21,365.88 503.69,364.75 503.85,363.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="518,375.26 522.05,376.21" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="522.05,376.21 522.9,375.19" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="522.9,375.19 523.51,377.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="523.51,377.77 524.36,376.75" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="524.36,376.75 526.92,377.34" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="504.11,362.69 503.85,362.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.02,362.69 499.02,363.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="506.9,363.55 506.9,366.85" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="499.27,362.69 499.02,362.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="506.9,375.12 506.9,379" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="506.9,387.26 506.9,390.89" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="506.58,374.8 506.58,379" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="499.27,363.55 499.27,362.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="518.67,379.32 526.3,379.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="506.58,387.26 506.58,390.89" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="518.67,377.92 522.99,377.92" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="511.67,374.8 511.67,367.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="518.35,376.59 518.35,379" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="518.67,374.8 526.3,374.8" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="526.3,378.51 526.3,386.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="522.03,376.2 522.05,376.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="508.87,374.8 508.87,367.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="518.67,376.75 518.67,379.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="526.61,387.26 526.61,378.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="507.48,374.8 507.48,367.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="523.62,375.22 522.46,375.8" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="510.27,374.8 510.27,367.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="523.14,376.2 526.3,376.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="522.46,370.83 504.69,370.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="521.3,374.93 521.3,375.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="506.08,374.8 506.08,367.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="522.46,375.51 521.3,374.93" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="522.46,375.8 521.3,375.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="522.46,370.83 522.46,375.82" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="523.62,374.93 523.62,375.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="523.62,374.93 522.46,375.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="522.34,378.26 523.5,378.85" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="522.34,378.55 523.5,379.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="521.18,378.85 522.34,378.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <path d="M521.3 374.93L521.3 375.22 522.46 375.8 522.46 375.51 521.3 374.93Z" fill-rule="evenodd" fill="blue"/>
- <polyline points="521.18,379.14 521.18,378.85" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <path d="M523.62 374.93L523.62 375.22 522.46 375.8 522.46 375.51 523.62 374.93Z" fill-rule="evenodd" fill="blue"/>
- <path d="M521.18 379.14L521.18 378.85 522.34 378.26 522.34 378.55 521.18 379.14Z" fill-rule="evenodd" fill="blue"/>
- <polyline points="522.34,383.23 522.34,378.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="521.18,379.14 522.34,378.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="476.81,148.89 476.81,154.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <path d="M523.5 379.14L523.5 378.85 522.34 378.26 522.34 378.55 523.5 379.14Z" fill-rule="evenodd" fill="blue"/>
- <polyline points="523.5,379.14 523.5,378.85" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="478.21,148.89 478.21,154.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="476.43,154.55 476.43,154.74" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="483.97,156.19 484.86,158.05" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="484.86,158.05 484.04,159.09" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="484.04,159.09 486.69,159.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="486.69,159.14 485.88,160.19" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="485.88,160.19 486.8,162.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="482.41,148.89 482.41,154.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="479.61,148.89 479.61,154.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="485.54,156.27 486.1,157.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="486.1,157.45 485.28,158.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="485.28,158.49 487.94,158.54" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="487.94,158.54 487.12,159.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="487.12,159.59 488.33,162.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="485.21,148.89 485.21,154.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="481.01,148.89 481.01,154.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="483.81,148.89 483.81,154.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="482.36,158.17 482.65,158.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="476.43,154.74 476.43,156.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="476.63,154.74 476.63,156.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <path d="M482.36 158.17L482.65 158.17 483.23 159.33 482.94 159.33 482.36 158.17Z" fill-rule="evenodd" fill="blue"/>
- <polyline points="482.36,160.49 482.94,159.33" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="486.6,148.89 486.6,154.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <path d="M482.36 160.49L482.65 160.49 483.23 159.33 482.94 159.33 482.36 160.49Z" fill-rule="evenodd" fill="blue"/>
- <polyline points="482.94,159.33 482.36,158.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="487.7,158.85 487.7,160.8" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="482.36,160.49 482.65,160.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="482.65,160.49 483.23,159.33" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="485.63,156.46 493.79,156.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="490.8,148.89 490.8,154.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="483.23,159.33 482.65,158.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="473.6,150.72 473.6,152.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="473.6,151.44 473.49,151.3 473.38,151.22 473.22,151.22 473.11,151.3 473,151.44 472.95,151.66 472.95,151.81 473,152.02 473.11,152.17 473.22,152.24 473.38,152.24 473.49,152.17 473.6,152.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="473.98,152.24 473.98,151.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="473.98,151.51 474.15,151.3 474.25,151.22 474.42,151.22 474.53,151.3 474.58,151.51 474.58,152.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="475.07,152.1 475.02,152.17 475.07,152.24 475.13,152.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="485.54,156.27 493.6,156.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="492.2,148.89 492.2,154.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="475.62,158.99 475.62,159.71 475.67,159.93 475.78,160 475.95,160 476.06,159.93 476.22,159.71" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="476.22,158.99 476.22,160" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="476.65,158.99 476.65,160.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="476.65,159.2 476.76,159.06 476.87,158.99 477.04,158.99 477.15,159.06 477.25,159.2 477.31,159.42 477.31,159.57 477.25,159.79 477.15,159.93 477.04,160 476.87,160 476.76,159.93 476.65,159.79" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="489.4,148.89 489.4,154.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="488,148.89 488,154.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="293.05,252.32 293.05,253.85" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="293.05,253.05 292.94,252.9 292.83,252.83 292.67,252.83 292.56,252.9 292.45,253.05 292.39,253.26 292.39,253.41 292.45,253.63 292.56,253.77 292.67,253.85 292.83,253.85 292.94,253.77 293.05,253.63" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="293.43,253.85 293.43,252.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="293.43,253.12 293.59,252.9 293.7,252.83 293.87,252.83 293.98,252.9 294.03,253.12 294.03,253.85" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="294.52,253.7 294.47,253.77 294.52,253.85 294.57,253.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="301.78,255.9 313.75,255.9" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="486.3,161.07 486.3,162.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="486.3,159.14 486.3,159.65" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="477.96,159.33 483.25,159.33" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="277.05,281.33 277.05,282.06 277.1,282.27 277.21,282.35 277.38,282.35 277.49,282.27 277.65,282.06" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="277.65,281.33 277.65,282.35" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="278.09,281.33 278.09,282.85" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="278.09,281.55 278.19,281.4 278.3,281.33 278.47,281.33 278.58,281.4 278.69,281.55 278.74,281.76 278.74,281.91 278.69,282.13 278.58,282.27 278.47,282.35 278.3,282.35 278.19,282.27 278.09,282.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="302.04,255.14 313.75,255.14" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="301.88,243.25 301.88,215.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="281.88,278.25 274.25,278.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="301.02,212.92 303.18,212.92" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="301.02,215.08 303.18,215.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="281.88,279.65 274.25,279.65" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="301.02,263.59 331.3,263.59" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="302.04,255.14 302.04,254.63" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="314.52,259.78 323.67,259.78" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="301.02,263.59 301.02,261.98" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="303.18,212.92 303.18,215.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="301.78,262.83 301.78,261.98" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="314.52,259.02 323.67,259.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="303.34,244.46 330.54,244.46" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="301.78,262.83 309.68,262.83" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="302.07,318.47 302.07,331.88" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="303.34,243.69 331.3,243.69" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="476.7,363.55 476.7,361.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="303.18,317.45 312.78,317.45" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.98,340.02 496.98,342.06" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="298.73,450.37 298.73,449.67" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="303.18,304.54 303.18,317.45" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="498.89,340.02 498.89,342.06" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.86,392.16 490.96,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="483.57,360.37 483.57,331.95" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.02,272.88 499.02,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,317.77 530.02,317.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="496.98,342.06 498.89,342.06" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,318.02 530.78,317.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="498.19,361.39 498.19,342.06" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="475.94,363.55 475.94,360.37" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,311.54 530.78,311.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,318.02 530.78,318.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="531.29,303.27 531.29,303.65" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,317.77 530.02,318.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,311.28 530.02,311.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,311.28 530.78,318.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,311.28 530.02,311.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,311.28 530.02,318.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.3,317.77 530.3,311.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,311.54 530.78,311.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.49,317.77 530.49,311.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,311.28 530.78,311.28" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,303.91 530.78,303.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,310.39 530.78,310.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,310.14 530.02,310.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.49,310.14 530.49,303.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,310.14 530.02,310.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,310.39 530.78,310.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,303.65 530.78,310.39" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="476.83,389.36 476.83,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,303.65 530.02,303.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,303.91 530.78,303.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,303.65 530.02,303.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.3,310.14 530.3,303.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,310.39 530.78,310.39" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,303.65 530.02,303.27" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,303.27 530.78,303.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,303.65 530.78,303.65" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,303.02 530.02,303.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,303.65 530.02,310.39" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,303.02 530.02,303.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,296.78 530.78,296.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.49,303.02 530.49,296.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,296.53 530.02,296.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,303.27 530.78,303.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.3,303.02 530.3,296.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,303.27 530.78,303.27" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,296.78 530.78,296.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,296.53 530.02,296.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,296.53 530.78,303.27" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,303.27 530.02,303.65" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,296.53 530.02,303.27" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,303.27 530.78,303.27" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,295.64 530.78,295.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,296.53 530.78,296.53" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,303.27 530.02,303.27" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,295.64 530.78,295.64" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,295.39 530.02,295.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,295.39 530.02,295.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,295.64 530.78,295.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="531.54,311.38 531.54,310.3" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.29,303.65 530.02,303.65" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.54,310.3 530.78,310.3" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="529.32,296.53 529.32,295.64" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.54,311.38 530.78,311.38" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.54,296.63 530.78,296.63" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.29,303.27 530.02,303.27" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.54,295.54 530.78,295.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,295.64 529.32,295.64" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,311.28 529.32,311.28" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,296.53 529.32,296.53" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="529.32,311.28 529.32,310.39" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.54,296.63 531.54,295.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="529.32,296.53 529.32,303.19" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,310.39 529.32,310.39" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,318.02 530.78,318.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,317.77 530.02,317.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,318.02 530.78,317.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,318.02 530.78,318.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,332.52 530.02,332.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,317.77 530.02,318.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,332.77 530.78,332.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,332.77 530.78,332.77" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,318.02 530.78,318.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,332.52 530.02,332.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,332.77 530.78,332.77" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.54,325.05 530.78,325.05" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,332.77 530.78,332.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="531.54,326.13 530.78,326.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,318.02 530.78,318.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.29,318.02 530.02,318.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.29,318.4 530.02,318.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,318.02 530.02,318.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,318.02 530.02,318.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,318.02 530.78,318.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.54,326.13 531.54,325.05" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,318.02 530.78,317.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,317.77 530.02,317.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,318.4 530.02,318.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,318.4 530.78,318.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,317.77 530.02,318.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,318.02 530.78,318.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.49,324.89 530.49,318.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,325.14 530.78,325.14" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,318.4 530.78,325.14" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,318.4 530.02,325.14" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,318.66 530.78,318.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.3,324.89 530.3,318.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,325.14 530.78,324.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,318.66 530.78,318.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,318.4 530.02,318.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,325.14 530.78,325.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,324.89 530.02,324.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,324.89 530.02,325.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.49,332.52 530.49,326.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,326.03 530.02,332.77" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,326.29 530.78,326.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,326.03 530.78,332.77" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.3,332.52 530.3,326.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,326.29 530.78,326.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,326.03 530.02,326.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,332.77 530.78,332.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,332.52 530.02,332.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,332.77 530.78,332.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,326.03 529.32,326.03" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.29,318.02 531.29,318.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="502.88,382.82 502.88,383.55 502.93,383.77 503.04,383.84 503.2,383.84 503.31,383.77 503.48,383.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="503.48,382.82 503.48,383.84" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="503.91,382.82 503.91,384.35" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="503.91,383.04 504.02,382.89 504.13,382.82 504.29,382.82 504.4,382.89 504.51,383.04 504.57,383.26 504.57,383.4 504.51,383.62 504.4,383.77 504.29,383.84 504.13,383.84 504.02,383.77 503.91,383.62" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="530.02,332.52 530.02,332.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,325.14 529.32,325.14" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="301.88,212.92 301.88,185.58" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="529.32,326.03 529.32,325.14" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="502.75,369.87 502.75,371.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="502.75,370.59 502.64,370.45 502.53,370.38 502.37,370.38 502.26,370.45 502.15,370.59 502.1,370.81 502.1,370.96 502.15,371.18 502.26,371.32 502.37,371.39 502.53,371.39 502.64,371.32 502.75,371.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="503.13,371.39 503.13,370.38" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="503.13,370.67 503.3,370.45 503.4,370.38 503.57,370.38 503.68,370.45 503.73,370.67 503.73,371.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="504.22,371.25 504.17,371.32 504.22,371.39 504.28,371.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="470.33,161.89 470.33,162.12" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="470.33,156.81 468.93,156.81" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="470.33,161.64 474.91,161.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="468.93,161.89 468.93,163.64" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="300.99,212.73 300.99,185.77" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="468.92,157.06 470.33,157.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="470.33,161.5 470.33,161.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="474.91,161.78 474.78,160.56 474.34,159.43 473.61,158.45 472.66,157.7 471.54,157.22 470.33,157.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="470.33,161.64 470.33,161.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="470.33,161.5 474.9,161.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="470.33,157.06 470.33,156.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="459.85,243.38 459.85,234.98" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="468.92,161.89 470.33,161.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="470.33,161.89 468.93,161.89" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="470.33,156.81 468.92,156.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="470.33,161.89 470.33,161.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="459.85,243.38 447.82,243.38" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="468.92,161.64 468.92,161.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="459.09,235.75 448.58,235.75" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="470.33,161.64 468.92,161.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="468.92,156.81 468.92,157.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="448.58,242.61 448.58,235.75" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="447.82,243.38 447.82,234.98" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="459.09,242.61 459.09,235.75" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="459.09,242.61 448.58,242.61" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="459.85,234.98 447.82,234.98" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,348.16 269.26,347.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="268.75,347.52 268.75,347.91" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="475.94,380.75 475.94,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.49,421.92 530.49,428.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.3,421.92 530.3,428.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,347.91 270.02,347.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,348.16 269.26,348.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,347.27 270.02,347.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,347.52 269.26,347.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,347.91 269.26,347.91" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,347.91 270.02,348.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,347.52 269.26,347.52" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,347.91 270.02,347.52" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,347.52 269.26,347.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,347.52 269.26,347.52" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.75,347.91 270.02,347.91" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,340.78 270.02,347.52" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,347.52 270.02,347.91" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,347.27 270.02,347.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,340.78 270.02,340.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="268.75,347.52 270.02,347.52" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,341.04 269.26,341.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.55,341.04 269.55,347.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,341.04 270.02,340.88" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,341.04 269.26,340.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,340.78 270.02,341.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.74,341.04 269.74,347.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,347.91 269.26,354.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.74,348.16 269.74,354.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.72,245.76 270.72,332.56" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.72,333.16 270.72,354.65" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.55,348.16 269.55,354.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,339.64 270.02,339.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,339.64 270.02,339.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,347.91 270.02,354.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.55,333.41 269.55,339.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,339.89 269.26,339.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.74,333.41 269.74,339.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,333.15 270.02,339.89" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,339.89 269.26,339.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.55,326.29 269.55,332.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,333.15 269.26,339.8" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,326.03 270.02,326.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,326.29 269.26,326.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,332.77 269.26,332.77" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.74,326.29 269.74,332.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="268.75,332.77 270.02,332.77" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,326.03 270.02,332.77" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,326.29 269.26,326.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,332.77 270.02,333.15" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,326.03 270.02,326.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,332.77 269.26,332.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,326.03 269.26,332.77" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.75,333.15 270.02,333.15" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,332.77 269.26,332.77" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,332.52 270.02,332.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,332.52 270.02,332.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,333.41 269.26,333.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,333.15 270.02,333.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,332.77 269.26,332.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,333.41 269.26,333.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,333.15 270.02,333.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="273.68,302.38 273.68,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="271.52,302.38 271.52,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,355.54 270.72,355.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.75,332.77 268.75,333.15" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.5,354.55 269.26,354.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.5,355.63 269.26,355.63" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="271.52,304.54 273.68,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,354.39 270.02,354.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="271.52,302.38 273.68,302.38" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,354.65 270.72,354.65" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,354.39 270.02,354.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,354.65 269.26,354.65" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,354.65 269.26,354.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,355.54 270.02,355.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,354.65 269.26,354.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.72,354.65 270.72,355.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,355.54 270.02,355.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,355.79 269.26,355.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.72,369.4 270.72,370.29" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,370.29 270.72,370.29" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,355.54 270.02,355.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,355.79 269.26,355.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="268.5,369.3 269.26,369.3" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,369.3 269.26,369.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,369.4 270.72,369.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.72,339.89 270.72,340.78" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.5,340.88 269.26,340.88" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.5,370.38 269.26,370.38" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,340.78 269.26,340.88" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,340.78 270.02,340.78" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,339.89 270.72,339.89" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,326.03 269.26,326.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,370.29 269.26,370.38" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,340.78 270.72,340.78" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,340.78 269.26,347.52" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,325.05 269.26,325.14" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.5,326.13 268.5,325.05" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.5,326.13 269.26,326.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.5,339.8 269.26,339.8" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.5,326.13 268.5,325.05" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.5,325.05 269.26,325.05" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,326.03 270.72,326.03" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,311.54 270.02,311.38" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.72,325.14 270.72,326.03" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,325.14 270.72,325.14" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,310.39 270.72,310.39" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,311.28 270.72,311.28" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.5,311.38 269.26,311.38" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,311.28 269.26,311.38" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,310.3 269.26,310.39" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.72,310.39 270.72,311.28" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,296.53 270.72,296.53" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,295.64 270.72,295.64" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.5,310.3 269.26,310.3" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.72,295.64 270.72,296.53" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,295.54 269.26,295.64" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.5,281.87 268.5,280.79" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.5,281.87 268.5,280.79" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.5,296.63 269.26,296.63" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,280.79 269.26,280.89" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.5,295.54 269.26,295.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,296.53 269.26,296.63" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,281.78 269.26,281.87" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.5,281.87 268.5,280.79" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.5,281.87 269.26,281.87" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.5,281.87 268.5,280.79" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.5,281.87 268.5,280.79" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.5,281.87 268.5,280.79" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.5,280.79 268.5,281.87" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,281.78 270.72,281.78" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.5,280.79 269.26,280.79" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.5,281.87 268.5,280.79" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.72,280.89 270.72,281.78" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,391.4 269.26,391.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,391.4 270.02,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,280.89 270.72,280.89" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.55,385.29 269.55,391.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,391.78 269.26,391.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.5,281.87 268.5,280.79" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.73,385.29 269.73,391.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.23,392.67 269.61,392.67" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,391.4 269.26,385.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.75,391.78 269.26,391.78" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,391.4 270.02,385.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.61,392.67 269.61,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.01,392.16 285.47,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.23,392.67 269.23,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.75,392.16 269.23,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="276.38,392.16 270,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="277.27,392.16 277.27,391.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="277.53,392.16 277.27,392.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="276.38,391.4 276.38,392.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="276.13,391.87 270.02,391.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="277.27,391.4 277.27,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="276.38,392.16 276.13,392.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="276.38,392.16 276.38,391.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="277.53,391.4 277.53,392.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="277.27,391.4 277.53,391.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="276.13,392.16 276.13,391.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="277.27,392.16 284.01,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="276.13,391.4 276.38,391.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="283.76,391.88 277.53,391.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="283.76,392.16 283.76,391.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.01,392.16 283.76,392.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="277.27,391.4 284.01,391.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="283.76,391.4 284.01,391.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="276.38,392.16 276.38,390.7" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="283.76,391.68 277.53,391.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="276.13,391.69 270.02,391.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="277.4,392.9 277.4,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.01,391.4 284.01,392.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="277.27,390.7 276.38,390.7" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.72,390.7 285.47,390.7" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270,391.4 276.38,391.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.5,267.12 268.5,266.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.01,392.16 284.01,390.7" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="277.27,392.16 277.27,390.7" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,267.03 270.72,267.03" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.5,267.12 268.5,266.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.75,391.78 268.75,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.5,267.12 268.5,266.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,266.14 270.72,266.14" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,392.16 269.61,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.72,266.14 270.72,267.03" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.5,266.04 269.26,266.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,266.04 269.26,266.14" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.5,266.04 268.5,267.12" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.5,267.12 268.5,266.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.5,267.12 268.5,266.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.5,267.12 268.5,266.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,267.03 269.26,267.12" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.02,267.03 270.02,267.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="268.5,267.12 268.5,266.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.5,267.12 269.26,267.12" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,267.28 269.26,267.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="268.5,267.12 268.5,266.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.5,267.12 268.5,266.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,385.04 269.26,385.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,384.15 270.72,384.15" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.5,385.13 269.26,385.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,267.03 270.02,267.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,384.05 269.26,384.15" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,385.04 270.72,385.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,385.04 270.02,385.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,267.28 269.26,267.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,384.15 269.26,384.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,385.29 269.26,385.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="269.26,384.15 269.26,383.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,385.29 269.26,385.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.72,384.15 270.72,385.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.26,383.89 270.02,383.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,383.89 270.02,384.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="270.02,385.04 270.02,385.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="268.5,310.3 268.5,311.38" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.5,384.05 269.26,384.05" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.5,354.55 268.5,355.63" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.5,295.54 268.5,296.63" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="271.52,413.33 271.52,414.86" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.5,369.3 268.5,370.38" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="301.08,431.84 301.08,449.67" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="302.9,441.28 302.9,449.67" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.5,384.05 268.5,385.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="268.5,339.8 268.5,340.88" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="301.85,441.28 302.9,441.28" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="303.41,440.77 303.41,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="301.85,441.28 301.85,449.67" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="301.85,440.77 303.41,440.77" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="301.85,432.6 301.85,434" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="301.85,432.6 304.64,432.6" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="331.08,431.84 331.08,433.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="314.29,432.6 314.29,436.41" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="315.06,432.6 323.45,432.6" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="301.08,431.84 331.08,431.84" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="315.06,432.6 315.06,435.65" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="323.45,432.6 323.45,435.65" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="315.06,435.65 323.45,435.65" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="324.21,432.6 324.21,440.23" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="330.32,432.6 330.32,433.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="323.43,444.12 322.66,444.12" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="314.29,436.41 323.45,436.41" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="324.21,440.99 324.72,440.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="324.21,440.23 324.72,440.23" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="323.45,436.41 323.45,444.93" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="324.21,432.6 330.32,432.6" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="324.21,440.99 324.21,444.93" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="319.61,444.12 318.09,444.12" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="318.85,436.49 318.85,444.05" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="322.76,441.07 321.79,441.19 320.91,441.62 320.22,442.29 319.77,443.16 319.61,444.12" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="322.66,444.12 322.66,441.07" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="323.45,444.93 324.21,444.93" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="314.21,444.12 315.03,444.12" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="318.18,441.07 317.21,441.19 316.34,441.62 315.64,442.29 315.19,443.16 315.03,444.12" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="318.09,444.12 318.09,441.07" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="330.32,440.99 330.32,450.97" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="314.27,436.49 314.27,444.05" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="301.85,434.25 304.9,434.25" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="304.64,432.6 304.64,434" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="301.85,434 304.64,434" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="304.9,432.6 304.9,434.25" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="301.85,434.25 301.85,440.77" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="330.58,450.97 330.58,451.98" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="330.32,438.49 330.32,440.23" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="330.32,450.97 330.58,450.97" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="304.9,432.6 314.29,432.6" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="330.32,433.4 331.08,433.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="331.08,438.49 331.08,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="482.11,251.31 482.94,251.31" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="482.18,258.94 482.18,251.38" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="482.94,251.31 483.1,252.27 483.55,253.13 484.24,253.81 485.12,254.24 486.08,254.36" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="485.99,251.31 485.99,254.36" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="330.32,433.66 325.74,433.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="330.32,438.49 331.08,438.49" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="487.52,251.31 485.99,251.31" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="325.74,433.52 325.87,434.73 326.31,435.87 327.03,436.85 327.99,437.6 329.11,438.07 330.32,438.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="486.76,258.94 486.76,251.38" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="330.32,438.49 331.08,438.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="491.33,251.31 490.57,251.31" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="330.32,433.8 325.75,433.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="487.52,251.31 487.67,252.27 488.12,253.13 488.82,253.81 489.7,254.24 490.66,254.36" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="490.57,251.31 490.57,254.36" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="330.32,433.66 330.32,433.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="330.32,433.8 330.32,433.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="331.08,438.49 331.08,438.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="331.08,438.23 330.32,438.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="330.32,433.66 331.08,433.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="331.08,433.66 331.08,433.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="330.32,438.23 330.32,438.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="331.08,433.4 330.32,433.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="330.32,433.4 330.32,433.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="329.81,440.23 330.32,440.23" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="329.81,440.99 330.32,440.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="324.72,440.99 324.72,440.23" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="329.55,440.99 329.55,445.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="324.98,440.99 325.14,442.2 325.61,443.32 326.37,444.28 327.34,445 328.48,445.44 329.69,445.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="329.81,440.99 329.81,440.23" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="329.55,440.99 329.41,440.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="324.98,440.23 324.72,440.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="329.41,440.99 329.41,440.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="329.41,440.99 329.41,445.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="324.98,440.99 324.98,440.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="324.72,440.99 324.98,440.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="329.55,440.99 329.81,440.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="329.81,440.23 329.55,440.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="324.72,440.23 324.72,440.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="312,452.5 306.9,452.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="329.81,440.99 329.81,440.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="321.14,439.98 321.47,439.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="322.43,436.49 322.43,437.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="322.04,438.81 321.94,438.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="329.55,440.23 329.55,440.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="322.43,437.33 322.21,437.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="321.47,439.9 321.78,439.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="321.78,439.64 321.97,439.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="321.97,439.27 322.04,438.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="322.21,437.38 321.96,437.55 321.86,437.83 321.94,438.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="320.34,438.12 320.42,437.83 320.31,437.55 320.06,437.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="320.34,438.12 320.23,438.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="319.85,436.49 322.43,436.49" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="319.85,437.33 320.06,437.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="319.85,436.49 319.85,437.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="320.8,439.9 321.14,439.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="320.23,438.81 320.31,439.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="320.5,439.64 320.8,439.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="320.31,439.27 320.5,439.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="317.39,439.27 317.46,438.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="316.56,439.98 316.89,439.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="316.89,439.9 317.2,439.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="317.2,439.64 317.39,439.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="317.85,437.33 317.64,437.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="317.85,436.49 317.85,437.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="317.46,438.81 317.36,438.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="317.64,437.38 317.39,437.55 317.28,437.83 317.36,438.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="315.27,436.49 315.27,437.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="315.27,436.49 317.85,436.49" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="315.66,438.81 315.73,439.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="316.23,439.9 316.56,439.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="315.92,439.64 316.23,439.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="315.76,438.12 315.84,437.83 315.73,437.55 315.48,437.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="315.76,438.12 315.66,438.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="315.27,437.33 315.48,437.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="311.53,432.79 311.53,433.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="315.73,439.27 315.92,439.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="311.53,433.95 312.05,433.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="312.05,433.95 312.5,434.34" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="318.35,251.86 319.88,251.86" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="312.82,434.34 313.34,433.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="313.86,432.79 311.53,432.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="312.5,434.34 312.82,434.34" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="308.92,433.95 309.38,434.34" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="313.86,433.95 313.34,433.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="313.86,432.79 313.86,433.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="308.41,432.79 308.41,433.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="319.79,254.91 320.75,254.78 321.63,254.36 322.33,253.68 322.78,252.82 322.93,251.86" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="319.88,251.86 319.88,254.91" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="308.41,433.95 308.92,433.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="319.12,259.02 319.12,251.92" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="315.21,254.91 316.18,254.78 317.05,254.36 317.75,253.68 318.2,252.82 318.35,251.86" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="315.3,251.86 315.3,254.91" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="323.67,251.86 322.93,251.86" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="309.7,434.34 310.22,433.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="310.73,433.95 310.22,433.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="309.38,434.34 309.7,434.34" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="310.73,432.79 310.73,433.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="305.39,433.95 305.91,433.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="305.39,432.79 305.39,433.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="305.91,433.95 306.36,434.34" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="307.72,433.95 307.2,433.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="314.52,251.86 315.3,251.86" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="310.73,432.79 308.41,432.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="306.68,434.34 307.2,433.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="305.54,444 305.54,442.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="307.72,432.79 305.39,432.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="307.72,432.79 307.72,433.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="305.28,441.8 303.6,441.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="306.36,434.34 306.68,434.34" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="303.6,444.26 305.28,444.26" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="305.22,443.8 305.22,442.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="303.6,441.8 303.6,444.26" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="304.18,442.25 304.18,443.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="305.09,442.12 304.31,442.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="304.31,442.12 304.22,442.16 304.18,442.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="305.22,442.25 305.18,442.16 305.09,442.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="305.28,444.26 305.47,444.18 305.54,444" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="304.31,443.93 305.09,443.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="305.58,447.49 305.58,445.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="305.09,443.93 305.18,443.89 305.22,443.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="305.54,442.06 305.47,441.88 305.28,441.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="303.64,447.75 305.32,447.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="303.64,445.3 303.64,447.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="304.18,443.8 304.22,443.89 304.31,443.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="305.32,445.3 303.64,445.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="305.26,447.3 305.26,445.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="304.22,445.75 304.22,447.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="498.23,444.21 497.46,444.21" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="305.13,445.62 304.35,445.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="305.13,447.43 305.22,447.39 305.26,447.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="304.35,447.43 305.13,447.43" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="305.26,445.75 305.22,445.66 305.13,445.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="493.65,436.58 493.65,444.15" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="494.41,444.21 492.89,444.21" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="497.46,444.21 497.31,443.25 496.86,442.39 496.16,441.71 495.29,441.29 494.32,441.16" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="494.41,444.21 494.41,441.16" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="304.35,445.62 304.26,445.66 304.22,445.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="305.32,447.75 305.5,447.68 305.58,447.49" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="304.22,447.3 304.26,447.39 304.35,447.43" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="489.07,436.58 489.07,444.15" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="489.83,444.21 488.31,444.21" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="473.45,247.94 473.45,249.87" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="305.58,445.56 305.5,445.37 305.32,445.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="473.19,250.13 471.52,250.13" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="492.89,444.21 492.73,443.25 492.28,442.39 491.58,441.71 490.71,441.29 489.74,441.16" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="489.83,444.21 489.83,441.16" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="488.31,444.21 488.15,443.25 487.7,442.39 487.01,441.71 486.13,441.29 485.17,441.16" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="485.26,444.21 485.26,441.16" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="484.49,436.58 484.49,444.15" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="471.52,247.68 473.19,247.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="471.52,250.13 471.52,247.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="484.43,444.21 485.26,444.21" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="472.1,249.68 472.1,248.13" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="473.13,248.13 473.13,249.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="472.23,248 473,248" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="473,249.81 472.23,249.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="473,249.81 473.09,249.77 473.13,249.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="473.45,247.94 473.38,247.75 473.19,247.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="473.13,248.13 473.09,248.04 473,248" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="473.19,250.13 473.38,250.06 473.45,249.87" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="472.1,249.68 472.13,249.77 472.23,249.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="473.16,253.63 471.48,253.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="472.23,248 472.13,248.04 472.1,248.13" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="473.42,251.43 473.42,253.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="471.48,251.17 473.16,251.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="472.06,253.18 472.06,251.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="471.48,253.63 471.48,251.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="472.19,251.5 472.96,251.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="473.09,251.63 473.09,253.18" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="472.96,253.31 472.19,253.31" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="473.09,251.63 473.06,251.54 472.96,251.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="472.96,253.31 473.06,253.27 473.09,253.18" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="472.06,253.18 472.1,253.27 472.19,253.31" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="472.19,251.5 472.1,251.54 472.06,251.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="473.16,253.63 473.34,253.55 473.42,253.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="473.42,251.43 473.34,251.25 473.16,251.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="473.3,262.64 473.3,261.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="473.3,261.48 473.82,261.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="473.82,261.48 474.27,261.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="475.62,262.64 473.3,262.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="475.62,261.48 475.11,261.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="475.62,262.64 475.62,261.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="474.59,261.09 475.11,261.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="476.83,261.48 477.28,261.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="474.27,261.09 474.59,261.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="477.61,261.09 478.12,261.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="476.31,262.64 476.31,261.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="478.64,261.48 478.12,261.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="476.31,261.48 476.83,261.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="478.64,262.64 478.64,261.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="478.64,262.64 476.31,262.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="477.28,261.09 477.61,261.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="479.44,261.48 479.96,261.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="479.96,261.48 480.41,261.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="479.44,262.64 479.44,261.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="481.77,261.48 481.25,261.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="480.73,261.09 481.25,261.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="481.77,262.64 481.77,261.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="480.41,261.09 480.73,261.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="484.8,255.53 484.47,255.45" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="481.77,262.64 479.44,262.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="485.3,256.16 485.11,255.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="485.11,255.79 484.8,255.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="485.37,256.62 485.3,256.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="485.76,258.1 485.54,258.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="485.27,257.31 485.37,256.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="485.76,258.94 485.76,258.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="483.39,258.05 483.64,257.88 483.75,257.6 483.67,257.31" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="485.27,257.31 485.19,257.6 485.29,257.88 485.54,258.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="483.18,258.94 485.76,258.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="483.18,258.1 483.39,258.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="483.63,256.16 483.56,256.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="483.18,258.94 483.18,258.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="483.83,255.79 483.63,256.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="483.56,256.62 483.67,257.31" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="489.38,255.53 489.05,255.45" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="484.47,255.45 484.13,255.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="484.13,255.53 483.83,255.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="489.68,255.79 489.38,255.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="489.85,257.31 489.95,256.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="489.95,256.62 489.88,256.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="490.34,258.94 490.34,258.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="489.88,256.16 489.68,255.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="489.85,257.31 489.77,257.6 489.87,257.88 490.12,258.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="487.97,258.05 488.22,257.88 488.32,257.6 488.25,257.31" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="490.34,258.1 490.12,258.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="487.75,258.94 490.34,258.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="487.75,258.94 487.75,258.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="487.75,258.1 487.97,258.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="488.21,256.16 488.14,256.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="488.14,256.62 488.25,257.31" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="488.41,255.79 488.21,256.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="497.72,256.73 497.46,256.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="488.71,255.53 488.41,255.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="497.46,256.73 497.46,255.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="489.05,255.45 488.71,255.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="497.46,255.96 497.72,255.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="492.63,256.73 492.63,255.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="492.88,256.73 492.63,256.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="497.72,255.96 497.72,256.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="492.63,255.96 492.88,255.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="492.88,255.96 492.88,256.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="497.46,255.96 497.46,251.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="497.46,255.96 497.32,255.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="497.6,251.39 496.39,251.51 495.25,251.96 494.27,252.68 493.52,253.64 493.04,254.76 492.88,255.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="497.32,255.96 497.32,251.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="492.63,255.96 492.63,256.73" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="497.32,255.96 497.32,255.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="497.72,255.96 498.22,255.96" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="497.72,255.96 497.72,256.73" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="498.99,263.59 498.99,245.76" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="497.72,256.73 498.22,256.73" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="498.22,262.83 498.22,256.73" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="472.81,262.83 482.2,262.83" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="469.72,261.18 472.81,261.18" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="472.55,262.83 472.55,261.43" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="469.72,261.18 469.72,254.12" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="472.81,262.83 472.81,261.18" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="498.22,255.96 498.22,245.76" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="492.12,255.96 492.12,250.5" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="469.72,261.43 472.55,261.43" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="492.12,255.96 492.63,255.96" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="491.36,250.5 492.12,250.5" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="492.12,256.73 492.63,256.73" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="492.12,262.83 492.63,262.83" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="491.36,259.02 491.36,250.5" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="482.96,262.83 491.36,262.83" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="491.36,262.83 491.36,259.78" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="482.2,259.02 491.36,259.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="492.12,262.83 492.12,256.73" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="482.96,259.78 491.36,259.78" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="469.72,262.83 472.55,262.83" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="482.96,262.83 482.96,259.78" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="482.2,262.83 482.2,259.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="469.72,262.83 469.72,261.43" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="471.28,254.12 471.28,245.98" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="468.99,263.59 492.63,263.59" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="469.72,245.98 471.28,245.98" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="468.96,263.59 468.96,243.25" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.95,243.25 468.96,243.25" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="469.72,246.49 470.77,246.49" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="469.72,254.12 471.28,254.12" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.95,244.01 469.72,244.01" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="469.72,253.61 469.72,246.49" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="470.77,253.61 470.77,246.49" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="469.72,253.61 470.77,253.61" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="497.72,263.59 498.99,263.59" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="497.72,262.83 497.72,263.59" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="469.72,245.98 469.72,244.01" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="492.63,262.83 492.63,263.59" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="497.72,262.83 498.22,262.83" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="497.32,262.83 497.32,258.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="497.46,262.83 497.46,258.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="497.6,258.26 496.39,258.38 495.25,258.82 494.27,259.55 493.52,260.5 493.04,261.62 492.88,262.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="497.46,262.83 497.32,262.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="492.88,262.83 492.63,262.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="497.32,262.83 497.32,262.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="492.63,263.59 492.88,263.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="492.63,262.83 492.63,263.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="497.72,262.83 497.46,262.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="492.88,263.59 492.88,262.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="497.46,263.59 497.72,263.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="497.46,262.83 497.46,263.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="342.35,215.08 347.64,215.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="347.64,215.08 347.64,221.1" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="340.19,215.08 340.19,221.86" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="497.72,263.59 497.72,262.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="340.95,215.08 340.95,221.1" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="348.4,221.86 340.19,221.86" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="342.35,214.32 348.4,214.32" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="347.64,221.1 340.95,221.1" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="313.75,251.77 313.75,254.12" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="314.52,251.77 314.52,259.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="348.4,214.32 348.4,221.86" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="302.04,254.63 313.75,254.63" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="313.75,254.63 313.75,255.14" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="302.04,254.12 313.75,254.12" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="313.75,255.9 313.75,260.8" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="302.04,254.12 302.04,245.76" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="314.52,262.83 323.67,262.83" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="323.67,251.77 323.67,259.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="314.52,259.78 314.52,262.83" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="331.3,243.69 331.3,257.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="330.54,244.46 330.54,254.44" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="324.44,251.77 324.44,254.44" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="324.44,255.2 324.44,262.83" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="313.75,251.77 314.52,251.77" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="324.44,254.44 324.94,254.44" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="324.44,255.2 324.94,255.2" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="323.67,259.78 323.67,262.83" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="324.44,262.83 330.54,262.83" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="330.03,254.44 330.54,254.44" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="330.54,255.2 330.54,257.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="330.03,254.44 330.03,255.2" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="330.03,255.2 330.54,255.2" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="329.63,254.44 329.63,249.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="329.78,254.44 329.78,249.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="329.63,254.44 329.63,254.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="324.94,254.44 324.94,255.2" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="324.94,254.44 324.94,255.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="329.91,249.86 328.7,249.99 327.57,250.43 326.59,251.15 325.83,252.11 325.36,253.23 325.2,254.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="329.78,254.44 329.63,254.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="325.2,254.44 324.94,254.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="324.94,255.2 325.2,255.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="325.2,255.2 325.2,254.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="330.03,254.44 329.78,254.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="329.78,254.44 329.78,255.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="330.03,255.2 330.03,254.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="329.78,255.2 330.03,255.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="331.3,262.49 331.3,263.59" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="330.54,262.49 330.54,262.83" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="330.54,262.49 331.3,262.49" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="330.54,262.23 325.96,262.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="330.54,257.66 329.33,257.82 328.21,258.29 327.25,259.04 326.53,260.02 326.09,261.16 325.96,262.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="330.54,257.4 331.3,257.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="331.3,257.66 331.3,257.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="330.54,262.09 325.97,262.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="330.54,262.09 330.54,262.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="331.3,257.4 330.54,257.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="330.54,262.23 330.54,262.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="330.54,257.66 331.3,257.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="330.54,257.4 330.54,257.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="331.3,262.23 330.54,262.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="331.3,262.49 331.3,262.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="330.54,262.23 330.54,262.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="316.83,255.46 316.49,255.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="330.54,262.49 331.3,262.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="323.67,251.77 324.44,251.77" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="316,256.17 315.92,256.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="316.49,255.55 316.19,255.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="316.19,255.8 316,256.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="315.92,256.63 316.03,257.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="315.54,258.96 315.54,258.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="315.54,258.12 315.75,258.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="315.75,258.07 316,257.9 316.11,257.62 316.03,257.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="317.63,257.33 317.55,257.62 317.65,257.9 317.9,258.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="318.12,258.96 315.54,258.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="318.12,258.12 317.9,258.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="317.73,256.63 317.66,256.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="318.12,258.96 318.12,258.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="317.63,257.33 317.73,256.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="321.41,255.46 321.07,255.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="317.66,256.17 317.47,255.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="321.07,255.55 320.77,255.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="317.47,255.8 317.16,255.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="317.16,255.55 316.83,255.46" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="320.57,256.17 320.5,256.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="320.11,258.96 320.11,258.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="320.77,255.8 320.57,256.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="320.5,256.63 320.61,257.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="320.11,258.12 320.33,258.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="320.33,258.07 320.58,257.9 320.68,257.62 320.61,257.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="322.21,257.33 322.13,257.62 322.23,257.9 322.48,258.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="322.7,258.96 322.7,258.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="322.7,258.96 320.11,258.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="322.7,258.12 322.48,258.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="322.31,256.63 322.24,256.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="322.05,255.8 321.74,255.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="322.21,257.33 322.31,256.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="322.24,256.17 322.05,255.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="310.84,252.15 308.9,252.15" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="321.74,255.55 321.41,255.46" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="308.64,254.09 311.09,254.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="310.64,252.47 309.09,252.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="308.64,252.41 308.64,254.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="311.09,254.09 311.09,252.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="310.77,253.38 310.77,252.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="310.77,252.6 310.73,252.51 310.64,252.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="309.09,253.51 310.64,253.51" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="308.96,253.38 309,253.47 309.09,253.51" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="308.96,252.6 308.96,253.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="310.64,253.51 310.73,253.47 310.77,253.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="309.09,252.47 309,252.51 308.96,252.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="311.09,252.41 311.02,252.22 310.84,252.15" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="306.93,252.07 304.99,252.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="304.73,254.01 307.19,254.01" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="308.9,252.15 308.72,252.22 308.64,252.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="304.73,252.33 304.73,254.01" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="307.19,254.01 307.19,252.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="306.87,253.3 306.87,252.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="306.74,252.39 305.19,252.39" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="305.06,252.52 305.06,253.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="305.19,253.43 306.74,253.43" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="306.87,252.52 306.83,252.43 306.74,252.39" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="305.19,252.39 305.1,252.43 305.06,252.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="307.19,252.33 307.11,252.14 306.93,252.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="305.06,253.3 305.1,253.39 305.19,253.43" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="306.74,253.43 306.83,253.39 306.87,253.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="309.94,261.05 313.75,261.05" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="304.99,252.07 304.81,252.14 304.73,252.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="309.68,260.8 313.75,260.8" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="313.75,261.05 313.75,262.83" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="309.94,261.05 309.94,262.83" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="309.68,260.8 309.68,262.83" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="309.94,262.83 313.75,262.83" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="484.45,436.54 498.32,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.08,431.96 499.08,449.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="469.69,432.73 470.2,432.73" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="498.22,432.73 498.22,435.78" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="485.21,435.78 498.22,435.78" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="485.21,432.73 485.21,435.78" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="477.57,432.73 477.57,434.12" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="468.93,431.96 470.2,431.96" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="484.45,432.73 484.45,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="477.06,432.73 477.06,443.41" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="475.79,443.92 477.57,443.92" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="476.55,432.73 476.55,443.41" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="475.79,432.73 475.79,440.36" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="485.21,432.73 498.22,432.73" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="476.55,432.73 477.06,432.73" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="476.55,443.41 477.06,443.41" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="468.93,451.99 468.93,431.96" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="477.57,432.73 480.36,432.73" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="469.44,451.99 469.44,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="469.69,451.13 469.69,441.12" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="387.25,256.17 388.88,259.58" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="388.88,259.58 388.06,260.63" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="388.06,260.63 390.71,260.68" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="390.71,260.68 389.9,261.72" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="389.9,261.72 391.39,264.85" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="469.44,451.13 469.69,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="498.32,436.54 498.32,449.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="469.69,441.12 470.2,441.12" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="469.69,440.36 469.69,432.73" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="469.69,440.36 470.2,440.36" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="475.79,441.12 475.79,443.92" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.27,439.99 496.58,439.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="495.94,440.08 496.27,439.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="496.58,439.74 496.77,439.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="496.77,439.37 496.84,438.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="496.84,438.91 496.74,438.21" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="497.23,436.58 497.23,437.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="497.23,437.42 497.02,437.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="497.02,437.47 496.76,437.64 496.66,437.92 496.74,438.21" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="494.65,436.58 497.23,436.58" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="495.14,438.21 495.22,437.92 495.11,437.64 494.86,437.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="494.65,437.42 494.86,437.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="494.65,436.58 494.65,437.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="495.03,438.91 495.11,439.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="495.3,439.74 495.61,439.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="495.14,438.21 495.03,438.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="495.11,439.37 495.3,439.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="491.36,440.08 491.69,439.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="495.61,439.99 495.94,440.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="492,439.74 492.19,439.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="491.69,439.99 492,439.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="492.27,438.91 492.16,438.21" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="492.65,437.42 492.44,437.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="492.19,439.37 492.27,438.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="492.65,436.58 492.65,437.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="492.44,437.47 492.19,437.64 492.08,437.92 492.16,438.21" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="490.07,436.58 492.65,436.58" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="490.56,438.21 490.64,437.92 490.53,437.64 490.28,437.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="490.07,436.58 490.07,437.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="490.07,437.42 490.28,437.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="490.56,438.21 490.46,438.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="490.53,439.37 490.72,439.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="490.46,438.91 490.53,439.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="490.72,439.74 491.03,439.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="487.12,439.99 487.42,439.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="491.03,439.99 491.36,440.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="486.78,440.08 487.12,439.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="487.62,439.37 487.69,438.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="488.07,436.58 488.07,437.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="487.42,439.74 487.62,439.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="487.69,438.91 487.58,438.21" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="487.86,437.47 487.61,437.64 487.5,437.92 487.58,438.21" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="485.49,436.58 488.07,436.58" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="488.07,437.42 487.86,437.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="485.49,436.58 485.49,437.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="485.98,438.21 486.06,437.92 485.96,437.64 485.71,437.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="485.49,437.42 485.71,437.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="485.98,438.21 485.88,438.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="485.88,438.91 485.95,439.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="486.14,439.74 486.45,439.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="477.57,434.12 480.36,434.12" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="485.95,439.37 486.14,439.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="477.57,434.38 480.62,434.38" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="486.45,439.99 486.78,440.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="480.36,432.73 480.36,434.12" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="477.57,434.38 477.57,443.92" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="480.62,432.73 484.45,432.73" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="480.62,432.73 480.62,434.38" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="479.54,438.47 479.54,436.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="479.29,436.27 477.61,436.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="479.22,438.27 479.22,436.72" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="477.61,436.27 477.61,438.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="478.32,438.4 479.09,438.4" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="477.61,438.73 479.29,438.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="478.19,436.72 478.19,438.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="479.09,438.4 479.18,438.37 479.22,438.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="479.09,436.6 478.32,436.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="479.22,436.72 479.18,436.63 479.09,436.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="479.29,438.73 479.47,438.65 479.54,438.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="478.32,436.6 478.23,436.63 478.19,436.72" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="478.19,438.27 478.23,438.37 478.32,438.4" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="479.54,442.01 479.54,440.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="477.6,439.82 477.6,442.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="479.54,436.53 479.47,436.35 479.29,436.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="477.6,442.27 479.28,442.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="479.28,439.82 477.6,439.82" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="479.21,441.82 479.21,440.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="478.31,441.95 479.09,441.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="478.18,440.27 478.18,441.82" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="479.09,441.95 479.18,441.91 479.21,441.82" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="479.09,440.14 478.31,440.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="478.31,440.14 478.22,440.18 478.18,440.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="479.21,440.27 479.18,440.18 479.09,440.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="478.18,441.82 478.22,441.91 478.31,441.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="479.28,442.27 479.46,442.2 479.54,442.01" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="475.28,432.73 475.79,432.73" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="479.54,440.08 479.46,439.89 479.28,439.82" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="475.28,432.73 475.28,431.96" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="475.28,431.96 499.08,431.96" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="470.2,432.73 470.2,431.96" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="470.45,432.73 470.45,437.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="470.31,437.3 471.52,437.18 472.66,436.73 473.64,436.01 474.39,435.05 474.87,433.93 475.03,432.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="470.59,432.73 470.59,437.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="470.59,432.73 470.59,432.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="470.45,432.73 470.59,432.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="475.28,432.73 475.28,431.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="475.28,431.96 475.03,431.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="475.03,432.73 475.28,432.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="475.03,431.96 475.03,432.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="470.45,432.73 470.45,431.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="470.2,432.73 470.45,432.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="470.2,431.96 470.2,432.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="475.28,441.12 475.79,441.12" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="470.45,431.96 470.2,431.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="475.28,441.12 475.28,440.36" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="475.28,440.36 475.79,440.36" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="470.31,445.69 471.52,445.57 472.66,445.13 473.64,444.4 474.39,443.45 474.87,442.33 475.03,441.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="470.2,441.12 470.2,440.36" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="470.59,441.12 470.59,445.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="470.45,441.12 470.45,445.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="470.45,441.12 470.59,441.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="470.59,441.12 470.59,441.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="475.03,441.12 475.28,441.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="475.28,441.12 475.28,440.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="475.28,440.36 475.03,440.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="475.03,440.36 475.03,441.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="470.2,441.12 470.45,441.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="470.45,440.36 470.2,440.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="286.27,390.89 286.27,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="470.45,441.12 470.45,440.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="470.2,440.36 470.2,441.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="286.27,393.05 288.44,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="286.27,390.89 288.44,390.89" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="288.44,390.89 288.44,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="346.36,330.99 346.36,334.93" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="336.18,330.99 346.36,330.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="336.95,331.76 345.59,331.76" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="336.18,330.99 336.18,334.93" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="336.95,331.76 336.95,334.17" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="336.18,334.93 346.36,334.93" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="384.76,331.76 384.76,334.17" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="336.95,334.17 345.59,334.17" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="376.11,334.17 384.76,334.17" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="345.59,331.76 345.59,334.17" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="375.35,334.93 385.52,334.93" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="376.11,331.76 376.11,334.17" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="375.35,330.99 385.52,330.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="376.11,331.76 384.76,331.76" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="375.35,330.99 375.35,334.93" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="385.52,330.99 385.52,334.93" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="379.36,331.88 379.36,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="381.52,331.88 381.52,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="379.36,331.88 381.52,331.88" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="379.36,334.04 381.52,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="414.52,330.99 414.52,334.93" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="424.69,330.99 424.69,334.93" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="414.52,334.93 424.69,334.93" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="414.52,330.99 424.69,330.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="415.28,331.76 415.28,334.17" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="415.28,331.76 423.93,331.76" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="415.28,334.17 423.93,334.17" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="423.93,331.76 423.93,334.17" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="454.45,331.76 454.45,334.17" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="463.09,331.76 463.09,334.17" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="453.68,334.93 463.86,334.93" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="454.45,334.17 463.09,334.17" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="454.45,331.76 463.09,331.76" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="453.68,330.99 453.68,334.93" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.52,331.88 420.68,331.88" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="453.68,330.99 463.86,330.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.52,334.04 420.68,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="463.86,330.99 463.86,334.93" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="420.68,331.88 420.68,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.52,331.88 418.52,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.52,331.88 420.68,331.88" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="420.68,331.88 420.68,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.52,331.88 418.52,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.52,334.04 420.68,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.69,334.04 459.85,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.69,331.88 457.69,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.69,331.88 457.69,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="459.85,331.88 459.85,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="459.85,331.88 459.85,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.69,331.88 459.85,331.88" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="415.28,363.67 423.93,363.67" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.69,334.04 459.85,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.69,331.88 459.85,331.88" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="414.52,364.44 424.69,364.44" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="415.28,361.26 415.28,363.67" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="414.52,360.5 414.52,364.44" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="423.93,361.26 423.93,363.67" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="414.52,360.5 424.69,360.5" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="415.28,361.26 423.93,361.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="385.52,360.5 385.52,364.44" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="376.11,361.26 384.76,361.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="424.69,360.5 424.69,364.44" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="384.76,361.26 384.76,363.67" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="375.35,360.5 385.52,360.5" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="375.35,360.5 375.35,364.44" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="375.35,364.44 385.52,364.44" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="376.11,363.67 384.76,363.67" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="376.11,361.26 376.11,363.67" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="336.95,361.26 345.59,361.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="345.59,361.26 345.59,363.67" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="336.95,361.26 336.95,363.67" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="336.18,360.5 346.36,360.5" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="336.18,360.5 336.18,364.44" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="346.36,360.5 346.36,364.44" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="336.18,364.44 346.36,364.44" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="336.95,363.67 345.59,363.67" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="463.86,360.5 463.86,364.44" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="453.68,360.5 463.86,360.5" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="463.09,361.26 463.09,363.67" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="454.45,361.26 463.09,361.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="453.68,360.5 453.68,364.44" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="453.68,364.44 463.86,364.44" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="454.45,361.26 454.45,363.67" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,443.15 530.78,443.15" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="529.32,444.04 529.32,443.15" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="454.45,363.67 463.09,363.67" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.29,436.03 531.29,436.41" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,443.15 530.78,443.15" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,443.15 529.32,443.15" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,444.04 529.32,444.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.54,444.14 531.54,443.06" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.54,444.14 530.78,444.14" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.54,443.06 530.78,443.06" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,443.15 530.78,443.15" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,428.4 530.78,428.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.54,428.31 530.78,428.31" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.54,429.39 531.54,428.31" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.54,429.39 530.78,429.39" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,428.4 529.32,428.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,429.29 529.32,429.29" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.29,436.03 530.02,436.03" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.29,436.41 530.02,436.41" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,428.4 530.78,428.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,436.03 530.02,436.41" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,436.03 530.78,436.03" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,429.29 530.78,429.29" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,436.03 530.78,436.03" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="529.32,429.29 529.32,428.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,429.29 530.78,436.03" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,429.29 530.02,436.03" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.3,435.78 530.3,429.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.49,435.78 530.49,429.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,429.55 530.78,429.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,429.29 530.02,429.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,429.55 530.78,429.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,429.29 530.02,429.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,436.03 530.78,435.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,435.78 530.02,435.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,435.78 530.02,436.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,436.03 530.78,436.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,436.41 530.78,436.41" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,436.41 530.02,436.03" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,443.15 530.78,443.15" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,436.41 530.02,443.15" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.49,442.9 530.49,436.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,436.41 530.78,443.15" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.3,442.9 530.3,436.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,436.67 530.78,436.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,436.41 530.02,436.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,436.41 530.02,436.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,436.67 530.78,436.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,443.15 530.78,442.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,442.9 530.02,443.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,442.9 530.02,442.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,443.15 530.78,443.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="529.32,399.79 529.32,413.65" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,355.54 529.32,355.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="529.32,355.54 529.32,354.65" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,354.65 529.32,354.65" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.29,347.52 531.29,347.91" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,362.02 530.02,362.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,362.28 530.78,362.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,362.28 530.78,362.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,362.02 530.02,362.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,355.79 530.78,355.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,355.54 530.02,355.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,355.79 530.78,355.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,355.54 530.02,355.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.49,362.02 530.49,355.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.3,362.02 530.3,355.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,355.54 530.78,362.28" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,355.54 530.02,362.28" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,354.65 530.78,354.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,355.54 530.78,355.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,354.39 530.02,354.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,354.39 530.02,354.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,348.16 530.78,347.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,354.65 530.78,354.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,347.91 530.02,347.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,347.91 530.02,348.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,348.16 530.78,348.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.49,354.39 530.49,348.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,347.91 530.78,354.65" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.3,354.39 530.3,348.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,347.91 530.02,354.65" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,354.65 530.78,354.65" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,347.91 530.02,347.52" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,347.91 530.78,347.91" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,347.52 530.78,347.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,347.27 530.02,347.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,347.27 530.02,347.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,347.52 530.78,347.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,347.52 530.78,347.52" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,347.52 530.78,347.52" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,347.52 530.02,347.91" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,347.52 530.02,347.52" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.54,355.63 530.78,355.63" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.54,355.63 531.54,354.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.29,347.52 530.02,347.52" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.54,354.55 530.78,354.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,362.28 530.78,362.28" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.29,347.91 530.02,347.91" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,362.02 530.02,362.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,362.28 530.78,362.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,362.28 530.78,362.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,347.52 530.78,347.52" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,362.02 530.02,362.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,362.28 530.78,362.28" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="347.76,462.79 347.18,463.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="347.18,463.95 347.76,465.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="348.05,462.79 347.47,463.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="347.47,463.95 348.05,465.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="348.05,462.79 347.76,462.79" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="348.05,465.12 347.76,465.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <path d="M348.05 462.79L347.76 462.79 347.18 463.95 347.47 463.95 348.05 462.79Z" fill-rule="evenodd" fill="blue"/>
- <path d="M348.05 465.12L347.76 465.12 347.18 463.95 347.47 463.95 348.05 465.12Z" fill-rule="evenodd" fill="blue"/>
- <polyline points="353.34,463.95 347.16,463.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="530.78,347.52 530.78,347.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,347.27 530.02,347.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,347.52 530.78,347.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,347.27 530.02,347.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,340.78 529.32,340.78" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,347.52 530.78,347.52" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.29,333.15 530.02,333.15" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,339.89 529.32,339.89" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.29,332.77 530.02,332.77" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="529.32,340.78 529.32,339.89" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="341.7,466.79 342.93,464.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="342.93,464.2 342.12,463.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="342.12,463.15 344.77,463.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="344.77,463.1 343.95,462.06" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="343.95,462.06 344.5,460.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="531.54,339.8 530.78,339.8" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="343.32,466.79 344.14,465.06" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="344.14,465.06 343.32,464.01" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="343.32,464.01 345.98,463.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="345.98,463.96 345.16,462.92" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="345.16,462.92 346.16,460.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="531.54,340.88 530.78,340.88" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="531.54,340.88 531.54,339.8" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,332.77 530.02,332.77" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,332.77 530.78,332.77" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,332.77 530.02,333.15" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,332.77 530.78,332.77" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,333.15 530.78,333.15" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,333.15 530.02,332.77" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,339.89 530.78,339.89" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,333.15 530.02,339.89" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,333.15 530.78,339.89" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.3,339.64 530.3,333.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.49,339.64 530.49,333.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,333.41 530.78,333.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,333.15 530.02,333.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,333.15 530.02,333.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,333.41 530.78,333.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,339.64 530.02,339.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,339.89 530.78,339.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,339.89 530.78,339.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,339.64 530.02,339.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,340.78 530.78,340.78" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,340.78 530.02,347.52" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.49,347.27 530.49,341.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,340.78 530.78,347.52" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,341.04 530.78,340.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.3,347.27 530.3,341.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,340.78 530.02,341.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,340.78 530.02,340.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,347.52 530.78,347.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,341.04 530.78,341.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,347.27 530.02,347.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.02,347.27 530.02,347.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="531.29,332.77 531.29,333.15" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,347.52 530.78,347.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="483.57,360.37 475.94,360.37" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="529.32,355.54 529.32,362.21" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="476.7,363.55 475.94,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="483.57,361.13 476.7,361.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="484.59,332.96 496.86,332.96" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="483.57,331.95 496.86,331.95" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="498,340.02 498,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.86,332.96 484.59,350.19" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="484.59,332.96 497.3,350.19" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="504.3,393.02 504.2,393.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="504.3,391.65 504.3,390.89" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="529.32,347.6 529.32,354.65" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.02,302.38 499.02,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.02,303.76 528.52,303.76" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="530.02,303.19 528.52,303.19" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="529.32,252.28 529.32,266.14" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="508.94,245.76 522.8,245.76" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="301.02,303.73 299.73,303.73" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="271.52,303.1 270.72,303.1" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="301.02,303.16 299.73,303.16" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="312.78,303.33 303.18,317.45" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="271.52,303.67 270.72,303.67" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="303.18,303.33 312.78,317.45" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.72,362.32 270.72,369.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="366.49,139.15 367.41,137.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="367.41,137.22 366.8,136.43" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="366.8,136.43 368.79,136.4" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="368.79,136.4 368.17,135.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="368.17,135.61 369.31,133.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="365.02,139.18 366.17,136.78" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="366.17,136.78 365.56,135.99" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="365.56,135.99 367.55,135.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="367.55,135.95 366.94,135.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="366.94,135.17 367.86,133.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="301.78,257.4 301.78,255.9" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="301.02,257.4 301.02,245.76" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="301.78,257.4 301.02,257.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="301.78,261.98 301.02,261.98" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="301.78,261.73 305.85,261.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="305.85,261.85 305.74,260.77 305.35,259.76 304.7,258.89 303.85,258.22 302.86,257.8 301.78,257.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="301.78,261.6 305.85,261.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="301.78,261.6 301.78,261.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="301.78,261.73 301.78,261.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="301.78,257.66 301.78,257.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="301.78,257.4 301.02,257.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="301.02,257.4 301.02,257.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="301.02,257.66 301.78,257.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="301.78,261.98 301.78,261.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="301.78,261.73 301.02,261.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="301.02,261.73 301.02,261.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="301.02,261.98 301.78,261.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="529.32,326.03 529.32,347.6" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.02,380.75 499.02,390.89" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="490.96,381.64 490.96,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.02,380.75 497.05,380.75" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="515.76,449.67 522.8,449.67" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="340.19,243.38 349.91,243.38" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="340.19,243.38 340.19,234.98" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="340.95,242.61 340.95,235.75" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="340.95,242.61 349.15,242.61" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="349.15,242.61 349.15,235.75" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="349.91,243.38 349.91,234.98" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="340.95,235.75 349.15,235.75" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="340.19,234.98 349.91,234.98" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="342.35,215.08 342.35,221.12" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="347.63,215.08 346.08,216.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="342.35,215.08 343.79,216.72" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="342.29,235.75 342.29,242.61" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="349.15,235.75 347.27,237.63" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="342.29,235.75 344.34,237.8" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.75,235.75 457.75,242.61" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.75,235.75 455.34,237.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="448.6,235.75 450.54,237.2" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="397.34,260.53 398.67,260.35 399.9,259.8 400.92,258.93 401.66,257.8 402.04,256.51 402.04,255.17 401.66,253.88 400.92,252.75 399.9,251.88 398.67,251.33 397.34,251.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="397.46,260.53 393.89,260.53" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <path d="M394.78 261.69L394.48 261.69 393.9 260.53 394.19 260.53 394.78 261.69Z" fill-rule="evenodd" fill="blue"/>
- <path d="M394.78 259.36L394.48 259.36 393.9 260.53 394.19 260.53 394.78 259.36Z" fill-rule="evenodd" fill="blue"/>
- <polyline points="394.78,261.69 394.48,261.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="394.78,259.36 394.48,259.36" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="394.19,260.53 394.78,261.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="394.78,259.36 394.19,260.53" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="393.9,260.53 394.48,261.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="394.48,259.36 393.9,260.53" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="384.39,251.15 397.34,251.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="391.11,264.26 391.11,256.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="392.38,264.28 392.38,256.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="393.65,264.28 393.65,256.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="394.92,264.28 394.92,256.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="396.19,264.28 396.19,256.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="385.89,247.4 385.89,254.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="387.16,247.4 387.16,254.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="388.43,247.4 388.43,254.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="389.71,247.4 389.71,254.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="390.98,247.4 390.98,254.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="392.25,247.4 392.25,254.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="393.52,247.4 393.52,254.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="394.79,247.4 394.79,254.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="396.06,247.4 396.06,254.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="397.34,247.4 397.34,254.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="397.4,255.48 397.4,256.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="397.97,254.91 397.97,256.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="530.78,326.03 530.02,326.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="397.15,264.28 398.91,264.1 400.6,263.57 402.14,262.69 403.46,261.51 404.51,260.08 405.23,258.46 405.6,256.73 405.6,254.95 405.23,253.22 404.51,251.6 403.46,250.17 402.14,248.99 400.6,248.11 398.91,247.58 397.15,247.4" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="397.15,264.85 399.03,264.66 400.83,264.09 402.47,263.15 403.89,261.89 405,260.36 405.77,258.64 406.17,256.79 406.17,254.89 405.77,253.04 405,251.32 403.89,249.79 402.47,248.53 400.83,247.59 399.03,247.02 397.15,246.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="397.46,264.28 397.46,256.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="391.39,264.85 397.27,264.85" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="391.11,264.28 397.27,264.28" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="387.26,256.2 397.4,256.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="387.54,256.77 397.97,256.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="385.65,247.4 397.27,247.4" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="385.77,246.83 397.27,246.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="397.4,255.48 385.77,255.48" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="397.97,254.91 385.65,254.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="375.25,245.54 375.25,248.44" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="530.02,318.4 530.02,318.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="374.62,244.9 379.36,244.9" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="375.25,245.54 413.77,245.54" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="414.4,244.9 414.4,266.99" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="413.77,245.54 413.77,266.35" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="375.25,266.35 375.38,266.35" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="374.62,266.99 375.38,266.99" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="381.52,244.9 414.4,244.9" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="385.1,255.46 385.1,266.35" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="385.67,255.57 385.67,266.35" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="385.69,254.91 385.39,254.98 385.17,255.2 385.1,255.5" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="385.78,255.48 385.71,255.5 385.67,255.57" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="385.68,246.74 385.71,246.8 385.79,246.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="385.1,246.81 385.18,247.11 385.4,247.33 385.7,247.4" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="385.1,246.81 385.1,245.54" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="385.68,246.74 385.68,245.54" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="375.25,263.45 375.25,266.35" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="374.62,263.45 374.62,266.99" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="375.25,248.44 374.62,248.44" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="375.25,263.45 374.62,263.45" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="375.25,248.44 375.25,263.45" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="374.62,248.44 374.62,263.45" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="375.25,253.66 375.25,253.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="375.25,253.4 374.62,253.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="374.62,253.4 374.62,253.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="374.62,253.66 375.25,253.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="375.25,258.49 375.25,258.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="375.25,258.23 374.62,258.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="374.62,258.23 374.62,258.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="374.62,258.49 375.25,258.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="375.25,248.7 375.25,248.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="375.25,248.44 374.62,248.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="374.62,248.44 374.62,248.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="374.62,248.7 375.25,248.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="375.25,263.45 375.25,263.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="375.25,263.19 374.62,263.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="374.62,263.19 374.62,263.45" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="374.62,263.45 375.25,263.45" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="374.94,248.7 374.94,253.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="374.94,253.66 374.94,258.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="374.94,258.49 374.94,263.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="384.53,266.35 413.77,266.35" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="384.53,266.99 414.4,266.99" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="384.53,266.35 384.53,266.99" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="375.38,266.35 375.38,266.99" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="375.63,266.35 375.63,262.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="379.96,266.35 379.8,265.21 379.35,264.16 378.64,263.25 377.72,262.57 376.65,262.15 375.5,262.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="375.77,266.35 375.77,262.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="375.77,266.35 375.77,266.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="375.63,266.35 375.77,266.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="384.28,266.35 384.14,266.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="384.14,266.35 384.14,266.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="384.14,266.35 384.14,262.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="384.41,262.03 383.26,262.15 382.19,262.57 381.27,263.25 380.56,264.16 380.11,265.21 379.96,266.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="384.28,266.35 384.28,262.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="384.28,266.99 384.53,266.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="384.53,266.99 384.53,266.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="384.53,266.35 384.28,266.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="384.28,266.35 384.28,266.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="375.38,266.99 375.63,266.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="375.63,266.99 375.63,266.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="375.63,266.35 375.38,266.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="375.38,266.35 375.38,266.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="389.83,260.66 389.83,256.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="388.56,260.64 388.56,259.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="388.56,258.93 388.56,256.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="305.25,272.88 305.25,272.81" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="319.62,305.11 319.62,307.98" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="318.6,305.11 318.6,307.98" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="319.62,312.78 319.62,315.57" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="318.6,312.78 318.6,315.57" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="318.6,293.03 318.6,292.91" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="319.62,293.03 319.62,291.89" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="318.6,293.03 319.62,293.03" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="318.6,302.19 319.62,302.19" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="319.62,301.94 323.94,301.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="323.94,302.06 323.82,300.92 323.41,299.85 322.72,298.92 321.82,298.21 320.76,297.76 319.62,297.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="319.62,301.8 323.93,301.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="319.62,301.8 319.62,301.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="319.62,301.94 319.62,301.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="319.62,293.29 319.62,293.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="319.62,293.42 319.62,293.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="319.62,293.42 323.93,293.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="319.62,297.61 320.76,297.46 321.82,297.01 322.72,296.3 323.41,295.37 323.82,294.3 323.94,293.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="319.62,293.29 323.94,293.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="319.62,293.29 319.62,293.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="319.62,293.03 318.6,293.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="318.6,293.03 318.6,293.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="318.6,293.29 319.62,293.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="319.62,302.19 319.62,301.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="319.62,301.94 318.6,301.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="318.6,301.94 318.6,302.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="318.6,302.19 319.62,302.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="304.61,272.88 304.61,272.81" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="305.25,263.66 305.25,263.59" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="304.61,263.66 304.61,263.59" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="305.25,263.66 304.61,263.66" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="305.25,272.81 304.61,272.81" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="304.61,263.91 300.29,263.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="300.29,263.78 300.41,264.93 300.82,266 301.51,266.92 302.41,267.64 303.47,268.08 304.61,268.24" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="304.61,264.05 300.3,264.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="304.61,264.05 304.61,264.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="304.61,263.91 304.61,264.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="304.61,272.56 304.61,272.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="304.61,272.42 304.61,272.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="304.61,272.42 300.3,272.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="304.61,268.24 303.47,268.39 302.41,268.84 301.51,269.55 300.82,270.47 300.41,271.54 300.29,272.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="304.61,272.56 300.29,272.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="304.61,272.56 304.61,272.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="304.61,272.81 305.25,272.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="305.25,272.81 305.25,272.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="305.25,272.56 304.61,272.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="304.61,263.66 304.61,263.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="304.61,263.91 305.25,263.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="305.25,263.91 305.25,263.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="305.25,263.66 304.61,263.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="312.78,278.12 312.78,284.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="302.74,292.18 301.02,292.18" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="302.74,298.79 301.02,298.79" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="302.74,292.18 302.74,298.79" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,428.4 530.78,428.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="530.78,428.14 530.02,428.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="294.64,303.16 273.68,303.16" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="294.64,303.73 273.68,303.73" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="299.73,303.16 299.73,303.73" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="294.64,303.16 294.64,303.73" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="299.47,303.73 299.47,308.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="294.89,303.73 295.06,304.94 295.53,306.06 296.28,307.01 297.26,307.74 298.4,308.18 299.61,308.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="299.33,303.73 299.33,308.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="299.33,303.73 299.33,303.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="299.47,303.73 299.33,303.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="294.89,303.16 294.64,303.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="294.64,303.16 294.64,303.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="294.64,303.73 294.89,303.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="294.89,303.73 294.89,303.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="299.73,303.16 299.47,303.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="299.47,303.16 299.47,303.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="299.47,303.73 299.73,303.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="299.73,303.73 299.73,303.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="301.02,310.4 301.02,331.88" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="501.34,245.76 508.05,245.76" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="529.32,245.76 529.32,251.39" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="529.32,280.89 529.32,267.03" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="529.32,281.78 529.32,280.89" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="529.32,281.78 529.32,295.64" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="529.32,303.76 529.32,310.39" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="529.32,311.28 529.32,325.14" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="529.32,429.29 529.32,443.15" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="529.32,444.04 529.32,449.67" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="529.32,449.67 523.69,449.67" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="270.72,370.29 270.72,390.7" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.86,183.42 496.86,185.58" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="299.97,173.82 300.67,173.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="496.86,212.92 496.86,215.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.07,174.83 500.07,174.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="526.23,446.71 526.23,448.88" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.86,393.05 475.94,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="526.36,391.78 506.33,391.78" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="498.13,381.64 498.13,390.89" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="498.13,381.64 497.05,381.64" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="490.07,381.64 490.07,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="476.83,381.64 476.83,388.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="490.07,392.16 481.41,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="490.07,381.64 482.82,381.64" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="506.33,393.02 504.3,393.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="504.3,390.89 504.3,393.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="506.33,391.78 506.33,393.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="504.3,391.75 504.2,391.75" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.12,391.75 499.02,391.75" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.12,393.02 499.02,393.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="504.2,391.75 504.2,393.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.12,391.75 499.12,393.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.37,391.75 499.37,387.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="503.95,391.75 503.79,390.54 503.31,389.42 502.56,388.47 501.58,387.74 500.44,387.3 499.23,387.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.51,391.75 499.51,387.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.51,391.75 499.51,391.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.37,391.75 499.51,391.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="503.95,393.02 504.2,393.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="504.2,393.02 504.2,391.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="504.2,391.75 503.95,391.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="503.95,391.75 503.95,393.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.12,393.02 499.37,393.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.37,393.02 499.37,391.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.37,391.75 499.12,391.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="499.12,391.75 499.12,393.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="481.41,388.85 476.83,388.85" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="481.41,388.85 481.41,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="500.07,242.23 500.07,241.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="480.9,389.36 476.83,389.36" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="480.9,389.36 480.9,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="480.9,392.16 476.83,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.37,241.98 499.37,242.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="491.96,381.64 490.96,381.64" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="491.96,380.75 482.82,380.75" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="497.05,381.64 497.05,380.75" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="491.96,381.64 491.96,380.75" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="492.22,381.64 492.22,386.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="492.08,386.22 493.29,386.09 494.43,385.65 495.41,384.93 496.16,383.97 496.63,382.85 496.8,381.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.78,398.64 284.78,398.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="492.36,381.64 492.36,386.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="492.36,381.64 492.36,381.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.01,398.9 284.01,398.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="492.22,381.64 492.36,381.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="496.8,381.64 497.05,381.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.49,400.04 284.49,406.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="497.05,381.64 497.05,380.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="497.05,380.75 496.8,380.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="496.8,380.75 496.8,381.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="491.96,381.64 492.22,381.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="492.22,381.64 492.22,380.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="492.22,380.75 491.96,380.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="491.96,380.75 491.96,381.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="477.74,381.64 476.83,381.64" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="477.74,380.75 475.94,380.75" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="482.82,381.64 482.82,380.75" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="477.74,381.64 477.74,380.75" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="477.99,381.64 477.99,386.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="477.85,386.22 479.07,386.09 480.2,385.65 481.18,384.93 481.93,383.97 482.41,382.85 482.57,381.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="478.13,381.64 478.13,386.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="478.13,381.64 478.13,381.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="477.99,381.64 478.13,381.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="482.57,381.64 482.82,381.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="482.82,381.64 482.82,380.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="482.82,380.75 482.57,380.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="482.57,380.75 482.57,381.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="477.74,381.64 477.99,381.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="477.99,381.64 477.99,380.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="477.99,380.75 477.74,380.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="477.74,380.75 477.74,381.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="475.94,363.55 475.94,367.57" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="476.57,363.55 476.57,367.57" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="476.57,376.73 476.57,380.75" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="475.94,376.73 475.94,380.75" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="284.49,407.17 284.49,413.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="476.57,367.57 475.94,367.57" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="476.57,376.73 475.94,376.73" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="476.57,367.83 480.9,367.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="476.57,372.15 477.71,372 478.77,371.55 479.68,370.84 480.36,369.91 480.78,368.84 480.9,367.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="476.57,367.96 480.89,367.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="476.57,367.96 476.57,367.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="476.57,367.83 476.57,367.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="476.57,376.47 476.57,376.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="476.57,376.34 476.57,376.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="476.57,376.34 480.89,376.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="313.02,452.25 321.18,452.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="480.9,376.6 480.78,375.46 480.36,374.39 479.68,373.46 478.77,372.75 477.71,372.3 476.57,372.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="476.57,376.47 480.9,376.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="475.94,376.47 475.94,376.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="475.94,376.73 476.57,376.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="476.57,376.73 476.57,376.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="321.18,452.75 321.18,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="476.57,376.47 475.94,376.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="475.94,367.57 475.94,367.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="475.94,367.83 476.57,367.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="476.57,367.83 476.57,367.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="476.57,367.57 475.94,367.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="322.19,452.5 330.35,452.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="330.35,452.75 330.35,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="478.86,452.5 487.02,452.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="505.99,362.66 505.99,361.58" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="332.3,452.75 332.56,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="332.56,452.75 332.56,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="332.56,451.99 332.3,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="332.3,451.99 332.3,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="337.13,452.75 337.39,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="337.39,452.75 337.39,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="337.39,451.99 337.13,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="337.13,451.99 337.13,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="332.56,452.75 332.56,457.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="332.42,457.33 333.63,457.2 334.77,456.76 335.74,456.04 336.5,455.08 336.97,453.96 337.13,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="332.7,452.75 332.7,457.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="332.7,452.75 332.7,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="332.56,452.75 332.7,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="332.3,452.75 332.3,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="337.39,452.75 337.39,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="332.3,451.99 331.11,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="332.3,452.75 331.11,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="339.77,452.75 339.77,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="339.77,452.75 337.39,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="339.77,451.99 337.39,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="331.37,467.75 331.37,468.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="330.6,467.75 330.6,468.51" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="331.39,467.75 330.6,467.75" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="331.37,460.23 331.37,467.75" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="331.07,467.49 331.07,460.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="330.85,467.49 330.85,460.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="331.37,460.48 331.37,460.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="331.37,460.23 330.6,460.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="330.6,460.23 330.6,460.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="330.6,460.48 331.37,460.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="331.37,467.75 331.37,467.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="331.37,467.49 330.6,467.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="330.6,467.49 330.6,467.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="330.6,467.75 331.37,467.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="330.6,460.23 330.6,467.75" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="331.37,468.51 338.88,468.51" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="338.88,468.51 361.11,468.51" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="338.88,467.75 338.63,467.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="338.63,467.75 338.63,468.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="338.63,468.51 338.88,468.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="338.88,468.51 338.88,467.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="331.62,467.75 331.37,467.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="331.37,467.75 331.37,468.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="331.37,468.51 331.62,468.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="331.62,468.51 331.62,467.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="338.63,468.05 331.62,468.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="338.63,468.26 331.62,468.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="331.37,467.75 338.88,467.75" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="338.88,467.72 338.88,468.51" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="331.37,467.72 331.37,468.51" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="338.92,467.7 339.53,467.7" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="338.92,467.09 339.53,467.09" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="339.53,467.09 339.53,467.7" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="338.92,467.09 338.92,467.7" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="338.92,453.48 338.92,454.09" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="339.53,453.48 339.53,454.09" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="338.92,453.48 339.53,453.48" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="338.92,454.09 339.53,454.09" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="352.07,466.57 352.07,461.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="352.07,459.98 352.07,454.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="354.4,457.42 337.6,457.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="354.4,463.95 354.4,457.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="353.34,463.95 354.5,463.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="341.71,466.76 338.38,466.76" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="332.29,466.82 359.42,466.82" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="341.8,466.57 338.38,466.57" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="344.44,463.11 344.44,462.68" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="344.41,461.1 338.38,461.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="344.5,460.91 338.57,460.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="344.41,461.1 338.38,461.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="350.8,459.98 350.8,454.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="349.52,459.98 349.52,454.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="348.25,459.98 348.25,454.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="346.98,459.98 346.98,454.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="352.24,460.91 352.24,460.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="352.43,460.91 352.43,459.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="338.77,454.1 359.42,454.1" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="359.42,454.1 359.42,466.82" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="330.6,468.51 331.37,468.51" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="330.6,467.75 360.34,467.75" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="332.2,453.4 332.2,454.17" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="331.43,453.4 331.43,454.17" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="332.2,453.4 331.43,453.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="332.2,454.17 331.43,454.17" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="332.2,467.65 331.43,467.65" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="332.2,466.88 331.43,466.88" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="331.43,466.88 331.43,467.65" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="332.2,466.88 332.2,467.65" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="360.27,466.88 360.27,467.65" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="359.51,466.88 359.51,467.65" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="360.27,466.88 359.51,466.88" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="360.27,467.65 359.51,467.65" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="350.8,466.57 350.8,461.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="352.21,466.76 343.33,466.76" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="352.24,460.91 346.12,460.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="352.43,461.1 346.03,461.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="352.21,466.57 343.42,466.57" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="352.43,460.91 352.43,461.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="352.21,466.57 352.21,466.76" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="359.47,454.17 360.24,454.17" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="359.47,453.4 360.24,453.4" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="360.24,453.4 360.24,454.17" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="359.47,453.4 359.47,454.17" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="352.43,461.1 346.03,461.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="359.42,454.55 338.39,454.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="347.91,454.55 339.25,454.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="359.42,454.35 338.58,454.35" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="352.43,459.98 338.38,459.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="352.24,460.17 338.57,460.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="338.38,466.57 338.38,466.76" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="338.38,459.98 338.38,461.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="338.57,460.17 338.57,460.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="349.52,466.57 349.52,461.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="348.25,466.57 348.25,461.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="346.98,466.57 346.98,461.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="345.71,466.57 345.71,461.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="344.44,466.57 344.44,463.99" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="343.17,463.13 343.17,461.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="330.6,148.13 330.6,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="341.89,466.57 341.89,461.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="340.62,466.57 340.62,461.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="339.35,466.57 339.35,461.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="339.35,459.98 339.35,454.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="340.62,459.98 340.62,454.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="341.89,459.98 341.89,454.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="343.17,459.98 343.17,454.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="344.44,459.98 344.44,454.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="345.71,459.98 345.71,454.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="330.6,453.07 330.6,460.23" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="331.37,452.75 331.37,460.23" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="360.34,452.94 360.34,467.75" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="361.11,453.26 361.11,468.51" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="338.58,452.75 338.58,454.35" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="338.77,452.75 338.77,454.1" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="338.39,452.75 338.39,454.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="332.29,452.75 332.29,466.82" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="341.12,462.67 341.7,463.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="341.7,463.83 341.12,465" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="340.83,462.67 341.41,463.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="341.41,463.83 340.83,465" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="340.83,462.67 341.12,462.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="340.83,465 341.12,465" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <path d="M340.83 462.67L341.12 462.67 341.7 463.83 341.41 463.83 340.83 462.67Z" fill-rule="evenodd" fill="blue"/>
- <path d="M340.83 465L341.12 465 341.7 463.83 341.41 463.83 340.83 465Z" fill-rule="evenodd" fill="blue"/>
- <polyline points="337.52,463.83 341.72,463.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="347.88,451.99 347.88,449.19" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="342.41,449.19 347.88,449.19" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="347.63,451.99 347.63,450.77" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="342.66,449.19 342.66,450.52" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="342.41,450.77 347.63,450.77" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="342.66,450.52 347.63,450.52" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="347.63,450.52 347.63,449.19" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="358.49,136.3 363.29,136.3" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <path d="M362.4 135.14L362.69 135.14 363.27 136.3 362.98 136.3 362.4 135.14Z" fill-rule="evenodd" fill="blue"/>
- <path d="M362.4 137.46L362.69 137.46 363.27 136.3 362.98 136.3 362.4 137.46Z" fill-rule="evenodd" fill="blue"/>
- <polyline points="362.4,137.46 362.69,137.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="362.4,137.46 362.98,136.3" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="363.27,136.3 362.69,135.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="362.69,137.46 363.27,136.3" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="352.41,132.32 353.18,132.32" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="352.19,132.23 352.44,132.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="352.44,132.23 352.44,131.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="352.44,131.47 352.19,131.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="352.19,131.47 352.19,132.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="357.91,132.23 358.17,132.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="358.17,132.23 358.17,131.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="358.17,131.47 357.91,131.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="357.91,131.47 357.91,132.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="352.44,131.93 357.91,131.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="352.44,131.76 357.91,131.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="358.17,131.47 352.19,131.47" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="358.17,132.23 352.19,132.23" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="352.19,132.23 352.19,131.47" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="358.17,132.23 358.17,131.47" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="352.19,131.47 351.43,131.47" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="352.19,132.23 351.43,132.23" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="352.19,138.21 352.19,137.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="352.19,137.95 351.43,137.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="351.43,137.95 351.43,138.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="351.43,138.21 352.19,138.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="352.19,132.48 352.19,132.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="352.19,132.23 351.43,132.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="351.43,132.23 351.43,132.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="351.43,132.48 352.19,132.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="351.89,137.95 351.89,132.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="351.72,137.95 351.72,132.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="352.19,132.23 352.19,138.21" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="351.43,132.23 351.43,138.21" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="351.43,138.21 352.19,138.21" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="351.43,132.23 352.19,132.23" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="352.19,132.23 352.19,131.47" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="351.43,132.23 351.43,131.47" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="367.13,134.77 367.13,133.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="367.77,133.22 358.8,133.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="365.03,139.15 359.49,139.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="373.76,133.22 369.31,133.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="380.19,146.48 380.19,133.21" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="380.19,133.21 353.21,133.21" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="367.13,135.83 367.13,135.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="367.13,135.99 367.13,135.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="367.13,136.87 367.13,136.43" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="367.13,138.96 367.13,137.79" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="365.86,135.99 365.86,133.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="359.49,139.15 359.49,139.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="365.13,138.96 359.3,138.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="365.86,137.43 365.86,136.37" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="359.26,133.41 359.26,133.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="364.58,138.96 364.58,133.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="363.31,138.96 363.31,133.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="367.86,133.22 359.26,133.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="367.77,133.41 359.26,133.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="362.06,138.96 362.06,133.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="360.81,138.96 360.81,133.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="373.45,145.65 373.45,140.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="373.45,138.96 373.45,133.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="359.67,146.48 380.19,146.48" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="381.05,132.32 381.05,133.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="380.29,132.32 380.29,133.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="381.05,132.32 380.29,132.32" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="381.05,133.08 380.29,133.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="360.37,145.87 360.37,146.48" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="359.76,145.87 359.76,146.48" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="360.37,145.87 359.76,145.87" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="360.37,146.48 359.76,146.48" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="373.74,140.14 373.74,138.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="359.3,140.14 373.74,140.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="366.58,138.96 373.74,138.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="366.49,139.15 373.57,139.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="372.2,145.65 372.2,140.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="359.49,139.94 373.57,139.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="372.2,138.96 372.2,133.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="373.57,139.94 373.57,139.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="369.22,133.41 373.76,133.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="369.31,133.22 373.76,133.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="359.33,145.65 373.67,145.65" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="359.52,145.84 373.67,145.84" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="359.52,145.65 359.52,140.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="359.3,138.96 359.3,140.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="370.95,145.65 370.95,140.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="369.68,145.65 369.68,140.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="368.41,145.65 368.41,140.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="367.13,145.65 367.13,140.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="365.86,145.65 365.86,140.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="364.59,145.65 364.59,140.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="363.32,145.65 363.32,140.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="362.05,145.65 362.05,140.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="360.78,145.65 360.78,140.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="370.95,138.96 370.95,133.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="369.68,138.96 369.68,133.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="368.41,138.96 368.41,136.4" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="373.67,145.65 373.67,145.84" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="373.76,133.41 373.76,133.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="381.17,132.23 358.17,132.23" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="381.93,131.47 358.17,131.47" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="376.46,136.3 376.46,142.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="376.46,142.77 358.33,142.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="370.48,137.46 369.9,136.3" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="369.9,136.3 370.48,135.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="370.77,137.46 370.19,136.3" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="370.77,137.46 370.48,137.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <path d="M370.77 137.46L370.48 137.46 369.9 136.3 370.19 136.3 370.77 137.46Z" fill-rule="evenodd" fill="blue"/>
- <path d="M370.77 135.14L370.48 135.14 369.9 136.3 370.19 136.3 370.77 135.14Z" fill-rule="evenodd" fill="blue"/>
- <polyline points="376.46,136.3 369.88,136.3" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="355.86,140.84 355.86,141.57 355.92,141.79 356.03,141.86 356.19,141.86 356.3,141.79 356.46,141.57" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="356.46,140.84 356.46,141.86" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="356.9,140.84 356.9,142.37" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="356.9,141.06 357.01,140.92 357.12,140.84 357.28,140.84 357.39,140.92 357.5,141.06 357.55,141.28 357.55,141.43 357.5,141.64 357.39,141.79 357.28,141.86 357.12,141.86 357.01,141.79 356.9,141.64" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="353.18,133.08 352.41,133.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="352.41,132.32 352.41,133.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="353.18,132.32 353.18,133.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="353.08,145.73 353.08,146.49" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="352.32,145.73 352.32,146.49" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="353.08,145.73 352.32,145.73" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="353.08,146.49 352.32,146.49" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="381.17,146.56 380.4,146.56" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="381.17,145.8 380.4,145.8" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="380.4,145.8 380.4,146.56" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="381.17,145.8 381.17,146.56" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="352.19,147.36 352.19,138.21" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="351.43,146.85 351.43,138.21" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="353.21,147.36 353.21,133.21" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="359.33,145.65 359.33,147.36" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="359.52,145.84 359.52,147.36" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="359.67,146.48 359.67,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="381.17,147.36 381.17,132.23" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="381.93,146.85 381.93,131.47" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="353.84,148.13 353.84,143.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="358.42,148.13 358.26,146.92 357.78,145.8 357.03,144.84 356.05,144.12 354.92,143.68 353.7,143.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="353.98,148.13 353.98,143.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="353.98,148.13 353.98,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="353.84,148.13 353.98,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="358.42,149.02 358.67,149.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="358.67,149.02 358.67,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="358.67,148.13 358.42,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="358.42,148.13 358.42,149.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="353.59,149.02 353.84,149.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="353.84,149.02 353.84,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="353.84,148.13 353.59,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="353.59,148.13 353.59,149.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="353.59,147.36 351.93,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="353.59,148.13 351.93,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="353.59,147.36 353.59,149.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="358.67,149.02 358.67,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="359.56,138.96 359.56,133.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="360.6,147.36 358.67,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="358.67,148.13 358.67,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="353.59,149.02 342.41,149.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="335.41,457.12 335.41,457.85 335.46,458.06 335.57,458.14 335.73,458.14 335.84,458.06 336.01,457.85" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="336.01,457.12 336.01,458.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="336.44,457.12 336.44,458.64" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="336.44,457.34 336.55,457.19 336.66,457.12 336.82,457.12 336.93,457.19 337.04,457.34 337.1,457.55 337.1,457.7 337.04,457.92 336.93,458.06 336.82,458.14 336.66,458.14 336.55,458.06 336.44,457.92" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="335.94,462.93 335.94,464.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="335.94,463.66 335.83,463.52 335.72,463.44 335.55,463.44 335.45,463.52 335.34,463.66 335.28,463.88 335.28,464.02 335.34,464.24 335.45,464.39 335.55,464.46 335.72,464.46 335.83,464.39 335.94,464.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="336.32,464.46 336.32,463.44" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="336.32,463.73 336.48,463.52 336.59,463.44 336.75,463.44 336.86,463.52 336.92,463.73 336.92,464.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="337.41,464.31 337.35,464.39 337.41,464.46 337.46,464.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="356.09,135.3 356.09,136.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="356.09,136.03 355.99,135.89 355.88,135.81 355.71,135.81 355.6,135.89 355.5,136.03 355.44,136.25 355.44,136.39 355.5,136.61 355.6,136.76 355.71,136.83 355.88,136.83 355.99,136.76 356.09,136.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="356.48,136.83 356.48,135.81" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="356.48,136.1 356.64,135.89 356.75,135.81 356.91,135.81 357.02,135.89 357.08,136.1 357.08,136.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="357.57,136.69 357.51,136.76 357.57,136.83 357.62,136.76" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="382.16,250.36 382.16,251.89" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="382.16,251.09 382.05,250.94 381.95,250.87 381.78,250.87 381.67,250.94 381.56,251.09 381.51,251.3 381.51,251.45 381.56,251.67 381.67,251.81 381.78,251.89 381.95,251.89 382.05,251.81 382.16,251.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="382.55,251.89 382.55,250.87" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="382.55,251.16 382.71,250.94 382.82,250.87 382.98,250.87 383.09,250.94 383.14,251.16 383.14,251.89" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="383.64,251.74 383.58,251.81 383.64,251.89 383.69,251.81" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="507.95,244.1 501.31,244.1" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="515.68,244.1 509.03,244.1" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="522.7,244.1 516.06,244.1" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.43,244.1 523.78,244.1" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.97,244.64 530.97,251.29" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.97,252.37 530.97,259.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.97,259.4 530.97,266.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.97,267.12 530.97,273.77" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.97,274.15 530.97,280.79" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.97,281.87 530.97,288.52" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.97,288.9 530.97,295.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.97,296.63 530.97,303.27" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.97,303.65 530.97,310.3" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.97,311.38 530.97,318.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.97,318.4 530.97,325.05" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.97,326.13 530.97,332.77" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.97,333.15 530.97,339.8" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.97,340.88 530.97,347.52" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.97,347.91 530.97,354.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.97,355.63 530.97,362.28" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.97,362.66 530.97,369.3" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.97,370.38 530.97,377.03" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.97,377.41 530.97,384.05" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.97,385.13 530.97,391.78" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.97,392.16 530.97,398.8" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.97,399.88 530.97,406.53" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.97,406.91 530.97,413.56" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.97,414.64 530.97,421.28" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.97,421.66 530.97,428.31" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.97,429.39 530.97,436.03" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.97,436.41 530.97,443.06" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.97,444.14 530.97,450.78" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.78,444.04 530.78,444.14" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="522.7,451.32 516.06,451.32" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="530.43,451.32 523.78,451.32" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="515.68,451.32 509.03,451.32" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="507.95,451.32 501.31,451.32" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="499.08,451.32 500.93,451.32" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.44,452.94 487.78,452.94" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.95,453.26 496.44,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="496.95,452.69 498.92,452.69" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="498.92,453.26 499.43,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="478.1,452.94 469.44,452.94" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="487.27,452.94 478.61,452.94" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="478.1,453.26 478.61,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="487.27,453.26 487.78,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.28,452.94 448.61,452.94" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="468.93,452.94 460.26,452.94" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="468.93,453.26 469.44,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="438.93,452.94 430.27,452.94" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="448.1,452.94 439.44,452.94" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="438.93,453.26 439.44,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="448.1,453.26 448.61,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="429.76,452.94 421.1,452.94" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.11,452.94 409.45,452.94" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.62,453.26 418.11,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="420.59,453.26 421.1,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="429.76,453.26 430.27,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="418.62,452.75 420.59,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.78,453.33 457.28,453.33" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.78,452.75 459.76,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="459.76,453.33 460.26,453.33" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="399.77,453.26 400.27,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="408.94,453.26 409.45,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="408.94,452.94 400.27,452.94" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="399.77,452.94 391.1,452.94" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="390.59,453.26 391.1,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="381.42,453.26 381.93,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="379.45,453.26 378.94,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="378.94,452.94 370.28,452.94" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="379.45,452.69 381.42,452.69" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="390.59,452.94 381.93,452.94" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="351.43,453.26 351.93,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="360.6,452.94 351.93,452.94" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="360.6,453.26 361.11,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="369.77,452.94 361.11,452.94" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="339.77,453.26 340.28,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="340.28,452.69 342.25,452.69" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="342.25,453.26 342.76,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="351.43,452.94 342.76,452.94" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="321.43,452.94 312.77,452.94" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="321.43,453.26 321.94,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="330.6,452.94 321.94,452.94" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="330.6,453.26 331.11,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="312.26,453.26 312.77,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="303.09,453.26 303.6,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="301.12,452.69 303.09,452.69" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="301.12,453.26 300.61,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="312.26,452.94 303.6,452.94" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="292.09,451.32 298.73,451.32" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.36,451.32 291.01,451.32" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="283.82,450.78 283.82,444.14" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="283.82,428.31 283.82,421.66" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="283.82,436.03 283.82,429.39" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="283.82,443.06 283.82,436.41" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="283.83,413.56 283.83,406.91" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="283.83,421.28 283.83,414.64" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="283.82,406.53 283.82,399.79" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="283.82,398.9 283.82,392.35" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="277.4,392.35 283.82,392.35" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="276.26,392.35 269.61,392.35" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.07,391.78 269.07,385.13" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.07,377.41 269.07,384.05" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.07,370.38 269.07,377.03" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.07,347.91 269.07,354.55" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.07,355.63 269.07,362.28" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.07,362.66 269.07,369.3" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.07,326.13 269.07,332.77" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.07,333.15 269.07,339.8" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.07,340.88 269.07,347.52" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.07,311.38 269.07,318.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.07,318.4 269.07,325.05" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.07,296.63 269.07,303.27" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.07,303.65 269.07,310.3" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.07,281.87 269.07,288.52" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.07,288.9 269.07,295.54" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.07,267.12 269.07,273.77" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.07,274.15 269.07,280.79" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.07,252.37 269.07,259.02" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.07,259.4 269.07,266.04" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.36,244.11 291.01,244.11" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="277.34,244.11 283.98,244.11" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.61,244.11 276.26,244.11" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="269.07,244.65 269.07,251.29" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="292.09,244.11 298.73,244.11" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="488.03,452.5 493.14,452.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="488.03,452.25 493.14,452.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="493.39,452.25 496.19,452.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="493.39,452.5 496.19,452.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="493.14,451.99 493.39,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="493.39,451.99 493.39,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="493.39,452.75 493.14,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="493.14,452.75 493.14,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="496.19,451.99 496.44,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="496.44,451.99 496.44,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="496.44,452.75 496.19,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="496.19,452.75 496.19,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="487.78,451.99 488.03,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="488.03,451.99 488.03,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="488.03,452.75 487.78,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="487.78,452.75 487.78,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="468.93,451.99 468.67,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="468.67,451.99 468.67,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="468.67,452.75 468.93,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="468.93,452.75 468.93,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="460.52,451.99 460.26,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="460.26,451.99 460.26,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="460.26,452.75 460.52,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="460.52,452.75 460.52,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="463.57,451.99 463.32,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="463.32,451.99 463.32,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="463.32,452.75 463.57,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="463.57,452.75 463.57,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="463.32,452.5 460.52,452.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="463.32,452.25 460.52,452.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="468.67,452.25 463.57,452.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="468.67,452.5 463.57,452.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="448.87,452.5 453.97,452.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="448.87,452.25 453.97,452.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="454.22,452.25 457.02,452.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="454.22,452.5 457.02,452.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="453.97,451.99 454.22,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="454.22,451.99 454.22,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="454.22,452.75 453.97,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="453.97,452.75 453.97,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="457.02,451.99 457.28,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="457.28,451.99 457.28,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="457.28,452.75 457.02,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="457.02,452.75 457.02,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="448.61,451.99 448.87,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="448.87,451.99 448.87,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="448.87,452.75 448.61,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="448.61,452.75 448.61,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="429.76,451.99 429.51,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="429.51,451.99 429.51,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="429.51,452.75 429.76,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="429.76,452.75 429.76,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="421.35,451.99 421.1,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="421.1,451.99 421.1,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="421.1,452.75 421.35,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="421.35,452.75 421.35,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="424.4,451.99 424.15,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="424.15,451.99 424.15,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="424.15,452.75 424.4,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="424.4,452.75 424.4,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="424.15,452.5 421.35,452.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="424.15,452.25 421.35,452.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="429.51,452.25 424.4,452.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="429.51,452.5 424.4,452.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="409.7,452.5 414.8,452.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="409.7,452.25 414.8,452.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="415.06,452.25 417.85,452.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="415.06,452.5 417.85,452.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="414.8,451.99 415.06,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="415.06,451.99 415.06,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="415.06,452.75 414.8,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="414.8,452.75 414.8,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="417.85,451.99 418.11,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="418.11,451.99 418.11,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="418.11,452.75 417.85,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="417.85,452.75 417.85,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="409.45,451.99 409.7,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="409.7,451.99 409.7,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="409.7,452.75 409.45,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="409.45,452.75 409.45,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="390.59,451.99 390.34,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="390.34,451.99 390.34,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="390.34,452.75 390.59,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="390.59,452.75 390.59,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="382.18,451.99 381.93,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="381.93,451.99 381.93,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="381.93,452.75 382.18,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="382.18,452.75 382.18,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="385.24,451.99 384.98,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="384.98,451.99 384.98,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="384.98,452.75 385.24,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="385.24,452.75 385.24,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="384.98,452.5 382.18,452.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="384.98,452.25 382.18,452.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="390.34,452.25 385.24,452.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="390.34,452.5 385.24,452.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="370.53,452.5 375.64,452.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="370.53,452.25 375.64,452.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="375.89,452.25 378.69,452.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="375.89,452.5 378.69,452.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="375.64,451.99 375.89,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="375.89,451.99 375.89,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="375.89,452.75 375.64,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="375.64,452.75 375.64,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="378.69,451.99 378.94,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="378.94,451.99 378.94,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="378.94,452.75 378.69,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="378.69,452.75 378.69,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="370.28,451.99 370.53,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="370.53,451.99 370.53,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="370.53,452.75 370.28,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="370.28,452.75 370.28,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="312.26,451.99 312,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="312,451.99 312,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="312,452.75 312.26,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="312.26,452.75 312.26,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="303.85,451.99 303.6,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="303.6,451.99 303.6,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="303.6,452.75 303.85,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="303.85,452.75 303.85,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="306.9,451.99 306.65,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="306.65,451.99 306.65,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="306.65,452.75 306.9,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="306.9,452.75 306.9,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="306.65,452.5 303.85,452.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="306.65,452.25 303.85,452.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="312,452.25 306.9,452.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="276.46,264.65 273.54,263.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
- <polyline points="450.4,241.25 448.58,242.61" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="455.33,240.8 457.75,242.61" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="347.44,240.91 349.15,242.61" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="343.71,241.19 342.29,242.61" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="343.36,219.94 342.35,221.1" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="346.67,220.01 347.63,221.1" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="284.31,303.73 284.31,303.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.06,303.16 284.06,303.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.06,303.32 284,303.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284,303.32 284,303.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284,303.42 284.06,303.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.06,303.53 284.06,303.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.06,303.73 284.31,303.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284,303.47 284,303.53 284.06,303.53 284.06,303.47 284,303.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.06,303.47 284.06,303.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="276.56,303.73 276.56,303.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="276.56,303.16 276.81,303.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="276.81,303.16 276.81,303.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="276.81,303.32 276.88,303.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="276.88,303.32 276.88,303.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="276.88,303.42 276.81,303.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="276.81,303.53 276.81,303.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="276.81,303.73 276.56,303.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="276.88,303.47 276.88,303.53 276.81,303.53 276.81,303.47 276.88,303.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="276.81,303.47 276.81,303.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.06,303.44 276.81,303.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="291.82,303.73 291.82,303.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="291.82,303.16 291.56,303.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="291.56,303.16 291.56,303.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="291.56,303.32 291.5,303.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="291.5,303.32 291.5,303.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="291.5,303.42 291.56,303.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="291.56,303.53 291.56,303.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="291.56,303.73 291.82,303.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="291.5,303.47 291.5,303.53 291.56,303.53 291.56,303.47 291.5,303.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="291.56,303.47 291.56,303.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.06,303.73 284.06,303.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.06,303.16 284.31,303.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.31,303.16 284.31,303.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.31,303.32 284.38,303.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.38,303.32 284.38,303.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.38,303.42 284.31,303.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.31,303.53 284.31,303.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.38,303.47 284.38,303.53 284.31,303.53 284.31,303.47 284.38,303.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="284.31,303.47 284.31,303.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="291.56,303.44 284.31,303.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="301.02,332.56 273.74,332.56" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="301.02,333.16 273.74,333.16" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="336.58,324.96 337.76,324.8 338.87,324.35 339.82,323.62 340.54,322.67 341,321.57 341.16,320.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="341.16,320.6 336.51,320.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="336.51,320.6 336.51,320.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="336.58,320.38 341.16,320.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="335.91,320.13 335.91,320.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="335.91,320.38 336.09,320.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="336.09,320.38 336.09,320.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="336.09,320.44 336.34,320.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="336.34,320.44 336.34,320.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="336.34,320.38 336.58,320.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="336.51,320.38 336.51,320.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="335.91,320.13 336.51,320.13" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="335.91,329.79 336.51,329.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="341.08,329.54 340.93,328.35 340.47,327.25 339.74,326.3 338.79,325.57 337.69,325.11 336.51,324.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="341.08,329.31 336.51,329.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="336.51,329.54 341.08,329.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="335.91,329.79 335.91,329.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="335.91,329.54 336.09,329.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="336.09,329.54 336.09,329.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="336.09,329.47 336.34,329.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="336.34,329.47 336.34,329.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="336.34,329.54 336.58,329.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="335.23,318.27 335.23,318.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="335.23,318.25 334.98,318.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="334.98,318.25 334.98,318.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="334.98,318.43 334.92,318.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="334.92,318.43 334.92,318.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="334.92,318.54 334.98,318.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="334.98,318.62 334.98,318.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="334.98,318.85 335.23,318.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="335.23,318.85 335.23,318.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="334.92,318.56 334.92,318.62 334.98,318.62 334.98,318.56 334.92,318.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="334.98,318.58 334.98,318.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="329.13,318.25 329.38,318.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="329.38,318.25 329.38,318.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="329.38,318.43 329.45,318.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="329.45,318.43 329.45,318.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="329.45,318.54 329.38,318.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="329.38,318.65 329.38,318.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="329.38,318.85 329.13,318.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="329.13,318.82 329.13,318.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="329.45,318.58 329.45,318.65 329.38,318.65 329.38,318.58 329.45,318.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="329.38,318.58 329.38,318.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="334.98,318.56 329.38,318.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="335.23,318.85 335.23,318.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="329.13,318.85 329.13,318.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="327.24,312.64 326.05,312.8 324.95,313.25 324,313.98 323.27,314.93 322.82,316.03 322.66,317.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="322.66,317 327.24,317" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="327.24,317 327.24,317.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="327.24,317.22 322.66,317.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="327.24,317.47 327.84,317.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="327.84,317.47 327.84,317.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="327.84,317.22 327.67,317.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="327.67,317.22 327.67,317.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="327.67,317.16 327.41,317.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="327.41,317.16 327.41,317.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="327.41,317.22 327.24,317.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="327.24,317.22 327.24,317.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="327.24,312.39 327.84,312.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="327.84,312.39 327.84,312.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="327.84,312.64 327.67,312.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="327.67,312.64 327.67,312.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="327.67,312.7 327.41,312.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="327.41,312.7 327.41,312.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="327.41,312.64 327.24,312.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="327.24,312.64 327.24,312.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="320.27,273.48 320.4,274.66 320.82,275.76 321.53,276.71 322.46,277.45 323.55,277.9 324.73,278.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="324.51,278.06 324.51,273.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="324.51,273.48 324.73,273.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="324.73,273.48 324.73,278.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="335.91,390.87 335.91,364.44" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="324.98,272.88 324.73,272.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="324.73,272.88 324.73,273.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="324.73,273.06 324.67,273.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="324.67,273.06 324.67,273.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="324.67,273.31 324.73,273.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="324.73,273.31 324.73,273.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="324.73,273.48 324.98,273.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="315.8,278.06 316.98,277.91 318.08,277.46 319.02,276.73 319.73,275.77 320.16,274.66 320.27,273.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="316.02,278.06 316.02,273.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="316.02,273.48 315.8,273.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="315.8,273.48 315.8,278.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="315.54,272.88 315.8,272.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="315.8,272.88 315.8,273.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="315.8,273.06 315.86,273.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="315.86,273.06 315.86,273.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="315.86,273.31 315.8,273.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="315.8,273.31 315.8,273.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="315.8,273.48 315.54,273.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="324.98,273.48 324.98,272.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="315.54,273.48 315.54,272.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="286.27,391.47 285.47,391.47" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="288.44,391.47 301.02,391.47" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="336.51,391.47 336.51,364.44" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="285.47,390.87 335.91,390.87" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="336.51,360.5 336.51,334.93" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="335.91,364.44 335.91,334.93" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="335.91,334.93 335.91,330.99" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="303.18,391.47 336.51,391.47" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="336.51,329.79 336.51,329.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="336.51,329.54 336.51,329.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="336.51,330.99 336.51,329.79" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="336.51,329.79 335.91,329.79" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="335.91,330.99 335.91,329.79" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="336.51,320.13 336.51,318.22" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="335.91,320.13 335.91,318.87" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="302.07,318.87 335.91,318.87" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="319.62,318.22 327.24,318.22" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="336.51,320.13 335.91,320.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
- <polyline points="327.84,317.47 327.24,317.47" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="327.24,317.47 327.24,318.22" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="327.84,317.47 327.84,318.22" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="327.24,312.39 327.24,292.48" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="327.84,312.39 327.84,291.88" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="319.62,292.48 327.24,292.48" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="327.24,291.89 327.24,273.48" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="327.84,291.88 327.84,272.88" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="327.84,312.39 327.24,312.39" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="327.84,318.22 336.51,318.22" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="319.62,291.89 327.24,291.89" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="329.13,318.22 329.13,318.87" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="335.23,318.22 335.23,318.87" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="313.99,273.48 315.54,273.48" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="327.24,273.48 324.98,273.48" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="327.84,272.88 324.98,272.88" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="305.75,272.88 305.75,272.38" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="305.75,272.38 306.7,272.38" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="306.7,272.38 306.7,272.88" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="305.75,263.59 305.75,264.1" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="305.75,264.1 306.7,264.1" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="306.7,264.1 306.7,263.59" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="324.98,273.48 324.98,272.88" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="315.54,273.48 315.54,272.88" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="315.54,272.88 313.99,272.88" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="271.52,332.56 270.02,332.56" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="271.52,333.16 270.02,333.16" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="276.56,303.16 276.56,303.73" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="291.82,303.16 291.82,303.73" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="497.3,350.19 497.3,342.06 496.98,342.06 496.98,340.02 498,340.02 498,334.04 496.86,334.04 496.86,332.96 484.59,332.96 484.59,350.19 497.3,350.19" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="457.75,235.75 448.58,235.75 448.58,242.61 457.75,242.61 457.75,235.75" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="347.63,215.08 342.35,215.08 342.35,221.1 347.63,221.1 347.63,215.08" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="349.15,235.75 342.29,235.75 342.29,242.61 349.15,242.61 349.15,235.75" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="312.78,303.33 303.18,303.33 303.18,317.45 312.78,317.45 312.78,303.33" style="fill:none;stroke:red;stroke-width:0.5"/>
- <polyline points="302.88,243.25 302.88,215.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="302.88,212.92 302.88,185.58" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="302.88,183.42 302.88,156.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="302.79,153.91 302.79,150.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="302.79,150.02 352.08,150.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="352.08,149.02 352.08,150.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="378.57,149.02 378.57,157.1" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="378.57,157.1 381.95,157.1" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="381.95,157.1 381.95,149.02" style="fill:none;stroke:yellow;stroke-width:0.5"/>
- <polyline points="381.95,150.02 468.93,150.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="498.05,165.17 498.05,183.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="498.05,185.58 498.05,212.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="498.05,215.08 498.05,243.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="498.99,246.76 526.36,246.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="528.31,248.72 528.31,272.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="528.31,275.04 528.31,302.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="528.31,304.54 528.31,331.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="528.31,334.04 528.31,361.39" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="528.32,393.05 528.32,446.71" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="528.32,448.88 528.32,449.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="301.08,448.66 288.43,448.66" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="286.48,446.71 286.48,422.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="286.48,420.39 286.48,393.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="286.52,390.87 286.52,389.87" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="286.52,389.87 270.72,389.87" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="271.72,389.87 271.72,389.87" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="271.72,387.71 271.72,363.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="271.72,361.39 271.72,334.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="271.72,331.88 271.72,304.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
- <polyline points="353.84,149.26 354.37,148.73 354.3,149.82 354.44,149.68 354.57,149.68 354.64,149.74 354.77,149.99 354.82,150.2 354.86,150.55 354.82,150.84 354.7,151.09 354.55,151.23 354.38,151.28 354.31,151.22 354.21,151.07" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="355.56,148.18 355.46,148.02 355.31,147.92 355.19,147.91 354.99,148.1 354.93,148.3 354.88,148.6 354.89,148.85 354.92,149.2 355.06,149.7 355.19,149.96 355.29,150.11 355.44,150.22 355.56,150.22 355.76,150.03 355.82,149.84 355.87,149.54 355.86,149.29" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="355.82,147.79 355.89,147.59 355.96,147.14 356.52,149.26" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="356.58,146.52 357.11,145.99 357.04,147.09 357.18,146.94 357.3,146.95 357.38,147 357.51,147.25 357.56,147.46 357.6,147.81 357.55,148.11 357.44,148.35 357.29,148.5 357.12,148.54 357.05,148.49 356.94,148.33" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="305.77,267.07 306.48,266.84 305.92,267.78 306.12,267.72 306.22,267.78 306.27,267.86 306.27,268.15 306.22,268.35 306.09,268.68 305.92,268.92 305.7,269.09 305.51,269.15 305.34,269.11 305.3,269.03 305.27,268.85" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="306.68,267.92 307.84,267.54" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="308.57,266.63 308.59,266.53 308.7,266.31 308.79,266.18 308.94,266.04 309.2,265.95 309.31,266.01 309.35,266.1 309.37,266.28 309.33,266.48 309.22,266.71 309.02,267.06 308.16,268.29 309.06,268" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="310.3,265.6 310.08,265.76 309.89,266.11 309.71,266.64 309.65,266.95 309.6,267.44 309.67,267.71 309.84,267.75 309.97,267.7 310.19,267.54 310.38,267.19 310.55,266.66 310.62,266.35 310.66,265.86 310.6,265.59 310.43,265.56 310.3,265.6" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="310.94,266.53 312.1,266.15" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="312.43,266.91 312.88,264.76 313.33,266.61 313.79,264.46" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="314.3,264.3 314.17,266.34 314.95,264.09 314.82,266.13 315.6,263.88" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="315.77,264.2 315.92,264.06 316.18,263.69 315.72,265.84" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="499.47,392.52 500,391.99 499.93,393.09 500.07,392.94 500.19,392.95 500.27,393 500.4,393.25 500.45,393.46 500.49,393.81 500.44,394.11 500.33,394.35 500.18,394.49 500.01,394.54 499.94,394.49 499.83,394.33" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="501.19,391.44 501.09,391.28 500.94,391.18 500.82,391.17 500.62,391.36 500.55,391.56 500.51,391.86 500.52,392.11 500.55,392.46 500.69,392.97 500.82,393.22 500.92,393.38 501.07,393.48 501.19,393.49 501.38,393.29 501.45,393.1 501.49,392.8 501.49,392.55" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="501.53,391.1 501.5,391 501.49,390.75 501.51,390.6 501.58,390.4 501.78,390.21 501.9,390.22 501.97,390.27 502.08,390.42 502.13,390.63 502.14,390.88 502.12,391.27 501.91,392.77 502.58,392.09" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="502.88,389.11 502.4,389.59 502.6,390.54 502.62,390.39 502.73,390.15 502.88,390.01 503.05,389.96 503.2,390.07 503.33,390.32 503.38,390.53 503.42,390.88 503.37,391.17 503.26,391.42 503.11,391.56 502.94,391.61 502.87,391.55 502.76,391.4" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="305.54,269.95 306.25,269.72 305.69,270.66 305.88,270.6 305.99,270.66 306.03,270.74 306.03,271.02 305.99,271.23 305.86,271.56 305.69,271.8 305.47,271.97 305.28,272.03 305.11,271.99 305.06,271.91 305.04,271.73" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="306.44,270.8 307.61,270.42" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="308.34,269.51 308.36,269.41 308.47,269.18 308.56,269.06 308.71,268.92 308.97,268.83 309.07,268.89 309.12,268.97 309.14,269.16 309.09,269.36 308.98,269.59 308.79,269.94 307.93,271.17 308.83,270.88" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="310.06,268.48 309.85,268.64 309.65,268.99 309.48,269.52 309.41,269.83 309.37,270.32 309.43,270.59 309.61,270.63 309.74,270.58 309.95,270.42 310.15,270.07 310.32,269.54 310.38,269.23 310.43,268.74 310.36,268.47 310.19,268.43 310.06,268.48" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="310.71,269.41 311.87,269.03" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="312.19,269.79 312.65,267.64 313.1,269.49 313.55,267.34" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="314.07,267.17 313.94,269.22 314.72,266.96 314.58,269.01 315.36,266.75" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="315.58,267.16 315.6,267.06 315.71,266.83 315.79,266.71 315.94,266.57 316.2,266.48 316.31,266.54 316.35,266.62 316.37,266.81 316.33,267.01 316.22,267.24 316.03,267.59 315.16,268.82 316.07,268.53" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="375.62,267.1 376.15,266.57 376.08,267.67 376.22,267.52 376.35,267.53 376.42,267.58 376.55,267.84 376.61,268.04 376.64,268.39 376.6,268.69 376.48,268.93 376.34,269.08 376.16,269.12 376.09,269.07 375.99,268.91" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="377.34,266.02 377.24,265.87 377.09,265.76 376.97,265.76 376.78,265.95 376.71,266.14 376.67,266.44 376.67,266.69 376.7,267.04 376.84,267.55 376.97,267.8 377.07,267.96 377.22,268.06 377.34,268.07 377.54,267.88 377.61,267.68 377.65,267.38 377.64,267.13" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="377.61,265.63 377.67,265.43 377.74,264.99 378.31,267.11" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="378.55,264.17 378.44,264.42 378.42,264.81 378.51,265.37 378.59,265.67 378.77,266.13 378.95,266.34 379.12,266.29 379.22,266.2 379.34,265.95 379.35,265.55 379.26,265 379.18,264.7 379,264.24 378.82,264.03 378.65,264.07 378.55,264.17" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="380.5,266.96 381.03,266.43 380.96,267.52 381.1,267.38 381.22,267.39 381.3,267.44 381.43,267.69 381.48,267.9 381.52,268.25 381.47,268.54 381.36,268.79 381.21,268.93 381.04,268.98 380.97,268.92 380.86,268.77" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="382.22,265.88 382.12,265.72 381.97,265.62 381.85,265.61 381.65,265.8 381.58,266 381.54,266.3 381.55,266.55 381.58,266.9 381.72,267.4 381.85,267.66 381.95,267.81 382.1,267.92 382.22,267.92 382.41,267.73 382.48,267.54 382.53,267.24 382.52,266.99" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="382.48,265.49 382.55,265.29 382.61,264.84 383.18,266.96" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="383.25,264.72 383.32,264.52 383.38,264.07 383.95,266.2" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="466.56,160.32 467.09,159.8 467.02,160.89 467.17,160.75 467.29,160.75 467.36,160.81 467.49,161.06 467.55,161.26 467.58,161.62 467.54,161.91 467.42,162.16 467.28,162.3 467.11,162.35 467.03,162.29 466.93,162.14" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="468.29,159.24 468.18,159.09 468.03,158.98 467.91,158.98 467.72,159.17 467.65,159.37 467.61,159.67 467.61,159.92 467.65,160.27 467.78,160.77 467.91,161.03 468.01,161.18 468.16,161.29 468.29,161.29 468.48,161.1 468.55,160.9 468.59,160.61 468.58,160.36" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="468.55,158.86 468.62,158.66 468.68,158.21 469.25,160.33" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="469.78,157.11 469.3,157.59 469.5,158.54 469.52,158.39 469.64,158.15 469.78,158.01 469.95,157.96 470.1,158.07 470.23,158.32 470.29,158.53 470.32,158.88 470.28,159.17 470.16,159.42 470.02,159.56 469.84,159.61 469.77,159.55 469.67,159.4" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="333.1,453.02 333.63,452.49 333.56,453.59 333.7,453.44 333.82,453.45 333.9,453.5 334.03,453.75 334.08,453.96 334.12,454.31 334.07,454.61 333.96,454.85 333.81,454.99 333.64,455.04 333.57,454.98 333.46,454.83" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="334.82,451.94 334.72,451.78 334.57,451.68 334.45,451.67 334.25,451.86 334.18,452.06 334.14,452.36 334.15,452.61 334.18,452.96 334.32,453.47 334.45,453.72 334.55,453.87 334.7,453.98 334.82,453.99 335.01,453.79 335.08,453.6 335.13,453.3 335.12,453.05" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="335.16,451.6 335.13,451.5 335.12,451.25 335.15,451.1 335.21,450.9 335.41,450.71 335.53,450.72 335.61,450.77 335.71,450.92 335.76,451.12 335.77,451.38 335.75,451.77 335.54,453.27 336.22,452.59" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="335.94,450.18 336.61,449.51 336.7,452.11" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="499.55,362.69 500.08,362.16 500.01,363.25 500.15,363.11 500.27,363.11 500.35,363.17 500.48,363.42 500.53,363.62 500.56,363.98 500.52,364.27 500.41,364.52 500.26,364.66 500.09,364.71 500.01,364.65 499.91,364.5" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="501.27,361.6 501.17,361.45 501.02,361.34 500.89,361.34 500.7,361.53 500.63,361.73 500.59,362.03 500.6,362.28 500.63,362.63 500.77,363.13 500.89,363.39 501,363.54 501.15,363.65 501.27,363.65 501.46,363.46 501.53,363.26 501.57,362.97 501.57,362.72" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="501.61,361.27 501.58,361.17 501.57,360.92 501.59,360.77 501.66,360.57 501.85,360.38 501.98,360.38 502.05,360.44 502.16,360.59 502.21,360.79 502.22,361.04 502.2,361.44 501.99,362.93 502.66,362.26" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="502.49,360.25 502.56,360.06 502.62,359.61 503.19,361.73" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="473.32,371.55 473.85,371.02 473.78,372.11 473.92,371.97 474.05,371.97 474.12,372.03 474.25,372.28 474.31,372.48 474.34,372.84 474.3,373.13 474.18,373.38 474.04,373.52 473.86,373.57 473.79,373.51 473.69,373.36" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="475.04,370.47 474.94,370.31 474.79,370.21 474.67,370.2 474.48,370.39 474.41,370.59 474.37,370.89 474.37,371.14 474.4,371.49 474.54,371.99 474.67,372.25 474.77,372.4 474.92,372.51 475.04,372.51 475.24,372.32 475.31,372.13 475.35,371.83 475.34,371.58" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="475.38,370.13 475.35,370.03 475.35,369.78 475.37,369.63 475.44,369.43 475.63,369.24 475.75,369.24 475.83,369.3 475.93,369.45 475.98,369.65 475.99,369.9 475.98,370.3 475.77,371.79 476.44,371.12" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="476.34,369.17 476.31,369.07 476.31,368.82 476.33,368.67 476.4,368.47 476.59,368.28 476.71,368.28 476.79,368.34 476.89,368.49 476.94,368.69 476.95,368.94 476.94,369.34 476.73,370.83 477.4,370.16" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="473.32,375.73 473.85,375.2 473.78,376.3 473.92,376.16 474.05,376.16 474.12,376.21 474.25,376.47 474.31,376.67 474.34,377.02 474.3,377.32 474.18,377.57 474.04,377.71 473.86,377.75 473.79,377.7 473.69,377.55" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="475.04,374.65 474.94,374.5 474.79,374.39 474.67,374.39 474.48,374.58 474.41,374.78 474.37,375.07 474.37,375.32 474.4,375.68 474.54,376.18 474.67,376.44 474.77,376.59 474.92,376.7 475.04,376.7 475.24,376.51 475.31,376.31 475.35,376.01 475.34,375.76" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="475.38,374.32 475.35,374.21 475.35,373.96 475.37,373.82 475.44,373.62 475.63,373.43 475.75,373.43 475.83,373.48 475.93,373.64 475.98,373.84 475.99,374.09 475.98,374.49 475.77,375.98 476.44,375.31" style="fill:none;stroke:black;stroke-width:0.5"/>
- <polyline points="476.25,372.8 476.78,372.27 476.71,373.37 476.85,373.23 476.98,373.23 477.05,373.28 477.18,373.54 477.24,373.74 477.27,374.09 477.23,374.39 477.11,374.63 476.97,374.78 476.8,374.82 476.72,374.77 476.62,374.62" style="fill:none;stroke:black;stroke-width:0.5"/>
- </svg>
|