mhs.vue 333 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154
  1. <template>
  2. <div>
  3. <el-row :gutter="10">
  4. <el-col :span="24">
  5. <previewPicture>
  6. <template v-slot:svg>
  7. <svg class="svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="图层_1" x="0px" y="0px" width="1617.869px" height="1130.968px" viewBox="0 0 1617.869 1200.968" enable-background="new 0 0 1617.869 1130.968" xml:space="preserve" >
  8. <g id="other">
  9. <g id="addOther2"> <path fill="none" stroke="#C6A037" stroke-width="1.4" stroke-miterlimit="10" d="M1507.256,798.324c0-5.244-4.221-9.5-9.438-9.5 c-5.199,0-9.43,4.256-9.43,9.5s4.222,9.498,9.43,9.498C1503.031,807.822,1507.256,803.568,1507.256,798.324z"/> <path fill="none" stroke="#C6A037" stroke-width="1.4" stroke-miterlimit="10" d="M1488.394,781.962 c0,5.242,4.223,9.498,9.429,9.498c5.209,0,9.438-4.256,9.438-9.498c0-5.246-4.222-9.5-9.438-9.5 C1492.62,772.462,1488.394,776.716,1488.394,781.962z"/> <polyline fill="none" stroke="#C6A037" stroke-width="1.4" stroke-miterlimit="10" points="1494.435,785.692 1497.91,782.39 1500.986,785.851 "/> <line fill="none" stroke="#C6A037" stroke-width="1.4" stroke-miterlimit="10" x1="1497.977" y1="782.306" x2="1498.121" y2="776.349"/> <ellipse fill="none" stroke="#C6A037" stroke-width="1.4" stroke-miterlimit="10" cx="1511.771" cy="789.668" rx="9.501" ry="9.429"/> <polygon fill="none" stroke="#C6A037" stroke-width="1.4" stroke-miterlimit="10" points="1484.456,794.163 1479.234,789.525 1485.844,787.628 "/><ellipse fill="none" stroke="#C6A037" stroke-width="1.4" stroke-miterlimit="10" cx="1484.261" cy="790.461" rx="9.501" ry="9.429"/><polyline fill="none" stroke="#C6A037" stroke-width="1.4" stroke-miterlimit="10" points="1494.139,803.503 1497.615,800.202 1500.691,803.663 "/><line fill="none" stroke="#C6A037" stroke-width="1.4" stroke-miterlimit="10" x1="1497.682" y1="800.118" x2="1497.825" y2="794.161"/><polyline fill="none" stroke="#C6A037" stroke-width="1.4" stroke-miterlimit="10" points="1508.711,794.22 1512.186,790.918 1515.262,794.379 "/><line fill="none" stroke="#C6A037" stroke-width="1.4" stroke-miterlimit="10" x1="1512.252" y1="790.834" x2="1512.396" y2="784.877"/></g>
  10. <g id="addOther"> <path fill="none" stroke="#C6A037" stroke-width="1.4" stroke-miterlimit="10" d="M674.287,800.869c0-5.244-4.221-9.5-9.438-9.5 c-5.199,0-9.43,4.256-9.43,9.5s4.222,9.498,9.43,9.498C670.063,810.367,674.287,806.113,674.287,800.869z"/> <path fill="none" stroke="#C6A037" stroke-width="1.4" stroke-miterlimit="10" d="M655.425,784.507 c0,5.242,4.223,9.498,9.429,9.498c5.209,0,9.438-4.256,9.438-9.498c0-5.246-4.222-9.5-9.438-9.5 C659.651,775.007,655.425,779.261,655.425,784.507z"/> <polyline fill="none" stroke="#C6A037" stroke-width="1.4" stroke-miterlimit="10" points="661.466,788.237 664.941,784.935 668.018,788.396 "/> <line fill="none" stroke="#C6A037" stroke-width="1.4" stroke-miterlimit="10" x1="665.008" y1="784.851" x2="665.152" y2="778.894"/> <ellipse fill="none" stroke="#C6A037" stroke-width="1.4" stroke-miterlimit="10" cx="678.802" cy="792.213" rx="9.501" ry="9.429"/> <polygon fill="none" stroke="#C6A037" stroke-width="1.4" stroke-miterlimit="10" points="651.487,796.708 646.266,792.07 652.875,790.173 "/><ellipse fill="none" stroke="#C6A037" stroke-width="1.4" stroke-miterlimit="10" cx="651.292" cy="793.006" rx="9.501" ry="9.429"/><polyline fill="none" stroke="#C6A037" stroke-width="1.4" stroke-miterlimit="10" points="661.17,806.048 664.646,802.747 667.722,806.208 "/><line fill="none" stroke="#C6A037" stroke-width="1.4" stroke-miterlimit="10" x1="664.712" y1="802.663" x2="664.856" y2="796.706"/><polyline fill="none" stroke="#C6A037" stroke-width="1.4" stroke-miterlimit="10" points="675.742,796.765 679.217,793.463 682.293,796.924 "/><line fill="none" stroke="#C6A037" stroke-width="1.4" stroke-miterlimit="10" x1="679.284" y1="793.379" x2="679.428" y2="787.422"/></g>
  11. <g id="add"> <rect x="23.123" y="369.783" opacity="0.9" fill="#1B2522" enable-background="new " width="152.445" height="20.376"/> <rect x="23.123" y="392.371" opacity="0.9" fill="#1B2522" enable-background="new " width="152.445" height="20.372"/> <rect x="23.123" y="414.949" opacity="0.9" fill="#1B2522" enable-background="new " width="152.445" height="20.372"/> <rect x="24.169" y="437.949" opacity="0.9" fill="#1B2522" enable-background="new " width="152.445" height="20.372"/> <g> <text transform="matrix(1 0 0 1 42.3179 383.2725)" fill="#929CA0" font-family="'MicrosoftYaHei'" font-size="9.9887"> Ua(kV): </text> </g> <g> <text transform="matrix(1 0 0 1 41.46 406.3262)" fill="#929CA0" font-family="'MicrosoftYaHei'" font-size="9.9887"> Ub(kV): </text> </g> <g> <text transform="matrix(1 0 0 1 42.8311 429.9375)" fill="#929CA0" font-family="'MicrosoftYaHei'" font-size="9.9887"> Uc(kV): </text> </g> <g id="addData1">
  12. <text transform="matrix(1 0 0 1 79.2041 384.0068)" fill="#3B8646" font-family="'MicrosoftYaHei'" font-size="9.9887">{{ ajaxData.mhsuakvzb1 }}</text>
  13. <text transform="matrix(1 0 0 1 79.2041 407.2686)" fill="#3B8646" font-family="'MicrosoftYaHei'" font-size="9.9887">{{ ajaxData.mhsubkvzb1 }}</text>
  14. <text transform="matrix(1 0 0 1 79.2041 430.0391)" fill="#3B8646" font-family="'MicrosoftYaHei'" font-size="9.9887">{{ ajaxData.mhsuckvzb1 }}</text>
  15. <text transform="matrix(1 0 0 1 78.6421 452.9551)" fill="#3B8646" font-family="'MicrosoftYaHei'" font-size="9.9887">{{ ajaxData.mhs3u0kvzb1 }}</text>
  16. </g><g>
  17. <text transform="matrix(1 0 0 1 41.7568 451.5234)" fill="#929CA0" font-family="'MicrosoftYaHei'" font-size="9.9887">3U0(V): </text></g></g>
  18. <g id="add2"> <rect x="1423.31" y="371.901" opacity="0.9" fill="#1B2522" enable-background="new " width="152.261" height="20.376"/> <rect x="1423.31" y="394.489" opacity="0.9" fill="#1B2522" enable-background="new " width="152.261" height="20.372"/> <rect x="1423.31" y="417.067" opacity="0.9" fill="#1B2522" enable-background="new " width="152.261" height="20.372"/> <rect x="1424.354" y="440.067" opacity="0.9" fill="#1B2522" enable-background="new " width="152.261" height="20.372"/> <g> <text transform="matrix(1 0 0 1 1442.5049 385.3911)" fill="#929CA0" font-family="'MicrosoftYaHei'" font-size="9.9887"> Ua(kV): </text> </g> <g> <text transform="matrix(1 0 0 1 1441.6475 408.4448)" fill="#929CA0" font-family="'MicrosoftYaHei'" font-size="9.9887"> Ub(kV): </text> </g> <g> <text transform="matrix(1 0 0 1 1443.0186 432.0562)" fill="#929CA0" font-family="'MicrosoftYaHei'" font-size="9.9887"> Uc(kV): </text> </g> <g> <text transform="matrix(1 0 0 1 1441.9443 453.6421)" fill="#929CA0" font-family="'MicrosoftYaHei'" font-size="9.9887">3U0(V): </text></g></g>
  19. <rect
  20. x="431.532"
  21. y="30.892"
  22. opacity="0.9"
  23. fill="#1B2522"
  24. enable-background="new "
  25. width="147.247"
  26. height="21.631"
  27. ></rect>
  28. <rect
  29. x="431.532"
  30. y="54.872"
  31. opacity="0.9"
  32. fill="#1B2522"
  33. enable-background="new "
  34. width="147.247"
  35. height="21.631"
  36. ></rect>
  37. <rect
  38. x="431.532"
  39. y="78.851"
  40. opacity="0.9"
  41. fill="#1B2522"
  42. enable-background="new "
  43. width="147.247"
  44. height="21.633"
  45. ></rect>
  46. <g>
  47. <text
  48. transform="matrix(1 0 0 1 453.4392 47.2153)"
  49. fill="#919CA0"
  50. font-family="'MicrosoftYaHei'"
  51. font-size="10.6069"
  52. >
  53. la
  54. </text>
  55. <text
  56. transform="matrix(1 0 0 1 464.3503 47.2153)"
  57. fill="#919CA0"
  58. font-family="'MicrosoftYaHei'"
  59. font-size="10.6069"
  60. >
  61. (A)
  62. </text>
  63. <text
  64. transform="matrix(1 0 0 1 479.7937 47.2153)"
  65. fill="#919CA0"
  66. font-family="'MicrosoftYaHei'"
  67. font-size="10.6069"
  68. >
  69. :
  70. </text>
  71. </g>
  72. <g>
  73. <text
  74. transform="matrix(1 0 0 1 443.5339 68.6948)"
  75. fill="#919CA0"
  76. font-family="'MicrosoftYaHei'"
  77. font-size="10.6069"
  78. >
  79. P(MVar):
  80. </text>
  81. </g>
  82. <g>
  83. <text
  84. transform="matrix(1 0 0 1 437.1462 94.7671)"
  85. fill="#919CA0"
  86. font-family="'MicrosoftYaHei'"
  87. font-size="10.6069"
  88. >
  89. Q
  90. </text>
  91. <text
  92. transform="matrix(1 0 0 1 448.0085 94.7671)"
  93. fill="#919CA0"
  94. font-family="'MicrosoftYaHei'"
  95. font-size="10.6069"
  96. >
  97. (MVar)
  98. </text>
  99. <text
  100. transform="matrix(1 0 0 1 479.7937 94.7671)"
  101. fill="#919CA0"
  102. font-family="'MicrosoftYaHei'"
  103. font-size="10.6069"
  104. >
  105. :
  106. </text>
  107. </g>
  108. <rect
  109. x="431.532"
  110. y="102.824"
  111. opacity="0.9"
  112. fill="#1B2522"
  113. enable-background="new "
  114. width="147.247"
  115. height="21.633"
  116. ></rect>
  117. <g>
  118. <text
  119. transform="matrix(1 0 0 1 442.4128 116.647)"
  120. fill="#919CA0"
  121. font-family="'MicrosoftYaHei'"
  122. font-size="10.6069"
  123. >
  124. Ux
  125. </text>
  126. <text
  127. transform="matrix(1 0 0 1 458.53 116.647)"
  128. fill="#919CA0"
  129. font-family="'MicrosoftYaHei'"
  130. font-size="10.6069"
  131. >
  132. (kV)
  133. </text>
  134. <text
  135. transform="matrix(1 0 0 1 479.7937 116.647)"
  136. fill="#919CA0"
  137. font-family="'MicrosoftYaHei'"
  138. font-size="10.6069"
  139. >
  140. :
  141. </text>
  142. </g>
  143. <rect
  144. x="431.532"
  145. y="126.932"
  146. opacity="0.9"
  147. fill="#1B2522"
  148. enable-background="new "
  149. width="147.247"
  150. height="21.633"
  151. ></rect>
  152. <g>
  153. <text
  154. transform="matrix(1 0 0 1 448.0085 140.7544)"
  155. fill="#919CA0"
  156. font-family="'MicrosoftYaHei'"
  157. font-size="10.6069"
  158. >
  159. F
  160. </text>
  161. <text
  162. transform="matrix(1 0 0 1 458.53 140.7544)"
  163. fill="#919CA0"
  164. font-family="'MicrosoftYaHei'"
  165. font-size="10.6069"
  166. >
  167. (Hz)
  168. </text>
  169. <text
  170. transform="matrix(1 0 0 1 479.7937 140.7544)"
  171. fill="#919CA0"
  172. font-family="'MicrosoftYaHei'"
  173. font-size="10.6069"
  174. >
  175. :
  176. </text>
  177. </g>
  178. <rect
  179. x="431.532"
  180. y="150.215"
  181. opacity="0.9"
  182. fill="#1B2522"
  183. enable-background="new "
  184. width="147.247"
  185. height="21.642"
  186. ></rect>
  187. <g>
  188. <text
  189. transform="matrix(1 0 0 1 458.0837 166.5259)"
  190. fill="#919CA0"
  191. font-family="'MicrosoftYaHei'"
  192. font-size="10.6069"
  193. >
  194. COS:
  195. </text>
  196. </g>
  197. <rect
  198. x="916.76"
  199. y="105.258"
  200. opacity="0.9"
  201. fill="#1B2522"
  202. enable-background="new "
  203. width="154.674"
  204. height="21.643"
  205. ></rect>
  206. <rect
  207. x="916.76"
  208. y="129.239"
  209. opacity="0.9"
  210. fill="#1B2522"
  211. enable-background="new "
  212. width="154.674"
  213. height="21.633"
  214. ></rect>
  215. <rect
  216. x="916.76"
  217. y="153.219"
  218. opacity="0.9"
  219. fill="#1B2522"
  220. enable-background="new "
  221. width="154.674"
  222. height="21.633"
  223. ></rect>
  224. <g>
  225. <text
  226. transform="matrix(1 0 0 1 929.7029 119.5806)"
  227. fill="#929CA0"
  228. font-family="'MicrosoftYaHei'"
  229. font-size="10.6069"
  230. >
  231. Ua(kV):
  232. </text>
  233. </g>
  234. <g>
  235. <text
  236. transform="matrix(1 0 0 1 928.7917 144.061)"
  237. fill="#929CA0"
  238. font-family="'MicrosoftYaHei'"
  239. font-size="10.6069"
  240. >
  241. Ub(kV):
  242. </text>
  243. </g>
  244. <g>
  245. <text
  246. transform="matrix(1 0 0 1 930.2478 169.1333)"
  247. fill="#929CA0"
  248. font-family="'MicrosoftYaHei'"
  249. font-size="10.6069"
  250. >
  251. Uc(kV):
  252. </text>
  253. </g>
  254. <rect
  255. x="916.76"
  256. y="176.984"
  257. opacity="0.9"
  258. fill="#1B2522"
  259. enable-background="new "
  260. width="154.674"
  261. height="21.633"
  262. ></rect>
  263. <g>
  264. <text
  265. transform="matrix(1 0 0 1 923.1208 191.8989)"
  266. fill="#929CA0"
  267. font-family="'MicrosoftYaHei'"
  268. font-size="10.6069"
  269. >
  270. Uab(kV):
  271. </text>
  272. </g>
  273. <rect
  274. x="1423.638"
  275. y="462.191"
  276. opacity="0.9"
  277. fill="#1B2522"
  278. enable-background="new "
  279. width="154.674"
  280. height="21.638"
  281. ></rect>
  282. <rect
  283. x="1423.638"
  284. y="486.177"
  285. opacity="0.9"
  286. fill="#1B2522"
  287. enable-background="new "
  288. width="154.674"
  289. height="21.633"
  290. ></rect>
  291. <rect
  292. x="1423.638"
  293. y="510.153"
  294. opacity="0.9"
  295. fill="#1B2522"
  296. enable-background="new "
  297. width="154.674"
  298. height="21.633"
  299. ></rect>
  300. <g>
  301. <text
  302. transform="matrix(1 0 0 1 1436.5876 476.5142)"
  303. fill="#929CA0"
  304. font-family="'MicrosoftYaHei'"
  305. font-size="10.6069"
  306. >
  307. Uab(kV):
  308. </text>
  309. </g>
  310. <g>
  311. <text
  312. transform="matrix(1 0 0 1 1435.6765 500.9946)"
  313. fill="#929CA0"
  314. font-family="'MicrosoftYaHei'"
  315. font-size="10.6069"
  316. >
  317. Ubc(kV):
  318. </text>
  319. </g>
  320. <g>
  321. <text
  322. transform="matrix(1 0 0 1 1437.1326 526.0669)"
  323. fill="#929CA0"
  324. font-family="'MicrosoftYaHei'"
  325. font-size="10.6069"
  326. >
  327. Uca(kV):
  328. </text>
  329. </g>
  330. <text
  331. transform="matrix(0.9268 0 0 1 11.6907 217.8423)"
  332. fill="#FFFFFF"
  333. font-family="'MicrosoftYaHei'"
  334. font-size="11.1235"
  335. >
  336. 110kV 母线
  337. </text>
  338. <rect
  339. x="971.305"
  340. y="417.052"
  341. opacity="0.9"
  342. fill="#1B2522"
  343. enable-background="new "
  344. width="149.407"
  345. height="20.229"
  346. ></rect>
  347. <rect
  348. x="971.305"
  349. y="439.474"
  350. opacity="0.9"
  351. fill="#1B2522"
  352. enable-background="new "
  353. width="149.407"
  354. height="20.229"
  355. ></rect>
  356. <rect
  357. x="971.305"
  358. y="461.899"
  359. opacity="0.9"
  360. fill="#1B2522"
  361. enable-background="new "
  362. width="149.407"
  363. height="20.231"
  364. ></rect>
  365. <g>
  366. <text
  367. transform="matrix(1 0 0 1 976.571 431.3491)"
  368. fill="#929CA0"
  369. font-family="'MicrosoftYaHei'"
  370. font-size="10.6069"
  371. >
  372. 油面温度(℃):
  373. </text>
  374. </g>
  375. <g>
  376. <text
  377. transform="matrix(1 0 0 1 976.571 453.5796)"
  378. fill="#929CA0"
  379. font-family="'MicrosoftYaHei'"
  380. font-size="10.6069"
  381. >
  382. 绕阻温度(℃):
  383. </text>
  384. </g>
  385. <g>
  386. <text
  387. transform="matrix(1 0 0 1 1015.4763 477.271)"
  388. fill="#929CA0"
  389. font-family="'MicrosoftYaHei'"
  390. font-size="10.6069"
  391. >
  392. 挡位:
  393. </text>
  394. </g>
  395. <rect
  396. x="971.305"
  397. y="484.98"
  398. opacity="0.9"
  399. fill="#1B2522"
  400. enable-background="new "
  401. width="149.407"
  402. height="21.63"
  403. ></rect>
  404. <rect
  405. x="971.305"
  406. y="508.969"
  407. opacity="0.9"
  408. fill="#1B2522"
  409. enable-background="new "
  410. width="149.407"
  411. height="21.63"
  412. ></rect>
  413. <rect
  414. x="971.305"
  415. y="532.94"
  416. opacity="0.9"
  417. fill="#1B2522"
  418. enable-background="new "
  419. width="149.407"
  420. height="21.633"
  421. ></rect>
  422. <g>
  423. <text
  424. transform="matrix(1 0 0 1 1010.3357 501.3022)"
  425. fill="#919CA0"
  426. font-family="'MicrosoftYaHei'"
  427. font-size="10.6069"
  428. >
  429. la
  430. </text>
  431. <text
  432. transform="matrix(1 0 0 1 1021.2478 501.3022)"
  433. fill="#919CA0"
  434. font-family="'MicrosoftYaHei'"
  435. font-size="10.6069"
  436. >
  437. (A)
  438. </text>
  439. <text
  440. transform="matrix(1 0 0 1 1036.6912 501.3022)"
  441. fill="#919CA0"
  442. font-family="'MicrosoftYaHei'"
  443. font-size="10.6069"
  444. >
  445. :
  446. </text>
  447. </g>
  448. <g>
  449. <text
  450. transform="matrix(1 0 0 1 1000.4314 522.7817)"
  451. fill="#919CA0"
  452. font-family="'MicrosoftYaHei'"
  453. font-size="10.6069"
  454. >
  455. P(MVar):
  456. </text>
  457. </g>
  458. <g>
  459. <text
  460. transform="matrix(1 0 0 1 993.0417 548.854)"
  461. fill="#919CA0"
  462. font-family="'MicrosoftYaHei'"
  463. font-size="10.6069"
  464. >
  465. Q
  466. </text>
  467. <text
  468. transform="matrix(1 0 0 1 1000.905 548.854)"
  469. fill="#919CA0"
  470. font-family="'MicrosoftYaHei'"
  471. font-size="10.6069"
  472. >
  473. (MVar)
  474. </text>
  475. <text
  476. transform="matrix(1 0 0 1 1035.6912 548.854)"
  477. fill="#919CA0"
  478. font-family="'MicrosoftYaHei'"
  479. font-size="10.6069"
  480. >
  481. :
  482. </text>
  483. </g>
  484. <rect
  485. x="262.244"
  486. y="417.052"
  487. opacity="0.9"
  488. fill="#1B2522"
  489. enable-background="new "
  490. width="149.407"
  491. height="20.229"
  492. ></rect>
  493. <rect
  494. x="262.244"
  495. y="439.474"
  496. opacity="0.9"
  497. fill="#1B2522"
  498. enable-background="new "
  499. width="149.407"
  500. height="20.229"
  501. ></rect>
  502. <rect
  503. x="262.244"
  504. y="461.899"
  505. opacity="0.9"
  506. fill="#1B2522"
  507. enable-background="new "
  508. width="149.407"
  509. height="20.231"
  510. ></rect>
  511. <g>
  512. <text
  513. transform="matrix(1 0 0 1 267.5105 431.3491)"
  514. fill="#929CA0"
  515. font-family="'MicrosoftYaHei'"
  516. font-size="10.6069"
  517. >
  518. 油面温度(℃):
  519. </text>
  520. </g>
  521. <g>
  522. <text
  523. transform="matrix(1 0 0 1 267.5105 453.5796)"
  524. fill="#929CA0"
  525. font-family="'MicrosoftYaHei'"
  526. font-size="10.6069"
  527. >
  528. 绕阻温度(℃):
  529. </text>
  530. </g>
  531. <g>
  532. <text
  533. transform="matrix(1 0 0 1 306.4167 477.271)"
  534. fill="#929CA0"
  535. font-family="'MicrosoftYaHei'"
  536. font-size="10.6069"
  537. >
  538. 挡位:
  539. </text>
  540. </g>
  541. <rect
  542. x="262.244"
  543. y="484.98"
  544. opacity="0.9"
  545. fill="#1B2522"
  546. enable-background="new "
  547. width="149.407"
  548. height="21.63"
  549. ></rect>
  550. <rect
  551. x="262.244"
  552. y="508.969"
  553. opacity="0.9"
  554. fill="#1B2522"
  555. enable-background="new "
  556. width="149.407"
  557. height="21.63"
  558. ></rect>
  559. <rect
  560. x="262.244"
  561. y="532.94"
  562. opacity="0.9"
  563. fill="#1B2522"
  564. enable-background="new "
  565. width="149.407"
  566. height="21.633"
  567. ></rect>
  568. <g>
  569. <text
  570. transform="matrix(1 0 0 1 301.2751 501.3022)"
  571. fill="#919CA0"
  572. font-family="'MicrosoftYaHei'"
  573. font-size="10.6069"
  574. >
  575. la
  576. </text>
  577. <text
  578. transform="matrix(1 0 0 1 312.1877 501.3022)"
  579. fill="#919CA0"
  580. font-family="'MicrosoftYaHei'"
  581. font-size="10.6069"
  582. >
  583. (A)
  584. </text>
  585. <text
  586. transform="matrix(1 0 0 1 327.6301 501.3022)"
  587. fill="#919CA0"
  588. font-family="'MicrosoftYaHei'"
  589. font-size="10.6069"
  590. >
  591. :
  592. </text>
  593. </g>
  594. <g>
  595. <text
  596. transform="matrix(1 0 0 1 291.3708 522.7817)"
  597. fill="#919CA0"
  598. font-family="'MicrosoftYaHei'"
  599. font-size="10.6069"
  600. >
  601. P(MVar):
  602. </text>
  603. </g>
  604. <g>
  605. <text
  606. transform="matrix(1 0 0 1 283.9812 548.854)"
  607. fill="#919CA0"
  608. font-family="'MicrosoftYaHei'"
  609. font-size="10.6069"
  610. >
  611. Q
  612. </text>
  613. <text
  614. transform="matrix(1 0 0 1 291.8459 548.854)"
  615. fill="#919CA0"
  616. font-family="'MicrosoftYaHei'"
  617. font-size="10.6069"
  618. >
  619. (MVar)
  620. </text>
  621. <text
  622. transform="matrix(1 0 0 1 326.6301 548.854)"
  623. fill="#919CA0"
  624. font-family="'MicrosoftYaHei'"
  625. font-size="10.6069"
  626. >
  627. :
  628. </text>
  629. </g>
  630. <rect
  631. x="895.565"
  632. y="272.968"
  633. fill="#95295D"
  634. width="3.219"
  635. height="22.354"
  636. ></rect>
  637. <rect
  638. x="887.678"
  639. y="272.968"
  640. fill="#95295D"
  641. width="3.22"
  642. height="22.354"
  643. ></rect>
  644. <rect
  645. x="847.618"
  646. y="282.535"
  647. fill="#95295D"
  648. width="41.668"
  649. height="3.219"
  650. ></rect>
  651. <rect
  652. x="817.536"
  653. y="282.536"
  654. fill="#95295D"
  655. width="22.079"
  656. height="3.219"
  657. ></rect>
  658. <rect
  659. x="846.01"
  660. y="272.968"
  661. fill="#95295D"
  662. width="3.219"
  663. height="22.354"
  664. ></rect>
  665. <rect
  666. x="838.12"
  667. y="272.968"
  668. fill="#95295D"
  669. width="3.229"
  670. height="22.354"
  671. ></rect>
  672. <text
  673. transform="matrix(1 0 0 1 1000.905 288.0239)"
  674. fill="#FFFFFF"
  675. font-family="'MicrosoftYaHei'"
  676. font-size="12.6678"
  677. >
  678. 11-09
  679. </text>
  680. <text
  681. transform="matrix(1 0 0 1 876.2107 257.8052)"
  682. fill="#FFFFFF"
  683. font-family="'MicrosoftYaHei'"
  684. font-size="12.6678"
  685. >
  686. 11-9
  687. </text>
  688. <rect
  689. x="664.138"
  690. y="287.146"
  691. fill="#95295D"
  692. width="3.219"
  693. height="22.058"
  694. ></rect>
  695. <rect
  696. x="664.138"
  697. y="335.177"
  698. fill="#95295D"
  699. width="3.219"
  700. height="24.122"
  701. ></rect>
  702. <rect
  703. x="664.138"
  704. y="384.936"
  705. fill="#95295D"
  706. width="3.219"
  707. height="29.964"
  708. ></rect>
  709. <text
  710. transform="matrix(1 0 0 1 750.6599 254.6821)"
  711. fill="#FFFFFF"
  712. font-family="'MicrosoftYaHei'"
  713. font-size="12.6678"
  714. >
  715. 11-0
  716. </text>
  717. <text
  718. transform="matrix(1 0 0 1 677.9949 275.9028)"
  719. fill="#FFFFFF"
  720. font-family="'MicrosoftYaHei'"
  721. font-size="12.6678"
  722. >
  723. 101-1
  724. </text>
  725. <text
  726. transform="matrix(1 0 0 1 683.4783 320.7446)"
  727. fill="#FFFFFF"
  728. font-family="'MicrosoftYaHei'"
  729. font-size="12.6678"
  730. >
  731. 101
  732. </text>
  733. <text
  734. transform="matrix(1 0 0 1 682.4783 373.6987)"
  735. fill="#FFFFFF"
  736. font-family="'MicrosoftYaHei'"
  737. font-size="12.6678"
  738. >
  739. 101-3
  740. </text>
  741. <g>
  742. <text
  743. transform="matrix(1 0 0 1 539.2712 302.7065)"
  744. fill="#FFFFFF"
  745. font-family="'MicrosoftYaHei'"
  746. font-size="12.6678"
  747. >
  748. 101-01
  749. </text>
  750. </g>
  751. <rect
  752. x="665.21"
  753. y="234.186"
  754. fill="#95295D"
  755. width="3.227"
  756. height="27.328"
  757. ></rect>
  758. <rect
  759. x="918.427"
  760. y="273.583"
  761. fill="#95295D"
  762. width="3.219"
  763. height="9.157"
  764. ></rect>
  765. <rect
  766. x="919.494"
  767. y="234.703"
  768. fill="#95295D"
  769. width="3.229"
  770. height="11.863"
  771. ></rect>
  772. <text
  773. transform="matrix(1 0 0 1 546.699 401.9839)"
  774. fill="#FFFFFF"
  775. font-family="'MicrosoftYaHei'"
  776. font-size="12.6678"
  777. >
  778. 101-0
  779. </text>
  780. <rect
  781. x="644.176"
  782. y="394.594"
  783. fill="#95295D"
  784. width="21.438"
  785. height="3.087"
  786. ></rect>
  787. <g>
  788. <line
  789. fill="none"
  790. stroke="#47B2A9"
  791. stroke-width="3"
  792. stroke-miterlimit="10"
  793. x1="599.931"
  794. y1="405.219"
  795. x2="599.931"
  796. y2="385.635"
  797. ></line>
  798. <line
  799. fill="none"
  800. stroke="#47B2A9"
  801. stroke-width="3"
  802. stroke-miterlimit="10"
  803. x1="613.399"
  804. y1="395.427"
  805. x2="599.931"
  806. y2="395.427"
  807. ></line>
  808. <line
  809. fill="none"
  810. stroke="#47B2A9"
  811. stroke-width="3"
  812. stroke-miterlimit="10"
  813. x1="594.552"
  814. y1="401.177"
  815. x2="594.552"
  816. y2="389.677"
  817. ></line>
  818. <line
  819. fill="none"
  820. stroke="#47B2A9"
  821. stroke-width="3"
  822. stroke-miterlimit="10"
  823. x1="589.155"
  824. y1="398.927"
  825. x2="589.155"
  826. y2="391.927"
  827. ></line>
  828. </g>
  829. <rect
  830. x="644.176"
  831. y="297.197"
  832. fill="#95295D"
  833. width="21.438"
  834. height="3.087"
  835. ></rect>
  836. <g>
  837. <line
  838. fill="none"
  839. stroke="#47B2A9"
  840. stroke-width="3"
  841. stroke-miterlimit="10"
  842. x1="599.931"
  843. y1="307.816"
  844. x2="599.931"
  845. y2="288.24"
  846. ></line>
  847. <line
  848. fill="none"
  849. stroke="#47B2A9"
  850. stroke-width="3"
  851. stroke-miterlimit="10"
  852. x1="613.399"
  853. y1="298.029"
  854. x2="599.931"
  855. y2="298.029"
  856. ></line>
  857. <line
  858. fill="none"
  859. stroke="#47B2A9"
  860. stroke-width="3"
  861. stroke-miterlimit="10"
  862. x1="594.552"
  863. y1="303.775"
  864. x2="594.552"
  865. y2="292.281"
  866. ></line>
  867. <line
  868. fill="none"
  869. stroke="#47B2A9"
  870. stroke-width="3"
  871. stroke-miterlimit="10"
  872. x1="589.155"
  873. y1="301.527"
  874. x2="589.155"
  875. y2="294.528"
  876. ></line>
  877. </g>
  878. <g>
  879. <line
  880. fill="none"
  881. stroke="#47B2A9"
  882. stroke-width="3"
  883. stroke-miterlimit="10"
  884. x1="593.45"
  885. y1="496.739"
  886. x2="573.876"
  887. y2="496.739"
  888. ></line>
  889. <line
  890. fill="none"
  891. stroke="#47B2A9"
  892. stroke-width="3"
  893. stroke-miterlimit="10"
  894. x1="583.663"
  895. y1="483.27"
  896. x2="583.663"
  897. y2="496.739"
  898. ></line>
  899. <line
  900. fill="none"
  901. stroke="#47B2A9"
  902. stroke-width="3"
  903. stroke-miterlimit="10"
  904. x1="589.409"
  905. y1="502.135"
  906. x2="577.915"
  907. y2="502.135"
  908. ></line>
  909. <line
  910. fill="none"
  911. stroke="#47B2A9"
  912. stroke-width="3"
  913. stroke-miterlimit="10"
  914. x1="587.161"
  915. y1="507.514"
  916. x2="580.162"
  917. y2="507.514"
  918. ></line>
  919. </g>
  920. <text
  921. transform="matrix(1 0 0 1 754.5046 351.9771)"
  922. fill="#FFFFFF"
  923. font-family="'MicrosoftYaHei'"
  924. font-size="12.6678"
  925. >
  926. 101-03
  927. </text>
  928. <text
  929. transform="matrix(1 0 0 1 753.6711 472.9976)"
  930. fill="#FFFFFF"
  931. font-family="'MicrosoftYaHei'"
  932. font-size="12.6678"
  933. >
  934. 301-0
  935. </text>
  936. <rect
  937. x="9.87"
  938. y="231.748"
  939. fill="#95295D"
  940. width="1607.999"
  941. height="3.125"
  942. ></rect>
  943. <rect
  944. x="674.858"
  945. y="400.228"
  946. transform="matrix(0.5019 0.8649 -0.8649 0.5019 711.108 -368.7076)"
  947. fill="#A82866"
  948. width="1.652"
  949. height="65.675"
  950. ></rect>
  951. <polygon
  952. fill="#A82866"
  953. points="700.235,411.242 715.987,409.01 707.642,422.552 "
  954. ></polygon>
  955. <rect
  956. x="918.823"
  957. y="285.201"
  958. fill="#95295D"
  959. width="2.752"
  960. height="31.143"
  961. ></rect>
  962. <polygon
  963. fill="#95295D"
  964. points="926.179,315.265 920.196,332.265 914.221,315.262 "
  965. ></polygon>
  966. <rect
  967. x="912.152"
  968. y="299.969"
  969. fill="none"
  970. stroke="#95295D"
  971. stroke-width="2"
  972. stroke-miterlimit="10"
  973. width="16.095"
  974. height="42.938"
  975. ></rect>
  976. <g>
  977. <path
  978. fill="none"
  979. stroke="#A82866"
  980. stroke-width="2"
  981. stroke-miterlimit="10"
  982. d="M665.236,453.492 c6.007,0,10.875-4.869,10.875-10.874c0-6.006-4.868-10.874-10.875-10.874c-6.003,0-10.873,4.868-10.873,10.874 C654.363,448.623,659.233,453.492,665.236,453.492z"
  983. ></path>
  984. <circle
  985. fill="none"
  986. stroke="#A82866"
  987. stroke-width="2"
  988. stroke-miterlimit="10"
  989. cx="665.239"
  990. cy="424.719"
  991. r="10.874"
  992. ></circle>
  993. <polyline
  994. fill="none"
  995. stroke="#A82866"
  996. stroke-width="2"
  997. stroke-miterlimit="10"
  998. points="661.345,447.594 665.26,443.726 668.899,447.594 "
  999. ></polyline>
  1000. <line
  1001. fill="none"
  1002. stroke="#A82866"
  1003. stroke-width="2"
  1004. stroke-miterlimit="10"
  1005. x1="665.344"
  1006. y1="443.623"
  1007. x2="665.344"
  1008. y2="436.803"
  1009. ></line>
  1010. <polyline
  1011. fill="none"
  1012. stroke="#A82866"
  1013. stroke-width="2"
  1014. stroke-miterlimit="10"
  1015. points="661.345,430.113 665.26,426.244 668.899,430.113 "
  1016. ></polyline>
  1017. <line
  1018. fill="none"
  1019. stroke="#A82866"
  1020. stroke-width="2"
  1021. stroke-miterlimit="10"
  1022. x1="665.344"
  1023. y1="426.142"
  1024. x2="665.344"
  1025. y2="419.323"
  1026. ></line>
  1027. <circle
  1028. fill="none"
  1029. stroke="#A82866"
  1030. stroke-width="2"
  1031. stroke-miterlimit="10"
  1032. cx="680.228"
  1033. cy="433.605"
  1034. r="10.873"
  1035. ></circle>
  1036. <polygon
  1037. fill="none"
  1038. stroke="#A82866"
  1039. stroke-width="2"
  1040. stroke-miterlimit="10"
  1041. points="678.058,437.635 678.058,429.58 684.698,433.825 "
  1042. ></polygon>
  1043. </g>
  1044. <g>
  1045. <rect
  1046. x="473.694"
  1047. y="426.635"
  1048. fill="#4D4A70"
  1049. width="76.397"
  1050. height="21.994"
  1051. ></rect>
  1052. <text
  1053. transform="matrix(1 0 0 1 490.4875 442.0103)"
  1054. fill="#FFFFFF"
  1055. font-family="'MicrosoftYaHei'"
  1056. font-size="13.2763"
  1057. >
  1058. #1主变
  1059. </text>
  1060. </g>
  1061. <g>
  1062. <rect
  1063. x="869.83"
  1064. y="378.68"
  1065. fill="#4D4A70"
  1066. width="76.396"
  1067. height="21.994"
  1068. ></rect>
  1069. <text
  1070. transform="matrix(1 0 0 1 875.2068 394.0552)"
  1071. fill="#FFFFFF"
  1072. font-family="'MicrosoftYaHei'"
  1073. font-size="13.2763"
  1074. >
  1075. 110母线PT
  1076. </text>
  1077. </g>
  1078. <g>
  1079. <rect
  1080. x="725.277"
  1081. y="-28.32"
  1082. fill="#4D4A70"
  1083. width="76.396"
  1084. height="21.994"
  1085. ></rect>
  1086. <text
  1087. transform="matrix(1 0 0 1 743.5603 -12.9448)"
  1088. fill="#FFFFFF"
  1089. font-family="'MicrosoftYaHei'"
  1090. font-size="13.2763"
  1091. >
  1092. 南风线
  1093. </text>
  1094. </g>
  1095. <rect
  1096. x="897.177"
  1097. y="282.536"
  1098. fill="#95295D"
  1099. width="43.71"
  1100. height="3.219"
  1101. ></rect>
  1102. <polyline
  1103. fill="#95295D"
  1104. points="829.274,285.082 829.274,317.07 827.179,317.07 827.179,285.082 "
  1105. ></polyline>
  1106. <polyline
  1107. fill="#95295D"
  1108. points="874.126,284.138 874.126,306.177 872.028,306.177 872.028,284.138 "
  1109. ></polyline>
  1110. <rect
  1111. x="827.445"
  1112. y="316.344"
  1113. fill="#95295D"
  1114. width="44.259"
  1115. height="1.396"
  1116. ></rect>
  1117. <g>
  1118. <circle
  1119. fill="none"
  1120. stroke="#9F2962"
  1121. stroke-width="1.6"
  1122. stroke-miterlimit="10"
  1123. cx="881.969"
  1124. cy="332.479"
  1125. r="10.432"
  1126. ></circle>
  1127. <circle
  1128. fill="none"
  1129. stroke="#9F2962"
  1130. stroke-width="1.6"
  1131. stroke-miterlimit="10"
  1132. cx="863.866"
  1133. cy="332.479"
  1134. r="10.432"
  1135. ></circle>
  1136. <polyline
  1137. fill="none"
  1138. stroke="#9F2962"
  1139. stroke-width="1.6"
  1140. stroke-miterlimit="10"
  1141. points="878.236,327.717 881.987,331.426 885.484,327.717 "
  1142. ></polyline>
  1143. <line
  1144. fill="none"
  1145. stroke="#9F2962"
  1146. stroke-width="1.6"
  1147. stroke-miterlimit="10"
  1148. x1="882.065"
  1149. y1="331.515"
  1150. x2="882.065"
  1151. y2="338.058"
  1152. ></line>
  1153. <circle
  1154. fill="none"
  1155. stroke="#9F2962"
  1156. stroke-width="1.6"
  1157. stroke-miterlimit="10"
  1158. cx="881.969"
  1159. cy="349.674"
  1160. r="10.432"
  1161. ></circle>
  1162. <circle
  1163. fill="none"
  1164. stroke="#9F2962"
  1165. stroke-width="1.6"
  1166. stroke-miterlimit="10"
  1167. cx="863.866"
  1168. cy="349.674"
  1169. r="10.432"
  1170. ></circle>
  1171. <polyline
  1172. fill="none"
  1173. stroke="#9F2962"
  1174. stroke-width="1.6"
  1175. stroke-miterlimit="10"
  1176. points="878.236,344.903 881.987,348.612 885.484,344.903 "
  1177. ></polyline>
  1178. <line
  1179. fill="none"
  1180. stroke="#9F2962"
  1181. stroke-width="1.2"
  1182. stroke-miterlimit="10"
  1183. x1="882.065"
  1184. y1="349.059"
  1185. x2="882.065"
  1186. y2="354.892"
  1187. ></line>
  1188. <polyline
  1189. fill="none"
  1190. stroke="#9F2962"
  1191. stroke-width="1.6"
  1192. stroke-miterlimit="10"
  1193. points="860.135,344.499 863.885,348.219 867.385,344.499 "
  1194. ></polyline>
  1195. <line
  1196. fill="none"
  1197. stroke="#9F2962"
  1198. stroke-width="1.2"
  1199. stroke-miterlimit="10"
  1200. x1="864.052"
  1201. y1="349.06"
  1202. x2="864.052"
  1203. y2="354.892"
  1204. ></line>
  1205. <circle
  1206. fill="none"
  1207. stroke="#9F2962"
  1208. stroke-width="1.6"
  1209. stroke-miterlimit="10"
  1210. cx="872.394"
  1211. cy="317.289"
  1212. r="10.43"
  1213. ></circle>
  1214. <polyline
  1215. fill="none"
  1216. stroke="#9F2962"
  1217. stroke-width="1.6"
  1218. stroke-miterlimit="10"
  1219. points="868.658,312.113 872.41,315.824 875.906,312.113 "
  1220. ></polyline>
  1221. <line
  1222. fill="none"
  1223. stroke="#9F2962"
  1224. stroke-width="1.6"
  1225. stroke-miterlimit="10"
  1226. x1="872.488"
  1227. y1="315.927"
  1228. x2="872.488"
  1229. y2="322.469"
  1230. ></line>
  1231. <polygon
  1232. fill="none"
  1233. stroke="#9F2962"
  1234. stroke-width="1.6"
  1235. stroke-miterlimit="10"
  1236. points="865.147,337.285 865.147,329.563 858.779,333.635 "
  1237. ></polygon>
  1238. </g>
  1239. <rect
  1240. x="580.444"
  1241. y="424.646"
  1242. fill="#95295D"
  1243. width="73.834"
  1244. height="3.222"
  1245. ></rect>
  1246. <rect
  1247. x="580.444"
  1248. y="424.646"
  1249. fill="#95295D"
  1250. width="3.219"
  1251. height="18.423"
  1252. ></rect>
  1253. <text
  1254. transform="matrix(1 0 0 1 627.3816 528.2544)"
  1255. fill="#FFFFFF"
  1256. font-family="'MicrosoftYaHei'"
  1257. font-size="12.6678"
  1258. >
  1259. 301
  1260. </text>
  1261. <text
  1262. transform="matrix(1 0 0 1 532.1794 467.3442)"
  1263. fill="#FFFFFF"
  1264. font-family="'MicrosoftYaHei'"
  1265. font-size="12.6678"
  1266. >
  1267. 011-0
  1268. </text>
  1269. <rect
  1270. x="609.778"
  1271. y="426.304"
  1272. fill="#95295D"
  1273. width="3.079"
  1274. height="31.789"
  1275. ></rect>
  1276. <rect
  1277. x="609.594"
  1278. y="485.812"
  1279. fill="#45B2A9"
  1280. width="3.83"
  1281. height="12.58"
  1282. ></rect>
  1283. <g>
  1284. <line
  1285. fill="none"
  1286. stroke="#47B2A9"
  1287. stroke-width="3"
  1288. stroke-miterlimit="10"
  1289. x1="602.31"
  1290. y1="498.847"
  1291. x2="620.7"
  1292. y2="498.847"
  1293. ></line>
  1294. <line
  1295. fill="none"
  1296. stroke="#47B2A9"
  1297. stroke-width="3"
  1298. stroke-miterlimit="10"
  1299. x1="605.51"
  1300. y1="503.722"
  1301. x2="617.513"
  1302. y2="503.722"
  1303. ></line>
  1304. <line
  1305. fill="none"
  1306. stroke="#47B2A9"
  1307. stroke-width="3"
  1308. stroke-miterlimit="10"
  1309. x1="608.121"
  1310. y1="508.871"
  1311. x2="614.888"
  1312. y2="508.871"
  1313. ></line>
  1314. </g>
  1315. <rect
  1316. x="636.952"
  1317. y="486.75"
  1318. fill="#45B2A9"
  1319. width="3.828"
  1320. height="12.58"
  1321. ></rect>
  1322. <g>
  1323. <line
  1324. fill="none"
  1325. stroke="#47B2A9"
  1326. stroke-width="3"
  1327. stroke-miterlimit="10"
  1328. x1="629.677"
  1329. y1="499.784"
  1330. x2="648.062"
  1331. y2="499.784"
  1332. ></line>
  1333. <line
  1334. fill="none"
  1335. stroke="#47B2A9"
  1336. stroke-width="3"
  1337. stroke-miterlimit="10"
  1338. x1="632.861"
  1339. y1="504.661"
  1340. x2="644.87"
  1341. y2="504.661"
  1342. ></line>
  1343. <line
  1344. fill="none"
  1345. stroke="#47B2A9"
  1346. stroke-width="3"
  1347. stroke-miterlimit="10"
  1348. x1="635.483"
  1349. y1="509.808"
  1350. x2="642.247"
  1351. y2="509.808"
  1352. ></line>
  1353. </g>
  1354. <polygon
  1355. fill="#95295D"
  1356. points="616.273,457.931 611.51,471.498 606.736,457.929 "
  1357. ></polygon>
  1358. <polygon
  1359. fill="#95295D"
  1360. points="632.138,490.287 638.659,475.738 645.177,490.29 "
  1361. ></polygon>
  1362. <rect
  1363. x="636.952"
  1364. y="426.304"
  1365. fill="#95295D"
  1366. width="3.828"
  1367. height="14.938"
  1368. ></rect>
  1369. <polygon
  1370. fill="#95295D"
  1371. points="645.177,440.641 638.647,455.187 632.138,440.638 "
  1372. ></polygon>
  1373. <rect
  1374. x="603.804"
  1375. y="443.649"
  1376. fill="none"
  1377. stroke="#9F2962"
  1378. stroke-width="2.3"
  1379. stroke-miterlimit="10"
  1380. width="15.021"
  1381. height="42.813"
  1382. ></rect>
  1383. <rect
  1384. x="667.831"
  1385. y="248.299"
  1386. fill="#95295D"
  1387. width="21.442"
  1388. height="3.096"
  1389. ></rect>
  1390. <g>
  1391. <line
  1392. fill="none"
  1393. stroke="#47B2A9"
  1394. stroke-width="3"
  1395. stroke-miterlimit="10"
  1396. x1="733.511"
  1397. y1="240.768"
  1398. x2="733.511"
  1399. y2="260.344"
  1400. ></line>
  1401. <line
  1402. fill="none"
  1403. stroke="#47B2A9"
  1404. stroke-width="3"
  1405. stroke-miterlimit="10"
  1406. x1="720.051"
  1407. y1="250.555"
  1408. x2="733.511"
  1409. y2="250.555"
  1410. ></line>
  1411. <line
  1412. fill="none"
  1413. stroke="#47B2A9"
  1414. stroke-width="3"
  1415. stroke-miterlimit="10"
  1416. x1="738.898"
  1417. y1="244.809"
  1418. x2="738.898"
  1419. y2="256.303"
  1420. ></line>
  1421. <line
  1422. fill="none"
  1423. stroke="#47B2A9"
  1424. stroke-width="3"
  1425. stroke-miterlimit="10"
  1426. x1="744.285"
  1427. y1="247.057"
  1428. x2="744.285"
  1429. y2="254.056"
  1430. ></line>
  1431. </g>
  1432. <rect
  1433. x="666.831"
  1434. y="346.037"
  1435. fill="#95295D"
  1436. width="21.442"
  1437. height="3.087"
  1438. ></rect>
  1439. <g>
  1440. <line
  1441. fill="none"
  1442. stroke="#47B2A9"
  1443. stroke-width="3"
  1444. stroke-miterlimit="10"
  1445. x1="733.511"
  1446. y1="338.51"
  1447. x2="733.511"
  1448. y2="358.082"
  1449. ></line>
  1450. <line
  1451. fill="none"
  1452. stroke="#47B2A9"
  1453. stroke-width="3"
  1454. stroke-miterlimit="10"
  1455. x1="720.051"
  1456. y1="348.302"
  1457. x2="733.511"
  1458. y2="348.302"
  1459. ></line>
  1460. <line
  1461. fill="none"
  1462. stroke="#47B2A9"
  1463. stroke-width="3"
  1464. stroke-miterlimit="10"
  1465. x1="738.898"
  1466. y1="342.552"
  1467. x2="738.898"
  1468. y2="354.041"
  1469. ></line>
  1470. <line
  1471. fill="none"
  1472. stroke="#47B2A9"
  1473. stroke-width="3"
  1474. stroke-miterlimit="10"
  1475. x1="744.285"
  1476. y1="344.802"
  1477. x2="744.285"
  1478. y2="351.802"
  1479. ></line>
  1480. </g>
  1481. <rect
  1482. x="666.831"
  1483. y="466.094"
  1484. fill="#C6A037"
  1485. width="21.442"
  1486. height="3.087"
  1487. ></rect>
  1488. <g>
  1489. <line
  1490. fill="none"
  1491. stroke="#47B2A9"
  1492. stroke-width="3"
  1493. stroke-miterlimit="10"
  1494. x1="733.511"
  1495. y1="458.556"
  1496. x2="733.511"
  1497. y2="478.135"
  1498. ></line>
  1499. <line
  1500. fill="none"
  1501. stroke="#47B2A9"
  1502. stroke-width="3"
  1503. stroke-miterlimit="10"
  1504. x1="720.051"
  1505. y1="468.344"
  1506. x2="733.511"
  1507. y2="468.344"
  1508. ></line>
  1509. <line
  1510. fill="none"
  1511. stroke="#47B2A9"
  1512. stroke-width="3"
  1513. stroke-miterlimit="10"
  1514. x1="738.898"
  1515. y1="462.596"
  1516. x2="738.898"
  1517. y2="474.094"
  1518. ></line>
  1519. <line
  1520. fill="none"
  1521. stroke="#47B2A9"
  1522. stroke-width="3"
  1523. stroke-miterlimit="10"
  1524. x1="744.285"
  1525. y1="464.844"
  1526. x2="744.285"
  1527. y2="471.844"
  1528. ></line>
  1529. </g>
  1530. <rect
  1531. x="1338.51"
  1532. y="287.146"
  1533. fill="#95295D"
  1534. width="3.219"
  1535. height="22.058"
  1536. ></rect>
  1537. <rect
  1538. x="1338.51"
  1539. y="335.177"
  1540. fill="#95295D"
  1541. width="3.219"
  1542. height="24.122"
  1543. ></rect>
  1544. <rect
  1545. x="1338.51"
  1546. y="384.936"
  1547. fill="#95295D"
  1548. width="3.219"
  1549. height="29.964"
  1550. ></rect>
  1551. <text
  1552. transform="matrix(1 0 0 1 1427.8767 252.0571)"
  1553. fill="#FFFFFF"
  1554. font-family="'MicrosoftYaHei'"
  1555. font-size="12.6678"
  1556. >
  1557. 12-0
  1558. </text>
  1559. <text
  1560. transform="matrix(1 0 0 1 1352.3611 275.9028)"
  1561. fill="#FFFFFF"
  1562. font-family="'MicrosoftYaHei'"
  1563. font-size="12.6678"
  1564. >
  1565. 102-1
  1566. </text>
  1567. <text
  1568. transform="matrix(1 0 0 1 1352.3611 325.8618)"
  1569. fill="#FFFFFF"
  1570. font-family="'MicrosoftYaHei'"
  1571. font-size="12.6678"
  1572. >
  1573. 102
  1574. </text>
  1575. <text
  1576. transform="matrix(1 0 0 1 1352.3611 373.6987)"
  1577. fill="#FFFFFF"
  1578. font-family="'MicrosoftYaHei'"
  1579. font-size="12.6678"
  1580. >
  1581. 102-3
  1582. </text>
  1583. <g>
  1584. <text
  1585. transform="matrix(1 0 0 1 1212.7869 303.6245)"
  1586. fill="#FFFFFF"
  1587. font-family="'MicrosoftYaHei'"
  1588. font-size="12.6678"
  1589. >
  1590. 102-01
  1591. </text>
  1592. </g>
  1593. <rect
  1594. x="1339.574"
  1595. y="234.186"
  1596. fill="#95295D"
  1597. width="3.222"
  1598. height="27.328"
  1599. ></rect>
  1600. <text
  1601. transform="matrix(1 0 0 1 1220.2156 399.9731)"
  1602. fill="#FFFFFF"
  1603. font-family="'MicrosoftYaHei'"
  1604. font-size="12.6678"
  1605. >
  1606. 102-0
  1607. </text>
  1608. <rect
  1609. x="1318.532"
  1610. y="394.594"
  1611. fill="#95295D"
  1612. width="21.442"
  1613. height="3.087"
  1614. ></rect>
  1615. <g>
  1616. <line
  1617. fill="none"
  1618. stroke="#47B2A9"
  1619. stroke-width="3"
  1620. stroke-miterlimit="10"
  1621. x1="1274.302"
  1622. y1="405.219"
  1623. x2="1274.302"
  1624. y2="385.635"
  1625. ></line>
  1626. <line
  1627. fill="none"
  1628. stroke="#47B2A9"
  1629. stroke-width="3"
  1630. stroke-miterlimit="10"
  1631. x1="1287.766"
  1632. y1="395.427"
  1633. x2="1274.302"
  1634. y2="395.427"
  1635. ></line>
  1636. <line
  1637. fill="none"
  1638. stroke="#47B2A9"
  1639. stroke-width="3"
  1640. stroke-miterlimit="10"
  1641. x1="1268.908"
  1642. y1="401.177"
  1643. x2="1268.908"
  1644. y2="389.677"
  1645. ></line>
  1646. <line
  1647. fill="none"
  1648. stroke="#47B2A9"
  1649. stroke-width="3"
  1650. stroke-miterlimit="10"
  1651. x1="1263.521"
  1652. y1="398.927"
  1653. x2="1263.521"
  1654. y2="391.927"
  1655. ></line>
  1656. </g>
  1657. <rect
  1658. x="1318.532"
  1659. y="297.197"
  1660. fill="#95295D"
  1661. width="21.442"
  1662. height="3.087"
  1663. ></rect>
  1664. <g>
  1665. <line
  1666. fill="none"
  1667. stroke="#47B2A9"
  1668. stroke-width="3"
  1669. stroke-miterlimit="10"
  1670. x1="1274.302"
  1671. y1="307.816"
  1672. x2="1274.302"
  1673. y2="288.24"
  1674. ></line>
  1675. <line
  1676. fill="none"
  1677. stroke="#47B2A9"
  1678. stroke-width="3"
  1679. stroke-miterlimit="10"
  1680. x1="1287.766"
  1681. y1="298.029"
  1682. x2="1274.302"
  1683. y2="298.029"
  1684. ></line>
  1685. <line
  1686. fill="none"
  1687. stroke="#47B2A9"
  1688. stroke-width="3"
  1689. stroke-miterlimit="10"
  1690. x1="1268.908"
  1691. y1="303.775"
  1692. x2="1268.908"
  1693. y2="292.281"
  1694. ></line>
  1695. <line
  1696. fill="none"
  1697. stroke="#47B2A9"
  1698. stroke-width="3"
  1699. stroke-miterlimit="10"
  1700. x1="1263.521"
  1701. y1="301.527"
  1702. x2="1263.521"
  1703. y2="294.528"
  1704. ></line>
  1705. </g>
  1706. <g>
  1707. <line
  1708. fill="none"
  1709. stroke="#47B2A9"
  1710. stroke-width="3"
  1711. stroke-miterlimit="10"
  1712. x1="1267.817"
  1713. y1="496.739"
  1714. x2="1248.24"
  1715. y2="496.739"
  1716. ></line>
  1717. <line
  1718. fill="none"
  1719. stroke="#47B2A9"
  1720. stroke-width="3"
  1721. stroke-miterlimit="10"
  1722. x1="1258.03"
  1723. y1="483.27"
  1724. x2="1258.03"
  1725. y2="496.739"
  1726. ></line>
  1727. <line
  1728. fill="none"
  1729. stroke="#47B2A9"
  1730. stroke-width="3"
  1731. stroke-miterlimit="10"
  1732. x1="1263.776"
  1733. y1="502.135"
  1734. x2="1252.281"
  1735. y2="502.135"
  1736. ></line>
  1737. <line
  1738. fill="none"
  1739. stroke="#47B2A9"
  1740. stroke-width="3"
  1741. stroke-miterlimit="10"
  1742. x1="1261.528"
  1743. y1="507.514"
  1744. x2="1254.529"
  1745. y2="507.514"
  1746. ></line>
  1747. </g>
  1748. <text
  1749. transform="matrix(1 0 0 1 1427.8767 351.9771)"
  1750. fill="#FFFFFF"
  1751. font-family="'MicrosoftYaHei'"
  1752. font-size="12.6678"
  1753. >
  1754. 102-03
  1755. </text>
  1756. <rect
  1757. x="1349.188"
  1758. y="400.133"
  1759. transform="matrix(0.5022 0.8648 -0.8648 0.5022 1046.4832 -951.901)"
  1760. fill="#A82866"
  1761. width="1.651"
  1762. height="65.676"
  1763. ></rect>
  1764. <polygon
  1765. fill="#A82866"
  1766. points="1374.602,411.242 1390.354,409.01 1382.01,422.552 "
  1767. ></polygon>
  1768. <g>
  1769. <path
  1770. fill="none"
  1771. stroke="#A82866"
  1772. stroke-width="2"
  1773. stroke-miterlimit="10"
  1774. d="M1339.603,453.492 c6.007,0,10.875-4.869,10.875-10.874c0-6.006-4.868-10.874-10.875-10.874c-6.003,0-10.873,4.868-10.873,10.874 C1328.729,448.623,1333.6,453.492,1339.603,453.492z"
  1775. ></path>
  1776. <circle
  1777. fill="none"
  1778. stroke="#A82866"
  1779. stroke-width="2"
  1780. stroke-miterlimit="10"
  1781. cx="1339.605"
  1782. cy="424.719"
  1783. r="10.874"
  1784. ></circle>
  1785. <polyline
  1786. fill="none"
  1787. stroke="#A82866"
  1788. stroke-width="2"
  1789. stroke-miterlimit="10"
  1790. points="1335.719,447.594 1339.621,443.726 1343.266,447.594 "
  1791. ></polyline>
  1792. <line
  1793. fill="none"
  1794. stroke="#A82866"
  1795. stroke-width="2"
  1796. stroke-miterlimit="10"
  1797. x1="1339.703"
  1798. y1="443.623"
  1799. x2="1339.703"
  1800. y2="436.803"
  1801. ></line>
  1802. <polyline
  1803. fill="none"
  1804. stroke="#A82866"
  1805. stroke-width="2"
  1806. stroke-miterlimit="10"
  1807. points="1335.719,430.113 1339.621,426.244 1343.266,430.113 "
  1808. ></polyline>
  1809. <line
  1810. fill="none"
  1811. stroke="#A82866"
  1812. stroke-width="2"
  1813. stroke-miterlimit="10"
  1814. x1="1339.703"
  1815. y1="426.142"
  1816. x2="1339.703"
  1817. y2="419.323"
  1818. ></line>
  1819. <circle
  1820. fill="none"
  1821. stroke="#A82866"
  1822. stroke-width="2"
  1823. stroke-miterlimit="10"
  1824. cx="1354.594"
  1825. cy="433.605"
  1826. r="10.873"
  1827. ></circle>
  1828. <polygon
  1829. fill="none"
  1830. stroke="#A82866"
  1831. stroke-width="2"
  1832. stroke-miterlimit="10"
  1833. points="1352.427,437.635 1352.427,429.58 1359.065,433.825 "
  1834. ></polygon>
  1835. </g>
  1836. <g>
  1837. <rect
  1838. x="1148.061"
  1839. y="426.635"
  1840. fill="#4D4A70"
  1841. width="76.396"
  1842. height="21.994"
  1843. ></rect>
  1844. <text
  1845. transform="matrix(1 0 0 1 1164.8533 442.0103)"
  1846. fill="#FFFFFF"
  1847. font-family="'MicrosoftYaHei'"
  1848. font-size="13.2763"
  1849. >
  1850. #2主变
  1851. </text>
  1852. </g>
  1853. <rect
  1854. x="1254.811"
  1855. y="424.646"
  1856. fill="#95295D"
  1857. width="73.834"
  1858. height="3.222"
  1859. ></rect>
  1860. <rect
  1861. x="1254.811"
  1862. y="424.646"
  1863. fill="#95295D"
  1864. width="3.219"
  1865. height="18.423"
  1866. ></rect>
  1867. <text
  1868. transform="matrix(1 0 0 1 1301.7498 528.2544)"
  1869. fill="#FFFFFF"
  1870. font-family="'MicrosoftYaHei'"
  1871. font-size="12.6678"
  1872. >
  1873. 302
  1874. </text>
  1875. <text
  1876. transform="matrix(1 0 0 1 1206.5447 467.3442)"
  1877. fill="#FFFFFF"
  1878. font-family="'MicrosoftYaHei'"
  1879. font-size="12.6678"
  1880. >
  1881. 012-0
  1882. </text>
  1883. <rect
  1884. x="1284.145"
  1885. y="426.304"
  1886. fill="#95295D"
  1887. width="3.079"
  1888. height="31.789"
  1889. ></rect>
  1890. <rect
  1891. x="1283.958"
  1892. y="485.812"
  1893. fill="#45B2A9"
  1894. width="3.828"
  1895. height="12.58"
  1896. ></rect>
  1897. <g>
  1898. <line
  1899. fill="none"
  1900. stroke="#47B2A9"
  1901. stroke-width="3"
  1902. stroke-miterlimit="10"
  1903. x1="1276.677"
  1904. y1="498.847"
  1905. x2="1295.067"
  1906. y2="498.847"
  1907. ></line>
  1908. <line
  1909. fill="none"
  1910. stroke="#47B2A9"
  1911. stroke-width="3"
  1912. stroke-miterlimit="10"
  1913. x1="1279.866"
  1914. y1="503.722"
  1915. x2="1291.885"
  1916. y2="503.722"
  1917. ></line>
  1918. <line
  1919. fill="none"
  1920. stroke="#47B2A9"
  1921. stroke-width="3"
  1922. stroke-miterlimit="10"
  1923. x1="1282.488"
  1924. y1="508.871"
  1925. x2="1289.26"
  1926. y2="508.871"
  1927. ></line>
  1928. </g>
  1929. <rect
  1930. x="1311.319"
  1931. y="487.75"
  1932. fill="#45B2A9"
  1933. width="3.828"
  1934. height="12.58"
  1935. ></rect>
  1936. <g>
  1937. <line
  1938. fill="none"
  1939. stroke="#47B2A9"
  1940. stroke-width="3"
  1941. stroke-miterlimit="10"
  1942. x1="1304.035"
  1943. y1="500.784"
  1944. x2="1322.428"
  1945. y2="500.784"
  1946. ></line>
  1947. <line
  1948. fill="none"
  1949. stroke="#47B2A9"
  1950. stroke-width="3"
  1951. stroke-miterlimit="10"
  1952. x1="1307.228"
  1953. y1="505.661"
  1954. x2="1319.237"
  1955. y2="505.661"
  1956. ></line>
  1957. <line
  1958. fill="none"
  1959. stroke="#47B2A9"
  1960. stroke-width="3"
  1961. stroke-miterlimit="10"
  1962. x1="1309.85"
  1963. y1="510.808"
  1964. x2="1316.614"
  1965. y2="510.808"
  1966. ></line>
  1967. </g>
  1968. <polygon
  1969. fill="#95295D"
  1970. points="1290.64,457.931 1285.867,471.498 1281.103,457.929 "
  1971. ></polygon>
  1972. <polygon
  1973. fill="#95295D"
  1974. points="1306.51,491.287 1313.026,476.738 1319.535,491.29 "
  1975. ></polygon>
  1976. <rect
  1977. x="1311.319"
  1978. y="426.304"
  1979. fill="#95295D"
  1980. width="3.828"
  1981. height="14.938"
  1982. ></rect>
  1983. <polygon
  1984. fill="#95295D"
  1985. points="1319.535,440.641 1313.014,455.187 1306.51,440.638 "
  1986. ></polygon>
  1987. <rect
  1988. x="1278.177"
  1989. y="443.649"
  1990. fill="none"
  1991. stroke="#9F2962"
  1992. stroke-width="2.3"
  1993. stroke-miterlimit="10"
  1994. width="15.021"
  1995. height="42.813"
  1996. ></rect>
  1997. <rect
  1998. x="1342.198"
  1999. y="248.299"
  2000. fill="#95295D"
  2001. width="21.442"
  2002. height="3.096"
  2003. ></rect>
  2004. <g>
  2005. <line
  2006. fill="none"
  2007. stroke="#47B2A9"
  2008. stroke-width="3"
  2009. stroke-miterlimit="10"
  2010. x1="1407.878"
  2011. y1="240.768"
  2012. x2="1407.878"
  2013. y2="260.344"
  2014. ></line>
  2015. <line
  2016. fill="none"
  2017. stroke="#47B2A9"
  2018. stroke-width="3"
  2019. stroke-miterlimit="10"
  2020. x1="1394.407"
  2021. y1="250.555"
  2022. x2="1407.878"
  2023. y2="250.555"
  2024. ></line>
  2025. <line
  2026. fill="none"
  2027. stroke="#47B2A9"
  2028. stroke-width="3"
  2029. stroke-miterlimit="10"
  2030. x1="1413.265"
  2031. y1="244.809"
  2032. x2="1413.265"
  2033. y2="256.303"
  2034. ></line>
  2035. <line
  2036. fill="none"
  2037. stroke="#47B2A9"
  2038. stroke-width="3"
  2039. stroke-miterlimit="10"
  2040. x1="1418.652"
  2041. y1="247.057"
  2042. x2="1418.652"
  2043. y2="254.056"
  2044. ></line>
  2045. </g>
  2046. <rect
  2047. x="1341.198"
  2048. y="346.037"
  2049. fill="#95295D"
  2050. width="21.442"
  2051. height="3.087"
  2052. ></rect>
  2053. <g>
  2054. <line
  2055. fill="none"
  2056. stroke="#47B2A9"
  2057. stroke-width="3"
  2058. stroke-miterlimit="10"
  2059. x1="1407.878"
  2060. y1="338.51"
  2061. x2="1407.878"
  2062. y2="358.082"
  2063. ></line>
  2064. <line
  2065. fill="none"
  2066. stroke="#47B2A9"
  2067. stroke-width="3"
  2068. stroke-miterlimit="10"
  2069. x1="1394.407"
  2070. y1="348.302"
  2071. x2="1407.878"
  2072. y2="348.302"
  2073. ></line>
  2074. <line
  2075. fill="none"
  2076. stroke="#47B2A9"
  2077. stroke-width="3"
  2078. stroke-miterlimit="10"
  2079. x1="1413.265"
  2080. y1="342.552"
  2081. x2="1413.265"
  2082. y2="354.041"
  2083. ></line>
  2084. <line
  2085. fill="none"
  2086. stroke="#47B2A9"
  2087. stroke-width="3"
  2088. stroke-miterlimit="10"
  2089. x1="1418.652"
  2090. y1="344.802"
  2091. x2="1418.652"
  2092. y2="351.802"
  2093. ></line>
  2094. </g>
  2095. <g>
  2096. <line
  2097. fill="none"
  2098. stroke="#47B2A9"
  2099. stroke-width="3"
  2100. stroke-miterlimit="10"
  2101. x1="984.773"
  2102. y1="273.583"
  2103. x2="984.773"
  2104. y2="293.158"
  2105. ></line>
  2106. <line
  2107. fill="none"
  2108. stroke="#47B2A9"
  2109. stroke-width="3"
  2110. stroke-miterlimit="10"
  2111. x1="971.305"
  2112. y1="283.37"
  2113. x2="984.773"
  2114. y2="283.37"
  2115. ></line>
  2116. <line
  2117. fill="none"
  2118. stroke="#47B2A9"
  2119. stroke-width="3"
  2120. stroke-miterlimit="10"
  2121. x1="990.16"
  2122. y1="277.623"
  2123. x2="990.16"
  2124. y2="289.117"
  2125. ></line>
  2126. <line
  2127. fill="none"
  2128. stroke="#47B2A9"
  2129. stroke-width="3"
  2130. stroke-miterlimit="10"
  2131. x1="995.552"
  2132. y1="279.871"
  2133. x2="995.552"
  2134. y2="286.87"
  2135. ></line>
  2136. </g>
  2137. <g>
  2138. <line
  2139. fill="none"
  2140. stroke="#47B2A9"
  2141. stroke-width="3"
  2142. stroke-miterlimit="10"
  2143. x1="930.274"
  2144. y1="356.915"
  2145. x2="910.698"
  2146. y2="356.915"
  2147. ></line>
  2148. <line
  2149. fill="none"
  2150. stroke="#47B2A9"
  2151. stroke-width="3"
  2152. stroke-miterlimit="10"
  2153. x1="920.487"
  2154. y1="343.446"
  2155. x2="920.487"
  2156. y2="356.915"
  2157. ></line>
  2158. <line
  2159. fill="none"
  2160. stroke="#47B2A9"
  2161. stroke-width="3"
  2162. stroke-miterlimit="10"
  2163. x1="926.234"
  2164. y1="362.302"
  2165. x2="914.74"
  2166. y2="362.302"
  2167. ></line>
  2168. <line
  2169. fill="none"
  2170. stroke="#47B2A9"
  2171. stroke-width="3"
  2172. stroke-miterlimit="10"
  2173. x1="923.986"
  2174. y1="367.69"
  2175. x2="916.986"
  2176. y2="367.69"
  2177. ></line>
  2178. </g>
  2179. <g>
  2180. <line
  2181. fill="none"
  2182. stroke="#47B2A9"
  2183. stroke-width="3"
  2184. stroke-miterlimit="10"
  2185. x1="804.08"
  2186. y1="293.933"
  2187. x2="804.08"
  2188. y2="274.357"
  2189. ></line>
  2190. <line
  2191. fill="none"
  2192. stroke="#47B2A9"
  2193. stroke-width="3"
  2194. stroke-miterlimit="10"
  2195. x1="817.552"
  2196. y1="284.146"
  2197. x2="804.08"
  2198. y2="284.146"
  2199. ></line>
  2200. <line
  2201. fill="none"
  2202. stroke="#47B2A9"
  2203. stroke-width="3"
  2204. stroke-miterlimit="10"
  2205. x1="798.693"
  2206. y1="289.892"
  2207. x2="798.693"
  2208. y2="278.398"
  2209. ></line>
  2210. <line
  2211. fill="none"
  2212. stroke="#47B2A9"
  2213. stroke-width="3"
  2214. stroke-miterlimit="10"
  2215. x1="793.306"
  2216. y1="287.644"
  2217. x2="793.306"
  2218. y2="280.645"
  2219. ></line>
  2220. </g>
  2221. <text
  2222. transform="matrix(1.0076 0 0 1 76.697 640.7173)"
  2223. fill="#FFFFFF"
  2224. font-family="'MicrosoftYaHei'"
  2225. font-size="13.0229"
  2226. >
  2227. 318
  2228. </text>
  2229. <rect
  2230. x="7.371"
  2231. y="590.433"
  2232. fill="#BF9C3A"
  2233. width="1018.499"
  2234. height="2.805"
  2235. ></rect>
  2236. <text
  2237. transform="matrix(1.0076 0 0 1 231.594 640.7173)"
  2238. fill="#FFFFFF"
  2239. font-family="'MicrosoftYaHei'"
  2240. font-size="13.0229"
  2241. >
  2242. 317
  2243. </text>
  2244. <text
  2245. transform="matrix(1.0076 0 0 1 223.553 749.8481)"
  2246. fill="#FFFFFF"
  2247. font-family="'MicrosoftYaHei'"
  2248. font-size="13.0229"
  2249. >
  2250. 317-0
  2251. </text>
  2252. <rect
  2253. x="248.487"
  2254. y="667.302"
  2255. fill="#BF9C3A"
  2256. width="20.029"
  2257. height="2.438"
  2258. ></rect>
  2259. <rect
  2260. x="266.054"
  2261. y="790.083"
  2262. fill="#C6A037"
  2263. width="2.463"
  2264. height="139.814"
  2265. ></rect>
  2266. <rect
  2267. x="266.054"
  2268. y="590.564"
  2269. fill="#C6A037"
  2270. width="2.463"
  2271. height="160.332"
  2272. ></rect>
  2273. <polygon
  2274. fill="#C6A037"
  2275. points="272.325,929.732 267.28,940.384 262.247,929.728 "
  2276. ></polygon>
  2277. <text
  2278. transform="matrix(1.0076 0 0 1 70.6477 759.1675)"
  2279. fill="#FFFFFF"
  2280. font-family="'MicrosoftYaHei'"
  2281. font-size="13.0229"
  2282. >
  2283. 318-0
  2284. </text>
  2285. <rect
  2286. x="97.897"
  2287. y="667.076"
  2288. fill="#BF9C3A"
  2289. width="22.437"
  2290. height="2.443"
  2291. ></rect>
  2292. <rect
  2293. x="118.466"
  2294. y="668.927"
  2295. fill="#C6A037"
  2296. width="2.471"
  2297. height="81.977"
  2298. ></rect>
  2299. <rect
  2300. x="1082.93"
  2301. y="590.433"
  2302. fill="#BF9C3A"
  2303. width="534.939"
  2304. height="2.805"
  2305. ></rect>
  2306. <rect
  2307. x="97.624"
  2308. y="667.076"
  2309. fill="#BF9C3A"
  2310. width="2.463"
  2311. height="22.373"
  2312. ></rect>
  2313. <rect
  2314. x="246.087"
  2315. y="667.302"
  2316. fill="#BF9C3A"
  2317. width="2.463"
  2318. height="22.373"
  2319. ></rect>
  2320. <g>
  2321. <line
  2322. fill="none"
  2323. stroke="#47B2A9"
  2324. stroke-width="3"
  2325. stroke-miterlimit="10"
  2326. x1="107.685"
  2327. y1="722.765"
  2328. x2="88.108"
  2329. y2="722.765"
  2330. ></line>
  2331. <line
  2332. fill="none"
  2333. stroke="#47B2A9"
  2334. stroke-width="3"
  2335. stroke-miterlimit="10"
  2336. x1="97.897"
  2337. y1="716.875"
  2338. x2="97.897"
  2339. y2="722.765"
  2340. ></line>
  2341. <line
  2342. fill="none"
  2343. stroke="#47B2A9"
  2344. stroke-width="3"
  2345. stroke-miterlimit="10"
  2346. x1="103.644"
  2347. y1="728.152"
  2348. x2="92.149"
  2349. y2="728.152"
  2350. ></line>
  2351. <line
  2352. fill="none"
  2353. stroke="#47B2A9"
  2354. stroke-width="3"
  2355. stroke-miterlimit="10"
  2356. x1="101.396"
  2357. y1="733.541"
  2358. x2="94.397"
  2359. y2="733.541"
  2360. ></line>
  2361. </g>
  2362. <g>
  2363. <line
  2364. fill="none"
  2365. stroke="#47B2A9"
  2366. stroke-width="3"
  2367. stroke-miterlimit="10"
  2368. x1="255.874"
  2369. y1="722.765"
  2370. x2="236.298"
  2371. y2="722.765"
  2372. ></line>
  2373. <line
  2374. fill="none"
  2375. stroke="#47B2A9"
  2376. stroke-width="3"
  2377. stroke-miterlimit="10"
  2378. x1="246.087"
  2379. y1="716.875"
  2380. x2="246.087"
  2381. y2="722.765"
  2382. ></line>
  2383. <line
  2384. fill="none"
  2385. stroke="#47B2A9"
  2386. stroke-width="3"
  2387. stroke-miterlimit="10"
  2388. x1="251.833"
  2389. y1="728.152"
  2390. x2="240.339"
  2391. y2="728.152"
  2392. ></line>
  2393. <line
  2394. fill="none"
  2395. stroke="#47B2A9"
  2396. stroke-width="3"
  2397. stroke-miterlimit="10"
  2398. x1="249.585"
  2399. y1="733.541"
  2400. x2="242.587"
  2401. y2="733.541"
  2402. ></line>
  2403. </g>
  2404. <g>
  2405. <line
  2406. fill="none"
  2407. stroke="#47B2A9"
  2408. stroke-width="3"
  2409. stroke-miterlimit="10"
  2410. x1="357.436"
  2411. y1="722.765"
  2412. x2="337.859"
  2413. y2="722.765"
  2414. ></line>
  2415. <line
  2416. fill="none"
  2417. stroke="#47B2A9"
  2418. stroke-width="3"
  2419. stroke-miterlimit="10"
  2420. x1="347.648"
  2421. y1="716.875"
  2422. x2="347.648"
  2423. y2="722.765"
  2424. ></line>
  2425. <line
  2426. fill="none"
  2427. stroke="#47B2A9"
  2428. stroke-width="3"
  2429. stroke-miterlimit="10"
  2430. x1="353.395"
  2431. y1="728.152"
  2432. x2="341.9"
  2433. y2="728.152"
  2434. ></line>
  2435. <line
  2436. fill="none"
  2437. stroke="#47B2A9"
  2438. stroke-width="3"
  2439. stroke-miterlimit="10"
  2440. x1="351.146"
  2441. y1="733.541"
  2442. x2="344.147"
  2443. y2="733.541"
  2444. ></line>
  2445. </g>
  2446. <rect
  2447. x="97.897"
  2448. y="778.093"
  2449. fill="#BF9C3A"
  2450. width="22.437"
  2451. height="2.439"
  2452. ></rect>
  2453. <rect
  2454. x="97.146"
  2455. y="778.093"
  2456. fill="#BF9C3A"
  2457. width="2.462"
  2458. height="22.375"
  2459. ></rect>
  2460. <g>
  2461. <line
  2462. fill="none"
  2463. stroke="#47B2A9"
  2464. stroke-width="3"
  2465. stroke-miterlimit="10"
  2466. x1="108.164"
  2467. y1="809.927"
  2468. x2="88.588"
  2469. y2="809.927"
  2470. ></line>
  2471. <line
  2472. fill="none"
  2473. stroke="#47B2A9"
  2474. stroke-width="3"
  2475. stroke-miterlimit="10"
  2476. x1="98.377"
  2477. y1="799.029"
  2478. x2="98.377"
  2479. y2="809.927"
  2480. ></line>
  2481. <line
  2482. fill="none"
  2483. stroke="#47B2A9"
  2484. stroke-width="3"
  2485. stroke-miterlimit="10"
  2486. x1="104.123"
  2487. y1="815.306"
  2488. x2="92.629"
  2489. y2="815.306"
  2490. ></line>
  2491. <line
  2492. fill="none"
  2493. stroke="#47B2A9"
  2494. stroke-width="3"
  2495. stroke-miterlimit="10"
  2496. x1="101.875"
  2497. y1="820.695"
  2498. x2="94.876"
  2499. y2="820.695"
  2500. ></line>
  2501. </g>
  2502. <g>
  2503. <ellipse
  2504. fill="none"
  2505. stroke="#C6A037"
  2506. stroke-width="1.6"
  2507. stroke-miterlimit="10"
  2508. cx="120.009"
  2509. cy="779.099"
  2510. rx="11.07"
  2511. ry="10.984"
  2512. ></ellipse>
  2513. <polyline
  2514. fill="none"
  2515. stroke="#C6A037"
  2516. stroke-width="1.6"
  2517. stroke-miterlimit="10"
  2518. points="116.163,784.437 120.146,780.529 123.856,784.437 "
  2519. ></polyline>
  2520. <line
  2521. fill="none"
  2522. stroke="#C6A037"
  2523. stroke-width="1.6"
  2524. stroke-miterlimit="10"
  2525. x1="120.011"
  2526. y1="780.427"
  2527. x2="120.011"
  2528. y2="773.533"
  2529. ></line>
  2530. <path
  2531. fill="none"
  2532. stroke="#C6A037"
  2533. stroke-width="1.6"
  2534. stroke-miterlimit="10"
  2535. d="M131.079,761.718 c0-6.066-4.955-10.984-11.063-10.984c-6.116,0-11.07,4.918-11.07,10.984c0,6.064,4.954,10.98,11.07,10.98 C126.124,772.699,131.079,767.779,131.079,761.718z"
  2536. ></path>
  2537. <polygon
  2538. fill="none"
  2539. stroke="#C6A037"
  2540. stroke-width="1.6"
  2541. stroke-miterlimit="10"
  2542. points="124.109,764.984 115.911,764.984 120.233,758.273 "
  2543. ></polygon>
  2544. </g>
  2545. <rect
  2546. x="244.769"
  2547. y="778.093"
  2548. fill="#BF9C3A"
  2549. width="22.437"
  2550. height="2.439"
  2551. ></rect>
  2552. <rect
  2553. x="244.017"
  2554. y="778.093"
  2555. fill="#BF9C3A"
  2556. width="2.463"
  2557. height="22.375"
  2558. ></rect>
  2559. <g>
  2560. <line
  2561. fill="none"
  2562. stroke="#47B2A9"
  2563. stroke-width="3"
  2564. stroke-miterlimit="10"
  2565. x1="255.036"
  2566. y1="809.927"
  2567. x2="235.46"
  2568. y2="809.927"
  2569. ></line>
  2570. <line
  2571. fill="none"
  2572. stroke="#47B2A9"
  2573. stroke-width="3"
  2574. stroke-miterlimit="10"
  2575. x1="245.249"
  2576. y1="799.029"
  2577. x2="245.249"
  2578. y2="809.927"
  2579. ></line>
  2580. <line
  2581. fill="none"
  2582. stroke="#47B2A9"
  2583. stroke-width="3"
  2584. stroke-miterlimit="10"
  2585. x1="250.995"
  2586. y1="815.306"
  2587. x2="239.501"
  2588. y2="815.306"
  2589. ></line>
  2590. <line
  2591. fill="none"
  2592. stroke="#47B2A9"
  2593. stroke-width="3"
  2594. stroke-miterlimit="10"
  2595. x1="248.747"
  2596. y1="820.695"
  2597. x2="241.747"
  2598. y2="820.695"
  2599. ></line>
  2600. </g>
  2601. <g>
  2602. <path
  2603. fill="none"
  2604. stroke="#C6A037"
  2605. stroke-width="1.6"
  2606. stroke-miterlimit="10"
  2607. d="M277.951,779.099 c0-6.068-4.956-10.984-11.066-10.984c-6.107,0-11.064,4.916-11.064,10.984c0,6.063,4.957,10.984,11.064,10.984 C272.995,790.083,277.951,785.166,277.951,779.099z"
  2608. ></path>
  2609. <polyline
  2610. fill="none"
  2611. stroke="#C6A037"
  2612. stroke-width="1.6"
  2613. stroke-miterlimit="10"
  2614. points="263.034,784.437 267.017,780.529 270.728,784.437 "
  2615. ></polyline>
  2616. <line
  2617. fill="none"
  2618. stroke="#C6A037"
  2619. stroke-width="1.6"
  2620. stroke-miterlimit="10"
  2621. x1="266.883"
  2622. y1="780.427"
  2623. x2="266.883"
  2624. y2="773.533"
  2625. ></line>
  2626. <path
  2627. fill="none"
  2628. stroke="#C6A037"
  2629. stroke-width="1.6"
  2630. stroke-miterlimit="10"
  2631. d="M277.951,761.718 c0-6.066-4.956-10.984-11.066-10.984c-6.107,0-11.063,4.918-11.063,10.984c0,6.064,4.955,10.98,11.063,10.98 C272.995,772.699,277.951,767.779,277.951,761.718z"
  2632. ></path>
  2633. <polygon
  2634. fill="none"
  2635. stroke="#C6A037"
  2636. stroke-width="1.6"
  2637. stroke-miterlimit="10"
  2638. points="270.981,764.984 262.782,764.984 267.105,758.273 "
  2639. ></polygon>
  2640. </g>
  2641. <text
  2642. transform="matrix(1.0076 0 0 1 331.4724 640.7173)"
  2643. fill="#FFFFFF"
  2644. font-family="'MicrosoftYaHei'"
  2645. font-size="13.0229"
  2646. >
  2647. 316
  2648. </text>
  2649. <text
  2650. transform="matrix(1.0076 0 0 1 323.4314 749.8481)"
  2651. fill="#FFFFFF"
  2652. font-family="'MicrosoftYaHei'"
  2653. font-size="13.0229"
  2654. >
  2655. 316-0
  2656. </text>
  2657. <text
  2658. transform="matrix(1.0076 0 0 1 378.4099 714.3267)"
  2659. fill="#FFFFFF"
  2660. font-family="'MicrosoftYaHei'"
  2661. font-size="13.0229"
  2662. >
  2663. 316-3
  2664. </text>
  2665. <text
  2666. transform="matrix(1.0076 0 0 1 378.4099 837.5767)"
  2667. fill="#FFFFFF"
  2668. font-family="'MicrosoftYaHei'"
  2669. font-size="13.0229"
  2670. >
  2671. 316-03
  2672. </text>
  2673. <text
  2674. transform="matrix(1.0076 0 0 1 331.4724 902.3267)"
  2675. fill="#FFFFFF"
  2676. font-family="'MicrosoftYaHei'"
  2677. font-size="13.0229"
  2678. >
  2679. 2C-0
  2680. </text>
  2681. <rect
  2682. x="348.366"
  2683. y="667.302"
  2684. fill="#BF9C3A"
  2685. width="20.028"
  2686. height="2.438"
  2687. ></rect>
  2688. <rect
  2689. x="365.933"
  2690. y="774.765"
  2691. fill="#C6A037"
  2692. width="2.463"
  2693. height="155.131"
  2694. ></rect>
  2695. <rect
  2696. x="365.933"
  2697. y="590.564"
  2698. fill="#C6A037"
  2699. width="2.463"
  2700. height="109.635"
  2701. ></rect>
  2702. <rect
  2703. x="365.933"
  2704. y="725.152"
  2705. fill="#C6A037"
  2706. width="2.463"
  2707. height="39.574"
  2708. ></rect>
  2709. <rect
  2710. x="359.259"
  2711. y="764.416"
  2712. fill="#C6A037"
  2713. width="15.813"
  2714. height="2.473"
  2715. ></rect>
  2716. <rect
  2717. x="359.259"
  2718. y="772.302"
  2719. fill="#C6A037"
  2720. width="15.813"
  2721. height="2.463"
  2722. ></rect>
  2723. <polygon
  2724. fill="#C6A037"
  2725. points="372.203,929.732 367.159,940.384 362.126,929.728 "
  2726. ></polygon>
  2727. <rect
  2728. x="345.966"
  2729. y="667.302"
  2730. fill="#BF9C3A"
  2731. width="2.471"
  2732. height="22.373"
  2733. ></rect>
  2734. <g>
  2735. <line
  2736. fill="none"
  2737. stroke="#47B2A9"
  2738. stroke-width="3"
  2739. stroke-miterlimit="10"
  2740. x1="357.436"
  2741. y1="873.158"
  2742. x2="337.859"
  2743. y2="873.158"
  2744. ></line>
  2745. <line
  2746. fill="none"
  2747. stroke="#47B2A9"
  2748. stroke-width="3"
  2749. stroke-miterlimit="10"
  2750. x1="347.648"
  2751. y1="867.267"
  2752. x2="347.648"
  2753. y2="873.158"
  2754. ></line>
  2755. <line
  2756. fill="none"
  2757. stroke="#47B2A9"
  2758. stroke-width="3"
  2759. stroke-miterlimit="10"
  2760. x1="353.395"
  2761. y1="878.552"
  2762. x2="341.9"
  2763. y2="878.552"
  2764. ></line>
  2765. <line
  2766. fill="none"
  2767. stroke="#47B2A9"
  2768. stroke-width="3"
  2769. stroke-miterlimit="10"
  2770. x1="351.146"
  2771. y1="883.933"
  2772. x2="344.147"
  2773. y2="883.933"
  2774. ></line>
  2775. </g>
  2776. <rect
  2777. x="348.366"
  2778. y="817.695"
  2779. fill="#BF9C3A"
  2780. width="20.028"
  2781. height="2.443"
  2782. ></rect>
  2783. <rect
  2784. x="345.966"
  2785. y="817.695"
  2786. fill="#BF9C3A"
  2787. width="2.471"
  2788. height="22.373"
  2789. ></rect>
  2790. <g>
  2791. <line
  2792. fill="none"
  2793. stroke="#47B2A9"
  2794. stroke-width="3"
  2795. stroke-miterlimit="10"
  2796. x1="379.355"
  2797. y1="797.384"
  2798. x2="398.932"
  2799. y2="797.384"
  2800. ></line>
  2801. <line
  2802. fill="none"
  2803. stroke="#47B2A9"
  2804. stroke-width="3"
  2805. stroke-miterlimit="10"
  2806. x1="389.143"
  2807. y1="791.486"
  2808. x2="389.143"
  2809. y2="797.384"
  2810. ></line>
  2811. <line
  2812. fill="none"
  2813. stroke="#47B2A9"
  2814. stroke-width="3"
  2815. stroke-miterlimit="10"
  2816. x1="383.396"
  2817. y1="802.765"
  2818. x2="394.891"
  2819. y2="802.765"
  2820. ></line>
  2821. <line
  2822. fill="none"
  2823. stroke="#47B2A9"
  2824. stroke-width="3"
  2825. stroke-miterlimit="10"
  2826. x1="385.645"
  2827. y1="808.152"
  2828. x2="392.644"
  2829. y2="808.152"
  2830. ></line>
  2831. </g>
  2832. <rect
  2833. x="368.396"
  2834. y="741.914"
  2835. fill="#BF9C3A"
  2836. width="20.021"
  2837. height="2.445"
  2838. ></rect>
  2839. <rect
  2840. x="388.363"
  2841. y="741.914"
  2842. fill="#BF9C3A"
  2843. width="2.464"
  2844. height="22.375"
  2845. ></rect>
  2846. <text
  2847. transform="matrix(1.0076 0 0 1 1073.3083 640.7173)"
  2848. fill="#FFFFFF"
  2849. font-family="'MicrosoftYaHei'"
  2850. font-size="13.0229"
  2851. >
  2852. 323
  2853. </text>
  2854. <text
  2855. transform="matrix(1.0076 0 0 1 1067.2595 759.1675)"
  2856. fill="#FFFFFF"
  2857. font-family="'MicrosoftYaHei'"
  2858. font-size="13.0229"
  2859. >
  2860. 323-0
  2861. </text>
  2862. <rect
  2863. x="1094.51"
  2864. y="667.076"
  2865. fill="#BF9C3A"
  2866. width="22.437"
  2867. height="2.443"
  2868. ></rect>
  2869. <rect
  2870. x="1115.075"
  2871. y="668.927"
  2872. fill="#C6A037"
  2873. width="2.463"
  2874. height="81.977"
  2875. ></rect>
  2876. <rect
  2877. x="1115.075"
  2878. y="590.564"
  2879. fill="#C6A037"
  2880. width="2.463"
  2881. height="84.512"
  2882. ></rect>
  2883. <rect
  2884. x="1094.235"
  2885. y="667.076"
  2886. fill="#BF9C3A"
  2887. width="2.462"
  2888. height="22.373"
  2889. ></rect>
  2890. <g>
  2891. <line
  2892. fill="none"
  2893. stroke="#47B2A9"
  2894. stroke-width="3"
  2895. stroke-miterlimit="10"
  2896. x1="1104.302"
  2897. y1="722.765"
  2898. x2="1084.72"
  2899. y2="722.765"
  2900. ></line>
  2901. <line
  2902. fill="none"
  2903. stroke="#47B2A9"
  2904. stroke-width="3"
  2905. stroke-miterlimit="10"
  2906. x1="1094.51"
  2907. y1="716.875"
  2908. x2="1094.51"
  2909. y2="722.765"
  2910. ></line>
  2911. <line
  2912. fill="none"
  2913. stroke="#47B2A9"
  2914. stroke-width="3"
  2915. stroke-miterlimit="10"
  2916. x1="1100.26"
  2917. y1="728.152"
  2918. x2="1088.761"
  2919. y2="728.152"
  2920. ></line>
  2921. <line
  2922. fill="none"
  2923. stroke="#47B2A9"
  2924. stroke-width="3"
  2925. stroke-miterlimit="10"
  2926. x1="1098.01"
  2927. y1="733.541"
  2928. x2="1091.01"
  2929. y2="733.541"
  2930. ></line>
  2931. </g>
  2932. <rect
  2933. x="1094.51"
  2934. y="778.093"
  2935. fill="#BF9C3A"
  2936. width="22.437"
  2937. height="2.439"
  2938. ></rect>
  2939. <rect
  2940. x="1093.76"
  2941. y="778.093"
  2942. fill="#BF9C3A"
  2943. width="2.461"
  2944. height="22.375"
  2945. ></rect>
  2946. <g>
  2947. <line
  2948. fill="none"
  2949. stroke="#47B2A9"
  2950. stroke-width="3"
  2951. stroke-miterlimit="10"
  2952. x1="1104.774"
  2953. y1="809.927"
  2954. x2="1085.198"
  2955. y2="809.927"
  2956. ></line>
  2957. <line
  2958. fill="none"
  2959. stroke="#47B2A9"
  2960. stroke-width="3"
  2961. stroke-miterlimit="10"
  2962. x1="1094.987"
  2963. y1="799.029"
  2964. x2="1094.987"
  2965. y2="809.927"
  2966. ></line>
  2967. <line
  2968. fill="none"
  2969. stroke="#47B2A9"
  2970. stroke-width="3"
  2971. stroke-miterlimit="10"
  2972. x1="1100.733"
  2973. y1="815.306"
  2974. x2="1089.239"
  2975. y2="815.306"
  2976. ></line>
  2977. <line
  2978. fill="none"
  2979. stroke="#47B2A9"
  2980. stroke-width="3"
  2981. stroke-miterlimit="10"
  2982. x1="1098.485"
  2983. y1="820.695"
  2984. x2="1091.487"
  2985. y2="820.695"
  2986. ></line>
  2987. </g>
  2988. <g>
  2989. <path
  2990. fill="none"
  2991. stroke="#C6A037"
  2992. stroke-width="1.6"
  2993. stroke-miterlimit="10"
  2994. d="M1127.69,779.099 c0-6.068-4.956-10.984-11.066-10.984c-6.107,0-11.064,4.916-11.064,10.984c0,6.063,4.957,10.984,11.064,10.984 C1122.734,790.083,1127.69,785.166,1127.69,779.099z"
  2995. ></path>
  2996. <polyline
  2997. fill="none"
  2998. stroke="#C6A037"
  2999. stroke-width="1.6"
  3000. stroke-miterlimit="10"
  3001. points="1112.774,784.437 1116.76,780.529 1120.469,784.437 "
  3002. ></polyline>
  3003. <line
  3004. fill="none"
  3005. stroke="#C6A037"
  3006. stroke-width="1.6"
  3007. stroke-miterlimit="10"
  3008. x1="1116.621"
  3009. y1="780.427"
  3010. x2="1116.621"
  3011. y2="773.533"
  3012. ></line>
  3013. <path
  3014. fill="none"
  3015. stroke="#C6A037"
  3016. stroke-width="1.6"
  3017. stroke-miterlimit="10"
  3018. d="M1127.69,761.718 c0-6.066-4.956-10.984-11.066-10.984c-6.107,0-11.063,4.918-11.063,10.984c0,6.064,4.954,10.98,11.063,10.98 C1122.734,772.699,1127.69,767.779,1127.69,761.718z"
  3019. ></path>
  3020. <polygon
  3021. fill="none"
  3022. stroke="#C6A037"
  3023. stroke-width="1.6"
  3024. stroke-miterlimit="10"
  3025. points="1120.72,764.984 1112.521,764.984 1116.845,758.273 "
  3026. ></polygon>
  3027. </g>
  3028. <g>
  3029. <line
  3030. fill="none"
  3031. stroke="#47B2A9"
  3032. stroke-width="3"
  3033. stroke-miterlimit="10"
  3034. x1="1202.28"
  3035. y1="722.765"
  3036. x2="1182.703"
  3037. y2="722.765"
  3038. ></line>
  3039. <line
  3040. fill="none"
  3041. stroke="#47B2A9"
  3042. stroke-width="3"
  3043. stroke-miterlimit="10"
  3044. x1="1192.492"
  3045. y1="716.875"
  3046. x2="1192.492"
  3047. y2="722.765"
  3048. ></line>
  3049. <line
  3050. fill="none"
  3051. stroke="#47B2A9"
  3052. stroke-width="3"
  3053. stroke-miterlimit="10"
  3054. x1="1198.239"
  3055. y1="728.152"
  3056. x2="1186.744"
  3057. y2="728.152"
  3058. ></line>
  3059. <line
  3060. fill="none"
  3061. stroke="#47B2A9"
  3062. stroke-width="3"
  3063. stroke-miterlimit="10"
  3064. x1="1195.99"
  3065. y1="733.541"
  3066. x2="1188.991"
  3067. y2="733.541"
  3068. ></line>
  3069. </g>
  3070. <text
  3071. transform="matrix(1.0076 0 0 1 1176.3181 640.7173)"
  3072. fill="#FFFFFF"
  3073. font-family="'MicrosoftYaHei'"
  3074. font-size="13.0229"
  3075. >
  3076. 322
  3077. </text>
  3078. <text
  3079. transform="matrix(1.0076 0 0 1 1168.2771 749.8481)"
  3080. fill="#FFFFFF"
  3081. font-family="'MicrosoftYaHei'"
  3082. font-size="13.0229"
  3083. >
  3084. 322-0
  3085. </text>
  3086. <text
  3087. transform="matrix(1.0076 0 0 1 1223.2556 714.3267)"
  3088. fill="#FFFFFF"
  3089. font-family="'MicrosoftYaHei'"
  3090. font-size="13.0229"
  3091. >
  3092. 322-3
  3093. </text>
  3094. <text
  3095. transform="matrix(1.0076 0 0 1 1223.2556 837.5767)"
  3096. fill="#FFFFFF"
  3097. font-family="'MicrosoftYaHei'"
  3098. font-size="13.0229"
  3099. >
  3100. 322-03
  3101. </text>
  3102. <rect
  3103. x="1193.219"
  3104. y="667.302"
  3105. fill="#BF9C3A"
  3106. width="20.021"
  3107. height="2.438"
  3108. ></rect>
  3109. <rect
  3110. x="1210.777"
  3111. y="727.113"
  3112. fill="#C6A037"
  3113. width="2.463"
  3114. height="202.783"
  3115. ></rect>
  3116. <rect
  3117. x="1210.777"
  3118. y="590.564"
  3119. fill="#C6A037"
  3120. width="2.463"
  3121. height="109.635"
  3122. ></rect>
  3123. <polygon
  3124. fill="#C6A037"
  3125. points="1217.052,929.732 1212.01,940.384 1206.97,929.728 "
  3126. ></polygon>
  3127. <rect
  3128. x="1190.81"
  3129. y="667.302"
  3130. fill="#BF9C3A"
  3131. width="2.463"
  3132. height="22.373"
  3133. ></rect>
  3134. <g>
  3135. <line
  3136. fill="none"
  3137. stroke="#47B2A9"
  3138. stroke-width="3"
  3139. stroke-miterlimit="10"
  3140. x1="1224.199"
  3141. y1="797.384"
  3142. x2="1243.776"
  3143. y2="797.384"
  3144. ></line>
  3145. <line
  3146. fill="none"
  3147. stroke="#47B2A9"
  3148. stroke-width="3"
  3149. stroke-miterlimit="10"
  3150. x1="1233.987"
  3151. y1="791.486"
  3152. x2="1233.987"
  3153. y2="797.384"
  3154. ></line>
  3155. <line
  3156. fill="none"
  3157. stroke="#47B2A9"
  3158. stroke-width="3"
  3159. stroke-miterlimit="10"
  3160. x1="1228.24"
  3161. y1="802.765"
  3162. x2="1239.735"
  3163. y2="802.765"
  3164. ></line>
  3165. <line
  3166. fill="none"
  3167. stroke="#47B2A9"
  3168. stroke-width="3"
  3169. stroke-miterlimit="10"
  3170. x1="1230.489"
  3171. y1="808.152"
  3172. x2="1237.488"
  3173. y2="808.152"
  3174. ></line>
  3175. </g>
  3176. <rect
  3177. x="1213.24"
  3178. y="741.914"
  3179. fill="#BF9C3A"
  3180. width="20.029"
  3181. height="2.445"
  3182. ></rect>
  3183. <rect
  3184. x="1233.21"
  3185. y="741.914"
  3186. fill="#BF9C3A"
  3187. width="2.47"
  3188. height="22.375"
  3189. ></rect>
  3190. <g>
  3191. <line
  3192. fill="none"
  3193. stroke="#47B2A9"
  3194. stroke-width="3"
  3195. stroke-miterlimit="10"
  3196. x1="759.474"
  3197. y1="722.765"
  3198. x2="739.897"
  3199. y2="722.765"
  3200. ></line>
  3201. <line
  3202. fill="none"
  3203. stroke="#47B2A9"
  3204. stroke-width="3"
  3205. stroke-miterlimit="10"
  3206. x1="749.687"
  3207. y1="716.875"
  3208. x2="749.687"
  3209. y2="722.765"
  3210. ></line>
  3211. <line
  3212. fill="none"
  3213. stroke="#47B2A9"
  3214. stroke-width="3"
  3215. stroke-miterlimit="10"
  3216. x1="755.433"
  3217. y1="728.152"
  3218. x2="743.938"
  3219. y2="728.152"
  3220. ></line>
  3221. <line
  3222. fill="none"
  3223. stroke="#47B2A9"
  3224. stroke-width="3"
  3225. stroke-miterlimit="10"
  3226. x1="753.185"
  3227. y1="733.541"
  3228. x2="746.186"
  3229. y2="733.541"
  3230. ></line>
  3231. </g>
  3232. <text
  3233. transform="matrix(1.0076 0 0 1 733.5115 640.7173)"
  3234. fill="#FFFFFF"
  3235. font-family="'MicrosoftYaHei'"
  3236. font-size="13.0229"
  3237. >
  3238. 313
  3239. </text>
  3240. <text
  3241. transform="matrix(1.0076 0 0 1 725.4705 749.8481)"
  3242. fill="#FFFFFF"
  3243. font-family="'MicrosoftYaHei'"
  3244. font-size="13.0229"
  3245. >
  3246. 313-0
  3247. </text>
  3248. <rect
  3249. x="750.404"
  3250. y="667.302"
  3251. fill="#BF9C3A"
  3252. width="20.029"
  3253. height="2.438"
  3254. ></rect>
  3255. <rect
  3256. x="767.971"
  3257. y="774.765"
  3258. fill="#C6A037"
  3259. width="2.463"
  3260. height="155.131"
  3261. ></rect>
  3262. <rect
  3263. x="767.971"
  3264. y="590.564"
  3265. fill="#C6A037"
  3266. width="2.463"
  3267. height="236.021"
  3268. ></rect>
  3269. <polygon
  3270. fill="#C6A037"
  3271. points="774.24,929.732 769.197,940.384 764.162,929.728 "
  3272. ></polygon>
  3273. <rect
  3274. x="748.01"
  3275. y="667.302"
  3276. fill="#BF9C3A"
  3277. width="2.463"
  3278. height="22.373"
  3279. ></rect>
  3280. <g>
  3281. <line
  3282. fill="none"
  3283. stroke="#47B2A9"
  3284. stroke-width="3"
  3285. stroke-miterlimit="10"
  3286. x1="860.141"
  3287. y1="722.765"
  3288. x2="840.564"
  3289. y2="722.765"
  3290. ></line>
  3291. <line
  3292. fill="none"
  3293. stroke="#47B2A9"
  3294. stroke-width="3"
  3295. stroke-miterlimit="10"
  3296. x1="850.354"
  3297. y1="716.875"
  3298. x2="850.354"
  3299. y2="722.765"
  3300. ></line>
  3301. <line
  3302. fill="none"
  3303. stroke="#47B2A9"
  3304. stroke-width="3"
  3305. stroke-miterlimit="10"
  3306. x1="856.1"
  3307. y1="728.152"
  3308. x2="844.605"
  3309. y2="728.152"
  3310. ></line>
  3311. <line
  3312. fill="none"
  3313. stroke="#47B2A9"
  3314. stroke-width="3"
  3315. stroke-miterlimit="10"
  3316. x1="853.852"
  3317. y1="733.541"
  3318. x2="846.853"
  3319. y2="733.541"
  3320. ></line>
  3321. </g>
  3322. <text
  3323. transform="matrix(1.0076 0 0 1 834.1775 640.7173)"
  3324. fill="#FFFFFF"
  3325. font-family="'MicrosoftYaHei'"
  3326. font-size="13.0229"
  3327. >
  3328. 312
  3329. </text>
  3330. <text
  3331. transform="matrix(1.0076 0 0 1 826.1365 749.8481)"
  3332. fill="#FFFFFF"
  3333. font-family="'MicrosoftYaHei'"
  3334. font-size="13.0229"
  3335. >
  3336. 312-0
  3337. </text>
  3338. <rect
  3339. x="851.071"
  3340. y="667.302"
  3341. fill="#BF9C3A"
  3342. width="20.029"
  3343. height="2.438"
  3344. ></rect>
  3345. <rect
  3346. x="868.638"
  3347. y="774.765"
  3348. fill="#C6A037"
  3349. width="2.463"
  3350. height="155.131"
  3351. ></rect>
  3352. <rect
  3353. x="868.638"
  3354. y="590.564"
  3355. fill="#C6A037"
  3356. width="2.463"
  3357. height="236.021"
  3358. ></rect>
  3359. <polygon
  3360. fill="#C6A037"
  3361. points="874.907,929.732 869.864,940.384 864.829,929.728 "
  3362. ></polygon>
  3363. <rect
  3364. x="848.677"
  3365. y="667.302"
  3366. fill="#BF9C3A"
  3367. width="2.463"
  3368. height="22.373"
  3369. ></rect>
  3370. <g>
  3371. <line
  3372. fill="none"
  3373. stroke="#47B2A9"
  3374. stroke-width="3"
  3375. stroke-miterlimit="10"
  3376. x1="1378.488"
  3377. y1="722.765"
  3378. x2="1358.911"
  3379. y2="722.765"
  3380. ></line>
  3381. <line
  3382. fill="none"
  3383. stroke="#47B2A9"
  3384. stroke-width="3"
  3385. stroke-miterlimit="10"
  3386. x1="1368.7"
  3387. y1="716.875"
  3388. x2="1368.7"
  3389. y2="722.765"
  3390. ></line>
  3391. <line
  3392. fill="none"
  3393. stroke="#47B2A9"
  3394. stroke-width="3"
  3395. stroke-miterlimit="10"
  3396. x1="1374.447"
  3397. y1="728.152"
  3398. x2="1362.952"
  3399. y2="728.152"
  3400. ></line>
  3401. <line
  3402. fill="none"
  3403. stroke="#47B2A9"
  3404. stroke-width="3"
  3405. stroke-miterlimit="10"
  3406. x1="1372.198"
  3407. y1="733.541"
  3408. x2="1365.199"
  3409. y2="733.541"
  3410. ></line>
  3411. </g>
  3412. <text
  3413. transform="matrix(1.0076 0 0 1 1352.5251 640.7173)"
  3414. fill="#FFFFFF"
  3415. font-family="'MicrosoftYaHei'"
  3416. font-size="13.0229"
  3417. >
  3418. 321
  3419. </text>
  3420. <text
  3421. transform="matrix(1.0076 0 0 1 1344.4841 749.8481)"
  3422. fill="#FFFFFF"
  3423. font-family="'MicrosoftYaHei'"
  3424. font-size="13.0229"
  3425. >
  3426. 321-0
  3427. </text>
  3428. <rect
  3429. x="1369.427"
  3430. y="667.302"
  3431. fill="#BF9C3A"
  3432. width="20.021"
  3433. height="2.438"
  3434. ></rect>
  3435. <rect
  3436. x="1386.985"
  3437. y="774.765"
  3438. fill="#C6A037"
  3439. width="2.463"
  3440. height="155.131"
  3441. ></rect>
  3442. <rect
  3443. x="1386.985"
  3444. y="590.564"
  3445. fill="#C6A037"
  3446. width="2.463"
  3447. height="236.021"
  3448. ></rect>
  3449. <polygon
  3450. fill="#C6A037"
  3451. points="1393.26,929.732 1388.219,940.384 1383.178,929.728 "
  3452. ></polygon>
  3453. <rect
  3454. x="1367.018"
  3455. y="667.302"
  3456. fill="#BF9C3A"
  3457. width="2.463"
  3458. height="22.373"
  3459. ></rect>
  3460. <g>
  3461. <line
  3462. fill="none"
  3463. stroke="#47B2A9"
  3464. stroke-width="3"
  3465. stroke-miterlimit="10"
  3466. x1="962.243"
  3467. y1="722.765"
  3468. x2="942.677"
  3469. y2="722.765"
  3470. ></line>
  3471. <line
  3472. fill="none"
  3473. stroke="#47B2A9"
  3474. stroke-width="3"
  3475. stroke-miterlimit="10"
  3476. x1="952.456"
  3477. y1="716.875"
  3478. x2="952.456"
  3479. y2="722.765"
  3480. ></line>
  3481. <line
  3482. fill="none"
  3483. stroke="#47B2A9"
  3484. stroke-width="3"
  3485. stroke-miterlimit="10"
  3486. x1="958.202"
  3487. y1="728.152"
  3488. x2="946.71"
  3489. y2="728.152"
  3490. ></line>
  3491. <line
  3492. fill="none"
  3493. stroke="#47B2A9"
  3494. stroke-width="3"
  3495. stroke-miterlimit="10"
  3496. x1="955.954"
  3497. y1="733.541"
  3498. x2="948.955"
  3499. y2="733.541"
  3500. ></line>
  3501. </g>
  3502. <text
  3503. transform="matrix(1.0076 0 0 1 936.281 640.7173)"
  3504. fill="#FFFFFF"
  3505. font-family="'MicrosoftYaHei'"
  3506. font-size="13.0229"
  3507. >
  3508. 311
  3509. </text>
  3510. <text
  3511. transform="matrix(1.0076 0 0 1 928.24 749.8481)"
  3512. fill="#FFFFFF"
  3513. font-family="'MicrosoftYaHei'"
  3514. font-size="13.0229"
  3515. >
  3516. 311-0
  3517. </text>
  3518. <rect
  3519. x="953.177"
  3520. y="667.302"
  3521. fill="#BF9C3A"
  3522. width="20.021"
  3523. height="2.438"
  3524. ></rect>
  3525. <rect
  3526. x="970.74"
  3527. y="774.765"
  3528. fill="#C6A037"
  3529. width="2.463"
  3530. height="155.131"
  3531. ></rect>
  3532. <rect
  3533. x="970.74"
  3534. y="590.564"
  3535. fill="#C6A037"
  3536. width="2.463"
  3537. height="236.021"
  3538. ></rect>
  3539. <polygon
  3540. fill="#C6A037"
  3541. points="977.012,929.732 971.969,940.384 966.934,929.728 "
  3542. ></polygon>
  3543. <rect
  3544. x="950.773"
  3545. y="667.302"
  3546. fill="#BF9C3A"
  3547. width="2.463"
  3548. height="22.373"
  3549. ></rect>
  3550. <g>
  3551. <line
  3552. fill="none"
  3553. stroke="#47B2A9"
  3554. stroke-width="3"
  3555. stroke-miterlimit="10"
  3556. x1="463.109"
  3557. y1="722.765"
  3558. x2="443.532"
  3559. y2="722.765"
  3560. ></line>
  3561. <line
  3562. fill="none"
  3563. stroke="#47B2A9"
  3564. stroke-width="3"
  3565. stroke-miterlimit="10"
  3566. x1="453.322"
  3567. y1="716.875"
  3568. x2="453.322"
  3569. y2="722.765"
  3570. ></line>
  3571. <line
  3572. fill="none"
  3573. stroke="#47B2A9"
  3574. stroke-width="3"
  3575. stroke-miterlimit="10"
  3576. x1="459.068"
  3577. y1="728.152"
  3578. x2="447.573"
  3579. y2="728.152"
  3580. ></line>
  3581. <line
  3582. fill="none"
  3583. stroke="#47B2A9"
  3584. stroke-width="3"
  3585. stroke-miterlimit="10"
  3586. x1="456.82"
  3587. y1="733.541"
  3588. x2="449.821"
  3589. y2="733.541"
  3590. ></line>
  3591. </g>
  3592. <text
  3593. transform="matrix(1.0076 0 0 1 437.1462 640.7173)"
  3594. fill="#FFFFFF"
  3595. font-family="'MicrosoftYaHei'"
  3596. font-size="13.0229"
  3597. >
  3598. 315
  3599. </text>
  3600. <text
  3601. transform="matrix(1.0076 0 0 1 429.1052 749.8481)"
  3602. fill="#FFFFFF"
  3603. font-family="'MicrosoftYaHei'"
  3604. font-size="13.0229"
  3605. >
  3606. 315-0
  3607. </text>
  3608. <text
  3609. transform="matrix(1.0076 0 0 1 484.0837 714.3267)"
  3610. fill="#FFFFFF"
  3611. font-family="'MicrosoftYaHei'"
  3612. font-size="13.0229"
  3613. >
  3614. 315-3
  3615. </text>
  3616. <text
  3617. transform="matrix(1.0076 0 0 1 484.0837 837.5767)"
  3618. fill="#FFFFFF"
  3619. font-family="'MicrosoftYaHei'"
  3620. font-size="13.0229"
  3621. >
  3622. 315-03
  3623. </text>
  3624. <text
  3625. transform="matrix(1.0076 0 0 1 437.1462 902.3267)"
  3626. fill="#FFFFFF"
  3627. font-family="'MicrosoftYaHei'"
  3628. font-size="13.0229"
  3629. >
  3630. 1C-0
  3631. </text>
  3632. <rect
  3633. x="454.039"
  3634. y="667.302"
  3635. fill="#BF9C3A"
  3636. width="20.029"
  3637. height="2.438"
  3638. ></rect>
  3639. <rect
  3640. x="471.606"
  3641. y="774.765"
  3642. fill="#C6A037"
  3643. width="2.463"
  3644. height="155.131"
  3645. ></rect>
  3646. <rect
  3647. x="471.606"
  3648. y="590.564"
  3649. fill="#C6A037"
  3650. width="2.463"
  3651. height="109.635"
  3652. ></rect>
  3653. <rect
  3654. x="471.606"
  3655. y="725.152"
  3656. fill="#C6A037"
  3657. width="2.463"
  3658. height="39.574"
  3659. ></rect>
  3660. <rect
  3661. x="464.932"
  3662. y="764.416"
  3663. fill="#C6A037"
  3664. width="15.813"
  3665. height="2.473"
  3666. ></rect>
  3667. <rect
  3668. x="464.932"
  3669. y="772.302"
  3670. fill="#C6A037"
  3671. width="15.813"
  3672. height="2.463"
  3673. ></rect>
  3674. <polygon
  3675. fill="#C6A037"
  3676. points="477.885,929.732 472.842,940.384 467.802,929.728 "
  3677. ></polygon>
  3678. <rect
  3679. x="451.639"
  3680. y="667.302"
  3681. fill="#BF9C3A"
  3682. width="2.463"
  3683. height="22.373"
  3684. ></rect>
  3685. <g>
  3686. <line
  3687. fill="none"
  3688. stroke="#47B2A9"
  3689. stroke-width="3"
  3690. stroke-miterlimit="10"
  3691. x1="463.109"
  3692. y1="873.158"
  3693. x2="443.532"
  3694. y2="873.158"
  3695. ></line>
  3696. <line
  3697. fill="none"
  3698. stroke="#47B2A9"
  3699. stroke-width="3"
  3700. stroke-miterlimit="10"
  3701. x1="453.322"
  3702. y1="867.267"
  3703. x2="453.322"
  3704. y2="873.158"
  3705. ></line>
  3706. <line
  3707. fill="none"
  3708. stroke="#47B2A9"
  3709. stroke-width="3"
  3710. stroke-miterlimit="10"
  3711. x1="459.068"
  3712. y1="878.552"
  3713. x2="447.573"
  3714. y2="878.552"
  3715. ></line>
  3716. <line
  3717. fill="none"
  3718. stroke="#47B2A9"
  3719. stroke-width="3"
  3720. stroke-miterlimit="10"
  3721. x1="456.82"
  3722. y1="883.933"
  3723. x2="449.821"
  3724. y2="883.933"
  3725. ></line>
  3726. </g>
  3727. <rect
  3728. x="454.039"
  3729. y="817.695"
  3730. fill="#BF9C3A"
  3731. width="20.029"
  3732. height="2.443"
  3733. ></rect>
  3734. <rect
  3735. x="451.639"
  3736. y="817.695"
  3737. fill="#BF9C3A"
  3738. width="2.463"
  3739. height="22.373"
  3740. ></rect>
  3741. <g>
  3742. <line
  3743. fill="none"
  3744. stroke="#47B2A9"
  3745. stroke-width="3"
  3746. stroke-miterlimit="10"
  3747. x1="485.029"
  3748. y1="797.384"
  3749. x2="504.605"
  3750. y2="797.384"
  3751. ></line>
  3752. <line
  3753. fill="none"
  3754. stroke="#47B2A9"
  3755. stroke-width="3"
  3756. stroke-miterlimit="10"
  3757. x1="494.816"
  3758. y1="791.486"
  3759. x2="494.816"
  3760. y2="797.384"
  3761. ></line>
  3762. <line
  3763. fill="none"
  3764. stroke="#47B2A9"
  3765. stroke-width="3"
  3766. stroke-miterlimit="10"
  3767. x1="489.07"
  3768. y1="802.765"
  3769. x2="500.564"
  3770. y2="802.765"
  3771. ></line>
  3772. <line
  3773. fill="none"
  3774. stroke="#47B2A9"
  3775. stroke-width="3"
  3776. stroke-miterlimit="10"
  3777. x1="491.318"
  3778. y1="808.152"
  3779. x2="498.317"
  3780. y2="808.152"
  3781. ></line>
  3782. </g>
  3783. <rect
  3784. x="474.069"
  3785. y="741.914"
  3786. fill="#BF9C3A"
  3787. width="20.029"
  3788. height="2.445"
  3789. ></rect>
  3790. <rect
  3791. x="494.036"
  3792. y="741.914"
  3793. fill="#BF9C3A"
  3794. width="2.465"
  3795. height="22.375"
  3796. ></rect>
  3797. <g>
  3798. <line
  3799. fill="none"
  3800. stroke="#47B2A9"
  3801. stroke-width="3"
  3802. stroke-miterlimit="10"
  3803. x1="555.594"
  3804. y1="722.765"
  3805. x2="536.01"
  3806. y2="722.765"
  3807. ></line>
  3808. <line
  3809. fill="none"
  3810. stroke="#47B2A9"
  3811. stroke-width="3"
  3812. stroke-miterlimit="10"
  3813. x1="545.802"
  3814. y1="716.875"
  3815. x2="545.802"
  3816. y2="722.765"
  3817. ></line>
  3818. <line
  3819. fill="none"
  3820. stroke="#47B2A9"
  3821. stroke-width="3"
  3822. stroke-miterlimit="10"
  3823. x1="551.552"
  3824. y1="728.152"
  3825. x2="540.052"
  3826. y2="728.152"
  3827. ></line>
  3828. <line
  3829. fill="none"
  3830. stroke="#47B2A9"
  3831. stroke-width="3"
  3832. stroke-miterlimit="10"
  3833. x1="549.302"
  3834. y1="733.541"
  3835. x2="542.302"
  3836. y2="733.541"
  3837. ></line>
  3838. </g>
  3839. <text
  3840. transform="matrix(1.0076 0 0 1 529.6228 640.7173)"
  3841. fill="#FFFFFF"
  3842. font-family="'MicrosoftYaHei'"
  3843. font-size="13.0229"
  3844. >
  3845. 314
  3846. </text>
  3847. <text
  3848. transform="matrix(1.0076 0 0 1 620.7009 628.5737)"
  3849. fill="#FFFFFF"
  3850. font-family="'MicrosoftYaHei'"
  3851. font-size="13.0229"
  3852. >
  3853. 31-9
  3854. </text>
  3855. <text
  3856. transform="matrix(1.0076 0 0 1 521.5818 749.8481)"
  3857. fill="#FFFFFF"
  3858. font-family="'MicrosoftYaHei'"
  3859. font-size="13.0229"
  3860. >
  3861. 314-0
  3862. </text>
  3863. <text
  3864. transform="matrix(1.0076 0 0 1 576.5603 714.3267)"
  3865. fill="#FFFFFF"
  3866. font-family="'MicrosoftYaHei'"
  3867. font-size="13.0229"
  3868. >
  3869. 314-3
  3870. </text>
  3871. <text
  3872. transform="matrix(1.0076 0 0 1 576.5603 837.5767)"
  3873. fill="#FFFFFF"
  3874. font-family="'MicrosoftYaHei'"
  3875. font-size="13.0229"
  3876. >
  3877. 314-03
  3878. </text>
  3879. <rect
  3880. x="546.517"
  3881. y="667.302"
  3882. fill="#BF9C3A"
  3883. width="20.029"
  3884. height="2.438"
  3885. ></rect>
  3886. <rect
  3887. x="564.085"
  3888. y="774.765"
  3889. fill="#C6A037"
  3890. width="2.47"
  3891. height="24.264"
  3892. ></rect>
  3893. <rect
  3894. x="564.085"
  3895. y="824.259"
  3896. fill="#C6A037"
  3897. width="2.47"
  3898. height="107.957"
  3899. ></rect>
  3900. <rect
  3901. x="564.085"
  3902. y="590.564"
  3903. fill="#C6A037"
  3904. width="2.47"
  3905. height="109.635"
  3906. ></rect>
  3907. <rect
  3908. x="564.085"
  3909. y="725.152"
  3910. fill="#C6A037"
  3911. width="2.47"
  3912. height="39.574"
  3913. ></rect>
  3914. <rect
  3915. x="557.407"
  3916. y="764.416"
  3917. fill="#C6A037"
  3918. width="15.813"
  3919. height="2.473"
  3920. ></rect>
  3921. <rect
  3922. x="557.407"
  3923. y="772.302"
  3924. fill="#C6A037"
  3925. width="15.813"
  3926. height="2.463"
  3927. ></rect>
  3928. <polygon
  3929. fill="#C6A037"
  3930. points="570.354,929.732 565.31,940.384 560.275,929.728 "
  3931. ></polygon>
  3932. <rect
  3933. x="544.115"
  3934. y="667.302"
  3935. fill="#BF9C3A"
  3936. width="2.463"
  3937. height="22.373"
  3938. ></rect>
  3939. <g>
  3940. <line
  3941. fill="none"
  3942. stroke="#47B2A9"
  3943. stroke-width="3"
  3944. stroke-miterlimit="10"
  3945. x1="577.51"
  3946. y1="797.384"
  3947. x2="597.081"
  3948. y2="797.384"
  3949. ></line>
  3950. <line
  3951. fill="none"
  3952. stroke="#47B2A9"
  3953. stroke-width="3"
  3954. stroke-miterlimit="10"
  3955. x1="587.302"
  3956. y1="791.486"
  3957. x2="587.302"
  3958. y2="797.384"
  3959. ></line>
  3960. <line
  3961. fill="none"
  3962. stroke="#47B2A9"
  3963. stroke-width="3"
  3964. stroke-miterlimit="10"
  3965. x1="581.552"
  3966. y1="802.765"
  3967. x2="593.04"
  3968. y2="802.765"
  3969. ></line>
  3970. <line
  3971. fill="none"
  3972. stroke="#47B2A9"
  3973. stroke-width="3"
  3974. stroke-miterlimit="10"
  3975. x1="583.802"
  3976. y1="808.152"
  3977. x2="590.802"
  3978. y2="808.152"
  3979. ></line>
  3980. </g>
  3981. <rect
  3982. x="566.552"
  3983. y="741.914"
  3984. fill="#BF9C3A"
  3985. width="20.021"
  3986. height="2.445"
  3987. ></rect>
  3988. <rect
  3989. x="586.514"
  3990. y="741.914"
  3991. fill="#BF9C3A"
  3992. width="2.463"
  3993. height="22.375"
  3994. ></rect>
  3995. <path
  3996. fill="none"
  3997. stroke="#C6A037"
  3998. stroke-width="2.2"
  3999. stroke-miterlimit="10"
  4000. d="M577.822,811.4c0,7.1-5.755,12.854-12.854,12.854 c-7.104,0-12.854-5.754-12.854-12.854s5.755-12.854,12.854-12.854"
  4001. ></path>
  4002. <path
  4003. fill="none"
  4004. stroke="#C6A037"
  4005. stroke-width="2.2"
  4006. stroke-miterlimit="10"
  4007. d="M564.827,823.218 c0.276,0.018,0.561,0.041,0.833,0.041c7.104,0,12.854-5.756,12.854-12.854h-13.688L564.827,823.218L564.827,823.218z"
  4008. ></path>
  4009. <rect
  4010. x="655.482"
  4011. y="679.425"
  4012. fill="none"
  4013. stroke="#C6A037"
  4014. stroke-width="2"
  4015. stroke-miterlimit="10"
  4016. width="19.389"
  4017. height="43.35"
  4018. ></rect>
  4019. <text
  4020. transform="matrix(1.0076 0 0 1 1452.7009 640.7173)"
  4021. fill="#FFFFFF"
  4022. font-family="'MicrosoftYaHei'"
  4023. font-size="13.0229"
  4024. >
  4025. 32-9
  4026. </text>
  4027. <rect
  4028. x="1487.482"
  4029. y="679.425"
  4030. fill="none"
  4031. stroke="#C6A037"
  4032. stroke-width="2"
  4033. stroke-miterlimit="10"
  4034. width="19.39"
  4035. height="43.35"
  4036. ></rect>
  4037. <rect
  4038. x="759.864"
  4039. y="133.444"
  4040. fill="#95295D"
  4041. width="3.087"
  4042. height="15.475"
  4043. ></rect>
  4044. <rect
  4045. x="759.812"
  4046. y="224.919"
  4047. fill="#95295D"
  4048. width="3.261"
  4049. height="7.4"
  4050. ></rect>
  4051. <text
  4052. transform="matrix(1 0 0 1 861.9128 91.6724)"
  4053. fill="#FFFFFF"
  4054. font-family="'MicrosoftYaHei'"
  4055. font-size="12.1513"
  4056. >
  4057. 111-0
  4058. </text>
  4059. <text
  4060. transform="matrix(1 0 0 1 778.4167 115.895)"
  4061. fill="#FFFFFF"
  4062. font-family="'MicrosoftYaHei'"
  4063. font-size="12.1513"
  4064. >
  4065. 111-3
  4066. </text>
  4067. <text
  4068. transform="matrix(1 0 0 1 778.4167 164.0366)"
  4069. fill="#FFFFFF"
  4070. font-family="'MicrosoftYaHei'"
  4071. font-size="12.1513"
  4072. >
  4073. 111
  4074. </text>
  4075. <text
  4076. transform="matrix(1 0 0 1 778.4167 212.3579)"
  4077. fill="#FFFFFF"
  4078. font-family="'MicrosoftYaHei'"
  4079. font-size="12.1513"
  4080. >
  4081. 111-1
  4082. </text>
  4083. <g>
  4084. <line
  4085. fill="none"
  4086. stroke="#47B2A9"
  4087. stroke-width="3"
  4088. stroke-miterlimit="10"
  4089. x1="648.313"
  4090. y1="80.428"
  4091. x2="648.313"
  4092. y2="60.853"
  4093. ></line>
  4094. <line
  4095. fill="none"
  4096. stroke="#47B2A9"
  4097. stroke-width="3"
  4098. stroke-miterlimit="10"
  4099. x1="661.781"
  4100. y1="70.641"
  4101. x2="648.313"
  4102. y2="70.641"
  4103. ></line>
  4104. <line
  4105. fill="none"
  4106. stroke="#95295D"
  4107. stroke-width="3"
  4108. stroke-miterlimit="10"
  4109. x1="678.599"
  4110. y1="70.641"
  4111. x2="661.531"
  4112. y2="70.641"
  4113. ></line>
  4114. <line
  4115. fill="none"
  4116. stroke="#47B2A9"
  4117. stroke-width="3"
  4118. stroke-miterlimit="10"
  4119. x1="642.927"
  4120. y1="76.388"
  4121. x2="642.927"
  4122. y2="64.894"
  4123. ></line>
  4124. <line
  4125. fill="none"
  4126. stroke="#47B2A9"
  4127. stroke-width="3"
  4128. stroke-miterlimit="10"
  4129. x1="637.537"
  4130. y1="74.14"
  4131. x2="637.537"
  4132. y2="67.141"
  4133. ></line>
  4134. </g>
  4135. <text
  4136. transform="matrix(1 0 0 1 626.6179 140.5435)"
  4137. fill="#FFFFFF"
  4138. font-family="'MicrosoftYaHei'"
  4139. font-size="12.1513"
  4140. >
  4141. 111-03
  4142. </text>
  4143. <rect
  4144. x="761.066"
  4145. y="12.458"
  4146. fill="#95295D"
  4147. width="2.739"
  4148. height="88.128"
  4149. ></rect>
  4150. <rect
  4151. x="740.135"
  4152. y="67.133"
  4153. fill="#95295D"
  4154. width="21.521"
  4155. height="3.104"
  4156. ></rect>
  4157. <rect
  4158. x="738.585"
  4159. y="57.92"
  4160. fill="#95295D"
  4161. width="3.104"
  4162. height="21.525"
  4163. ></rect>
  4164. <rect
  4165. x="730.988"
  4166. y="57.92"
  4167. fill="#95295D"
  4168. width="3.104"
  4169. height="21.525"
  4170. ></rect>
  4171. <rect
  4172. x="687.744"
  4173. y="67.133"
  4174. fill="#95295D"
  4175. width="44.793"
  4176. height="3.104"
  4177. ></rect>
  4178. <rect
  4179. x="686.195"
  4180. y="57.92"
  4181. fill="#95295D"
  4182. width="3.104"
  4183. height="21.525"
  4184. ></rect>
  4185. <rect
  4186. x="710.427"
  4187. y="46.197"
  4188. fill="#95295D"
  4189. width="3.1"
  4190. height="21.458"
  4191. ></rect>
  4192. <rect
  4193. x="678.599"
  4194. y="57.92"
  4195. fill="#95295D"
  4196. width="3.1"
  4197. height="21.525"
  4198. ></rect>
  4199. <rect
  4200. x="762.436"
  4201. y="83.977"
  4202. fill="#95295D"
  4203. width="21.442"
  4204. height="3.087"
  4205. ></rect>
  4206. <polygon
  4207. fill="#95295D"
  4208. points="756.242,13.194 762.443,0 768.635,13.199 "
  4209. ></polygon>
  4210. <g>
  4211. <circle
  4212. fill="none"
  4213. stroke="#A82866"
  4214. stroke-width="1.2"
  4215. stroke-miterlimit="10"
  4216. cx="712.594"
  4217. cy="35.632"
  4218. r="10.565"
  4219. ></circle>
  4220. <path
  4221. fill="none"
  4222. stroke="#A82866"
  4223. stroke-width="1.2"
  4224. stroke-miterlimit="10"
  4225. d="M721.862,9.133 c-5.838,0-10.563,4.73-10.563,10.564c0,5.835,4.728,10.566,10.563,10.566c5.834,0,10.563-4.731,10.563-10.566 C732.427,13.863,727.696,9.133,721.862,9.133z"
  4226. ></path>
  4227. <polyline
  4228. fill="none"
  4229. stroke="#A82866"
  4230. stroke-width="1.2"
  4231. stroke-miterlimit="10"
  4232. points="708.806,40.466 712.605,36.708 716.147,40.466 "
  4233. ></polyline>
  4234. <line
  4235. fill="none"
  4236. stroke="#A82866"
  4237. stroke-width="1.2"
  4238. stroke-miterlimit="10"
  4239. x1="712.686"
  4240. y1="36.608"
  4241. x2="712.686"
  4242. y2="29.982"
  4243. ></line>
  4244. <polyline
  4245. fill="none"
  4246. stroke="#A82866"
  4247. stroke-width="1.2"
  4248. stroke-miterlimit="10"
  4249. points="718.078,24.94 721.885,21.182 725.427,24.94 "
  4250. ></polyline>
  4251. <line
  4252. fill="none"
  4253. stroke="#A82866"
  4254. stroke-width="1.2"
  4255. stroke-miterlimit="10"
  4256. x1="721.956"
  4257. y1="21.082"
  4258. x2="721.956"
  4259. y2="14.456"
  4260. ></line>
  4261. <circle
  4262. fill="none"
  4263. stroke="#A82866"
  4264. stroke-width="1.2"
  4265. stroke-miterlimit="10"
  4266. cx="704.074"
  4267. cy="19.697"
  4268. r="10.564"
  4269. ></circle>
  4270. <polyline
  4271. fill="none"
  4272. stroke="#A82866"
  4273. stroke-width="1.2"
  4274. stroke-miterlimit="10"
  4275. points="700.302,24.94 704.094,21.182 707.635,24.94 "
  4276. ></polyline>
  4277. <line
  4278. fill="none"
  4279. stroke="#A82866"
  4280. stroke-width="1.2"
  4281. stroke-miterlimit="10"
  4282. x1="704.177"
  4283. y1="21.082"
  4284. x2="704.177"
  4285. y2="14.456"
  4286. ></line>
  4287. </g>
  4288. <rect
  4289. x="759.864"
  4290. y="177.586"
  4291. fill="#95295D"
  4292. width="3.087"
  4293. height="19.778"
  4294. ></rect>
  4295. <text
  4296. transform="matrix(1 0 0 1 626.6179 189.8638)"
  4297. fill="#FFFFFF"
  4298. font-family="'MicrosoftYaHei'"
  4299. font-size="12.1513"
  4300. >
  4301. 111-01
  4302. </text>
  4303. <g>
  4304. <line
  4305. fill="none"
  4306. stroke="#47B2A9"
  4307. stroke-width="3"
  4308. stroke-miterlimit="10"
  4309. x1="828.114"
  4310. y1="76.446"
  4311. x2="828.114"
  4312. y2="96.021"
  4313. ></line>
  4314. <line
  4315. fill="none"
  4316. stroke="#47B2A9"
  4317. stroke-width="3"
  4318. stroke-miterlimit="10"
  4319. x1="814.646"
  4320. y1="86.233"
  4321. x2="828.114"
  4322. y2="86.233"
  4323. ></line>
  4324. <line
  4325. fill="none"
  4326. stroke="#47B2A9"
  4327. stroke-width="3"
  4328. stroke-miterlimit="10"
  4329. x1="833.51"
  4330. y1="80.486"
  4331. x2="833.51"
  4332. y2="91.98"
  4333. ></line>
  4334. <line
  4335. fill="none"
  4336. stroke="#47B2A9"
  4337. stroke-width="3"
  4338. stroke-miterlimit="10"
  4339. x1="838.89"
  4340. y1="82.734"
  4341. x2="838.89"
  4342. y2="89.733"
  4343. ></line>
  4344. </g>
  4345. <rect
  4346. x="739.938"
  4347. y="134.787"
  4348. fill="#95295D"
  4349. width="21.442"
  4350. height="3.087"
  4351. ></rect>
  4352. <g>
  4353. <line
  4354. fill="none"
  4355. stroke="#47B2A9"
  4356. stroke-width="3"
  4357. stroke-miterlimit="10"
  4358. x1="695.7"
  4359. y1="127.256"
  4360. x2="695.7"
  4361. y2="146.832"
  4362. ></line>
  4363. <line
  4364. fill="none"
  4365. stroke="#47B2A9"
  4366. stroke-width="3"
  4367. stroke-miterlimit="10"
  4368. x1="709.177"
  4369. y1="137.043"
  4370. x2="695.7"
  4371. y2="137.043"
  4372. ></line>
  4373. <line
  4374. fill="none"
  4375. stroke="#47B2A9"
  4376. stroke-width="3"
  4377. stroke-miterlimit="10"
  4378. x1="690.313"
  4379. y1="131.296"
  4380. x2="690.313"
  4381. y2="142.791"
  4382. ></line>
  4383. <line
  4384. fill="none"
  4385. stroke="#47B2A9"
  4386. stroke-width="3"
  4387. stroke-miterlimit="10"
  4388. x1="684.927"
  4389. y1="133.544"
  4390. x2="684.927"
  4391. y2="140.543"
  4392. ></line>
  4393. </g>
  4394. <rect
  4395. x="739.938"
  4396. y="183.454"
  4397. fill="#95295D"
  4398. width="21.442"
  4399. height="3.087"
  4400. ></rect>
  4401. <g>
  4402. <line
  4403. fill="none"
  4404. stroke="#47B2A9"
  4405. stroke-width="3"
  4406. stroke-miterlimit="10"
  4407. x1="695.7"
  4408. y1="175.923"
  4409. x2="695.7"
  4410. y2="195.499"
  4411. ></line>
  4412. <line
  4413. fill="none"
  4414. stroke="#47B2A9"
  4415. stroke-width="3"
  4416. stroke-miterlimit="10"
  4417. x1="709.177"
  4418. y1="185.71"
  4419. x2="695.7"
  4420. y2="185.71"
  4421. ></line>
  4422. <line
  4423. fill="none"
  4424. stroke="#47B2A9"
  4425. stroke-width="3"
  4426. stroke-miterlimit="10"
  4427. x1="690.313"
  4428. y1="179.963"
  4429. x2="690.313"
  4430. y2="191.458"
  4431. ></line>
  4432. <line
  4433. fill="none"
  4434. stroke="#47B2A9"
  4435. stroke-width="3"
  4436. stroke-miterlimit="10"
  4437. x1="684.927"
  4438. y1="182.211"
  4439. x2="684.927"
  4440. y2="189.21"
  4441. ></line>
  4442. </g>
  4443. <text
  4444. transform="matrix(0.9268 0 0 1 14.9626 576.2729)"
  4445. fill="#FFFFFF"
  4446. font-family="'MicrosoftYaHei'"
  4447. font-size="11.7516"
  4448. >
  4449. 35kV Ⅰ母线
  4450. </text>
  4451. <text
  4452. transform="matrix(0.9268 0 0 1 1551.8718 576.2729)"
  4453. fill="#FFFFFF"
  4454. font-family="'MicrosoftYaHei'"
  4455. font-size="11.7516"
  4456. >
  4457. 35kV Ⅱ母线
  4458. </text>
  4459. <rect
  4460. x="76.782"
  4461. y="1013.746"
  4462. opacity="0.9"
  4463. fill="#1B2522"
  4464. enable-background="new "
  4465. width="79.533"
  4466. height="23.402"
  4467. ></rect>
  4468. <rect
  4469. x="76.782"
  4470. y="1046.246"
  4471. opacity="0.9"
  4472. fill="#1B2522"
  4473. enable-background="new "
  4474. width="79.533"
  4475. height="23.402"
  4476. ></rect>
  4477. <rect
  4478. x="76.782"
  4479. y="1079.246"
  4480. opacity="0.9"
  4481. fill="#1B2522"
  4482. enable-background="new "
  4483. width="79.533"
  4484. height="23.402"
  4485. ></rect>
  4486. <g id="footer">
  4487. <g>
  4488. <text
  4489. transform="matrix(1 0 0 1 18.8752 1030.8413)"
  4490. fill="#FFFFFF"
  4491. font-family="'MicrosoftYaHei'"
  4492. font-size="11.8189"
  4493. >
  4494. la(A):
  4495. </text>
  4496. <text
  4497. transform="matrix(1 0 0 1 8.8752 1062.0347)"
  4498. fill="#FFFFFF"
  4499. font-family="'MicrosoftYaHei'"
  4500. font-size="11.8189"
  4501. >
  4502. P(kVar):
  4503. </text>
  4504. <text
  4505. transform="matrix(1 0 0 1 -2.441406e-004 1094.1343)"
  4506. fill="#FFFFFF"
  4507. font-family="'MicrosoftYaHei'"
  4508. font-size="11.8189"
  4509. >
  4510. Q(kVar):
  4511. </text>
  4512. </g>
  4513. </g>
  4514. <rect
  4515. x="226.287"
  4516. y="1013.746"
  4517. opacity="0.9"
  4518. fill="#1B2522"
  4519. enable-background="new "
  4520. width="79.533"
  4521. height="23.402"
  4522. ></rect>
  4523. <rect
  4524. x="226.287"
  4525. y="1046.246"
  4526. opacity="0.9"
  4527. fill="#1B2522"
  4528. enable-background="new "
  4529. width="79.533"
  4530. height="23.402"
  4531. ></rect>
  4532. <rect
  4533. x="226.287"
  4534. y="1079.246"
  4535. opacity="0.9"
  4536. fill="#1B2522"
  4537. enable-background="new "
  4538. width="79.533"
  4539. height="23.402"
  4540. ></rect>
  4541. <rect
  4542. x="326.01"
  4543. y="1013.746"
  4544. opacity="0.9"
  4545. fill="#1B2522"
  4546. enable-background="new "
  4547. width="79.525"
  4548. height="23.402"
  4549. ></rect>
  4550. <rect
  4551. x="326.01"
  4552. y="1046.246"
  4553. opacity="0.9"
  4554. fill="#1B2522"
  4555. enable-background="new "
  4556. width="79.525"
  4557. height="23.402"
  4558. ></rect>
  4559. <rect
  4560. x="326.01"
  4561. y="1079.246"
  4562. opacity="0.9"
  4563. fill="#1B2522"
  4564. enable-background="new "
  4565. width="79.525"
  4566. height="23.402"
  4567. ></rect>
  4568. <rect
  4569. x="431.844"
  4570. y="1013.746"
  4571. opacity="0.9"
  4572. fill="#1B2522"
  4573. enable-background="new "
  4574. width="79.524"
  4575. height="23.402"
  4576. ></rect>
  4577. <rect
  4578. x="431.844"
  4579. y="1046.246"
  4580. opacity="0.9"
  4581. fill="#1B2522"
  4582. enable-background="new "
  4583. width="79.524"
  4584. height="23.402"
  4585. ></rect>
  4586. <rect
  4587. x="431.844"
  4588. y="1079.246"
  4589. opacity="0.9"
  4590. fill="#1B2522"
  4591. enable-background="new "
  4592. width="79.524"
  4593. height="23.402"
  4594. ></rect>
  4595. <rect
  4596. x="527.69"
  4597. y="1013.746"
  4598. opacity="0.9"
  4599. fill="#1B2522"
  4600. enable-background="new "
  4601. width="79.534"
  4602. height="23.402"
  4603. ></rect>
  4604. <rect
  4605. x="527.69"
  4606. y="1046.246"
  4607. opacity="0.9"
  4608. fill="#1B2522"
  4609. enable-background="new "
  4610. width="79.534"
  4611. height="23.402"
  4612. ></rect>
  4613. <rect
  4614. x="527.69"
  4615. y="1079.246"
  4616. opacity="0.9"
  4617. fill="#1B2522"
  4618. enable-background="new "
  4619. width="79.534"
  4620. height="23.402"
  4621. ></rect>
  4622. <rect
  4623. x="622.997"
  4624. y="1013.746"
  4625. opacity="0.9"
  4626. fill="#1B2522"
  4627. enable-background="new "
  4628. width="79.534"
  4629. height="23.402"
  4630. ></rect>
  4631. <rect
  4632. x="622.997"
  4633. y="1046.246"
  4634. opacity="0.9"
  4635. fill="#1B2522"
  4636. enable-background="new "
  4637. width="79.534"
  4638. height="23.402"
  4639. ></rect>
  4640. <rect
  4641. x="622.997"
  4642. y="1079.246"
  4643. opacity="0.9"
  4644. fill="#1B2522"
  4645. enable-background="new "
  4646. width="79.534"
  4647. height="23.402"
  4648. ></rect>
  4649. <rect
  4650. x="728.203"
  4651. y="1013.746"
  4652. opacity="0.9"
  4653. fill="#1B2522"
  4654. enable-background="new "
  4655. width="79.534"
  4656. height="23.402"
  4657. ></rect>
  4658. <rect
  4659. x="728.203"
  4660. y="1046.246"
  4661. opacity="0.9"
  4662. fill="#1B2522"
  4663. enable-background="new "
  4664. width="79.534"
  4665. height="23.402"
  4666. ></rect>
  4667. <rect
  4668. x="728.203"
  4669. y="1079.246"
  4670. opacity="0.9"
  4671. fill="#1B2522"
  4672. enable-background="new "
  4673. width="79.534"
  4674. height="23.402"
  4675. ></rect>
  4676. <rect
  4677. x="828.687"
  4678. y="1013.746"
  4679. opacity="0.9"
  4680. fill="#1B2522"
  4681. enable-background="new "
  4682. width="79.534"
  4683. height="23.402"
  4684. ></rect>
  4685. <rect
  4686. x="828.687"
  4687. y="1046.246"
  4688. opacity="0.9"
  4689. fill="#1B2522"
  4690. enable-background="new "
  4691. width="79.534"
  4692. height="23.402"
  4693. ></rect>
  4694. <rect
  4695. x="828.687"
  4696. y="1079.246"
  4697. opacity="0.9"
  4698. fill="#1B2522"
  4699. enable-background="new "
  4700. width="79.534"
  4701. height="23.402"
  4702. ></rect>
  4703. <rect
  4704. x="930.974"
  4705. y="1013.746"
  4706. opacity="0.9"
  4707. fill="#1B2522"
  4708. enable-background="new "
  4709. width="79.534"
  4710. height="23.402"
  4711. ></rect>
  4712. <rect
  4713. x="930.974"
  4714. y="1046.246"
  4715. opacity="0.9"
  4716. fill="#1B2522"
  4717. enable-background="new "
  4718. width="79.534"
  4719. height="23.402"
  4720. ></rect>
  4721. <rect
  4722. x="930.974"
  4723. y="1079.246"
  4724. opacity="0.9"
  4725. fill="#1B2522"
  4726. enable-background="new "
  4727. width="79.534"
  4728. height="23.402"
  4729. ></rect>
  4730. <rect
  4731. x="1075.427"
  4732. y="1013.746"
  4733. opacity="0.9"
  4734. fill="#1B2522"
  4735. enable-background="new "
  4736. width="79.524"
  4737. height="23.402"
  4738. ></rect>
  4739. <rect
  4740. x="1075.427"
  4741. y="1046.246"
  4742. opacity="0.9"
  4743. fill="#1B2522"
  4744. enable-background="new "
  4745. width="79.524"
  4746. height="23.402"
  4747. ></rect>
  4748. <rect
  4749. x="1075.427"
  4750. y="1079.246"
  4751. opacity="0.9"
  4752. fill="#1B2522"
  4753. enable-background="new "
  4754. width="79.524"
  4755. height="23.402"
  4756. ></rect>
  4757. <rect
  4758. x="1172.241"
  4759. y="1013.746"
  4760. opacity="0.9"
  4761. fill="#1B2522"
  4762. enable-background="new "
  4763. width="79.534"
  4764. height="23.402"
  4765. ></rect>
  4766. <rect
  4767. x="1172.241"
  4768. y="1046.246"
  4769. opacity="0.9"
  4770. fill="#1B2522"
  4771. enable-background="new "
  4772. width="79.534"
  4773. height="23.402"
  4774. ></rect>
  4775. <rect
  4776. x="1172.241"
  4777. y="1079.246"
  4778. opacity="0.9"
  4779. fill="#1B2522"
  4780. enable-background="new "
  4781. width="79.534"
  4782. height="23.402"
  4783. ></rect>
  4784. <rect
  4785. x="1348.094"
  4786. y="1013.746"
  4787. opacity="0.9"
  4788. fill="#1B2522"
  4789. enable-background="new "
  4790. width="79.526"
  4791. height="23.402"
  4792. ></rect>
  4793. <rect
  4794. x="1348.094"
  4795. y="1046.246"
  4796. opacity="0.9"
  4797. fill="#1B2522"
  4798. enable-background="new "
  4799. width="79.526"
  4800. height="23.402"
  4801. ></rect>
  4802. <rect
  4803. x="1348.094"
  4804. y="1079.246"
  4805. opacity="0.9"
  4806. fill="#1B2522"
  4807. enable-background="new "
  4808. width="79.526"
  4809. height="23.402"
  4810. ></rect>
  4811. <rect
  4812. x="1454.251"
  4813. y="1013.746"
  4814. opacity="0.9"
  4815. fill="#1B2522"
  4816. enable-background="new "
  4817. width="79.531"
  4818. height="23.402"
  4819. ></rect>
  4820. <rect
  4821. x="1454.251"
  4822. y="1046.246"
  4823. opacity="0.9"
  4824. fill="#1B2522"
  4825. enable-background="new "
  4826. width="79.531"
  4827. height="23.402"
  4828. ></rect>
  4829. <rect
  4830. x="1454.251"
  4831. y="1079.246"
  4832. opacity="0.9"
  4833. fill="#1B2522"
  4834. enable-background="new "
  4835. width="79.531"
  4836. height="23.402"
  4837. ></rect>
  4838. <g>
  4839. <g>
  4840. <rect
  4841. x="623.194"
  4842. y="970.974"
  4843. fill="#5A5784"
  4844. width="79.143"
  4845. height="22.611"
  4846. ></rect>
  4847. <text
  4848. transform="matrix(1.0076 0 0 1 622.9001 986.7817)"
  4849. fill="#FFFFFF"
  4850. font-family="'MicrosoftYaHei'"
  4851. font-size="12.6485"
  4852. >
  4853. 35KV Ⅰ母PT
  4854. </text>
  4855. </g>
  4856. <g>
  4857. <rect
  4858. x="76.979"
  4859. y="972.974"
  4860. fill="#5A5784"
  4861. width="79.143"
  4862. height="22.611"
  4863. ></rect>
  4864. <text
  4865. transform="matrix(1 0 0 1 87.7209 988.7817)"
  4866. fill="#FFFFFF"
  4867. font-family="'MicrosoftYaHei'"
  4868. font-size="13.6485"
  4869. >
  4870. #1接地变
  4871. </text>
  4872. </g>
  4873. <g>
  4874. <rect
  4875. x="226.483"
  4876. y="972.974"
  4877. fill="#5A5784"
  4878. width="79.144"
  4879. height="22.611"
  4880. ></rect>
  4881. <text
  4882. transform="matrix(1 0 0 1 237.2253 988.7817)"
  4883. fill="#FFFFFF"
  4884. font-family="'MicrosoftYaHei'"
  4885. font-size="13.6485"
  4886. >
  4887. #2站用变
  4888. </text>
  4889. </g>
  4890. <g>
  4891. <rect
  4892. x="326.206"
  4893. y="972.974"
  4894. fill="#5A5784"
  4895. width="79.146"
  4896. height="22.611"
  4897. ></rect>
  4898. <text
  4899. transform="matrix(1 0 0 1 336.948 988.7817)"
  4900. fill="#FFFFFF"
  4901. font-family="'MicrosoftYaHei'"
  4902. font-size="13.6485"
  4903. >
  4904. #2电容器
  4905. </text>
  4906. </g>
  4907. <g>
  4908. <rect
  4909. x="432.035"
  4910. y="972.974"
  4911. fill="#5A5784"
  4912. width="79.146"
  4913. height="22.611"
  4914. ></rect>
  4915. <text
  4916. transform="matrix(1 0 0 1 442.7795 988.7817)"
  4917. fill="#FFFFFF"
  4918. font-family="'MicrosoftYaHei'"
  4919. font-size="13.6485"
  4920. >
  4921. #1电容器
  4922. </text>
  4923. </g>
  4924. <g>
  4925. <rect
  4926. x="728.4"
  4927. y="970.974"
  4928. fill="#5A5784"
  4929. width="79.146"
  4930. height="22.611"
  4931. ></rect>
  4932. <text
  4933. transform="matrix(1.0076 0 0 1 740.4666 986.7817)"
  4934. fill="#FFFFFF"
  4935. font-family="'MicrosoftYaHei'"
  4936. font-size="13.6485"
  4937. >
  4938. 风场三线
  4939. </text>
  4940. </g>
  4941. <g>
  4942. <rect
  4943. x="828.885"
  4944. y="970.974"
  4945. fill="#5A5784"
  4946. width="79.142"
  4947. height="22.611"
  4948. ></rect>
  4949. <text
  4950. transform="matrix(1.0076 0 0 1 840.949 986.7817)"
  4951. fill="#FFFFFF"
  4952. font-family="'MicrosoftYaHei'"
  4953. font-size="13.6485"
  4954. >
  4955. 风场二线
  4956. </text>
  4957. </g>
  4958. <g>
  4959. <rect
  4960. x="931.177"
  4961. y="970.974"
  4962. fill="#5A5784"
  4963. width="79.142"
  4964. height="22.611"
  4965. ></rect>
  4966. <text
  4967. transform="matrix(1.0076 0 0 1 943.2361 986.7817)"
  4968. fill="#FFFFFF"
  4969. font-family="'MicrosoftYaHei'"
  4970. font-size="13.6485"
  4971. >
  4972. 风场一线
  4973. </text>
  4974. </g>
  4975. <g>
  4976. <rect
  4977. x="1075.615"
  4978. y="970.974"
  4979. fill="#5A5784"
  4980. width="79.146"
  4981. height="22.611"
  4982. ></rect>
  4983. <text
  4984. transform="matrix(1.0076 0 0 1 1086.1384 986.7817)"
  4985. fill="#FFFFFF"
  4986. font-family="'MicrosoftYaHei'"
  4987. font-size="13.6485"
  4988. >
  4989. #2接地变
  4990. </text>
  4991. </g>
  4992. <g>
  4993. <rect
  4994. x="1172.438"
  4995. y="970.974"
  4996. fill="#5A5784"
  4997. width="79.142"
  4998. height="22.611"
  4999. ></rect>
  5000. <text
  5001. transform="matrix(1.0076 0 0 1 1187.822 986.7817)"
  5002. fill="#FFFFFF"
  5003. font-family="'MicrosoftYaHei'"
  5004. font-size="13.6485"
  5005. >
  5006. #1 SVG
  5007. </text>
  5008. </g>
  5009. <g>
  5010. <rect
  5011. x="1348.281"
  5012. y="970.974"
  5013. fill="#5A5784"
  5014. width="79.146"
  5015. height="22.611"
  5016. ></rect>
  5017. <text
  5018. transform="matrix(1.0076 0 0 1 1360.3494 986.7817)"
  5019. fill="#FFFFFF"
  5020. font-family="'MicrosoftYaHei'"
  5021. font-size="13.6485"
  5022. >
  5023. 风场四线
  5024. </text>
  5025. </g>
  5026. <g>
  5027. <rect
  5028. x="1454.445"
  5029. y="970.974"
  5030. fill="#5A5784"
  5031. width="79.144"
  5032. height="22.611"
  5033. ></rect>
  5034. <text
  5035. transform="matrix(1.0076 0 0 1 1454.1501 986.7817)"
  5036. fill="#FFFFFF"
  5037. font-family="'MicrosoftYaHei'"
  5038. font-size="12.6485"
  5039. >
  5040. 35KV Ⅰ母PT
  5041. </text>
  5042. </g>
  5043. <g>
  5044. <rect
  5045. x="527.887"
  5046. y="972.974"
  5047. fill="#5A5784"
  5048. width="79.142"
  5049. height="22.611"
  5050. ></rect>
  5051. <text
  5052. transform="matrix(1 0 0 1 542.9841 988.7817)"
  5053. fill="#FFFFFF"
  5054. font-family="'MicrosoftYaHei'"
  5055. font-size="13.6485"
  5056. >
  5057. 1电抗器
  5058. </text>
  5059. </g>
  5060. </g>
  5061. <g>
  5062. <rect
  5063. x="1496.516"
  5064. y="628.574"
  5065. fill="#C6A037"
  5066. width="2.463"
  5067. height="144.492"
  5068. ></rect>
  5069. <rect
  5070. x="1496.516"
  5071. y="590.564"
  5072. fill="#C6A037"
  5073. width="2.463"
  5074. height="8.059"
  5075. ></rect>
  5076. </g>
  5077. <g>
  5078. <rect
  5079. x="118.466"
  5080. y="590.564"
  5081. fill="#C6A037"
  5082. width="2.471"
  5083. height="8.059"
  5084. ></rect>
  5085. <rect
  5086. x="118.466"
  5087. y="628.574"
  5088. fill="#C6A037"
  5089. width="2.471"
  5090. height="46.502"
  5091. ></rect>
  5092. </g>
  5093. <g>
  5094. <rect
  5095. x="664.516"
  5096. y="590.564"
  5097. fill="#C6A037"
  5098. width="2.463"
  5099. height="8.059"
  5100. ></rect>
  5101. <rect
  5102. x="664.516"
  5103. y="628.574"
  5104. fill="#C6A037"
  5105. width="2.463"
  5106. height="144.492"
  5107. ></rect>
  5108. </g>
  5109. <g>
  5110. <rect
  5111. x="1338.51"
  5112. y="454.193"
  5113. fill="#C6A037"
  5114. width="3.219"
  5115. height="49.263"
  5116. ></rect>
  5117. <rect
  5118. x="1338.51"
  5119. y="569.81"
  5120. fill="#C6A037"
  5121. width="3.219"
  5122. height="20.623"
  5123. ></rect>
  5124. </g>
  5125. <g>
  5126. <rect
  5127. x="664.138"
  5128. y="569.81"
  5129. fill="#C6A037"
  5130. width="3.219"
  5131. height="20.623"
  5132. ></rect>
  5133. <rect
  5134. x="664.138"
  5135. y="454.193"
  5136. fill="#C6A037"
  5137. width="3.219"
  5138. height="49.915"
  5139. ></rect>
  5140. </g>
  5141. </g>
  5142. <g id="arrow">
  5143. <rect
  5144. x="753.612"
  5145. y="143.791"
  5146. :fill="ajaxData.mhsdlq111 ? red : green"
  5147. width="16.923"
  5148. height="32.062"
  5149. ></rect>
  5150. <rect
  5151. x="658.361"
  5152. y="305.407"
  5153. :fill="ajaxData.mhsdlq101 ? red : green"
  5154. width="16.923"
  5155. height="32.062"
  5156. ></rect>
  5157. <rect
  5158. x="1331.051"
  5159. y="305.407"
  5160. :fill="ajaxData.mhsdlq102 ? red : green"
  5161. width="16.922"
  5162. height="32.062"
  5163. ></rect>
  5164. <rect
  5165. x="658.361"
  5166. y="524.947"
  5167. :fill="ajaxData.mhsdlq301 ? red : green"
  5168. width="16.923"
  5169. height="28.062"
  5170. ></rect>
  5171. <rect
  5172. x="1331.03"
  5173. y="524.947"
  5174. :fill="ajaxData.mhsdlq302 ? red : green"
  5175. width="16.924"
  5176. height="28.062"
  5177. ></rect>
  5178. <rect
  5179. x="1107.847"
  5180. y="621.738"
  5181. :fill="ajaxData.mhsdlq323 ? red : green"
  5182. width="16.922"
  5183. height="26.076"
  5184. ></rect>
  5185. <rect
  5186. x="258.824"
  5187. y="622.738"
  5188. :fill="ajaxData.mhsdlq317 ? red : green"
  5189. width="16.923"
  5190. height="26.076"
  5191. ></rect>
  5192. <rect
  5193. x="358.703"
  5194. y="622.738"
  5195. :fill="ajaxData.mhsdlq316 ? red : green"
  5196. width="16.923"
  5197. height="26.076"
  5198. ></rect>
  5199. <rect
  5200. x="464.385"
  5201. y="622.738"
  5202. :fill="ajaxData.mhsdlq315 ? red : green"
  5203. width="16.922"
  5204. height="26.076"
  5205. ></rect>
  5206. <rect
  5207. x="556.854"
  5208. y="622.738"
  5209. :fill="ajaxData.mhsdlq314 ? red : green"
  5210. width="16.922"
  5211. height="26.076"
  5212. ></rect>
  5213. <rect
  5214. x="760.74"
  5215. y="622.738"
  5216. :fill="ajaxData.mhsdlq313 ? red : green"
  5217. width="16.922"
  5218. height="26.076"
  5219. ></rect>
  5220. <rect
  5221. x="861.407"
  5222. y="622.738"
  5223. :fill="ajaxData.mhsdlq312 ? red : green"
  5224. width="16.922"
  5225. height="26.076"
  5226. ></rect>
  5227. <rect
  5228. x="963.512"
  5229. y="622.738"
  5230. :fill="ajaxData.mhsdlq311 ? red : green"
  5231. width="16.922"
  5232. height="26.076"
  5233. ></rect>
  5234. <rect
  5235. x="1203.552"
  5236. y="622.738"
  5237. :fill="ajaxData.mhsdlq322 ? red : green"
  5238. width="16.922"
  5239. height="26.076"
  5240. ></rect>
  5241. <rect
  5242. x="1379.76"
  5243. y="622.738"
  5244. :fill="ajaxData.mhsdlq321 ? red : green"
  5245. width="16.922"
  5246. height="26.076"
  5247. ></rect>
  5248. </g>
  5249. <g id="kgGray">
  5250. <g id="mhskg">
  5251. <g id="_x31_21-0off_41_" v-if="false">
  5252. <line
  5253. fill="none"
  5254. stroke="#9A2B2D"
  5255. stroke-width="2.5"
  5256. stroke-miterlimit="10"
  5257. x1="446.072"
  5258. y1="841.24"
  5259. x2="459.569"
  5260. y2="841.24"
  5261. ></line>
  5262. <path
  5263. fill="#9A2B2D"
  5264. d="M450.727,863.052c0-1.441,1.171-2.609,2.604-2.609c1.438,0,2.607,1.172,2.607,2.609 c0,1.436-1.171,2.604-2.607,2.604C451.898,865.658,450.727,864.488,450.727,863.052 M448.677,863.052 c0,2.578,2.089,4.666,4.665,4.666c2.567,0,4.656-2.09,4.656-4.666c0-2.578-2.091-4.666-4.656-4.666 C450.76,858.386,448.677,860.472,448.677,863.052L448.677,863.052z"
  5265. ></path>
  5266. <line
  5267. fill="none"
  5268. stroke="#9A2B2D"
  5269. stroke-width="2"
  5270. stroke-miterlimit="10"
  5271. x1="453.344"
  5272. y1="841.468"
  5273. x2="453.344"
  5274. y2="859.388"
  5275. ></line>
  5276. </g>
  5277. <g id="_x31_21-0on_41_">
  5278. <line
  5279. fill="none"
  5280. stroke="#A9A9A9"
  5281. stroke-width="2.5"
  5282. stroke-miterlimit="10"
  5283. x1="446.072"
  5284. y1="841.24"
  5285. x2="459.569"
  5286. y2="841.24"
  5287. ></line>
  5288. <path
  5289. fill="#A9A9A9"
  5290. d="M450.727,863.052c0-1.441,1.171-2.611,2.604-2.611c1.438,0,2.607,1.17,2.607,2.611 c0,1.436-1.171,2.604-2.607,2.604C451.898,865.658,450.727,864.488,450.727,863.052 M448.677,863.052 c0,2.576,2.089,4.666,4.665,4.666c2.567,0,4.656-2.09,4.656-4.666c0-2.58-2.091-4.67-4.656-4.67 C450.76,858.384,448.677,860.472,448.677,863.052L448.677,863.052z"
  5291. ></path>
  5292. <line
  5293. fill="none"
  5294. stroke="#A9A9A9"
  5295. stroke-width="2"
  5296. stroke-miterlimit="10"
  5297. x1="459.885"
  5298. y1="844.427"
  5299. x2="452.821"
  5300. y2="859.388"
  5301. ></line>
  5302. </g>
  5303. </g>
  5304. <g id="mhskg">
  5305. <g id="_x31_21-0off_40_" v-if="false">
  5306. <line
  5307. fill="none"
  5308. stroke="#9A2B2D"
  5309. stroke-width="2.5"
  5310. stroke-miterlimit="10"
  5311. x1="502.066"
  5312. y1="765.468"
  5313. x2="488.569"
  5314. y2="765.468"
  5315. ></line>
  5316. <path
  5317. fill="#9A2B2D"
  5318. d="M497.411,787.271c0,1.438-1.172,2.605-2.604,2.605c-1.438,0-2.607-1.178-2.607-2.605 s1.173-2.609,2.607-2.609C496.24,784.662,497.411,785.832,497.411,787.271 M499.471,787.271c0-2.58-2.091-4.666-4.666-4.666 c-2.574,0-4.665,2.09-4.665,4.666s2.089,4.666,4.665,4.666C497.385,791.937,499.471,789.849,499.471,787.271L499.471,787.271z"
  5319. ></path>
  5320. <line
  5321. fill="none"
  5322. stroke="#9A2B2D"
  5323. stroke-width="2"
  5324. stroke-miterlimit="10"
  5325. x1="494.803"
  5326. y1="765.687"
  5327. x2="494.803"
  5328. y2="783.607"
  5329. ></line>
  5330. </g>
  5331. <g id="_x31_21-0on_40_">
  5332. <line
  5333. fill="none"
  5334. stroke="#A9A9A9"
  5335. stroke-width="2.5"
  5336. stroke-miterlimit="10"
  5337. x1="502.066"
  5338. y1="765.468"
  5339. x2="488.569"
  5340. y2="765.468"
  5341. ></line>
  5342. <path
  5343. fill="#A9A9A9"
  5344. d="M497.411,787.271c0,1.438-1.172,2.605-2.604,2.605c-1.438,0-2.607-1.178-2.607-2.605 c0-1.439,1.173-2.611,2.607-2.611C496.24,784.66,497.411,785.832,497.411,787.271 M499.471,787.271 c0-2.58-2.091-4.668-4.666-4.668c-2.574,0-4.665,2.088-4.665,4.668c0,2.576,2.089,4.666,4.665,4.666 C497.385,791.937,499.471,789.847,499.471,787.271L499.471,787.271z"
  5345. ></path>
  5346. <line
  5347. fill="none"
  5348. stroke="#A9A9A9"
  5349. stroke-width="2"
  5350. stroke-miterlimit="10"
  5351. x1="488.26"
  5352. y1="768.648"
  5353. x2="495.317"
  5354. y2="783.607"
  5355. ></line>
  5356. </g>
  5357. </g>
  5358. <g id="mhskg">
  5359. <g id="_x31_21-0off_44_" v-if="false">
  5360. <line
  5361. fill="none"
  5362. stroke="#9A2B2D"
  5363. stroke-width="2.5"
  5364. stroke-miterlimit="10"
  5365. x1="594.552"
  5366. y1="765.468"
  5367. x2="581.052"
  5368. y2="765.468"
  5369. ></line>
  5370. <path
  5371. fill="#9A2B2D"
  5372. d="M589.889,787.271c0,1.438-1.172,2.605-2.606,2.605c-1.437,0-2.604-1.178-2.604-2.605 s1.173-2.609,2.604-2.609C588.719,784.662,589.889,785.832,589.889,787.271 M591.947,787.271c0-2.58-2.091-4.666-4.666-4.666 c-2.573,0-4.665,2.09-4.665,4.666s2.089,4.666,4.665,4.666C589.858,791.937,591.947,789.849,591.947,787.271L591.947,787.271z"
  5373. ></path>
  5374. <line
  5375. fill="none"
  5376. stroke="#9A2B2D"
  5377. stroke-width="2"
  5378. stroke-miterlimit="10"
  5379. x1="587.279"
  5380. y1="765.687"
  5381. x2="587.279"
  5382. y2="783.607"
  5383. ></line>
  5384. </g>
  5385. <g id="_x31_21-0on_44_">
  5386. <line
  5387. fill="none"
  5388. stroke="#A9A9A9"
  5389. stroke-width="2.5"
  5390. stroke-miterlimit="10"
  5391. x1="594.552"
  5392. y1="765.468"
  5393. x2="581.052"
  5394. y2="765.468"
  5395. ></line>
  5396. <path
  5397. fill="#A9A9A9"
  5398. d="M589.889,787.271c0,1.438-1.172,2.605-2.606,2.605c-1.437,0-2.604-1.178-2.604-2.605 c0-1.439,1.173-2.611,2.604-2.611C588.719,784.66,589.889,785.832,589.889,787.271 M591.947,787.271 c0-2.58-2.091-4.668-4.666-4.668c-2.573,0-4.665,2.088-4.665,4.668c0,2.576,2.089,4.666,4.665,4.666 C589.858,791.937,591.947,789.847,591.947,787.271L591.947,787.271z"
  5399. ></path>
  5400. <line
  5401. fill="none"
  5402. stroke="#A9A9A9"
  5403. stroke-width="2"
  5404. stroke-miterlimit="10"
  5405. x1="580.734"
  5406. y1="768.648"
  5407. x2="587.802"
  5408. y2="783.607"
  5409. ></line>
  5410. </g>
  5411. </g>
  5412. <g id="mhskg">
  5413. <g id="_x31_21-0off_43_" v-if="false">
  5414. <line
  5415. fill="none"
  5416. stroke="#9A2B2D"
  5417. stroke-width="2.5"
  5418. stroke-miterlimit="10"
  5419. x1="557.179"
  5420. y1="700.634"
  5421. x2="570.677"
  5422. y2="700.634"
  5423. ></line>
  5424. <path
  5425. fill="#9A2B2D"
  5426. d="M561.835,722.447c0-1.438,1.178-2.604,2.604-2.604c1.436,0,2.607,1.172,2.607,2.604 c0,1.438-1.181,2.605-2.607,2.605S561.835,723.884,561.835,722.447 M559.774,722.447c0,2.578,2.089,4.666,4.666,4.666 c2.576,0,4.665-2.09,4.665-4.666c0-2.578-2.091-4.666-4.665-4.666C561.865,717.781,559.774,719.867,559.774,722.447 L559.774,722.447z"
  5427. ></path>
  5428. <line
  5429. fill="none"
  5430. stroke="#9A2B2D"
  5431. stroke-width="2"
  5432. stroke-miterlimit="10"
  5433. x1="564.442"
  5434. y1="700.861"
  5435. x2="564.442"
  5436. y2="718.783"
  5437. ></line>
  5438. </g>
  5439. <g id="_x31_21-0on_43_">
  5440. <line
  5441. fill="none"
  5442. stroke="#A9A9A9"
  5443. stroke-width="2.5"
  5444. stroke-miterlimit="10"
  5445. x1="557.179"
  5446. y1="700.634"
  5447. x2="570.677"
  5448. y2="700.634"
  5449. ></line>
  5450. <path
  5451. fill="#A9A9A9"
  5452. d="M561.835,722.447c0-1.438,1.178-2.604,2.604-2.604c1.436,0,2.607,1.17,2.607,2.604 c0,1.438-1.181,2.605-2.607,2.605S561.835,723.884,561.835,722.447 M559.774,722.447c0,2.576,2.089,4.666,4.666,4.666 c2.576,0,4.665-2.09,4.665-4.666c0-2.58-2.091-4.67-4.665-4.67C561.865,717.777,559.774,719.867,559.774,722.447L559.774,722.447 z"
  5453. ></path>
  5454. <line
  5455. fill="none"
  5456. stroke="#A9A9A9"
  5457. stroke-width="2"
  5458. stroke-miterlimit="10"
  5459. x1="570.987"
  5460. y1="703.822"
  5461. x2="563.928"
  5462. y2="718.783"
  5463. ></line>
  5464. </g>
  5465. </g>
  5466. <g id="mhskg">
  5467. <g id="_x31_11-0off" v-if="false">
  5468. <line
  5469. fill="none"
  5470. stroke="#9A2B2D"
  5471. stroke-width="2.5"
  5472. stroke-miterlimit="10"
  5473. x1="787.28"
  5474. y1="93.482"
  5475. x2="787.28"
  5476. y2="79.986"
  5477. ></line>
  5478. <path
  5479. fill="#9A2B2D"
  5480. d="M809.094,88.828c-1.44,0-2.609-1.171-2.609-2.604c0-1.438,1.172-2.607,2.609-2.607 c1.437,0,2.604,1.171,2.604,2.607C811.697,87.656,810.528,88.828,809.094,88.828 M809.094,90.887 c2.578,0,4.666-2.097,4.666-4.666c0-2.577-2.091-4.665-4.666-4.665c-2.577,0-4.666,2.09-4.666,4.665 C804.427,88.796,806.512,90.887,809.094,90.887L809.094,90.887z"
  5481. ></path>
  5482. <line
  5483. fill="none"
  5484. stroke="#9A2B2D"
  5485. stroke-width="2"
  5486. stroke-miterlimit="10"
  5487. x1="787.51"
  5488. y1="86.219"
  5489. x2="805.428"
  5490. y2="86.219"
  5491. ></line>
  5492. </g>
  5493. <g id="_x31_11-0on">
  5494. <line
  5495. fill="none"
  5496. stroke="#A9A9A9"
  5497. stroke-width="2.5"
  5498. stroke-miterlimit="10"
  5499. x1="787.28"
  5500. y1="93.482"
  5501. x2="787.28"
  5502. y2="79.986"
  5503. ></line>
  5504. <path
  5505. fill="#A9A9A9"
  5506. d="M809.094,88.828c-1.44,0-2.611-1.171-2.611-2.604c0-1.438,1.171-2.607,2.611-2.607 c1.437,0,2.604,1.171,2.604,2.607C811.697,87.656,810.528,88.828,809.094,88.828 M809.094,90.887 c2.575,0,4.666-2.097,4.666-4.666c0-2.577-2.091-4.665-4.666-4.665c-2.58,0-4.669,2.09-4.669,4.665 C804.427,88.796,806.512,90.887,809.094,90.887L809.094,90.887z"
  5507. ></path>
  5508. <line
  5509. fill="none"
  5510. stroke="#A9A9A9"
  5511. stroke-width="2"
  5512. stroke-miterlimit="10"
  5513. x1="790.469"
  5514. y1="79.674"
  5515. x2="805.428"
  5516. y2="86.734"
  5517. ></line>
  5518. </g>
  5519. </g>
  5520. <g id="mhskg">
  5521. <g id="_x31_11-3off" v-if="false">
  5522. <line
  5523. fill="none"
  5524. stroke="#9A2B2D"
  5525. stroke-width="2.5"
  5526. stroke-miterlimit="10"
  5527. x1="755.351"
  5528. y1="101.37"
  5529. x2="768.848"
  5530. y2="101.37"
  5531. ></line>
  5532. <path
  5533. fill="#9A2B2D"
  5534. d="M760.01,123.182c0-1.44,1.171-2.609,2.604-2.609c1.438,0,2.607,1.172,2.607,2.609 s-1.171,2.604-2.607,2.604C761.177,125.787,760.01,124.618,760.01,123.182 M757.946,123.182c0,2.578,2.089,4.666,4.666,4.666 c2.576,0,4.665-2.099,4.665-4.666c0-2.577-2.091-4.666-4.665-4.666C760.036,118.516,757.946,120.602,757.946,123.182 L757.946,123.182z"
  5535. ></path>
  5536. <line
  5537. fill="none"
  5538. stroke="#9A2B2D"
  5539. stroke-width="2"
  5540. stroke-miterlimit="10"
  5541. x1="762.614"
  5542. y1="101.597"
  5543. x2="762.614"
  5544. y2="119.518"
  5545. ></line>
  5546. </g>
  5547. <g id="_x31_11-3on">
  5548. <line
  5549. fill="none"
  5550. stroke="#A9A9A9"
  5551. stroke-width="2.5"
  5552. stroke-miterlimit="10"
  5553. x1="755.351"
  5554. y1="101.37"
  5555. x2="768.848"
  5556. y2="101.37"
  5557. ></line>
  5558. <path
  5559. fill="#A9A9A9"
  5560. d="M760.01,123.182c0-1.44,1.171-2.611,2.604-2.611c1.438,0,2.607,1.171,2.607,2.611 c0,1.437-1.171,2.604-2.607,2.604C761.177,125.787,760.01,124.618,760.01,123.182 M757.946,123.182 c0,2.567,2.089,4.666,4.666,4.666c2.576,0,4.665-2.099,4.665-4.666c0-2.58-2.091-4.669-4.665-4.669 C760.036,118.513,757.946,120.602,757.946,123.182L757.946,123.182z"
  5561. ></path>
  5562. <line
  5563. fill="none"
  5564. stroke="#A9A9A9"
  5565. stroke-width="2"
  5566. stroke-miterlimit="10"
  5567. x1="769.158"
  5568. y1="104.558"
  5569. x2="762.1"
  5570. y2="119.518"
  5571. ></line>
  5572. </g>
  5573. </g>
  5574. <g id="mhskg">
  5575. <g id="_x31_11-1off" v-if="false">
  5576. <line
  5577. fill="none"
  5578. stroke="#9A2B2D"
  5579. stroke-width="2.5"
  5580. stroke-miterlimit="10"
  5581. x1="755.351"
  5582. y1="197.364"
  5583. x2="768.848"
  5584. y2="197.364"
  5585. ></line>
  5586. <path
  5587. fill="#9A2B2D"
  5588. d="M760.01,219.176c0-1.438,1.171-2.604,2.604-2.604c1.438,0,2.607,1.172,2.607,2.604 c0,1.438-1.171,2.605-2.607,2.605C761.178,221.781,760.01,220.612,760.01,219.176 M757.946,219.176 c0,2.578,2.089,4.666,4.666,4.666c2.576,0,4.665-2.09,4.665-4.666c0-2.568-2.091-4.657-4.665-4.657 C760.036,214.51,757.946,216.596,757.946,219.176L757.946,219.176z"
  5589. ></path>
  5590. <line
  5591. fill="none"
  5592. stroke="#9A2B2D"
  5593. stroke-width="2"
  5594. stroke-miterlimit="10"
  5595. x1="762.614"
  5596. y1="197.591"
  5597. x2="762.614"
  5598. y2="215.512"
  5599. ></line>
  5600. </g>
  5601. <g id="_x31_11-1on">
  5602. <line
  5603. fill="none"
  5604. stroke="#A9A9A9"
  5605. stroke-width="2.5"
  5606. stroke-miterlimit="10"
  5607. x1="755.351"
  5608. y1="197.364"
  5609. x2="768.848"
  5610. y2="197.364"
  5611. ></line>
  5612. <path
  5613. fill="#A9A9A9"
  5614. d="M760.01,219.176c0-1.438,1.171-2.604,2.604-2.604c1.438,0,2.607,1.171,2.607,2.604 c0,1.438-1.171,2.605-2.607,2.605C761.178,221.781,760.01,220.612,760.01,219.176 M757.946,219.176 c0,2.576,2.089,4.666,4.666,4.666c2.576,0,4.665-2.09,4.665-4.666c0-2.571-2.091-4.669-4.665-4.669 C760.036,214.507,757.946,216.596,757.946,219.176L757.946,219.176z"
  5615. ></path>
  5616. <line
  5617. fill="none"
  5618. stroke="#A9A9A9"
  5619. stroke-width="2"
  5620. stroke-miterlimit="10"
  5621. x1="769.158"
  5622. y1="200.552"
  5623. x2="762.1"
  5624. y2="215.512"
  5625. ></line>
  5626. </g>
  5627. </g>
  5628. <g id="mhskg">
  5629. <g id="_x31_11-03off" v-if="false">
  5630. <line
  5631. fill="none"
  5632. stroke="#9A2B2D"
  5633. stroke-width="2.5"
  5634. stroke-miterlimit="10"
  5635. x1="736.534"
  5636. y1="144.292"
  5637. x2="736.534"
  5638. y2="130.796"
  5639. ></line>
  5640. <path
  5641. fill="#9A2B2D"
  5642. d="M714.724,139.638c-1.438,0-2.605-1.181-2.605-2.606c0-1.438,1.169-2.607,2.605-2.607 c1.438,0,2.608,1.182,2.608,2.607C717.335,138.467,716.163,139.638,714.724,139.638 M714.724,141.697 c2.58,0,4.666-2.09,4.666-4.666c0-2.575-2.089-4.665-4.666-4.665c-2.576,0-4.666,2.088-4.666,4.665 C710.058,139.608,712.146,141.697,714.724,141.697L714.724,141.697z"
  5643. ></path>
  5644. <line
  5645. fill="none"
  5646. stroke="#9A2B2D"
  5647. stroke-width="2"
  5648. stroke-miterlimit="10"
  5649. x1="736.309"
  5650. y1="137.029"
  5651. x2="718.388"
  5652. y2="137.029"
  5653. ></line>
  5654. </g>
  5655. <g id="_x31_11-03on">
  5656. <line
  5657. fill="none"
  5658. stroke="#A9A9A9"
  5659. stroke-width="2.5"
  5660. stroke-miterlimit="10"
  5661. x1="736.534"
  5662. y1="144.292"
  5663. x2="736.534"
  5664. y2="130.796"
  5665. ></line>
  5666. <path
  5667. fill="#A9A9A9"
  5668. d="M714.724,139.638c-1.438,0-2.605-1.181-2.605-2.606c0-1.438,1.169-2.607,2.605-2.607 c1.438,0,2.611,1.182,2.611,2.607C717.344,138.467,716.163,139.638,714.724,139.638 M714.724,141.697 c2.58,0,4.669-2.09,4.669-4.666c0-2.575-2.089-4.665-4.669-4.665c-2.576,0-4.666,2.088-4.666,4.665 C710.058,139.608,712.147,141.697,714.724,141.697L714.724,141.697z"
  5669. ></path>
  5670. <line
  5671. fill="none"
  5672. stroke="#A9A9A9"
  5673. stroke-width="2"
  5674. stroke-miterlimit="10"
  5675. x1="733.348"
  5676. y1="130.484"
  5677. x2="718.388"
  5678. y2="137.544"
  5679. ></line>
  5680. </g>
  5681. </g>
  5682. <g id="mhskg">
  5683. <g id="_x31_11-01off" v-if="false">
  5684. <line
  5685. fill="none"
  5686. stroke="#9A2B2D"
  5687. stroke-width="2.5"
  5688. stroke-miterlimit="10"
  5689. x1="736.534"
  5690. y1="192.959"
  5691. x2="736.534"
  5692. y2="179.463"
  5693. ></line>
  5694. <path
  5695. fill="#9A2B2D"
  5696. d="M714.724,188.305c-1.438,0-2.605-1.181-2.605-2.606c0-1.438,1.169-2.607,2.605-2.607 c1.438,0,2.608,1.182,2.608,2.607C717.335,187.134,716.163,188.305,714.724,188.305 M714.724,190.364 c2.58,0,4.666-2.09,4.666-4.666c0-2.575-2.089-4.665-4.666-4.665c-2.576,0-4.666,2.088-4.666,4.665 C710.058,188.275,712.146,190.364,714.724,190.364L714.724,190.364z"
  5697. ></path>
  5698. <line
  5699. fill="none"
  5700. stroke="#9A2B2D"
  5701. stroke-width="2"
  5702. stroke-miterlimit="10"
  5703. x1="736.309"
  5704. y1="185.696"
  5705. x2="718.388"
  5706. y2="185.696"
  5707. ></line>
  5708. </g>
  5709. <g id="_x31_11-01on">
  5710. <line
  5711. fill="none"
  5712. stroke="#A9A9A9"
  5713. stroke-width="2.5"
  5714. stroke-miterlimit="10"
  5715. x1="736.534"
  5716. y1="192.959"
  5717. x2="736.534"
  5718. y2="179.463"
  5719. ></line>
  5720. <path
  5721. fill="#A9A9A9"
  5722. d="M714.724,188.305c-1.438,0-2.605-1.181-2.605-2.606c0-1.438,1.169-2.607,2.605-2.607 c1.438,0,2.611,1.182,2.611,2.607C717.344,187.134,716.163,188.305,714.724,188.305 M714.724,190.364 c2.58,0,4.669-2.09,4.669-4.666c0-2.575-2.089-4.665-4.669-4.665c-2.576,0-4.666,2.088-4.666,4.665 C710.058,188.275,712.147,190.364,714.724,190.364L714.724,190.364z"
  5723. ></path>
  5724. <line
  5725. fill="none"
  5726. stroke="#A9A9A9"
  5727. stroke-width="2"
  5728. stroke-miterlimit="10"
  5729. x1="733.348"
  5730. y1="179.151"
  5731. x2="718.388"
  5732. y2="186.211"
  5733. ></line>
  5734. </g>
  5735. </g>
  5736. <g id="mhskg">
  5737. <g id="_x31_21-0off_29_" v-if="false">
  5738. <line
  5739. fill="none"
  5740. stroke="#9A2B2D"
  5741. stroke-width="2.5"
  5742. stroke-miterlimit="10"
  5743. x1="1241.237"
  5744. y1="765.468"
  5745. x2="1227.74"
  5746. y2="765.468"
  5747. ></line>
  5748. <path
  5749. fill="#9A2B2D"
  5750. d="M1236.585,787.271c0,1.438-1.175,2.605-2.604,2.605c-1.438,0-2.607-1.178-2.607-2.605 s1.181-2.609,2.607-2.609S1236.585,785.832,1236.585,787.271 M1238.642,787.271c0-2.58-2.091-4.666-4.666-4.666 c-2.574,0-4.665,2.09-4.665,4.666s2.089,4.666,4.665,4.666C1236.553,791.937,1238.642,789.849,1238.642,787.271L1238.642,787.271 z"
  5751. ></path>
  5752. <line
  5753. fill="none"
  5754. stroke="#9A2B2D"
  5755. stroke-width="2"
  5756. stroke-miterlimit="10"
  5757. x1="1233.974"
  5758. y1="765.687"
  5759. x2="1233.974"
  5760. y2="783.607"
  5761. ></line>
  5762. </g>
  5763. <g id="_x31_21-0on_29_">
  5764. <line
  5765. fill="none"
  5766. stroke="#A9A9A9"
  5767. stroke-width="2.5"
  5768. stroke-miterlimit="10"
  5769. x1="1241.237"
  5770. y1="765.468"
  5771. x2="1227.74"
  5772. y2="765.468"
  5773. ></line>
  5774. <path
  5775. fill="#A9A9A9"
  5776. d="M1236.585,787.271c0,1.438-1.175,2.605-2.604,2.605c-1.438,0-2.607-1.178-2.607-2.605 c0-1.439,1.181-2.611,2.607-2.611S1236.585,785.832,1236.585,787.271 M1238.642,787.271c0-2.58-2.091-4.668-4.666-4.668 c-2.574,0-4.665,2.088-4.665,4.668c0,2.576,2.089,4.666,4.665,4.666C1236.553,791.937,1238.642,789.847,1238.642,787.271 L1238.642,787.271z"
  5777. ></path>
  5778. <line
  5779. fill="none"
  5780. stroke="#A9A9A9"
  5781. stroke-width="2"
  5782. stroke-miterlimit="10"
  5783. x1="1227.429"
  5784. y1="768.648"
  5785. x2="1234.488"
  5786. y2="783.607"
  5787. ></line>
  5788. </g>
  5789. </g>
  5790. <g id="mhskg">
  5791. <g id="_x31_21-0off_27_" v-if="false">
  5792. <line
  5793. fill="none"
  5794. stroke="#9A2B2D"
  5795. stroke-width="2.5"
  5796. stroke-miterlimit="10"
  5797. x1="1203.872"
  5798. y1="700.634"
  5799. x2="1217.369"
  5800. y2="700.634"
  5801. ></line>
  5802. <path
  5803. fill="#9A2B2D"
  5804. d="M1208.527,722.447c0-1.438,1.171-2.604,2.606-2.604c1.435,0,2.604,1.172,2.604,2.604 c0,1.438-1.171,2.605-2.604,2.605C1209.698,725.052,1208.527,723.884,1208.527,722.447 M1206.469,722.447 c0,2.578,2.089,4.666,4.666,4.666c2.576,0,4.665-2.09,4.665-4.666c0-2.578-2.091-4.666-4.665-4.666 C1208.56,717.781,1206.469,719.867,1206.469,722.447L1206.469,722.447z"
  5805. ></path>
  5806. <line
  5807. fill="none"
  5808. stroke="#9A2B2D"
  5809. stroke-width="2"
  5810. stroke-miterlimit="10"
  5811. x1="1211.137"
  5812. y1="700.861"
  5813. x2="1211.137"
  5814. y2="718.783"
  5815. ></line>
  5816. </g>
  5817. <g id="_x31_21-0on_27_">
  5818. <line
  5819. fill="none"
  5820. stroke="#A9A9A9"
  5821. stroke-width="2.5"
  5822. stroke-miterlimit="10"
  5823. x1="1203.872"
  5824. y1="700.634"
  5825. x2="1217.369"
  5826. y2="700.634"
  5827. ></line>
  5828. <path
  5829. fill="#A9A9A9"
  5830. d="M1208.527,722.447c0-1.438,1.171-2.604,2.606-2.604c1.435,0,2.604,1.17,2.604,2.604 c0,1.438-1.171,2.605-2.604,2.605C1209.698,725.052,1208.527,723.884,1208.527,722.447 M1206.469,722.447 c0,2.576,2.089,4.666,4.666,4.666c2.576,0,4.665-2.09,4.665-4.666c0-2.58-2.091-4.67-4.665-4.67 C1208.56,717.777,1206.469,719.867,1206.469,722.447L1206.469,722.447z"
  5831. ></path>
  5832. <line
  5833. fill="none"
  5834. stroke="#A9A9A9"
  5835. stroke-width="2"
  5836. stroke-miterlimit="10"
  5837. x1="1217.682"
  5838. y1="703.822"
  5839. x2="1210.621"
  5840. y2="718.783"
  5841. ></line>
  5842. </g>
  5843. </g>
  5844. <g id="mhskg">
  5845. <g id="_x31_21-0off_38_" v-if="false">
  5846. <line
  5847. fill="none"
  5848. stroke="#9A2B2D"
  5849. stroke-width="2.5"
  5850. stroke-miterlimit="10"
  5851. x1="340.398"
  5852. y1="841.24"
  5853. x2="353.896"
  5854. y2="841.24"
  5855. ></line>
  5856. <path
  5857. fill="#9A2B2D"
  5858. d="M345.053,863.052c0-1.441,1.171-2.609,2.604-2.609c1.438,0,2.606,1.172,2.606,2.609 c0,1.436-1.177,2.604-2.606,2.604C346.225,865.658,345.053,864.488,345.053,863.052 M342.994,863.052 c0,2.578,2.089,4.666,4.666,4.666c2.575,0,4.665-2.09,4.665-4.666c0-2.578-2.092-4.666-4.665-4.666 C345.086,858.386,342.994,860.472,342.994,863.052L342.994,863.052z"
  5859. ></path>
  5860. <line
  5861. fill="none"
  5862. stroke="#9A2B2D"
  5863. stroke-width="2"
  5864. stroke-miterlimit="10"
  5865. x1="347.662"
  5866. y1="841.468"
  5867. x2="347.662"
  5868. y2="859.388"
  5869. ></line>
  5870. </g>
  5871. <g id="_x31_21-0on_38_">
  5872. <line
  5873. fill="none"
  5874. stroke="#A9A9A9"
  5875. stroke-width="2.5"
  5876. stroke-miterlimit="10"
  5877. x1="340.398"
  5878. y1="841.24"
  5879. x2="353.896"
  5880. y2="841.24"
  5881. ></line>
  5882. <path
  5883. fill="#A9A9A9"
  5884. d="M345.053,863.052c0-1.441,1.171-2.611,2.604-2.611c1.438,0,2.606,1.17,2.606,2.611 c0,1.436-1.177,2.604-2.606,2.604C346.225,865.658,345.053,864.488,345.053,863.052 M342.994,863.052 c0,2.576,2.089,4.666,4.666,4.666c2.575,0,4.665-2.09,4.665-4.666c0-2.58-2.092-4.67-4.665-4.67 C345.086,858.384,342.994,860.472,342.994,863.052L342.994,863.052z"
  5885. ></path>
  5886. <line
  5887. fill="none"
  5888. stroke="#A9A9A9"
  5889. stroke-width="2"
  5890. stroke-miterlimit="10"
  5891. x1="354.207"
  5892. y1="844.427"
  5893. x2="347.147"
  5894. y2="859.388"
  5895. ></line>
  5896. </g>
  5897. </g>
  5898. <g id="mhskg">
  5899. <g id="_x31_21-0off_24_" v-if="false">
  5900. <line
  5901. fill="none"
  5902. stroke="#9A2B2D"
  5903. stroke-width="2.5"
  5904. stroke-miterlimit="10"
  5905. x1="396.393"
  5906. y1="765.468"
  5907. x2="382.896"
  5908. y2="765.468"
  5909. ></line>
  5910. <path
  5911. fill="#9A2B2D"
  5912. d="M391.738,787.271c0,1.438-1.172,2.605-2.604,2.605c-1.438,0-2.604-1.178-2.604-2.605 s1.174-2.609,2.604-2.609C390.567,784.662,391.738,785.832,391.738,787.271 M393.798,787.271c0-2.58-2.092-4.666-4.666-4.666 c-2.566,0-4.665,2.09-4.665,4.666s2.097,4.666,4.665,4.666C391.708,791.937,393.798,789.849,393.798,787.271L393.798,787.271z"
  5913. ></path>
  5914. <line
  5915. fill="none"
  5916. stroke="#9A2B2D"
  5917. stroke-width="2"
  5918. stroke-miterlimit="10"
  5919. x1="389.13"
  5920. y1="765.687"
  5921. x2="389.13"
  5922. y2="783.607"
  5923. ></line>
  5924. </g>
  5925. <g id="_x31_21-0on_24_">
  5926. <line
  5927. fill="none"
  5928. stroke="#A9A9A9"
  5929. stroke-width="2.5"
  5930. stroke-miterlimit="10"
  5931. x1="396.393"
  5932. y1="765.468"
  5933. x2="382.896"
  5934. y2="765.468"
  5935. ></line>
  5936. <path
  5937. fill="#A9A9A9"
  5938. d="M391.738,787.271c0,1.438-1.172,2.605-2.604,2.605c-1.438,0-2.604-1.178-2.604-2.605 c0-1.439,1.174-2.611,2.604-2.611C390.567,784.66,391.738,785.832,391.738,787.271 M393.798,787.271 c0-2.58-2.092-4.668-4.666-4.668c-2.566,0-4.665,2.088-4.665,4.668c0,2.576,2.097,4.666,4.665,4.666 C391.708,791.937,393.798,789.847,393.798,787.271L393.798,787.271z"
  5939. ></path>
  5940. <line
  5941. fill="none"
  5942. stroke="#A9A9A9"
  5943. stroke-width="2"
  5944. stroke-miterlimit="10"
  5945. x1="382.585"
  5946. y1="768.648"
  5947. x2="389.644"
  5948. y2="783.607"
  5949. ></line>
  5950. </g>
  5951. </g>
  5952. <g id="mhskg">
  5953. <g id="_x31_21-0off_26_" v-if="false">
  5954. <line
  5955. fill="none"
  5956. stroke="#9A2B2D"
  5957. stroke-width="2.5"
  5958. stroke-miterlimit="10"
  5959. x1="1087.26"
  5960. y1="690.847"
  5961. x2="1100.76"
  5962. y2="690.847"
  5963. ></line>
  5964. <path
  5965. fill="#9A2B2D"
  5966. d="M1091.912,712.66c0-1.438,1.173-2.604,2.606-2.604s2.604,1.172,2.604,2.604 c0,1.438-1.172,2.605-2.604,2.605C1093.094,715.265,1091.912,714.095,1091.912,712.66 M1089.854,712.66 c0,2.578,2.089,4.666,4.666,4.666c2.576,0,4.665-2.09,4.665-4.666c0-2.578-2.091-4.666-4.665-4.666 C1091.945,707.994,1089.854,710.08,1089.854,712.66L1089.854,712.66z"
  5967. ></path>
  5968. <line
  5969. fill="none"
  5970. stroke="#9A2B2D"
  5971. stroke-width="2"
  5972. stroke-miterlimit="10"
  5973. x1="1094.522"
  5974. y1="691.074"
  5975. x2="1094.522"
  5976. y2="708.996"
  5977. ></line>
  5978. </g>
  5979. <g id="_x31_21-0on_26_">
  5980. <line
  5981. fill="none"
  5982. stroke="#A9A9A9"
  5983. stroke-width="2.5"
  5984. stroke-miterlimit="10"
  5985. x1="1087.26"
  5986. y1="690.847"
  5987. x2="1100.76"
  5988. y2="690.847"
  5989. ></line>
  5990. <path
  5991. fill="#A9A9A9"
  5992. d="M1091.912,712.66c0-1.438,1.173-2.604,2.606-2.604s2.604,1.17,2.604,2.604 c0,1.438-1.172,2.605-2.604,2.605C1093.094,715.265,1091.912,714.095,1091.912,712.66 M1089.854,712.66 c0,2.576,2.089,4.666,4.666,4.666c2.576,0,4.665-2.09,4.665-4.666c0-2.58-2.091-4.67-4.665-4.67 C1091.945,707.99,1089.854,710.08,1089.854,712.66L1089.854,712.66z"
  5993. ></path>
  5994. <line
  5995. fill="none"
  5996. stroke="#A9A9A9"
  5997. stroke-width="2"
  5998. stroke-miterlimit="10"
  5999. x1="1101.067"
  6000. y1="694.035"
  6001. x2="1094.01"
  6002. y2="708.996"
  6003. ></line>
  6004. </g>
  6005. </g>
  6006. <g id="mhskg">
  6007. <g id="_x31_21-0off_31_" v-if="false">
  6008. <line
  6009. fill="none"
  6010. stroke="#9A2B2D"
  6011. stroke-width="2.5"
  6012. stroke-miterlimit="10"
  6013. x1="359.028"
  6014. y1="700.634"
  6015. x2="372.525"
  6016. y2="700.634"
  6017. ></line>
  6018. <path
  6019. fill="#9A2B2D"
  6020. d="M363.683,722.447c0-1.438,1.171-2.604,2.604-2.604c1.438,0,2.606,1.172,2.606,2.604 c0,1.438-1.171,2.605-2.606,2.605C364.854,725.052,363.683,723.884,363.683,722.447 M361.624,722.447 c0,2.578,2.09,4.666,4.666,4.666c2.575,0,4.665-2.09,4.665-4.666c0-2.578-2.092-4.666-4.665-4.666 C363.716,717.781,361.624,719.867,361.624,722.447L361.624,722.447z"
  6021. ></path>
  6022. <line
  6023. fill="none"
  6024. stroke="#9A2B2D"
  6025. stroke-width="2"
  6026. stroke-miterlimit="10"
  6027. x1="366.292"
  6028. y1="700.861"
  6029. x2="366.292"
  6030. y2="718.783"
  6031. ></line>
  6032. </g>
  6033. <g id="_x31_21-0on_31_">
  6034. <line
  6035. fill="none"
  6036. stroke="#A9A9A9"
  6037. stroke-width="2.5"
  6038. stroke-miterlimit="10"
  6039. x1="359.028"
  6040. y1="700.634"
  6041. x2="372.525"
  6042. y2="700.634"
  6043. ></line>
  6044. <path
  6045. fill="#A9A9A9"
  6046. d="M363.683,722.447c0-1.438,1.171-2.604,2.604-2.604c1.438,0,2.606,1.17,2.606,2.604 c0,1.438-1.171,2.605-2.606,2.605C364.854,725.052,363.683,723.884,363.683,722.447 M361.624,722.447 c0,2.576,2.09,4.666,4.666,4.666c2.575,0,4.665-2.09,4.665-4.666c0-2.58-2.092-4.67-4.665-4.67 C363.716,717.777,361.624,719.867,361.624,722.447L361.624,722.447z"
  6047. ></path>
  6048. <line
  6049. fill="none"
  6050. stroke="#A9A9A9"
  6051. stroke-width="2"
  6052. stroke-miterlimit="10"
  6053. x1="372.838"
  6054. y1="703.822"
  6055. x2="365.777"
  6056. y2="718.783"
  6057. ></line>
  6058. </g>
  6059. </g>
  6060. </g>
  6061. <g id="kg">
  6062. <g id="mhskg3153">
  6063. <g v-if="ajaxData.mhskg3153" id="_x31_21-0off_39_">
  6064. <line
  6065. fill="none"
  6066. stroke="#9A2B2D"
  6067. stroke-width="2.5"
  6068. stroke-miterlimit="10"
  6069. x1="464.701"
  6070. y1="700.634"
  6071. x2="478.198"
  6072. y2="700.634"
  6073. ></line>
  6074. <path
  6075. fill="#9A2B2D"
  6076. d="M469.356,722.447c0-1.438,1.171-2.604,2.606-2.604c1.435,0,2.604,1.172,2.604,2.604 c0,1.438-1.171,2.605-2.604,2.605C470.528,725.052,469.356,723.884,469.356,722.447 M467.302,722.447 c0,2.578,2.089,4.666,4.666,4.666c2.566,0,4.665-2.09,4.665-4.666c0-2.578-2.101-4.666-4.665-4.666 C469.389,717.781,467.302,719.867,467.302,722.447L467.302,722.447z"
  6077. ></path>
  6078. <line
  6079. fill="none"
  6080. stroke="#9A2B2D"
  6081. stroke-width="2"
  6082. stroke-miterlimit="10"
  6083. x1="471.969"
  6084. y1="700.861"
  6085. x2="471.969"
  6086. y2="718.783"
  6087. ></line>
  6088. </g>
  6089. <g v-else-if="ajaxData.mhskg3153 == false" id="31_21-0on_39_">
  6090. <line
  6091. fill="none"
  6092. stroke="#419B48"
  6093. stroke-width="2.5"
  6094. stroke-miterlimit="10"
  6095. x1="464.701"
  6096. y1="700.634"
  6097. x2="478.198"
  6098. y2="700.634"
  6099. ></line>
  6100. <path
  6101. fill="#419B48"
  6102. d="M469.356,722.447c0-1.438,1.171-2.604,2.606-2.604c1.435,0,2.604,1.17,2.604,2.604 c0,1.438-1.171,2.605-2.604,2.605C470.528,725.052,469.356,723.884,469.356,722.447 M467.302,722.447 c0,2.576,2.089,4.666,4.666,4.666c2.566,0,4.665-2.09,4.665-4.666c0-2.58-2.101-4.67-4.665-4.67 C469.389,717.777,467.302,719.867,467.302,722.447L467.302,722.447z"
  6103. ></path>
  6104. <line
  6105. fill="none"
  6106. stroke="#419B48"
  6107. stroke-width="2"
  6108. stroke-miterlimit="10"
  6109. x1="478.511"
  6110. y1="703.822"
  6111. x2="471.45"
  6112. y2="718.783"
  6113. ></line>
  6114. </g>
  6115. </g>
  6116. <g id="mhskg1010">
  6117. <g v-if="ajaxData.mhskg1010" id="31_01-0off">
  6118. <line
  6119. fill="none"
  6120. stroke="#9A2B2D"
  6121. stroke-width="2.5"
  6122. stroke-miterlimit="10"
  6123. x1="640.765"
  6124. y1="388.177"
  6125. x2="640.765"
  6126. y2="401.677"
  6127. ></line>
  6128. <path
  6129. fill="#9A2B2D"
  6130. d="M618.952,392.829c1.44,0,2.609,1.171,2.609,2.606c0,1.434-1.172,2.607-2.609,2.607 c-1.437,0-2.604-1.181-2.604-2.607C616.348,394,617.517,392.829,618.952,392.829 M618.952,390.77 c-2.576,0-4.666,2.089-4.666,4.665c0,2.577,2.1,4.666,4.666,4.666c2.577,0,4.666-2.091,4.666-4.666 C623.618,392.861,621.532,390.77,618.952,390.77L618.952,390.77z"
  6131. ></path>
  6132. <line
  6133. fill="none"
  6134. stroke="#9A2B2D"
  6135. stroke-width="2"
  6136. stroke-miterlimit="10"
  6137. x1="640.537"
  6138. y1="395.437"
  6139. x2="622.616"
  6140. y2="395.437"
  6141. ></line>
  6142. </g>
  6143. <g v-else-if="ajaxData.mhskg1010 == false" id="31_01-0on">
  6144. <line
  6145. fill="none"
  6146. stroke="#419B48"
  6147. stroke-width="2.5"
  6148. stroke-miterlimit="10"
  6149. x1="640.765"
  6150. y1="388.177"
  6151. x2="640.765"
  6152. y2="401.677"
  6153. ></line>
  6154. <path
  6155. fill="#419B48"
  6156. d="M618.952,392.829c1.44,0,2.611,1.171,2.611,2.606c0,1.434-1.171,2.607-2.611,2.607 c-1.437,0-2.604-1.181-2.604-2.607C616.348,394,617.517,392.829,618.952,392.829 M618.952,390.77 c-2.566,0-4.666,2.089-4.666,4.665c0,2.577,2.1,4.666,4.666,4.666c2.58,0,4.669-2.091,4.669-4.666 C623.621,392.861,621.532,390.77,618.952,390.77L618.952,390.77z"
  6157. ></path>
  6158. <line
  6159. fill="none"
  6160. stroke="#419B48"
  6161. stroke-width="2"
  6162. stroke-miterlimit="10"
  6163. x1="637.576"
  6164. y1="401.983"
  6165. x2="622.616"
  6166. y2="394.927"
  6167. ></line>
  6168. </g>
  6169. </g>
  6170. <g id="mhskg10101">
  6171. <g v-if="ajaxData.mhskg10101" id="31_01-01off">
  6172. <line
  6173. fill="none"
  6174. stroke="#9A2B2D"
  6175. stroke-width="2.5"
  6176. stroke-miterlimit="10"
  6177. x1="640.765"
  6178. y1="290.779"
  6179. x2="640.765"
  6180. y2="304.276"
  6181. ></line>
  6182. <path
  6183. fill="#9A2B2D"
  6184. d="M618.952,295.434c1.44,0,2.609,1.171,2.609,2.604c0,1.438-1.172,2.607-2.609,2.607 c-1.437,0-2.604-1.171-2.604-2.607C616.348,296.605,617.517,295.434,618.952,295.434 M618.952,293.375 c-2.576,0-4.666,2.088-4.666,4.666c0,2.577,2.1,4.665,4.666,4.665c2.577,0,4.666-2.09,4.666-4.665 C623.618,295.465,621.532,293.375,618.952,293.375L618.952,293.375z"
  6185. ></path>
  6186. <line
  6187. fill="none"
  6188. stroke="#9A2B2D"
  6189. stroke-width="2"
  6190. stroke-miterlimit="10"
  6191. x1="640.537"
  6192. y1="298.042"
  6193. x2="622.616"
  6194. y2="298.042"
  6195. ></line>
  6196. </g>
  6197. <g v-else-if="ajaxData.mhskg10101 == false" id="31_01-01on">
  6198. <line
  6199. fill="none"
  6200. stroke="#419B48"
  6201. stroke-width="2.5"
  6202. stroke-miterlimit="10"
  6203. x1="640.765"
  6204. y1="290.779"
  6205. x2="640.765"
  6206. y2="304.276"
  6207. ></line>
  6208. <path
  6209. fill="#419B48"
  6210. d="M618.952,295.434c1.44,0,2.611,1.171,2.611,2.604c0,1.438-1.171,2.607-2.611,2.607 c-1.437,0-2.604-1.171-2.604-2.607C616.348,296.605,617.517,295.434,618.952,295.434 M618.952,293.375 c-2.566,0-4.666,2.088-4.666,4.666c0,2.577,2.1,4.665,4.666,4.665c2.58,0,4.669-2.09,4.669-4.665 C623.621,295.465,621.532,293.375,618.952,293.375L618.952,293.375z"
  6211. ></path>
  6212. <line
  6213. fill="none"
  6214. stroke="#419B48"
  6215. stroke-width="2"
  6216. stroke-miterlimit="10"
  6217. x1="637.576"
  6218. y1="304.594"
  6219. x2="622.616"
  6220. y2="297.528"
  6221. ></line>
  6222. </g>
  6223. </g>
  6224. <g id="mhskg0110">
  6225. <g v-if="ajaxData.mhskg0110" id="30_11-0off">
  6226. <line
  6227. fill="none"
  6228. stroke="#9A2B2D"
  6229. stroke-width="2.5"
  6230. stroke-miterlimit="10"
  6231. x1="576.413"
  6232. y1="450.201"
  6233. x2="589.91"
  6234. y2="450.201"
  6235. ></line>
  6236. <path
  6237. fill="#9A2B2D"
  6238. d="M581.068,472.012c0-1.439,1.171-2.608,2.606-2.608c1.435,0,2.604,1.172,2.604,2.608 c0,1.438-1.171,2.604-2.604,2.604C582.24,474.618,581.068,473.449,581.068,472.012 M579.01,472.012 c0,2.578,2.089,4.666,4.666,4.666c2.576,0,4.665-2.09,4.665-4.666c0-2.577-2.093-4.666-4.665-4.666 C581.101,467.346,579.01,469.432,579.01,472.012L579.01,472.012z"
  6239. ></path>
  6240. <line
  6241. fill="none"
  6242. stroke="#9A2B2D"
  6243. stroke-width="2"
  6244. stroke-miterlimit="10"
  6245. x1="583.678"
  6246. y1="450.427"
  6247. x2="583.678"
  6248. y2="468.348"
  6249. ></line>
  6250. </g>
  6251. <g v-else-if="ajaxData.mhskg0110 == false" id="30_11-0on">
  6252. <line
  6253. fill="none"
  6254. stroke="#419B48"
  6255. stroke-width="2.5"
  6256. stroke-miterlimit="10"
  6257. x1="576.413"
  6258. y1="450.201"
  6259. x2="589.91"
  6260. y2="450.201"
  6261. ></line>
  6262. <path
  6263. fill="#419B48"
  6264. d="M581.068,472.012c0-1.439,1.171-2.61,2.606-2.61c1.435,0,2.604,1.171,2.604,2.61 c0,1.438-1.171,2.604-2.604,2.604C582.24,474.618,581.068,473.449,581.068,472.012 M579.01,472.012 c0,2.576,2.089,4.666,4.666,4.666c2.576,0,4.665-2.09,4.665-4.666c0-2.58-2.093-4.669-4.665-4.669 C581.101,467.344,579.01,469.432,579.01,472.012L579.01,472.012z"
  6265. ></path>
  6266. <line
  6267. fill="none"
  6268. stroke="#419B48"
  6269. stroke-width="2"
  6270. stroke-miterlimit="10"
  6271. x1="590.223"
  6272. y1="453.388"
  6273. x2="583.162"
  6274. y2="468.348"
  6275. ></line>
  6276. </g>
  6277. </g>
  6278. <g id="mhskg110">
  6279. <g v-if="ajaxData.mhskg110" id="31_1-0off">
  6280. <line
  6281. fill="none"
  6282. stroke="#9A2B2D"
  6283. stroke-width="2.5"
  6284. stroke-miterlimit="10"
  6285. x1="692.677"
  6286. y1="257.805"
  6287. x2="692.677"
  6288. y2="244.308"
  6289. ></line>
  6290. <path
  6291. fill="#9A2B2D"
  6292. d="M714.488,253.15c-1.438,0-2.604-1.171-2.604-2.606s1.172-2.604,2.604-2.604 c1.438,0,2.605,1.171,2.605,2.604C717.094,251.979,715.927,253.15,714.488,253.15 M714.488,255.209 c2.578,0,4.666-2.088,4.666-4.666c0-2.577-2.09-4.665-4.666-4.665c-2.577,0-4.666,2.099-4.666,4.665 C709.822,253.119,711.907,255.209,714.488,255.209L714.488,255.209z"
  6293. ></path>
  6294. <line
  6295. fill="none"
  6296. stroke="#9A2B2D"
  6297. stroke-width="2"
  6298. stroke-miterlimit="10"
  6299. x1="692.903"
  6300. y1="250.542"
  6301. x2="710.823"
  6302. y2="250.542"
  6303. ></line>
  6304. </g>
  6305. <g v-else-if="ajaxData.mhskg110 == false" id="31_1-0on">
  6306. <line
  6307. fill="none"
  6308. stroke="#419B48"
  6309. stroke-width="2.5"
  6310. stroke-miterlimit="10"
  6311. x1="692.677"
  6312. y1="257.805"
  6313. x2="692.677"
  6314. y2="244.308"
  6315. ></line>
  6316. <path
  6317. fill="#419B48"
  6318. d="M714.488,253.15c-1.438,0-2.61-1.171-2.61-2.606s1.18-2.604,2.61-2.604c1.438,0,2.605,1.171,2.605,2.604 C717.094,251.979,715.927,253.15,714.488,253.15 M714.488,255.209c2.576,0,4.666-2.088,4.666-4.666 c0-2.577-2.09-4.665-4.666-4.665c-2.58,0-4.669,2.099-4.669,4.665C709.819,253.119,711.907,255.209,714.488,255.209 L714.488,255.209z"
  6319. ></path>
  6320. <line
  6321. fill="none"
  6322. stroke="#419B48"
  6323. stroke-width="2"
  6324. stroke-miterlimit="10"
  6325. x1="695.864"
  6326. y1="243.996"
  6327. x2="710.823"
  6328. y2="251.056"
  6329. ></line>
  6330. </g>
  6331. </g>
  6332. <g id="mhskg1011">
  6333. <g v-if="ajaxData.mhskg1011" id="31_01-1off">
  6334. <line
  6335. fill="none"
  6336. stroke="#9A2B2D"
  6337. stroke-width="2.5"
  6338. stroke-miterlimit="10"
  6339. x1="658.552"
  6340. y1="261.288"
  6341. x2="672.052"
  6342. y2="261.288"
  6343. ></line>
  6344. <path
  6345. fill="#9A2B2D"
  6346. d="M663.204,283.099c0-1.44,1.174-2.609,2.606-2.609s2.606,1.172,2.606,2.609s-1.18,2.604-2.606,2.604 C664.385,285.705,663.204,284.536,663.204,283.099 M661.146,283.099c0,2.578,2.089,4.666,4.666,4.666 c2.576,0,4.665-2.099,4.665-4.666c0-2.577-2.091-4.666-4.665-4.666C663.237,278.433,661.146,280.519,661.146,283.099 L661.146,283.099z"
  6347. ></path>
  6348. <line
  6349. fill="none"
  6350. stroke="#9A2B2D"
  6351. stroke-width="2"
  6352. stroke-miterlimit="10"
  6353. x1="665.814"
  6354. y1="261.514"
  6355. x2="665.814"
  6356. y2="279.435"
  6357. ></line>
  6358. </g>
  6359. <g v-else-if="ajaxData.mhskg1011 == false" id="31_01-1on">
  6360. <line
  6361. fill="none"
  6362. stroke="#419B48"
  6363. stroke-width="2.5"
  6364. stroke-miterlimit="10"
  6365. x1="658.552"
  6366. y1="261.288"
  6367. x2="672.052"
  6368. y2="261.288"
  6369. ></line>
  6370. <path
  6371. fill="#419B48"
  6372. d="M663.204,283.099c0-1.44,1.174-2.611,2.606-2.611s2.606,1.171,2.606,2.611 c0,1.437-1.18,2.604-2.606,2.604C664.385,285.705,663.204,284.536,663.204,283.099 M661.146,283.099 c0,2.567,2.089,4.666,4.666,4.666c2.576,0,4.665-2.099,4.665-4.666c0-2.58-2.091-4.669-4.665-4.669 C663.237,278.43,661.146,280.519,661.146,283.099L661.146,283.099z"
  6373. ></path>
  6374. <line
  6375. fill="none"
  6376. stroke="#419B48"
  6377. stroke-width="2"
  6378. stroke-miterlimit="10"
  6379. x1="672.359"
  6380. y1="264.475"
  6381. x2="665.302"
  6382. y2="279.435"
  6383. ></line>
  6384. </g>
  6385. </g>
  6386. <g id="mhskg1013">
  6387. <g v-if="ajaxData.mhskg1013" id="31_01-3off">
  6388. <line
  6389. fill="none"
  6390. stroke="#9A2B2D"
  6391. stroke-width="2.5"
  6392. stroke-miterlimit="10"
  6393. x1="658.552"
  6394. y1="358.467"
  6395. x2="672.052"
  6396. y2="358.467"
  6397. ></line>
  6398. <path
  6399. fill="#9A2B2D"
  6400. d="M663.204,380.27c0-1.44,1.174-2.609,2.606-2.609s2.606,1.172,2.606,2.609s-1.18,2.604-2.606,2.604 C664.385,382.875,663.204,381.707,663.204,380.27 M661.146,380.27c0,2.578,2.089,4.666,4.666,4.666 c2.576,0,4.665-2.09,4.665-4.666c0-2.577-2.091-4.666-4.665-4.666C663.237,375.604,661.146,377.69,661.146,380.27L661.146,380.27 z"
  6401. ></path>
  6402. <line
  6403. fill="none"
  6404. stroke="#9A2B2D"
  6405. stroke-width="2"
  6406. stroke-miterlimit="10"
  6407. x1="665.814"
  6408. y1="358.685"
  6409. x2="665.814"
  6410. y2="376.606"
  6411. ></line>
  6412. </g>
  6413. <g v-else-if="ajaxData.mhskg1013 == false" id="31_01-3on">
  6414. <line
  6415. fill="none"
  6416. stroke="#419B48"
  6417. stroke-width="2.5"
  6418. stroke-miterlimit="10"
  6419. x1="658.552"
  6420. y1="358.467"
  6421. x2="672.052"
  6422. y2="358.467"
  6423. ></line>
  6424. <path
  6425. fill="#419B48"
  6426. d="M663.204,380.27c0-1.44,1.174-2.611,2.606-2.611s2.606,1.171,2.606,2.611c0,1.437-1.18,2.604-2.606,2.604 C664.385,382.875,663.204,381.707,663.204,380.27 M661.146,380.27c0,2.576,2.089,4.666,4.666,4.666 c2.576,0,4.665-2.09,4.665-4.666c0-2.58-2.091-4.669-4.665-4.669C663.237,375.601,661.146,377.69,661.146,380.27L661.146,380.27z "
  6427. ></path>
  6428. <line
  6429. fill="none"
  6430. stroke="#419B48"
  6431. stroke-width="2"
  6432. stroke-miterlimit="10"
  6433. x1="672.359"
  6434. y1="361.646"
  6435. x2="665.302"
  6436. y2="376.606"
  6437. ></line>
  6438. </g>
  6439. </g>
  6440. <g id="mhskg10103">
  6441. <g v-if="ajaxData.mhskg10103" id="31_01-03off">
  6442. <line
  6443. fill="none"
  6444. stroke="#9A2B2D"
  6445. stroke-width="2.5"
  6446. stroke-miterlimit="10"
  6447. x1="692.677"
  6448. y1="355.551"
  6449. x2="692.677"
  6450. y2="342.052"
  6451. ></line>
  6452. <path
  6453. fill="#9A2B2D"
  6454. d="M714.488,350.888c-1.438,0-2.604-1.171-2.604-2.606c0-1.435,1.172-2.604,2.604-2.604 c1.438,0,2.605,1.171,2.605,2.604C717.094,349.719,715.927,350.888,714.488,350.888 M714.488,352.947 c2.578,0,4.666-2.088,4.666-4.666c0-2.577-2.09-4.665-4.666-4.665c-2.577,0-4.666,2.09-4.666,4.665 C709.822,350.856,711.907,352.947,714.488,352.947L714.488,352.947z"
  6455. ></path>
  6456. <line
  6457. fill="none"
  6458. stroke="#9A2B2D"
  6459. stroke-width="2"
  6460. stroke-miterlimit="10"
  6461. x1="692.903"
  6462. y1="348.279"
  6463. x2="710.823"
  6464. y2="348.279"
  6465. ></line>
  6466. </g>
  6467. <g v-else-if="ajaxData.mhskg10103 == false" id="31_01-03on">
  6468. <line
  6469. fill="none"
  6470. stroke="#419B48"
  6471. stroke-width="2.5"
  6472. stroke-miterlimit="10"
  6473. x1="692.677"
  6474. y1="355.551"
  6475. x2="692.677"
  6476. y2="342.052"
  6477. ></line>
  6478. <path
  6479. fill="#419B48"
  6480. d="M714.488,350.888c-1.438,0-2.61-1.171-2.61-2.606c0-1.435,1.18-2.604,2.61-2.604 c1.438,0,2.605,1.171,2.605,2.604C717.094,349.719,715.927,350.888,714.488,350.888 M714.488,352.947 c2.576,0,4.666-2.088,4.666-4.666c0-2.577-2.09-4.665-4.666-4.665c-2.58,0-4.669,2.09-4.669,4.665 C709.819,350.856,711.907,352.947,714.488,352.947L714.488,352.947z"
  6481. ></path>
  6482. <line
  6483. fill="none"
  6484. stroke="#419B48"
  6485. stroke-width="2"
  6486. stroke-miterlimit="10"
  6487. x1="695.864"
  6488. y1="341.734"
  6489. x2="710.823"
  6490. y2="348.802"
  6491. ></line>
  6492. </g>
  6493. </g>
  6494. <g id="mhskg3010">
  6495. <g v-if="ajaxData.mhskg3010" id="33_01-0off">
  6496. <line
  6497. fill="none"
  6498. stroke="#9A2B2D"
  6499. stroke-width="2.5"
  6500. stroke-miterlimit="10"
  6501. x1="692.677"
  6502. y1="475.594"
  6503. x2="692.677"
  6504. y2="462.095"
  6505. ></line>
  6506. <path
  6507. fill="#9A2B2D"
  6508. d="M714.488,470.938c-1.438,0-2.604-1.172-2.604-2.606c0-1.434,1.172-2.604,2.604-2.604 c1.438,0,2.605,1.173,2.605,2.604C717.094,469.766,715.927,470.938,714.488,470.938 M714.488,472.997 c2.578,0,4.666-2.089,4.666-4.665c0-2.568-2.09-4.666-4.666-4.666c-2.577,0-4.666,2.1-4.666,4.666 C709.822,470.906,711.907,472.997,714.488,472.997L714.488,472.997z"
  6509. ></path>
  6510. <line
  6511. fill="none"
  6512. stroke="#9A2B2D"
  6513. stroke-width="2"
  6514. stroke-miterlimit="10"
  6515. x1="692.903"
  6516. y1="468.33"
  6517. x2="710.823"
  6518. y2="468.33"
  6519. ></line>
  6520. </g>
  6521. <g v-else-if="ajaxData.mhskg3010 == false" id="33_01-0on">
  6522. <line
  6523. fill="none"
  6524. stroke="#419B48"
  6525. stroke-width="2.5"
  6526. stroke-miterlimit="10"
  6527. x1="692.677"
  6528. y1="475.594"
  6529. x2="692.677"
  6530. y2="462.095"
  6531. ></line>
  6532. <path
  6533. fill="#419B48"
  6534. d="M714.488,470.938c-1.438,0-2.61-1.172-2.61-2.606c0-1.434,1.18-2.604,2.61-2.604 c1.438,0,2.605,1.173,2.605,2.604C717.094,469.766,715.927,470.938,714.488,470.938 M714.488,472.997 c2.576,0,4.666-2.089,4.666-4.665c0-2.568-2.09-4.666-4.666-4.666c-2.58,0-4.669,2.1-4.669,4.666 C709.819,470.906,711.907,472.997,714.488,472.997L714.488,472.997z"
  6535. ></path>
  6536. <line
  6537. fill="none"
  6538. stroke="#419B48"
  6539. stroke-width="2"
  6540. stroke-miterlimit="10"
  6541. x1="695.864"
  6542. y1="461.784"
  6543. x2="710.823"
  6544. y2="468.844"
  6545. ></line>
  6546. </g>
  6547. </g>
  6548. <g id="mhskg1020">
  6549. <g v-if="ajaxData.mhskg1020" id="31_02-0off">
  6550. <line
  6551. fill="none"
  6552. stroke="#9A2B2D"
  6553. stroke-width="2.5"
  6554. stroke-miterlimit="10"
  6555. x1="1315.135"
  6556. y1="388.177"
  6557. x2="1315.135"
  6558. y2="401.677"
  6559. ></line>
  6560. <path
  6561. fill="#9A2B2D"
  6562. d="M1293.319,392.829c1.44,0,2.609,1.171,2.609,2.606c0,1.434-1.172,2.607-2.609,2.607 c-1.437,0-2.604-1.181-2.604-2.607C1290.719,394,1291.885,392.829,1293.319,392.829 M1293.319,390.77 c-2.578,0-4.666,2.089-4.666,4.665c0,2.577,2.09,4.666,4.666,4.666c2.577,0,4.666-2.091,4.666-4.666 C1297.985,392.861,1295.899,390.77,1293.319,390.77L1293.319,390.77z"
  6563. ></path>
  6564. <line
  6565. fill="none"
  6566. stroke="#9A2B2D"
  6567. stroke-width="2"
  6568. stroke-miterlimit="10"
  6569. x1="1314.904"
  6570. y1="395.437"
  6571. x2="1296.983"
  6572. y2="395.437"
  6573. ></line>
  6574. </g>
  6575. <g v-else-if="ajaxData.mhskg1020 == false" id="31_02-0on">
  6576. <line
  6577. fill="none"
  6578. stroke="#419B48"
  6579. stroke-width="2.5"
  6580. stroke-miterlimit="10"
  6581. x1="1315.135"
  6582. y1="388.177"
  6583. x2="1315.135"
  6584. y2="401.677"
  6585. ></line>
  6586. <path
  6587. fill="#419B48"
  6588. d="M1293.319,392.829c1.44,0,2.611,1.171,2.611,2.606c0,1.434-1.171,2.607-2.611,2.607 c-1.437,0-2.604-1.181-2.604-2.607C1290.719,394,1291.885,392.829,1293.319,392.829 M1293.319,390.77 c-2.576,0-4.666,2.089-4.666,4.665c0,2.577,2.09,4.666,4.666,4.666c2.58,0,4.669-2.091,4.669-4.666 C1297.988,392.861,1295.899,390.77,1293.319,390.77L1293.319,390.77z"
  6589. ></path>
  6590. <line
  6591. fill="none"
  6592. stroke="#419B48"
  6593. stroke-width="2"
  6594. stroke-miterlimit="10"
  6595. x1="1311.943"
  6596. y1="401.983"
  6597. x2="1296.983"
  6598. y2="394.927"
  6599. ></line>
  6600. </g>
  6601. </g>
  6602. <g id="mhskg10201">
  6603. <g v-if="ajaxData.mhskg10201" id="31_02-01off">
  6604. <line
  6605. fill="none"
  6606. stroke="#9A2B2D"
  6607. stroke-width="2.5"
  6608. stroke-miterlimit="10"
  6609. x1="1315.135"
  6610. y1="290.779"
  6611. x2="1315.135"
  6612. y2="304.276"
  6613. ></line>
  6614. <path
  6615. fill="#9A2B2D"
  6616. d="M1293.319,295.434c1.44,0,2.609,1.171,2.609,2.604c0,1.438-1.172,2.607-2.609,2.607 c-1.437,0-2.604-1.171-2.604-2.607C1290.719,296.605,1291.885,295.434,1293.319,295.434 M1293.319,293.375 c-2.578,0-4.666,2.088-4.666,4.666c0,2.577,2.09,4.665,4.666,4.665c2.577,0,4.666-2.09,4.666-4.665 C1297.985,295.465,1295.899,293.375,1293.319,293.375L1293.319,293.375z"
  6617. ></path>
  6618. <line
  6619. fill="none"
  6620. stroke="#9A2B2D"
  6621. stroke-width="2"
  6622. stroke-miterlimit="10"
  6623. x1="1314.904"
  6624. y1="298.042"
  6625. x2="1296.983"
  6626. y2="298.042"
  6627. ></line>
  6628. </g>
  6629. <g v-else-if="ajaxData.mhskg10201 == false" id="31_02-01on">
  6630. <line
  6631. fill="none"
  6632. stroke="#419B48"
  6633. stroke-width="2.5"
  6634. stroke-miterlimit="10"
  6635. x1="1315.135"
  6636. y1="290.779"
  6637. x2="1315.135"
  6638. y2="304.276"
  6639. ></line>
  6640. <path
  6641. fill="#419B48"
  6642. d="M1293.319,295.434c1.44,0,2.611,1.171,2.611,2.604c0,1.438-1.171,2.607-2.611,2.607 c-1.437,0-2.604-1.171-2.604-2.607C1290.719,296.605,1291.885,295.434,1293.319,295.434 M1293.319,293.375 c-2.576,0-4.666,2.088-4.666,4.666c0,2.577,2.09,4.665,4.666,4.665c2.58,0,4.669-2.09,4.669-4.665 C1297.988,295.465,1295.899,293.375,1293.319,293.375L1293.319,293.375z"
  6643. ></path>
  6644. <line
  6645. fill="none"
  6646. stroke="#419B48"
  6647. stroke-width="2"
  6648. stroke-miterlimit="10"
  6649. x1="1311.943"
  6650. y1="304.594"
  6651. x2="1296.983"
  6652. y2="297.528"
  6653. ></line>
  6654. </g>
  6655. </g>
  6656. <g id="mhskg0120">
  6657. <g v-if="ajaxData.mhskg0120" id="30_12-0off">
  6658. <line
  6659. fill="none"
  6660. stroke="#9A2B2D"
  6661. stroke-width="2.5"
  6662. stroke-miterlimit="10"
  6663. x1="1250.78"
  6664. y1="450.201"
  6665. x2="1264.277"
  6666. y2="450.201"
  6667. ></line>
  6668. <path
  6669. fill="#9A2B2D"
  6670. d="M1255.435,472.012c0-1.439,1.171-2.608,2.604-2.608c1.437,0,2.604,1.172,2.604,2.608 c0,1.438-1.171,2.604-2.604,2.604C1256.606,474.618,1255.435,473.449,1255.435,472.012 M1253.378,472.012 c0,2.578,2.096,4.666,4.666,4.666c2.573,0,4.662-2.09,4.662-4.666c0-2.577-2.091-4.666-4.662-4.666 C1255.469,467.346,1253.378,469.432,1253.378,472.012L1253.378,472.012z"
  6671. ></path>
  6672. <line
  6673. fill="none"
  6674. stroke="#9A2B2D"
  6675. stroke-width="2"
  6676. stroke-miterlimit="10"
  6677. x1="1258.052"
  6678. y1="450.427"
  6679. x2="1258.052"
  6680. y2="468.348"
  6681. ></line>
  6682. </g>
  6683. <g v-else-if="ajaxData.mhskg0120 == false" id="30_12-0on">
  6684. <line
  6685. fill="none"
  6686. stroke="#419B48"
  6687. stroke-width="2.5"
  6688. stroke-miterlimit="10"
  6689. x1="1250.78"
  6690. y1="450.201"
  6691. x2="1264.277"
  6692. y2="450.201"
  6693. ></line>
  6694. <path
  6695. fill="#419B48"
  6696. d="M1255.435,472.012c0-1.439,1.171-2.61,2.604-2.61c1.437,0,2.604,1.171,2.604,2.61 c0,1.438-1.171,2.604-2.604,2.604C1256.606,474.618,1255.435,473.449,1255.435,472.012 M1253.378,472.012 c0,2.576,2.096,4.666,4.666,4.666c2.573,0,4.662-2.09,4.662-4.666c0-2.58-2.091-4.669-4.662-4.669 C1255.469,467.344,1253.378,469.432,1253.378,472.012L1253.378,472.012z"
  6697. ></path>
  6698. <line
  6699. fill="none"
  6700. stroke="#419B48"
  6701. stroke-width="2"
  6702. stroke-miterlimit="10"
  6703. x1="1264.594"
  6704. y1="453.388"
  6705. x2="1257.529"
  6706. y2="468.348"
  6707. ></line>
  6708. </g>
  6709. </g>
  6710. <g id="mhskg120">
  6711. <g v-if="ajaxData.mhskg120" id="31_2-0off">
  6712. <line
  6713. fill="none"
  6714. stroke="#9A2B2D"
  6715. stroke-width="2.5"
  6716. stroke-miterlimit="10"
  6717. x1="1367.044"
  6718. y1="257.805"
  6719. x2="1367.044"
  6720. y2="244.308"
  6721. ></line>
  6722. <path
  6723. fill="#9A2B2D"
  6724. d="M1388.854,253.15c-1.439,0-2.609-1.171-2.609-2.606s1.174-2.604,2.609-2.604s2.604,1.171,2.604,2.604 C1391.469,251.979,1390.292,253.15,1388.854,253.15 M1388.854,255.209c2.578,0,4.666-2.088,4.666-4.666 c0-2.577-2.09-4.665-4.666-4.665c-2.577,0-4.666,2.099-4.666,4.665C1384.188,253.119,1386.274,255.209,1388.854,255.209 L1388.854,255.209z"
  6725. ></path>
  6726. <line
  6727. fill="none"
  6728. stroke="#9A2B2D"
  6729. stroke-width="2"
  6730. stroke-miterlimit="10"
  6731. x1="1367.27"
  6732. y1="250.542"
  6733. x2="1385.19"
  6734. y2="250.542"
  6735. ></line>
  6736. </g>
  6737. <g v-else-if="ajaxData.mhskg120 == false" id="31_2-0on_1_">
  6738. <line
  6739. fill="none"
  6740. stroke="#419B48"
  6741. stroke-width="2.5"
  6742. stroke-miterlimit="10"
  6743. x1="1367.044"
  6744. y1="257.805"
  6745. x2="1367.044"
  6746. y2="244.308"
  6747. ></line>
  6748. <path
  6749. fill="#419B48"
  6750. d="M1388.854,253.15c-1.439,0-2.611-1.171-2.611-2.606s1.172-2.604,2.611-2.604 c1.438,0,2.604,1.171,2.604,2.604C1391.469,251.979,1390.292,253.15,1388.854,253.15 M1388.854,255.209 c2.576,0,4.666-2.088,4.666-4.666c0-2.577-2.09-4.665-4.666-4.665c-2.58,0-4.669,2.099-4.669,4.665 C1384.186,253.119,1386.274,255.209,1388.854,255.209L1388.854,255.209z"
  6751. ></path>
  6752. <line
  6753. fill="none"
  6754. stroke="#419B48"
  6755. stroke-width="2"
  6756. stroke-miterlimit="10"
  6757. x1="1370.23"
  6758. y1="243.996"
  6759. x2="1385.19"
  6760. y2="251.056"
  6761. ></line>
  6762. </g>
  6763. </g>
  6764. <g id="mhskg1021">
  6765. <g v-if="ajaxData.mhskg1021" id="31_02-1off">
  6766. <line
  6767. fill="none"
  6768. stroke="#9A2B2D"
  6769. stroke-width="2.5"
  6770. stroke-miterlimit="10"
  6771. x1="1332.919"
  6772. y1="261.288"
  6773. x2="1346.413"
  6774. y2="261.288"
  6775. ></line>
  6776. <path
  6777. fill="#9A2B2D"
  6778. d="M1337.571,283.099c0-1.44,1.171-2.609,2.606-2.609c1.435,0,2.604,1.172,2.604,2.609 s-1.171,2.604-2.604,2.604C1338.742,285.705,1337.571,284.536,1337.571,283.099 M1335.513,283.099 c0,2.578,2.089,4.666,4.666,4.666c2.576,0,4.665-2.099,4.665-4.666c0-2.577-2.091-4.666-4.665-4.666 C1337.604,278.433,1335.513,280.519,1335.513,283.099L1335.513,283.099z"
  6779. ></path>
  6780. <line
  6781. fill="none"
  6782. stroke="#9A2B2D"
  6783. stroke-width="2"
  6784. stroke-miterlimit="10"
  6785. x1="1340.181"
  6786. y1="261.514"
  6787. x2="1340.181"
  6788. y2="279.435"
  6789. ></line>
  6790. </g>
  6791. <g v-else-if="ajaxData.mhskg1021 == false" id="31_02-1on">
  6792. <line
  6793. fill="none"
  6794. stroke="#419B48"
  6795. stroke-width="2.5"
  6796. stroke-miterlimit="10"
  6797. x1="1332.919"
  6798. y1="261.288"
  6799. x2="1346.413"
  6800. y2="261.288"
  6801. ></line>
  6802. <path
  6803. fill="#419B48"
  6804. d="M1337.571,283.099c0-1.44,1.171-2.611,2.606-2.611c1.435,0,2.604,1.171,2.604,2.611 c0,1.437-1.171,2.604-2.604,2.604C1338.742,285.705,1337.571,284.536,1337.571,283.099 M1335.513,283.099 c0,2.567,2.089,4.666,4.666,4.666c2.576,0,4.665-2.099,4.665-4.666c0-2.58-2.091-4.669-4.665-4.669 C1337.604,278.43,1335.513,280.519,1335.513,283.099L1335.513,283.099z"
  6805. ></path>
  6806. <line
  6807. fill="none"
  6808. stroke="#419B48"
  6809. stroke-width="2"
  6810. stroke-miterlimit="10"
  6811. x1="1346.726"
  6812. y1="264.475"
  6813. x2="1339.667"
  6814. y2="279.435"
  6815. ></line>
  6816. </g>
  6817. </g>
  6818. <g id="mhskg1023">
  6819. <g v-if="ajaxData.mhskg1023" id="31_02-3off">
  6820. <line
  6821. fill="none"
  6822. stroke="#9A2B2D"
  6823. stroke-width="2.5"
  6824. stroke-miterlimit="10"
  6825. x1="1332.919"
  6826. y1="358.467"
  6827. x2="1346.413"
  6828. y2="358.467"
  6829. ></line>
  6830. <path
  6831. fill="#9A2B2D"
  6832. d="M1337.571,380.27c0-1.44,1.171-2.609,2.606-2.609c1.435,0,2.604,1.172,2.604,2.609 s-1.171,2.604-2.604,2.604C1338.742,382.875,1337.571,381.707,1337.571,380.27 M1335.513,380.27c0,2.578,2.089,4.666,4.666,4.666 c2.576,0,4.665-2.09,4.665-4.666c0-2.577-2.091-4.666-4.665-4.666C1337.604,375.604,1335.513,377.69,1335.513,380.27 L1335.513,380.27z"
  6833. ></path>
  6834. <line
  6835. fill="none"
  6836. stroke="#9A2B2D"
  6837. stroke-width="2"
  6838. stroke-miterlimit="10"
  6839. x1="1340.181"
  6840. y1="358.685"
  6841. x2="1340.181"
  6842. y2="376.606"
  6843. ></line>
  6844. </g>
  6845. <g v-else-if="ajaxData.mhskg1023 == false" id="31_02-3on">
  6846. <line
  6847. fill="none"
  6848. stroke="#419B48"
  6849. stroke-width="2.5"
  6850. stroke-miterlimit="10"
  6851. x1="1332.919"
  6852. y1="358.467"
  6853. x2="1346.413"
  6854. y2="358.467"
  6855. ></line>
  6856. <path
  6857. fill="#419B48"
  6858. d="M1337.571,380.27c0-1.44,1.171-2.611,2.606-2.611c1.435,0,2.604,1.171,2.604,2.611 c0,1.437-1.171,2.604-2.604,2.604C1338.742,382.875,1337.571,381.707,1337.571,380.27 M1335.513,380.27 c0,2.576,2.089,4.666,4.666,4.666c2.576,0,4.665-2.09,4.665-4.666c0-2.58-2.091-4.669-4.665-4.669 C1337.604,375.601,1335.513,377.69,1335.513,380.27L1335.513,380.27z"
  6859. ></path>
  6860. <line
  6861. fill="none"
  6862. stroke="#419B48"
  6863. stroke-width="2"
  6864. stroke-miterlimit="10"
  6865. x1="1346.726"
  6866. y1="361.646"
  6867. x2="1339.667"
  6868. y2="376.606"
  6869. ></line>
  6870. </g>
  6871. </g>
  6872. <g id="mhskg10203">
  6873. <g v-if="ajaxData.mhskg10203" id="31_02-03off">
  6874. <line
  6875. fill="none"
  6876. stroke="#9A2B2D"
  6877. stroke-width="2.5"
  6878. stroke-miterlimit="10"
  6879. x1="1367.044"
  6880. y1="355.551"
  6881. x2="1367.044"
  6882. y2="342.052"
  6883. ></line>
  6884. <path
  6885. fill="#9A2B2D"
  6886. d="M1388.854,350.888c-1.439,0-2.609-1.171-2.609-2.606c0-1.435,1.174-2.604,2.609-2.604 s2.604,1.171,2.604,2.604C1391.469,349.719,1390.292,350.888,1388.854,350.888 M1388.854,352.947 c2.578,0,4.666-2.088,4.666-4.666c0-2.577-2.09-4.665-4.666-4.665c-2.577,0-4.666,2.09-4.666,4.665 C1384.188,350.856,1386.274,352.947,1388.854,352.947L1388.854,352.947z"
  6887. ></path>
  6888. <line
  6889. fill="none"
  6890. stroke="#9A2B2D"
  6891. stroke-width="2"
  6892. stroke-miterlimit="10"
  6893. x1="1367.27"
  6894. y1="348.279"
  6895. x2="1385.19"
  6896. y2="348.279"
  6897. ></line>
  6898. </g>
  6899. <g v-else-if="ajaxData.mhskg10203 == false" id="31_02-03on">
  6900. <line
  6901. fill="none"
  6902. stroke="#419B48"
  6903. stroke-width="2.5"
  6904. stroke-miterlimit="10"
  6905. x1="1367.044"
  6906. y1="355.551"
  6907. x2="1367.044"
  6908. y2="342.052"
  6909. ></line>
  6910. <path
  6911. fill="#419B48"
  6912. d="M1388.854,350.888c-1.439,0-2.611-1.171-2.611-2.606c0-1.435,1.172-2.604,2.611-2.604 c1.438,0,2.604,1.171,2.604,2.604C1391.469,349.719,1390.292,350.888,1388.854,350.888 M1388.854,352.947 c2.576,0,4.666-2.088,4.666-4.666c0-2.577-2.09-4.665-4.666-4.665c-2.58,0-4.669,2.09-4.669,4.665 C1384.186,350.856,1386.274,352.947,1388.854,352.947L1388.854,352.947z"
  6913. ></path>
  6914. <line
  6915. fill="none"
  6916. stroke="#419B48"
  6917. stroke-width="2"
  6918. stroke-miterlimit="10"
  6919. x1="1370.23"
  6920. y1="341.734"
  6921. x2="1385.19"
  6922. y2="348.802"
  6923. ></line>
  6924. </g>
  6925. </g>
  6926. <g id="mhskg1109">
  6927. <g v-if="ajaxData.mhskg1109" id="31_1-09off">
  6928. <line
  6929. fill="none"
  6930. stroke="#9A2B2D"
  6931. stroke-width="2.5"
  6932. stroke-miterlimit="10"
  6933. x1="943.939"
  6934. y1="290.619"
  6935. x2="943.939"
  6936. y2="277.123"
  6937. ></line>
  6938. <path
  6939. fill="#9A2B2D"
  6940. d="M965.76,285.965c-1.44,0-2.609-1.171-2.609-2.604c0-1.438,1.172-2.607,2.609-2.607 c1.437,0,2.604,1.171,2.604,2.607C968.356,284.793,967.188,285.965,965.76,285.965 M965.76,288.023 c2.568,0,4.666-2.088,4.666-4.666c0-2.577-2.1-4.665-4.666-4.665c-2.577,0-4.666,2.09-4.666,4.665 C961.094,285.933,963.177,288.023,965.76,288.023L965.76,288.023z"
  6941. ></path>
  6942. <line
  6943. fill="none"
  6944. stroke="#9A2B2D"
  6945. stroke-width="2"
  6946. stroke-miterlimit="10"
  6947. x1="944.165"
  6948. y1="283.356"
  6949. x2="962.094"
  6950. y2="283.356"
  6951. ></line>
  6952. </g>
  6953. <g v-else-if="ajaxData.mhskg1109 == false" id="31_1-09on">
  6954. <line
  6955. fill="none"
  6956. stroke="#419B48"
  6957. stroke-width="2.5"
  6958. stroke-miterlimit="10"
  6959. x1="943.939"
  6960. y1="290.619"
  6961. x2="943.939"
  6962. y2="277.123"
  6963. ></line>
  6964. <path
  6965. fill="#419B48"
  6966. d="M965.76,285.965c-1.44,0-2.611-1.171-2.611-2.604c0-1.438,1.171-2.607,2.611-2.607 c1.437,0,2.604,1.171,2.604,2.607C968.356,284.793,967.188,285.965,965.76,285.965 M965.76,288.023 c2.566,0,4.666-2.088,4.666-4.666c0-2.577-2.1-4.665-4.666-4.665c-2.58,0-4.678,2.09-4.678,4.665 C961.081,285.933,963.177,288.023,965.76,288.023L965.76,288.023z"
  6967. ></path>
  6968. <line
  6969. fill="none"
  6970. stroke="#419B48"
  6971. stroke-width="2"
  6972. stroke-miterlimit="10"
  6973. x1="947.135"
  6974. y1="276.811"
  6975. x2="962.094"
  6976. y2="283.871"
  6977. ></line>
  6978. </g>
  6979. </g>
  6980. <g id="mhskg119">
  6981. <g v-if="ajaxData.mhskg119" id="31_1-9off">
  6982. <line
  6983. fill="none"
  6984. stroke="#9A2B2D"
  6985. stroke-width="2.5"
  6986. stroke-miterlimit="10"
  6987. x1="913.737"
  6988. y1="247.105"
  6989. x2="927.234"
  6990. y2="247.105"
  6991. ></line>
  6992. <path
  6993. fill="#9A2B2D"
  6994. d="M918.392,268.917c0-1.438,1.171-2.604,2.604-2.604c1.438,0,2.607,1.172,2.607,2.604 c0,1.438-1.171,2.605-2.607,2.605C919.563,271.522,918.392,270.353,918.392,268.917 M916.335,268.917 c0,2.578,2.096,4.666,4.666,4.666c2.573,0,4.662-2.09,4.662-4.666c0-2.577-2.091-4.666-4.662-4.666 C918.427,264.25,916.335,266.336,916.335,268.917L916.335,268.917z"
  6995. ></path>
  6996. <line
  6997. fill="none"
  6998. stroke="#9A2B2D"
  6999. stroke-width="2"
  7000. stroke-miterlimit="10"
  7001. x1="921.01"
  7002. y1="247.332"
  7003. x2="921.01"
  7004. y2="265.252"
  7005. ></line>
  7006. </g>
  7007. <g v-else-if="ajaxData.mhskg119 == false" id="31_1-9on">
  7008. <line
  7009. fill="none"
  7010. stroke="#419B48"
  7011. stroke-width="2.5"
  7012. stroke-miterlimit="10"
  7013. x1="913.737"
  7014. y1="247.105"
  7015. x2="927.234"
  7016. y2="247.105"
  7017. ></line>
  7018. <path
  7019. fill="#419B48"
  7020. d="M918.392,268.917c0-1.438,1.171-2.604,2.604-2.604c1.438,0,2.607,1.171,2.607,2.604 c0,1.438-1.171,2.605-2.607,2.605C919.563,271.522,918.392,270.353,918.392,268.917 M916.335,268.917 c0,2.576,2.096,4.666,4.666,4.666c2.573,0,4.662-2.09,4.662-4.666c0-2.58-2.091-4.669-4.662-4.669 C918.428,264.248,916.335,266.336,916.335,268.917L916.335,268.917z"
  7021. ></path>
  7022. <line
  7023. fill="none"
  7024. stroke="#419B48"
  7025. stroke-width="2"
  7026. stroke-miterlimit="10"
  7027. x1="927.552"
  7028. y1="250.292"
  7029. x2="920.486"
  7030. y2="265.252"
  7031. ></line>
  7032. </g>
  7033. </g>
  7034. <g id="mhskg3180">
  7035. <g v-if="ajaxData.mhskg3180" id="31_21-0off_7_">
  7036. <line
  7037. fill="none"
  7038. stroke="#9A2B2D"
  7039. stroke-width="2.5"
  7040. stroke-miterlimit="10"
  7041. x1="90.647"
  7042. y1="690.847"
  7043. x2="104.146"
  7044. y2="690.847"
  7045. ></line>
  7046. <path
  7047. fill="#9A2B2D"
  7048. d="M95.302,712.66c0-1.438,1.172-2.604,2.604-2.604s2.606,1.172,2.606,2.604 c0,1.438-1.181,2.605-2.606,2.605C96.474,715.265,95.302,714.095,95.302,712.66 M93.243,712.66c0,2.578,2.09,4.666,4.666,4.666 c2.575,0,4.666-2.09,4.666-4.666c0-2.578-2.093-4.666-4.666-4.666C95.335,707.994,93.243,710.08,93.243,712.66L93.243,712.66z"
  7049. ></path>
  7050. <line
  7051. fill="none"
  7052. stroke="#9A2B2D"
  7053. stroke-width="2"
  7054. stroke-miterlimit="10"
  7055. x1="97.911"
  7056. y1="691.074"
  7057. x2="97.911"
  7058. y2="708.996"
  7059. ></line>
  7060. </g>
  7061. <g v-else-if="ajaxData.mhskg3180 == false" id="31_21-0on_7_">
  7062. <line
  7063. fill="none"
  7064. stroke="#419B48"
  7065. stroke-width="2.5"
  7066. stroke-miterlimit="10"
  7067. x1="90.647"
  7068. y1="690.847"
  7069. x2="104.146"
  7070. y2="690.847"
  7071. ></line>
  7072. <path
  7073. fill="#419B48"
  7074. d="M95.302,712.66c0-1.438,1.172-2.604,2.604-2.604s2.606,1.17,2.606,2.604c0,1.438-1.181,2.605-2.606,2.605 C96.474,715.265,95.302,714.095,95.302,712.66 M93.243,712.66c0,2.576,2.09,4.666,4.666,4.666c2.575,0,4.666-2.09,4.666-4.666 c0-2.58-2.093-4.67-4.666-4.67C95.335,707.99,93.243,710.08,93.243,712.66L93.243,712.66z"
  7075. ></path>
  7076. <line
  7077. fill="none"
  7078. stroke="#419B48"
  7079. stroke-width="2"
  7080. stroke-miterlimit="10"
  7081. x1="104.456"
  7082. y1="694.035"
  7083. x2="97.397"
  7084. y2="708.996"
  7085. ></line>
  7086. </g>
  7087. </g>
  7088. <g id="mhskg3170">
  7089. <g v-if="ajaxData.mhskg3170" id="31_21-0off_22_">
  7090. <line
  7091. fill="none"
  7092. stroke="#9A2B2D"
  7093. stroke-width="2.5"
  7094. stroke-miterlimit="10"
  7095. x1="238.837"
  7096. y1="690.847"
  7097. x2="252.335"
  7098. y2="690.847"
  7099. ></line>
  7100. <path
  7101. fill="#9A2B2D"
  7102. d="M243.491,712.66c0-1.438,1.172-2.604,2.606-2.604c1.434,0,2.604,1.172,2.604,2.604 c0,1.438-1.172,2.605-2.604,2.605C244.663,715.265,243.491,714.095,243.491,712.66 M241.433,712.66 c0,2.578,2.09,4.666,4.666,4.666c2.567,0,4.666-2.09,4.666-4.666c0-2.578-2.101-4.666-4.666-4.666 C243.525,707.994,241.433,710.08,241.433,712.66L241.433,712.66z"
  7103. ></path>
  7104. <line
  7105. fill="none"
  7106. stroke="#9A2B2D"
  7107. stroke-width="2"
  7108. stroke-miterlimit="10"
  7109. x1="246.101"
  7110. y1="691.074"
  7111. x2="246.101"
  7112. y2="708.996"
  7113. ></line>
  7114. </g>
  7115. <g v-else-if="ajaxData.mhskg3170 == false" id="31_21-0on_22_">
  7116. <line
  7117. fill="none"
  7118. stroke="#419B48"
  7119. stroke-width="2.5"
  7120. stroke-miterlimit="10"
  7121. x1="238.837"
  7122. y1="690.847"
  7123. x2="252.335"
  7124. y2="690.847"
  7125. ></line>
  7126. <path
  7127. fill="#419B48"
  7128. d="M243.491,712.66c0-1.438,1.172-2.604,2.606-2.604c1.434,0,2.604,1.17,2.604,2.604 c0,1.438-1.172,2.605-2.604,2.605C244.663,715.265,243.491,714.095,243.491,712.66 M241.433,712.66 c0,2.576,2.09,4.666,4.666,4.666c2.567,0,4.666-2.09,4.666-4.666c0-2.58-2.101-4.67-4.666-4.67 C243.525,707.99,241.433,710.08,241.433,712.66L241.433,712.66z"
  7129. ></path>
  7130. <line
  7131. fill="none"
  7132. stroke="#419B48"
  7133. stroke-width="2"
  7134. stroke-miterlimit="10"
  7135. x1="252.646"
  7136. y1="694.035"
  7137. x2="245.587"
  7138. y2="708.996"
  7139. ></line>
  7140. </g>
  7141. </g>
  7142. <g id="mhskg3160">
  7143. <g v-if="ajaxData.mhskg3160" id="31_21-0off_23_">
  7144. <line
  7145. fill="none"
  7146. stroke="#9A2B2D"
  7147. stroke-width="2.5"
  7148. stroke-miterlimit="10"
  7149. x1="340.398"
  7150. y1="690.847"
  7151. x2="353.896"
  7152. y2="690.847"
  7153. ></line>
  7154. <path
  7155. fill="#9A2B2D"
  7156. d="M345.053,712.66c0-1.438,1.171-2.604,2.604-2.604c1.438,0,2.606,1.172,2.606,2.604 c0,1.438-1.177,2.605-2.606,2.605C346.228,715.265,345.053,714.095,345.053,712.66 M342.994,712.66 c0,2.578,2.089,4.666,4.666,4.666c2.575,0,4.665-2.09,4.665-4.666c0-2.578-2.092-4.666-4.665-4.666 C345.086,707.994,342.994,710.08,342.994,712.66L342.994,712.66z"
  7157. ></path>
  7158. <line
  7159. fill="none"
  7160. stroke="#9A2B2D"
  7161. stroke-width="2"
  7162. stroke-miterlimit="10"
  7163. x1="347.662"
  7164. y1="691.074"
  7165. x2="347.662"
  7166. y2="708.996"
  7167. ></line>
  7168. </g>
  7169. <g v-else-if="ajaxData.mhskg3160 == false" id="31_21-0on_23_">
  7170. <line
  7171. fill="none"
  7172. stroke="#419B48"
  7173. stroke-width="2.5"
  7174. stroke-miterlimit="10"
  7175. x1="340.398"
  7176. y1="690.847"
  7177. x2="353.896"
  7178. y2="690.847"
  7179. ></line>
  7180. <path
  7181. fill="#419B48"
  7182. d="M345.053,712.66c0-1.438,1.171-2.604,2.604-2.604c1.438,0,2.606,1.17,2.606,2.604 c0,1.438-1.177,2.605-2.606,2.605C346.228,715.265,345.053,714.095,345.053,712.66 M342.994,712.66 c0,2.576,2.089,4.666,4.666,4.666c2.575,0,4.665-2.09,4.665-4.666c0-2.58-2.092-4.67-4.665-4.67 C345.086,707.99,342.994,710.08,342.994,712.66L342.994,712.66z"
  7183. ></path>
  7184. <line
  7185. fill="none"
  7186. stroke="#419B48"
  7187. stroke-width="2"
  7188. stroke-miterlimit="10"
  7189. x1="354.207"
  7190. y1="694.035"
  7191. x2="347.147"
  7192. y2="708.996"
  7193. ></line>
  7194. </g>
  7195. </g>
  7196. <g id="mhskg3220">
  7197. <g v-if="ajaxData.mhskg3220" id="31_21-0off_33_">
  7198. <line
  7199. fill="none"
  7200. stroke="#9A2B2D"
  7201. stroke-width="2.5"
  7202. stroke-miterlimit="10"
  7203. x1="1185.242"
  7204. y1="690.847"
  7205. x2="1198.74"
  7206. y2="690.847"
  7207. ></line>
  7208. <path
  7209. fill="#9A2B2D"
  7210. d="M1189.897,712.66c0-1.438,1.171-2.604,2.605-2.604c1.436,0,2.604,1.172,2.604,2.604 c0,1.438-1.171,2.605-2.604,2.605S1189.897,714.095,1189.897,712.66 M1187.844,712.66c0,2.578,2.089,4.666,4.666,4.666 c2.57,0,4.665-2.09,4.665-4.666c0-2.578-2.097-4.666-4.665-4.666C1189.93,707.994,1187.844,710.08,1187.844,712.66 L1187.844,712.66z"
  7211. ></path>
  7212. <line
  7213. fill="none"
  7214. stroke="#9A2B2D"
  7215. stroke-width="2"
  7216. stroke-miterlimit="10"
  7217. x1="1192.51"
  7218. y1="691.074"
  7219. x2="1192.51"
  7220. y2="708.996"
  7221. ></line>
  7222. </g>
  7223. <g v-else-if="ajaxData.mhskg3220 == false" id="31_21-0on_33_">
  7224. <path
  7225. fill="#419B48"
  7226. d="M1189.897,712.66c0-1.438,1.171-2.604,2.605-2.604c1.436,0,2.604,1.17,2.604,2.604 c0,1.438-1.171,2.605-2.604,2.605S1189.897,714.095,1189.897,712.66 M1187.844,712.66c0,2.576,2.089,4.666,4.666,4.666 c2.57,0,4.665-2.09,4.665-4.666c0-2.58-2.097-4.67-4.665-4.67C1189.93,707.99,1187.844,710.08,1187.844,712.66L1187.844,712.66z"
  7227. ></path>
  7228. <line
  7229. fill="none"
  7230. stroke="#419B48"
  7231. stroke-width="2"
  7232. stroke-miterlimit="10"
  7233. x1="1199.052"
  7234. y1="694.035"
  7235. x2="1191.991"
  7236. y2="708.996"
  7237. ></line>
  7238. </g>
  7239. </g>
  7240. <g id="mhskg3130">
  7241. <g v-if="ajaxData.mhskg3130" id="31_21-0off_48_">
  7242. <line
  7243. fill="none"
  7244. stroke="#9A2B2D"
  7245. stroke-width="2.5"
  7246. stroke-miterlimit="10"
  7247. x1="742.437"
  7248. y1="690.847"
  7249. x2="755.934"
  7250. y2="690.847"
  7251. ></line>
  7252. <path
  7253. fill="#9A2B2D"
  7254. d="M747.094,712.66c0-1.438,1.171-2.604,2.604-2.604c1.438,0,2.607,1.172,2.607,2.604 c0,1.438-1.171,2.605-2.607,2.605C748.263,715.265,747.094,714.095,747.094,712.66 M745.031,712.66 c0,2.578,2.089,4.666,4.666,4.666c2.576,0,4.665-2.09,4.665-4.666c0-2.578-2.091-4.666-4.665-4.666 C747.122,707.994,745.031,710.08,745.031,712.66L745.031,712.66z"
  7255. ></path>
  7256. <line
  7257. fill="none"
  7258. stroke="#9A2B2D"
  7259. stroke-width="2"
  7260. stroke-miterlimit="10"
  7261. x1="749.699"
  7262. y1="691.074"
  7263. x2="749.699"
  7264. y2="708.996"
  7265. ></line>
  7266. </g>
  7267. <g v-else-if="ajaxData.mhskg3130 == false" id="31_21-0on_48_">
  7268. <line
  7269. fill="none"
  7270. stroke="#419B48"
  7271. stroke-width="2.5"
  7272. stroke-miterlimit="10"
  7273. x1="742.437"
  7274. y1="690.847"
  7275. x2="755.934"
  7276. y2="690.847"
  7277. ></line>
  7278. <path
  7279. fill="#419B48"
  7280. d="M747.094,712.66c0-1.438,1.171-2.604,2.604-2.604c1.438,0,2.607,1.17,2.607,2.604 c0,1.438-1.171,2.605-2.607,2.605C748.263,715.265,747.094,714.095,747.094,712.66 M745.031,712.66 c0,2.576,2.089,4.666,4.666,4.666c2.576,0,4.665-2.09,4.665-4.666c0-2.58-2.091-4.67-4.665-4.67 C747.122,707.99,745.031,710.08,745.031,712.66L745.031,712.66z"
  7281. ></path>
  7282. <line
  7283. fill="none"
  7284. stroke="#419B48"
  7285. stroke-width="2"
  7286. stroke-miterlimit="10"
  7287. x1="756.244"
  7288. y1="694.035"
  7289. x2="749.186"
  7290. y2="708.996"
  7291. ></line>
  7292. </g>
  7293. </g>
  7294. <g id="mhskg3120">
  7295. <g v-if="ajaxData.mhskg3120" id="31_21-0off_21_">
  7296. <line
  7297. fill="none"
  7298. stroke="#9A2B2D"
  7299. stroke-width="2.5"
  7300. stroke-miterlimit="10"
  7301. x1="843.104"
  7302. y1="690.847"
  7303. x2="856.601"
  7304. y2="690.847"
  7305. ></line>
  7306. <path
  7307. fill="#9A2B2D"
  7308. d="M847.76,712.66c0-1.438,1.171-2.604,2.604-2.604c1.438,0,2.607,1.172,2.607,2.604 c0,1.438-1.171,2.605-2.607,2.605C848.93,715.265,847.76,714.095,847.76,712.66 M845.698,712.66c0,2.578,2.089,4.666,4.666,4.666 c2.576,0,4.665-2.09,4.665-4.666c0-2.578-2.091-4.666-4.665-4.666C847.789,707.994,845.698,710.08,845.698,712.66L845.698,712.66 z"
  7309. ></path>
  7310. <line
  7311. fill="none"
  7312. stroke="#9A2B2D"
  7313. stroke-width="2"
  7314. stroke-miterlimit="10"
  7315. x1="850.366"
  7316. y1="691.074"
  7317. x2="850.366"
  7318. y2="708.996"
  7319. ></line>
  7320. </g>
  7321. <g v-else-if="ajaxData.mhskg3120 == false" id="31_21-0on_21_">
  7322. <line
  7323. fill="none"
  7324. stroke="#419B48"
  7325. stroke-width="2.5"
  7326. stroke-miterlimit="10"
  7327. x1="843.104"
  7328. y1="690.847"
  7329. x2="856.601"
  7330. y2="690.847"
  7331. ></line>
  7332. <path
  7333. fill="#419B48"
  7334. d="M847.76,712.66c0-1.438,1.171-2.604,2.604-2.604c1.438,0,2.607,1.17,2.607,2.604 c0,1.438-1.171,2.605-2.607,2.605C848.93,715.265,847.76,714.095,847.76,712.66 M845.698,712.66c0,2.576,2.089,4.666,4.666,4.666 c2.576,0,4.665-2.09,4.665-4.666c0-2.58-2.091-4.67-4.665-4.67C847.789,707.99,845.698,710.08,845.698,712.66L845.698,712.66z"
  7335. ></path>
  7336. <line
  7337. fill="none"
  7338. stroke="#419B48"
  7339. stroke-width="2"
  7340. stroke-miterlimit="10"
  7341. x1="856.911"
  7342. y1="694.035"
  7343. x2="849.853"
  7344. y2="708.996"
  7345. ></line>
  7346. </g>
  7347. </g>
  7348. <g id="mhskg3210">
  7349. <g v-if="ajaxData.mhskg3210" id="31_21-0off_32_">
  7350. <line
  7351. fill="none"
  7352. stroke="#9A2B2D"
  7353. stroke-width="2.5"
  7354. stroke-miterlimit="10"
  7355. x1="1361.45"
  7356. y1="690.847"
  7357. x2="1374.948"
  7358. y2="690.847"
  7359. ></line>
  7360. <path
  7361. fill="#9A2B2D"
  7362. d="M1366.105,712.66c0-1.438,1.171-2.604,2.604-2.604c1.437,0,2.604,1.172,2.604,2.604 c0,1.438-1.171,2.605-2.604,2.605C1367.277,715.265,1366.105,714.095,1366.105,712.66 M1364.052,712.66 c0,2.578,2.089,4.666,4.666,4.666c2.567,0,4.665-2.09,4.665-4.666c0-2.578-2.1-4.666-4.665-4.666 C1366.138,707.994,1364.052,710.08,1364.052,712.66L1364.052,712.66z"
  7363. ></path>
  7364. <line
  7365. fill="none"
  7366. stroke="#9A2B2D"
  7367. stroke-width="2"
  7368. stroke-miterlimit="10"
  7369. x1="1368.719"
  7370. y1="691.074"
  7371. x2="1368.719"
  7372. y2="708.996"
  7373. ></line>
  7374. </g>
  7375. <g v-else-if="ajaxData.mhskg3210 == false" id="31_21-0on_32_">
  7376. <line
  7377. fill="none"
  7378. stroke="#419B48"
  7379. stroke-width="2.5"
  7380. stroke-miterlimit="10"
  7381. x1="1361.45"
  7382. y1="690.847"
  7383. x2="1374.948"
  7384. y2="690.847"
  7385. ></line>
  7386. <path
  7387. fill="#419B48"
  7388. d="M1366.105,712.66c0-1.438,1.171-2.604,2.604-2.604c1.437,0,2.604,1.17,2.604,2.604 c0,1.438-1.171,2.605-2.604,2.605C1367.277,715.265,1366.105,714.095,1366.105,712.66 M1364.052,712.66 c0,2.576,2.089,4.666,4.666,4.666c2.567,0,4.665-2.09,4.665-4.666c0-2.58-2.1-4.67-4.665-4.67 C1366.138,707.99,1364.052,710.08,1364.052,712.66L1364.052,712.66z"
  7389. ></path>
  7390. <line
  7391. fill="none"
  7392. stroke="#419B48"
  7393. stroke-width="2"
  7394. stroke-miterlimit="10"
  7395. x1="1375.26"
  7396. y1="694.035"
  7397. x2="1368.199"
  7398. y2="708.996"
  7399. ></line>
  7400. </g>
  7401. </g>
  7402. <g id="mhskg3110">
  7403. <g v-if="ajaxData.mhskg3110" id="31_21-0off_45_">
  7404. <line
  7405. fill="none"
  7406. stroke="#9A2B2D"
  7407. stroke-width="2.5"
  7408. stroke-miterlimit="10"
  7409. x1="945.206"
  7410. y1="690.847"
  7411. x2="958.703"
  7412. y2="690.847"
  7413. ></line>
  7414. <path
  7415. fill="#9A2B2D"
  7416. d="M949.861,712.66c0-1.438,1.171-2.604,2.606-2.604c1.435,0,2.604,1.172,2.604,2.604 c0,1.438-1.171,2.605-2.604,2.605C951.032,715.265,949.861,714.095,949.861,712.66 M947.803,712.66 c0,2.578,2.089,4.666,4.666,4.666c2.576,0,4.665-2.09,4.665-4.666c0-2.578-2.093-4.666-4.665-4.666 C949.894,707.994,947.803,710.08,947.803,712.66L947.803,712.66z"
  7417. ></path>
  7418. <line
  7419. fill="none"
  7420. stroke="#9A2B2D"
  7421. stroke-width="2"
  7422. stroke-miterlimit="10"
  7423. x1="952.471"
  7424. y1="691.074"
  7425. x2="952.471"
  7426. y2="708.996"
  7427. ></line>
  7428. </g>
  7429. <g v-else-if="ajaxData.mhskg3110 == false" id="31_21-0on_45_">
  7430. <line
  7431. fill="none"
  7432. stroke="#419B48"
  7433. stroke-width="2.5"
  7434. stroke-miterlimit="10"
  7435. x1="945.206"
  7436. y1="690.847"
  7437. x2="958.703"
  7438. y2="690.847"
  7439. ></line>
  7440. <path
  7441. fill="#419B48"
  7442. d="M949.861,712.66c0-1.438,1.171-2.604,2.606-2.604c1.435,0,2.604,1.17,2.604,2.604 c0,1.438-1.171,2.605-2.604,2.605C951.032,715.265,949.861,714.095,949.861,712.66 M947.803,712.66 c0,2.576,2.089,4.666,4.666,4.666c2.576,0,4.665-2.09,4.665-4.666c0-2.58-2.093-4.67-4.665-4.67 C949.894,707.99,947.803,710.08,947.803,712.66L947.803,712.66z"
  7443. ></path>
  7444. <line
  7445. fill="none"
  7446. stroke="#419B48"
  7447. stroke-width="2"
  7448. stroke-miterlimit="10"
  7449. x1="959.016"
  7450. y1="694.035"
  7451. x2="951.955"
  7452. y2="708.996"
  7453. ></line>
  7454. </g>
  7455. </g>
  7456. <g id="mhskg3150">
  7457. <g v-if="ajaxData.mhskg3150" id="31_21-0off_42_">
  7458. <line
  7459. fill="none"
  7460. stroke="#9A2B2D"
  7461. stroke-width="2.5"
  7462. stroke-miterlimit="10"
  7463. x1="446.072"
  7464. y1="690.847"
  7465. x2="459.569"
  7466. y2="690.847"
  7467. ></line>
  7468. <path
  7469. fill="#9A2B2D"
  7470. d="M450.727,712.66c0-1.438,1.171-2.604,2.604-2.604c1.438,0,2.607,1.172,2.607,2.604 c0,1.438-1.171,2.605-2.607,2.605C451.898,715.265,450.727,714.095,450.727,712.66 M448.677,712.66 c0,2.578,2.089,4.666,4.665,4.666c2.567,0,4.656-2.09,4.656-4.666c0-2.578-2.091-4.666-4.656-4.666 C450.76,707.994,448.677,710.08,448.677,712.66L448.677,712.66z"
  7471. ></path>
  7472. <line
  7473. fill="none"
  7474. stroke="#9A2B2D"
  7475. stroke-width="2"
  7476. stroke-miterlimit="10"
  7477. x1="453.344"
  7478. y1="691.074"
  7479. x2="453.344"
  7480. y2="708.996"
  7481. ></line>
  7482. </g>
  7483. <g v-else-if="ajaxData.mhskg3150 == false" id="31_21-0on_42_">
  7484. <line
  7485. fill="none"
  7486. stroke="#419B48"
  7487. stroke-width="2.5"
  7488. stroke-miterlimit="10"
  7489. x1="446.072"
  7490. y1="690.847"
  7491. x2="459.569"
  7492. y2="690.847"
  7493. ></line>
  7494. <path
  7495. fill="#419B48"
  7496. d="M450.727,712.66c0-1.438,1.171-2.604,2.604-2.604c1.438,0,2.607,1.17,2.607,2.604 c0,1.438-1.171,2.605-2.607,2.605C451.898,715.265,450.727,714.095,450.727,712.66 M448.677,712.66 c0,2.576,2.089,4.666,4.665,4.666c2.567,0,4.656-2.09,4.656-4.666c0-2.58-2.091-4.67-4.656-4.67 C450.76,707.99,448.677,710.08,448.677,712.66L448.677,712.66z"
  7497. ></path>
  7498. <line
  7499. fill="none"
  7500. stroke="#419B48"
  7501. stroke-width="2"
  7502. stroke-miterlimit="10"
  7503. x1="459.885"
  7504. y1="694.035"
  7505. x2="452.821"
  7506. y2="708.996"
  7507. ></line>
  7508. </g>
  7509. </g>
  7510. <g id="mhskg3140">
  7511. <g v-if="ajaxData.mhskg3140" id="31_21-0off_46_">
  7512. <line
  7513. fill="none"
  7514. stroke="#9A2B2D"
  7515. stroke-width="2.5"
  7516. stroke-miterlimit="10"
  7517. x1="538.552"
  7518. y1="690.847"
  7519. x2="552.052"
  7520. y2="690.847"
  7521. ></line>
  7522. <path
  7523. fill="#9A2B2D"
  7524. d="M543.202,712.66c0-1.438,1.174-2.604,2.606-2.604s2.604,1.172,2.604,2.604 c0,1.438-1.171,2.605-2.604,2.605S543.202,714.095,543.202,712.66 M541.145,712.66c0,2.578,2.089,4.666,4.666,4.666 c2.576,0,4.665-2.09,4.665-4.666c0-2.578-2.091-4.666-4.665-4.666C543.235,707.994,541.145,710.08,541.145,712.66L541.145,712.66 z"
  7525. ></path>
  7526. <line
  7527. fill="none"
  7528. stroke="#9A2B2D"
  7529. stroke-width="2"
  7530. stroke-miterlimit="10"
  7531. x1="545.813"
  7532. y1="691.074"
  7533. x2="545.813"
  7534. y2="708.996"
  7535. ></line>
  7536. </g>
  7537. <g v-else-if="ajaxData.mhskg3140 == false" id="31_21-0on_46_">
  7538. <line
  7539. fill="none"
  7540. stroke="#419B48"
  7541. stroke-width="2.5"
  7542. stroke-miterlimit="10"
  7543. x1="538.552"
  7544. y1="690.847"
  7545. x2="552.052"
  7546. y2="690.847"
  7547. ></line>
  7548. <path
  7549. fill="#419B48"
  7550. d="M543.202,712.66c0-1.438,1.174-2.604,2.606-2.604s2.604,1.17,2.604,2.604 c0,1.438-1.171,2.605-2.604,2.605S543.202,714.095,543.202,712.66 M541.145,712.66c0,2.576,2.089,4.666,4.666,4.666 c2.576,0,4.665-2.09,4.665-4.666c0-2.58-2.091-4.67-4.665-4.67C543.235,707.99,541.145,710.08,541.145,712.66L541.145,712.66z"
  7551. ></path>
  7552. <line
  7553. fill="none"
  7554. stroke="#419B48"
  7555. stroke-width="2"
  7556. stroke-miterlimit="10"
  7557. x1="552.357"
  7558. y1="694.035"
  7559. x2="545.302"
  7560. y2="708.996"
  7561. ></line>
  7562. </g>
  7563. </g>
  7564. </g>
  7565. <g id="data">
  7566. <g id="_x31__x5F_">
  7567. <text
  7568. transform="matrix(1 0 0 1 490.4875 46.8218)"
  7569. fill="#3D8144"
  7570. font-family="'MicrosoftYaHei'"
  7571. font-size="10.6069"
  7572. >
  7573. {{ ajaxData.mhsIaa }}
  7574. </text>
  7575. <text
  7576. transform="matrix(1 0 0 1 490.4875 68.6948)"
  7577. fill="#3D8144"
  7578. font-family="'MicrosoftYaHei'"
  7579. font-size="10.6069"
  7580. >
  7581. {{ ajaxData.mhspmw }}
  7582. </text>
  7583. <text
  7584. transform="matrix(1 0 0 1 490.4875 116.6479)"
  7585. fill="#3D8144"
  7586. font-family="'MicrosoftYaHei'"
  7587. font-size="10.6069"
  7588. >
  7589. {{ ajaxData.mhsuxkv }}
  7590. </text>
  7591. <text
  7592. transform="matrix(1 0 0 1 490.4875 140.7554)"
  7593. fill="#3D8144"
  7594. font-family="'MicrosoftYaHei'"
  7595. font-size="10.6069"
  7596. >
  7597. {{ ajaxData.mhsfhz }}
  7598. </text>
  7599. <text
  7600. transform="matrix(1 0 0 1 490.4875 92.8745)"
  7601. fill="#3D8144"
  7602. font-family="'MicrosoftYaHei'"
  7603. font-size="10.6069"
  7604. >
  7605. {{ ajaxData.mhsqmvar }}
  7606. </text>
  7607. <text
  7608. transform="matrix(1 0 0 1 490.4875 166.5874)"
  7609. fill="#3D8144"
  7610. font-family="'MicrosoftYaHei'"
  7611. font-size="10.6069"
  7612. >
  7613. {{ ajaxData.mhscos }}
  7614. </text>
  7615. </g>
  7616. <g id="_x32__x5F_">
  7617. <text
  7618. transform="matrix(1 0 0 1 971.3054 120.3589)"
  7619. fill="#3B8646"
  7620. font-family="'MicrosoftYaHei'"
  7621. font-size="10.6069"
  7622. >
  7623. {{ ajaxData.mhsuakv }}
  7624. </text>
  7625. <text
  7626. transform="matrix(1 0 0 1 971.3054 145.062)"
  7627. fill="#3B8646"
  7628. font-family="'MicrosoftYaHei'"
  7629. font-size="10.6069"
  7630. >
  7631. {{ ajaxData.mhsubkv }}
  7632. </text>
  7633. <text
  7634. transform="matrix(1 0 0 1 971.3054 169.2417)"
  7635. fill="#3B8646"
  7636. font-family="'MicrosoftYaHei'"
  7637. font-size="10.6069"
  7638. >
  7639. {{ ajaxData.mhsuckv }}
  7640. </text>
  7641. <text
  7642. transform="matrix(1 0 0 1 971.3054 193.0054)"
  7643. fill="#3B8646"
  7644. font-family="'MicrosoftYaHei'"
  7645. font-size="10.6069"
  7646. >
  7647. {{ ajaxData.mhsu0kv }}
  7648. </text>
  7649. </g>
  7650. <g id="_x34__x5F_">
  7651. <text
  7652. transform="matrix(1 0 0 1 334.3875 431.1304)"
  7653. fill="#3B8646"
  7654. font-family="'MicrosoftYaHei'"
  7655. font-size="10.6069"
  7656. >
  7657. {{ ajaxData.mhsymwdzb1 }}
  7658. </text>
  7659. <text
  7660. transform="matrix(1 0 0 1 334.3875 451.4321)"
  7661. fill="#3B8646"
  7662. font-family="'MicrosoftYaHei'"
  7663. font-size="10.6069"
  7664. >
  7665. {{ ajaxData.mhsrzwdzb1 }}
  7666. </text>
  7667. <text
  7668. transform="matrix(1 0 0 1 334.3875 475.0483)"
  7669. fill="#3B8646"
  7670. font-family="'MicrosoftYaHei'"
  7671. font-size="10.6069"
  7672. >
  7673. {{ ajaxData.mhsdwzb1 }}
  7674. </text>
  7675. <text
  7676. transform="matrix(1 0 0 1 334.3875 499.8979)"
  7677. fill="#3B8646"
  7678. font-family="'MicrosoftYaHei'"
  7679. font-size="10.6069"
  7680. >
  7681. {{ ajaxData.mhsIaazb1 }}
  7682. </text>
  7683. <text
  7684. transform="matrix(1 0 0 1 334.3875 521.1987)"
  7685. fill="#3B8646"
  7686. font-family="'MicrosoftYaHei'"
  7687. font-size="10.6069"
  7688. >
  7689. {{ ajaxData.mhsPmwzb1 }}
  7690. </text>
  7691. <text
  7692. transform="matrix(1 0 0 1 334.3875 546.8149)"
  7693. fill="#3B8646"
  7694. font-family="'MicrosoftYaHei'"
  7695. font-size="10.6069"
  7696. >
  7697. {{ ajaxData.mhsqmvarzb1 }}
  7698. </text>
  7699. </g>
  7700. <g id="_x35__x5F_">
  7701. <text
  7702. transform="matrix(1 0 0 1 1045.0095 431.9077)"
  7703. fill="#3B8646"
  7704. font-family="'MicrosoftYaHei'"
  7705. font-size="10.6069"
  7706. >
  7707. {{ ajaxData.mhsymwdzb2 }}
  7708. </text>
  7709. <text
  7710. transform="matrix(1 0 0 1 1045.0095 452.2095)"
  7711. fill="#3B8646"
  7712. font-family="'MicrosoftYaHei'"
  7713. font-size="10.6069"
  7714. >
  7715. {{ ajaxData.mhsrzwdzb2 }}
  7716. </text>
  7717. <text
  7718. transform="matrix(1 0 0 1 1045.0095 475.8257)"
  7719. fill="#3B8646"
  7720. font-family="'MicrosoftYaHei'"
  7721. font-size="10.6069"
  7722. >
  7723. {{ ajaxData.mhsdwzb2 }}
  7724. </text>
  7725. <text
  7726. transform="matrix(1 0 0 1 1045.0095 500.6753)"
  7727. fill="#3B8646"
  7728. font-family="'MicrosoftYaHei'"
  7729. font-size="10.6069"
  7730. >
  7731. {{ ajaxData.mhslaazb2 }}
  7732. </text>
  7733. <text
  7734. transform="matrix(1 0 0 1 1045.0095 521.9761)"
  7735. fill="#3B8646"
  7736. font-family="'MicrosoftYaHei'"
  7737. font-size="10.6069"
  7738. >
  7739. {{ ajaxData.mhspmwzb2 }}
  7740. </text>
  7741. <text
  7742. transform="matrix(1 0 0 1 1045.0095 547.5923)"
  7743. fill="#3B8646"
  7744. font-family="'MicrosoftYaHei'"
  7745. font-size="10.6069"
  7746. >
  7747. {{ ajaxData.mhsqmvarzb2 }}
  7748. </text>
  7749. </g>
  7750. <g id="_x36__x5F_">
  7751. <text
  7752. transform="matrix(1 0 0 1 1478.1902 477.2935)"
  7753. fill="#3B8646"
  7754. font-family="'MicrosoftYaHei'"
  7755. font-size="10.6069"
  7756. >
  7757. {{ ajaxData.mhsuabkvzb2 }}
  7758. </text>
  7759. <text
  7760. transform="matrix(1 0 0 1 1478.1902 501.9946)"
  7761. fill="#3B8646"
  7762. font-family="'MicrosoftYaHei'"
  7763. font-size="10.6069"
  7764. >
  7765. {{ ajaxData.mhsubckvzb2 }}
  7766. </text>
  7767. <text
  7768. transform="matrix(1 0 0 1 1478.1902 526.1753)"
  7769. fill="#3B8646"
  7770. font-family="'MicrosoftYaHei'"
  7771. font-size="10.6069"
  7772. >
  7773. {{ ajaxData.mhsucakvzb2 }}
  7774. </text>
  7775. </g>
  7776. <g id="_x37__x5F_">
  7777. <text
  7778. transform="matrix(1 0 0 1 104.1086 1028.6421)"
  7779. fill="#3B8646"
  7780. font-family="'MicrosoftYaHei'"
  7781. font-size="10.6069"
  7782. >
  7783. {{ ajaxData.mhslaajd1 }}
  7784. </text>
  7785. <text
  7786. transform="matrix(1 0 0 1 104.1086 1061.1421)"
  7787. fill="#3B8646"
  7788. font-family="'MicrosoftYaHei'"
  7789. font-size="10.6069"
  7790. >
  7791. {{ ajaxData.mhspmwjd1 }}
  7792. </text>
  7793. <text
  7794. transform="matrix(1 0 0 1 104.1086 1094.1421)"
  7795. fill="#3B8646"
  7796. font-family="'MicrosoftYaHei'"
  7797. font-size="10.6069"
  7798. >
  7799. {{ ajaxData.mhsqmvarjd1 }}
  7800. </text>
  7801. </g>
  7802. <g id="_x38__x5F_">
  7803. <text
  7804. transform="matrix(1 0 0 1 253.6135 1028.6421)"
  7805. fill="#3B8646"
  7806. font-family="'MicrosoftYaHei'"
  7807. font-size="10.6069"
  7808. >
  7809. {{ ajaxData.mhslaazy }}
  7810. </text>
  7811. <text
  7812. transform="matrix(1 0 0 1 253.6135 1061.1421)"
  7813. fill="#3B8646"
  7814. font-family="'MicrosoftYaHei'"
  7815. font-size="10.6069"
  7816. >
  7817. {{ ajaxData.mhspmwzy }}
  7818. </text>
  7819. <text
  7820. transform="matrix(1 0 0 1 253.6135 1094.1421)"
  7821. fill="#3B8646"
  7822. font-family="'MicrosoftYaHei'"
  7823. font-size="10.6069"
  7824. >
  7825. {{ ajaxData.mhsqmvarzy }}
  7826. </text>
  7827. </g>
  7828. <g id="_x39__x5F_">
  7829. <text
  7830. transform="matrix(1 0 0 1 353.3376 1028.6421)"
  7831. fill="#3B8646"
  7832. font-family="'MicrosoftYaHei'"
  7833. font-size="10.6069"
  7834. >
  7835. {{ ajaxData.mhslaadr2 }}
  7836. </text>
  7837. <text
  7838. transform="matrix(1 0 0 1 353.3376 1061.1421)"
  7839. fill="#3B8646"
  7840. font-family="'MicrosoftYaHei'"
  7841. font-size="10.6069"
  7842. >
  7843. {{ ajaxData.mhspmwdr2 }}
  7844. </text>
  7845. <text
  7846. transform="matrix(1 0 0 1 353.3376 1094.1421)"
  7847. fill="#3B8646"
  7848. font-family="'MicrosoftYaHei'"
  7849. font-size="10.6069"
  7850. >
  7851. {{ ajaxData.mhsqmvardr2 }}
  7852. </text>
  7853. </g>
  7854. <g id="_x31__x5F_0">
  7855. <text
  7856. transform="matrix(1 0 0 1 459.1667 1028.6421)"
  7857. fill="#3B8646"
  7858. font-family="'MicrosoftYaHei'"
  7859. font-size="10.6069"
  7860. >
  7861. {{ ajaxData.mhslaadr1 }}
  7862. </text>
  7863. <text
  7864. transform="matrix(1 0 0 1 459.1667 1061.1421)"
  7865. fill="#3B8646"
  7866. font-family="'MicrosoftYaHei'"
  7867. font-size="10.6069"
  7868. >
  7869. {{ ajaxData.mhspmwdr1 }}
  7870. </text>
  7871. <text
  7872. transform="matrix(1 0 0 1 459.1667 1094.1421)"
  7873. fill="#3B8646"
  7874. font-family="'MicrosoftYaHei'"
  7875. font-size="10.6069"
  7876. >
  7877. {{ ajaxData.mhsqmvardr1 }}
  7878. </text>
  7879. </g>
  7880. <g id="_x31__x5F_1">
  7881. <text
  7882. transform="matrix(1 0 0 1 555.0168 1028.6421)"
  7883. fill="#3B8646"
  7884. font-family="'MicrosoftYaHei'"
  7885. font-size="10.6069"
  7886. >
  7887. {{ ajaxData.mhslaadk }}
  7888. </text>
  7889. <text
  7890. transform="matrix(1 0 0 1 555.0168 1061.1421)"
  7891. fill="#3B8646"
  7892. font-family="'MicrosoftYaHei'"
  7893. font-size="10.6069"
  7894. >
  7895. {{ ajaxData.mhspmwdk }}
  7896. </text>
  7897. <text
  7898. transform="matrix(1 0 0 1 555.0168 1094.1421)"
  7899. fill="#3B8646"
  7900. font-family="'MicrosoftYaHei'"
  7901. font-size="10.6069"
  7902. >
  7903. {{ ajaxData.mhsqmvardk }}
  7904. </text>
  7905. </g>
  7906. <g id="_x31__x5F_2">
  7907. <text
  7908. transform="matrix(1 0 0 1 650.3254 1028.6421)"
  7909. fill="#3B8646"
  7910. font-family="'MicrosoftYaHei'"
  7911. font-size="10.6069"
  7912. >
  7913. -.--
  7914. </text>
  7915. <text
  7916. transform="matrix(1 0 0 1 650.3254 1061.1421)"
  7917. fill="#3B8646"
  7918. font-family="'MicrosoftYaHei'"
  7919. font-size="10.6069"
  7920. >
  7921. -.--
  7922. </text>
  7923. <text
  7924. transform="matrix(1 0 0 1 650.3254 1094.1421)"
  7925. fill="#3B8646"
  7926. font-family="'MicrosoftYaHei'"
  7927. font-size="10.6069"
  7928. >
  7929. -.--
  7930. </text>
  7931. </g>
  7932. <g id="_x31__x5F_3">
  7933. <text
  7934. transform="matrix(1 0 0 1 755.53 1028.6421)"
  7935. fill="#3B8646"
  7936. font-family="'MicrosoftYaHei'"
  7937. font-size="10.6069"
  7938. >
  7939. {{ ajaxData.mhslaafc3 }}
  7940. </text>
  7941. <text
  7942. transform="matrix(1 0 0 1 755.53 1061.1421)"
  7943. fill="#3B8646"
  7944. font-family="'MicrosoftYaHei'"
  7945. font-size="10.6069"
  7946. >
  7947. {{ ajaxData.mhspmwfc3 }}
  7948. </text>
  7949. <text
  7950. transform="matrix(1 0 0 1 755.53 1094.1421)"
  7951. fill="#3B8646"
  7952. font-family="'MicrosoftYaHei'"
  7953. font-size="10.6069"
  7954. >
  7955. {{ ajaxData.mhsqmvarfc3 }}
  7956. </text>
  7957. </g>
  7958. <g>
  7959. <text
  7960. transform="matrix(1 0 0 1 856.0125 1028.6421)"
  7961. fill="#3B8646"
  7962. font-family="'MicrosoftYaHei'"
  7963. font-size="10.6069"
  7964. >
  7965. {{ ajaxData.mhslaafc2 }}
  7966. </text>
  7967. <text
  7968. transform="matrix(1 0 0 1 856.0125 1061.1421)"
  7969. fill="#3B8646"
  7970. font-family="'MicrosoftYaHei'"
  7971. font-size="10.6069"
  7972. >
  7973. {{ ajaxData.mhspmwfc2 }}
  7974. </text>
  7975. <text
  7976. transform="matrix(1 0 0 1 856.0125 1094.1421)"
  7977. fill="#3B8646"
  7978. font-family="'MicrosoftYaHei'"
  7979. font-size="10.6069"
  7980. >
  7981. {{ ajaxData.mhsqmvarfc2 }}
  7982. </text>
  7983. </g>
  7984. <g>
  7985. <text
  7986. transform="matrix(1 0 0 1 958.2996 1028.6421)"
  7987. fill="#3B8646"
  7988. font-family="'MicrosoftYaHei'"
  7989. font-size="10.6069"
  7990. >
  7991. {{ ajaxData.mhslaafc1 }}
  7992. </text>
  7993. <text
  7994. transform="matrix(1 0 0 1 958.2996 1061.1421)"
  7995. fill="#3B8646"
  7996. font-family="'MicrosoftYaHei'"
  7997. font-size="10.6069"
  7998. >
  7999. {{ ajaxData.mhspmwfc1 }}
  8000. </text>
  8001. <text
  8002. transform="matrix(1 0 0 1 958.2996 1094.1421)"
  8003. fill="#3B8646"
  8004. font-family="'MicrosoftYaHei'"
  8005. font-size="10.6069"
  8006. >
  8007. {{ ajaxData.mhsqmvargc1 }}
  8008. </text>
  8009. </g>
  8010. <g>
  8011. <text
  8012. transform="matrix(1 0 0 1 1102.7458 1028.6421)"
  8013. fill="#3B8646"
  8014. font-family="'MicrosoftYaHei'"
  8015. font-size="10.6069"
  8016. >
  8017. -.--
  8018. </text>
  8019. <text
  8020. transform="matrix(1 0 0 1 1102.7458 1061.1421)"
  8021. fill="#3B8646"
  8022. font-family="'MicrosoftYaHei'"
  8023. font-size="10.6069"
  8024. >
  8025. -.--
  8026. </text>
  8027. <text
  8028. transform="matrix(1 0 0 1 1102.7458 1094.1421)"
  8029. fill="#3B8646"
  8030. font-family="'MicrosoftYaHei'"
  8031. font-size="10.6069"
  8032. >
  8033. -.--
  8034. </text>
  8035. </g>
  8036. <g>
  8037. <text
  8038. transform="matrix(1 0 0 1 1199.5701 1028.6421)"
  8039. fill="#3B8646"
  8040. font-family="'MicrosoftYaHei'"
  8041. font-size="10.6069"
  8042. >
  8043. -.--
  8044. </text>
  8045. <text
  8046. transform="matrix(1 0 0 1 1199.5701 1061.1421)"
  8047. fill="#3B8646"
  8048. font-family="'MicrosoftYaHei'"
  8049. font-size="10.6069"
  8050. >
  8051. -.--
  8052. </text>
  8053. <text
  8054. transform="matrix(1 0 0 1 1199.5701 1094.1421)"
  8055. fill="#3B8646"
  8056. font-family="'MicrosoftYaHei'"
  8057. font-size="10.6069"
  8058. >
  8059. -.--
  8060. </text>
  8061. </g>
  8062. <g>
  8063. <text
  8064. transform="matrix(1 0 0 1 1375.4138 1028.6421)"
  8065. fill="#3B8646"
  8066. font-family="'MicrosoftYaHei'"
  8067. font-size="10.6069"
  8068. >
  8069. {{ ajaxData.mhslaafc4 }}
  8070. </text>
  8071. <text
  8072. transform="matrix(1 0 0 1 1375.4138 1061.1421)"
  8073. fill="#3B8646"
  8074. font-family="'MicrosoftYaHei'"
  8075. font-size="10.6069"
  8076. >
  8077. {{ ajaxData.mhspmwfc4 }}
  8078. </text>
  8079. <text
  8080. transform="matrix(1 0 0 1 1375.4138 1094.1421)"
  8081. fill="#3B8646"
  8082. font-family="'MicrosoftYaHei'"
  8083. font-size="10.6069"
  8084. >
  8085. {{ ajaxData.mhsqmvarfc4 }}
  8086. </text>
  8087. </g>
  8088. <g>
  8089. <text
  8090. transform="matrix(1 0 0 1 1481.5759 1028.6421)"
  8091. fill="#3B8646"
  8092. font-family="'MicrosoftYaHei'"
  8093. font-size="10.6069"
  8094. >
  8095. -.--
  8096. </text>
  8097. <text
  8098. transform="matrix(1 0 0 1 1481.5759 1061.1421)"
  8099. fill="#3B8646"
  8100. font-family="'MicrosoftYaHei'"
  8101. font-size="10.6069"
  8102. >
  8103. -.--
  8104. </text>
  8105. <text
  8106. transform="matrix(1 0 0 1 1481.5759 1094.1421)"
  8107. fill="#3B8646"
  8108. font-family="'MicrosoftYaHei'"
  8109. font-size="10.6069"
  8110. >
  8111. -.--
  8112. </text>
  8113. </g>
  8114. </g>
  8115. <g id="block">
  8116. <g>
  8117. <polyline
  8118. fill="none"
  8119. :stroke="ajaxData.mhssc301 ? red : green"
  8120. stroke-width="1.6"
  8121. stroke-miterlimit="10"
  8122. points="673.698,561.42 666.231,569.81 658.547,561.42 "
  8123. ></polyline>
  8124. <polyline
  8125. fill="none"
  8126. :stroke="ajaxData.mhssc301 ? red : green"
  8127. stroke-width="1.6"
  8128. stroke-miterlimit="10"
  8129. points="673.698,555.066 666.231,563.449 658.547,555.066 "
  8130. ></polyline>
  8131. <polyline
  8132. fill="none"
  8133. :stroke="ajaxData.mhssc301 ? red : green"
  8134. stroke-width="1.6"
  8135. stroke-miterlimit="10"
  8136. points="658.547,520.674 666.013,512.287 673.698,520.674 "
  8137. ></polyline>
  8138. <polyline
  8139. fill="none"
  8140. :stroke="ajaxData.mhssc301 ? red : green"
  8141. stroke-width="1.6"
  8142. stroke-miterlimit="10"
  8143. points="658.547,512.898 666.013,504.518 673.698,512.898 "
  8144. ></polyline>
  8145. </g>
  8146. <g>
  8147. <polyline
  8148. fill="none"
  8149. :stroke="ajaxData.mhssc302 ? red : green"
  8150. stroke-width="1.6"
  8151. stroke-miterlimit="10"
  8152. points="1347.552,561.42 1340.083,569.81 1332.398,561.42 "
  8153. ></polyline>
  8154. <polyline
  8155. fill="none"
  8156. :stroke="ajaxData.mhssc302 ? red : green"
  8157. stroke-width="1.6"
  8158. stroke-miterlimit="10"
  8159. points="1347.552,555.066 1340.083,563.449 1332.398,555.066 "
  8160. ></polyline>
  8161. <polyline
  8162. fill="none"
  8163. :stroke="ajaxData.mhssc302 ? red : green"
  8164. stroke-width="1.6"
  8165. stroke-miterlimit="10"
  8166. points="1332.398,520.674 1339.865,512.287 1347.552,520.674 "
  8167. ></polyline>
  8168. <polyline
  8169. fill="none"
  8170. :stroke="ajaxData.mhssc302 ? red : green"
  8171. stroke-width="1.6"
  8172. stroke-miterlimit="10"
  8173. points="1332.398,512.898 1339.865,504.518 1347.552,512.898 "
  8174. ></polyline>
  8175. </g>
  8176. <g>
  8177. <polyline
  8178. fill="none"
  8179. :stroke="ajaxData.mhssc318 ? red : green"
  8180. stroke-width="1.6"
  8181. stroke-miterlimit="10"
  8182. points="112.122,616.791 119.591,608.404 127.271,616.791 "
  8183. ></polyline>
  8184. <polyline
  8185. fill="none"
  8186. :stroke="ajaxData.mhssc318 ? red : green"
  8187. stroke-width="1.6"
  8188. stroke-miterlimit="10"
  8189. points="112.122,609.015 119.591,600.634 127.271,609.015 "
  8190. ></polyline>
  8191. </g>
  8192. <g>
  8193. <polyline
  8194. fill="none"
  8195. :stroke="ajaxData.mhssc317 ? red : green"
  8196. stroke-width="1.6"
  8197. stroke-miterlimit="10"
  8198. points="274.861,658.537 267.396,666.927 259.711,658.537 "
  8199. ></polyline>
  8200. <polyline
  8201. fill="none"
  8202. :stroke="ajaxData.mhssc317 ? red : green"
  8203. stroke-width="1.6"
  8204. stroke-miterlimit="10"
  8205. points="274.861,652.183 267.396,660.566 259.711,652.183 "
  8206. ></polyline>
  8207. <polyline
  8208. fill="none"
  8209. :stroke="ajaxData.mhssc317 ? red : green"
  8210. stroke-width="1.6"
  8211. stroke-miterlimit="10"
  8212. points="259.711,617.791 267.179,609.404 274.861,617.791 "
  8213. ></polyline>
  8214. <polyline
  8215. fill="none"
  8216. :stroke="ajaxData.mhssc317 ? red : green"
  8217. stroke-width="1.6"
  8218. stroke-miterlimit="10"
  8219. points="259.711,610.015 267.179,601.634 274.861,610.015 "
  8220. ></polyline>
  8221. </g>
  8222. <g>
  8223. <polyline
  8224. fill="none"
  8225. :stroke="ajaxData.mhssc316 ? red : green"
  8226. stroke-width="1.6"
  8227. stroke-miterlimit="10"
  8228. points="374.74,658.537 367.273,666.927 359.591,658.537 "
  8229. ></polyline>
  8230. <polyline
  8231. fill="none"
  8232. :stroke="ajaxData.mhssc316 ? red : green"
  8233. stroke-width="1.6"
  8234. stroke-miterlimit="10"
  8235. points="374.74,652.183 367.273,660.566 359.591,652.183 "
  8236. ></polyline>
  8237. <polyline
  8238. fill="none"
  8239. :stroke="ajaxData.mhssc316 ? red : green"
  8240. stroke-width="1.6"
  8241. stroke-miterlimit="10"
  8242. points="359.591,617.791 367.058,609.404 374.74,617.791 "
  8243. ></polyline>
  8244. <polyline
  8245. fill="none"
  8246. :stroke="ajaxData.mhssc316 ? red : green"
  8247. stroke-width="1.6"
  8248. stroke-miterlimit="10"
  8249. points="359.591,610.015 367.058,601.634 374.74,610.015 "
  8250. ></polyline>
  8251. </g>
  8252. <g>
  8253. <polyline
  8254. fill="none"
  8255. :stroke="ajaxData.mhssc315 ? red : green"
  8256. stroke-width="1.6"
  8257. stroke-miterlimit="10"
  8258. points="480.413,658.537 472.947,666.927 465.264,658.537 "
  8259. ></polyline>
  8260. <polyline
  8261. fill="none"
  8262. :stroke="ajaxData.mhssc315 ? red : green"
  8263. stroke-width="1.6"
  8264. stroke-miterlimit="10"
  8265. points="480.413,652.183 472.947,660.566 465.264,652.183 "
  8266. ></polyline>
  8267. <polyline
  8268. fill="none"
  8269. :stroke="ajaxData.mhssc315 ? red : green"
  8270. stroke-width="1.6"
  8271. stroke-miterlimit="10"
  8272. points="465.264,617.791 472.731,609.404 480.413,617.791 "
  8273. ></polyline>
  8274. <polyline
  8275. fill="none"
  8276. :stroke="ajaxData.mhssc315 ? red : green"
  8277. stroke-width="1.6"
  8278. stroke-miterlimit="10"
  8279. points="465.264,610.015 472.731,601.634 480.413,610.015 "
  8280. ></polyline>
  8281. </g>
  8282. <g>
  8283. <polyline
  8284. fill="none"
  8285. :stroke="ajaxData.mhssc314 ? red : green"
  8286. stroke-width="1.6"
  8287. stroke-miterlimit="10"
  8288. points="572.891,658.537 565.427,666.927 557.74,658.537 "
  8289. ></polyline>
  8290. <polyline
  8291. fill="none"
  8292. :stroke="ajaxData.mhssc314 ? red : green"
  8293. stroke-width="1.6"
  8294. stroke-miterlimit="10"
  8295. points="572.891,652.183 565.427,660.566 557.74,652.183 "
  8296. ></polyline>
  8297. <polyline
  8298. fill="none"
  8299. :stroke="ajaxData.mhssc314 ? red : green"
  8300. stroke-width="1.6"
  8301. stroke-miterlimit="10"
  8302. points="557.74,617.791 565.21,609.404 572.891,617.791 "
  8303. ></polyline>
  8304. <polyline
  8305. fill="none"
  8306. :stroke="ajaxData.mhssc314 ? red : green"
  8307. stroke-width="1.6"
  8308. stroke-miterlimit="10"
  8309. points="557.74,610.015 565.21,601.634 572.891,610.015 "
  8310. ></polyline>
  8311. </g>
  8312. <g>
  8313. <polyline
  8314. fill="none"
  8315. :stroke="ajaxData.mhssc319 ? red : green"
  8316. stroke-width="1.6"
  8317. stroke-miterlimit="10"
  8318. points="658.177,617.791 665.641,609.404 673.323,617.791 "
  8319. ></polyline>
  8320. <polyline
  8321. fill="none"
  8322. :stroke="ajaxData.mhssc319 ? red : green"
  8323. stroke-width="1.6"
  8324. stroke-miterlimit="10"
  8325. points="658.177,610.015 665.641,601.634 673.323,610.015 "
  8326. ></polyline>
  8327. </g>
  8328. <g>
  8329. <polyline
  8330. fill="none"
  8331. :stroke="ajaxData.mhssc313 ? red : green"
  8332. stroke-width="1.6"
  8333. stroke-miterlimit="10"
  8334. points="776.778,658.537 769.312,666.927 761.635,658.537 "
  8335. ></polyline>
  8336. <polyline
  8337. fill="none"
  8338. :stroke="ajaxData.mhssc313 ? red : green"
  8339. stroke-width="1.6"
  8340. stroke-miterlimit="10"
  8341. points="776.778,652.183 769.312,660.566 761.635,652.183 "
  8342. ></polyline>
  8343. <polyline
  8344. fill="none"
  8345. :stroke="ajaxData.mhssc313 ? red : green"
  8346. stroke-width="1.6"
  8347. stroke-miterlimit="10"
  8348. points="761.635,617.791 769.096,609.404 776.778,617.791 "
  8349. ></polyline>
  8350. <polyline
  8351. fill="none"
  8352. :stroke="ajaxData.mhssc313 ? red : green"
  8353. stroke-width="1.6"
  8354. stroke-miterlimit="10"
  8355. points="761.635,610.015 769.096,601.634 776.778,610.015 "
  8356. ></polyline>
  8357. </g>
  8358. <g>
  8359. <polyline
  8360. fill="none"
  8361. :stroke="ajaxData.mhssc312 ? red : green"
  8362. stroke-width="1.6"
  8363. stroke-miterlimit="10"
  8364. points="877.445,658.537 869.979,666.927 862.302,658.537 "
  8365. ></polyline>
  8366. <polyline
  8367. fill="none"
  8368. :stroke="ajaxData.mhssc312 ? red : green"
  8369. stroke-width="1.6"
  8370. stroke-miterlimit="10"
  8371. points="877.445,652.183 869.979,660.566 862.302,652.183 "
  8372. ></polyline>
  8373. <polyline
  8374. fill="none"
  8375. :stroke="ajaxData.mhssc312 ? red : green"
  8376. stroke-width="1.6"
  8377. stroke-miterlimit="10"
  8378. points="862.302,617.791 869.763,609.404 877.445,617.791 "
  8379. ></polyline>
  8380. <polyline
  8381. fill="none"
  8382. :stroke="ajaxData.mhssc312 ? red : green"
  8383. stroke-width="1.6"
  8384. stroke-miterlimit="10"
  8385. points="862.302,610.015 869.763,601.634 877.445,610.015 "
  8386. ></polyline>
  8387. </g>
  8388. <g>
  8389. <polyline
  8390. fill="none"
  8391. :stroke="ajaxData.mhssc311 ? red : green"
  8392. stroke-width="1.6"
  8393. stroke-miterlimit="10"
  8394. points="979.552,658.537 972.081,666.927 964.398,658.537 "
  8395. ></polyline>
  8396. <polyline
  8397. fill="none"
  8398. :stroke="ajaxData.mhssc311 ? red : green"
  8399. stroke-width="1.6"
  8400. stroke-miterlimit="10"
  8401. points="979.552,652.183 972.081,660.566 964.398,652.183 "
  8402. ></polyline>
  8403. <polyline
  8404. fill="none"
  8405. :stroke="ajaxData.mhssc311 ? red : green"
  8406. stroke-width="1.6"
  8407. stroke-miterlimit="10"
  8408. points="964.398,617.791 971.865,609.404 979.552,617.791 "
  8409. ></polyline>
  8410. <polyline
  8411. fill="none"
  8412. :stroke="ajaxData.mhssc311 ? red : green"
  8413. stroke-width="1.6"
  8414. stroke-miterlimit="10"
  8415. points="964.398,610.015 971.865,601.634 979.552,610.015 "
  8416. ></polyline>
  8417. </g>
  8418. <g>
  8419. <polyline
  8420. fill="none"
  8421. :stroke="ajaxData.mhssc322 ? red : green"
  8422. stroke-width="1.6"
  8423. stroke-miterlimit="10"
  8424. points="1219.594,658.537 1212.117,666.927 1204.435,658.537 "
  8425. ></polyline>
  8426. <polyline
  8427. fill="none"
  8428. :stroke="ajaxData.mhssc322 ? red : green"
  8429. stroke-width="1.6"
  8430. stroke-miterlimit="10"
  8431. points="1219.594,652.183 1212.117,660.566 1204.435,652.183 "
  8432. ></polyline>
  8433. <polyline
  8434. fill="none"
  8435. :stroke="ajaxData.mhssc322 ? red : green"
  8436. stroke-width="1.6"
  8437. stroke-miterlimit="10"
  8438. points="1204.435,617.791 1211.902,609.404 1219.594,617.791 "
  8439. ></polyline>
  8440. <polyline
  8441. fill="none"
  8442. :stroke="ajaxData.mhssc322 ? red : green"
  8443. stroke-width="1.6"
  8444. stroke-miterlimit="10"
  8445. points="1204.435,610.015 1211.902,601.634 1219.594,610.015 "
  8446. ></polyline>
  8447. </g>
  8448. <g>
  8449. <polyline
  8450. fill="none"
  8451. :stroke="ajaxData.mhssc321 ? red : green"
  8452. stroke-width="1.6"
  8453. stroke-miterlimit="10"
  8454. points="1395.794,658.537 1388.325,666.927 1380.643,658.537 "
  8455. ></polyline>
  8456. <polyline
  8457. fill="none"
  8458. :stroke="ajaxData.mhssc321 ? red : green"
  8459. stroke-width="1.6"
  8460. stroke-miterlimit="10"
  8461. points="1395.794,652.183 1388.325,660.566 1380.643,652.183 "
  8462. ></polyline>
  8463. <polyline
  8464. fill="none"
  8465. :stroke="ajaxData.mhssc321 ? red : green"
  8466. stroke-width="1.6"
  8467. stroke-miterlimit="10"
  8468. points="1380.643,617.791 1388.11,609.404 1395.794,617.791 "
  8469. ></polyline>
  8470. <polyline
  8471. fill="none"
  8472. :stroke="ajaxData.mhssc321 ? red : green"
  8473. stroke-width="1.6"
  8474. stroke-miterlimit="10"
  8475. points="1380.643,610.015 1388.11,601.634 1395.794,610.015 "
  8476. ></polyline>
  8477. </g>
  8478. </g>
  8479. <g id="scGary">
  8480. <g>
  8481. <polyline
  8482. fill="none"
  8483. stroke="#A9A9A9"
  8484. stroke-width="1.6"
  8485. stroke-miterlimit="10"
  8486. points="1123.885,657.537 1116.419,665.927 1108.733,657.537 "
  8487. ></polyline>
  8488. <polyline
  8489. fill="none"
  8490. stroke="#A9A9A9"
  8491. stroke-width="1.6"
  8492. stroke-miterlimit="10"
  8493. points="1123.885,651.183 1116.419,659.566 1108.733,651.183 "
  8494. ></polyline>
  8495. <polyline
  8496. fill="none"
  8497. stroke="#A9A9A9"
  8498. stroke-width="1.6"
  8499. stroke-miterlimit="10"
  8500. points="1108.733,616.791 1116.2,608.404 1123.885,616.791 "
  8501. ></polyline>
  8502. <polyline
  8503. fill="none"
  8504. stroke="#A9A9A9"
  8505. stroke-width="1.6"
  8506. stroke-miterlimit="10"
  8507. points="1108.733,609.015 1116.2,600.634 1123.885,609.015 "
  8508. ></polyline>
  8509. </g>
  8510. <g>
  8511. <polyline
  8512. fill="none"
  8513. stroke="#A9A9A9"
  8514. stroke-width="1.6"
  8515. stroke-miterlimit="10"
  8516. points="1490.177,617.791 1497.641,609.404 1505.323,617.791 "
  8517. ></polyline>
  8518. <polyline
  8519. fill="none"
  8520. stroke="#A9A9A9"
  8521. stroke-width="1.6"
  8522. stroke-miterlimit="10"
  8523. points="1490.177,610.015 1497.641,601.634 1505.323,610.015 "
  8524. ></polyline>
  8525. </g>
  8526. <rect
  8527. x="262.244"
  8528. y="344.98"
  8529. opacity="0.9"
  8530. fill="#1B2522"
  8531. enable-background="new "
  8532. width="149.407"
  8533. height="21.63"
  8534. ></rect>
  8535. <rect
  8536. x="262.244"
  8537. y="368.969"
  8538. opacity="0.9"
  8539. fill="#1B2522"
  8540. enable-background="new "
  8541. width="149.407"
  8542. height="21.63"
  8543. ></rect>
  8544. <rect
  8545. x="262.244"
  8546. y="392.94"
  8547. opacity="0.9"
  8548. fill="#1B2522"
  8549. enable-background="new "
  8550. width="149.407"
  8551. height="21.633"
  8552. ></rect>
  8553. <g>
  8554. <text
  8555. transform="matrix(1 0 0 1 301.2751 361.3022)"
  8556. fill="#919CA0"
  8557. font-family="'MicrosoftYaHei'"
  8558. font-size="10.6069"
  8559. >
  8560. la
  8561. </text>
  8562. <text
  8563. transform="matrix(1 0 0 1 312.1877 361.3022)"
  8564. fill="#919CA0"
  8565. font-family="'MicrosoftYaHei'"
  8566. font-size="10.6069"
  8567. >
  8568. (A)
  8569. </text>
  8570. <text
  8571. transform="matrix(1 0 0 1 327.6301 361.3022)"
  8572. fill="#919CA0"
  8573. font-family="'MicrosoftYaHei'"
  8574. font-size="10.6069"
  8575. >
  8576. :
  8577. </text>
  8578. </g>
  8579. <g>
  8580. <text
  8581. transform="matrix(1 0 0 1 291.3708 382.7817)"
  8582. fill="#919CA0"
  8583. font-family="'MicrosoftYaHei'"
  8584. font-size="10.6069"
  8585. >
  8586. P(MVar):
  8587. </text>
  8588. </g>
  8589. <g>
  8590. <text
  8591. transform="matrix(1 0 0 1 283.9812 408.854)"
  8592. fill="#919CA0"
  8593. font-family="'MicrosoftYaHei'"
  8594. font-size="10.6069"
  8595. >
  8596. Q
  8597. </text>
  8598. <text
  8599. transform="matrix(1 0 0 1 291.8459 408.854)"
  8600. fill="#919CA0"
  8601. font-family="'MicrosoftYaHei'"
  8602. font-size="10.6069"
  8603. >
  8604. (MVar)
  8605. </text>
  8606. <text
  8607. transform="matrix(1 0 0 1 326.6301 408.854)"
  8608. fill="#919CA0"
  8609. font-family="'MicrosoftYaHei'"
  8610. font-size="10.6069"
  8611. >
  8612. :
  8613. </text>
  8614. </g>
  8615. <rect
  8616. x="971.305"
  8617. y="344.98"
  8618. opacity="0.9"
  8619. fill="#1B2522"
  8620. enable-background="new "
  8621. width="149.407"
  8622. height="21.63"
  8623. ></rect>
  8624. <rect
  8625. x="971.305"
  8626. y="368.969"
  8627. opacity="0.9"
  8628. fill="#1B2522"
  8629. enable-background="new "
  8630. width="149.407"
  8631. height="21.63"
  8632. ></rect>
  8633. <rect
  8634. x="971.305"
  8635. y="392.94"
  8636. opacity="0.9"
  8637. fill="#1B2522"
  8638. enable-background="new "
  8639. width="149.407"
  8640. height="21.633"
  8641. ></rect>
  8642. <g>
  8643. <text
  8644. transform="matrix(1 0 0 1 1010.3357 361.3022)"
  8645. fill="#919CA0"
  8646. font-family="'MicrosoftYaHei'"
  8647. font-size="10.6069"
  8648. >
  8649. la
  8650. </text>
  8651. <text
  8652. transform="matrix(1 0 0 1 1021.2478 361.3022)"
  8653. fill="#919CA0"
  8654. font-family="'MicrosoftYaHei'"
  8655. font-size="10.6069"
  8656. >
  8657. (A)
  8658. </text>
  8659. <text
  8660. transform="matrix(1 0 0 1 1036.6912 361.3022)"
  8661. fill="#919CA0"
  8662. font-family="'MicrosoftYaHei'"
  8663. font-size="10.6069"
  8664. >
  8665. :
  8666. </text>
  8667. </g>
  8668. <g>
  8669. <text
  8670. transform="matrix(1 0 0 1 1000.4314 382.7817)"
  8671. fill="#919CA0"
  8672. font-family="'MicrosoftYaHei'"
  8673. font-size="10.6069"
  8674. >
  8675. P(MVar):
  8676. </text>
  8677. </g>
  8678. <g>
  8679. <text
  8680. transform="matrix(1 0 0 1 993.0417 408.854)"
  8681. fill="#919CA0"
  8682. font-family="'MicrosoftYaHei'"
  8683. font-size="10.6069"
  8684. >
  8685. Q
  8686. </text>
  8687. <text
  8688. transform="matrix(1 0 0 1 1000.905 408.854)"
  8689. fill="#919CA0"
  8690. font-family="'MicrosoftYaHei'"
  8691. font-size="10.6069"
  8692. >
  8693. (MVar)
  8694. </text>
  8695. <text
  8696. transform="matrix(1 0 0 1 1035.6912 408.854)"
  8697. fill="#919CA0"
  8698. font-family="'MicrosoftYaHei'"
  8699. font-size="10.6069"
  8700. >
  8701. :
  8702. </text>
  8703. </g>
  8704. <g id="_x34__x5F_">
  8705. <text
  8706. transform="matrix(1 0 0 1 334.3875 359.8979)"
  8707. fill="#3B8646"
  8708. font-family="'MicrosoftYaHei'"
  8709. font-size="10.6069"
  8710. >
  8711. {{ ajaxData.mhsIaazb1s }}
  8712. </text>
  8713. <text
  8714. transform="matrix(1 0 0 1 334.3875 381.1987)"
  8715. fill="#3B8646"
  8716. font-family="'MicrosoftYaHei'"
  8717. font-size="10.6069"
  8718. >
  8719. {{ ajaxData.mhsPmwzb1s }}
  8720. </text>
  8721. <text
  8722. transform="matrix(1 0 0 1 334.3875 406.8149)"
  8723. fill="#3B8646"
  8724. font-family="'MicrosoftYaHei'"
  8725. font-size="10.6069"
  8726. >
  8727. {{ ajaxData.mhsqmvarzb1s }}
  8728. </text>
  8729. </g>
  8730. <g id="_x34__x5F_">
  8731. <text
  8732. transform="matrix(1 0 0 1 1045.0095 359.8979)"
  8733. fill="#3B8646"
  8734. font-family="'MicrosoftYaHei'"
  8735. font-size="10.6069"
  8736. >
  8737. {{ ajaxData.mhslaazb2s }}
  8738. </text>
  8739. <text
  8740. transform="matrix(1 0 0 1 1045.0095 381.1987)"
  8741. fill="#3B8646"
  8742. font-family="'MicrosoftYaHei'"
  8743. font-size="10.6069"
  8744. >
  8745. {{ ajaxData.mhspmwzb2s }}
  8746. </text>
  8747. <text
  8748. transform="matrix(1 0 0 1 1045.0095 406.8149)"
  8749. fill="#3B8646"
  8750. font-family="'MicrosoftYaHei'"
  8751. font-size="10.6069"
  8752. >
  8753. {{ ajaxData.mhsqmvarzb2s }}
  8754. </text>
  8755. </g>
  8756. <rect
  8757. x="23.638"
  8758. y="462.191"
  8759. opacity="0.9"
  8760. fill="#1B2522"
  8761. enable-background="new "
  8762. width="154.674"
  8763. height="21.638"
  8764. ></rect>
  8765. <rect
  8766. x="23.638"
  8767. y="486.177"
  8768. opacity="0.9"
  8769. fill="#1B2522"
  8770. enable-background="new "
  8771. width="154.674"
  8772. height="21.633"
  8773. ></rect>
  8774. <rect
  8775. x="23.638"
  8776. y="510.153"
  8777. opacity="0.9"
  8778. fill="#1B2522"
  8779. enable-background="new "
  8780. width="154.674"
  8781. height="21.633"
  8782. ></rect>
  8783. <g>
  8784. <text
  8785. transform="matrix(1 0 0 1 36.5876 476.5142)"
  8786. fill="#929CA0"
  8787. font-family="'MicrosoftYaHei'"
  8788. font-size="10.6069"
  8789. >
  8790. Uab(kV):
  8791. </text>
  8792. </g>
  8793. <g>
  8794. <text
  8795. transform="matrix(1 0 0 1 35.6765 500.9946)"
  8796. fill="#929CA0"
  8797. font-family="'MicrosoftYaHei'"
  8798. font-size="10.6069"
  8799. >
  8800. Ubc(kV):
  8801. </text>
  8802. </g>
  8803. <g>
  8804. <text
  8805. transform="matrix(1 0 0 1 37.1326 526.0669)"
  8806. fill="#929CA0"
  8807. font-family="'MicrosoftYaHei'"
  8808. font-size="10.6069"
  8809. >
  8810. Uca(kV):
  8811. </text>
  8812. </g>
  8813. <g id="_x36__x5F_">
  8814. <text
  8815. transform="matrix(1 0 0 1 83.1902 477.2935)"
  8816. fill="#3B8646"
  8817. font-family="'MicrosoftYaHei'"
  8818. font-size="10.6069"
  8819. >
  8820. {{ ajaxData.mhsuabkvzb1 }}
  8821. </text>
  8822. <text
  8823. transform="matrix(1 0 0 1 83.1902 501.9946)"
  8824. fill="#3B8646"
  8825. font-family="'MicrosoftYaHei'"
  8826. font-size="10.6069"
  8827. >
  8828. {{ ajaxData.mhsubckvzb1 }}
  8829. </text>
  8830. <text
  8831. transform="matrix(1 0 0 1 83.1902 526.1753)"
  8832. fill="#3B8646"
  8833. font-family="'MicrosoftYaHei'"
  8834. font-size="10.6069"
  8835. >
  8836. {{ ajaxData.mhsucakvzb1 }}
  8837. </text>
  8838. </g>
  8839. <g id="addData2">
  8840. <text transform="matrix(1 0 0 1 1479.3916 386.1255)" fill="#3B8646" font-family="'MicrosoftYaHei'" font-size="9.9887">-.--</text>
  8841. <text transform="matrix(1 0 0 1 1479.3916 409.3872)" fill="#3B8646" font-family="'MicrosoftYaHei'" font-size="9.9887">-.--</text>
  8842. <text transform="matrix(1 0 0 1 1479.3916 432.1577)" fill="#3B8646" font-family="'MicrosoftYaHei'" font-size="9.9887">-.--</text>
  8843. <text transform="matrix(1 0 0 1 1478.8291 455.0737)" fill="#3B8646" font-family="'MicrosoftYaHei'" font-size="9.9887">-.--</text>
  8844. </g>
  8845. </g>
  8846. </svg>
  8847. </template>
  8848. </previewPicture>
  8849. </el-col>
  8850. </el-row>
  8851. </div>
  8852. </template>
  8853. <script>
  8854. import previewPicture from "../previewPicture.vue";
  8855. import { BoosterStation } from "./BoosterStation";
  8856. import $ from "jquery";
  8857. export default {
  8858. components: {
  8859. previewPicture,
  8860. },
  8861. data() {
  8862. return {
  8863. green: "#02A434",
  8864. red: "#FF0000",
  8865. ajaxData: {},
  8866. interval: "",
  8867. };
  8868. },
  8869. created() {
  8870. this.boosterStation = new BoosterStation();
  8871. this.refreshTPData();
  8872. this.interval = setInterval(this.refreshTPData, 1000);
  8873. },
  8874. mounted() {
  8875. this.$nextTick(()=>{
  8876. if(this.$store.state.themeName === "light"){
  8877. for(let i=0;i<$('#other text').length;i++){
  8878. let that = $('#other text').eq(i);
  8879. let fill = that.attr('fill');
  8880. let txt = parseInt(that.text());
  8881. let zn = /.*[\u4e00-\u9fa5]+.*$/.test(that.text());//判断是否包含中文
  8882. if(fill === '#FFFFFF' && !isNaN(txt) && !zn){
  8883. that.attr('fill','#000');
  8884. }
  8885. }
  8886. }
  8887. })
  8888. },
  8889. methods: {
  8890. closed() {
  8891. clearInterval(this.interval);
  8892. },
  8893. refreshTPData() {
  8894. this.boosterStation.getDatas("MHS_FDC", this.bindValue);
  8895. },
  8896. bindValue(msg) {
  8897. this.ajaxData = msg;
  8898. },
  8899. },
  8900. };
  8901. </script>
  8902. <style scoped>
  8903. .center-bar {
  8904. position: relative;
  8905. box-sizing: border-box;
  8906. height: 90vh;
  8907. background-color: #000000;
  8908. padding-top: 10px;
  8909. padding-left: 5px;
  8910. padding-right: 5px;
  8911. padding-bottom: 5px;
  8912. margin-top: 0;
  8913. margin-right: 0;
  8914. margin-bottom: 3px;
  8915. margin-left: 0;
  8916. display: flex;
  8917. flex-direction: column;
  8918. }
  8919. .svg {
  8920. width: 100%;
  8921. height: 100%;
  8922. }
  8923. </style>