sbq.vue 322 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962
  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"
  8. version="1.1" id="图层_1" x="0px" y="0px" width="1864.602px" height="860.264px"
  9. viewBox="0 0 1864.602 860.264" enable-background="new 0 0 1864.602 860.264"
  10. xml:space="preserve">
  11. <g id="other">
  12. <rect x="25.503" y="60.704" opacity="0.9" fill="#162320" enable-background="new "
  13. width="125.332" height="18.487" />
  14. <rect x="25.503" y="81.2" opacity="0.9" fill="#162320" enable-background="new "
  15. width="125.332" height="18.487" />
  16. <g>
  17. <text transform="matrix(1 0 0 1 52.887 74.6536)" fill="#97A1A2"
  18. font-family="'MicrosoftYaHei'" font-size="11.3899">
  19. la
  20. </text>
  21. <text transform="matrix(1 0 0 1 62.2131 74.6536)" fill="#97A1A2"
  22. font-family="'MicrosoftYaHei'" font-size="9.6234">
  23. (A)
  24. </text>
  25. <text transform="matrix(1 0 0 1 75.4124 74.6536)" fill="#97A1A2"
  26. font-family="'MicrosoftYaHei'" font-size="11.3899">
  27. :
  28. </text>
  29. </g>
  30. <g>
  31. <text transform="matrix(1 0 0 1 46.9832 93.0139)" fill="#97A1A2"
  32. font-family="'MicrosoftYaHei'" font-size="11.3899">
  33. P
  34. </text>
  35. <text transform="matrix(1 0 0 1 53.9529 93.0139)" fill="#97A1A2"
  36. font-family="'MicrosoftYaHei'" font-size="9.6234">
  37. (kW)
  38. </text>
  39. <text transform="matrix(1 0 0 1 75.4124 93.0139)" fill="#97A1A2"
  40. font-family="'MicrosoftYaHei'" font-size="11.3899">
  41. :
  42. </text>
  43. </g>
  44. <rect x="25.503" y="101.63" opacity="0.9" fill="#162320" enable-background="new "
  45. width="125.332" height="18.49" />
  46. <g>
  47. <text transform="matrix(1 0 0 1 38.9617 113.4426)" fill="#97A1A2"
  48. font-family="'MicrosoftYaHei'" font-size="11.3899">
  49. Q
  50. </text>
  51. <text transform="matrix(1 0 0 1 48.2439 113.4426)" fill="#97A1A2"
  52. font-family="'MicrosoftYaHei'" font-size="9.6234">
  53. (kVar)
  54. </text>
  55. <text transform="matrix(1 0 0 1 75.4124 113.4426)" fill="#97A1A2"
  56. font-family="'MicrosoftYaHei'" font-size="11.3899">
  57. :
  58. </text>
  59. </g>
  60. <rect x="25.503" y="121.963" opacity="0.9" fill="#162320" enable-background="new "
  61. width="125.332" height="18.49" />
  62. <g>
  63. <text transform="matrix(1 0 0 1 50.7581 133.7747)" fill="#97A1A2"
  64. font-family="'MicrosoftYaHei'" font-size="11.3899">
  65. F
  66. </text>
  67. <text transform="matrix(1 0 0 1 56.8093 133.7747)" fill="#96A0A1"
  68. font-family="'MicrosoftYaHei'" font-size="9.6234">
  69. (Hz)
  70. </text>
  71. <text transform="matrix(1 0 0 1 75.4124 133.7747)" fill="#97A1A2"
  72. font-family="'MicrosoftYaHei'" font-size="11.3899">
  73. :
  74. </text>
  75. </g>
  76. <rect x="25.503" y="142.073" opacity="0.9" fill="#162320" enable-background="new "
  77. width="125.332" height="18.49" />
  78. <g>
  79. <text transform="matrix(1 0 0 1 51.9373 154.7454)" fill="#97A1A2"
  80. font-family="'MicrosoftYaHei'" font-size="11.3899">
  81. COS:
  82. </text>
  83. </g>
  84. <rect x="698.836" y="60.704" opacity="0.9" fill="#162320" enable-background="new "
  85. width="125.331" height="18.487" />
  86. <rect x="698.836" y="81.2" opacity="0.9" fill="#162320" enable-background="new "
  87. width="125.331" height="18.487" />
  88. <g>
  89. <text transform="matrix(1 0 0 1 726.22 74.6536)" fill="#97A1A2"
  90. font-family="'MicrosoftYaHei'" font-size="11.3899">
  91. la
  92. </text>
  93. <text transform="matrix(1 0 0 1 735.5471 74.6536)" fill="#97A1A2"
  94. font-family="'MicrosoftYaHei'" font-size="9.6234">
  95. (A)
  96. </text>
  97. <text transform="matrix(1 0 0 1 748.7454 74.6536)" fill="#97A1A2"
  98. font-family="'MicrosoftYaHei'" font-size="11.3899">
  99. :
  100. </text>
  101. </g>
  102. <g>
  103. <text transform="matrix(1 0 0 1 720.3167 93.0139)" fill="#97A1A2"
  104. font-family="'MicrosoftYaHei'" font-size="11.3899">
  105. P
  106. </text>
  107. <text transform="matrix(1 0 0 1 727.2854 93.0139)" fill="#97A1A2"
  108. font-family="'MicrosoftYaHei'" font-size="9.6234">
  109. (kW)
  110. </text>
  111. <text transform="matrix(1 0 0 1 748.7454 93.0139)" fill="#97A1A2"
  112. font-family="'MicrosoftYaHei'" font-size="11.3899">
  113. :
  114. </text>
  115. </g>
  116. <rect x="698.836" y="101.63" opacity="0.9" fill="#162320" enable-background="new "
  117. width="125.331" height="18.49" />
  118. <g>
  119. <text transform="matrix(1 0 0 1 712.2942 113.4426)" fill="#97A1A2"
  120. font-family="'MicrosoftYaHei'" font-size="11.3899">
  121. Q
  122. </text>
  123. <text transform="matrix(1 0 0 1 721.5764 113.4426)" fill="#97A1A2"
  124. font-family="'MicrosoftYaHei'" font-size="9.6234">
  125. (kVar)
  126. </text>
  127. <text transform="matrix(1 0 0 1 748.7454 113.4426)" fill="#97A1A2"
  128. font-family="'MicrosoftYaHei'" font-size="11.3899">
  129. :
  130. </text>
  131. </g>
  132. <rect x="698.836" y="121.963" opacity="0.9" fill="#162320" enable-background="new "
  133. width="125.331" height="18.49" />
  134. <g>
  135. <text transform="matrix(1 0 0 1 724.0916 133.7747)" fill="#97A1A2"
  136. font-family="'MicrosoftYaHei'" font-size="11.3899">
  137. F
  138. </text>
  139. <text transform="matrix(1 0 0 1 730.1428 133.7747)" fill="#96A0A1"
  140. font-family="'MicrosoftYaHei'" font-size="9.6234">
  141. (Hz)
  142. </text>
  143. <text transform="matrix(1 0 0 1 748.7454 133.7747)" fill="#97A1A2"
  144. font-family="'MicrosoftYaHei'" font-size="11.3899">
  145. :
  146. </text>
  147. </g>
  148. <rect x="698.836" y="142.073" opacity="0.9" fill="#162320" enable-background="new "
  149. width="125.331" height="18.49" />
  150. <g>
  151. <text transform="matrix(1 0 0 1 725.2708 154.7454)" fill="#97A1A2"
  152. font-family="'MicrosoftYaHei'" font-size="11.3899">
  153. COS:
  154. </text>
  155. </g>
  156. <rect x="276.011" y="115.347" fill="#981C55" width="21.724" height="3.047" />
  157. <text transform="matrix(1 0 0 1 344.9949 121.9622)" fill="#FFFFFF"
  158. font-family="'MicrosoftYaHei'" font-size="11.9907">
  159. -0
  160. </text>
  161. <text transform="matrix(1 0 0 1 292.9949 146.4622)" fill="#FFFFFF"
  162. font-family="'MicrosoftYaHei'" font-size="11.9907">
  163. -3
  164. </text>
  165. <text transform="matrix(1 0 0 1 295.8079 185.6086)" fill="#FFFFFF"
  166. font-family="'MicrosoftYaHei'" font-size="11.9907">
  167. 111
  168. </text>
  169. <g>
  170. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  171. x1="327.414" y1="121.406" x2="327.414" y2="109.108" />
  172. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  173. x1="318.951" y1="115.257" x2="327.414" y2="115.257" />
  174. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  175. x1="330.8" y1="118.868" x2="330.8" y2="111.647" />
  176. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  177. x1="334.185" y1="117.458" x2="334.185" y2="113.058" />
  178. </g>
  179. <rect x="276.011" y="207.847" fill="#981C55" width="21.724" height="3.047" />
  180. <text transform="matrix(1 0 0 1 344.9949 214.4622)" fill="#FFFFFF"
  181. font-family="'MicrosoftYaHei'" font-size="11.9907">
  182. -02
  183. </text>
  184. <g>
  185. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  186. x1="327.414" y1="213.906" x2="327.414" y2="201.608" />
  187. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  188. x1="318.951" y1="207.757" x2="327.414" y2="207.757" />
  189. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  190. x1="330.8" y1="211.368" x2="330.8" y2="204.147" />
  191. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  192. x1="334.185" y1="209.958" x2="334.185" y2="205.558" />
  193. </g>
  194. <rect x="253.27" y="158.571" fill="#981C55" width="21.727" height="3.05" />
  195. <text transform="matrix(1 0 0 1 193.7449 165.3176)" fill="#FFFFFF"
  196. font-family="'MicrosoftYaHei'" font-size="11.9907">
  197. 03
  198. </text>
  199. <text transform="matrix(1 0 0 1 242.5427 232.9036)" fill="#FFFFFF"
  200. font-family="'MicrosoftYaHei'" font-size="11.9907">
  201. -1
  202. </text>
  203. <g>
  204. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  205. x1="223.591" y1="155.558" x2="223.591" y2="167.856" />
  206. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  207. x1="232.054" y1="161.708" x2="223.591" y2="161.708" />
  208. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  209. x1="220.205" y1="158.097" x2="220.205" y2="165.317" />
  210. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  211. x1="216.82" y1="159.507" x2="216.82" y2="163.906" />
  212. </g>
  213. <rect x="253.27" y="258.276" fill="#981C55" width="21.727" height="3.047" />
  214. <text transform="matrix(1 0 0 1 183.4949 265.0227)" fill="#FFFFFF"
  215. font-family="'MicrosoftYaHei'" font-size="11.9907">
  216. 011
  217. </text>
  218. <g>
  219. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  220. x1="223.591" y1="255.263" x2="223.591" y2="267.562" />
  221. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  222. x1="232.054" y1="261.413" x2="223.591" y2="261.413" />
  223. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  224. x1="220.205" y1="257.802" x2="220.205" y2="265.022" />
  225. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  226. x1="216.82" y1="259.212" x2="216.82" y2="263.612" />
  227. </g>
  228. <g>
  229. <g>
  230. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  231. x1="361.547" y1="87.353" x2="361.547" y2="75.054" />
  232. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  233. x1="364.933" y1="84.813" x2="364.933" y2="77.593" />
  234. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  235. x1="368.318" y1="83.403" x2="368.318" y2="79.005" />
  236. </g>
  237. </g>
  238. <rect x="303.809" y="71.271" fill="#981C55" width="2.605" height="19.884" />
  239. <rect x="305.112" y="79.533" fill="#981C55" width="31.198" height="3.047" />
  240. <rect x="319.722" y="66.383" fill="#981C55" width="2.632" height="13.593" />
  241. <rect x="276.123" y="79.008" fill="#981C55" width="20.536" height="3.047" />
  242. <rect x="344.995" y="79.681" fill="#42B0A8" width="16.55" height="3.047" />
  243. <rect x="295.809" y="71.271" fill="#981C55" width="2.605" height="19.884" />
  244. <rect x="335.693" y="71.271" fill="#981C55" width="2.605" height="19.884" />
  245. <g>
  246. <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  247. cx="328.676" cy="43.969" r="8.804" />
  248. <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  249. cx="313.399" cy="43.969" r="8.804" />
  250. <polyline fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  251. points="331.643,48.677 328.477,45.546 325.526,48.677 " />
  252. <line fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  253. x1="328.411" y1="45.463" x2="328.411" y2="39.941" />
  254. <polyline fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  255. points="316.364,48.337 313.198,45.204 310.247,48.337 " />
  256. <line fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  257. x1="313.131" y1="45.121" x2="313.131" y2="39.601" />
  258. <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  259. cx="320.595" cy="57.58" r="8.803" />
  260. <polyline fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  261. points="323.56,61.948 320.394,58.815 317.443,61.948 " />
  262. <line fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  263. x1="320.328" y1="58.733" x2="320.328" y2="53.211" />
  264. </g>
  265. <rect x="274.488" y="38.61" fill="#981C55" width="3.05" height="88.56" />
  266. <rect x="274.488" y="149.05" fill="#981C55" width="3.05" height="71.867" />
  267. <rect x="274.488" y="241.05" fill="#981C55" width="3.05" height="45.117" />
  268. <polygon fill="#981C55" points="269.899,39.337 276.019,26.317 282.123,39.342 " />
  269. <rect x="343.693" y="71.262" fill="#981C55" width="2.605" height="19.884" />
  270. <rect x="390.829" y="147.268" opacity="0.9" fill="#162320" enable-background="new "
  271. width="115.107" height="18.491" />
  272. <rect x="390.829" y="167.765" opacity="0.9" fill="#162320" enable-background="new "
  273. width="115.107" height="18.49" />
  274. <rect x="390.829" y="188.261" opacity="0.9" fill="#162320" enable-background="new "
  275. width="115.107" height="18.49" />
  276. <rect x="390.829" y="208.757" opacity="0.9" fill="#162320" enable-background="new "
  277. width="115.107" height="18.49" />
  278. <g>
  279. <text transform="matrix(1 0 0 1 407.7712 161.219)" fill="#97A1A2"
  280. font-family="'MicrosoftYaHei'" font-size="11.3899">
  281. Ua
  282. </text>
  283. <text transform="matrix(1 0 0 1 422.5706 161.219)" fill="#97A1A2"
  284. font-family="'MicrosoftYaHei'" font-size="9.6234">
  285. (kV)
  286. </text>
  287. <text transform="matrix(1 0 0 1 440.7473 161.219)" fill="#97A1A2"
  288. font-family="'MicrosoftYaHei'" font-size="11.3899">
  289. :
  290. </text>
  291. </g>
  292. <g>
  293. <text transform="matrix(1 0 0 1 406.7932 179.5774)" fill="#97A1A2"
  294. font-family="'MicrosoftYaHei'" font-size="11.3899">
  295. Ub
  296. </text>
  297. <text transform="matrix(1 0 0 1 422.5706 179.5774)" fill="#97A1A2"
  298. font-family="'MicrosoftYaHei'" font-size="9.6234">
  299. (kV)
  300. </text>
  301. <text transform="matrix(1 0 0 1 440.7454 179.5774)" fill="#97A1A2"
  302. font-family="'MicrosoftYaHei'" font-size="11.3899">
  303. :
  304. </text>
  305. </g>
  306. <g>
  307. <text transform="matrix(1 0 0 1 408.3557 201.8625)" fill="#97A1A2"
  308. font-family="'MicrosoftYaHei'" font-size="11.3899">
  309. Uc
  310. </text>
  311. <text transform="matrix(1 0 0 1 422.5706 201.8625)" fill="#97A1A2"
  312. font-family="'MicrosoftYaHei'" font-size="9.6234">
  313. (kV)
  314. </text>
  315. <text transform="matrix(1 0 0 1 440.7473 201.8625)" fill="#97A1A2"
  316. font-family="'MicrosoftYaHei'" font-size="11.3899">
  317. :
  318. </text>
  319. </g>
  320. <g>
  321. <text transform="matrix(1 0 0 1 400.4973 222.6975)" fill="#97A1A2"
  322. font-family="'MicrosoftYaHei'" font-size="11.3899">
  323. Uab
  324. </text>
  325. <text transform="matrix(1 0 0 1 422.571 222.6975)" fill="#97A1A2"
  326. font-family="'MicrosoftYaHei'" font-size="9.6234">
  327. (kV)
  328. </text>
  329. <text transform="matrix(1 0 0 1 440.7458 222.6975)" fill="#97A1A2"
  330. font-family="'MicrosoftYaHei'" font-size="11.3899">
  331. :
  332. </text>
  333. </g>
  334. <rect x="390.829" y="229.257" opacity="0.9" fill="#162320" enable-background="new "
  335. width="115.107" height="18.49" />
  336. <g>
  337. <text transform="matrix(1 0 0 1 401.0813 243.1975)" fill="#97A1A2"
  338. font-family="'MicrosoftYaHei'" font-size="11.3899">
  339. Ubc
  340. </text>
  341. <text transform="matrix(1 0 0 1 422.571 243.1975)" fill="#97A1A2"
  342. font-family="'MicrosoftYaHei'" font-size="9.6234">
  343. (kV)
  344. </text>
  345. <text transform="matrix(1 0 0 1 440.7458 243.1975)" fill="#97A1A2"
  346. font-family="'MicrosoftYaHei'" font-size="11.3899">
  347. :
  348. </text>
  349. </g>
  350. <rect x="390.829" y="249.757" opacity="0.9" fill="#162320" enable-background="new "
  351. width="115.107" height="18.49" />
  352. <g>
  353. <text transform="matrix(1 0 0 1 397.3875 263.6975)" fill="#97A1A2"
  354. font-family="'MicrosoftYaHei'" font-size="11.3899">
  355. 3U0
  356. </text>
  357. <text transform="matrix(1 0 0 1 422.5706 263.6975)" fill="#97A1A2"
  358. font-family="'MicrosoftYaHei'" font-size="9.6234">
  359. (kV)
  360. </text>
  361. <text transform="matrix(1 0 0 1 440.7454 263.6975)" fill="#97A1A2"
  362. font-family="'MicrosoftYaHei'" font-size="11.3899">
  363. :
  364. </text>
  365. </g>
  366. <rect x="34.55" y="419.649" opacity="0.9" fill="#162320" enable-background="new "
  367. width="115.11" height="18.49" />
  368. <rect x="34.55" y="440.146" opacity="0.9" fill="#162320" enable-background="new "
  369. width="115.11" height="18.489" />
  370. <rect x="34.55" y="460.643" opacity="0.9" fill="#162320" enable-background="new "
  371. width="115.11" height="18.49" />
  372. <rect x="34.55" y="481.139" opacity="0.9" fill="#162320" enable-background="new "
  373. width="115.11" height="18.49" />
  374. <g>
  375. <text transform="matrix(1 0 0 1 51.4924 433.6008)" fill="#97A1A2"
  376. font-family="'MicrosoftYaHei'" font-size="11.3899">
  377. Ua
  378. </text>
  379. <text transform="matrix(1 0 0 1 66.2917 433.6008)" fill="#97A1A2"
  380. font-family="'MicrosoftYaHei'" font-size="9.6234">
  381. (kV)
  382. </text>
  383. <text transform="matrix(1 0 0 1 84.4675 433.6008)" fill="#97A1A2"
  384. font-family="'MicrosoftYaHei'" font-size="11.3899">
  385. :
  386. </text>
  387. </g>
  388. <g>
  389. <text transform="matrix(1 0 0 1 50.5134 451.9602)" fill="#97A1A2"
  390. font-family="'MicrosoftYaHei'" font-size="11.3899">
  391. Ub
  392. </text>
  393. <text transform="matrix(1 0 0 1 66.2913 451.9602)" fill="#97A1A2"
  394. font-family="'MicrosoftYaHei'" font-size="9.6234">
  395. (kV)
  396. </text>
  397. <text transform="matrix(1 0 0 1 84.4666 451.9602)" fill="#97A1A2"
  398. font-family="'MicrosoftYaHei'" font-size="11.3899">
  399. :
  400. </text>
  401. </g>
  402. <g>
  403. <text transform="matrix(1 0 0 1 52.0774 474.2444)" fill="#97A1A2"
  404. font-family="'MicrosoftYaHei'" font-size="11.3899">
  405. Uc
  406. </text>
  407. <text transform="matrix(1 0 0 1 66.2913 474.2444)" fill="#97A1A2"
  408. font-family="'MicrosoftYaHei'" font-size="9.6234">
  409. (kV)
  410. </text>
  411. <text transform="matrix(1 0 0 1 84.4675 474.2444)" fill="#97A1A2"
  412. font-family="'MicrosoftYaHei'" font-size="11.3899">
  413. :
  414. </text>
  415. </g>
  416. <g>
  417. <text transform="matrix(1 0 0 1 44.219 495.0793)" fill="#97A1A2"
  418. font-family="'MicrosoftYaHei'" font-size="11.3899">
  419. Uab
  420. </text>
  421. <text transform="matrix(1 0 0 1 66.2917 495.0793)" fill="#97A1A2"
  422. font-family="'MicrosoftYaHei'" font-size="9.6234">
  423. (kV)
  424. </text>
  425. <text transform="matrix(1 0 0 1 84.467 495.0793)" fill="#97A1A2"
  426. font-family="'MicrosoftYaHei'" font-size="11.3899">
  427. :
  428. </text>
  429. </g>
  430. <rect x="34.55" y="501.639" opacity="0.9" fill="#162320" enable-background="new "
  431. width="115.11" height="18.49" />
  432. <g>
  433. <text transform="matrix(1 0 0 1 44.803 515.5793)" fill="#97A1A2"
  434. font-family="'MicrosoftYaHei'" font-size="11.3899">
  435. Ubc
  436. </text>
  437. <text transform="matrix(1 0 0 1 66.2917 515.5793)" fill="#97A1A2"
  438. font-family="'MicrosoftYaHei'" font-size="9.6234">
  439. (kV)
  440. </text>
  441. <text transform="matrix(1 0 0 1 84.467 515.5793)" fill="#97A1A2"
  442. font-family="'MicrosoftYaHei'" font-size="11.3899">
  443. :
  444. </text>
  445. </g>
  446. <rect x="34.55" y="522.139" opacity="0.9" fill="#162320" enable-background="new "
  447. width="115.11" height="18.49" />
  448. <g>
  449. <text transform="matrix(1 0 0 1 51.1086 536.0793)" fill="#97A1A2"
  450. font-family="'MicrosoftYaHei'" font-size="11.3899">
  451. U0
  452. </text>
  453. <text transform="matrix(1 0 0 1 66.2917 536.0793)" fill="#97A1A2"
  454. font-family="'MicrosoftYaHei'" font-size="9.6234">
  455. (kV)
  456. </text>
  457. <text transform="matrix(1 0 0 1 84.4666 536.0793)" fill="#97A1A2"
  458. font-family="'MicrosoftYaHei'" font-size="11.3899">
  459. :
  460. </text>
  461. </g>
  462. <rect x="765.439" y="419.649" opacity="0.9" fill="#162320" enable-background="new "
  463. width="107.109" height="18.49" />
  464. <rect x="765.439" y="440.146" opacity="0.9" fill="#162320" enable-background="new "
  465. width="107.109" height="18.489" />
  466. <rect x="765.439" y="460.643" opacity="0.9" fill="#162320" enable-background="new "
  467. width="107.109" height="18.49" />
  468. <rect x="765.439" y="481.139" opacity="0.9" fill="#162320" enable-background="new "
  469. width="107.109" height="18.49" />
  470. <g>
  471. <text transform="matrix(1 0 0 1 782.3821 433.6008)" fill="#97A1A2"
  472. font-family="'MicrosoftYaHei'" font-size="11.3899">
  473. Ua
  474. </text>
  475. <text transform="matrix(1 0 0 1 797.1809 433.6008)" fill="#97A1A2"
  476. font-family="'MicrosoftYaHei'" font-size="9.6234">
  477. (kV)
  478. </text>
  479. <text transform="matrix(1 0 0 1 815.3567 433.6008)" fill="#97A1A2"
  480. font-family="'MicrosoftYaHei'" font-size="11.3899">
  481. :
  482. </text>
  483. </g>
  484. <g>
  485. <text transform="matrix(1 0 0 1 781.4026 451.9602)" fill="#97A1A2"
  486. font-family="'MicrosoftYaHei'" font-size="11.3899">
  487. Ub
  488. </text>
  489. <text transform="matrix(1 0 0 1 797.1809 451.9602)" fill="#97A1A2"
  490. font-family="'MicrosoftYaHei'" font-size="9.6234">
  491. (kV)
  492. </text>
  493. <text transform="matrix(1 0 0 1 815.3557 451.9602)" fill="#97A1A2"
  494. font-family="'MicrosoftYaHei'" font-size="11.3899">
  495. :
  496. </text>
  497. </g>
  498. <g>
  499. <text transform="matrix(1 0 0 1 782.9661 474.2444)" fill="#97A1A2"
  500. font-family="'MicrosoftYaHei'" font-size="11.3899">
  501. Uc
  502. </text>
  503. <text transform="matrix(1 0 0 1 797.1809 474.2444)" fill="#97A1A2"
  504. font-family="'MicrosoftYaHei'" font-size="9.6234">
  505. (kV)
  506. </text>
  507. <text transform="matrix(1 0 0 1 815.3567 474.2444)" fill="#97A1A2"
  508. font-family="'MicrosoftYaHei'" font-size="11.3899">
  509. :
  510. </text>
  511. </g>
  512. <g>
  513. <text transform="matrix(1 0 0 1 775.1077 495.0793)" fill="#97A1A2"
  514. font-family="'MicrosoftYaHei'" font-size="11.3899">
  515. Uab
  516. </text>
  517. <text transform="matrix(1 0 0 1 797.1809 495.0793)" fill="#97A1A2"
  518. font-family="'MicrosoftYaHei'" font-size="9.6234">
  519. (kV)
  520. </text>
  521. <text transform="matrix(1 0 0 1 815.3567 495.0793)" fill="#97A1A2"
  522. font-family="'MicrosoftYaHei'" font-size="11.3899">
  523. :
  524. </text>
  525. </g>
  526. <rect x="765.439" y="501.639" opacity="0.9" fill="#162320" enable-background="new "
  527. width="107.109" height="18.49" />
  528. <g>
  529. <text transform="matrix(1 0 0 1 775.6917 514.5793)" fill="#97A1A2"
  530. font-family="'MicrosoftYaHei'" font-size="11.3899">
  531. Ubc
  532. </text>
  533. <text transform="matrix(1 0 0 1 797.1809 514.5793)" fill="#97A1A2"
  534. font-family="'MicrosoftYaHei'" font-size="9.6234">
  535. (kV)
  536. </text>
  537. <text transform="matrix(1 0 0 1 815.3567 514.5793)" fill="#97A1A2"
  538. font-family="'MicrosoftYaHei'" font-size="11.3899">
  539. :
  540. </text>
  541. </g>
  542. <rect x="765.439" y="522.139" opacity="0.9" fill="#162320" enable-background="new "
  543. width="107.109" height="18.49" />
  544. <g>
  545. <text transform="matrix(1 0 0 1 781.9983 536.0793)" fill="#97A1A2"
  546. font-family="'MicrosoftYaHei'" font-size="11.3899">
  547. U0
  548. </text>
  549. <text transform="matrix(1 0 0 1 797.1809 536.0793)" fill="#97A1A2"
  550. font-family="'MicrosoftYaHei'" font-size="9.6234">
  551. (kV)
  552. </text>
  553. <text transform="matrix(1 0 0 1 815.3557 536.0793)" fill="#97A1A2"
  554. font-family="'MicrosoftYaHei'" font-size="11.3899">
  555. :
  556. </text>
  557. </g>
  558. <rect x="990.725" y="419.649" opacity="0.9" fill="#162320" enable-background="new "
  559. width="107.11" height="18.49" />
  560. <rect x="990.725" y="440.146" opacity="0.9" fill="#162320" enable-background="new "
  561. width="107.11" height="18.489" />
  562. <rect x="990.725" y="460.643" opacity="0.9" fill="#162320" enable-background="new "
  563. width="107.11" height="18.49" />
  564. <rect x="990.725" y="481.139" opacity="0.9" fill="#162320" enable-background="new "
  565. width="107.11" height="18.49" />
  566. <g>
  567. <text transform="matrix(1 0 0 1 1007.6682 433.6008)" fill="#97A1A2"
  568. font-family="'MicrosoftYaHei'" font-size="11.3899">
  569. Ua
  570. </text>
  571. <text transform="matrix(1 0 0 1 1022.467 433.6008)" fill="#97A1A2"
  572. font-family="'MicrosoftYaHei'" font-size="9.6234">
  573. (kV)
  574. </text>
  575. <text transform="matrix(1 0 0 1 1040.6428 433.6008)" fill="#97A1A2"
  576. font-family="'MicrosoftYaHei'" font-size="11.3899">
  577. :
  578. </text>
  579. </g>
  580. <g>
  581. <text transform="matrix(1 0 0 1 1006.6897 451.9602)" fill="#97A1A2"
  582. font-family="'MicrosoftYaHei'" font-size="11.3899">
  583. Ub
  584. </text>
  585. <text transform="matrix(1 0 0 1 1022.467 451.9602)" fill="#97A1A2"
  586. font-family="'MicrosoftYaHei'" font-size="9.6234">
  587. (kV)
  588. </text>
  589. <text transform="matrix(1 0 0 1 1040.6428 451.9602)" fill="#97A1A2"
  590. font-family="'MicrosoftYaHei'" font-size="11.3899">
  591. :
  592. </text>
  593. </g>
  594. <g>
  595. <text transform="matrix(1 0 0 1 1008.2522 474.2444)" fill="#97A1A2"
  596. font-family="'MicrosoftYaHei'" font-size="11.3899">
  597. Uc
  598. </text>
  599. <text transform="matrix(1 0 0 1 1022.467 474.2444)" fill="#97A1A2"
  600. font-family="'MicrosoftYaHei'" font-size="9.6234">
  601. (kV)
  602. </text>
  603. <text transform="matrix(1 0 0 1 1040.6428 474.2444)" fill="#97A1A2"
  604. font-family="'MicrosoftYaHei'" font-size="11.3899">
  605. :
  606. </text>
  607. </g>
  608. <g>
  609. <text transform="matrix(1 0 0 1 1000.3928 495.0793)" fill="#97A1A2"
  610. font-family="'MicrosoftYaHei'" font-size="11.3899">
  611. Uab
  612. </text>
  613. <text transform="matrix(1 0 0 1 1022.467 495.0793)" fill="#97A1A2"
  614. font-family="'MicrosoftYaHei'" font-size="9.6234">
  615. (kV)
  616. </text>
  617. <text transform="matrix(1 0 0 1 1040.6428 495.0793)" fill="#97A1A2"
  618. font-family="'MicrosoftYaHei'" font-size="11.3899">
  619. :
  620. </text>
  621. </g>
  622. <rect x="990.725" y="501.639" opacity="0.9" fill="#162320" enable-background="new "
  623. width="107.11" height="18.49" />
  624. <g>
  625. <text transform="matrix(1 0 0 1 1000.9768 514.5793)" fill="#97A1A2"
  626. font-family="'MicrosoftYaHei'" font-size="11.3899">
  627. Ubc
  628. </text>
  629. <text transform="matrix(1 0 0 1 1022.467 514.5793)" fill="#97A1A2"
  630. font-family="'MicrosoftYaHei'" font-size="9.6234">
  631. (kV)
  632. </text>
  633. <text transform="matrix(1 0 0 1 1040.6428 514.5793)" fill="#97A1A2"
  634. font-family="'MicrosoftYaHei'" font-size="11.3899">
  635. :
  636. </text>
  637. </g>
  638. <rect x="990.725" y="522.139" opacity="0.9" fill="#162320" enable-background="new "
  639. width="107.11" height="18.49" />
  640. <g>
  641. <text transform="matrix(1 0 0 1 1007.2834 536.0793)" fill="#97A1A2"
  642. font-family="'MicrosoftYaHei'" font-size="11.3899">
  643. U0
  644. </text>
  645. <text transform="matrix(1 0 0 1 1022.467 536.0793)" fill="#97A1A2"
  646. font-family="'MicrosoftYaHei'" font-size="9.6234">
  647. (kV)
  648. </text>
  649. <text transform="matrix(1 0 0 1 1040.6428 536.0793)" fill="#97A1A2"
  650. font-family="'MicrosoftYaHei'" font-size="11.3899">
  651. :
  652. </text>
  653. </g>
  654. <rect x="1735.427" y="419.649" opacity="0.9" fill="#162320" enable-background="new "
  655. width="107.107" height="18.49" />
  656. <rect x="1735.427" y="440.146" opacity="0.9" fill="#162320" enable-background="new "
  657. width="107.107" height="18.489" />
  658. <rect x="1735.427" y="460.643" opacity="0.9" fill="#162320" enable-background="new "
  659. width="107.107" height="18.49" />
  660. <rect x="1735.427" y="481.139" opacity="0.9" fill="#162320" enable-background="new "
  661. width="107.107" height="18.49" />
  662. <g>
  663. <text transform="matrix(1 0 0 1 1752.3694 433.6008)" fill="#97A1A2"
  664. font-family="'MicrosoftYaHei'" font-size="11.3899">
  665. Ua
  666. </text>
  667. <text transform="matrix(1 0 0 1 1767.1702 433.6008)" fill="#97A1A2"
  668. font-family="'MicrosoftYaHei'" font-size="9.6234">
  669. (kV)
  670. </text>
  671. <text transform="matrix(1 0 0 1 1785.3459 433.6008)" fill="#97A1A2"
  672. font-family="'MicrosoftYaHei'" font-size="11.3899">
  673. :
  674. </text>
  675. </g>
  676. <g>
  677. <text transform="matrix(1 0 0 1 1751.3909 451.9602)" fill="#97A1A2"
  678. font-family="'MicrosoftYaHei'" font-size="11.3899">
  679. Ub
  680. </text>
  681. <text transform="matrix(1 0 0 1 1767.1682 451.9602)" fill="#97A1A2"
  682. font-family="'MicrosoftYaHei'" font-size="9.6234">
  683. (kV)
  684. </text>
  685. <text transform="matrix(1 0 0 1 1785.344 451.9602)" fill="#97A1A2"
  686. font-family="'MicrosoftYaHei'" font-size="11.3899">
  687. :
  688. </text>
  689. </g>
  690. <g>
  691. <text transform="matrix(1 0 0 1 1752.9534 474.2444)" fill="#97A1A2"
  692. font-family="'MicrosoftYaHei'" font-size="11.3899">
  693. Uc
  694. </text>
  695. <text transform="matrix(1 0 0 1 1767.1702 474.2444)" fill="#97A1A2"
  696. font-family="'MicrosoftYaHei'" font-size="9.6234">
  697. (kV)
  698. </text>
  699. <text transform="matrix(1 0 0 1 1785.3459 474.2444)" fill="#97A1A2"
  700. font-family="'MicrosoftYaHei'" font-size="11.3899">
  701. :
  702. </text>
  703. </g>
  704. <g>
  705. <text transform="matrix(1 0 0 1 1745.0959 495.0793)" fill="#97A1A2"
  706. font-family="'MicrosoftYaHei'" font-size="11.3899">
  707. Uab
  708. </text>
  709. <text transform="matrix(1 0 0 1 1767.1702 495.0793)" fill="#97A1A2"
  710. font-family="'MicrosoftYaHei'" font-size="9.6234">
  711. (kV)
  712. </text>
  713. <text transform="matrix(1 0 0 1 1785.344 495.0793)" fill="#97A1A2"
  714. font-family="'MicrosoftYaHei'" font-size="11.3899">
  715. :
  716. </text>
  717. </g>
  718. <rect x="1735.427" y="501.639" opacity="0.9" fill="#162320" enable-background="new "
  719. width="107.107" height="18.49" />
  720. <g>
  721. <text transform="matrix(1 0 0 1 1745.6799 514.5793)" fill="#97A1A2"
  722. font-family="'MicrosoftYaHei'" font-size="11.3899">
  723. Ubc
  724. </text>
  725. <text transform="matrix(1 0 0 1 1767.1702 514.5793)" fill="#97A1A2"
  726. font-family="'MicrosoftYaHei'" font-size="9.6234">
  727. (kV)
  728. </text>
  729. <text transform="matrix(1 0 0 1 1785.344 514.5793)" fill="#97A1A2"
  730. font-family="'MicrosoftYaHei'" font-size="11.3899">
  731. :
  732. </text>
  733. </g>
  734. <rect x="1735.427" y="522.139" opacity="0.9" fill="#162320" enable-background="new "
  735. width="107.107" height="18.49" />
  736. <g>
  737. <text transform="matrix(1 0 0 1 1751.9866 536.0793)" fill="#97A1A2"
  738. font-family="'MicrosoftYaHei'" font-size="11.3899">
  739. U0
  740. </text>
  741. <text transform="matrix(1 0 0 1 1767.1702 536.0793)" fill="#97A1A2"
  742. font-family="'MicrosoftYaHei'" font-size="9.6234">
  743. (kV)
  744. </text>
  745. <text transform="matrix(1 0 0 1 1785.344 536.0793)" fill="#97A1A2"
  746. font-family="'MicrosoftYaHei'" font-size="11.3899">
  747. :
  748. </text>
  749. </g>
  750. <rect x="939.322" y="115.347" fill="#981C55" width="21.727" height="3.047" />
  751. <text transform="matrix(1 0 0 1 1008.3069 121.9622)" fill="#FFFFFF"
  752. font-family="'MicrosoftYaHei'" font-size="11.9907">
  753. -0
  754. </text>
  755. <text transform="matrix(1 0 0 1 956.3069 146.4622)" fill="#FFFFFF"
  756. font-family="'MicrosoftYaHei'" font-size="11.9907">
  757. -3
  758. </text>
  759. <text transform="matrix(1 0 0 1 959.1194 185.6086)" fill="#FFFFFF"
  760. font-family="'MicrosoftYaHei'" font-size="11.9907">
  761. 121
  762. </text>
  763. <g>
  764. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  765. x1="990.725" y1="121.406" x2="990.725" y2="109.108" />
  766. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  767. x1="982.262" y1="115.257" x2="990.725" y2="115.257" />
  768. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  769. x1="994.111" y1="118.868" x2="994.111" y2="111.647" />
  770. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  771. x1="997.493" y1="117.458" x2="997.493" y2="113.058" />
  772. </g>
  773. <rect x="939.322" y="207.847" fill="#981C55" width="21.727" height="3.047" />
  774. <text transform="matrix(1 0 0 1 1008.3069 214.4622)" fill="#FFFFFF"
  775. font-family="'MicrosoftYaHei'" font-size="11.9907">
  776. -02
  777. </text>
  778. <g>
  779. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  780. x1="990.725" y1="213.906" x2="990.725" y2="201.608" />
  781. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  782. x1="982.262" y1="207.757" x2="990.725" y2="207.757" />
  783. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  784. x1="994.111" y1="211.368" x2="994.111" y2="204.147" />
  785. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  786. x1="997.493" y1="209.958" x2="997.493" y2="205.558" />
  787. </g>
  788. <rect x="916.578" y="158.571" fill="#981C55" width="21.727" height="3.05" />
  789. <text transform="matrix(1 0 0 1 857.0559 165.3176)" fill="#FFFFFF"
  790. font-family="'MicrosoftYaHei'" font-size="11.9907">
  791. 03
  792. </text>
  793. <text transform="matrix(1 0 0 1 905.8538 232.9036)" fill="#FFFFFF"
  794. font-family="'MicrosoftYaHei'" font-size="11.9907">
  795. -2
  796. </text>
  797. <g>
  798. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  799. x1="886.902" y1="155.558" x2="886.902" y2="167.856" />
  800. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  801. x1="895.365" y1="161.708" x2="886.902" y2="161.708" />
  802. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  803. x1="883.516" y1="158.097" x2="883.516" y2="165.317" />
  804. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  805. x1="880.131" y1="159.507" x2="880.131" y2="163.906" />
  806. </g>
  807. <rect x="916.578" y="258.276" fill="#981C55" width="21.727" height="3.047" />
  808. <text transform="matrix(1 0 0 1 846.8059 265.0227)" fill="#FFFFFF"
  809. font-family="'MicrosoftYaHei'" font-size="11.9907">
  810. 012
  811. </text>
  812. <g>
  813. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  814. x1="886.902" y1="255.263" x2="886.902" y2="267.562" />
  815. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  816. x1="895.365" y1="261.413" x2="886.902" y2="261.413" />
  817. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  818. x1="883.516" y1="257.802" x2="883.516" y2="265.022" />
  819. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  820. x1="880.131" y1="259.212" x2="880.131" y2="263.612" />
  821. </g>
  822. <g>
  823. <g>
  824. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  825. x1="1024.857" y1="87.353" x2="1024.857" y2="75.054" />
  826. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  827. x1="1028.241" y1="84.813" x2="1028.241" y2="77.593" />
  828. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  829. x1="1031.629" y1="83.403" x2="1031.629" y2="79.005" />
  830. </g>
  831. </g>
  832. <rect x="967.117" y="71.271" fill="#981C55" width="2.604" height="19.884" />
  833. <rect x="968.423" y="79.533" fill="#981C55" width="31.195" height="3.047" />
  834. <rect x="983.031" y="66.383" fill="#981C55" width="2.631" height="13.593" />
  835. <rect x="939.434" y="79.008" fill="#981C55" width="20.537" height="3.047" />
  836. <rect x="1016.578" y="79.681" fill="#42B0A8" width="8.274" height="3.047" />
  837. <rect x="1008.307" y="79.681" fill="#981C55" width="8.271" height="3.047" />
  838. <rect x="959.117" y="71.271" fill="#981C55" width="2.604" height="19.884" />
  839. <rect x="999.004" y="71.271" fill="#981C55" width="2.604" height="19.884" />
  840. <g>
  841. <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  842. cx="991.986" cy="43.969" r="8.804" />
  843. <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  844. cx="976.71" cy="43.969" r="8.804" />
  845. <polyline fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  846. points="994.951,48.677 991.785,45.546 988.837,48.677 " />
  847. <line fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  848. x1="991.723" y1="45.463" x2="991.723" y2="39.941" />
  849. <polyline fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  850. points="979.675,48.337 976.509,45.204 973.559,48.337 " />
  851. <line fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  852. x1="976.441" y1="45.121" x2="976.441" y2="39.601" />
  853. <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  854. cx="983.906" cy="57.58" r="8.803" />
  855. <polyline fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  856. points="986.868,61.948 983.702,58.815 980.754,61.948 " />
  857. <line fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  858. x1="983.639" y1="58.733" x2="983.639" y2="53.211" />
  859. </g>
  860. <rect x="937.799" y="38.61" fill="#981C55" width="3.047" height="88.56" />
  861. <rect x="937.799" y="149.05" fill="#981C55" width="3.047" height="71.867" />
  862. <rect x="937.799" y="241.05" fill="#981C55" width="3.047" height="45.117" />
  863. <polygon fill="#981C55" points="933.211,39.337 939.327,26.317 945.434,39.342 " />
  864. <rect x="1007.004" y="71.262" fill="#981C55" width="2.604" height="19.884" />
  865. <rect x="1171.359" y="147.268" opacity="0.9" fill="#162320" enable-background="new "
  866. width="115.108" height="18.491" />
  867. <rect x="1171.359" y="167.765" opacity="0.9" fill="#162320" enable-background="new "
  868. width="115.108" height="18.49" />
  869. <rect x="1171.359" y="188.261" opacity="0.9" fill="#162320" enable-background="new "
  870. width="115.108" height="18.49" />
  871. <rect x="1171.359" y="208.757" opacity="0.9" fill="#162320" enable-background="new "
  872. width="115.108" height="18.49" />
  873. <g>
  874. <text transform="matrix(1 0 0 1 1188.303 161.219)" fill="#97A1A2"
  875. font-family="'MicrosoftYaHei'" font-size="11.3899">
  876. Ua
  877. </text>
  878. <text transform="matrix(1 0 0 1 1203.1018 161.219)" fill="#97A1A2"
  879. font-family="'MicrosoftYaHei'" font-size="9.6234">
  880. (kV)
  881. </text>
  882. <text transform="matrix(1 0 0 1 1221.2776 161.219)" fill="#97A1A2"
  883. font-family="'MicrosoftYaHei'" font-size="11.3899">
  884. :
  885. </text>
  886. </g>
  887. <g>
  888. <text transform="matrix(1 0 0 1 1187.3225 179.5774)" fill="#97A1A2"
  889. font-family="'MicrosoftYaHei'" font-size="11.3899">
  890. Ub
  891. </text>
  892. <text transform="matrix(1 0 0 1 1203.1018 179.5774)" fill="#97A1A2"
  893. font-family="'MicrosoftYaHei'" font-size="9.6234">
  894. (kV)
  895. </text>
  896. <text transform="matrix(1 0 0 1 1221.2756 179.5774)" fill="#97A1A2"
  897. font-family="'MicrosoftYaHei'" font-size="11.3899">
  898. :
  899. </text>
  900. </g>
  901. <g>
  902. <text transform="matrix(1 0 0 1 1188.887 201.8625)" fill="#97A1A2"
  903. font-family="'MicrosoftYaHei'" font-size="11.3899">
  904. Uc
  905. </text>
  906. <text transform="matrix(1 0 0 1 1203.1018 201.8625)" fill="#97A1A2"
  907. font-family="'MicrosoftYaHei'" font-size="9.6234">
  908. (kV)
  909. </text>
  910. <text transform="matrix(1 0 0 1 1221.2776 201.8625)" fill="#97A1A2"
  911. font-family="'MicrosoftYaHei'" font-size="11.3899">
  912. :
  913. </text>
  914. </g>
  915. <g>
  916. <text transform="matrix(1 0 0 1 1181.0276 222.6975)" fill="#97A1A2"
  917. font-family="'MicrosoftYaHei'" font-size="11.3899">
  918. Uab
  919. </text>
  920. <text transform="matrix(1 0 0 1 1203.1018 222.6975)" fill="#97A1A2"
  921. font-family="'MicrosoftYaHei'" font-size="9.6234">
  922. (kV)
  923. </text>
  924. <text transform="matrix(1 0 0 1 1221.2776 222.6975)" fill="#97A1A2"
  925. font-family="'MicrosoftYaHei'" font-size="11.3899">
  926. :
  927. </text>
  928. </g>
  929. <rect x="1171.359" y="229.257" opacity="0.9" fill="#162320" enable-background="new "
  930. width="115.108" height="18.49" />
  931. <g>
  932. <text transform="matrix(1 0 0 1 1181.6116 243.1975)" fill="#97A1A2"
  933. font-family="'MicrosoftYaHei'" font-size="11.3899">
  934. Ubc
  935. </text>
  936. <text transform="matrix(1 0 0 1 1203.1018 243.1975)" fill="#97A1A2"
  937. font-family="'MicrosoftYaHei'" font-size="9.6234">
  938. (kV)
  939. </text>
  940. <text transform="matrix(1 0 0 1 1221.2776 243.1975)" fill="#97A1A2"
  941. font-family="'MicrosoftYaHei'" font-size="11.3899">
  942. :
  943. </text>
  944. </g>
  945. <rect x="1171.359" y="249.757" opacity="0.9" fill="#162320" enable-background="new "
  946. width="115.108" height="18.49" />
  947. <g>
  948. <text transform="matrix(1 0 0 1 1187.9182 263.6975)" fill="#97A1A2"
  949. font-family="'MicrosoftYaHei'" font-size="11.3899">
  950. U0
  951. </text>
  952. <text transform="matrix(1 0 0 1 1203.1018 263.6975)" fill="#97A1A2"
  953. font-family="'MicrosoftYaHei'" font-size="9.6234">
  954. (kV)
  955. </text>
  956. <text transform="matrix(1 0 0 1 1221.2756 263.6975)" fill="#97A1A2"
  957. font-family="'MicrosoftYaHei'" font-size="11.3899">
  958. :
  959. </text>
  960. </g>
  961. <rect x="1366.969" y="60.704" opacity="0.9" fill="#162320" enable-background="new "
  962. width="125.332" height="18.487" />
  963. <rect x="1366.969" y="81.2" opacity="0.9" fill="#162320" enable-background="new "
  964. width="125.332" height="18.487" />
  965. <g>
  966. <text transform="matrix(1 0 0 1 1394.3538 74.6536)" fill="#97A1A2"
  967. font-family="'MicrosoftYaHei'" font-size="11.3899">
  968. la
  969. </text>
  970. <text transform="matrix(1 0 0 1 1403.6799 74.6536)" fill="#97A1A2"
  971. font-family="'MicrosoftYaHei'" font-size="9.6234">
  972. (A)
  973. </text>
  974. <text transform="matrix(1 0 0 1 1416.8792 74.6536)" fill="#97A1A2"
  975. font-family="'MicrosoftYaHei'" font-size="11.3899">
  976. :
  977. </text>
  978. </g>
  979. <g>
  980. <text transform="matrix(1 0 0 1 1388.4495 93.0139)" fill="#97A1A2"
  981. font-family="'MicrosoftYaHei'" font-size="11.3899">
  982. P
  983. </text>
  984. <text transform="matrix(1 0 0 1 1395.4182 93.0139)" fill="#97A1A2"
  985. font-family="'MicrosoftYaHei'" font-size="9.6234">
  986. (kW)
  987. </text>
  988. <text transform="matrix(1 0 0 1 1416.8792 93.0139)" fill="#97A1A2"
  989. font-family="'MicrosoftYaHei'" font-size="11.3899">
  990. :
  991. </text>
  992. </g>
  993. <rect x="1366.969" y="101.63" opacity="0.9" fill="#162320" enable-background="new "
  994. width="125.332" height="18.49" />
  995. <g>
  996. <text transform="matrix(1 0 0 1 1380.428 113.4426)" fill="#97A1A2"
  997. font-family="'MicrosoftYaHei'" font-size="11.3899">
  998. Q
  999. </text>
  1000. <text transform="matrix(1 0 0 1 1389.7092 113.4426)" fill="#97A1A2"
  1001. font-family="'MicrosoftYaHei'" font-size="9.6234">
  1002. (kVar)
  1003. </text>
  1004. <text transform="matrix(1 0 0 1 1416.8792 113.4426)" fill="#97A1A2"
  1005. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1006. :
  1007. </text>
  1008. </g>
  1009. <rect x="1366.969" y="121.963" opacity="0.9" fill="#162320" enable-background="new "
  1010. width="125.332" height="18.49" />
  1011. <g>
  1012. <text transform="matrix(1 0 0 1 1392.2249 133.7747)" fill="#97A1A2"
  1013. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1014. F
  1015. </text>
  1016. <text transform="matrix(1 0 0 1 1398.2756 133.7747)" fill="#96A0A1"
  1017. font-family="'MicrosoftYaHei'" font-size="9.6234">
  1018. (Hz)
  1019. </text>
  1020. <text transform="matrix(1 0 0 1 1416.8792 133.7747)" fill="#97A1A2"
  1021. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1022. :
  1023. </text>
  1024. </g>
  1025. <rect x="1366.969" y="142.073" opacity="0.9" fill="#162320" enable-background="new "
  1026. width="125.332" height="18.49" />
  1027. <g>
  1028. <text transform="matrix(1 0 0 1 1393.4045 154.7454)" fill="#97A1A2"
  1029. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1030. COS:
  1031. </text>
  1032. </g>
  1033. <rect x="1654.031" y="115.347" fill="#981C55" width="21.727" height="3.047" />
  1034. <text transform="matrix(1 0 0 1 1723.0159 121.9622)" fill="#FFFFFF"
  1035. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1036. -0
  1037. </text>
  1038. <text transform="matrix(1 0 0 1 1671.0159 146.4622)" fill="#FFFFFF"
  1039. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1040. -3
  1041. </text>
  1042. <text transform="matrix(1 0 0 1 1671.0159 188.26)" fill="#FFFFFF"
  1043. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1044. 151
  1045. </text>
  1046. <g>
  1047. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1048. x1="1705.434" y1="121.406" x2="1705.434" y2="109.108" />
  1049. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1050. x1="1696.971" y1="115.257" x2="1705.434" y2="115.257" />
  1051. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1052. x1="1708.82" y1="118.868" x2="1708.82" y2="111.647" />
  1053. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1054. x1="1712.202" y1="117.458" x2="1712.202" y2="113.058" />
  1055. </g>
  1056. <rect x="1654.031" y="207.847" fill="#981C55" width="21.727" height="3.047" />
  1057. <text transform="matrix(1 0 0 1 1721.7131 209.9583)" fill="#FFFFFF"
  1058. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1059. -05
  1060. </text>
  1061. <g>
  1062. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1063. x1="1705.434" y1="213.906" x2="1705.434" y2="201.608" />
  1064. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1065. x1="1696.971" y1="207.757" x2="1705.434" y2="207.757" />
  1066. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1067. x1="1708.82" y1="211.368" x2="1708.82" y2="204.147" />
  1068. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1069. x1="1712.202" y1="209.958" x2="1712.202" y2="205.558" />
  1070. </g>
  1071. <rect x="1631.29" y="158.571" fill="#981C55" width="21.724" height="3.05" />
  1072. <text transform="matrix(1 0 0 1 1571.7659 165.3176)" fill="#FFFFFF"
  1073. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1074. 03
  1075. </text>
  1076. <text transform="matrix(1 0 0 1 1620.5647 232.9036)" fill="#FFFFFF"
  1077. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1078. -5
  1079. </text>
  1080. <g>
  1081. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1082. x1="1601.611" y1="155.558" x2="1601.611" y2="167.856" />
  1083. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1084. x1="1610.073" y1="161.708" x2="1601.611" y2="161.708" />
  1085. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1086. x1="1598.225" y1="158.097" x2="1598.225" y2="165.317" />
  1087. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1088. x1="1594.84" y1="159.507" x2="1594.84" y2="163.906" />
  1089. </g>
  1090. <rect x="1631.29" y="258.276" fill="#981C55" width="21.724" height="3.047" />
  1091. <text transform="matrix(1 0 0 1 1561.5159 265.0227)" fill="#FFFFFF"
  1092. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1093. 012
  1094. </text>
  1095. <g>
  1096. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1097. x1="1601.611" y1="255.263" x2="1601.611" y2="267.562" />
  1098. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1099. x1="1610.073" y1="261.413" x2="1601.611" y2="261.413" />
  1100. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1101. x1="1598.225" y1="257.802" x2="1598.225" y2="265.022" />
  1102. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1103. x1="1594.84" y1="259.212" x2="1594.84" y2="263.612" />
  1104. </g>
  1105. <g>
  1106. <g>
  1107. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1108. x1="1739.566" y1="87.353" x2="1739.566" y2="75.054" />
  1109. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1110. x1="1742.95" y1="84.813" x2="1742.95" y2="77.593" />
  1111. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1112. x1="1746.338" y1="83.403" x2="1746.338" y2="79.005" />
  1113. </g>
  1114. </g>
  1115. <rect x="1681.826" y="71.271" fill="#981C55" width="2.604" height="19.884" />
  1116. <rect x="1683.132" y="79.533" fill="#981C55" width="31.195" height="3.047" />
  1117. <rect x="1697.74" y="66.383" fill="#981C55" width="2.631" height="13.593" />
  1118. <rect x="1654.143" y="79.008" fill="#981C55" width="20.537" height="3.047" />
  1119. <rect x="1731.29" y="79.681" fill="#42B0A8" width="8.271" height="3.047" />
  1120. <rect x="1723.016" y="79.681" fill="#981C55" width="8.274" height="3.047" />
  1121. <rect x="1673.826" y="71.271" fill="#981C55" width="2.604" height="19.884" />
  1122. <rect x="1713.713" y="71.271" fill="#981C55" width="2.604" height="19.884" />
  1123. <g>
  1124. <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1125. cx="1706.695" cy="43.969" r="8.804" />
  1126. <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1127. cx="1691.419" cy="43.969" r="8.804" />
  1128. <polyline fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1129. points="1709.66,48.677 1706.494,45.546 1703.546,48.677 " />
  1130. <line fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1131. x1="1706.432" y1="45.463" x2="1706.432" y2="39.941" />
  1132. <polyline fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1133. points="1694.384,48.337 1691.218,45.204 1688.268,48.337 " />
  1134. <line fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1135. x1="1691.15" y1="45.121" x2="1691.15" y2="39.601" />
  1136. <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1137. cx="1698.615" cy="57.58" r="8.803" />
  1138. <polyline fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1139. points="1701.577,61.948 1698.411,58.815 1695.463,61.948 " />
  1140. <line fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1141. x1="1698.348" y1="58.733" x2="1698.348" y2="53.211" />
  1142. </g>
  1143. <rect x="1652.508" y="38.61" fill="#981C55" width="3.047" height="88.56" />
  1144. <rect x="1652.508" y="149.05" fill="#981C55" width="3.047" height="71.867" />
  1145. <rect x="1652.508" y="241.05" fill="#981C55" width="3.047" height="45.117" />
  1146. <polygon fill="#981C55" points="1647.92,39.337 1654.036,26.317 1660.143,39.342 " />
  1147. <rect x="1721.713" y="71.262" fill="#981C55" width="2.604" height="19.884" />
  1148. <rect x="1749.49" y="146.261" opacity="0.9" fill="#162320" enable-background="new "
  1149. width="115.109" height="18.491" />
  1150. <rect x="1749.49" y="166.758" opacity="0.9" fill="#162320" enable-background="new "
  1151. width="115.109" height="18.49" />
  1152. <rect x="1749.49" y="187.254" opacity="0.9" fill="#162320" enable-background="new "
  1153. width="115.109" height="18.49" />
  1154. <rect x="1749.49" y="207.75" opacity="0.9" fill="#162320" enable-background="new "
  1155. width="115.109" height="18.487" />
  1156. <g>
  1157. <text transform="matrix(1 0 0 1 1766.4358 160.2102)" fill="#97A1A2"
  1158. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1159. Ua
  1160. </text>
  1161. <text transform="matrix(1 0 0 1 1781.2346 160.2102)" fill="#97A1A2"
  1162. font-family="'MicrosoftYaHei'" font-size="9.6234">
  1163. (kV)
  1164. </text>
  1165. <text transform="matrix(1 0 0 1 1799.4104 160.2102)" fill="#97A1A2"
  1166. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1167. :
  1168. </text>
  1169. </g>
  1170. <g>
  1171. <text transform="matrix(1 0 0 1 1765.4553 178.5715)" fill="#97A1A2"
  1172. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1173. Ub
  1174. </text>
  1175. <text transform="matrix(1 0 0 1 1781.2346 178.5715)" fill="#97A1A2"
  1176. font-family="'MicrosoftYaHei'" font-size="9.6234">
  1177. (kV)
  1178. </text>
  1179. <text transform="matrix(1 0 0 1 1799.4084 178.5715)" fill="#97A1A2"
  1180. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1181. :
  1182. </text>
  1183. </g>
  1184. <g>
  1185. <text transform="matrix(1 0 0 1 1767.0198 200.8567)" fill="#97A1A2"
  1186. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1187. Uc
  1188. </text>
  1189. <text transform="matrix(1 0 0 1 1781.2346 200.8567)" fill="#97A1A2"
  1190. font-family="'MicrosoftYaHei'" font-size="9.6234">
  1191. (kV)
  1192. </text>
  1193. <text transform="matrix(1 0 0 1 1799.4104 200.8567)" fill="#97A1A2"
  1194. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1195. :
  1196. </text>
  1197. </g>
  1198. <g>
  1199. <text transform="matrix(1 0 0 1 1759.1604 221.6907)" fill="#97A1A2"
  1200. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1201. Uab
  1202. </text>
  1203. <text transform="matrix(1 0 0 1 1781.2346 221.6907)" fill="#97A1A2"
  1204. font-family="'MicrosoftYaHei'" font-size="9.6234">
  1205. (kV)
  1206. </text>
  1207. <text transform="matrix(1 0 0 1 1799.4104 221.6907)" fill="#97A1A2"
  1208. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1209. :
  1210. </text>
  1211. </g>
  1212. <rect x="1749.49" y="228.25" opacity="0.9" fill="#162320" enable-background="new "
  1213. width="115.109" height="18.487" />
  1214. <g>
  1215. <text transform="matrix(1 0 0 1 1759.7444 242.1907)" fill="#97A1A2"
  1216. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1217. Ubc
  1218. </text>
  1219. <text transform="matrix(1 0 0 1 1781.2346 242.1907)" fill="#97A1A2"
  1220. font-family="'MicrosoftYaHei'" font-size="9.6234">
  1221. (kV)
  1222. </text>
  1223. <text transform="matrix(1 0 0 1 1799.4104 242.1907)" fill="#97A1A2"
  1224. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1225. :
  1226. </text>
  1227. </g>
  1228. <rect x="1749.49" y="248.75" opacity="0.9" fill="#162320" enable-background="new "
  1229. width="115.109" height="18.487" />
  1230. <g>
  1231. <text transform="matrix(1 0 0 1 1766.051 262.6907)" fill="#97A1A2"
  1232. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1233. U0
  1234. </text>
  1235. <text transform="matrix(1 0 0 1 1781.2346 262.6907)" fill="#97A1A2"
  1236. font-family="'MicrosoftYaHei'" font-size="9.6234">
  1237. (kV)
  1238. </text>
  1239. <text transform="matrix(1 0 0 1 1799.4104 262.6907)" fill="#97A1A2"
  1240. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1241. :
  1242. </text>
  1243. </g>
  1244. <rect x="36.576" y="285.917" fill="#981C55" width="491.608" height="2.25" />
  1245. <rect x="36.576" y="576.417" fill="#CAA51A" width="482.276" height="2.25" />
  1246. <text transform="matrix(0.9268 0 0 1 36.5764 282.9475)" fill="#FFFFFF"
  1247. font-family="'MicrosoftYaHei'" font-size="13.2867">
  1248. 110kV Ⅰ母线
  1249. </text>
  1250. <rect x="558.627" y="285.917" fill="#981C55" width="757.229" height="2.25" />
  1251. <text transform="matrix(0.9268 0 0 1 565.7083 282.9475)" fill="#FFFFFF"
  1252. font-family="'MicrosoftYaHei'" font-size="13.2867">
  1253. 110kV Ⅱ母线
  1254. </text>
  1255. <rect x="1352.676" y="285.917" fill="#981C55" width="511.926" height="2.25" />
  1256. <text transform="matrix(0.9268 0 0 1 1359.7571 282.9475)" fill="#FFFFFF"
  1257. font-family="'MicrosoftYaHei'" font-size="13.2867">
  1258. 110kV Ⅴ母线
  1259. </text>
  1260. <text transform="matrix(0.9268 0 0 1 36.5764 572.2805)" fill="#FFFFFF"
  1261. font-family="'MicrosoftYaHei'" font-size="13.2867">
  1262. 35kV Ⅰ母线
  1263. </text>
  1264. <g>
  1265. <rect x="192.145" y="427.35" fill="#44426C" width="72.314" height="20.818" />
  1266. <text transform="matrix(1 0 0 1 208.0403 441.9016)" fill="#FFFFFF"
  1267. font-family="'MicrosoftYaHei'" font-size="12.5667">
  1268. #1主变
  1269. </text>
  1270. </g>
  1271. <rect x="274.564" y="332.698" fill="#971C55" width="3.047" height="57.188" />
  1272. <rect x="274.564" y="409.961" fill="#971C55" width="3.047" height="33.401" />
  1273. <text transform="matrix(1 0 0 1 296.8079 329.2512)" fill="#FFFFFF"
  1274. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1275. -1
  1276. </text>
  1277. <text transform="matrix(1 0 0 1 296.8079 361.8811)" fill="#FFFFFF"
  1278. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1279. 101
  1280. </text>
  1281. <text transform="matrix(1 0 0 1 294.2195 400.4856)" fill="#FFFFFF"
  1282. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1283. -3
  1284. </text>
  1285. <text transform="matrix(1 0 0 1 181.0828 346.7336)" fill="#FFFFFF"
  1286. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1287. -02
  1288. </text>
  1289. <g>
  1290. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1291. x1="223.071" y1="338.241" x2="223.071" y2="350.543" />
  1292. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1293. x1="231.532" y1="344.395" x2="223.071" y2="344.395" />
  1294. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1295. x1="219.683" y1="340.781" x2="219.683" y2="348.004" />
  1296. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1297. x1="216.3" y1="342.193" x2="216.3" y2="346.594" />
  1298. </g>
  1299. <rect x="275.579" y="286.74" fill="#971C55" width="3.047" height="23.438" />
  1300. <rect x="253.653" y="341.727" fill="#971C55" width="21.158" height="3.048" />
  1301. <text transform="matrix(1 0 0 1 184.4949 384.1897)" fill="#FFFFFF"
  1302. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1303. -03
  1304. </text>
  1305. <g>
  1306. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1307. x1="224.071" y1="375.698" x2="224.071" y2="387.996" />
  1308. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1309. x1="232.532" y1="381.853" x2="224.071" y2="381.853" />
  1310. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1311. x1="220.683" y1="378.239" x2="220.683" y2="385.46" />
  1312. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1313. x1="217.3" y1="379.649" x2="217.3" y2="384.05" />
  1314. </g>
  1315. <rect x="254.653" y="379.183" fill="#971C55" width="21.158" height="3.048" />
  1316. <text transform="matrix(1 0 0 1 344.7542 430.093)" fill="#FFFFFF"
  1317. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1318. -0
  1319. </text>
  1320. <rect x="275.631" y="424.929" fill="#971C55" width="21.158" height="3.047" />
  1321. <g>
  1322. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1323. x1="328.273" y1="433.94" x2="328.273" y2="421.642" />
  1324. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1325. x1="319.811" y1="427.792" x2="328.273" y2="427.792" />
  1326. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1327. x1="331.66" y1="431.401" x2="331.66" y2="424.181" />
  1328. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1329. x1="335.045" y1="429.99" x2="335.045" y2="425.593" />
  1330. </g>
  1331. <rect x="281.143" y="430.639"
  1332. transform="matrix(0.3449 0.9387 -0.9387 0.3449 616.9413 37.096)" fill="#A9165D"
  1333. width="1.506" height="59.747" />
  1334. <rect x="300.237" y="454.044"
  1335. transform="matrix(-0.4801 0.8772 -0.8772 -0.4801 863.0229 439.7038)" fill="#CAA51A"
  1336. width="1.943" height="43.116" />
  1337. <polygon fill="#A9165D" points="307.298,444.773 321.768,445.219 312.179,456.063 " />
  1338. <rect x="318.058" y="485.243" fill="#CAA51A" width="2.605" height="18.127" />
  1339. <rect x="318.058" y="525.24" fill="#3EB9B0" width="2.605" height="4.479" />
  1340. <g>
  1341. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1342. x1="313.101" y1="530.704" x2="325.618" y2="530.704" />
  1343. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1344. x1="315.272" y1="534.027" x2="323.448" y2="534.027" />
  1345. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1346. x1="317.058" y1="537.531" x2="321.661" y2="537.531" />
  1347. </g>
  1348. <polygon fill="#CAA51A" points="322.605,503.266 319.356,512.493 316.114,503.264 " />
  1349. <rect x="314.245" y="493.538" fill="none" stroke="#CAA51A" stroke-width="2"
  1350. stroke-miterlimit="10" width="10.229" height="32.142" />
  1351. <g>
  1352. <circle fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1353. cx="277.573" cy="472.033" r="11.214" />
  1354. <circle fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1355. cx="277.576" cy="453.575" r="11.213" />
  1356. <polyline fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1357. points="273.562,477.168 277.594,473.18 281.353,477.168 " />
  1358. <line fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1359. x1="277.678" y1="473.072" x2="277.678" y2="466.038" />
  1360. <polyline fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1361. points="273.562,459.141 277.594,455.152 281.353,459.141 " />
  1362. <line fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1363. x1="277.678" y1="455.047" x2="277.678" y2="448.014" />
  1364. <circle fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1365. cx="293.034" cy="462.74" r="11.212" />
  1366. <polygon fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1367. points="290.796,466.895 290.796,458.592 297.644,462.969 " />
  1368. </g>
  1369. <polyline fill="#CAA51A"
  1370. points="274.106,560.935 274.106,551.642 276.356,551.642 276.356,560.935 " />
  1371. <polyline fill="#CAA51A"
  1372. points="426.605,576.417 426.605,558.614 428.855,558.614 428.855,576.417 " />
  1373. <polyline fill="#CAA51A"
  1374. points="275.424,558.614 428.855,558.614 428.855,560.864 275.424,560.864 " />
  1375. <rect x="274.106" y="483.352" fill="#CAA51A" width="2.25" height="12.094" />
  1376. <rect x="195.345" y="452.59" fill="#971C55" width="69.889" height="3.049" />
  1377. <rect x="195.345" y="452.59" fill="#971C55" width="3.047" height="17.438" />
  1378. <text transform="matrix(1 0 0 1 240.4666 529.7161)" fill="#FFFFFF"
  1379. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1380. 301
  1381. </text>
  1382. <text transform="matrix(1 0 0 1 154.5002 488.6711)" fill="#FFFFFF"
  1383. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1384. 011-0
  1385. </text>
  1386. <g>
  1387. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1388. x1="191.863" y1="501.764" x2="204.162" y2="501.764" />
  1389. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1390. x1="198.013" y1="493.299" x2="198.013" y2="501.764" />
  1391. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1392. x1="194.401" y1="505.146" x2="201.623" y2="505.146" />
  1393. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1394. x1="195.812" y1="508.531" x2="200.213" y2="508.531" />
  1395. </g>
  1396. <rect x="222.385" y="452.383" fill="#971C55" width="2.604" height="21.637" />
  1397. <rect x="222.385" y="492.885" fill="#40B0A7" width="2.604" height="4.479" />
  1398. <g>
  1399. <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10"
  1400. x1="217.428" y1="498.354" x2="229.946" y2="498.354" />
  1401. <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10"
  1402. x1="219.601" y1="501.672" x2="227.776" y2="501.672" />
  1403. <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10"
  1404. x1="221.385" y1="505.176" x2="225.989" y2="505.176" />
  1405. </g>
  1406. <rect x="245.424" y="493.323" fill="#40B0A7" width="2.604" height="4.479" />
  1407. <g>
  1408. <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10"
  1409. x1="240.468" y1="498.793" x2="252.985" y2="498.793" />
  1410. <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10"
  1411. x1="242.64" y1="502.111" x2="250.813" y2="502.111" />
  1412. <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10"
  1413. x1="244.425" y1="505.615" x2="249.028" y2="505.615" />
  1414. </g>
  1415. <polygon fill="#971C55" points="226.933,473.906 223.685,483.143 220.44,473.906 " />
  1416. <polygon fill="#971C55" points="239.104,493.281 246.733,480.139 254.349,493.284 " />
  1417. <rect x="245.424" y="455.836" fill="#971C55" width="2.604" height="4.479" />
  1418. <polygon fill="#971C55" points="254.349,460.355 246.719,473.495 239.104,460.352 " />
  1419. <rect x="218.573" y="464.188" fill="none" stroke="#A01A59" stroke-width="2.3"
  1420. stroke-miterlimit="10" width="10.229" height="29.142" />
  1421. <g>
  1422. <rect x="609.338" y="427.35" fill="#44426C" width="72.313" height="20.818" />
  1423. <text transform="matrix(1 0 0 1 625.2332 441.9016)" fill="#FFFFFF"
  1424. font-family="'MicrosoftYaHei'" font-size="12.5667">
  1425. #2主变
  1426. </text>
  1427. </g>
  1428. <rect x="688.504" y="332.698" fill="#971C55" width="3.047" height="57.188" />
  1429. <rect x="688.504" y="409.961" fill="#971C55" width="3.047" height="33.401" />
  1430. <text transform="matrix(1 0 0 1 710.7483 329.2512)" fill="#FFFFFF"
  1431. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1432. -2
  1433. </text>
  1434. <text transform="matrix(1 0 0 1 710.7483 361.8811)" fill="#FFFFFF"
  1435. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1436. 102
  1437. </text>
  1438. <text transform="matrix(1 0 0 1 708.1594 400.4856)" fill="#FFFFFF"
  1439. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1440. -3
  1441. </text>
  1442. <text transform="matrix(1 0 0 1 595.0227 346.7336)" fill="#FFFFFF"
  1443. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1444. -02
  1445. </text>
  1446. <g>
  1447. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1448. x1="637.011" y1="338.241" x2="637.011" y2="350.543" />
  1449. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1450. x1="645.472" y1="344.395" x2="637.011" y2="344.395" />
  1451. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1452. x1="633.62" y1="340.781" x2="633.62" y2="348.004" />
  1453. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1454. x1="630.24" y1="342.193" x2="630.24" y2="346.594" />
  1455. </g>
  1456. <rect x="689.52" y="286.74" fill="#971C55" width="3.047" height="23.438" />
  1457. <rect x="667.593" y="341.727" fill="#971C55" width="21.158" height="3.048" />
  1458. <text transform="matrix(1 0 0 1 598.4348 384.1897)" fill="#FFFFFF"
  1459. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1460. -03
  1461. </text>
  1462. <g>
  1463. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1464. x1="638.011" y1="375.698" x2="638.011" y2="387.996" />
  1465. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1466. x1="646.472" y1="381.853" x2="638.011" y2="381.853" />
  1467. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1468. x1="634.62" y1="378.239" x2="634.62" y2="385.46" />
  1469. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1470. x1="631.24" y1="379.649" x2="631.24" y2="384.05" />
  1471. </g>
  1472. <rect x="668.593" y="379.183" fill="#971C55" width="21.158" height="3.048" />
  1473. <text transform="matrix(1 0 0 1 749.9846 430.093)" fill="#FFFFFF"
  1474. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1475. -0
  1476. </text>
  1477. <rect x="689.571" y="424.929" fill="#971C55" width="21.157" height="3.047" />
  1478. <g>
  1479. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1480. x1="742.213" y1="433.94" x2="742.213" y2="421.642" />
  1481. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1482. x1="733.749" y1="427.792" x2="742.213" y2="427.792" />
  1483. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1484. x1="745.6" y1="431.401" x2="745.6" y2="424.181" />
  1485. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1486. x1="748.985" y1="429.99" x2="748.985" y2="425.593" />
  1487. </g>
  1488. <rect x="695.086" y="430.616"
  1489. transform="matrix(0.3449 0.9387 -0.9387 0.3449 888.1106 -351.4675)" fill="#A9165D"
  1490. width="1.506" height="59.751" />
  1491. <rect x="714.174" y="454.033"
  1492. transform="matrix(-0.4803 0.8771 -0.8771 -0.4803 1475.7703 76.7565)" fill="#CAA51A"
  1493. width="1.942" height="43.115" />
  1494. <polygon fill="#A9165D" points="721.238,444.773 735.708,445.219 726.116,456.063 " />
  1495. <rect x="731.995" y="485.243" fill="#CAA51A" width="2.605" height="18.127" />
  1496. <rect x="731.995" y="525.24" fill="#3EB9B0" width="2.605" height="4.479" />
  1497. <g>
  1498. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1499. x1="727.038" y1="530.704" x2="739.558" y2="530.704" />
  1500. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1501. x1="729.212" y1="534.027" x2="737.388" y2="534.027" />
  1502. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1503. x1="730.995" y1="537.531" x2="735.602" y2="537.531" />
  1504. </g>
  1505. <polygon fill="#CAA51A" points="736.545,503.266 733.296,512.493 730.054,503.264 " />
  1506. <rect x="728.186" y="493.538" fill="none" stroke="#CAA51A" stroke-width="2"
  1507. stroke-miterlimit="10" width="10.229" height="32.142" />
  1508. <g>
  1509. <circle fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1510. cx="691.513" cy="472.033" r="11.214" />
  1511. <circle fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1512. cx="691.516" cy="453.575" r="11.213" />
  1513. <polyline fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1514. points="687.501,477.168 691.531,473.18 695.292,477.168 " />
  1515. <line fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1516. x1="691.615" y1="473.072" x2="691.615" y2="466.038" />
  1517. <polyline fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1518. points="687.501,459.141 691.531,455.152 695.292,459.141 " />
  1519. <line fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1520. x1="691.615" y1="455.047" x2="691.615" y2="448.014" />
  1521. <circle fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1522. cx="706.974" cy="462.74" r="11.212" />
  1523. <polygon fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1524. points="704.736,466.895 704.736,458.592 711.583,462.969 " />
  1525. </g>
  1526. <polyline fill="#CAA51A"
  1527. points="688.046,560.935 688.046,551.642 690.296,551.642 690.296,560.935 " />
  1528. <polyline fill="#CAA51A"
  1529. points="1220.314,576.417 1220.314,564.755 1222.564,564.755 1222.564,576.417 " />
  1530. <polyline fill="#CAA51A"
  1531. points="931.071,576.417 931.071,558.614 933.321,558.614 933.321,576.417 " />
  1532. <polyline fill="#CAA51A"
  1533. points="1836.105,579.333 1836.105,559.335 1838.355,559.335 1838.355,579.333 " />
  1534. <polyline fill="#CAA51A"
  1535. points="689.364,558.614 932.329,558.614 932.329,560.864 689.364,560.864 " />
  1536. <polyline fill="#CAA51A"
  1537. points="1653.154,560.935 1653.154,551.642 1655.404,551.642 1655.404,560.935 " />
  1538. <polyline fill="#CAA51A"
  1539. points="1654.471,559.335 1837.23,559.335 1837.23,561.269 1654.471,561.269 " />
  1540. <rect x="688.046" y="483.352" fill="#CAA51A" width="2.25" height="12.094" />
  1541. <rect x="609.282" y="452.59" fill="#971C55" width="69.892" height="3.049" />
  1542. <rect x="609.282" y="452.59" fill="#971C55" width="3.047" height="17.438" />
  1543. <text transform="matrix(1 0 0 1 654.4075 529.7161)" fill="#FFFFFF"
  1544. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1545. 302
  1546. </text>
  1547. <text transform="matrix(1 0 0 1 568.4412 488.6711)" fill="#FFFFFF"
  1548. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1549. 012-0
  1550. </text>
  1551. <g>
  1552. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1553. x1="605.803" y1="501.764" x2="618.102" y2="501.764" />
  1554. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1555. x1="611.95" y1="493.299" x2="611.95" y2="501.764" />
  1556. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1557. x1="608.341" y1="505.146" x2="615.563" y2="505.146" />
  1558. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1559. x1="609.751" y1="508.531" x2="614.153" y2="508.531" />
  1560. </g>
  1561. <rect x="636.323" y="452.383" fill="#971C55" width="2.604" height="21.637" />
  1562. <rect x="636.323" y="492.885" fill="#40B0A7" width="2.604" height="4.479" />
  1563. <g>
  1564. <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10"
  1565. x1="631.365" y1="498.354" x2="643.886" y2="498.354" />
  1566. <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10"
  1567. x1="633.538" y1="501.672" x2="641.716" y2="501.672" />
  1568. <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10"
  1569. x1="635.323" y1="505.176" x2="639.929" y2="505.176" />
  1570. </g>
  1571. <rect x="659.364" y="493.323" fill="#40B0A7" width="2.604" height="4.479" />
  1572. <g>
  1573. <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10"
  1574. x1="654.406" y1="498.793" x2="666.925" y2="498.793" />
  1575. <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10"
  1576. x1="656.577" y1="502.111" x2="664.753" y2="502.111" />
  1577. <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10"
  1578. x1="658.365" y1="505.615" x2="662.968" y2="505.615" />
  1579. </g>
  1580. <polygon fill="#971C55" points="640.87,473.906 637.624,483.143 634.38,473.906 " />
  1581. <polygon fill="#971C55" points="653.044,493.281 660.673,480.139 668.286,493.284 " />
  1582. <rect x="659.364" y="455.836" fill="#971C55" width="2.604" height="4.479" />
  1583. <polygon fill="#971C55" points="668.286,460.355 660.656,473.495 653.044,460.352 " />
  1584. <rect x="632.513" y="464.188" fill="none" stroke="#A01A59" stroke-width="2.3"
  1585. stroke-miterlimit="10" width="10.229" height="29.142" />
  1586. <g>
  1587. <rect x="1142.732" y="427.35" fill="#44426C" width="72.313" height="20.818" />
  1588. <text transform="matrix(1 0 0 1 1158.6272 441.9016)" fill="#FFFFFF"
  1589. font-family="'MicrosoftYaHei'" font-size="12.5667">
  1590. #3主变
  1591. </text>
  1592. </g>
  1593. <rect x="1221.898" y="332.698" fill="#971C55" width="3.047" height="57.188" />
  1594. <rect x="1221.898" y="409.961" fill="#971C55" width="3.047" height="33.401" />
  1595. <text transform="matrix(1 0 0 1 1244.1428 329.2512)" fill="#FFFFFF"
  1596. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1597. -2
  1598. </text>
  1599. <text transform="matrix(1 0 0 1 1244.1428 361.8811)" fill="#FFFFFF"
  1600. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1601. 103
  1602. </text>
  1603. <text transform="matrix(1 0 0 1 1241.553 400.4856)" fill="#FFFFFF"
  1604. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1605. -3
  1606. </text>
  1607. <text transform="matrix(1 0 0 1 1128.4163 346.7336)" fill="#FFFFFF"
  1608. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1609. -02
  1610. </text>
  1611. <g>
  1612. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1613. x1="1170.404" y1="338.241" x2="1170.404" y2="350.543" />
  1614. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1615. x1="1178.865" y1="344.395" x2="1170.404" y2="344.395" />
  1616. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1617. x1="1167.016" y1="340.781" x2="1167.016" y2="348.004" />
  1618. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1619. x1="1163.633" y1="342.193" x2="1163.633" y2="346.594" />
  1620. </g>
  1621. <rect x="1222.909" y="286.74" fill="#971C55" width="3.049" height="23.438" />
  1622. <rect x="1200.986" y="341.727" fill="#971C55" width="21.158" height="3.048" />
  1623. <text transform="matrix(1 0 0 1 1131.8284 384.1897)" fill="#FFFFFF"
  1624. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1625. -03
  1626. </text>
  1627. <g>
  1628. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1629. x1="1171.404" y1="375.698" x2="1171.404" y2="387.996" />
  1630. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1631. x1="1179.865" y1="381.853" x2="1171.404" y2="381.853" />
  1632. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1633. x1="1168.016" y1="378.239" x2="1168.016" y2="385.46" />
  1634. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1635. x1="1164.633" y1="379.649" x2="1164.633" y2="384.05" />
  1636. </g>
  1637. <rect x="1201.986" y="379.183" fill="#971C55" width="21.158" height="3.048" />
  1638. <text transform="matrix(1 0 0 1 1283.3792 430.093)" fill="#FFFFFF"
  1639. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1640. -0
  1641. </text>
  1642. <rect x="1222.965" y="424.929" fill="#971C55" width="21.155" height="3.047" />
  1643. <g>
  1644. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1645. x1="1275.607" y1="433.94" x2="1275.607" y2="421.642" />
  1646. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1647. x1="1267.145" y1="427.792" x2="1275.607" y2="427.792" />
  1648. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1649. x1="1278.991" y1="431.401" x2="1278.991" y2="424.181" />
  1650. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1651. x1="1282.379" y1="429.99" x2="1282.379" y2="425.593" />
  1652. </g>
  1653. <rect x="1228.473" y="430.571"
  1654. transform="matrix(0.3451 0.9386 -0.9386 0.3451 1237.2145 -852.163)" fill="#A9165D"
  1655. width="1.506" height="59.749" />
  1656. <rect x="1247.529" y="454.051"
  1657. transform="matrix(-0.479 0.8778 -0.8778 -0.479 2263.9832 -392.5764)" fill="#CAA51A"
  1658. width="1.939" height="43.112" />
  1659. <polygon fill="#A9165D" points="1254.631,444.773 1269.102,445.219 1259.512,456.063 " />
  1660. <rect x="1265.391" y="485.243" fill="#CAA51A" width="2.604" height="18.127" />
  1661. <rect x="1265.391" y="525.24" fill="#3EB9B0" width="2.604" height="4.479" />
  1662. <g>
  1663. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1664. x1="1260.434" y1="530.704" x2="1272.948" y2="530.704" />
  1665. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1666. x1="1262.605" y1="534.027" x2="1270.781" y2="534.027" />
  1667. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1668. x1="1264.391" y1="537.531" x2="1268.991" y2="537.531" />
  1669. </g>
  1670. <polygon fill="#CAA51A" points="1269.939,503.266 1266.689,512.493 1263.447,503.264 " />
  1671. <rect x="1261.575" y="493.538" fill="none" stroke="#CAA51A" stroke-width="2"
  1672. stroke-miterlimit="10" width="10.229" height="32.142" />
  1673. <g>
  1674. <circle fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1675. cx="1224.906" cy="472.033" r="11.214" />
  1676. <circle fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1677. cx="1224.907" cy="453.575" r="11.213" />
  1678. <polyline fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1679. points="1220.895,477.168 1224.928,473.18 1228.686,477.168 " />
  1680. <line fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1681. x1="1225.012" y1="473.072" x2="1225.012" y2="466.038" />
  1682. <polyline fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1683. points="1220.895,459.141 1224.928,455.152 1228.686,459.141 " />
  1684. <line fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1685. x1="1225.012" y1="455.047" x2="1225.012" y2="448.014" />
  1686. <circle fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1687. cx="1240.365" cy="462.74" r="11.212" />
  1688. <polygon fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1689. points="1238.129,466.895 1238.129,458.592 1244.977,462.969 " />
  1690. </g>
  1691. <rect x="1221.439" y="483.352" fill="#CAA51A" width="2.25" height="25.206" />
  1692. <rect x="1142.678" y="452.59" fill="#971C55" width="69.889" height="3.049" />
  1693. <rect x="1142.678" y="452.59" fill="#971C55" width="3.047" height="17.438" />
  1694. <text transform="matrix(1 0 0 1 1187.801 529.7161)" fill="#FFFFFF"
  1695. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1696. 303
  1697. </text>
  1698. <text transform="matrix(1 0 0 1 1101.8342 488.6711)" fill="#FFFFFF"
  1699. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1700. 013-0
  1701. </text>
  1702. <g>
  1703. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1704. x1="1139.197" y1="501.764" x2="1151.493" y2="501.764" />
  1705. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1706. x1="1145.346" y1="493.299" x2="1145.346" y2="501.764" />
  1707. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1708. x1="1141.734" y1="505.146" x2="1148.956" y2="505.146" />
  1709. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1710. x1="1143.145" y1="508.531" x2="1147.547" y2="508.531" />
  1711. </g>
  1712. <rect x="1169.719" y="452.383" fill="#971C55" width="2.604" height="21.637" />
  1713. <rect x="1169.719" y="492.885" fill="#40B0A7" width="2.604" height="4.479" />
  1714. <g>
  1715. <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10"
  1716. x1="1164.762" y1="498.354" x2="1177.279" y2="498.354" />
  1717. <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10"
  1718. x1="1166.934" y1="501.672" x2="1175.109" y2="501.672" />
  1719. <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10"
  1720. x1="1168.719" y1="505.176" x2="1173.322" y2="505.176" />
  1721. </g>
  1722. <rect x="1192.758" y="493.323" fill="#40B0A7" width="2.604" height="4.479" />
  1723. <g>
  1724. <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10"
  1725. x1="1187.801" y1="498.793" x2="1200.318" y2="498.793" />
  1726. <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10"
  1727. x1="1189.973" y1="502.111" x2="1198.146" y2="502.111" />
  1728. <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10"
  1729. x1="1191.758" y1="505.615" x2="1196.361" y2="505.615" />
  1730. </g>
  1731. <polygon fill="#971C55" points="1174.266,473.906 1171.018,483.143 1167.773,473.906 " />
  1732. <polygon fill="#971C55" points="1186.438,493.281 1194.066,480.139 1201.682,493.284 " />
  1733. <rect x="1192.758" y="455.836" fill="#971C55" width="2.604" height="4.479" />
  1734. <polygon fill="#971C55" points="1201.682,460.355 1194.053,473.495 1186.438,460.352 " />
  1735. <rect x="1165.906" y="464.188" fill="none" stroke="#A01A59" stroke-width="2.3"
  1736. stroke-miterlimit="10" width="10.229" height="29.142" />
  1737. <g>
  1738. <rect x="1573.848" y="427.35" fill="#44426C" width="72.313" height="20.818" />
  1739. <text transform="matrix(1 0 0 1 1589.7424 441.9016)" fill="#FFFFFF"
  1740. font-family="'MicrosoftYaHei'" font-size="12.5667">
  1741. #4主变
  1742. </text>
  1743. </g>
  1744. <rect x="1653.014" y="332.698" fill="#971C55" width="3.047" height="57.188" />
  1745. <rect x="1653.014" y="409.961" fill="#971C55" width="3.047" height="33.401" />
  1746. <text transform="matrix(1 0 0 1 1675.2581 329.2512)" fill="#FFFFFF"
  1747. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1748. -2
  1749. </text>
  1750. <text transform="matrix(1 0 0 1 1675.2581 361.8811)" fill="#FFFFFF"
  1751. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1752. 104
  1753. </text>
  1754. <text transform="matrix(1 0 0 1 1672.6682 400.4856)" fill="#FFFFFF"
  1755. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1756. -3
  1757. </text>
  1758. <text transform="matrix(1 0 0 1 1559.5315 346.7336)" fill="#FFFFFF"
  1759. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1760. -05
  1761. </text>
  1762. <g>
  1763. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1764. x1="1601.52" y1="338.241" x2="1601.52" y2="350.543" />
  1765. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1766. x1="1609.98" y1="344.395" x2="1601.52" y2="344.395" />
  1767. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1768. x1="1598.131" y1="340.781" x2="1598.131" y2="348.004" />
  1769. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1770. x1="1594.745" y1="342.193" x2="1594.745" y2="346.594" />
  1771. </g>
  1772. <rect x="1654.027" y="286.74" fill="#971C55" width="3.047" height="23.438" />
  1773. <rect x="1632.102" y="341.727" fill="#971C55" width="21.158" height="3.048" />
  1774. <text transform="matrix(1 0 0 1 1562.9436 384.1897)" fill="#FFFFFF"
  1775. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1776. -03
  1777. </text>
  1778. <g>
  1779. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1780. x1="1602.52" y1="375.698" x2="1602.52" y2="387.996" />
  1781. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1782. x1="1610.98" y1="381.853" x2="1602.52" y2="381.853" />
  1783. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1784. x1="1599.131" y1="378.239" x2="1599.131" y2="385.46" />
  1785. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1786. x1="1595.745" y1="379.649" x2="1595.745" y2="384.05" />
  1787. </g>
  1788. <rect x="1633.102" y="379.183" fill="#971C55" width="21.158" height="3.048" />
  1789. <text transform="matrix(1 0 0 1 1714.4944 430.093)" fill="#FFFFFF"
  1790. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1791. -0
  1792. </text>
  1793. <rect x="1654.077" y="424.929" fill="#971C55" width="21.158" height="3.047" />
  1794. <g>
  1795. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1796. x1="1706.723" y1="433.94" x2="1706.723" y2="421.642" />
  1797. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1798. x1="1698.26" y1="427.792" x2="1706.723" y2="427.792" />
  1799. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1800. x1="1710.109" y1="431.401" x2="1710.109" y2="424.181" />
  1801. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1802. x1="1713.491" y1="429.99" x2="1713.491" y2="425.593" />
  1803. </g>
  1804. <rect x="1659.663" y="430.579"
  1805. transform="matrix(0.3454 0.9384 -0.9384 0.3454 1518.9597 -1256.8092)" fill="#A9165D"
  1806. width="1.507" height="59.748" />
  1807. <rect x="1678.684" y="454.035"
  1808. transform="matrix(-0.4799 0.8773 -0.8773 -0.4799 2902.9824 -769.7589)"
  1809. fill="#CAA51A" width="1.941" height="43.113" />
  1810. <polygon fill="#A9165D" points="1685.743,444.773 1700.217,445.219 1690.626,456.063 " />
  1811. <rect x="1696.506" y="485.243" fill="#CAA51A" width="2.604" height="18.127" />
  1812. <rect x="1696.506" y="525.24" fill="#3EB9B0" width="2.604" height="4.479" />
  1813. <g>
  1814. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1815. x1="1691.549" y1="530.704" x2="1704.066" y2="530.704" />
  1816. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1817. x1="1693.721" y1="534.027" x2="1701.896" y2="534.027" />
  1818. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1819. x1="1695.506" y1="537.531" x2="1700.109" y2="537.531" />
  1820. </g>
  1821. <polygon fill="#CAA51A" points="1701.055,503.266 1697.805,512.493 1694.563,503.264 " />
  1822. <rect x="1692.693" y="493.538" fill="none" stroke="#CAA51A" stroke-width="2"
  1823. stroke-miterlimit="10" width="10.229" height="32.142" />
  1824. <g>
  1825. <circle fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1826. cx="1656.021" cy="472.033" r="11.214" />
  1827. <circle fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1828. cx="1656.025" cy="453.575" r="11.213" />
  1829. <polyline fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1830. points="1652.01,477.168 1656.042,473.18 1659.801,477.168 " />
  1831. <line fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1832. x1="1656.126" y1="473.072" x2="1656.126" y2="466.038" />
  1833. <polyline fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1834. points="1652.01,459.141 1656.042,455.152 1659.801,459.141 " />
  1835. <line fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1836. x1="1656.126" y1="455.047" x2="1656.126" y2="448.014" />
  1837. <circle fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1838. cx="1671.482" cy="462.74" r="11.212" />
  1839. <polygon fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1840. points="1669.241,466.895 1669.241,458.592 1676.092,462.969 " />
  1841. </g>
  1842. <rect x="1652.555" y="483.352" fill="#CAA51A" width="2.25" height="12.604" />
  1843. <rect x="1573.792" y="452.59" fill="#971C55" width="69.89" height="3.049" />
  1844. <rect x="1573.792" y="452.59" fill="#971C55" width="3.048" height="17.438" />
  1845. <text transform="matrix(1 0 0 1 1618.9163 529.7161)" fill="#FFFFFF"
  1846. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1847. 304
  1848. </text>
  1849. <text transform="matrix(1 0 0 1 1532.9495 488.6711)" fill="#FFFFFF"
  1850. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1851. 013-0
  1852. </text>
  1853. <g>
  1854. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1855. x1="1570.313" y1="501.764" x2="1582.611" y2="501.764" />
  1856. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1857. x1="1576.461" y1="493.299" x2="1576.461" y2="501.764" />
  1858. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1859. x1="1572.85" y1="505.146" x2="1580.072" y2="505.146" />
  1860. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1861. x1="1574.26" y1="508.531" x2="1578.659" y2="508.531" />
  1862. </g>
  1863. <rect x="1600.833" y="452.383" fill="#971C55" width="2.604" height="21.637" />
  1864. <rect x="1600.833" y="492.885" fill="#40B0A7" width="2.604" height="4.479" />
  1865. <g>
  1866. <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10"
  1867. x1="1595.876" y1="498.354" x2="1608.395" y2="498.354" />
  1868. <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10"
  1869. x1="1598.049" y1="501.672" x2="1606.225" y2="501.672" />
  1870. <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10"
  1871. x1="1599.833" y1="505.176" x2="1604.438" y2="505.176" />
  1872. </g>
  1873. <rect x="1623.87" y="493.323" fill="#40B0A7" width="2.605" height="4.479" />
  1874. <g>
  1875. <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10"
  1876. x1="1618.915" y1="498.793" x2="1631.434" y2="498.793" />
  1877. <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10"
  1878. x1="1621.088" y1="502.111" x2="1629.262" y2="502.111" />
  1879. <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10"
  1880. x1="1622.87" y1="505.615" x2="1627.477" y2="505.615" />
  1881. </g>
  1882. <polygon fill="#971C55" points="1605.381,473.906 1602.133,483.143 1598.889,473.906 " />
  1883. <polygon fill="#971C55" points="1617.553,493.281 1625.182,480.139 1632.797,493.284 " />
  1884. <rect x="1623.87" y="455.836" fill="#971C55" width="2.605" height="4.479" />
  1885. <polygon fill="#971C55" points="1632.797,460.355 1625.167,473.495 1617.553,460.352 " />
  1886. <rect x="1597.021" y="464.188" fill="none" stroke="#A01A59" stroke-width="2.3"
  1887. stroke-miterlimit="10" width="10.229" height="29.142" />
  1888. <rect x="444.788" y="287.194" fill="#971C55" width="3.05" height="21.63" />
  1889. <rect x="446.533" y="304.244" fill="#971C55" width="15.612" height="3.05" />
  1890. <text transform="matrix(1 0 0 1 484.1863 327.3977)" fill="#FFFFFF"
  1891. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1892. -0
  1893. </text>
  1894. <text transform="matrix(1 0 0 1 489.1453 368.385)" fill="#FFFFFF"
  1895. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1896. 09
  1897. </text>
  1898. <text transform="matrix(1 0 0 1 401.6863 332.2786)" fill="#FFFFFF"
  1899. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1900. 11-9
  1901. </text>
  1902. <g>
  1903. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1904. x1="491.824" y1="310.308" x2="491.824" y2="298.009" />
  1905. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1906. x1="483.364" y1="304.156" x2="491.824" y2="304.156" />
  1907. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1908. x1="495.213" y1="307.77" x2="495.213" y2="300.548" />
  1909. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1910. x1="498.598" y1="306.358" x2="498.598" y2="301.958" />
  1911. </g>
  1912. <rect x="421.26" y="343.472" fill="#971C55" width="40.885" height="3.047" />
  1913. <g>
  1914. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1915. x1="491.824" y1="349.532" x2="491.824" y2="337.236" />
  1916. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1917. x1="483.364" y1="343.384" x2="491.824" y2="343.384" />
  1918. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1919. x1="495.213" y1="346.994" x2="495.213" y2="339.775" />
  1920. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1921. x1="498.598" y1="345.587" x2="498.598" y2="341.186" />
  1922. </g>
  1923. <g>
  1924. <g>
  1925. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1926. x1="349.922" y1="339.366" x2="349.922" y2="351.669" />
  1927. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1928. x1="346.536" y1="341.906" x2="346.536" y2="349.13" />
  1929. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  1930. x1="343.15" y1="343.318" x2="343.15" y2="347.718" />
  1931. </g>
  1932. </g>
  1933. <rect x="443.711" y="334.896" fill="#971C55" width="2.604" height="31.938" />
  1934. <rect x="419.957" y="334.896" fill="#C3A121" width="2.604" height="19.884" />
  1935. <rect x="379.073" y="334.896" fill="#C3A121" width="2.604" height="19.884" />
  1936. <rect x="382.295" y="343.472" fill="#971C55" width="30.279" height="3.047" />
  1937. <rect x="364.163" y="344.663" fill="#971C55" width="1.981" height="30.279" />
  1938. <rect x="399.275" y="344.663" fill="#971C55" width="1.984" height="20.857" />
  1939. <rect x="364.163" y="372.966" fill="#971C55" width="36.731" height="1.979" />
  1940. <rect x="358.387" y="343.994" fill="#971C55" width="13.536" height="3.05" />
  1941. <rect x="349.923" y="343.994" fill="#42B0A8" width="8.463" height="3.05" />
  1942. <rect x="371.073" y="334.896" fill="#C3A121" width="2.604" height="19.884" />
  1943. <rect x="443.711" y="388.7" fill="#40B0A7" width="2.604" height="4.479" />
  1944. <g>
  1945. <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10"
  1946. x1="438.754" y1="394.169" x2="451.271" y2="394.169" />
  1947. <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10"
  1948. x1="440.926" y1="397.488" x2="449.102" y2="397.488" />
  1949. <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10"
  1950. x1="442.711" y1="400.991" x2="447.313" y2="400.991" />
  1951. </g>
  1952. <polygon fill="#971C55" points="448.258,366.727 445.01,375.954 441.767,366.724 " />
  1953. <rect x="439.896" y="357.003" fill="none" stroke="#A01A59" stroke-width="2.3"
  1954. stroke-miterlimit="10" width="10.229" height="32.14" />
  1955. <rect x="411.957" y="334.896" fill="#C3A121" width="2.604" height="19.884" />
  1956. <g>
  1957. <circle fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10"
  1958. cx="408.898" cy="387.719" r="8.805" />
  1959. <circle fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10"
  1960. cx="393.621" cy="387.719" r="8.805" />
  1961. <polyline fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10"
  1962. points="405.748,383.691 408.914,386.822 411.865,383.691 " />
  1963. <polyline fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10"
  1964. points="397.439,370.508 400.605,373.639 403.557,370.508 " />
  1965. <line fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10"
  1966. x1="408.98" y1="386.906" x2="408.98" y2="392.428" />
  1967. <circle fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10"
  1968. cx="408.898" cy="402.231" r="8.804" />
  1969. <circle fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10"
  1970. cx="393.621" cy="402.231" r="8.804" />
  1971. <polyline fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10"
  1972. points="405.748,398.202 408.914,401.336 411.865,398.202 " />
  1973. <line fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10"
  1974. x1="408.98" y1="401.418" x2="408.98" y2="406.939" />
  1975. <polyline fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10"
  1976. points="390.468,397.863 393.634,400.993 396.585,397.863 " />
  1977. <line fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10"
  1978. x1="393.702" y1="401.077" x2="393.702" y2="406.6" />
  1979. <circle fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10"
  1980. cx="400.817" cy="374.898" r="8.803" />
  1981. <line fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10"
  1982. x1="400.897" y1="373.741" x2="400.897" y2="379.268" />
  1983. <polygon fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10"
  1984. points="394.702,391.775 394.702,385.258 389.327,388.693 " />
  1985. </g>
  1986. <g>
  1987. <circle fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10"
  1988. cx="878.684" cy="387.719" r="8.805" />
  1989. <circle fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10"
  1990. cx="863.406" cy="387.719" r="8.805" />
  1991. <polyline fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10"
  1992. points="875.531,383.691 878.698,386.822 881.651,383.691 " />
  1993. <polyline fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10"
  1994. points="867.225,370.508 870.391,373.639 873.342,370.508 " />
  1995. <line fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10"
  1996. x1="878.766" y1="386.906" x2="878.766" y2="392.428" />
  1997. <circle fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10"
  1998. cx="878.684" cy="402.231" r="8.804" />
  1999. <circle fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10"
  2000. cx="863.406" cy="402.231" r="8.804" />
  2001. <polyline fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10"
  2002. points="875.531,398.202 878.698,401.336 881.651,398.202 " />
  2003. <line fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10"
  2004. x1="878.766" y1="401.418" x2="878.766" y2="406.939" />
  2005. <polyline fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10"
  2006. points="860.253,397.863 863.419,400.993 866.368,397.863 " />
  2007. <line fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10"
  2008. x1="863.488" y1="401.077" x2="863.488" y2="406.6" />
  2009. <circle fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10"
  2010. cx="870.603" cy="374.898" r="8.803" />
  2011. <line fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10"
  2012. x1="870.683" y1="373.741" x2="870.683" y2="379.268" />
  2013. <polygon fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10"
  2014. points="864.488,391.775 864.488,385.258 859.113,388.693 " />
  2015. </g>
  2016. <g>
  2017. <circle fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10"
  2018. cx="1421.086" cy="387.719" r="8.805" />
  2019. <circle fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10"
  2020. cx="1405.809" cy="387.719" r="8.805" />
  2021. <polyline fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10"
  2022. points="1417.936,383.691 1421.102,386.822 1424.053,383.691 " />
  2023. <polyline fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10"
  2024. points="1409.626,370.508 1412.792,373.639 1415.741,370.508 " />
  2025. <line fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10"
  2026. x1="1421.167" y1="386.906" x2="1421.167" y2="392.428" />
  2027. <circle fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10"
  2028. cx="1421.086" cy="402.231" r="8.804" />
  2029. <circle fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10"
  2030. cx="1405.809" cy="402.231" r="8.804" />
  2031. <polyline fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10"
  2032. points="1417.936,398.202 1421.102,401.336 1424.053,398.202 " />
  2033. <line fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10"
  2034. x1="1421.167" y1="401.418" x2="1421.167" y2="406.939" />
  2035. <polyline fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10"
  2036. points="1402.656,397.863 1405.822,400.993 1408.773,397.863 " />
  2037. <line fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10"
  2038. x1="1405.891" y1="401.077" x2="1405.891" y2="406.6" />
  2039. <circle fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10"
  2040. cx="1413.005" cy="374.898" r="8.803" />
  2041. <line fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10"
  2042. x1="1413.085" y1="373.741" x2="1413.085" y2="379.268" />
  2043. <polygon fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10"
  2044. points="1406.891,391.775 1406.891,385.258 1401.516,388.693 " />
  2045. </g>
  2046. <rect x="409.934" y="416.94" fill="#434169" width="75.808" height="20.816" />
  2047. <text transform="matrix(1 0 0 1 417.5999 431.1311)" fill="#FFFFFF"
  2048. font-family="'MicrosoftYaHei'" font-size="12.5667">
  2049. Ⅰ 母线 PT
  2050. </text>
  2051. <rect x="914.938" y="287.194" fill="#971C55" width="3.048" height="21.63" />
  2052. <rect x="916.683" y="304.244" fill="#971C55" width="15.612" height="3.05" />
  2053. <text transform="matrix(1 0 0 1 954.3342 327.3977)" fill="#FFFFFF"
  2054. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2055. -0
  2056. </text>
  2057. <text transform="matrix(1 0 0 1 959.2932 368.385)" fill="#FFFFFF"
  2058. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2059. -09
  2060. </text>
  2061. <text transform="matrix(1 0 0 1 871.8333 332.2786)" fill="#FFFFFF"
  2062. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2063. 12-9
  2064. </text>
  2065. <g>
  2066. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2067. x1="961.974" y1="310.308" x2="961.974" y2="298.009" />
  2068. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2069. x1="953.511" y1="304.156" x2="961.974" y2="304.156" />
  2070. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2071. x1="965.36" y1="307.77" x2="965.36" y2="300.548" />
  2072. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2073. x1="968.742" y1="306.358" x2="968.742" y2="301.958" />
  2074. </g>
  2075. <rect x="891.406" y="343.472" fill="#971C55" width="40.888" height="3.047" />
  2076. <g>
  2077. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2078. x1="961.974" y1="349.532" x2="961.974" y2="337.236" />
  2079. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2080. x1="953.511" y1="343.384" x2="961.974" y2="343.384" />
  2081. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2082. x1="965.36" y1="346.994" x2="965.36" y2="339.775" />
  2083. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2084. x1="968.742" y1="345.587" x2="968.742" y2="341.186" />
  2085. </g>
  2086. <g>
  2087. <g>
  2088. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2089. x1="820.069" y1="339.366" x2="820.069" y2="351.669" />
  2090. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2091. x1="816.683" y1="341.906" x2="816.683" y2="349.13" />
  2092. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2093. x1="813.298" y1="343.318" x2="813.298" y2="347.718" />
  2094. </g>
  2095. </g>
  2096. <rect x="913.857" y="334.896" fill="#971C55" width="2.604" height="31.938" />
  2097. <rect x="890.104" y="334.896" fill="#C3A121" width="2.604" height="19.884" />
  2098. <rect x="849.22" y="334.896" fill="#C3A121" width="2.604" height="19.884" />
  2099. <rect x="852.442" y="343.472" fill="#971C55" width="30.278" height="3.047" />
  2100. <rect x="834.311" y="344.663" fill="#971C55" width="1.984" height="30.279" />
  2101. <rect x="869.422" y="344.663" fill="#971C55" width="1.981" height="20.857" />
  2102. <rect x="834.311" y="372.966" fill="#971C55" width="36.734" height="1.979" />
  2103. <rect x="828.531" y="343.994" fill="#971C55" width="13.536" height="3.05" />
  2104. <rect x="820.07" y="343.994" fill="#42B0A8" width="8.463" height="3.05" />
  2105. <rect x="841.22" y="334.896" fill="#C3A121" width="2.604" height="19.884" />
  2106. <rect x="913.857" y="388.7" fill="#40B0A7" width="2.604" height="4.479" />
  2107. <g>
  2108. <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10"
  2109. x1="908.901" y1="394.169" x2="921.418" y2="394.169" />
  2110. <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10"
  2111. x1="911.073" y1="397.488" x2="919.245" y2="397.488" />
  2112. <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10"
  2113. x1="912.857" y1="400.991" x2="917.461" y2="400.991" />
  2114. </g>
  2115. <polygon fill="#971C55" points="918.405,366.727 915.156,375.954 911.911,366.724 " />
  2116. <rect x="910.045" y="357.003" fill="none" stroke="#A01A59" stroke-width="2.3"
  2117. stroke-miterlimit="10" width="10.229" height="32.14" />
  2118. <rect x="882.104" y="334.896" fill="#C3A121" width="2.604" height="19.884" />
  2119. <rect x="1456.553" y="287.194" fill="#971C55" width="3.047" height="21.63" />
  2120. <rect x="1458.297" y="304.244" fill="#971C55" width="15.608" height="3.05" />
  2121. <text transform="matrix(1 0 0 1 1495.9475 327.3977)" fill="#FFFFFF"
  2122. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2123. -0
  2124. </text>
  2125. <text transform="matrix(1 0 0 1 1500.9065 368.385)" fill="#FFFFFF"
  2126. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2127. -09
  2128. </text>
  2129. <text transform="matrix(1 0 0 1 1413.4475 332.2786)" fill="#FFFFFF"
  2130. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2131. 15-9
  2132. </text>
  2133. <g>
  2134. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2135. x1="1503.588" y1="310.308" x2="1503.588" y2="298.009" />
  2136. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2137. x1="1495.124" y1="304.156" x2="1503.588" y2="304.156" />
  2138. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2139. x1="1506.975" y1="307.77" x2="1506.975" y2="300.548" />
  2140. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2141. x1="1510.359" y1="306.358" x2="1510.359" y2="301.958" />
  2142. </g>
  2143. <rect x="1433.021" y="343.472" fill="#971C55" width="40.885" height="3.047" />
  2144. <g>
  2145. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2146. x1="1503.588" y1="349.532" x2="1503.588" y2="337.236" />
  2147. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2148. x1="1495.124" y1="343.384" x2="1503.588" y2="343.384" />
  2149. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2150. x1="1506.975" y1="346.994" x2="1506.975" y2="339.775" />
  2151. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2152. x1="1510.359" y1="345.587" x2="1510.359" y2="341.186" />
  2153. </g>
  2154. <g>
  2155. <g>
  2156. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2157. x1="1358.684" y1="339.366" x2="1358.684" y2="351.669" />
  2158. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2159. x1="1355.297" y1="341.906" x2="1355.297" y2="349.13" />
  2160. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2161. x1="1351.909" y1="343.318" x2="1351.909" y2="347.718" />
  2162. </g>
  2163. </g>
  2164. <rect x="1455.473" y="334.896" fill="#971C55" width="2.604" height="31.938" />
  2165. <rect x="1431.718" y="334.896" fill="#C3A121" width="2.604" height="19.884" />
  2166. <rect x="1390.833" y="334.896" fill="#C3A121" width="2.604" height="19.884" />
  2167. <rect x="1394.057" y="343.472" fill="#971C55" width="30.278" height="3.047" />
  2168. <rect x="1375.924" y="344.663" fill="#971C55" width="1.981" height="30.279" />
  2169. <rect x="1411.033" y="344.663" fill="#971C55" width="1.983" height="20.857" />
  2170. <rect x="1375.924" y="372.966" fill="#971C55" width="36.731" height="1.979" />
  2171. <rect x="1370.148" y="343.994" fill="#971C55" width="13.535" height="3.05" />
  2172. <rect x="1358.684" y="343.994" fill="#42B0A8" width="8.463" height="3.05" />
  2173. <rect x="1382.833" y="334.896" fill="#C3A121" width="2.604" height="19.884" />
  2174. <rect x="1455.473" y="388.7" fill="#40B0A7" width="2.604" height="4.479" />
  2175. <polygon fill="#971C55" points="1460.02,366.727 1456.771,375.954 1453.527,366.724 " />
  2176. <rect x="1451.656" y="357.003" fill="none" stroke="#A01A59" stroke-width="2.3"
  2177. stroke-miterlimit="10" width="10.229" height="32.14" />
  2178. <rect x="1423.718" y="334.896" fill="#C3A121" width="2.604" height="19.884" />
  2179. <rect x="880.078" y="416.94" fill="#434169" width="75.811" height="20.816" />
  2180. <text transform="matrix(1 0 0 1 887.7473 431.1311)" fill="#FFFFFF"
  2181. font-family="'MicrosoftYaHei'" font-size="12.5667">
  2182. Ⅱ 母线 PT
  2183. </text>
  2184. <rect x="1420.395" y="416.94" fill="#434169" width="75.808" height="20.816" />
  2185. <text transform="matrix(1 0 0 1 1428.0608 431.1311)" fill="#FFFFFF"
  2186. font-family="'MicrosoftYaHei'" font-size="12.5667">
  2187. Ⅴ 母线 PT
  2188. </text>
  2189. <rect x="389.108" y="450.067" opacity="0.9" fill="#162320" enable-background="new "
  2190. width="108.761" height="18.487" />
  2191. <rect x="389.108" y="470.563" opacity="0.9" fill="#162320" enable-background="new "
  2192. width="108.761" height="18.49" />
  2193. <g>
  2194. <text transform="matrix(1 0 0 1 401.929 461.8801)" fill="#96A0A1"
  2195. font-family="'MicrosoftYaHei'" font-size="11.3899">
  2196. P
  2197. </text>
  2198. <text transform="matrix(1 0 0 1 408.8977 461.8801)" fill="#96A0A1"
  2199. font-family="'MicrosoftYaHei'" font-size="9.6234">
  2200. (kW)
  2201. </text>
  2202. <text transform="matrix(1 0 0 1 430.3572 461.8801)" fill="#96A0A1"
  2203. font-family="'MicrosoftYaHei'" font-size="11.3899">
  2204. :
  2205. </text>
  2206. </g>
  2207. <g>
  2208. <text transform="matrix(1 0 0 1 393.905 484.1643)" fill="#96A0A1"
  2209. font-family="'MicrosoftYaHei'" font-size="11.3899">
  2210. Q
  2211. </text>
  2212. <text transform="matrix(1 0 0 1 403.1882 484.1643)" fill="#96A0A1"
  2213. font-family="'MicrosoftYaHei'" font-size="9.6234">
  2214. (kVar)
  2215. </text>
  2216. <text transform="matrix(1 0 0 1 430.3572 484.1643)" fill="#96A0A1"
  2217. font-family="'MicrosoftYaHei'" font-size="11.3899">
  2218. :
  2219. </text>
  2220. </g>
  2221. <rect x="389.108" y="490.298" opacity="0.9" fill="#162320" enable-background="new "
  2222. width="108.761" height="18.485" />
  2223. <g>
  2224. <text transform="matrix(1 0 0 1 407.8313 504.2483)" fill="#96A0A1"
  2225. font-family="'MicrosoftYaHei'" font-size="11.3899">
  2226. la
  2227. </text>
  2228. <text transform="matrix(1 0 0 1 417.158 504.2483)" fill="#96A0A1"
  2229. font-family="'MicrosoftYaHei'" font-size="9.6234">
  2230. (A)
  2231. </text>
  2232. <text transform="matrix(1 0 0 1 430.3572 504.2483)" fill="#96A0A1"
  2233. font-family="'MicrosoftYaHei'" font-size="11.3899">
  2234. :
  2235. </text>
  2236. </g>
  2237. <rect x="389.108" y="509.783" opacity="0.9" fill="#162320" enable-background="new "
  2238. width="108.761" height="18.488" />
  2239. <g>
  2240. <text transform="matrix(1 0 0 1 407.8313 523.7375)" fill="#96A0A1"
  2241. font-family="'MicrosoftYaHei'" font-size="11.3899">
  2242. 挡位
  2243. </text>
  2244. <text transform="matrix(1 0 0 1 430.3572 523.7375)" fill="#96A0A1"
  2245. font-family="'MicrosoftYaHei'" font-size="11.3899">
  2246. :
  2247. </text>
  2248. </g>
  2249. <rect x="876.939" y="450.067" opacity="0.9" fill="#162320" enable-background="new "
  2250. width="108.762" height="18.487" />
  2251. <rect x="876.939" y="470.563" opacity="0.9" fill="#162320" enable-background="new "
  2252. width="108.762" height="18.49" />
  2253. <g>
  2254. <text transform="matrix(1 0 0 1 889.761 462.8801)" fill="#96A0A1"
  2255. font-family="'MicrosoftYaHei'" font-size="11.3899">
  2256. P
  2257. </text>
  2258. <text transform="matrix(1 0 0 1 896.7292 462.8801)" fill="#96A0A1"
  2259. font-family="'MicrosoftYaHei'" font-size="9.6234">
  2260. (kW)
  2261. </text>
  2262. <text transform="matrix(1 0 0 1 918.1887 462.8801)" fill="#96A0A1"
  2263. font-family="'MicrosoftYaHei'" font-size="11.3899">
  2264. :
  2265. </text>
  2266. </g>
  2267. <g>
  2268. <text transform="matrix(1 0 0 1 881.7371 484.1643)" fill="#96A0A1"
  2269. font-family="'MicrosoftYaHei'" font-size="11.3899">
  2270. Q
  2271. </text>
  2272. <text transform="matrix(1 0 0 1 891.0208 484.1643)" fill="#96A0A1"
  2273. font-family="'MicrosoftYaHei'" font-size="9.6234">
  2274. (kVar)
  2275. </text>
  2276. <text transform="matrix(1 0 0 1 918.1887 484.1643)" fill="#96A0A1"
  2277. font-family="'MicrosoftYaHei'" font-size="11.3899">
  2278. :
  2279. </text>
  2280. </g>
  2281. <rect x="876.939" y="490.298" opacity="0.9" fill="#162320" enable-background="new "
  2282. width="108.762" height="18.485" />
  2283. <g>
  2284. <text transform="matrix(1 0 0 1 895.6633 504.2483)" fill="#96A0A1"
  2285. font-family="'MicrosoftYaHei'" font-size="11.3899">
  2286. la
  2287. </text>
  2288. <text transform="matrix(1 0 0 1 904.9895 504.2483)" fill="#96A0A1"
  2289. font-family="'MicrosoftYaHei'" font-size="9.6234">
  2290. (A)
  2291. </text>
  2292. <text transform="matrix(1 0 0 1 918.1887 504.2483)" fill="#96A0A1"
  2293. font-family="'MicrosoftYaHei'" font-size="11.3899">
  2294. :
  2295. </text>
  2296. </g>
  2297. <rect x="876.939" y="510.783" opacity="0.9" fill="#162320" enable-background="new "
  2298. width="108.762" height="18.488" />
  2299. <g>
  2300. <text transform="matrix(1 0 0 1 895.6633 524.7375)" fill="#96A0A1"
  2301. font-family="'MicrosoftYaHei'" font-size="11.3899">
  2302. 挡位
  2303. </text>
  2304. <text transform="matrix(1 0 0 1 918.1887 524.7375)" fill="#96A0A1"
  2305. font-family="'MicrosoftYaHei'" font-size="11.3899">
  2306. :
  2307. </text>
  2308. </g>
  2309. <rect x="1278.99" y="450.067" opacity="0.9" fill="#162320" enable-background="new "
  2310. width="108.763" height="18.487" />
  2311. <rect x="1278.99" y="470.563" opacity="0.9" fill="#162320" enable-background="new "
  2312. width="108.763" height="18.49" />
  2313. <g>
  2314. <text transform="matrix(1 0 0 1 1291.8147 462.8801)" fill="#96A0A1"
  2315. font-family="'MicrosoftYaHei'" font-size="11.3899">
  2316. P
  2317. </text>
  2318. <text transform="matrix(1 0 0 1 1298.7834 462.8801)" fill="#96A0A1"
  2319. font-family="'MicrosoftYaHei'" font-size="9.6234">
  2320. (kW)
  2321. </text>
  2322. <text transform="matrix(1 0 0 1 1320.2424 462.8801)" fill="#96A0A1"
  2323. font-family="'MicrosoftYaHei'" font-size="11.3899">
  2324. :
  2325. </text>
  2326. </g>
  2327. <g>
  2328. <text transform="matrix(1 0 0 1 1283.7913 484.1643)" fill="#96A0A1"
  2329. font-family="'MicrosoftYaHei'" font-size="11.3899">
  2330. Q
  2331. </text>
  2332. <text transform="matrix(1 0 0 1 1293.0745 484.1643)" fill="#96A0A1"
  2333. font-family="'MicrosoftYaHei'" font-size="9.6234">
  2334. (kVar)
  2335. </text>
  2336. <text transform="matrix(1 0 0 1 1320.2424 484.1643)" fill="#96A0A1"
  2337. font-family="'MicrosoftYaHei'" font-size="11.3899">
  2338. :
  2339. </text>
  2340. </g>
  2341. <rect x="1278.99" y="490.298" opacity="0.9" fill="#162320" enable-background="new "
  2342. width="108.763" height="18.485" />
  2343. <g>
  2344. <text transform="matrix(1 0 0 1 1297.717 504.2483)" fill="#96A0A1"
  2345. font-family="'MicrosoftYaHei'" font-size="11.3899">
  2346. la
  2347. </text>
  2348. <text transform="matrix(1 0 0 1 1307.0432 504.2483)" fill="#96A0A1"
  2349. font-family="'MicrosoftYaHei'" font-size="9.6234">
  2350. (A)
  2351. </text>
  2352. <text transform="matrix(1 0 0 1 1320.2424 504.2483)" fill="#96A0A1"
  2353. font-family="'MicrosoftYaHei'" font-size="11.3899">
  2354. :
  2355. </text>
  2356. </g>
  2357. <rect x="1278.99" y="510.783" opacity="0.9" fill="#162320" enable-background="new "
  2358. width="108.763" height="18.488" />
  2359. <g>
  2360. <text transform="matrix(1 0 0 1 1297.717 524.7375)" fill="#96A0A1"
  2361. font-family="'MicrosoftYaHei'" font-size="11.3899">
  2362. 挡位
  2363. </text>
  2364. <text transform="matrix(1 0 0 1 1320.2424 524.7375)" fill="#96A0A1"
  2365. font-family="'MicrosoftYaHei'" font-size="11.3899">
  2366. :
  2367. </text>
  2368. </g>
  2369. <rect x="1399.146" y="450.067" opacity="0.9" fill="#162320" enable-background="new "
  2370. width="108.762" height="18.487" />
  2371. <rect x="1399.146" y="470.563" opacity="0.9" fill="#162320" enable-background="new "
  2372. width="108.762" height="18.49" />
  2373. <g>
  2374. <text transform="matrix(1 0 0 1 1411.969 462.8801)" fill="#96A0A1"
  2375. font-family="'MicrosoftYaHei'" font-size="11.3899">
  2376. P
  2377. </text>
  2378. <text transform="matrix(1 0 0 1 1418.9377 462.8801)" fill="#96A0A1"
  2379. font-family="'MicrosoftYaHei'" font-size="9.6234">
  2380. (kW)
  2381. </text>
  2382. <text transform="matrix(1 0 0 1 1440.3967 462.8801)" fill="#96A0A1"
  2383. font-family="'MicrosoftYaHei'" font-size="11.3899">
  2384. :
  2385. </text>
  2386. </g>
  2387. <g>
  2388. <text transform="matrix(1 0 0 1 1403.9456 484.1643)" fill="#96A0A1"
  2389. font-family="'MicrosoftYaHei'" font-size="11.3899">
  2390. Q
  2391. </text>
  2392. <text transform="matrix(1 0 0 1 1413.2288 484.1643)" fill="#96A0A1"
  2393. font-family="'MicrosoftYaHei'" font-size="9.6234">
  2394. (kVar)
  2395. </text>
  2396. <text transform="matrix(1 0 0 1 1440.3967 484.1643)" fill="#96A0A1"
  2397. font-family="'MicrosoftYaHei'" font-size="11.3899">
  2398. :
  2399. </text>
  2400. </g>
  2401. <rect x="1399.146" y="490.298" opacity="0.9" fill="#162320" enable-background="new "
  2402. width="108.762" height="18.485" />
  2403. <g>
  2404. <text transform="matrix(1 0 0 1 1417.8713 504.2483)" fill="#96A0A1"
  2405. font-family="'MicrosoftYaHei'" font-size="11.3899">
  2406. la
  2407. </text>
  2408. <text transform="matrix(1 0 0 1 1427.1975 504.2483)" fill="#96A0A1"
  2409. font-family="'MicrosoftYaHei'" font-size="9.6234">
  2410. (A)
  2411. </text>
  2412. <text transform="matrix(1 0 0 1 1440.3967 504.2483)" fill="#96A0A1"
  2413. font-family="'MicrosoftYaHei'" font-size="11.3899">
  2414. :
  2415. </text>
  2416. </g>
  2417. <rect x="1399.146" y="510.783" opacity="0.9" fill="#162320" enable-background="new "
  2418. width="108.762" height="18.488" />
  2419. <g>
  2420. <text transform="matrix(1 0 0 1 1417.8713 524.7375)" fill="#96A0A1"
  2421. font-family="'MicrosoftYaHei'" font-size="11.3899">
  2422. 挡位
  2423. </text>
  2424. <text transform="matrix(1 0 0 1 1440.3967 524.7375)" fill="#96A0A1"
  2425. font-family="'MicrosoftYaHei'" font-size="11.3899">
  2426. :
  2427. </text>
  2428. </g>
  2429. <g>
  2430. <rect x="436.734" y="745.526" fill="#44426C" width="72.313" height="20.817" />
  2431. <text transform="matrix(1 0 0 1 446.3455 760.0793)" fill="#FFFFFF"
  2432. font-family="'MicrosoftYaHei'" font-size="12.5667">
  2433. 1#站用变
  2434. </text>
  2435. </g>
  2436. <g>
  2437. <rect x="238.33" y="0" fill="#44426C" width="72.313" height="20.815" />
  2438. <text transform="matrix(1 0 0 1 249.3538 14.554)" fill="#FFFFFF"
  2439. font-family="'MicrosoftYaHei'" font-size="12.5667">
  2440. 能风六线
  2441. </text>
  2442. </g>
  2443. <g>
  2444. <rect x="899.41" y="0" fill="#44426C" width="72.313" height="20.815" />
  2445. <text transform="matrix(1 0 0 1 904.1526 14.554)" fill="#FFFFFF"
  2446. font-family="'MicrosoftYaHei'" font-size="12.5667">
  2447. 首风五甲线
  2448. </text>
  2449. </g>
  2450. <g>
  2451. <rect x="1616.35" y="0" fill="#44426C" width="72.313" height="20.815" />
  2452. <text transform="matrix(1 0 0 1 1621.0901 14.554)" fill="#FFFFFF"
  2453. font-family="'MicrosoftYaHei'" font-size="12.5667">
  2454. 首风五乙线
  2455. </text>
  2456. </g>
  2457. <g>
  2458. <rect x="198.729" y="745.526" fill="#44426C" width="72.314" height="20.817" />
  2459. <text transform="matrix(1 0 0 1 206.7117 760.0793)" fill="#FFFFFF"
  2460. font-family="'MicrosoftYaHei'" font-size="12.5667">
  2461. 35KVⅠ母
  2462. </text>
  2463. </g>
  2464. <g>
  2465. <rect x="119.393" y="745.526" fill="#44426C" width="72.314" height="20.817" />
  2466. <text transform="matrix(1 0 0 1 130.4163 760.0793)" fill="#FFFFFF"
  2467. font-family="'MicrosoftYaHei'" font-size="12.5667">
  2468. 风场二线
  2469. </text>
  2470. </g>
  2471. <g>
  2472. <rect x="40.058" y="745.526" fill="#44426C" width="72.314" height="20.817" />
  2473. <text transform="matrix(1 0 0 1 51.0813 760.0793)" fill="#FFFFFF"
  2474. font-family="'MicrosoftYaHei'" font-size="12.5667">
  2475. 风场一线
  2476. </text>
  2477. </g>
  2478. <text transform="matrix(1 0 0 1 438.8044 626.6975)" fill="#FFFFFF"
  2479. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2480. 315
  2481. </text>
  2482. <text transform="matrix(1 0 0 1 194.9456 626.6975)" fill="#FFFFFF"
  2483. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2484. 31-9
  2485. </text>
  2486. <text transform="matrix(1 0 0 1 124.1165 626.6975)" fill="#FFFFFF"
  2487. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2488. 313
  2489. </text>
  2490. <text transform="matrix(1 0 0 1 132.303 728.6594)" fill="#FFFFFF"
  2491. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2492. -0
  2493. </text>
  2494. <rect x="136.813" y="655.419" fill="#C3A121" width="20.5" height="2.25" />
  2495. <rect x="155.606" y="649.751" fill="#CAA51A" width="2.25" height="75.479" />
  2496. <polyline fill="#CAA51A"
  2497. points="157.856,577.604 157.856,590.979 155.606,590.979 155.606,577.604 " />
  2498. <polygon fill="#CAA51A" points="161.336,725.076 156.727,734.886 152.127,725.073 " />
  2499. <text transform="matrix(1 0 0 1 43.4338 626.6975)" fill="#FFFFFF"
  2500. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2501. 312
  2502. </text>
  2503. <text transform="matrix(1 0 0 1 51.6204 728.6594)" fill="#FFFFFF"
  2504. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2505. -0
  2506. </text>
  2507. <rect x="56.131" y="655.419" fill="#C3A121" width="20.5" height="2.25" />
  2508. <rect x="74.925" y="649.751" fill="#CAA51A" width="2.25" height="75.479" />
  2509. <polyline fill="#CAA51A"
  2510. points="77.175,577.604 77.175,590.979 74.925,590.979 74.925,577.604 " />
  2511. <polygon fill="#CAA51A" points="80.654,725.076 76.045,734.886 71.445,725.073 " />
  2512. <text transform="matrix(1 0 0 1 446.4973 728.6594)" fill="#FFFFFF"
  2513. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2514. -0
  2515. </text>
  2516. <rect x="451.007" y="655.419" fill="#C3A121" width="20.5" height="2.25" />
  2517. <rect x="469.801" y="649.751" fill="#CAA51A" width="2.25" height="75.479" />
  2518. <polyline fill="#CAA51A"
  2519. points="472.051,577.604 472.051,590.979 469.801,590.979 469.801,577.604 " />
  2520. <polygon fill="#CAA51A" points="475.53,725.076 470.921,734.886 466.321,725.073 " />
  2521. <rect x="212.387" y="655.419" fill="#C3A121" width="2.25" height="22.133" />
  2522. <rect x="213.036" y="655.419" fill="#C3A121" width="20.5" height="2.25" />
  2523. <g>
  2524. <line fill="none" stroke="#C3A121" stroke-width="2.5" stroke-miterlimit="10"
  2525. x1="206.633" y1="679.185" x2="220.354" y2="679.185" />
  2526. <line fill="none" stroke="#C3A121" stroke-width="2.5" stroke-miterlimit="10"
  2527. x1="209.465" y1="682.962" x2="217.521" y2="682.962" />
  2528. <line fill="none" stroke="#C3A121" stroke-width="2.5" stroke-miterlimit="10"
  2529. x1="211.039" y1="686.737" x2="215.948" y2="686.737" />
  2530. </g>
  2531. <rect x="231.829" y="615.104" fill="#CAA51A" width="2.25" height="89.971" />
  2532. <polyline fill="#CAA51A"
  2533. points="234.079,577.604 234.079,597.979 231.829,597.979 231.829,577.604 " />
  2534. <g>
  2535. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2536. cx="232.902" cy="728.463" r="8.804" />
  2537. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2538. cx="232.903" cy="713.186" r="8.804" />
  2539. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2540. points="237.18,732.183 234.048,729.015 237.18,726.063 " />
  2541. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2542. x1="233.965" y1="728.948" x2="228.444" y2="728.948" />
  2543. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2544. points="237.18,716.242 234.048,713.074 237.18,710.126 " />
  2545. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2546. x1="233.965" y1="713.013" x2="228.444" y2="713.013" />
  2547. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2548. cx="220.083" cy="720.382" r="8.803" />
  2549. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2550. points="223.36,723.44 220.228,720.274 223.36,717.323 " />
  2551. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2552. x1="220.145" y1="720.208" x2="214.624" y2="720.208" />
  2553. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2554. cx="245.825" cy="720.382" r="8.803" />
  2555. <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2556. points="244.068,723.642 244.068,717.119 249.444,720.56 " />
  2557. </g>
  2558. <rect x="450.757" y="655.419" fill="#C3A121" width="2.25" height="17.838" />
  2559. <g>
  2560. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2561. x1="446.001" y1="706.073" x2="458.3" y2="706.073" />
  2562. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2563. x1="452.153" y1="697.612" x2="452.153" y2="706.073" />
  2564. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2565. x1="448.537" y1="709.46" x2="455.762" y2="709.46" />
  2566. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2567. x1="449.948" y1="712.845" x2="454.352" y2="712.845" />
  2568. </g>
  2569. <rect x="136.563" y="655.419" fill="#C3A121" width="2.25" height="17.838" />
  2570. <g>
  2571. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2572. x1="131.807" y1="706.073" x2="144.105" y2="706.073" />
  2573. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2574. x1="137.959" y1="697.612" x2="137.959" y2="706.073" />
  2575. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2576. x1="134.346" y1="709.46" x2="141.567" y2="709.46" />
  2577. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2578. x1="135.756" y1="712.845" x2="140.157" y2="712.845" />
  2579. </g>
  2580. <g>
  2581. <rect x="278.063" y="745.526" fill="#44426C" width="72.314" height="20.817" />
  2582. <text transform="matrix(1 0 0 1 289.0872 760.0793)" fill="#FFFFFF"
  2583. font-family="'MicrosoftYaHei'" font-size="12.5667">
  2584. 风场三线
  2585. </text>
  2586. </g>
  2587. <text transform="matrix(1 0 0 1 281.1667 626.6975)" fill="#FFFFFF"
  2588. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2589. 314
  2590. </text>
  2591. <text transform="matrix(1 0 0 1 289.3538 728.6594)" fill="#FFFFFF"
  2592. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2593. -0
  2594. </text>
  2595. <rect x="293.864" y="655.419" fill="#C3A121" width="20.5" height="2.25" />
  2596. <rect x="312.658" y="649.751" fill="#CAA51A" width="2.25" height="75.479" />
  2597. <polyline fill="#CAA51A"
  2598. points="314.908,577.604 314.908,590.979 312.658,590.979 312.658,577.604 " />
  2599. <polygon fill="#CAA51A" points="318.387,725.076 313.778,734.886 309.178,725.073 " />
  2600. <rect x="293.614" y="655.419" fill="#C3A121" width="2.25" height="17.838" />
  2601. <g>
  2602. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2603. x1="288.858" y1="706.073" x2="301.157" y2="706.073" />
  2604. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2605. x1="295.01" y1="697.612" x2="295.01" y2="706.073" />
  2606. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2607. x1="291.397" y1="709.46" x2="298.619" y2="709.46" />
  2608. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2609. x1="292.807" y1="712.845" x2="297.208" y2="712.845" />
  2610. </g>
  2611. <g>
  2612. <rect x="357.399" y="745.526" fill="#44426C" width="72.314" height="20.817" />
  2613. <text transform="matrix(1 0 0 1 367.011 760.0793)" fill="#FFFFFF"
  2614. font-family="'MicrosoftYaHei'" font-size="12.5667">
  2615. #1补偿器
  2616. </text>
  2617. </g>
  2618. <text transform="matrix(1 0 0 1 358.2112 626.6975)" fill="#FFFFFF"
  2619. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2620. 316
  2621. </text>
  2622. <text transform="matrix(1 0 0 1 366.3977 728.6594)" fill="#FFFFFF"
  2623. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2624. -0
  2625. </text>
  2626. <rect x="370.908" y="655.419" fill="#C3A121" width="20.5" height="2.25" />
  2627. <rect x="389.701" y="649.751" fill="#CAA51A" width="2.25" height="75.479" />
  2628. <polyline fill="#CAA51A"
  2629. points="391.951,577.604 391.951,590.979 389.701,590.979 389.701,577.604 " />
  2630. <polygon fill="#CAA51A" points="395.431,725.076 390.821,734.886 386.222,725.073 " />
  2631. <rect x="370.657" y="655.419" fill="#C3A121" width="2.25" height="17.838" />
  2632. <g>
  2633. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2634. x1="365.901" y1="706.073" x2="378.2" y2="706.073" />
  2635. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2636. x1="372.054" y1="697.612" x2="372.054" y2="706.073" />
  2637. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2638. x1="368.44" y1="709.46" x2="375.662" y2="709.46" />
  2639. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2640. x1="369.851" y1="712.845" x2="374.252" y2="712.845" />
  2641. </g>
  2642. <rect x="53.938" y="655.419" fill="#C3A121" width="2.25" height="17.838" />
  2643. <g>
  2644. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2645. x1="49.182" y1="706.073" x2="61.481" y2="706.073" />
  2646. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2647. x1="55.334" y1="697.612" x2="55.334" y2="706.073" />
  2648. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2649. x1="51.721" y1="709.46" x2="58.943" y2="709.46" />
  2650. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2651. x1="53.131" y1="712.845" x2="57.533" y2="712.845" />
  2652. </g>
  2653. <rect x="1359.52" y="577.083" fill="#CAA51A" width="482.279" height="2.25" />
  2654. <text transform="matrix(0.9268 0 0 1 1359.5198 572.9465)" fill="#FFFFFF"
  2655. font-family="'MicrosoftYaHei'" font-size="13.2867">
  2656. 35kV Ⅴ母线
  2657. </text>
  2658. <g>
  2659. <rect x="1770.518" y="746.192" fill="#44426C" width="72.313" height="20.817" />
  2660. <text transform="matrix(1 0 0 1 1776.6409 760.7454)" fill="#FFFFFF"
  2661. font-family="'MicrosoftYaHei'" font-size="12.5667">
  2662. 35KV Ⅴ母
  2663. </text>
  2664. </g>
  2665. <g>
  2666. <rect x="1452.336" y="746.192" fill="#44426C" width="72.313" height="20.817" />
  2667. <text transform="matrix(1 0 0 1 1463.3596 760.7454)" fill="#FFFFFF"
  2668. font-family="'MicrosoftYaHei'" font-size="12.5667">
  2669. 风场九线
  2670. </text>
  2671. </g>
  2672. <g>
  2673. <rect x="1349.141" y="746.192" fill="#44426C" width="94.035" height="20.817" />
  2674. <text transform="matrix(1 0 0 1 1358.4573 760.7454)" fill="#FFFFFF"
  2675. font-family="'MicrosoftYaHei'" font-size="12.5667">
  2676. 光储进线开关
  2677. </text>
  2678. </g>
  2679. <text transform="matrix(1 0 0 1 1766.7366 627.3645)" fill="#FFFFFF"
  2680. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2681. 35-9
  2682. </text>
  2683. <text transform="matrix(1 0 0 1 1454.0608 627.3645)" fill="#FFFFFF"
  2684. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2685. 351
  2686. </text>
  2687. <text transform="matrix(1 0 0 1 1365.0608 627.3645)" fill="#FFFFFF"
  2688. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2689. 350
  2690. </text>
  2691. <text transform="matrix(1 0 0 1 1462.2463 729.3254)" fill="#FFFFFF"
  2692. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2693. -0
  2694. </text>
  2695. <rect x="1466.756" y="656.085" fill="#C3A121" width="20.5" height="2.25" />
  2696. <rect x="1485.55" y="650.417" fill="#CAA51A" width="2.25" height="75.479" />
  2697. <polyline fill="#CAA51A"
  2698. points="1487.8,578.271 1487.8,591.646 1485.55,591.646 1485.55,578.271 " />
  2699. <polygon fill="#CAA51A" points="1491.279,725.742 1486.67,735.552 1482.07,725.74 " />
  2700. <rect x="1397.865" y="650.417" fill="#CAA51A" width="2.25" height="75.479" />
  2701. <polyline fill="#CAA51A"
  2702. points="1400.115,578.271 1400.115,591.646 1397.865,591.646 1397.865,578.271 " />
  2703. <polygon fill="#CAA51A" points="1403.598,725.742 1398.988,735.552 1394.389,725.74 " />
  2704. <rect x="1784.176" y="656.085" fill="#C3A121" width="2.25" height="22.133" />
  2705. <rect x="1784.823" y="656.085" fill="#C3A121" width="20.5" height="2.25" />
  2706. <g>
  2707. <line fill="none" stroke="#C3A121" stroke-width="2.5" stroke-miterlimit="10"
  2708. x1="1778.422" y1="679.851" x2="1792.143" y2="679.851" />
  2709. <line fill="none" stroke="#C3A121" stroke-width="2.5" stroke-miterlimit="10"
  2710. x1="1781.254" y1="683.628" x2="1789.311" y2="683.628" />
  2711. <line fill="none" stroke="#C3A121" stroke-width="2.5" stroke-miterlimit="10"
  2712. x1="1782.825" y1="687.403" x2="1787.737" y2="687.403" />
  2713. </g>
  2714. <rect x="1803.615" y="609.737" fill="#CAA51A" width="2.25" height="96.002" />
  2715. <polyline fill="#CAA51A"
  2716. points="1805.865,578.271 1805.865,598.646 1803.615,598.646 1803.615,578.271 " />
  2717. <g>
  2718. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2719. cx="1804.691" cy="729.129" r="8.804" />
  2720. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2721. cx="1804.691" cy="713.852" r="8.804" />
  2722. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2723. points="1808.969,732.849 1805.838,729.681 1808.969,726.729 " />
  2724. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2725. x1="1805.754" y1="729.615" x2="1800.232" y2="729.615" />
  2726. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2727. points="1808.969,716.908 1805.838,713.74 1808.969,710.792 " />
  2728. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2729. x1="1805.754" y1="713.679" x2="1800.232" y2="713.679" />
  2730. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2731. cx="1791.869" cy="721.048" r="8.803" />
  2732. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2733. points="1795.148,724.106 1792.018,720.94 1795.148,717.989 " />
  2734. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2735. x1="1791.934" y1="720.874" x2="1786.409" y2="720.874" />
  2736. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2737. cx="1817.614" cy="721.048" r="8.803" />
  2738. <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2739. points="1815.857,724.308 1815.857,717.785 1821.232,721.226 " />
  2740. </g>
  2741. <rect x="1466.506" y="656.085" fill="#C3A121" width="2.25" height="17.838" />
  2742. <g>
  2743. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2744. x1="1461.749" y1="706.739" x2="1474.049" y2="706.739" />
  2745. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2746. x1="1467.902" y1="698.278" x2="1467.902" y2="706.739" />
  2747. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2748. x1="1464.286" y1="710.126" x2="1471.511" y2="710.126" />
  2749. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2750. x1="1465.698" y1="713.511" x2="1470.102" y2="713.511" />
  2751. </g>
  2752. <g>
  2753. <rect x="1531.042" y="746.192" fill="#44426C" width="72.313" height="20.817" />
  2754. <text transform="matrix(1 0 0 1 1542.0686 760.7454)" fill="#FFFFFF"
  2755. font-family="'MicrosoftYaHei'" font-size="12.5667">
  2756. 风场十线
  2757. </text>
  2758. </g>
  2759. <text transform="matrix(1 0 0 1 1533.1487 627.3645)" fill="#FFFFFF"
  2760. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2761. 352
  2762. </text>
  2763. <text transform="matrix(1 0 0 1 1541.3342 729.3254)" fill="#FFFFFF"
  2764. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2765. -0
  2766. </text>
  2767. <rect x="1545.844" y="656.085" fill="#C3A121" width="20.5" height="2.25" />
  2768. <rect x="1564.639" y="650.417" fill="#CAA51A" width="2.25" height="75.479" />
  2769. <polyline fill="#CAA51A"
  2770. points="1566.889,578.271 1566.889,591.646 1564.639,591.646 1564.639,578.271 " />
  2771. <polygon fill="#CAA51A" points="1570.365,725.742 1565.758,735.552 1561.156,725.74 " />
  2772. <rect x="1545.594" y="656.085" fill="#C3A121" width="2.25" height="17.838" />
  2773. <g>
  2774. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2775. x1="1540.838" y1="706.739" x2="1553.137" y2="706.739" />
  2776. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2777. x1="1546.99" y1="698.278" x2="1546.99" y2="706.739" />
  2778. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2779. x1="1543.376" y1="710.126" x2="1550.6" y2="710.126" />
  2780. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2781. x1="1544.784" y1="713.511" x2="1549.189" y2="713.511" />
  2782. </g>
  2783. <g>
  2784. <rect x="1610.24" y="746.192" fill="#44426C" width="72.313" height="20.817" />
  2785. <text transform="matrix(1 0 0 1 1614.9827 760.7454)" fill="#FFFFFF"
  2786. font-family="'MicrosoftYaHei'" font-size="12.5667">
  2787. 风场十一线
  2788. </text>
  2789. </g>
  2790. <text transform="matrix(1 0 0 1 1622.5315 729.3254)" fill="#FFFFFF"
  2791. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2792. -0
  2793. </text>
  2794. <rect x="1627.04" y="656.085" fill="#C3A121" width="20.5" height="2.25" />
  2795. <rect x="1645.836" y="650.417" fill="#CAA51A" width="2.25" height="75.479" />
  2796. <polyline fill="#CAA51A"
  2797. points="1648.086,578.271 1648.086,591.646 1645.836,591.646 1645.836,578.271 " />
  2798. <polygon fill="#CAA51A" points="1651.564,725.742 1646.952,735.552 1642.355,725.74 " />
  2799. <rect x="1626.79" y="656.085" fill="#C3A121" width="2.25" height="17.838" />
  2800. <g>
  2801. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2802. x1="1622.032" y1="706.739" x2="1634.333" y2="706.739" />
  2803. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2804. x1="1628.188" y1="698.278" x2="1628.188" y2="706.739" />
  2805. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2806. x1="1624.573" y1="710.126" x2="1631.797" y2="710.126" />
  2807. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2808. x1="1625.984" y1="713.511" x2="1630.387" y2="713.511" />
  2809. </g>
  2810. <g>
  2811. <rect x="1691.049" y="746.192" fill="#44426C" width="72.313" height="20.817" />
  2812. <text transform="matrix(1 0 0 1 1700.6624 760.7454)" fill="#FFFFFF"
  2813. font-family="'MicrosoftYaHei'" font-size="12.5667">
  2814. #4补偿器
  2815. </text>
  2816. </g>
  2817. <text transform="matrix(1 0 0 1 1692.8616 627.3645)" fill="#FFFFFF"
  2818. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2819. 354
  2820. </text>
  2821. <text transform="matrix(1 0 0 1 1614.8616 627.3645)" fill="#FFFFFF"
  2822. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2823. 353
  2824. </text>
  2825. <text transform="matrix(1 0 0 1 1701.0491 729.3254)" fill="#FFFFFF"
  2826. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2827. -0
  2828. </text>
  2829. <rect x="1705.559" y="656.085" fill="#C3A121" width="20.5" height="2.25" />
  2830. <rect x="1724.352" y="650.417" fill="#CAA51A" width="2.25" height="75.479" />
  2831. <polyline fill="#CAA51A"
  2832. points="1726.602,578.271 1726.602,591.646 1724.352,591.646 1724.352,578.271 " />
  2833. <polygon fill="#CAA51A" points="1730.077,725.742 1725.471,735.552 1720.868,725.74 " />
  2834. <rect x="1705.307" y="656.085" fill="#C3A121" width="2.25" height="17.838" />
  2835. <g>
  2836. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2837. x1="1700.551" y1="706.739" x2="1712.85" y2="706.739" />
  2838. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2839. x1="1706.7" y1="698.278" x2="1706.7" y2="706.739" />
  2840. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2841. x1="1703.09" y1="710.126" x2="1710.313" y2="710.126" />
  2842. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2843. x1="1704.499" y1="713.511" x2="1708.902" y2="713.511" />
  2844. </g>
  2845. <rect x="552.891" y="575.417" fill="#CAA51A" width="412.47" height="2.25" />
  2846. <text transform="matrix(0.9268 0 0 1 552.8918 571.2805)" fill="#FFFFFF"
  2847. font-family="'MicrosoftYaHei'" font-size="13.2867">
  2848. 35kV Ⅱ母线
  2849. </text>
  2850. <g>
  2851. <rect x="699.979" y="744.526" fill="#44426C" width="72.314" height="20.817" />
  2852. <text transform="matrix(1 0 0 1 707.9622 759.0793)" fill="#FFFFFF"
  2853. font-family="'MicrosoftYaHei'" font-size="12.5667">
  2854. 35KVⅡ母
  2855. </text>
  2856. </g>
  2857. <g>
  2858. <rect x="619.683" y="744.526" fill="#44426C" width="72.313" height="20.817" />
  2859. <text transform="matrix(1 0 0 1 630.7063 759.0793)" fill="#FFFFFF"
  2860. font-family="'MicrosoftYaHei'" font-size="12.5667">
  2861. 风场五线
  2862. </text>
  2863. </g>
  2864. <g>
  2865. <rect x="539.386" y="744.526" fill="#44426C" width="72.313" height="20.817" />
  2866. <text transform="matrix(1 0 0 1 550.4094 759.0793)" fill="#FFFFFF"
  2867. font-family="'MicrosoftYaHei'" font-size="12.5667">
  2868. 风场四线
  2869. </text>
  2870. </g>
  2871. <text transform="matrix(1 0 0 1 697.2747 625.6975)" fill="#FFFFFF"
  2872. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2873. 32-9
  2874. </text>
  2875. <text transform="matrix(1 0 0 1 623.4446 625.6975)" fill="#FFFFFF"
  2876. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2877. 322
  2878. </text>
  2879. <text transform="matrix(1 0 0 1 631.6311 727.6594)" fill="#FFFFFF"
  2880. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2881. -0
  2882. </text>
  2883. <rect x="636.141" y="654.419" fill="#C3A121" width="20.5" height="2.25" />
  2884. <rect x="654.936" y="648.751" fill="#CAA51A" width="2.25" height="75.479" />
  2885. <polyline fill="#CAA51A"
  2886. points="657.186,576.604 657.186,589.979 654.936,589.979 654.936,576.604 " />
  2887. <polygon fill="#CAA51A" points="660.661,724.076 656.055,733.886 651.452,724.073 " />
  2888. <text transform="matrix(1 0 0 1 542.7625 625.6975)" fill="#FFFFFF"
  2889. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2890. 321
  2891. </text>
  2892. <text transform="matrix(1 0 0 1 550.9495 727.6594)" fill="#FFFFFF"
  2893. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2894. -0
  2895. </text>
  2896. <rect x="555.458" y="654.419" fill="#C3A121" width="20.5" height="2.25" />
  2897. <rect x="574.253" y="648.751" fill="#CAA51A" width="2.25" height="75.479" />
  2898. <polyline fill="#CAA51A"
  2899. points="576.503,576.604 576.503,589.979 574.253,589.979 574.253,576.604 " />
  2900. <polygon fill="#CAA51A" points="579.982,724.076 575.37,733.886 570.773,724.073 " />
  2901. <rect x="714.715" y="654.419" fill="#C3A121" width="2.25" height="22.133" />
  2902. <rect x="715.364" y="654.419" fill="#C3A121" width="20.5" height="2.25" />
  2903. <g>
  2904. <line fill="none" stroke="#C3A121" stroke-width="2.5" stroke-miterlimit="10"
  2905. x1="708.961" y1="678.185" x2="722.682" y2="678.185" />
  2906. <line fill="none" stroke="#C3A121" stroke-width="2.5" stroke-miterlimit="10"
  2907. x1="711.793" y1="681.962" x2="719.85" y2="681.962" />
  2908. <line fill="none" stroke="#C3A121" stroke-width="2.5" stroke-miterlimit="10"
  2909. x1="713.365" y1="685.737" x2="718.276" y2="685.737" />
  2910. </g>
  2911. <rect x="734.156" y="614.104" fill="#CAA51A" width="2.25" height="89.971" />
  2912. <polyline fill="#CAA51A"
  2913. points="736.406,576.604 736.406,596.979 734.156,596.979 734.156,576.604 " />
  2914. <g>
  2915. <circle fill="none" stroke="#A9165D" stroke-width="1.5" stroke-miterlimit="10"
  2916. cx="735.23" cy="727.463" r="8.804" />
  2917. <circle fill="none" stroke="#A9165D" stroke-width="1.5" stroke-miterlimit="10"
  2918. cx="735.23" cy="712.186" r="8.804" />
  2919. <polyline fill="none" stroke="#A9165D" stroke-width="1.5" stroke-miterlimit="10"
  2920. points="739.508,731.183 736.376,728.015 739.508,725.063 " />
  2921. <line fill="none" stroke="#A9165D" stroke-width="1.5" stroke-miterlimit="10"
  2922. x1="736.293" y1="727.948" x2="730.771" y2="727.948" />
  2923. <polyline fill="none" stroke="#A9165D" stroke-width="1.5" stroke-miterlimit="10"
  2924. points="739.508,715.242 736.376,712.074 739.508,709.126 " />
  2925. <line fill="none" stroke="#A9165D" stroke-width="1.5" stroke-miterlimit="10"
  2926. x1="736.293" y1="712.013" x2="730.771" y2="712.013" />
  2927. <circle fill="none" stroke="#A9165D" stroke-width="1.5" stroke-miterlimit="10"
  2928. cx="722.408" cy="719.382" r="8.803" />
  2929. <polyline fill="none" stroke="#A9165D" stroke-width="1.5" stroke-miterlimit="10"
  2930. points="725.688,722.44 722.556,719.274 725.688,716.323 " />
  2931. <line fill="none" stroke="#A9165D" stroke-width="1.5" stroke-miterlimit="10"
  2932. x1="722.473" y1="719.208" x2="716.949" y2="719.208" />
  2933. <circle fill="none" stroke="#A9165D" stroke-width="1.5" stroke-miterlimit="10"
  2934. cx="748.153" cy="719.382" r="8.803" />
  2935. <polygon fill="none" stroke="#A9165D" stroke-width="1.5" stroke-miterlimit="10"
  2936. points="746.396,722.642 746.396,716.119 751.771,719.56 " />
  2937. </g>
  2938. <rect x="635.891" y="654.419" fill="#C3A121" width="2.25" height="17.838" />
  2939. <g>
  2940. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2941. x1="631.135" y1="705.073" x2="643.434" y2="705.073" />
  2942. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2943. x1="637.284" y1="696.612" x2="637.284" y2="705.073" />
  2944. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2945. x1="633.674" y1="708.46" x2="640.896" y2="708.46" />
  2946. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2947. x1="635.083" y1="711.845" x2="639.485" y2="711.845" />
  2948. </g>
  2949. <g>
  2950. <rect x="780.277" y="744.526" fill="#44426C" width="72.313" height="20.817" />
  2951. <text transform="matrix(1 0 0 1 791.2996 759.0793)" fill="#FFFFFF"
  2952. font-family="'MicrosoftYaHei'" font-size="12.5667">
  2953. 风场六线
  2954. </text>
  2955. </g>
  2956. <text transform="matrix(1 0 0 1 782.4954 625.6975)" fill="#FFFFFF"
  2957. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2958. 323
  2959. </text>
  2960. <text transform="matrix(1 0 0 1 790.6819 727.6594)" fill="#FFFFFF"
  2961. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2962. -0
  2963. </text>
  2964. <rect x="795.192" y="654.419" fill="#C3A121" width="20.5" height="2.25" />
  2965. <rect x="813.986" y="648.751" fill="#CAA51A" width="2.25" height="75.479" />
  2966. <polyline fill="#CAA51A"
  2967. points="816.236,576.604 816.236,589.979 813.986,589.979 813.986,576.604 " />
  2968. <polygon fill="#CAA51A" points="819.715,724.076 815.105,733.886 810.506,724.073 " />
  2969. <rect x="794.942" y="654.419" fill="#C3A121" width="2.25" height="17.838" />
  2970. <g>
  2971. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2972. x1="790.186" y1="705.073" x2="802.485" y2="705.073" />
  2973. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2974. x1="796.338" y1="696.612" x2="796.338" y2="705.073" />
  2975. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2976. x1="792.725" y1="708.46" x2="799.947" y2="708.46" />
  2977. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  2978. x1="794.135" y1="711.845" x2="798.534" y2="711.845" />
  2979. </g>
  2980. <g>
  2981. <rect x="860.573" y="744.526" fill="#44426C" width="72.313" height="20.817" />
  2982. <text transform="matrix(1 0 0 1 870.1858 759.0793)" fill="#FFFFFF"
  2983. font-family="'MicrosoftYaHei'" font-size="12.5667">
  2984. #2补偿器
  2985. </text>
  2986. </g>
  2987. <text transform="matrix(1 0 0 1 861.5393 625.6975)" fill="#FFFFFF"
  2988. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2989. 324
  2990. </text>
  2991. <text transform="matrix(1 0 0 1 869.7258 727.6594)" fill="#FFFFFF"
  2992. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2993. -0
  2994. </text>
  2995. <rect x="874.236" y="654.419" fill="#C3A121" width="20.5" height="2.25" />
  2996. <rect x="893.029" y="648.751" fill="#CAA51A" width="2.25" height="75.479" />
  2997. <polyline fill="#CAA51A"
  2998. points="895.279,576.604 895.279,589.979 893.029,589.979 893.029,576.604 " />
  2999. <polygon fill="#CAA51A" points="898.759,724.076 894.148,733.886 889.55,724.073 " />
  3000. <rect x="873.985" y="654.419" fill="#C3A121" width="2.25" height="17.838" />
  3001. <g>
  3002. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  3003. x1="869.229" y1="705.073" x2="881.528" y2="705.073" />
  3004. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  3005. x1="875.382" y1="696.612" x2="875.382" y2="705.073" />
  3006. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  3007. x1="871.77" y1="708.46" x2="878.99" y2="708.46" />
  3008. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  3009. x1="873.179" y1="711.845" x2="877.577" y2="711.845" />
  3010. </g>
  3011. <rect x="553.266" y="654.419" fill="#C3A121" width="2.25" height="17.838" />
  3012. <g>
  3013. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  3014. x1="548.51" y1="705.073" x2="560.809" y2="705.073" />
  3015. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  3016. x1="554.66" y1="696.612" x2="554.66" y2="705.073" />
  3017. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  3018. x1="551.049" y1="708.46" x2="558.271" y2="708.46" />
  3019. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  3020. x1="552.458" y1="711.845" x2="556.861" y2="711.845" />
  3021. </g>
  3022. <rect x="1010.314" y="577.083" fill="#CAA51A" width="281.5" height="2.25" />
  3023. <text transform="matrix(0.9268 0 0 1 1010.3147 572.9465)" fill="#FFFFFF"
  3024. font-family="'MicrosoftYaHei'" font-size="13.2867">
  3025. 35kV Ⅲ母线
  3026. </text>
  3027. <g>
  3028. <rect x="1225.376" y="746.192" fill="#44426C" width="72.313" height="20.817" />
  3029. <text transform="matrix(1 0 0 1 1233.3616 760.7454)" fill="#FFFFFF"
  3030. font-family="'MicrosoftYaHei'" font-size="12.5667">
  3031. 35KVⅢ母
  3032. </text>
  3033. </g>
  3034. <g>
  3035. <rect x="1067.105" y="746.192" fill="#44426C" width="72.314" height="20.817" />
  3036. <text transform="matrix(1 0 0 1 1078.1292 760.7454)" fill="#FFFFFF"
  3037. font-family="'MicrosoftYaHei'" font-size="12.5667">
  3038. 风场八线
  3039. </text>
  3040. </g>
  3041. <g>
  3042. <rect x="986.809" y="746.192" fill="#44426C" width="72.313" height="20.817" />
  3043. <text transform="matrix(1 0 0 1 997.8323 760.7454)" fill="#FFFFFF"
  3044. font-family="'MicrosoftYaHei'" font-size="12.5667">
  3045. 风场七线
  3046. </text>
  3047. </g>
  3048. <text transform="matrix(1 0 0 1 1222.6721 627.3645)" fill="#FFFFFF"
  3049. font-family="'MicrosoftYaHei'" font-size="11.9907">
  3050. 33-9
  3051. </text>
  3052. <text transform="matrix(1 0 0 1 1070.8674 627.3645)" fill="#FFFFFF"
  3053. font-family="'MicrosoftYaHei'" font-size="11.9907">
  3054. 332
  3055. </text>
  3056. <text transform="matrix(1 0 0 1 1079.0549 729.3254)" fill="#FFFFFF"
  3057. font-family="'MicrosoftYaHei'" font-size="11.9907">
  3058. -0
  3059. </text>
  3060. <rect x="1083.564" y="656.085" fill="#C3A121" width="20.5" height="2.25" />
  3061. <rect x="1102.358" y="650.417" fill="#CAA51A" width="2.25" height="75.479" />
  3062. <polyline fill="#CAA51A"
  3063. points="1104.608,578.271 1104.608,591.646 1102.358,591.646 1102.358,578.271 " />
  3064. <polygon fill="#CAA51A" points="1108.087,725.742 1103.479,735.552 1098.878,725.74 " />
  3065. <text transform="matrix(1 0 0 1 990.1858 627.3645)" fill="#FFFFFF"
  3066. font-family="'MicrosoftYaHei'" font-size="11.9907">
  3067. 331
  3068. </text>
  3069. <text transform="matrix(1 0 0 1 998.3733 729.3254)" fill="#FFFFFF"
  3070. font-family="'MicrosoftYaHei'" font-size="11.9907">
  3071. -0
  3072. </text>
  3073. <rect x="1002.883" y="656.085" fill="#C3A121" width="20.5" height="2.25" />
  3074. <rect x="1021.676" y="650.417" fill="#CAA51A" width="2.25" height="75.479" />
  3075. <polyline fill="#CAA51A"
  3076. points="1023.926,578.271 1023.926,591.646 1021.676,591.646 1021.676,578.271 " />
  3077. <polygon fill="#CAA51A" points="1027.406,725.742 1022.796,735.552 1018.197,725.74 " />
  3078. <rect x="1240.113" y="656.085" fill="#C3A121" width="2.25" height="22.133" />
  3079. <rect x="1240.762" y="656.085" fill="#C3A121" width="20.5" height="2.25" />
  3080. <g>
  3081. <line fill="none" stroke="#C3A121" stroke-width="2.5" stroke-miterlimit="10"
  3082. x1="1234.359" y1="679.851" x2="1248.077" y2="679.851" />
  3083. <line fill="none" stroke="#C3A121" stroke-width="2.5" stroke-miterlimit="10"
  3084. x1="1237.191" y1="683.628" x2="1245.245" y2="683.628" />
  3085. <line fill="none" stroke="#C3A121" stroke-width="2.5" stroke-miterlimit="10"
  3086. x1="1238.764" y1="687.403" x2="1243.674" y2="687.403" />
  3087. </g>
  3088. <rect x="1259.555" y="615.769" fill="#CAA51A" width="2.25" height="89.972" />
  3089. <polyline fill="#CAA51A"
  3090. points="1261.805,578.271 1261.805,598.646 1259.555,598.646 1259.555,578.271 " />
  3091. <g>
  3092. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  3093. cx="1260.629" cy="729.129" r="8.804" />
  3094. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  3095. cx="1260.629" cy="713.852" r="8.804" />
  3096. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  3097. points="1264.906,732.849 1261.773,729.681 1264.906,726.729 " />
  3098. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  3099. x1="1261.691" y1="729.615" x2="1256.17" y2="729.615" />
  3100. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  3101. points="1264.906,716.908 1261.773,713.74 1264.906,710.792 " />
  3102. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  3103. x1="1261.691" y1="713.679" x2="1256.17" y2="713.679" />
  3104. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  3105. cx="1247.809" cy="721.048" r="8.803" />
  3106. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  3107. points="1251.086,724.106 1247.95,720.94 1251.086,717.989 " />
  3108. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  3109. x1="1247.868" y1="720.874" x2="1242.35" y2="720.874" />
  3110. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  3111. cx="1273.551" cy="721.048" r="8.803" />
  3112. <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  3113. points="1271.795,724.308 1271.795,717.785 1277.17,721.226 " />
  3114. </g>
  3115. <rect x="1083.314" y="656.085" fill="#C3A121" width="2.25" height="17.838" />
  3116. <g>
  3117. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  3118. x1="1078.558" y1="706.739" x2="1090.857" y2="706.739" />
  3119. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  3120. x1="1084.71" y1="698.278" x2="1084.71" y2="706.739" />
  3121. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  3122. x1="1081.097" y1="710.126" x2="1088.319" y2="710.126" />
  3123. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  3124. x1="1082.507" y1="713.511" x2="1086.906" y2="713.511" />
  3125. </g>
  3126. <g>
  3127. <rect x="1146.37" y="746.192" fill="#44426C" width="72.314" height="20.817" />
  3128. <text transform="matrix(1 0 0 1 1155.9866 760.7454)" fill="#FFFFFF"
  3129. font-family="'MicrosoftYaHei'" font-size="12.5667">
  3130. #3补偿器
  3131. </text>
  3132. </g>
  3133. <text transform="matrix(1 0 0 1 1148.594 627.3645)" fill="#FFFFFF"
  3134. font-family="'MicrosoftYaHei'" font-size="11.9907">
  3135. 324
  3136. </text>
  3137. <text transform="matrix(1 0 0 1 1156.7795 729.3254)" fill="#FFFFFF"
  3138. font-family="'MicrosoftYaHei'" font-size="11.9907">
  3139. -0
  3140. </text>
  3141. <rect x="1161.286" y="656.085" fill="#C3A121" width="20.5" height="2.25" />
  3142. <rect x="1180.081" y="650.417" fill="#CAA51A" width="2.25" height="75.479" />
  3143. <polyline fill="#CAA51A"
  3144. points="1182.331,578.271 1182.331,591.646 1180.081,591.646 1180.081,578.271 " />
  3145. <polygon fill="#CAA51A" points="1185.813,725.742 1181.2,735.552 1176.604,725.74 " />
  3146. <rect x="1161.036" y="656.085" fill="#C3A121" width="2.25" height="17.838" />
  3147. <g>
  3148. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  3149. x1="1156.281" y1="706.739" x2="1168.581" y2="706.739" />
  3150. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  3151. x1="1162.436" y1="698.278" x2="1162.436" y2="706.739" />
  3152. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  3153. x1="1158.822" y1="710.126" x2="1166.042" y2="710.126" />
  3154. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  3155. x1="1160.232" y1="713.511" x2="1164.633" y2="713.511" />
  3156. </g>
  3157. <rect x="1000.689" y="656.085" fill="#C3A121" width="2.25" height="17.838" />
  3158. <g>
  3159. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  3160. x1="995.934" y1="706.739" x2="1008.232" y2="706.739" />
  3161. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  3162. x1="1002.086" y1="698.278" x2="1002.086" y2="706.739" />
  3163. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  3164. x1="998.473" y1="710.126" x2="1005.694" y2="710.126" />
  3165. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10"
  3166. x1="999.883" y1="713.511" x2="1004.281" y2="713.511" />
  3167. </g>
  3168. <g>
  3169. <text transform="matrix(1 0 0 1 18.3616 803.4407)" fill="#FFFFFF"
  3170. font-family="'MicrosoftYaHei'" font-size="10.7648">
  3171. la(
  3172. </text>
  3173. <text transform="matrix(1 0 0 1 30.7708 803.4407)" fill="#FFFFFF"
  3174. font-family="'MicrosoftYaHei'" font-size="8.6118">
  3175. A
  3176. </text>
  3177. <text transform="matrix(1 0 0 1 36.8293 803.4407)" fill="#FFFFFF"
  3178. font-family="'MicrosoftYaHei'" font-size="10.7648">
  3179. ):
  3180. </text>
  3181. <text transform="matrix(1 0 0 1 13.1965 829.2922)" fill="#FFFFFF"
  3182. font-family="'MicrosoftYaHei'" font-size="10.7648">
  3183. P(
  3184. </text>
  3185. <text transform="matrix(1 0 0 1 23.3787 829.2922)" fill="#FFFFFF"
  3186. font-family="'MicrosoftYaHei'" font-size="8.6118">
  3187. kW
  3188. </text>
  3189. <text transform="matrix(1 0 0 1 36.8293 829.2922)" fill="#FFFFFF"
  3190. font-family="'MicrosoftYaHei'" font-size="10.7648">
  3191. ):
  3192. </text>
  3193. <text transform="matrix(1 0 0 1 5.9026 855.1438)" fill="#FFFFFF"
  3194. font-family="'MicrosoftYaHei'" font-size="10.7648">
  3195. Q(
  3196. </text>
  3197. <text transform="matrix(1 0 0 1 18.2708 855.1438)" fill="#FFFFFF"
  3198. font-family="'MicrosoftYaHei'" font-size="8.6118">
  3199. kVar
  3200. </text>
  3201. <text transform="matrix(1 0 0 1 36.8293 855.1438)" fill="#FFFFFF"
  3202. font-family="'MicrosoftYaHei'" font-size="10.7648">
  3203. ):
  3204. </text>
  3205. </g>
  3206. </g>
  3207. <g id="arrow">
  3208. <rect x="267.139" y="174.05" :fill="ajaxData.sbqdlq111 ? red : green" width="17.215"
  3209. height="23.117"></rect>
  3210. <rect x="930.448" y="174.05" :fill="ajaxData.sbqdlq121 ? red : green" width="17.214"
  3211. height="23.117"></rect>
  3212. <rect x="1645.156" y="174.05" :fill="ajaxData.sbqdlq151 ? red : green" width="17.215"
  3213. height="23.117"></rect>
  3214. <rect x="268.098" y="349.781" :fill="ajaxData.sbqdlq101 ? red : green" width="15.98"
  3215. height="24.201"></rect>
  3216. <rect x="267.5" y="510.772" :fill="ajaxData.sbqdlq102 ? red : green" width="15.462"
  3217. height="24.008"></rect>
  3218. <rect x="682.035" y="349.781" :fill="ajaxData.sbqdlq103 ? red : green" width="15.979"
  3219. height="24.201"></rect>
  3220. <rect x="681.439" y="510.772" :fill="ajaxData.sbqdlq104 ? red : green" width="15.463"
  3221. height="24.008"></rect>
  3222. <rect x="1215.432" y="349.781" :fill="ajaxData.sbqdlq301 ? red : green" width="15.979"
  3223. height="24.201"></rect>
  3224. <rect x="1214.833" y="523.886" :fill="ajaxData.sbqdlq302 ? red : green" width="15.462"
  3225. height="24.008"></rect>
  3226. <rect x="1646.547" y="349.781" :fill="ajaxData.sbqdlq303 ? red : green" width="15.979"
  3227. height="24.201"></rect>
  3228. <rect x="1646.547" y="510.772" :fill="ajaxData.sbqdlq304 ? red : green" width="15.463"
  3229. height="24.008"></rect>
  3230. <rect x="68.318" y="609.071" :fill="ajaxData.sbqdlq312 ? red : green" width="15.463"
  3231. height="24.008"></rect>
  3232. <rect x="149" y="609.071" :fill="ajaxData.sbqdlq313 ? red : green" width="15.463"
  3233. height="24.008"></rect>
  3234. <rect x="306.051" y="609.071" :fill="ajaxData.sbqdlq314 ? red : green" width="15.463"
  3235. height="24.008"></rect>
  3236. <rect x="383.095" y="609.071" :fill="ajaxData.sbqdlq316 ? red : green" width="15.463"
  3237. height="24.008"></rect>
  3238. <rect x="463.194" y="609.071" :fill="ajaxData.sbqdlq315 ? red : green" width="15.463"
  3239. height="24.008"></rect>
  3240. <rect x="567.646" y="608.071" :fill="ajaxData.sbqdlq321 ? red : green" width="15.463"
  3241. height="24.008"></rect>
  3242. <rect x="648.325" y="608.071" :fill="ajaxData.sbqdlq322 ? red : green" width="15.464"
  3243. height="24.008"></rect>
  3244. <rect x="807.379" y="608.071" :fill="ajaxData.sbqdlq323 ? red : green" width="15.463"
  3245. height="24.008"></rect>
  3246. <rect x="886.423" y="608.071" :fill="ajaxData.sbqdlq324 ? red : green" width="15.463"
  3247. height="24.008"></rect>
  3248. <rect x="1015.07" y="609.737" :fill="ajaxData.sbqdlq331 ? red : green" width="15.463"
  3249. height="24.008"></rect>
  3250. <rect x="1095.751" y="609.737" :fill="ajaxData.sbqdlq332 ? red : green" width="15.463"
  3251. height="24.008"></rect>
  3252. <rect x="1173.477" y="609.737" :fill="ajaxData.sbqdlq334 ? red : green" width="15.464"
  3253. height="24.008"></rect>
  3254. <rect x="1391.262" y="609.737" :fill="ajaxData.sbqdlq350 ? red : green" width="15.463"
  3255. height="24.008"></rect>
  3256. <rect x="1478.943" y="609.737" :fill="ajaxData.sbqdlq351 ? red : green" width="15.463"
  3257. height="24.008"></rect>
  3258. <rect x="1558.031" y="609.737" :fill="ajaxData.sbqdlq352 ? red : green" width="15.463"
  3259. height="24.008"></rect>
  3260. <rect x="1639.229" y="609.737" :fill="ajaxData.sbqdlq353 ? red : green" width="15.463"
  3261. height="24.008"></rect>
  3262. <rect x="1717.741" y="609.737" :fill="ajaxData.sbqdlq354 ? red : green" width="15.464"
  3263. height="24.008"></rect>
  3264. </g>
  3265. <g id="block">
  3266. <g>
  3267. <polyline fill="none" :stroke="ajaxData.sbqsc301 ? red : green" stroke-width="1.3"
  3268. stroke-miterlimit="10"
  3269. points="267.946,501.819 274.771,494.099 281.79,501.819 "></polyline>
  3270. <polyline fill="none" :stroke="ajaxData.sbqsc301 ? red : green" stroke-width="1.3"
  3271. stroke-miterlimit="10"
  3272. points="267.946,507.669 274.771,499.948 281.79,507.669 "></polyline>
  3273. <polyline fill="none" :stroke="ajaxData.sbqsc301 ? red : green" stroke-width="1.3"
  3274. stroke-miterlimit="10"
  3275. points="281.79,544.112 274.967,551.833 267.946,544.112 "></polyline>
  3276. <polyline fill="none" :stroke="ajaxData.sbqsc301 ? red : green" stroke-width="1.3"
  3277. stroke-miterlimit="10"
  3278. points="281.79,539.335 274.967,547.058 267.946,539.335 "></polyline>
  3279. </g>
  3280. <g>
  3281. <polyline fill="none" :stroke="ajaxData.sbqsc302 ? red : green" stroke-width="1.3"
  3282. stroke-miterlimit="10"
  3283. points="681.886,501.819 688.71,494.099 695.73,501.819 "></polyline>
  3284. <polyline fill="none" :stroke="ajaxData.sbqsc302 ? red : green" stroke-width="1.3"
  3285. stroke-miterlimit="10"
  3286. points="681.886,507.669 688.71,499.948 695.73,507.669 "></polyline>
  3287. <polyline fill="none" :stroke="ajaxData.sbqsc302 ? red : green" stroke-width="1.3"
  3288. stroke-miterlimit="10"
  3289. points="695.73,544.112 688.906,551.833 681.886,544.112 "></polyline>
  3290. <polyline fill="none" :stroke="ajaxData.sbqsc302 ? red : green" stroke-width="1.3"
  3291. stroke-miterlimit="10"
  3292. points="695.73,539.335 688.906,547.058 681.886,539.335 "></polyline>
  3293. </g>
  3294. <g>
  3295. <polyline fill="none" :stroke="ajaxData.sbqsc303 ? red : green" stroke-width="1.3"
  3296. stroke-miterlimit="10"
  3297. points="1215.279,514.933 1222.104,507.212 1229.12,514.933 "></polyline>
  3298. <polyline fill="none" :stroke="ajaxData.sbqsc303 ? red : green" stroke-width="1.3"
  3299. stroke-miterlimit="10"
  3300. points="1215.279,520.781 1222.104,513.063 1229.12,520.781 "></polyline>
  3301. <polyline fill="none" :stroke="ajaxData.sbqsc303 ? red : green" stroke-width="1.3"
  3302. stroke-miterlimit="10"
  3303. points="1229.12,557.226 1222.301,564.946 1215.279,557.226 "></polyline>
  3304. <polyline fill="none" :stroke="ajaxData.sbqsc303 ? red : green" stroke-width="1.3"
  3305. stroke-miterlimit="10"
  3306. points="1229.12,552.448 1222.301,560.171 1215.279,552.448 "></polyline>
  3307. </g>
  3308. <g>
  3309. <polyline fill="none" :stroke="ajaxData.sbqsc304 ? red : green" stroke-width="1.3"
  3310. stroke-miterlimit="10"
  3311. points="1646.991,501.819 1653.818,494.099 1660.838,501.819 "></polyline>
  3312. <polyline fill="none" :stroke="ajaxData.sbqsc304 ? red : green" stroke-width="1.3"
  3313. stroke-miterlimit="10"
  3314. points="1646.991,507.669 1653.818,499.948 1660.838,507.669 "></polyline>
  3315. <polyline fill="none" :stroke="ajaxData.sbqsc304 ? red : green" stroke-width="1.3"
  3316. stroke-miterlimit="10"
  3317. points="1660.838,544.112 1654.014,551.833 1646.991,544.112 "></polyline>
  3318. <polyline fill="none" :stroke="ajaxData.sbqsc304 ? red : green" stroke-width="1.3"
  3319. stroke-miterlimit="10"
  3320. points="1660.838,539.335 1654.014,547.058 1646.991,539.335 "></polyline>
  3321. </g>
  3322. <g>
  3323. <polyline fill="none" :stroke="ajaxData.sbqsc312 ? red : green" stroke-width="1.3"
  3324. stroke-miterlimit="10"
  3325. points="82.972,642.031 76.149,649.751 69.128,642.031 "></polyline>
  3326. <polyline fill="none" :stroke="ajaxData.sbqsc312 ? red : green" stroke-width="1.3"
  3327. stroke-miterlimit="10"
  3328. points="82.972,636.183 76.149,643.901 69.128,636.183 "></polyline>
  3329. <polyline fill="none" :stroke="ajaxData.sbqsc312 ? red : green" stroke-width="1.3"
  3330. stroke-miterlimit="10"
  3331. points="69.128,604.517 75.952,596.794 82.972,604.517 "></polyline>
  3332. <polyline fill="none" :stroke="ajaxData.sbqsc312 ? red : green" stroke-width="1.3"
  3333. stroke-miterlimit="10"
  3334. points="69.128,597.356 75.952,589.634 82.972,597.356 "></polyline>
  3335. </g>
  3336. <g>
  3337. <polyline fill="none" :stroke="ajaxData.sbqsc313 ? red : green" stroke-width="1.3"
  3338. stroke-miterlimit="10"
  3339. points="163.653,642.031 156.831,649.751 149.81,642.031 "></polyline>
  3340. <polyline fill="none" :stroke="ajaxData.sbqsc313 ? red : green" stroke-width="1.3"
  3341. stroke-miterlimit="10"
  3342. points="163.653,636.183 156.831,643.901 149.81,636.183 "></polyline>
  3343. <polyline fill="none" :stroke="ajaxData.sbqsc313 ? red : green" stroke-width="1.3"
  3344. stroke-miterlimit="10"
  3345. points="149.81,604.517 156.634,596.794 163.653,604.517 "></polyline>
  3346. <polyline fill="none" :stroke="ajaxData.sbqsc313 ? red : green" stroke-width="1.3"
  3347. stroke-miterlimit="10"
  3348. points="149.81,597.356 156.634,589.634 163.653,597.356 "></polyline>
  3349. </g>
  3350. <g>
  3351. <polyline fill="none" :stroke="ajaxData.sbqsc319 ? red : green" stroke-width="1.3"
  3352. stroke-miterlimit="10"
  3353. points="226.032,611.517 232.856,603.794 239.876,611.517 "></polyline>
  3354. <polyline fill="none" :stroke="ajaxData.sbqsc319 ? red : green" stroke-width="1.3"
  3355. stroke-miterlimit="10"
  3356. points="226.032,604.356 232.856,596.634 239.876,604.356 "></polyline>
  3357. </g>
  3358. <g>
  3359. <polyline fill="none" :stroke="ajaxData.sbqsc314 ? red : green" stroke-width="1.3"
  3360. stroke-miterlimit="10"
  3361. points="320.705,642.031 313.882,649.751 306.861,642.031 "></polyline>
  3362. <polyline fill="none" :stroke="ajaxData.sbqsc314 ? red : green" stroke-width="1.3"
  3363. stroke-miterlimit="10"
  3364. points="320.705,636.183 313.882,643.901 306.861,636.183 "></polyline>
  3365. <polyline fill="none" :stroke="ajaxData.sbqsc314 ? red : green" stroke-width="1.3"
  3366. stroke-miterlimit="10"
  3367. points="306.861,604.517 313.685,596.794 320.705,604.517 "></polyline>
  3368. <polyline fill="none" :stroke="ajaxData.sbqsc314 ? red : green" stroke-width="1.3"
  3369. stroke-miterlimit="10"
  3370. points="306.861,597.356 313.685,589.634 320.705,597.356 "></polyline>
  3371. </g>
  3372. <g>
  3373. <polyline fill="none" :stroke="ajaxData.sbqsc316 ? red : green" stroke-width="1.3"
  3374. stroke-miterlimit="10"
  3375. points="397.748,642.031 390.926,649.751 383.904,642.031 "></polyline>
  3376. <polyline fill="none" :stroke="ajaxData.sbqsc316 ? red : green" stroke-width="1.3"
  3377. stroke-miterlimit="10"
  3378. points="397.748,636.183 390.926,643.901 383.904,636.183 "></polyline>
  3379. <polyline fill="none" :stroke="ajaxData.sbqsc316 ? red : green" stroke-width="1.3"
  3380. stroke-miterlimit="10"
  3381. points="383.904,604.517 390.729,596.794 397.748,604.517 "></polyline>
  3382. <polyline fill="none" :stroke="ajaxData.sbqsc316 ? red : green" stroke-width="1.3"
  3383. stroke-miterlimit="10"
  3384. points="383.904,597.356 390.729,589.634 397.748,597.356 "></polyline>
  3385. </g>
  3386. <g>
  3387. <polyline fill="none" :stroke="ajaxData.sbqsc315 ? red : green" stroke-width="1.3"
  3388. stroke-miterlimit="10"
  3389. points="477.848,642.031 471.025,649.751 464.004,642.031 "></polyline>
  3390. <polyline fill="none" :stroke="ajaxData.sbqsc315 ? red : green" stroke-width="1.3"
  3391. stroke-miterlimit="10"
  3392. points="477.848,636.183 471.025,643.901 464.004,636.183 "></polyline>
  3393. <polyline fill="none" :stroke="ajaxData.sbqsc315 ? red : green" stroke-width="1.3"
  3394. stroke-miterlimit="10"
  3395. points="464.004,604.517 470.825,596.794 477.848,604.517 "></polyline>
  3396. <polyline fill="none" :stroke="ajaxData.sbqsc315 ? red : green" stroke-width="1.3"
  3397. stroke-miterlimit="10"
  3398. points="464.004,597.356 470.825,589.634 477.848,597.356 "></polyline>
  3399. </g>
  3400. <g>
  3401. <polyline fill="none" :stroke="ajaxData.sbqsc321 ? red : green" stroke-width="1.3"
  3402. stroke-miterlimit="10"
  3403. points="582.3,641.031 575.479,648.751 568.453,641.031 "></polyline>
  3404. <polyline fill="none" :stroke="ajaxData.sbqsc321 ? red : green" stroke-width="1.3"
  3405. stroke-miterlimit="10"
  3406. points="582.3,635.183 575.479,642.901 568.453,635.183 "></polyline>
  3407. <polyline fill="none" :stroke="ajaxData.sbqsc321 ? red : green" stroke-width="1.3"
  3408. stroke-miterlimit="10"
  3409. points="568.453,603.517 575.28,595.794 582.3,603.517 "></polyline>
  3410. <polyline fill="none" :stroke="ajaxData.sbqsc321 ? red : green" stroke-width="1.3"
  3411. stroke-miterlimit="10"
  3412. points="568.453,596.356 575.28,588.634 582.3,596.356 "></polyline>
  3413. </g>
  3414. <g>
  3415. <polyline fill="none" :stroke="ajaxData.sbqsc322 ? red : green" stroke-width="1.3"
  3416. stroke-miterlimit="10"
  3417. points="662.98,641.031 656.156,648.751 649.138,641.031 "></polyline>
  3418. <polyline fill="none" :stroke="ajaxData.sbqsc322 ? red : green" stroke-width="1.3"
  3419. stroke-miterlimit="10"
  3420. points="662.98,635.183 656.156,642.901 649.138,635.183 "></polyline>
  3421. <polyline fill="none" :stroke="ajaxData.sbqsc322 ? red : green" stroke-width="1.3"
  3422. stroke-miterlimit="10"
  3423. points="649.138,603.517 655.962,595.794 662.98,603.517 "></polyline>
  3424. <polyline fill="none" :stroke="ajaxData.sbqsc322 ? red : green" stroke-width="1.3"
  3425. stroke-miterlimit="10"
  3426. points="649.138,596.356 655.962,588.634 662.98,596.356 "></polyline>
  3427. </g>
  3428. <g>
  3429. <polyline fill="none" :stroke="ajaxData.sbqsc329 ? red : green" stroke-width="1.3"
  3430. stroke-miterlimit="10"
  3431. points="728.36,610.517 735.186,602.794 742.201,610.517 "></polyline>
  3432. <polyline fill="none" :stroke="ajaxData.sbqsc329 ? red : green" stroke-width="1.3"
  3433. stroke-miterlimit="10"
  3434. points="728.36,603.356 735.186,595.634 742.201,603.356 "></polyline>
  3435. </g>
  3436. <g>
  3437. <polyline fill="none" :stroke="ajaxData.sbqsc323 ? red : green" stroke-width="1.3"
  3438. stroke-miterlimit="10"
  3439. points="822.031,641.031 815.21,648.751 808.189,641.031 "></polyline>
  3440. <polyline fill="none" :stroke="ajaxData.sbqsc323 ? red : green" stroke-width="1.3"
  3441. stroke-miterlimit="10"
  3442. points="822.031,635.183 815.21,642.901 808.189,635.183 "></polyline>
  3443. <polyline fill="none" :stroke="ajaxData.sbqsc323 ? red : green" stroke-width="1.3"
  3444. stroke-miterlimit="10"
  3445. points="808.189,603.517 815.013,595.794 822.031,603.517 "></polyline>
  3446. <polyline fill="none" :stroke="ajaxData.sbqsc323 ? red : green" stroke-width="1.3"
  3447. stroke-miterlimit="10"
  3448. points="808.189,596.356 815.013,588.634 822.031,596.356 "></polyline>
  3449. </g>
  3450. <g>
  3451. <polyline fill="none" :stroke="ajaxData.sbqsc324 ? red : green" stroke-width="1.3"
  3452. stroke-miterlimit="10"
  3453. points="901.073,641.031 894.254,648.751 887.232,641.031 "></polyline>
  3454. <polyline fill="none" :stroke="ajaxData.sbqsc324 ? red : green" stroke-width="1.3"
  3455. stroke-miterlimit="10"
  3456. points="901.073,635.183 894.254,642.901 887.232,635.183 "></polyline>
  3457. <polyline fill="none" :stroke="ajaxData.sbqsc324 ? red : green" stroke-width="1.3"
  3458. stroke-miterlimit="10"
  3459. points="887.232,603.517 894.057,595.794 901.073,603.517 "></polyline>
  3460. <polyline fill="none" :stroke="ajaxData.sbqsc324 ? red : green" stroke-width="1.3"
  3461. stroke-miterlimit="10"
  3462. points="887.232,596.356 894.057,588.634 901.073,596.356 "></polyline>
  3463. </g>
  3464. <g>
  3465. <polyline fill="none" :stroke="ajaxData.sbqsc331 ? red : green" stroke-width="1.3"
  3466. stroke-miterlimit="10"
  3467. points="1029.723,642.698 1022.901,650.417 1015.879,642.698 "></polyline>
  3468. <polyline fill="none" :stroke="ajaxData.sbqsc331 ? red : green" stroke-width="1.3"
  3469. stroke-miterlimit="10"
  3470. points="1029.723,636.849 1022.901,644.567 1015.879,636.849 "></polyline>
  3471. <polyline fill="none" :stroke="ajaxData.sbqsc331 ? red : green" stroke-width="1.3"
  3472. stroke-miterlimit="10"
  3473. points="1015.879,605.183 1022.701,597.46 1029.723,605.183 "></polyline>
  3474. <polyline fill="none" :stroke="ajaxData.sbqsc331 ? red : green" stroke-width="1.3"
  3475. stroke-miterlimit="10"
  3476. points="1015.879,598.021 1022.701,590.3 1029.723,598.021 "></polyline>
  3477. </g>
  3478. <g>
  3479. <polyline fill="none" :stroke="ajaxData.sbqsc332 ? red : green" stroke-width="1.3"
  3480. stroke-miterlimit="10"
  3481. points="1110.405,642.698 1103.583,650.417 1096.561,642.698 "></polyline>
  3482. <polyline fill="none" :stroke="ajaxData.sbqsc332 ? red : green" stroke-width="1.3"
  3483. stroke-miterlimit="10"
  3484. points="1110.405,636.849 1103.583,644.567 1096.561,636.849 "></polyline>
  3485. <polyline fill="none" :stroke="ajaxData.sbqsc332 ? red : green" stroke-width="1.3"
  3486. stroke-miterlimit="10"
  3487. points="1096.561,605.183 1103.385,597.46 1110.405,605.183 "></polyline>
  3488. <polyline fill="none" :stroke="ajaxData.sbqsc332 ? red : green" stroke-width="1.3"
  3489. stroke-miterlimit="10"
  3490. points="1096.561,598.021 1103.385,590.3 1110.405,598.021 "></polyline>
  3491. </g>
  3492. <g>
  3493. <polyline fill="none" :stroke="ajaxData.sbqsc334 ? red : green" stroke-width="1.3"
  3494. stroke-miterlimit="10"
  3495. points="1188.129,642.698 1181.307,650.417 1174.282,642.698 "></polyline>
  3496. <polyline fill="none" :stroke="ajaxData.sbqsc334 ? red : green" stroke-width="1.3"
  3497. stroke-miterlimit="10"
  3498. points="1188.129,636.849 1181.307,644.567 1174.282,636.849 "></polyline>
  3499. <polyline fill="none" :stroke="ajaxData.sbqsc334 ? red : green" stroke-width="1.3"
  3500. stroke-miterlimit="10"
  3501. points="1174.282,605.183 1181.109,597.46 1188.129,605.183 "></polyline>
  3502. <polyline fill="none" :stroke="ajaxData.sbqsc334 ? red : green" stroke-width="1.3"
  3503. stroke-miterlimit="10"
  3504. points="1174.282,598.021 1181.109,590.3 1188.129,598.021 "></polyline>
  3505. </g>
  3506. <g>
  3507. <polyline fill="none" :stroke="ajaxData.sbqsc339 ? red : green" stroke-width="1.3"
  3508. stroke-miterlimit="10"
  3509. points="1253.758,612.183 1260.581,604.46 1267.602,612.183 "></polyline>
  3510. <polyline fill="none" :stroke="ajaxData.sbqsc339 ? red : green" stroke-width="1.3"
  3511. stroke-miterlimit="10"
  3512. points="1253.758,605.021 1260.581,597.3 1267.602,605.021 "></polyline>
  3513. </g>
  3514. <g>
  3515. <polyline fill="none" :stroke="ajaxData.sbqsc351 ? red : green" stroke-width="1.3"
  3516. stroke-miterlimit="10"
  3517. points="1493.598,642.698 1486.773,650.417 1479.753,642.698 "></polyline>
  3518. <polyline fill="none" :stroke="ajaxData.sbqsc351 ? red : green" stroke-width="1.3"
  3519. stroke-miterlimit="10"
  3520. points="1493.598,636.849 1486.773,644.567 1479.753,636.849 "></polyline>
  3521. <polyline fill="none" :stroke="ajaxData.sbqsc351 ? red : green" stroke-width="1.3"
  3522. stroke-miterlimit="10"
  3523. points="1479.753,605.183 1486.574,597.46 1493.598,605.183 "></polyline>
  3524. <polyline fill="none" :stroke="ajaxData.sbqsc351 ? red : green" stroke-width="1.3"
  3525. stroke-miterlimit="10"
  3526. points="1479.753,598.021 1486.574,590.3 1493.598,598.021 "></polyline>
  3527. </g>
  3528. <g>
  3529. <polyline fill="none" :stroke="ajaxData.sbqsc352 ? red : green" stroke-width="1.3"
  3530. stroke-miterlimit="10"
  3531. points="1572.686,642.698 1565.863,650.417 1558.842,642.698 "></polyline>
  3532. <polyline fill="none" :stroke="ajaxData.sbqsc352 ? red : green" stroke-width="1.3"
  3533. stroke-miterlimit="10"
  3534. points="1572.686,636.849 1565.863,644.567 1558.842,636.849 "></polyline>
  3535. <polyline fill="none" :stroke="ajaxData.sbqsc352 ? red : green" stroke-width="1.3"
  3536. stroke-miterlimit="10"
  3537. points="1558.842,605.183 1565.665,597.46 1572.686,605.183 "></polyline>
  3538. <polyline fill="none" :stroke="ajaxData.sbqsc352 ? red : green" stroke-width="1.3"
  3539. stroke-miterlimit="10"
  3540. points="1558.842,598.021 1565.665,590.3 1572.686,598.021 "></polyline>
  3541. </g>
  3542. <g>
  3543. <polyline fill="none" :stroke="ajaxData.sbqsc353 ? red : green" stroke-width="1.3"
  3544. stroke-miterlimit="10"
  3545. points="1653.883,642.698 1647.061,650.417 1640.036,642.698 "></polyline>
  3546. <polyline fill="none" :stroke="ajaxData.sbqsc353 ? red : green" stroke-width="1.3"
  3547. stroke-miterlimit="10"
  3548. points="1653.883,636.849 1647.061,644.567 1640.036,636.849 "></polyline>
  3549. <polyline fill="none" :stroke="ajaxData.sbqsc353 ? red : green" stroke-width="1.3"
  3550. stroke-miterlimit="10"
  3551. points="1640.036,605.183 1646.863,597.46 1653.883,605.183 "></polyline>
  3552. <polyline fill="none" :stroke="ajaxData.sbqsc353 ? red : green" stroke-width="1.3"
  3553. stroke-miterlimit="10"
  3554. points="1640.036,598.021 1646.863,590.3 1653.883,598.021 "></polyline>
  3555. </g>
  3556. <g>
  3557. <polyline fill="none" :stroke="ajaxData.sbqsc354 ? red : green" stroke-width="1.3"
  3558. stroke-miterlimit="10"
  3559. points="1732.398,642.698 1725.573,650.417 1718.555,642.698 "></polyline>
  3560. <polyline fill="none" :stroke="ajaxData.sbqsc354 ? red : green" stroke-width="1.3"
  3561. stroke-miterlimit="10"
  3562. points="1732.398,636.849 1725.573,644.567 1718.555,636.849 "></polyline>
  3563. <polyline fill="none" :stroke="ajaxData.sbqsc354 ? red : green" stroke-width="1.3"
  3564. stroke-miterlimit="10"
  3565. points="1718.555,605.183 1725.379,597.46 1732.398,605.183 "></polyline>
  3566. <polyline fill="none" :stroke="ajaxData.sbqsc354 ? red : green" stroke-width="1.3"
  3567. stroke-miterlimit="10"
  3568. points="1718.555,598.021 1725.379,590.3 1732.398,598.021 "></polyline>
  3569. </g>
  3570. <g>
  3571. <polyline fill="none" :stroke="ajaxData.sbqsc359 ? red : green" stroke-width="1.3"
  3572. stroke-miterlimit="10"
  3573. points="1797.821,612.183 1804.646,604.46 1811.665,612.183 "></polyline>
  3574. <polyline fill="none" :stroke="ajaxData.sbqsc359 ? red : green" stroke-width="1.3"
  3575. stroke-miterlimit="10"
  3576. points="1797.821,605.021 1804.646,597.3 1811.665,605.021 "></polyline>
  3577. </g>
  3578. <g>
  3579. <!--灰色-->
  3580. <polyline fill="none" stroke="#AAA9A9" stroke-width="1.3" stroke-miterlimit="10"
  3581. points="1405.915,642.698 1399.093,650.417 1392.071,642.698 "></polyline>
  3582. <polyline fill="none" stroke="#AAA9A9" stroke-width="1.3" stroke-miterlimit="10"
  3583. points="1405.915,636.849 1399.093,644.567 1392.071,636.849 "></polyline>
  3584. <polyline fill="none" stroke="#AAA9A9" stroke-width="1.3" stroke-miterlimit="10"
  3585. points="1392.071,605.183 1398.896,597.46 1405.915,605.183 "></polyline>
  3586. <polyline fill="none" stroke="#AAA9A9" stroke-width="1.3" stroke-miterlimit="10"
  3587. points="1392.071,598.021 1398.896,590.3 1405.915,598.021 "></polyline>
  3588. </g>
  3589. </g>
  3590. <g id="kg">
  3591. <g id="sbqkg1033">
  3592. <g v-if="ajaxData.sbqkg1033" id="off_41_">
  3593. <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
  3594. x1="1214.279" y1="393.884" x2="1231.547" y2="393.884"></line>
  3595. <path fill="#9E2224"
  3596. d="M1223.422,407.899c1.418,0,2.571,1.157,2.571,2.573s-1.155,2.57-2.571,2.57 c-1.421,0-2.574-1.156-2.574-2.57C1220.844,409.056,1221.999,407.899,1223.422,407.899 M1223.422,405.865 c-2.546,0-4.605,2.063-4.605,4.604c0,2.543,2.063,4.604,4.605,4.604c2.545,0,4.604-2.062,4.604-4.604 C1228.025,407.929,1225.965,405.865,1223.422,405.865L1223.422,405.865z">
  3597. </path>
  3598. <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
  3599. x1="1223.422" y1="394.11" x2="1223.422" y2="406.862"></line>
  3600. </g>
  3601. <g v-else-if="ajaxData.sbqkg1033 == false" id="on_41_">
  3602. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  3603. x1="1214.279" y1="393.884" x2="1231.547" y2="393.884"></line>
  3604. <path fill="#27963A"
  3605. d="M1223.422,407.899c1.418,0,2.571,1.157,2.571,2.573s-1.155,2.57-2.571,2.57 c-1.421,0-2.574-1.156-2.574-2.57C1220.844,409.056,1221.999,407.899,1223.422,407.899 M1223.422,405.865 c-2.546,0-4.605,2.063-4.605,4.604c0,2.543,2.063,4.604,4.605,4.604c2.545,0,4.604-2.062,4.604-4.604 C1228.025,407.929,1225.965,405.865,1223.422,405.865L1223.422,405.865z">
  3606. </path>
  3607. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  3608. x1="1229.876" y1="396.044" x2="1222.911" y2="406.862"></line>
  3609. </g>
  3610. </g>
  3611. <g id="sbqkg1110">
  3612. <g v-if="ajaxData.sbqkg1110" id="off_27_">
  3613. <line fill="none" stroke="#9F2324" stroke-width="2.5" stroke-miterlimit="10"
  3614. x1="297.736" y1="125.034" x2="297.736" y2="107.769"></line>
  3615. <path fill="#9F2324"
  3616. d="M314.324,118.466c-1.423,0-2.573-1.154-2.573-2.568c0-1.422,1.156-2.571,2.573-2.571 s2.569,1.155,2.569,2.571C316.897,117.313,315.743,118.466,314.324,118.466 M314.324,120.497c2.544,0,4.603-2.063,4.603-4.604 s-2.06-4.604-4.603-4.604c-2.546,0-4.604,2.063-4.604,4.604C309.72,118.44,311.78,120.497,314.324,120.497L314.324,120.497z">
  3617. </path>
  3618. <line fill="none" stroke="#9F2324" stroke-width="2" stroke-miterlimit="10"
  3619. x1="297.96" y1="115.894" x2="310.711" y2="115.894"></line>
  3620. </g>
  3621. <g v-else-if="ajaxData.sbqkg1110 == false" id="on_27_">
  3622. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  3623. x1="297.736" y1="125.034" x2="297.736" y2="107.769"></line>
  3624. <path fill="#27963A"
  3625. d="M314.324,118.466c-1.423,0-2.576-1.154-2.576-2.568c0-1.422,1.154-2.571,2.576-2.571 c1.419,0,2.569,1.155,2.569,2.571C316.897,117.313,315.743,118.466,314.324,118.466 M314.324,120.497 c2.543,0,4.603-2.063,4.603-4.604s-2.06-4.604-4.603-4.604c-2.547,0-4.607,2.063-4.607,4.604 C309.717,118.44,311.78,120.497,314.324,120.497L314.324,120.497z">
  3626. </path>
  3627. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  3628. x1="299.894" y1="109.435" x2="310.711" y2="116.401"></line>
  3629. </g>
  3630. </g>
  3631. <g id="sbqkg11102">
  3632. <g v-if="ajaxData.sbqkg11102" id="off_2_">
  3633. <line fill="none" stroke="#9F2324" stroke-width="2.5" stroke-miterlimit="10"
  3634. x1="297.736" y1="217.534" x2="297.736" y2="200.269"></line>
  3635. <path fill="#9F2324"
  3636. d="M314.324,210.966c-1.423,0-2.573-1.154-2.573-2.568c0-1.422,1.156-2.571,2.573-2.571 s2.569,1.155,2.569,2.571C316.897,209.813,315.743,210.966,314.324,210.966 M314.324,212.997c2.544,0,4.603-2.063,4.603-4.604 s-2.06-4.604-4.603-4.604c-2.546,0-4.604,2.063-4.604,4.604C309.72,210.94,311.78,212.997,314.324,212.997L314.324,212.997z">
  3637. </path>
  3638. <line fill="none" stroke="#9F2324" stroke-width="2" stroke-miterlimit="10"
  3639. x1="297.96" y1="208.394" x2="310.711" y2="208.394"></line>
  3640. </g>
  3641. <g v-else-if="ajaxData.sbqkg11102 == false" id="on_2_">
  3642. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  3643. x1="296.741" y1="217.027" x2="296.741" y2="199.761"></line>
  3644. <path fill="#27963A"
  3645. d="M313.33,210.458c-1.421,0-2.576-1.154-2.576-2.568c0-1.422,1.156-2.573,2.576-2.573 c1.419,0,2.569,1.157,2.569,2.573C315.903,209.305,314.749,210.458,313.33,210.458 M313.33,212.49 c2.543,0,4.603-2.062,4.603-4.604s-2.06-4.604-4.603-4.604c-2.545,0-4.607,2.063-4.607,4.604 C308.723,210.432,310.785,212.49,313.33,212.49L313.33,212.49z">
  3646. </path>
  3647. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  3648. x1="298.9" y1="201.427" x2="309.717" y2="208.393"></line>
  3649. </g>
  3650. </g>
  3651. <g id="sbqkg11103">
  3652. <g v-if="ajaxData.sbqkg11103" id="off_1_">
  3653. <line fill="none" stroke="#9F2324" stroke-width="2.5" stroke-miterlimit="10"
  3654. x1="253.269" y1="151.931" x2="253.269" y2="169.196"></line>
  3655. <path fill="#9F2324"
  3656. d="M236.681,158.499c1.42,0,2.573,1.151,2.573,2.565c0,1.422-1.156,2.574-2.573,2.574 s-2.572-1.158-2.572-2.574C234.108,159.651,235.262,158.499,236.681,158.499 M236.681,156.468c-2.544,0-4.603,2.061-4.603,4.604 s2.06,4.604,4.603,4.604s4.604-2.063,4.604-4.604C241.285,158.524,239.225,156.468,236.681,156.468L236.681,156.468z">
  3657. </path>
  3658. <line fill="none" stroke="#9F2324" stroke-width="2" stroke-miterlimit="10"
  3659. x1="253.045" y1="161.071" x2="240.294" y2="161.071"></line>
  3660. </g>
  3661. <g v-else-if="ajaxData.sbqkg11103 == false" id="on_1_">
  3662. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  3663. x1="253.269" y1="151.931" x2="253.269" y2="169.196"></line>
  3664. <path fill="#27963A"
  3665. d="M236.681,158.499c1.42,0,2.576,1.151,2.576,2.565c0,1.422-1.157,2.574-2.576,2.574 s-2.572-1.158-2.572-2.574C234.108,159.651,235.262,158.499,236.681,158.499 M236.681,156.468c-2.543,0-4.603,2.061-4.603,4.604 s2.06,4.604,4.603,4.604c2.544,0,4.607-2.063,4.607-4.604C241.288,158.524,239.225,156.468,236.681,156.468L236.681,156.468z">
  3666. </path>
  3667. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  3668. x1="251.111" y1="167.53" x2="240.294" y2="160.563"></line>
  3669. </g>
  3670. </g>
  3671. <g id="sbqkg111011">
  3672. <g v-if="ajaxData.sbqkg111011" id="off_4_">
  3673. <line fill="none" stroke="#9F2324" stroke-width="2.5" stroke-miterlimit="10"
  3674. x1="253.269" y1="251.636" x2="253.269" y2="268.901"></line>
  3675. <path fill="#9F2324"
  3676. d="M236.681,258.204c1.42,0,2.573,1.151,2.573,2.565c0,1.422-1.156,2.574-2.573,2.574 s-2.572-1.158-2.572-2.574C234.108,259.356,235.262,258.204,236.681,258.204 M236.681,256.173c-2.544,0-4.603,2.061-4.603,4.604 s2.06,4.604,4.603,4.604s4.604-2.063,4.604-4.604C241.285,258.229,239.225,256.173,236.681,256.173L236.681,256.173z">
  3677. </path>
  3678. <line fill="none" stroke="#9F2324" stroke-width="2" stroke-miterlimit="10"
  3679. x1="253.045" y1="260.776" x2="240.294" y2="260.776"></line>
  3680. </g>
  3681. <g v-else-if="ajaxData.sbqkg111011 == false" id="on_4_">
  3682. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  3683. x1="253.269" y1="251.636" x2="253.269" y2="268.901"></line>
  3684. <path fill="#27963A"
  3685. d="M236.681,258.204c1.42,0,2.576,1.151,2.576,2.565c0,1.422-1.157,2.574-2.576,2.574 s-2.572-1.158-2.572-2.574C234.108,259.356,235.262,258.204,236.681,258.204 M236.681,256.173c-2.543,0-4.603,2.061-4.603,4.604 s2.06,4.604,4.603,4.604c2.544,0,4.607-2.063,4.607-4.604C241.288,258.229,239.225,256.173,236.681,256.173L236.681,256.173z">
  3686. </path>
  3687. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  3688. x1="251.111" y1="267.235" x2="240.294" y2="260.269"></line>
  3689. </g>
  3690. </g>
  3691. <g id="sbqkg1113">
  3692. <g v-if="ajaxData.sbqkg1113" id="off_25_">
  3693. <line fill="none" stroke="#9F2324" stroke-width="2.5" stroke-miterlimit="10"
  3694. x1="265.855" y1="129.855" x2="283.119" y2="129.855"></line>
  3695. <path fill="#9F2324"
  3696. d="M274.994,143.871c1.418,0,2.571,1.153,2.571,2.569c0,1.418-1.154,2.571-2.571,2.571 c-1.423,0-2.573-1.155-2.573-2.571S273.573,143.871,274.994,143.871 M274.994,141.842c-2.548,0-4.604,2.061-4.604,4.604 c0,2.548,2.063,4.604,4.604,4.604c2.545,0,4.604-2.063,4.604-4.604C279.599,143.898,277.539,141.842,274.994,141.842 L274.994,141.842z">
  3697. </path>
  3698. <line fill="none" stroke="#9F2324" stroke-width="2" stroke-miterlimit="10"
  3699. x1="274.994" y1="130.084" x2="274.994" y2="142.832"></line>
  3700. </g>
  3701. <g v-else-if="ajaxData.sbqkg1113 == false" id="on_25_">
  3702. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  3703. x1="265.855" y1="129.855" x2="283.119" y2="129.855"></line>
  3704. <path fill="#27963A"
  3705. d="M274.994,143.871c1.418,0,2.571,1.153,2.571,2.569c0,1.422-1.154,2.571-2.571,2.571 c-1.423,0-2.573-1.155-2.573-2.571C272.418,145.023,273.573,143.871,274.994,143.871 M274.994,141.842 c-2.548,0-4.604,2.061-4.604,4.604s2.063,4.604,4.604,4.604c2.545,0,4.604-2.063,4.604-4.604S277.539,141.842,274.994,141.842 L274.994,141.842z">
  3706. </path>
  3707. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  3708. x1="281.45" y1="132.018" x2="274.487" y2="142.832"></line>
  3709. </g>
  3710. </g>
  3711. <g id="sbqkg1111">
  3712. <g v-if="ajaxData.sbqkg1111" id="off_3_">
  3713. <line fill="none" stroke="#9F2324" stroke-width="2.5" stroke-miterlimit="10"
  3714. x1="265.855" y1="220.917" x2="283.119" y2="220.917"></line>
  3715. <path fill="#9F2324"
  3716. d="M274.994,234.933c1.418,0,2.571,1.156,2.571,2.572c0,1.418-1.154,2.571-2.571,2.571 c-1.423,0-2.573-1.155-2.573-2.571S273.573,234.933,274.994,234.933 M274.994,232.903c-2.548,0-4.604,2.063-4.604,4.604 c0,2.545,2.063,4.604,4.604,4.604c2.545,0,4.604-2.062,4.604-4.604C279.599,234.96,277.539,232.903,274.994,232.903 L274.994,232.903z">
  3717. </path>
  3718. <line fill="none" stroke="#9F2324" stroke-width="2" stroke-miterlimit="10"
  3719. x1="274.994" y1="221.146" x2="274.994" y2="233.894"></line>
  3720. </g>
  3721. <g v-else-if="ajaxData.sbqkg1111 == false" id="on_3_">
  3722. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  3723. x1="265.855" y1="220.917" x2="283.119" y2="220.917"></line>
  3724. <path fill="#27963A"
  3725. d="M274.994,234.933c1.418,0,2.571,1.156,2.571,2.572c0,1.422-1.154,2.571-2.571,2.571 c-1.423,0-2.573-1.155-2.573-2.571C272.418,236.085,273.573,234.933,274.994,234.933 M274.994,232.903 c-2.548,0-4.604,2.063-4.604,4.604s2.063,4.604,4.604,4.604c2.545,0,4.604-2.062,4.604-4.604S277.539,232.903,274.994,232.903 L274.994,232.903z">
  3726. </path>
  3727. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  3728. x1="281.45" y1="223.079" x2="274.487" y2="233.894"></line>
  3729. </g>
  3730. </g>
  3731. <g id="sbqkg1210">
  3732. <g v-if="ajaxData.sbqkg1210" id="off_10_">
  3733. <line fill="none" stroke="#9F2324" stroke-width="2.5" stroke-miterlimit="10"
  3734. x1="961.047" y1="125.034" x2="961.047" y2="107.769"></line>
  3735. <path fill="#9F2324"
  3736. d="M977.635,118.466c-1.42,0-2.572-1.154-2.572-2.568c0-1.422,1.156-2.571,2.572-2.571 c1.418,0,2.569,1.155,2.569,2.571C980.208,117.313,979.055,118.466,977.635,118.466 M977.635,120.497 c2.545,0,4.604-2.063,4.604-4.604s-2.062-4.604-4.604-4.604s-4.604,2.063-4.604,4.604 C973.031,118.44,975.091,120.497,977.635,120.497L977.635,120.497z">
  3737. </path>
  3738. <line fill="none" stroke="#9F2324" stroke-width="2" stroke-miterlimit="10"
  3739. x1="961.271" y1="115.894" x2="974.021" y2="115.894"></line>
  3740. </g>
  3741. <g v-else-if="ajaxData.sbqkg1210 == false" id="on_10_">
  3742. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  3743. x1="961.047" y1="125.034" x2="961.047" y2="107.769"></line>
  3744. <path fill="#27963A"
  3745. d="M977.635,118.466c-1.42,0-2.576-1.154-2.576-2.568c0-1.422,1.157-2.571,2.576-2.571 c1.42,0,2.569,1.155,2.569,2.571C980.208,117.313,979.055,118.466,977.635,118.466 M977.635,120.497 c2.543,0,4.604-2.063,4.604-4.604s-2.062-4.604-4.604-4.604c-2.544,0-4.605,2.063-4.605,4.604 C973.028,118.44,975.091,120.497,977.635,120.497L977.635,120.497z">
  3746. </path>
  3747. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  3748. x1="963.202" y1="109.435" x2="974.021" y2="116.401"></line>
  3749. </g>
  3750. </g>
  3751. <g id="sbqkg12102">
  3752. <g v-if="ajaxData.sbqkg12102" id="off_9_">
  3753. <line fill="none" stroke="#9F2324" stroke-width="2.5" stroke-miterlimit="10"
  3754. x1="961.047" y1="218.001" x2="961.047" y2="200.736"></line>
  3755. <path fill="#9F2324"
  3756. d="M977.635,211.433c-1.42,0-2.572-1.154-2.572-2.568c0-1.422,1.156-2.571,2.572-2.571 c1.418,0,2.569,1.157,2.569,2.571C980.208,210.28,979.055,211.433,977.635,211.433 M977.635,213.464 c2.545,0,4.604-2.063,4.604-4.604s-2.062-4.604-4.604-4.604s-4.604,2.063-4.604,4.604 C973.031,211.406,975.091,213.464,977.635,213.464L977.635,213.464z">
  3757. </path>
  3758. <line fill="none" stroke="#9F2324" stroke-width="2" stroke-miterlimit="10"
  3759. x1="961.271" y1="208.861" x2="974.021" y2="208.861"></line>
  3760. </g>
  3761. <g v-else-if="ajaxData.sbqkg12102 == false" id="on_9_">
  3762. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  3763. x1="961.047" y1="218.001" x2="961.047" y2="200.736"></line>
  3764. <path fill="#27963A"
  3765. d="M977.635,211.433c-1.42,0-2.576-1.154-2.576-2.568c0-1.422,1.157-2.571,2.576-2.571 c1.42,0,2.569,1.157,2.569,2.571C980.208,210.28,979.055,211.433,977.635,211.433 M977.635,213.464 c2.543,0,4.604-2.063,4.604-4.604s-2.062-4.604-4.604-4.604c-2.544,0-4.605,2.063-4.605,4.604 C973.028,211.406,975.091,213.464,977.635,213.464L977.635,213.464z">
  3766. </path>
  3767. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  3768. x1="963.202" y1="202.402" x2="974.021" y2="209.367"></line>
  3769. </g>
  3770. </g>
  3771. <g id="sbqkg12103">
  3772. <g v-if="ajaxData.sbqkg12103" id="off_8_">
  3773. <line fill="none" stroke="#9F2324" stroke-width="2.5" stroke-miterlimit="10"
  3774. x1="916.577" y1="151.931" x2="916.577" y2="169.196"></line>
  3775. <path fill="#9F2324"
  3776. d="M899.99,158.499c1.42,0,2.572,1.151,2.572,2.565c0,1.422-1.155,2.574-2.572,2.574 s-2.569-1.158-2.569-2.574C897.419,159.651,898.573,158.499,899.99,158.499 M899.99,156.468c-2.544,0-4.604,2.061-4.604,4.604 s2.061,4.604,4.604,4.604s4.604-2.063,4.604-4.604C904.596,158.524,902.533,156.468,899.99,156.468L899.99,156.468z">
  3777. </path>
  3778. <line fill="none" stroke="#9F2324" stroke-width="2" stroke-miterlimit="10"
  3779. x1="916.355" y1="161.071" x2="903.605" y2="161.071"></line>
  3780. </g>
  3781. <g v-else-if="ajaxData.sbqkg12103 == false" id="on_8_">
  3782. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  3783. x1="916.577" y1="151.931" x2="916.577" y2="169.196"></line>
  3784. <path fill="#27963A"
  3785. d="M899.99,158.499c1.42,0,2.576,1.151,2.576,2.565c0,1.422-1.157,2.574-2.576,2.574 s-2.569-1.158-2.569-2.574C897.419,159.651,898.573,158.499,899.99,158.499 M899.99,156.468c-2.543,0-4.604,2.061-4.604,4.604 s2.061,4.604,4.604,4.604c2.544,0,4.606-2.063,4.606-4.604C904.599,158.524,902.533,156.468,899.99,156.468L899.99,156.468z">
  3786. </path>
  3787. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  3788. x1="914.422" y1="167.53" x2="903.605" y2="160.563"></line>
  3789. </g>
  3790. </g>
  3791. <g id="sbqkg121012">
  3792. <g v-if="ajaxData.sbqkg121012" id="off_7_">
  3793. <line fill="none" stroke="#9F2324" stroke-width="2.5" stroke-miterlimit="10"
  3794. x1="916.577" y1="251.636" x2="916.577" y2="268.901"></line>
  3795. <path fill="#9F2324"
  3796. d="M899.99,258.204c1.42,0,2.572,1.151,2.572,2.565c0,1.422-1.155,2.574-2.572,2.574 s-2.569-1.158-2.569-2.574C897.419,259.356,898.573,258.204,899.99,258.204 M899.99,256.173c-2.544,0-4.604,2.061-4.604,4.604 s2.061,4.604,4.604,4.604s4.604-2.063,4.604-4.604C904.596,258.229,902.533,256.173,899.99,256.173L899.99,256.173z">
  3797. </path>
  3798. <line fill="none" stroke="#9F2324" stroke-width="2" stroke-miterlimit="10"
  3799. x1="916.355" y1="260.776" x2="903.605" y2="260.776"></line>
  3800. </g>
  3801. <g v-else-if="ajaxData.sbqkg121012 == false" id="on_7_">
  3802. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  3803. x1="916.577" y1="251.636" x2="916.577" y2="268.901"></line>
  3804. <path fill="#27963A"
  3805. d="M899.99,258.204c1.42,0,2.576,1.151,2.576,2.565c0,1.422-1.157,2.574-2.576,2.574 s-2.569-1.158-2.569-2.574C897.419,259.356,898.573,258.204,899.99,258.204 M899.99,256.173c-2.543,0-4.604,2.061-4.604,4.604 s2.061,4.604,4.604,4.604c2.544,0,4.606-2.063,4.606-4.604C904.599,258.229,902.533,256.173,899.99,256.173L899.99,256.173z">
  3806. </path>
  3807. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  3808. x1="914.422" y1="267.235" x2="903.605" y2="260.269"></line>
  3809. </g>
  3810. </g>
  3811. <g id="sbqkg1213">
  3812. <g v-if="ajaxData.sbqkg1213" id="off_6_">
  3813. <line fill="none" stroke="#9F2324" stroke-width="2.5" stroke-miterlimit="10"
  3814. x1="929.167" y1="129.855" x2="946.43" y2="129.855"></line>
  3815. <path fill="#9F2324"
  3816. d="M938.305,143.871c1.418,0,2.574,1.153,2.574,2.569c0,1.418-1.156,2.571-2.574,2.571 c-1.42,0-2.572-1.155-2.572-2.571S936.885,143.871,938.305,143.871 M938.305,141.842c-2.545,0-4.604,2.061-4.604,4.604 c0,2.548,2.063,4.604,4.604,4.604c2.545,0,4.604-2.063,4.604-4.604C942.907,143.898,940.85,141.842,938.305,141.842 L938.305,141.842z">
  3817. </path>
  3818. <line fill="none" stroke="#9F2324" stroke-width="2" stroke-miterlimit="10"
  3819. x1="938.305" y1="130.084" x2="938.305" y2="142.832"></line>
  3820. </g>
  3821. <g v-else-if="ajaxData.sbqkg1213 == false" id="on_6_">
  3822. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  3823. x1="929.167" y1="129.855" x2="946.43" y2="129.855"></line>
  3824. <path fill="#27963A"
  3825. d="M938.305,143.871c1.418,0,2.574,1.153,2.574,2.569c0,1.422-1.156,2.571-2.574,2.571 c-1.42,0-2.572-1.155-2.572-2.571C935.729,145.023,936.885,143.871,938.305,143.871 M938.305,141.842 c-2.545,0-4.604,2.061-4.604,4.604s2.063,4.604,4.604,4.604c2.545,0,4.604-2.063,4.604-4.604S940.85,141.842,938.305,141.842 L938.305,141.842z">
  3826. </path>
  3827. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  3828. x1="944.762" y1="132.018" x2="937.799" y2="142.832"></line>
  3829. </g>
  3830. </g>
  3831. <g id="sbqkg1212">
  3832. <g v-if="ajaxData.sbqkg1212" id="off_5_">
  3833. <line fill="none" stroke="#9F2324" stroke-width="2.5" stroke-miterlimit="10"
  3834. x1="929.167" y1="220.917" x2="946.43" y2="220.917"></line>
  3835. <path fill="#9F2324"
  3836. d="M938.305,234.933c1.418,0,2.574,1.156,2.574,2.572c0,1.418-1.156,2.571-2.574,2.571 c-1.42,0-2.572-1.155-2.572-2.571S936.885,234.933,938.305,234.933 M938.305,232.903c-2.545,0-4.604,2.063-4.604,4.604 c0,2.545,2.063,4.604,4.604,4.604c2.545,0,4.604-2.062,4.604-4.604C942.907,234.96,940.85,232.903,938.305,232.903 L938.305,232.903z">
  3837. </path>
  3838. <line fill="none" stroke="#9F2324" stroke-width="2" stroke-miterlimit="10"
  3839. x1="938.305" y1="221.146" x2="938.305" y2="233.894"></line>
  3840. </g>
  3841. <g v-else-if="ajaxData.sbqkg1212 == false" id="on_5_">
  3842. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  3843. x1="929.167" y1="220.917" x2="946.43" y2="220.917"></line>
  3844. <path fill="#27963A"
  3845. d="M938.305,234.933c1.418,0,2.574,1.156,2.574,2.572c0,1.422-1.156,2.571-2.574,2.571 c-1.42,0-2.572-1.155-2.572-2.571C935.729,236.085,936.885,234.933,938.305,234.933 M938.305,232.903 c-2.545,0-4.604,2.063-4.604,4.604s2.063,4.604,4.604,4.604c2.545,0,4.604-2.062,4.604-4.604S940.85,232.903,938.305,232.903 L938.305,232.903z">
  3846. </path>
  3847. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  3848. x1="944.762" y1="223.079" x2="937.799" y2="233.894"></line>
  3849. </g>
  3850. </g>
  3851. <g id="sbqkg1510">
  3852. <g v-if="ajaxData.sbqkg1510" id="off_16_">
  3853. <line fill="none" stroke="#9F2324" stroke-width="2.5" stroke-miterlimit="10"
  3854. x1="1675.756" y1="125.034" x2="1675.756" y2="107.769"></line>
  3855. <path fill="#9F2324"
  3856. d="M1692.344,118.466c-1.42,0-2.572-1.154-2.572-2.568c0-1.422,1.156-2.571,2.572-2.571 c1.418,0,2.571,1.155,2.571,2.571C1694.917,117.313,1693.764,118.466,1692.344,118.466 M1692.344,120.497 c2.545,0,4.604-2.063,4.604-4.604s-2.062-4.604-4.604-4.604s-4.604,2.063-4.604,4.604 C1687.74,118.44,1689.8,120.497,1692.344,120.497L1692.344,120.497z">
  3857. </path>
  3858. <line fill="none" stroke="#9F2324" stroke-width="2" stroke-miterlimit="10"
  3859. x1="1675.98" y1="115.894" x2="1688.73" y2="115.894"></line>
  3860. </g>
  3861. <g v-else-if="ajaxData.sbqkg1510 == false" id="on_16_">
  3862. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  3863. x1="1675.756" y1="125.034" x2="1675.756" y2="107.769"></line>
  3864. <path fill="#27963A"
  3865. d="M1692.344,118.466c-1.42,0-2.576-1.154-2.576-2.568c0-1.422,1.157-2.571,2.576-2.571 c1.42,0,2.571,1.155,2.571,2.571C1694.917,117.313,1693.764,118.466,1692.344,118.466 M1692.344,120.497 c2.543,0,4.604-2.063,4.604-4.604s-2.062-4.604-4.604-4.604c-2.544,0-4.605,2.063-4.605,4.604 C1687.737,118.44,1689.8,120.497,1692.344,120.497L1692.344,120.497z">
  3866. </path>
  3867. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  3868. x1="1677.911" y1="109.435" x2="1688.73" y2="116.401"></line>
  3869. </g>
  3870. </g>
  3871. <g id="sbqkg15105">
  3872. <g v-if="ajaxData.sbqkg15105" id="off_15_">
  3873. <line fill="none" stroke="#9F2324" stroke-width="2.5" stroke-miterlimit="10"
  3874. x1="1675.756" y1="217.534" x2="1675.756" y2="200.269"></line>
  3875. <path fill="#9F2324"
  3876. d="M1692.344,210.966c-1.42,0-2.572-1.154-2.572-2.568c0-1.422,1.156-2.571,2.572-2.571 c1.418,0,2.571,1.155,2.571,2.571C1694.917,209.813,1693.764,210.966,1692.344,210.966 M1692.344,212.997 c2.545,0,4.604-2.063,4.604-4.604s-2.062-4.604-4.604-4.604s-4.604,2.063-4.604,4.604 C1687.74,210.94,1689.8,212.997,1692.344,212.997L1692.344,212.997z">
  3877. </path>
  3878. <line fill="none" stroke="#9F2324" stroke-width="2" stroke-miterlimit="10"
  3879. x1="1675.98" y1="208.394" x2="1688.73" y2="208.394"></line>
  3880. </g>
  3881. <g v-else-if="ajaxData.sbqkg15105 == false" id="on_15_">
  3882. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  3883. x1="1675.756" y1="217.534" x2="1675.756" y2="200.269"></line>
  3884. <path fill="#27963A"
  3885. d="M1692.344,210.966c-1.42,0-2.576-1.154-2.576-2.568c0-1.422,1.157-2.571,2.576-2.571 c1.42,0,2.571,1.155,2.571,2.571C1694.917,209.813,1693.764,210.966,1692.344,210.966 M1692.344,212.997 c2.543,0,4.604-2.063,4.604-4.604s-2.062-4.604-4.604-4.604c-2.544,0-4.605,2.063-4.605,4.604 C1687.737,210.94,1689.8,212.997,1692.344,212.997L1692.344,212.997z">
  3886. </path>
  3887. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  3888. x1="1677.911" y1="201.935" x2="1688.73" y2="208.901"></line>
  3889. </g>
  3890. </g>
  3891. <g id="sbqkg15103">
  3892. <g v-if="ajaxData.sbqkg15103" id="off_14_">
  3893. <line fill="none" stroke="#9F2324" stroke-width="2.5" stroke-miterlimit="10"
  3894. x1="1631.286" y1="151.931" x2="1631.286" y2="169.196"></line>
  3895. <path fill="#9F2324"
  3896. d="M1614.698,158.499c1.42,0,2.572,1.151,2.572,2.565c0,1.422-1.156,2.574-2.572,2.574 c-1.418,0-2.57-1.158-2.57-2.574C1612.128,159.651,1613.281,158.499,1614.698,158.499 M1614.698,156.468 c-2.545,0-4.604,2.061-4.604,4.604s2.061,4.604,4.604,4.604s4.604-2.063,4.604-4.604 C1619.305,158.524,1617.242,156.468,1614.698,156.468L1614.698,156.468z">
  3897. </path>
  3898. <line fill="none" stroke="#9F2324" stroke-width="2" stroke-miterlimit="10"
  3899. x1="1631.064" y1="161.071" x2="1618.314" y2="161.071"></line>
  3900. </g>
  3901. <g v-else-if="ajaxData.sbqkg15103 == false" id="on_14_">
  3902. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  3903. x1="1631.286" y1="151.931" x2="1631.286" y2="169.196"></line>
  3904. <path fill="#27963A"
  3905. d="M1614.698,158.499c1.42,0,2.576,1.151,2.576,2.565c0,1.422-1.156,2.574-2.576,2.574 s-2.57-1.158-2.57-2.574C1612.128,159.651,1613.281,158.499,1614.698,158.499 M1614.698,156.468 c-2.543,0-4.604,2.061-4.604,4.604s2.061,4.604,4.604,4.604c2.544,0,4.605-2.063,4.605-4.604 C1619.309,158.524,1617.242,156.468,1614.698,156.468L1614.698,156.468z">
  3906. </path>
  3907. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  3908. x1="1629.131" y1="167.53" x2="1618.314" y2="160.563"></line>
  3909. </g>
  3910. </g>
  3911. <g id="sbqkg151012">
  3912. <g v-if="ajaxData.sbqkg151012" id="off_13_">
  3913. <line fill="none" stroke="#9F2324" stroke-width="2.5" stroke-miterlimit="10"
  3914. x1="1631.286" y1="251.636" x2="1631.286" y2="268.901"></line>
  3915. <path fill="#9F2324"
  3916. d="M1614.698,258.204c1.42,0,2.572,1.151,2.572,2.565c0,1.422-1.156,2.574-2.572,2.574 c-1.418,0-2.57-1.158-2.57-2.574C1612.128,259.356,1613.281,258.204,1614.698,258.204 M1614.698,256.173 c-2.545,0-4.604,2.061-4.604,4.604s2.061,4.604,4.604,4.604s4.604-2.063,4.604-4.604 C1619.305,258.229,1617.242,256.173,1614.698,256.173L1614.698,256.173z">
  3917. </path>
  3918. <line fill="none" stroke="#9F2324" stroke-width="2" stroke-miterlimit="10"
  3919. x1="1631.064" y1="260.776" x2="1618.314" y2="260.776"></line>
  3920. </g>
  3921. <g v-else-if="ajaxData.sbqkg151012 == false" id="on_13_">
  3922. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  3923. x1="1631.286" y1="251.636" x2="1631.286" y2="268.901"></line>
  3924. <path fill="#27963A"
  3925. d="M1614.698,258.204c1.42,0,2.576,1.151,2.576,2.565c0,1.422-1.156,2.574-2.576,2.574 s-2.57-1.158-2.57-2.574C1612.128,259.356,1613.281,258.204,1614.698,258.204 M1614.698,256.173 c-2.543,0-4.604,2.061-4.604,4.604s2.061,4.604,4.604,4.604c2.544,0,4.605-2.063,4.605-4.604 C1619.309,258.229,1617.242,256.173,1614.698,256.173L1614.698,256.173z">
  3926. </path>
  3927. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  3928. x1="1629.131" y1="267.235" x2="1618.314" y2="260.269"></line>
  3929. </g>
  3930. </g>
  3931. <g id="sbqkg1513">
  3932. <g v-if="ajaxData.sbqkg1513" id="off_12_">
  3933. <line fill="none" stroke="#9F2324" stroke-width="2.5" stroke-miterlimit="10"
  3934. x1="1643.874" y1="129.855" x2="1661.139" y2="129.855"></line>
  3935. <path fill="#9F2324"
  3936. d="M1653.014,143.871c1.418,0,2.574,1.153,2.574,2.569c0,1.418-1.156,2.571-2.574,2.571 c-1.42,0-2.572-1.155-2.572-2.571S1651.594,143.871,1653.014,143.871 M1653.014,141.842c-2.545,0-4.604,2.061-4.604,4.604 c0,2.548,2.063,4.604,4.604,4.604c2.545,0,4.604-2.063,4.604-4.604C1657.616,143.898,1655.559,141.842,1653.014,141.842 L1653.014,141.842z">
  3937. </path>
  3938. <line fill="none" stroke="#9F2324" stroke-width="2" stroke-miterlimit="10"
  3939. x1="1653.014" y1="130.084" x2="1653.014" y2="142.832"></line>
  3940. </g>
  3941. <g v-else-if="ajaxData.sbqkg1513 == false" id="on_12_">
  3942. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  3943. x1="1643.874" y1="129.855" x2="1661.139" y2="129.855"></line>
  3944. <path fill="#27963A"
  3945. d="M1653.014,143.871c1.418,0,2.574,1.153,2.574,2.569c0,1.422-1.156,2.571-2.574,2.571 c-1.42,0-2.572-1.155-2.572-2.571C1650.438,145.023,1651.594,143.871,1653.014,143.871 M1653.014,141.842 c-2.545,0-4.604,2.061-4.604,4.604s2.063,4.604,4.604,4.604c2.545,0,4.604-2.063,4.604-4.604S1655.559,141.842,1653.014,141.842 L1653.014,141.842z">
  3946. </path>
  3947. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  3948. x1="1659.471" y1="132.018" x2="1652.508" y2="142.832"></line>
  3949. </g>
  3950. </g>
  3951. <g id="sbqkg1515">
  3952. <g v-if="ajaxData.sbqkg1515" id="off_11_">
  3953. <line fill="none" stroke="#9F2324" stroke-width="2.5" stroke-miterlimit="10"
  3954. x1="1643.874" y1="220.917" x2="1661.139" y2="220.917"></line>
  3955. <path fill="#9F2324"
  3956. d="M1653.014,234.933c1.418,0,2.574,1.156,2.574,2.572c0,1.418-1.156,2.571-2.574,2.571 c-1.42,0-2.572-1.155-2.572-2.571S1651.594,234.933,1653.014,234.933 M1653.014,232.903c-2.545,0-4.604,2.063-4.604,4.604 c0,2.545,2.063,4.604,4.604,4.604c2.545,0,4.604-2.062,4.604-4.604C1657.616,234.96,1655.559,232.903,1653.014,232.903 L1653.014,232.903z">
  3957. </path>
  3958. <line fill="none" stroke="#9F2324" stroke-width="2" stroke-miterlimit="10"
  3959. x1="1653.014" y1="221.146" x2="1653.014" y2="233.894"></line>
  3960. </g>
  3961. <g v-else-if="ajaxData.sbqkg1515 == false" id="on_11_">
  3962. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  3963. x1="1643.874" y1="220.917" x2="1661.139" y2="220.917"></line>
  3964. <path fill="#27963A"
  3965. d="M1653.014,234.933c1.418,0,2.574,1.156,2.574,2.572c0,1.422-1.156,2.571-2.574,2.571 c-1.42,0-2.572-1.155-2.572-2.571C1650.438,236.085,1651.594,234.933,1653.014,234.933 M1653.014,232.903 c-2.545,0-4.604,2.063-4.604,4.604s2.063,4.604,4.604,4.604c2.545,0,4.604-2.062,4.604-4.604S1655.559,232.903,1653.014,232.903 L1653.014,232.903z">
  3966. </path>
  3967. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  3968. x1="1659.471" y1="223.079" x2="1652.508" y2="233.894"></line>
  3969. </g>
  3970. </g>
  3971. <g id="sbqkg1011">
  3972. <g v-if="ajaxData.sbqkg1011" id="off_23_">
  3973. <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
  3974. x1="266.946" y1="312.659" x2="284.213" y2="312.659"></line>
  3975. <path fill="#9E2224"
  3976. d="M276.088,326.678c1.418,0,2.574,1.158,2.574,2.574s-1.158,2.567-2.574,2.567 c-1.42,0-2.574-1.156-2.574-2.567C273.511,327.834,274.666,326.678,276.088,326.678 M276.088,324.646 c-2.545,0-4.604,2.063-4.604,4.604c0,2.546,2.063,4.605,4.604,4.605c2.545,0,4.604-2.062,4.604-4.605 C280.692,326.706,278.632,324.646,276.088,324.646L276.088,324.646z">
  3977. </path>
  3978. <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
  3979. x1="276.088" y1="312.889" x2="276.088" y2="325.641"></line>
  3980. </g>
  3981. <g v-else-if="ajaxData.sbqkg1011 == false" id="on_23_">
  3982. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  3983. x1="266.946" y1="312.659" x2="284.213" y2="312.659"></line>
  3984. <path fill="#27963A"
  3985. d="M276.088,326.678c1.418,0,2.574,1.158,2.574,2.574s-1.158,2.567-2.574,2.567 c-1.42,0-2.574-1.156-2.574-2.567C273.511,327.834,274.666,326.678,276.088,326.678 M276.088,324.646 c-2.545,0-4.604,2.063-4.604,4.604c0,2.546,2.063,4.605,4.604,4.605c2.545,0,4.604-2.062,4.604-4.605 C280.692,326.706,278.632,324.646,276.088,324.646L276.088,324.646z">
  3986. </path>
  3987. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  3988. x1="282.543" y1="314.822" x2="275.58" y2="325.641"></line>
  3989. </g>
  3990. </g>
  3991. <g id="sbqkg1013">
  3992. <g v-if="ajaxData.sbqkg1013" id="off_22_">
  3993. <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
  3994. x1="266.946" y1="393.884" x2="284.213" y2="393.884"></line>
  3995. <path fill="#9E2224"
  3996. d="M276.088,407.899c1.418,0,2.574,1.157,2.574,2.573s-1.158,2.57-2.574,2.57 c-1.42,0-2.574-1.156-2.574-2.57C273.511,409.056,274.666,407.899,276.088,407.899 M276.088,405.865 c-2.545,0-4.604,2.063-4.604,4.604c0,2.543,2.063,4.604,4.604,4.604c2.545,0,4.604-2.062,4.604-4.604 S278.632,405.865,276.088,405.865L276.088,405.865z">
  3997. </path>
  3998. <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
  3999. x1="276.088" y1="394.11" x2="276.088" y2="406.862"></line>
  4000. </g>
  4001. <g v-else-if="ajaxData.sbqkg1013 == false" id="on_22_">
  4002. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  4003. x1="266.946" y1="393.884" x2="284.213" y2="393.884"></line>
  4004. <path fill="#27963A"
  4005. d="M276.088,407.899c1.418,0,2.574,1.157,2.574,2.573s-1.158,2.57-2.574,2.57 c-1.42,0-2.574-1.156-2.574-2.57C273.511,409.056,274.666,407.899,276.088,407.899 M276.088,405.865 c-2.545,0-4.604,2.063-4.604,4.604c0,2.543,2.063,4.604,4.604,4.604c2.545,0,4.604-2.062,4.604-4.604 S278.632,405.865,276.088,405.865L276.088,405.865z">
  4006. </path>
  4007. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  4008. x1="282.543" y1="396.044" x2="275.58" y2="406.862"></line>
  4009. </g>
  4010. </g>
  4011. <g id="sbqkg10102">
  4012. <g v-if="ajaxData.sbqkg10102" id="off_21_">
  4013. <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
  4014. x1="252.749" y1="334.615" x2="252.749" y2="351.883"></line>
  4015. <path fill="#9E2224"
  4016. d="M236.159,341.188c1.422,0,2.571,1.154,2.571,2.568c0,1.422-1.153,2.571-2.571,2.571 s-2.57-1.155-2.57-2.571C233.589,342.338,234.741,341.188,236.159,341.188 M236.159,339.154c-2.548,0-4.604,2.063-4.604,4.604 s2.063,4.604,4.604,4.604s4.604-2.063,4.604-4.604C240.765,341.211,238.706,339.154,236.159,339.154L236.159,339.154z">
  4017. </path>
  4018. <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
  4019. x1="252.524" y1="343.758" x2="239.774" y2="343.758"></line>
  4020. </g>
  4021. <g v-else-if="ajaxData.sbqkg10102 == false" id="on_21_">
  4022. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  4023. x1="252.749" y1="334.615" x2="252.749" y2="351.883"></line>
  4024. <path fill="#27963A"
  4025. d="M236.159,341.188c1.422,0,2.573,1.154,2.573,2.568c0,1.422-1.151,2.571-2.573,2.571 c-1.418,0-2.57-1.155-2.57-2.571C233.589,342.338,234.741,341.188,236.159,341.188 M236.159,339.154 c-2.543,0-4.604,2.063-4.604,4.604s2.063,4.604,4.604,4.604c2.547,0,4.604-2.063,4.604-4.604 C240.767,341.211,238.706,339.154,236.159,339.154L236.159,339.154z">
  4026. </path>
  4027. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  4028. x1="250.591" y1="350.217" x2="239.774" y2="343.247"></line>
  4029. </g>
  4030. </g>
  4031. <g id="sbqkg10103">
  4032. <g v-if="ajaxData.sbqkg10103" id="off_20_">
  4033. <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
  4034. x1="253.749" y1="372.073" x2="253.749" y2="389.339"></line>
  4035. <path fill="#9E2224"
  4036. d="M237.159,378.644c1.422,0,2.571,1.154,2.571,2.57c0,1.42-1.153,2.569-2.571,2.569s-2.57-1.153-2.57-2.569 C234.589,379.794,235.741,378.644,237.159,378.644 M237.159,376.61c-2.548,0-4.604,2.063-4.604,4.604s2.063,4.604,4.604,4.604 s4.604-2.063,4.604-4.604C241.765,378.667,239.706,376.61,237.159,376.61L237.159,376.61z">
  4037. </path>
  4038. <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
  4039. x1="253.524" y1="381.214" x2="240.774" y2="381.214"></line>
  4040. </g>
  4041. <g v-else-if="ajaxData.sbqkg10103 == false" id="on_20_">
  4042. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  4043. x1="253.749" y1="372.073" x2="253.749" y2="389.339"></line>
  4044. <path fill="#27963A"
  4045. d="M237.159,378.644c1.422,0,2.573,1.154,2.573,2.57c0,1.42-1.151,2.569-2.573,2.569 c-1.418,0-2.57-1.153-2.57-2.569C234.589,379.794,235.741,378.644,237.159,378.644 M237.159,376.61 c-2.543,0-4.604,2.063-4.604,4.604s2.063,4.604,4.604,4.604c2.547,0,4.604-2.063,4.604-4.604 C241.767,378.667,239.706,376.61,237.159,376.61L237.159,376.61z">
  4046. </path>
  4047. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  4048. x1="251.591" y1="387.673" x2="240.774" y2="380.703"></line>
  4049. </g>
  4050. </g>
  4051. <g id="sbqkg1010">
  4052. <g v-if="ajaxData.sbqkg1010" id="off_18_">
  4053. <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
  4054. x1="297.695" y1="435.296" x2="297.695" y2="418.03"></line>
  4055. <path fill="#9E2224"
  4056. d="M314.283,428.729c-1.423,0-2.574-1.155-2.574-2.571s1.153-2.569,2.574-2.569 c1.418,0,2.569,1.151,2.569,2.569C316.855,427.573,315.701,428.729,314.283,428.729 M314.283,430.761 c2.545,0,4.604-2.063,4.604-4.604s-2.063-4.604-4.604-4.604s-4.604,2.063-4.604,4.604S311.738,430.761,314.283,430.761 L314.283,430.761z">
  4057. </path>
  4058. <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
  4059. x1="297.918" y1="426.155" x2="310.668" y2="426.155"></line>
  4060. </g>
  4061. <g v-else-if="ajaxData.sbqkg1010 == false" id="on_18_">
  4062. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  4063. x1="297.695" y1="435.296" x2="297.695" y2="418.03"></line>
  4064. <path fill="#27963A"
  4065. d="M314.283,428.729c-1.423,0-2.576-1.155-2.576-2.571s1.153-2.569,2.576-2.569 c1.418,0,2.569,1.151,2.569,2.569C316.855,427.573,315.701,428.729,314.283,428.729 M314.283,430.761 c2.543,0,4.604-2.063,4.604-4.604s-2.063-4.604-4.604-4.604c-2.548,0-4.605,2.063-4.605,4.604S311.738,430.761,314.283,430.761 L314.283,430.761z">
  4066. </path>
  4067. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  4068. x1="299.854" y1="419.696" x2="310.668" y2="426.66"></line>
  4069. </g>
  4070. </g>
  4071. <g id="sbqkg1010110">
  4072. <g v-if="ajaxData.sbqkg1010110" id="off_17_">
  4073. <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
  4074. x1="188.235" y1="472.079" x2="205.502" y2="472.079"></line>
  4075. <path fill="#9E2224"
  4076. d="M194.804,488.672c0-1.425,1.156-2.57,2.571-2.57c1.421,0,2.57,1.154,2.57,2.57 c0,1.418-1.154,2.567-2.57,2.567C195.957,491.241,194.804,490.09,194.804,488.672 M192.772,488.672 c0,2.545,2.063,4.604,4.604,4.604s4.604-2.062,4.604-4.604c0-2.541-2.061-4.604-4.604-4.604 C194.83,484.066,192.772,486.127,192.772,488.672L192.772,488.672z">
  4077. </path>
  4078. <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
  4079. x1="197.377" y1="472.309" x2="197.377" y2="485.061"></line>
  4080. </g>
  4081. <g v-else-if="ajaxData.sbqkg1010110 == false" id="on_17_">
  4082. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  4083. x1="188.235" y1="472.079" x2="205.502" y2="472.079"></line>
  4084. <path fill="#27963A"
  4085. d="M194.804,488.672c0-1.425,1.156-2.576,2.571-2.576c1.421,0,2.57,1.156,2.57,2.576 s-1.154,2.567-2.57,2.567C195.957,491.241,194.804,490.09,194.804,488.672 M192.772,488.672c0,2.543,2.063,4.604,4.604,4.604 s4.604-2.062,4.604-4.604s-2.061-4.604-4.604-4.604C194.83,484.064,192.772,486.127,192.772,488.672L192.772,488.672z">
  4086. </path>
  4087. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  4088. x1="203.836" y1="474.24" x2="196.869" y2="485.061"></line>
  4089. </g>
  4090. </g>
  4091. <g id="sbqkg1022">
  4092. <g v-if="ajaxData.sbqkg1022" id="off_33_">
  4093. <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
  4094. x1="680.886" y1="312.659" x2="698.153" y2="312.659"></line>
  4095. <path fill="#9E2224"
  4096. d="M690.028,326.678c1.418,0,2.573,1.158,2.573,2.574s-1.157,2.567-2.573,2.567 c-1.42,0-2.574-1.156-2.574-2.567C687.448,327.834,688.605,326.678,690.028,326.678 M690.028,324.646 c-2.545,0-4.604,2.063-4.604,4.604c0,2.546,2.063,4.605,4.604,4.605c2.545,0,4.604-2.062,4.604-4.605 C694.632,326.706,692.572,324.646,690.028,324.646L690.028,324.646z">
  4097. </path>
  4098. <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
  4099. x1="690.028" y1="312.889" x2="690.028" y2="325.641"></line>
  4100. </g>
  4101. <g v-else-if="ajaxData.sbqkg1022 == false" id="on_33_">
  4102. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  4103. x1="680.886" y1="312.659" x2="698.153" y2="312.659"></line>
  4104. <path fill="#27963A"
  4105. d="M690.028,326.678c1.418,0,2.573,1.158,2.573,2.574s-1.157,2.567-2.573,2.567 c-1.42,0-2.574-1.156-2.574-2.567C687.448,327.834,688.605,326.678,690.028,326.678 M690.028,324.646 c-2.545,0-4.604,2.063-4.604,4.604c0,2.546,2.063,4.605,4.604,4.605c2.545,0,4.604-2.062,4.604-4.605 C694.632,326.706,692.572,324.646,690.028,324.646L690.028,324.646z">
  4106. </path>
  4107. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  4108. x1="696.482" y1="314.822" x2="689.52" y2="325.641"></line>
  4109. </g>
  4110. </g>
  4111. <g id="sbqkg1023">
  4112. <g v-if="ajaxData.sbqkg1023" id="off_32_">
  4113. <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
  4114. x1="680.886" y1="393.884" x2="698.153" y2="393.884"></line>
  4115. <path fill="#9E2224"
  4116. d="M690.028,407.899c1.418,0,2.573,1.157,2.573,2.573s-1.157,2.57-2.573,2.57 c-1.42,0-2.574-1.156-2.574-2.57C687.448,409.056,688.605,407.899,690.028,407.899 M690.028,405.865 c-2.545,0-4.604,2.063-4.604,4.604c0,2.543,2.063,4.604,4.604,4.604c2.545,0,4.604-2.062,4.604-4.604 S692.572,405.865,690.028,405.865L690.028,405.865z">
  4117. </path>
  4118. <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
  4119. x1="690.028" y1="394.11" x2="690.028" y2="406.862"></line>
  4120. </g>
  4121. <g v-else-if="ajaxData.sbqkg1023 == false" id="on_32_">
  4122. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  4123. x1="680.886" y1="393.884" x2="698.153" y2="393.884"></line>
  4124. <path fill="#27963A"
  4125. d="M690.028,407.899c1.418,0,2.573,1.157,2.573,2.573s-1.157,2.57-2.573,2.57 c-1.42,0-2.574-1.156-2.574-2.57C687.448,409.056,688.605,407.899,690.028,407.899 M690.028,405.865 c-2.545,0-4.604,2.063-4.604,4.604c0,2.543,2.063,4.604,4.604,4.604c2.545,0,4.604-2.062,4.604-4.604 S692.572,405.865,690.028,405.865L690.028,405.865z">
  4126. </path>
  4127. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  4128. x1="696.482" y1="396.044" x2="689.52" y2="406.862"></line>
  4129. </g>
  4130. </g>
  4131. <g id="sbqkg1023">
  4132. <g v-if="ajaxData.sbqkg1023" id="off_31_">
  4133. <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
  4134. x1="666.689" y1="334.615" x2="666.689" y2="351.883"></line>
  4135. <path fill="#9E2224"
  4136. d="M650.099,341.188c1.423,0,2.574,1.154,2.574,2.568c0,1.422-1.156,2.571-2.574,2.571 s-2.569-1.155-2.569-2.571C647.529,342.338,648.681,341.188,650.099,341.188 M650.099,339.154c-2.545,0-4.604,2.063-4.604,4.604 s2.063,4.604,4.604,4.604c2.544,0,4.604-2.063,4.604-4.604C654.702,341.211,652.646,339.154,650.099,339.154L650.099,339.154z">
  4137. </path>
  4138. <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
  4139. x1="666.464" y1="343.758" x2="653.714" y2="343.758"></line>
  4140. </g>
  4141. <g v-else-if="ajaxData.sbqkg1023 == false" id="on_31_">
  4142. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  4143. x1="666.689" y1="334.615" x2="666.689" y2="351.883"></line>
  4144. <path fill="#27963A"
  4145. d="M650.099,341.188c1.423,0,2.576,1.154,2.576,2.568c0,1.422-1.153,2.571-2.576,2.571 c-1.418,0-2.569-1.155-2.569-2.571C647.529,342.338,648.681,341.188,650.099,341.188 M650.099,339.154 c-2.543,0-4.604,2.063-4.604,4.604s2.063,4.604,4.604,4.604c2.548,0,4.604-2.063,4.604-4.604 C654.704,341.211,652.646,339.154,650.099,339.154L650.099,339.154z">
  4146. </path>
  4147. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  4148. x1="664.531" y1="350.217" x2="653.714" y2="343.247"></line>
  4149. </g>
  4150. </g>
  4151. <g id="sbqkg10203">
  4152. <g v-if="ajaxData.sbqkg10203" id="off_30_">
  4153. <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
  4154. x1="667.689" y1="372.073" x2="667.689" y2="389.339"></line>
  4155. <path fill="#9E2224"
  4156. d="M651.099,378.644c1.423,0,2.574,1.154,2.574,2.57c0,1.42-1.156,2.569-2.574,2.569 s-2.569-1.153-2.569-2.569C648.529,379.794,649.681,378.644,651.099,378.644 M651.099,376.61c-2.545,0-4.604,2.063-4.604,4.604 s2.063,4.604,4.604,4.604c2.544,0,4.604-2.063,4.604-4.604C655.702,378.667,653.646,376.61,651.099,376.61L651.099,376.61z">
  4157. </path>
  4158. <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
  4159. x1="667.464" y1="381.214" x2="654.714" y2="381.214"></line>
  4160. </g>
  4161. <g v-else-if="ajaxData.sbqkg10203 == false" id="on_30_">
  4162. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  4163. x1="667.689" y1="372.073" x2="667.689" y2="389.339"></line>
  4164. <path fill="#27963A"
  4165. d="M651.099,378.644c1.423,0,2.576,1.154,2.576,2.57c0,1.42-1.153,2.569-2.576,2.569 c-1.418,0-2.569-1.153-2.569-2.569C648.529,379.794,649.681,378.644,651.099,378.644 M651.099,376.61 c-2.543,0-4.604,2.063-4.604,4.604s2.063,4.604,4.604,4.604c2.548,0,4.604-2.063,4.604-4.604 C655.704,378.667,653.646,376.61,651.099,376.61L651.099,376.61z">
  4166. </path>
  4167. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  4168. x1="665.531" y1="387.673" x2="654.714" y2="380.703"></line>
  4169. </g>
  4170. </g>
  4171. <g id="sbqkg1020">
  4172. <g v-if="ajaxData.sbqkg1020" id="off_29_">
  4173. <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
  4174. x1="711.635" y1="435.296" x2="711.635" y2="418.03"></line>
  4175. <path fill="#9E2224"
  4176. d="M728.223,428.729c-1.42,0-2.573-1.155-2.573-2.571s1.155-2.569,2.573-2.569s2.572,1.151,2.572,2.569 C730.795,427.573,729.641,428.729,728.223,428.729 M728.223,430.761c2.545,0,4.604-2.063,4.604-4.604s-2.063-4.604-4.604-4.604 s-4.604,2.063-4.604,4.604S725.678,430.761,728.223,430.761L728.223,430.761z">
  4177. </path>
  4178. <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
  4179. x1="711.857" y1="426.155" x2="724.607" y2="426.155"></line>
  4180. </g>
  4181. <g v-else-if="ajaxData.sbqkg1020 == false" id="on_29_">
  4182. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  4183. x1="711.635" y1="435.296" x2="711.635" y2="418.03"></line>
  4184. <path fill="#27963A"
  4185. d="M728.223,428.729c-1.42,0-2.576-1.155-2.576-2.571s1.156-2.569,2.576-2.569 c1.418,0,2.572,1.151,2.572,2.569C730.795,427.573,729.641,428.729,728.223,428.729 M728.223,430.761 c2.543,0,4.604-2.063,4.604-4.604s-2.063-4.604-4.604-4.604c-2.545,0-4.604,2.063-4.604,4.604S725.678,430.761,728.223,430.761 L728.223,430.761z">
  4186. </path>
  4187. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  4188. x1="713.793" y1="419.696" x2="724.607" y2="426.66"></line>
  4189. </g>
  4190. </g>
  4191. <g id="sbqkg1020120">
  4192. <g v-if="ajaxData.sbqkg1020120" id="off_28_">
  4193. <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
  4194. x1="602.175" y1="472.079" x2="619.442" y2="472.079"></line>
  4195. <path fill="#9E2224"
  4196. d="M608.741,488.672c0-1.425,1.156-2.57,2.57-2.57c1.422,0,2.573,1.154,2.573,2.57 c0,1.418-1.157,2.567-2.573,2.567C609.896,491.241,608.741,490.09,608.741,488.672 M606.712,488.672 c0,2.545,2.063,4.604,4.604,4.604s4.604-2.062,4.604-4.604c0-2.541-2.063-4.604-4.604-4.604 C608.77,484.066,606.712,486.127,606.712,488.672L606.712,488.672z">
  4197. </path>
  4198. <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
  4199. x1="611.317" y1="472.309" x2="611.317" y2="485.061"></line>
  4200. </g>
  4201. <g v-else-if="ajaxData.sbqkg1020120 == false" id="on_28_">
  4202. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  4203. x1="602.175" y1="472.079" x2="619.442" y2="472.079"></line>
  4204. <path fill="#27963A"
  4205. d="M608.741,488.672c0-1.425,1.156-2.576,2.57-2.576c1.422,0,2.573,1.156,2.573,2.576 s-1.157,2.567-2.573,2.567C609.896,491.241,608.741,490.09,608.741,488.672 M606.712,488.672c0,2.543,2.063,4.604,4.604,4.604 s4.604-2.062,4.604-4.604s-2.063-4.604-4.604-4.604C608.77,484.064,606.712,486.127,606.712,488.672L606.712,488.672z">
  4206. </path>
  4207. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  4208. x1="617.776" y1="474.24" x2="610.809" y2="485.061"></line>
  4209. </g>
  4210. </g>
  4211. <g id="sbqkg1032">
  4212. <g v-if="ajaxData.sbqkg1032" id="off_42_">
  4213. <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
  4214. x1="1214.279" y1="312.659" x2="1231.547" y2="312.659"></line>
  4215. <path fill="#9E2224"
  4216. d="M1223.422,326.678c1.418,0,2.571,1.158,2.571,2.574s-1.155,2.567-2.571,2.567 c-1.421,0-2.574-1.156-2.574-2.567C1220.844,327.834,1221.999,326.678,1223.422,326.678 M1223.422,324.646 c-2.546,0-4.605,2.063-4.605,4.604c0,2.546,2.063,4.605,4.605,4.605c2.545,0,4.604-2.062,4.604-4.605 C1228.025,326.704,1225.965,324.646,1223.422,324.646L1223.422,324.646z">
  4217. </path>
  4218. <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
  4219. x1="1223.422" y1="312.889" x2="1223.422" y2="325.641"></line>
  4220. </g>
  4221. <g v-else-if="ajaxData.sbqkg1032 == false" id="on_42_">
  4222. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  4223. x1="1214.279" y1="312.659" x2="1231.547" y2="312.659"></line>
  4224. <path fill="#27963A"
  4225. d="M1223.422,326.678c1.418,0,2.571,1.158,2.571,2.574s-1.155,2.567-2.571,2.567 c-1.421,0-2.574-1.156-2.574-2.567C1220.844,327.834,1221.999,326.678,1223.422,326.678 M1223.422,324.646 c-2.546,0-4.605,2.063-4.605,4.604c0,2.546,2.063,4.605,4.605,4.605c2.545,0,4.604-2.062,4.604-4.605 C1228.025,326.704,1225.965,324.646,1223.422,324.646L1223.422,324.646z">
  4226. </path>
  4227. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  4228. x1="1229.876" y1="314.822" x2="1222.911" y2="325.641"></line>
  4229. </g>
  4230. </g>
  4231. <g id="sbqkg10302">
  4232. <g v-if="ajaxData.sbqkg10302" id="off_40_">
  4233. <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
  4234. x1="1200.081" y1="334.615" x2="1200.081" y2="351.883"></line>
  4235. <path fill="#9E2224"
  4236. d="M1183.49,341.188c1.422,0,2.574,1.154,2.574,2.568c0,1.422-1.156,2.571-2.574,2.571 s-2.567-1.155-2.567-2.571C1180.922,342.338,1182.073,341.188,1183.49,341.188 M1183.49,339.154 c-2.545,0-4.604,2.063-4.604,4.604s2.062,4.604,4.604,4.604s4.604-2.063,4.604-4.604 C1188.098,341.211,1186.036,339.154,1183.49,339.154L1183.49,339.154z">
  4237. </path>
  4238. <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
  4239. x1="1199.857" y1="343.758" x2="1187.107" y2="343.758"></line>
  4240. </g>
  4241. <g v-else-if="ajaxData.sbqkg10302 == false" id="on_40_">
  4242. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  4243. x1="1200.081" y1="334.615" x2="1200.081" y2="351.883"></line>
  4244. <path fill="#27963A"
  4245. d="M1183.49,341.188c1.422,0,2.576,1.154,2.576,2.568c0,1.422-1.154,2.571-2.576,2.571 c-1.418,0-2.567-1.155-2.567-2.571C1180.922,342.338,1182.073,341.188,1183.49,341.188 M1183.49,339.154 c-2.543,0-4.604,2.063-4.604,4.604s2.062,4.604,4.604,4.604c2.547,0,4.606-2.063,4.606-4.604 C1188.1,341.211,1186.036,339.154,1183.49,339.154L1183.49,339.154z">
  4246. </path>
  4247. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  4248. x1="1197.924" y1="350.217" x2="1187.107" y2="343.247"></line>
  4249. </g>
  4250. </g>
  4251. <g id="sbqkg10303">
  4252. <g v-if="ajaxData.sbqkg10303" id="off_39_">
  4253. <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
  4254. x1="1201.081" y1="372.073" x2="1201.081" y2="389.339"></line>
  4255. <path fill="#9E2224"
  4256. d="M1184.49,378.644c1.422,0,2.574,1.154,2.574,2.57c0,1.42-1.156,2.569-2.574,2.569 s-2.567-1.153-2.567-2.569C1181.922,379.794,1183.073,378.644,1184.49,378.644 M1184.49,376.61c-2.545,0-4.604,2.063-4.604,4.604 s2.062,4.604,4.604,4.604s4.604-2.063,4.604-4.604C1189.098,378.667,1187.036,376.61,1184.49,376.61L1184.49,376.61z">
  4257. </path>
  4258. <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
  4259. x1="1200.857" y1="381.214" x2="1188.107" y2="381.214"></line>
  4260. </g>
  4261. <g v-else-if="ajaxData.sbqkg10303 == false" id="on_39_">
  4262. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  4263. x1="1201.081" y1="372.073" x2="1201.081" y2="389.339"></line>
  4264. <path fill="#27963A"
  4265. d="M1184.49,378.644c1.422,0,2.576,1.154,2.576,2.57c0,1.42-1.154,2.569-2.576,2.569 c-1.418,0-2.567-1.153-2.567-2.569C1181.922,379.794,1183.073,378.644,1184.49,378.644 M1184.49,376.61 c-2.543,0-4.604,2.063-4.604,4.604s2.062,4.604,4.604,4.604c2.547,0,4.606-2.063,4.606-4.604 C1189.1,378.667,1187.036,376.61,1184.49,376.61L1184.49,376.61z">
  4266. </path>
  4267. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  4268. x1="1198.924" y1="387.673" x2="1188.107" y2="380.703"></line>
  4269. </g>
  4270. </g>
  4271. <g id="sbqkg1030">
  4272. <g v-if="ajaxData.sbqkg1030" id="off_38_">
  4273. <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
  4274. x1="1245.029" y1="435.296" x2="1245.029" y2="418.03"></line>
  4275. <path fill="#9E2224"
  4276. d="M1261.615,428.729c-1.42,0-2.572-1.155-2.572-2.571s1.154-2.569,2.572-2.569s2.572,1.151,2.572,2.569 C1264.189,427.573,1263.032,428.729,1261.615,428.729 M1261.615,430.761c2.545,0,4.604-2.063,4.604-4.604 s-2.063-4.604-4.604-4.604s-4.604,2.063-4.604,4.604S1259.072,430.761,1261.615,430.761L1261.615,430.761z">
  4277. </path>
  4278. <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
  4279. x1="1245.251" y1="426.155" x2="1258.001" y2="426.155"></line>
  4280. </g>
  4281. <g v-else-if="ajaxData.sbqkg1030 == false" id="on_38_">
  4282. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  4283. x1="1245.029" y1="435.296" x2="1245.029" y2="418.03"></line>
  4284. <path fill="#27963A"
  4285. d="M1261.615,428.729c-1.42,0-2.576-1.155-2.576-2.571s1.156-2.569,2.576-2.569 c1.418,0,2.572,1.151,2.572,2.569C1264.189,427.573,1263.032,428.729,1261.615,428.729 M1261.615,430.761 c2.543,0,4.604-2.063,4.604-4.604s-2.063-4.604-4.604-4.604c-2.545,0-4.604,2.063-4.604,4.604S1259.072,430.761,1261.615,430.761 L1261.615,430.761z">
  4286. </path>
  4287. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  4288. x1="1247.188" y1="419.696" x2="1258.001" y2="426.66"></line>
  4289. </g>
  4290. </g>
  4291. <g id="sbqkg1030130">
  4292. <g v-if="ajaxData.sbqkg1030130" id="off_37_">
  4293. <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
  4294. x1="1135.568" y1="472.079" x2="1152.836" y2="472.079"></line>
  4295. <path fill="#9E2224"
  4296. d="M1142.137,488.672c0-1.425,1.155-2.57,2.571-2.57c1.421,0,2.57,1.154,2.57,2.57 c0,1.418-1.154,2.567-2.57,2.567C1143.29,491.241,1142.137,490.09,1142.137,488.672 M1140.105,488.672 c0,2.545,2.063,4.604,4.604,4.604s4.604-2.062,4.604-4.604c0-2.541-2.062-4.604-4.604-4.604 C1142.161,484.066,1140.105,486.127,1140.105,488.672L1140.105,488.672z">
  4297. </path>
  4298. <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
  4299. x1="1144.711" y1="472.309" x2="1144.711" y2="485.061"></line>
  4300. </g>
  4301. <g v-else-if="ajaxData.sbqkg1030130 == false" id="on_37_">
  4302. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  4303. x1="1135.568" y1="472.079" x2="1152.836" y2="472.079"></line>
  4304. <path fill="#27963A"
  4305. d="M1142.137,488.672c0-1.425,1.155-2.576,2.571-2.576c1.421,0,2.57,1.156,2.57,2.576 s-1.154,2.567-2.57,2.567C1143.29,491.241,1142.137,490.09,1142.137,488.672 M1140.105,488.672c0,2.543,2.063,4.604,4.604,4.604 s4.604-2.062,4.604-4.604s-2.062-4.604-4.604-4.604C1142.161,484.064,1140.105,486.127,1140.105,488.672L1140.105,488.672z">
  4306. </path>
  4307. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  4308. x1="1151.17" y1="474.24" x2="1144.2" y2="485.061"></line>
  4309. </g>
  4310. </g>
  4311. <g id="sbqkg1042">
  4312. <g v-if="ajaxData.sbqkg1042" id="off_51_">
  4313. <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
  4314. x1="1645.395" y1="312.659" x2="1662.659" y2="312.659"></line>
  4315. <path fill="#9E2224"
  4316. d="M1654.534,326.678c1.418,0,2.574,1.158,2.574,2.574s-1.158,2.567-2.574,2.567 c-1.42,0-2.571-1.156-2.571-2.567C1651.958,327.834,1653.115,326.678,1654.534,326.678 M1654.534,324.646 c-2.545,0-4.604,2.063-4.604,4.604c0,2.546,2.063,4.605,4.604,4.605c2.547,0,4.604-2.062,4.604-4.605 C1659.141,326.704,1657.077,324.646,1654.534,324.646L1654.534,324.646z">
  4317. </path>
  4318. <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
  4319. x1="1654.534" y1="312.889" x2="1654.534" y2="325.641"></line>
  4320. </g>
  4321. <g v-else-if="ajaxData.sbqkg1042 == false" id="on_51_">
  4322. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  4323. x1="1645.395" y1="312.659" x2="1662.659" y2="312.659"></line>
  4324. <path fill="#27963A"
  4325. d="M1654.534,326.678c1.418,0,2.574,1.158,2.574,2.574s-1.158,2.567-2.574,2.567 c-1.42,0-2.571-1.156-2.571-2.567C1651.958,327.834,1653.115,326.678,1654.534,326.678 M1654.534,324.646 c-2.545,0-4.604,2.063-4.604,4.604c0,2.546,2.063,4.605,4.604,4.605c2.547,0,4.604-2.062,4.604-4.605 C1659.141,326.704,1657.077,324.646,1654.534,324.646L1654.534,324.646z">
  4326. </path>
  4327. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  4328. x1="1660.99" y1="314.822" x2="1654.029" y2="325.641"></line>
  4329. </g>
  4330. </g>
  4331. <g id="sbqkg1043">
  4332. <g v-if="ajaxData.sbqkg1043" id="off_50_">
  4333. <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
  4334. x1="1645.395" y1="393.884" x2="1662.659" y2="393.884"></line>
  4335. <path fill="#9E2224"
  4336. d="M1654.534,407.899c1.418,0,2.574,1.157,2.574,2.573s-1.158,2.57-2.574,2.57 c-1.42,0-2.571-1.156-2.571-2.57C1651.958,409.056,1653.115,407.899,1654.534,407.899 M1654.534,405.865 c-2.545,0-4.604,2.063-4.604,4.604c0,2.543,2.063,4.604,4.604,4.604c2.547,0,4.604-2.062,4.604-4.604 S1657.077,405.865,1654.534,405.865L1654.534,405.865z">
  4337. </path>
  4338. <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
  4339. x1="1654.534" y1="394.11" x2="1654.534" y2="406.862"></line>
  4340. </g>
  4341. <g v-else-if="ajaxData.sbqkg1043 == false" id="on_50_">
  4342. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  4343. x1="1645.395" y1="393.884" x2="1662.659" y2="393.884"></line>
  4344. <path fill="#27963A"
  4345. d="M1654.534,407.899c1.418,0,2.574,1.157,2.574,2.573s-1.158,2.57-2.574,2.57 c-1.42,0-2.571-1.156-2.571-2.57C1651.958,409.056,1653.115,407.899,1654.534,407.899 M1654.534,405.865 c-2.545,0-4.604,2.063-4.604,4.604c0,2.543,2.063,4.604,4.604,4.604c2.547,0,4.604-2.062,4.604-4.604 S1657.077,405.865,1654.534,405.865L1654.534,405.865z">
  4346. </path>
  4347. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  4348. x1="1660.99" y1="396.044" x2="1654.029" y2="406.862"></line>
  4349. </g>
  4350. </g>
  4351. <g id="sbqkg10405">
  4352. <g v-if="ajaxData.sbqkg10405" id="off_49_">
  4353. <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
  4354. x1="1631.197" y1="334.615" x2="1631.197" y2="351.883"></line>
  4355. <path fill="#9E2224"
  4356. d="M1614.607,341.188c1.422,0,2.574,1.154,2.574,2.568c0,1.422-1.156,2.571-2.574,2.571 s-2.57-1.155-2.57-2.571C1612.034,342.338,1613.189,341.188,1614.607,341.188 M1614.607,339.154 c-2.545,0-4.604,2.063-4.604,4.604s2.062,4.604,4.604,4.604s4.604-2.063,4.604-4.604 C1619.213,341.211,1617.154,339.154,1614.607,339.154L1614.607,339.154z">
  4357. </path>
  4358. <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
  4359. x1="1630.973" y1="343.758" x2="1618.223" y2="343.758"></line>
  4360. </g>
  4361. <g v-else-if="ajaxData.sbqkg10405 == false" id="on_49_">
  4362. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  4363. x1="1631.197" y1="334.615" x2="1631.197" y2="351.883"></line>
  4364. <path fill="#27963A"
  4365. d="M1614.607,341.188c1.422,0,2.576,1.154,2.576,2.568c0,1.422-1.154,2.571-2.576,2.571 c-1.418,0-2.57-1.155-2.57-2.571C1612.034,342.338,1613.189,341.188,1614.607,341.188 M1614.607,339.154 c-2.543,0-4.604,2.063-4.604,4.604s2.062,4.604,4.604,4.604c2.547,0,4.606-2.063,4.606-4.604 C1619.215,341.211,1617.154,339.154,1614.607,339.154L1614.607,339.154z">
  4366. </path>
  4367. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  4368. x1="1629.036" y1="350.217" x2="1618.223" y2="343.247"></line>
  4369. </g>
  4370. </g>
  4371. <g id="sbqkg10403">
  4372. <g v-if="ajaxData.sbqkg10403" id="off_48_">
  4373. <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
  4374. x1="1632.197" y1="372.073" x2="1632.197" y2="389.339"></line>
  4375. <path fill="#9E2224"
  4376. d="M1615.607,378.644c1.422,0,2.574,1.154,2.574,2.57c0,1.42-1.156,2.569-2.574,2.569 s-2.57-1.153-2.57-2.569C1613.034,379.794,1614.189,378.644,1615.607,378.644 M1615.607,376.61c-2.545,0-4.604,2.063-4.604,4.604 s2.062,4.604,4.604,4.604s4.604-2.063,4.604-4.604C1620.213,378.667,1618.154,376.61,1615.607,376.61L1615.607,376.61z">
  4377. </path>
  4378. <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
  4379. x1="1631.973" y1="381.214" x2="1619.223" y2="381.214"></line>
  4380. </g>
  4381. <g v-else-if="ajaxData.sbqkg10403 == false" id="on_48_">
  4382. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  4383. x1="1632.197" y1="372.073" x2="1632.197" y2="389.339"></line>
  4384. <path fill="#27963A"
  4385. d="M1615.607,378.644c1.422,0,2.576,1.154,2.576,2.57c0,1.42-1.154,2.569-2.576,2.569 c-1.418,0-2.57-1.153-2.57-2.569C1613.034,379.794,1614.189,378.644,1615.607,378.644 M1615.607,376.61 c-2.543,0-4.604,2.063-4.604,4.604s2.062,4.604,4.604,4.604c2.547,0,4.606-2.063,4.606-4.604 C1620.215,378.667,1618.154,376.61,1615.607,376.61L1615.607,376.61z">
  4386. </path>
  4387. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  4388. x1="1630.036" y1="387.673" x2="1619.223" y2="380.703"></line>
  4389. </g>
  4390. </g>
  4391. <g id="sbqkg1040">
  4392. <g v-if="ajaxData.sbqkg1040" id="off_47_">
  4393. <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
  4394. x1="1676.145" y1="435.296" x2="1676.145" y2="418.03"></line>
  4395. <path fill="#9E2224"
  4396. d="M1692.732,428.729c-1.42,0-2.574-1.155-2.574-2.571s1.156-2.569,2.574-2.569s2.572,1.151,2.572,2.569 C1695.305,427.573,1694.15,428.729,1692.732,428.729 M1692.732,430.761c2.545,0,4.604-2.063,4.604-4.604 s-2.063-4.604-4.604-4.604c-2.543,0-4.604,2.063-4.604,4.604S1690.188,430.761,1692.732,430.761L1692.732,430.761z">
  4397. </path>
  4398. <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
  4399. x1="1676.365" y1="426.155" x2="1689.115" y2="426.155"></line>
  4400. </g>
  4401. <g v-else-if="ajaxData.sbqkg1040 == false" id="on_47_">
  4402. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  4403. x1="1676.145" y1="435.296" x2="1676.145" y2="418.03"></line>
  4404. <path fill="#27963A"
  4405. d="M1692.732,428.729c-1.42,0-2.576-1.155-2.576-2.571s1.156-2.569,2.576-2.569 c1.418,0,2.572,1.151,2.572,2.569C1695.305,427.573,1694.15,428.729,1692.732,428.729 M1692.732,430.761 c2.543,0,4.604-2.063,4.604-4.604s-2.063-4.604-4.604-4.604c-2.545,0-4.604,2.063-4.604,4.604S1690.188,430.761,1692.732,430.761 L1692.732,430.761z">
  4406. </path>
  4407. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  4408. x1="1678.303" y1="419.696" x2="1689.115" y2="426.66"></line>
  4409. </g>
  4410. </g>
  4411. <g id="sbqkg1040130">
  4412. <g v-if="ajaxData.sbqkg1040130" id="off_46_">
  4413. <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
  4414. x1="1566.684" y1="472.079" x2="1583.948" y2="472.079"></line>
  4415. <path fill="#9E2224"
  4416. d="M1573.251,488.672c0-1.425,1.154-2.57,2.57-2.57c1.42,0,2.572,1.154,2.572,2.57 c0,1.418-1.156,2.567-2.572,2.567C1574.406,491.241,1573.251,490.09,1573.251,488.672 M1571.221,488.672 c0,2.545,2.063,4.604,4.604,4.604s4.604-2.062,4.604-4.604c0-2.541-2.063-4.604-4.604-4.604 C1573.279,484.066,1571.221,486.127,1571.221,488.672L1571.221,488.672z">
  4417. </path>
  4418. <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
  4419. x1="1575.823" y1="472.309" x2="1575.823" y2="485.061"></line>
  4420. </g>
  4421. <g v-else-if="ajaxData.sbqkg1040130 == false" id="on_46_">
  4422. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  4423. x1="1566.684" y1="472.079" x2="1583.948" y2="472.079"></line>
  4424. <path fill="#27963A"
  4425. d="M1573.251,488.672c0-1.425,1.154-2.576,2.57-2.576c1.42,0,2.572,1.156,2.572,2.576 s-1.156,2.567-2.572,2.567C1574.406,491.241,1573.251,490.09,1573.251,488.672 M1571.221,488.672 c0,2.543,2.063,4.604,4.604,4.604s4.604-2.062,4.604-4.604s-2.063-4.604-4.604-4.604 C1573.279,484.064,1571.221,486.127,1571.221,488.672L1571.221,488.672z">
  4426. </path>
  4427. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  4428. x1="1582.282" y1="474.24" x2="1575.318" y2="485.061"></line>
  4429. </g>
  4430. </g>
  4431. <g id="sbqkg119">
  4432. <g v-if="ajaxData.sbqkg119" id="off_24_">
  4433. <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
  4434. x1="436.381" y1="314.421" x2="453.645" y2="314.421"></line>
  4435. <path fill="#9E2224"
  4436. d="M445.52,328.438c1.418,0,2.574,1.155,2.574,2.571c0,1.418-1.156,2.568-2.574,2.568 c-1.42,0-2.572-1.152-2.572-2.568S444.099,328.438,445.52,328.438 M445.52,326.406c-2.545,0-4.604,2.063-4.604,4.604 c0,2.545,2.063,4.604,4.604,4.604c2.545,0,4.604-2.063,4.604-4.604C450.122,328.464,448.064,326.406,445.52,326.406 L445.52,326.406z">
  4437. </path>
  4438. <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
  4439. x1="445.52" y1="314.649" x2="445.52" y2="327.396"></line>
  4440. </g>
  4441. <g v-else-if="ajaxData.sbqkg119 == false" id="on_24_">
  4442. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  4443. x1="436.381" y1="314.421" x2="453.645" y2="314.421"></line>
  4444. <path fill="#27963A"
  4445. d="M445.52,328.438c1.418,0,2.574,1.155,2.574,2.571c0,1.422-1.156,2.568-2.574,2.568 c-1.42,0-2.572-1.152-2.572-2.568C442.944,329.589,444.099,328.438,445.52,328.438 M445.52,326.406 c-2.545,0-4.604,2.063-4.604,4.604s2.063,4.604,4.604,4.604c2.545,0,4.604-2.063,4.604-4.604S448.064,326.406,445.52,326.406 L445.52,326.406z">
  4446. </path>
  4447. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  4448. x1="451.977" y1="316.583" x2="445.013" y2="327.396"></line>
  4449. </g>
  4450. </g>
  4451. <g id="sbqkg1190">
  4452. <g v-if="ajaxData.sbqkg1190" id="off_19_">
  4453. <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
  4454. x1="462.148" y1="313.935" x2="462.148" y2="296.669"></line>
  4455. <path fill="#9E2224"
  4456. d="M478.737,307.365c-1.42,0-2.573-1.151-2.573-2.565c0-1.422,1.156-2.574,2.573-2.574 s2.571,1.158,2.571,2.574C481.311,306.214,480.156,307.365,478.737,307.365 M478.737,309.396c2.544,0,4.604-2.061,4.604-4.604 c0-2.546-2.063-4.604-4.604-4.604s-4.604,2.063-4.604,4.604C474.133,307.341,476.192,309.396,478.737,309.396L478.737,309.396z">
  4457. </path>
  4458. <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
  4459. x1="462.37" y1="304.794" x2="475.121" y2="304.794"></line>
  4460. </g>
  4461. <g v-else-if="ajaxData.sbqkg1190 == false" id="on_19_">
  4462. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  4463. x1="462.148" y1="313.935" x2="462.148" y2="296.669"></line>
  4464. <path fill="#27963A"
  4465. d="M478.737,307.365c-1.42,0-2.576-1.151-2.576-2.565c0-1.422,1.157-2.574,2.576-2.574 s2.571,1.158,2.571,2.574C481.311,306.214,480.156,307.365,478.737,307.365 M478.737,309.396c2.543,0,4.604-2.061,4.604-4.604 c0-2.546-2.063-4.604-4.604-4.604c-2.544,0-4.604,2.063-4.604,4.604C474.13,307.341,476.192,309.396,478.737,309.396 L478.737,309.396z">
  4466. </path>
  4467. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  4468. x1="464.307" y1="298.335" x2="475.121" y2="305.302"></line>
  4469. </g>
  4470. </g>
  4471. <g id="sbqkg11909">
  4472. <g v-if="ajaxData.sbqkg11909" id="off_26_">
  4473. <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
  4474. x1="462.148" y1="353.161" x2="462.148" y2="335.896"></line>
  4475. <path fill="#9E2224"
  4476. d="M478.737,346.593c-1.42,0-2.573-1.155-2.573-2.569c0-1.422,1.156-2.573,2.573-2.573 s2.571,1.157,2.571,2.573C481.311,345.441,480.156,346.593,478.737,346.593 M478.737,348.626c2.544,0,4.604-2.063,4.604-4.604 s-2.063-4.604-4.604-4.604s-4.604,2.063-4.604,4.604C474.133,346.568,476.192,348.626,478.737,348.626L478.737,348.626z">
  4477. </path>
  4478. <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
  4479. x1="462.37" y1="344.021" x2="475.121" y2="344.021"></line>
  4480. </g>
  4481. <g v-else-if="ajaxData.sbqkg11909 == false" id="on_26_">
  4482. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  4483. x1="462.148" y1="353.161" x2="462.148" y2="335.896"></line>
  4484. <path fill="#27963A"
  4485. d="M478.737,346.593c-1.42,0-2.576-1.155-2.576-2.569c0-1.422,1.157-2.573,2.576-2.573 s2.571,1.157,2.571,2.573C481.311,345.441,480.156,346.593,478.737,346.593 M478.737,348.626c2.543,0,4.604-2.063,4.604-4.604 s-2.063-4.604-4.604-4.604c-2.544,0-4.604,2.063-4.604,4.604C474.13,346.568,476.192,348.626,478.737,348.626L478.737,348.626z">
  4486. </path>
  4487. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  4488. x1="464.307" y1="337.563" x2="475.121" y2="344.529"></line>
  4489. </g>
  4490. </g>
  4491. <g id="sbqkg129">
  4492. <g v-if="ajaxData.sbqkg129" id="off_36_">
  4493. <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
  4494. x1="906.528" y1="314.421" x2="923.792" y2="314.421"></line>
  4495. <path fill="#9E2224"
  4496. d="M915.667,328.438c1.418,0,2.571,1.155,2.571,2.571c0,1.418-1.155,2.568-2.571,2.568 c-1.423,0-2.573-1.152-2.573-2.568S914.243,328.438,915.667,328.438 M915.667,326.406c-2.548,0-4.604,2.063-4.604,4.604 c0,2.545,2.062,4.604,4.604,4.604c2.545,0,4.604-2.063,4.604-4.604C920.271,328.464,918.212,326.406,915.667,326.406 L915.667,326.406z">
  4497. </path>
  4498. <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
  4499. x1="915.667" y1="314.649" x2="915.667" y2="327.396"></line>
  4500. </g>
  4501. <g v-else-if="ajaxData.sbqkg129 == false" id="on_36_">
  4502. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  4503. x1="906.528" y1="314.421" x2="923.792" y2="314.421"></line>
  4504. <path fill="#27963A"
  4505. d="M915.667,328.438c1.418,0,2.571,1.155,2.571,2.571c0,1.422-1.155,2.568-2.571,2.568 c-1.423,0-2.573-1.152-2.573-2.568C913.091,329.589,914.243,328.438,915.667,328.438 M915.667,326.406 c-2.548,0-4.604,2.063-4.604,4.604s2.062,4.604,4.604,4.604c2.545,0,4.604-2.063,4.604-4.604S918.212,326.406,915.667,326.406 L915.667,326.406z">
  4506. </path>
  4507. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  4508. x1="922.12" y1="316.583" x2="915.157" y2="327.396"></line>
  4509. </g>
  4510. </g>
  4511. <g id="sbqkg1290">
  4512. <g v-if="ajaxData.sbqkg1290" id="off_35_">
  4513. <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
  4514. x1="932.296" y1="313.935" x2="932.296" y2="296.669"></line>
  4515. <path fill="#9E2224"
  4516. d="M948.884,307.365c-1.42,0-2.573-1.151-2.573-2.565c0-1.422,1.156-2.574,2.573-2.574 s2.569,1.158,2.569,2.574C951.454,306.214,950.303,307.365,948.884,307.365 M948.884,309.396c2.544,0,4.604-2.061,4.604-4.604 c0-2.546-2.061-4.604-4.604-4.604s-4.604,2.063-4.604,4.604C944.28,307.341,946.34,309.396,948.884,309.396L948.884,309.396z">
  4517. </path>
  4518. <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
  4519. x1="932.52" y1="304.794" x2="945.271" y2="304.794"></line>
  4520. </g>
  4521. <g v-else-if="ajaxData.sbqkg1290 == false" id="on_35_">
  4522. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  4523. x1="932.296" y1="313.935" x2="932.296" y2="296.669"></line>
  4524. <path fill="#27963A"
  4525. d="M948.884,307.365c-1.42,0-2.576-1.151-2.576-2.565c0-1.422,1.157-2.574,2.576-2.574 s2.569,1.158,2.569,2.574C951.454,306.214,950.303,307.365,948.884,307.365 M948.884,309.396c2.543,0,4.604-2.061,4.604-4.604 c0-2.546-2.061-4.604-4.604-4.604c-2.544,0-4.606,2.063-4.606,4.604C944.277,307.341,946.34,309.396,948.884,309.396 L948.884,309.396z">
  4526. </path>
  4527. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  4528. x1="934.451" y1="298.335" x2="945.271" y2="305.302"></line>
  4529. </g>
  4530. </g>
  4531. <g id="sbqkg12909">
  4532. <g v-if="ajaxData.sbqkg12909" id="off_34_">
  4533. <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
  4534. x1="932.296" y1="353.161" x2="932.296" y2="335.896"></line>
  4535. <path fill="#9E2224"
  4536. d="M948.884,346.593c-1.42,0-2.573-1.155-2.573-2.569c0-1.422,1.156-2.573,2.573-2.573 s2.569,1.157,2.569,2.573C951.454,345.441,950.303,346.593,948.884,346.593 M948.884,348.626c2.544,0,4.604-2.063,4.604-4.604 s-2.061-4.604-4.604-4.604s-4.604,2.063-4.604,4.604C944.28,346.568,946.34,348.626,948.884,348.626L948.884,348.626z">
  4537. </path>
  4538. <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
  4539. x1="932.52" y1="344.021" x2="945.271" y2="344.021"></line>
  4540. </g>
  4541. <g v-else-if="ajaxData.sbqkg12909 == false" id="on_34_">
  4542. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  4543. x1="932.296" y1="353.161" x2="932.296" y2="335.896"></line>
  4544. <path fill="#27963A"
  4545. d="M948.884,346.593c-1.42,0-2.576-1.155-2.576-2.569c0-1.422,1.157-2.573,2.576-2.573 s2.569,1.157,2.569,2.573C951.454,345.441,950.303,346.593,948.884,346.593 M948.884,348.626c2.543,0,4.604-2.063,4.604-4.604 s-2.061-4.604-4.604-4.604c-2.544,0-4.606,2.063-4.606,4.604C944.277,346.568,946.34,348.626,948.884,348.626L948.884,348.626z">
  4546. </path>
  4547. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  4548. x1="934.451" y1="337.563" x2="945.271" y2="344.529"></line>
  4549. </g>
  4550. </g>
  4551. <g id="sbqkg159">
  4552. <g v-if="ajaxData.sbqkg159" id="off_45_">
  4553. <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
  4554. x1="1448.143" y1="314.421" x2="1465.406" y2="314.421"></line>
  4555. <path fill="#9E2224"
  4556. d="M1457.281,328.438c1.418,0,2.574,1.155,2.574,2.571c0,1.418-1.158,2.568-2.574,2.568 c-1.42,0-2.572-1.152-2.572-2.568S1455.859,328.438,1457.281,328.438 M1457.281,326.406c-2.545,0-4.604,2.063-4.604,4.604 c0,2.545,2.063,4.604,4.604,4.604c2.545,0,4.604-2.063,4.604-4.604C1461.886,328.464,1459.823,326.406,1457.281,326.406 L1457.281,326.406z">
  4557. </path>
  4558. <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
  4559. x1="1457.281" y1="314.649" x2="1457.281" y2="327.396"></line>
  4560. </g>
  4561. <g v-else-if="ajaxData.sbqkg159 == false" id="on_45_">
  4562. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  4563. x1="1448.143" y1="314.421" x2="1465.406" y2="314.421"></line>
  4564. <path fill="#27963A"
  4565. d="M1457.281,328.438c1.418,0,2.574,1.155,2.574,2.571c0,1.422-1.158,2.568-2.574,2.568 c-1.42,0-2.572-1.152-2.572-2.568C1454.702,329.589,1455.859,328.438,1457.281,328.438 M1457.281,326.406 c-2.545,0-4.604,2.063-4.604,4.604s2.063,4.604,4.604,4.604c2.545,0,4.604-2.063,4.604-4.604S1459.823,326.406,1457.281,326.406 L1457.281,326.406z">
  4566. </path>
  4567. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  4568. x1="1463.736" y1="316.583" x2="1456.773" y2="327.396"></line>
  4569. </g>
  4570. </g>
  4571. <g id="sbqkg1590">
  4572. <g v-if="ajaxData.sbqkg1590" id="off_44_">
  4573. <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
  4574. x1="1473.907" y1="313.935" x2="1473.907" y2="296.669"></line>
  4575. <path fill="#9E2224"
  4576. d="M1490.495,307.365c-1.42,0-2.57-1.151-2.57-2.565c0-1.422,1.154-2.574,2.57-2.574 c1.418,0,2.572,1.158,2.572,2.574S1491.917,307.365,1490.495,307.365 M1490.495,309.396c2.547,0,4.604-2.061,4.604-4.604 c0-2.546-2.063-4.604-4.604-4.604s-4.604,2.063-4.604,4.604C1485.895,307.341,1487.95,309.396,1490.495,309.396L1490.495,309.396 z">
  4577. </path>
  4578. <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
  4579. x1="1474.134" y1="304.794" x2="1486.885" y2="304.794"></line>
  4580. </g>
  4581. <g v-else-if="ajaxData.sbqkg1590 == false" id="on_44_">
  4582. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  4583. x1="1473.907" y1="313.935" x2="1473.907" y2="296.669"></line>
  4584. <path fill="#27963A"
  4585. d="M1490.495,307.365c-1.42,0-2.573-1.151-2.573-2.565c0-1.422,1.153-2.574,2.573-2.574 s2.572,1.158,2.572,2.574S1491.917,307.365,1490.495,307.365 M1490.495,309.396c2.543,0,4.604-2.061,4.604-4.604 c0-2.546-2.063-4.604-4.604-4.604c-2.545,0-4.604,2.063-4.604,4.604C1485.891,307.341,1487.95,309.396,1490.495,309.396 L1490.495,309.396z">
  4586. </path>
  4587. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  4588. x1="1476.068" y1="298.335" x2="1486.885" y2="305.302"></line>
  4589. </g>
  4590. </g>
  4591. <g id="sbqkg15909">
  4592. <g v-if="ajaxData.sbqkg15909" id="off_43_">
  4593. <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
  4594. x1="1473.907" y1="353.161" x2="1473.907" y2="335.896"></line>
  4595. <path fill="#9E2224"
  4596. d="M1490.495,346.593c-1.42,0-2.57-1.155-2.57-2.569c0-1.422,1.154-2.573,2.57-2.573 c1.418,0,2.572,1.157,2.572,2.573C1493.07,345.441,1491.917,346.593,1490.495,346.593 M1490.495,348.626 c2.547,0,4.604-2.063,4.604-4.604s-2.063-4.604-4.604-4.604s-4.604,2.063-4.604,4.604 C1485.895,346.568,1487.95,348.626,1490.495,348.626L1490.495,348.626z">
  4597. </path>
  4598. <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
  4599. x1="1474.134" y1="344.021" x2="1486.885" y2="344.021"></line>
  4600. </g>
  4601. <g v-else-if="ajaxData.sbqkg15909 == false" id="on_43_">
  4602. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  4603. x1="1473.907" y1="353.161" x2="1473.907" y2="335.896"></line>
  4604. <path fill="#27963A"
  4605. d="M1490.495,346.593c-1.42,0-2.573-1.155-2.573-2.569c0-1.422,1.153-2.573,2.573-2.573 s2.572,1.157,2.572,2.573C1493.07,345.441,1491.917,346.593,1490.495,346.593 M1490.495,348.626c2.543,0,4.604-2.063,4.604-4.604 s-2.063-4.604-4.604-4.604c-2.545,0-4.604,2.063-4.604,4.604C1485.891,346.568,1487.95,348.626,1490.495,348.626 L1490.495,348.626z">
  4606. </path>
  4607. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  4608. x1="1476.068" y1="337.563" x2="1486.885" y2="344.529"></line>
  4609. </g>
  4610. </g>
  4611. <g id="sbqkg3150">
  4612. <g v-if="ajaxData.sbqkg3150" id="off_55_">
  4613. <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
  4614. x1="442.371" y1="676.394" x2="459.641" y2="676.394"></line>
  4615. <path fill="#9E2224"
  4616. d="M448.944,692.985c0-1.425,1.154-2.574,2.569-2.574c1.422,0,2.572,1.156,2.572,2.574 c0,1.416-1.156,2.567-2.572,2.567C450.096,695.556,448.944,694.403,448.944,692.985 M446.908,692.985 c0,2.543,2.063,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.545-2.062-4.604-4.604-4.604 C448.968,688.378,446.908,690.438,446.908,692.985L446.908,692.985z">
  4617. </path>
  4618. <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
  4619. x1="451.516" y1="676.615" x2="451.516" y2="689.367"></line>
  4620. </g>
  4621. <g v-else-if="ajaxData.sbqkg3150 == false" id="on_55_">
  4622. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  4623. x1="442.371" y1="676.394" x2="459.641" y2="676.394"></line>
  4624. <path fill="#27963A"
  4625. d="M448.944,692.985c0-1.425,1.154-2.576,2.569-2.576c1.422,0,2.572,1.153,2.572,2.576 c0,1.418-1.156,2.567-2.572,2.567C450.096,695.556,448.944,694.403,448.944,692.985 M446.908,692.985 c0,2.543,2.063,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.548-2.062-4.604-4.604-4.604 C448.968,688.376,446.908,690.438,446.908,692.985L446.908,692.985z">
  4626. </path>
  4627. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  4628. x1="457.975" y1="678.552" x2="451.007" y2="689.367"></line>
  4629. </g>
  4630. </g>
  4631. <g id="sbqkg3130">
  4632. <g v-if="ajaxData.sbqkg3130" id="off_53_">
  4633. <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
  4634. x1="128.18" y1="676.394" x2="145.446" y2="676.394"></line>
  4635. <path fill="#9E2224"
  4636. d="M134.75,692.985c0-1.425,1.152-2.574,2.567-2.574c1.424,0,2.572,1.156,2.572,2.574 c0,1.416-1.156,2.567-2.572,2.567C135.901,695.556,134.75,694.403,134.75,692.985 M132.717,692.985 c0,2.543,2.061,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.545-2.063-4.604-4.604-4.604 C134.773,688.378,132.717,690.438,132.717,692.985L132.717,692.985z">
  4637. </path>
  4638. <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
  4639. x1="137.321" y1="676.615" x2="137.321" y2="689.367"></line>
  4640. </g>
  4641. <g v-else-if="ajaxData.sbqkg3130 == false" id="on_53_">
  4642. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  4643. x1="128.18" y1="676.394" x2="145.446" y2="676.394"></line>
  4644. <path fill="#27963A"
  4645. d="M134.75,692.985c0-1.425,1.152-2.576,2.567-2.576c1.424,0,2.572,1.153,2.572,2.576 c0,1.418-1.156,2.567-2.572,2.567C135.901,695.556,134.75,694.403,134.75,692.985 M132.717,692.985 c0,2.543,2.061,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.548-2.063-4.604-4.604-4.604 C134.773,688.376,132.717,690.438,132.717,692.985L132.717,692.985z">
  4646. </path>
  4647. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  4648. x1="143.78" y1="678.552" x2="136.813" y2="689.367"></line>
  4649. </g>
  4650. </g>
  4651. <g id="sbqkg3140">
  4652. <g v-if="ajaxData.sbqkg3140" id="off_57_">
  4653. <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
  4654. x1="285.231" y1="676.394" x2="302.498" y2="676.394"></line>
  4655. <path fill="#9E2224"
  4656. d="M291.801,692.985c0-1.425,1.155-2.574,2.57-2.574c1.421,0,2.569,1.156,2.569,2.574 c0,1.416-1.153,2.567-2.569,2.567C292.953,695.556,291.801,694.403,291.801,692.985 M289.768,692.985 c0,2.543,2.063,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.545-2.061-4.604-4.604-4.604 C291.825,688.378,289.768,690.438,289.768,692.985L289.768,692.985z">
  4657. </path>
  4658. <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
  4659. x1="294.373" y1="676.615" x2="294.373" y2="689.367"></line>
  4660. </g>
  4661. <g v-else-if="ajaxData.sbqkg3140 == false" id="on_57_">
  4662. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  4663. x1="285.231" y1="676.394" x2="302.498" y2="676.394"></line>
  4664. <path fill="#27963A"
  4665. d="M291.801,692.985c0-1.425,1.155-2.576,2.57-2.576c1.421,0,2.569,1.153,2.569,2.576 c0,1.418-1.153,2.567-2.569,2.567C292.953,695.556,291.801,694.403,291.801,692.985 M289.768,692.985 c0,2.543,2.063,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.548-2.061-4.604-4.604-4.604 C291.825,688.376,289.768,690.438,289.768,692.985L289.768,692.985z">
  4666. </path>
  4667. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  4668. x1="300.832" y1="678.552" x2="293.864" y2="689.367"></line>
  4669. </g>
  4670. </g>
  4671. <g id="sbqkg3160">
  4672. <g v-if="ajaxData.sbqkg3160" id="off_56_">
  4673. <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
  4674. x1="362.274" y1="676.394" x2="379.541" y2="676.394"></line>
  4675. <path fill="#9E2224"
  4676. d="M368.845,692.985c0-1.425,1.155-2.574,2.57-2.574c1.421,0,2.569,1.156,2.569,2.574 c0,1.416-1.153,2.567-2.569,2.567C369.996,695.556,368.845,694.403,368.845,692.985 M366.812,692.985 c0,2.543,2.063,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.545-2.061-4.604-4.604-4.604 C368.868,688.378,366.812,690.438,366.812,692.985L366.812,692.985z">
  4677. </path>
  4678. <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
  4679. x1="371.416" y1="676.615" x2="371.416" y2="689.367"></line>
  4680. </g>
  4681. <g v-else-if="ajaxData.sbqkg3160 == false" id="on_56_">
  4682. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  4683. x1="362.274" y1="676.394" x2="379.541" y2="676.394"></line>
  4684. <path fill="#27963A"
  4685. d="M368.845,692.985c0-1.425,1.155-2.576,2.57-2.576c1.421,0,2.569,1.153,2.569,2.576 c0,1.418-1.153,2.567-2.569,2.567C369.996,695.556,368.845,694.403,368.845,692.985 M366.812,692.985 c0,2.543,2.063,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.548-2.061-4.604-4.604-4.604 C368.868,688.376,366.812,690.438,366.812,692.985L366.812,692.985z">
  4686. </path>
  4687. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  4688. x1="377.875" y1="678.552" x2="370.907" y2="689.367"></line>
  4689. </g>
  4690. </g>
  4691. <g id="sbqkg3120">
  4692. <g v-if="ajaxData.sbqkg3120" id="off_52_">
  4693. <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
  4694. x1="45.555" y1="676.394" x2="62.822" y2="676.394"></line>
  4695. <path fill="#9E2224"
  4696. d="M52.125,692.985c0-1.425,1.152-2.574,2.567-2.574c1.424,0,2.572,1.156,2.572,2.574 c0,1.416-1.156,2.567-2.572,2.567C53.277,695.556,52.125,694.403,52.125,692.985 M50.092,692.985 c0,2.543,2.061,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.545-2.063-4.604-4.604-4.604 C52.149,688.378,50.092,690.438,50.092,692.985L50.092,692.985z">
  4697. </path>
  4698. <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
  4699. x1="54.697" y1="676.615" x2="54.697" y2="689.367"></line>
  4700. </g>
  4701. <g v-else-if="ajaxData.sbqkg3120 == false" id="on_52_">
  4702. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  4703. x1="45.555" y1="676.394" x2="62.822" y2="676.394"></line>
  4704. <path fill="#27963A"
  4705. d="M52.125,692.985c0-1.425,1.152-2.576,2.567-2.576c1.424,0,2.572,1.153,2.572,2.576 c0,1.418-1.156,2.567-2.572,2.567C53.277,695.556,52.125,694.403,52.125,692.985 M50.092,692.985 c0,2.543,2.061,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.548-2.063-4.604-4.604-4.604 C52.149,688.376,50.092,690.438,50.092,692.985L50.092,692.985z">
  4706. </path>
  4707. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  4708. x1="61.156" y1="678.552" x2="54.188" y2="689.367"></line>
  4709. </g>
  4710. </g>
  4711. <g id="sbqkg3510">
  4712. <g v-if="ajaxData.sbqkg3510" id="off_67_">
  4713. <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
  4714. x1="1458.12" y1="677.06" x2="1475.391" y2="677.06"></line>
  4715. <path fill="#9E2224"
  4716. d="M1464.693,693.651c0-1.425,1.154-2.574,2.569-2.574c1.421,0,2.571,1.156,2.571,2.574 c0,1.416-1.155,2.567-2.571,2.567C1465.845,696.222,1464.693,695.069,1464.693,693.651 M1462.657,693.651 c0,2.543,2.063,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.545-2.062-4.604-4.604-4.604 C1464.717,689.044,1462.657,691.104,1462.657,693.651L1462.657,693.651z">
  4717. </path>
  4718. <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
  4719. x1="1467.266" y1="677.281" x2="1467.266" y2="690.033"></line>
  4720. </g>
  4721. <g v-else-if="ajaxData.sbqkg3510 == false" id="on_67_">
  4722. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  4723. x1="1458.12" y1="677.06" x2="1475.391" y2="677.06"></line>
  4724. <path fill="#27963A"
  4725. d="M1464.693,693.651c0-1.425,1.154-2.576,2.569-2.576c1.421,0,2.571,1.153,2.571,2.576 c0,1.418-1.155,2.567-2.571,2.567C1465.845,696.222,1464.693,695.069,1464.693,693.651 M1462.657,693.651 c0,2.543,2.063,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.548-2.062-4.604-4.604-4.604 C1464.717,689.042,1462.657,691.104,1462.657,693.651L1462.657,693.651z">
  4726. </path>
  4727. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  4728. x1="1473.725" y1="679.218" x2="1466.756" y2="690.033"></line>
  4729. </g>
  4730. </g>
  4731. <g id="sbqkg3520">
  4732. <g v-if="ajaxData.sbqkg3520" id="off_66_">
  4733. <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
  4734. x1="1537.211" y1="677.06" x2="1554.479" y2="677.06"></line>
  4735. <path fill="#9E2224"
  4736. d="M1543.781,693.651c0-1.425,1.156-2.574,2.57-2.574c1.422,0,2.571,1.156,2.571,2.574 c0,1.416-1.155,2.567-2.571,2.567C1544.934,696.222,1543.781,695.069,1543.781,693.651 M1541.745,693.651 c0,2.543,2.063,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.545-2.063-4.604-4.604-4.604 C1543.805,689.044,1541.745,691.104,1541.745,693.651L1541.745,693.651z">
  4737. </path>
  4738. <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
  4739. x1="1546.354" y1="677.281" x2="1546.354" y2="690.033"></line>
  4740. </g>
  4741. <g v-else-if="ajaxData.sbqkg3520 == false" id="on_66_">
  4742. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  4743. x1="1537.211" y1="677.06" x2="1554.479" y2="677.06"></line>
  4744. <path fill="#27963A"
  4745. d="M1543.781,693.651c0-1.425,1.156-2.576,2.57-2.576c1.422,0,2.571,1.153,2.571,2.576 c0,1.418-1.155,2.567-2.571,2.567C1544.934,696.222,1543.781,695.069,1543.781,693.651 M1541.745,693.651 c0,2.543,2.063,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.548-2.063-4.604-4.604-4.604 C1543.805,689.042,1541.745,691.104,1541.745,693.651L1541.745,693.651z">
  4746. </path>
  4747. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  4748. x1="1552.813" y1="679.218" x2="1545.844" y2="690.033"></line>
  4749. </g>
  4750. </g>
  4751. <g id="sbqkg3530">
  4752. <g v-if="ajaxData.sbqkg3530" id="off_62_">
  4753. <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
  4754. x1="1618.406" y1="677.06" x2="1635.676" y2="677.06"></line>
  4755. <path fill="#9E2224"
  4756. d="M1624.979,693.651c0-1.425,1.156-2.574,2.57-2.574c1.422,0,2.569,1.156,2.569,2.574 c0,1.416-1.154,2.567-2.569,2.567C1626.131,696.222,1624.979,695.069,1624.979,693.651 M1622.945,693.651 c0,2.543,2.063,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.545-2.061-4.604-4.604-4.604 C1625.001,689.044,1622.945,691.104,1622.945,693.651L1622.945,693.651z">
  4757. </path>
  4758. <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
  4759. x1="1627.551" y1="677.281" x2="1627.551" y2="690.033"></line>
  4760. </g>
  4761. <g v-else-if="ajaxData.sbqkg3530 == false" id="on_62_">
  4762. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  4763. x1="1618.406" y1="677.06" x2="1635.676" y2="677.06"></line>
  4764. <path fill="#27963A"
  4765. d="M1624.979,693.651c0-1.425,1.156-2.576,2.57-2.576c1.422,0,2.569,1.153,2.569,2.576 c0,1.418-1.154,2.567-2.569,2.567C1626.131,696.222,1624.979,695.069,1624.979,693.651 M1622.945,693.651 c0,2.543,2.063,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.548-2.061-4.604-4.604-4.604 C1625.001,689.042,1622.945,691.104,1622.945,693.651L1622.945,693.651z">
  4766. </path>
  4767. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  4768. x1="1634.01" y1="679.218" x2="1627.04" y2="690.033"></line>
  4769. </g>
  4770. </g>
  4771. <g id="sbqkg3540">
  4772. <g v-if="ajaxData.sbqkg3540" id="off_65_">
  4773. <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
  4774. x1="1696.924" y1="677.06" x2="1714.191" y2="677.06"></line>
  4775. <path fill="#9E2224"
  4776. d="M1703.491,693.651c0-1.425,1.156-2.574,2.57-2.574c1.422,0,2.571,1.156,2.571,2.574 c0,1.416-1.155,2.567-2.571,2.567C1704.646,696.222,1703.491,695.069,1703.491,693.651 M1701.461,693.651 c0,2.543,2.061,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.545-2.063-4.604-4.604-4.604 C1703.518,689.044,1701.461,691.104,1701.461,693.651L1701.461,693.651z">
  4777. </path>
  4778. <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
  4779. x1="1706.066" y1="677.281" x2="1706.066" y2="690.033"></line>
  4780. </g>
  4781. <g v-else-if="ajaxData.sbqkg3540 == false" id="on_65_">
  4782. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  4783. x1="1696.924" y1="677.06" x2="1714.191" y2="677.06"></line>
  4784. <path fill="#27963A"
  4785. d="M1703.491,693.651c0-1.425,1.156-2.576,2.57-2.576c1.422,0,2.571,1.153,2.571,2.576 c0,1.418-1.155,2.567-2.571,2.567C1704.646,696.222,1703.491,695.069,1703.491,693.651 M1701.461,693.651 c0,2.543,2.061,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.548-2.063-4.604-4.604-4.604 C1703.518,689.042,1701.461,691.104,1701.461,693.651L1701.461,693.651z">
  4786. </path>
  4787. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  4788. x1="1712.525" y1="679.218" x2="1705.557" y2="690.033"></line>
  4789. </g>
  4790. </g>
  4791. <g id="sbqkg3220">
  4792. <g v-if="ajaxData.sbqkg3220" id="off_60_">
  4793. <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
  4794. x1="627.508" y1="675.394" x2="644.773" y2="675.394"></line>
  4795. <path fill="#9E2224"
  4796. d="M634.075,691.985c0-1.425,1.155-2.574,2.57-2.574c1.421,0,2.571,1.156,2.571,2.574 c0,1.416-1.155,2.567-2.571,2.567C635.229,694.556,634.075,693.403,634.075,691.985 M632.045,691.985 c0,2.543,2.061,4.604,4.604,4.604c2.544,0,4.604-2.063,4.604-4.604c0-2.545-2.063-4.604-4.604-4.604 C634.102,687.378,632.045,689.438,632.045,691.985L632.045,691.985z">
  4797. </path>
  4798. <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
  4799. x1="636.648" y1="675.615" x2="636.648" y2="688.367"></line>
  4800. </g>
  4801. <g v-else-if="ajaxData.sbqkg3220 == false" id="on_60_">
  4802. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  4803. x1="627.508" y1="675.394" x2="644.773" y2="675.394"></line>
  4804. <path fill="#27963A"
  4805. d="M634.075,691.985c0-1.425,1.155-2.576,2.57-2.576c1.421,0,2.571,1.153,2.571,2.576 c0,1.418-1.155,2.567-2.571,2.567C635.229,694.556,634.075,693.403,634.075,691.985 M632.045,691.985 c0,2.543,2.061,4.604,4.604,4.604c2.544,0,4.604-2.063,4.604-4.604c0-2.548-2.063-4.604-4.604-4.604 C634.102,687.376,632.045,689.438,632.045,691.985L632.045,691.985z">
  4806. </path>
  4807. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  4808. x1="643.107" y1="677.552" x2="636.141" y2="688.367"></line>
  4809. </g>
  4810. </g>
  4811. <g id="sbqkg3230">
  4812. <g v-if="ajaxData.sbqkg3230" id="off_59_">
  4813. <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
  4814. x1="786.559" y1="675.394" x2="803.823" y2="675.394"></line>
  4815. <path fill="#9E2224"
  4816. d="M793.129,691.985c0-1.425,1.152-2.574,2.567-2.574c1.421,0,2.572,1.156,2.572,2.574 c0,1.416-1.156,2.567-2.572,2.567C794.281,694.556,793.129,693.403,793.129,691.985 M791.096,691.985 c0,2.543,2.062,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.545-2.063-4.604-4.604-4.604 C793.153,687.378,791.096,689.438,791.096,691.985L791.096,691.985z">
  4817. </path>
  4818. <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
  4819. x1="795.698" y1="675.615" x2="795.698" y2="688.367"></line>
  4820. </g>
  4821. <g v-else-if="ajaxData.sbqkg3230 == false" id="on_59_">
  4822. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  4823. x1="786.559" y1="675.394" x2="803.823" y2="675.394"></line>
  4824. <path fill="#27963A"
  4825. d="M793.129,691.985c0-1.425,1.152-2.576,2.567-2.576c1.421,0,2.572,1.153,2.572,2.576 c0,1.418-1.156,2.567-2.572,2.567C794.281,694.556,793.129,693.403,793.129,691.985 M791.096,691.985 c0,2.543,2.062,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.548-2.063-4.604-4.604-4.604 C793.153,687.376,791.096,689.438,791.096,691.985L791.096,691.985z">
  4826. </path>
  4827. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  4828. x1="802.157" y1="677.552" x2="795.192" y2="688.367"></line>
  4829. </g>
  4830. </g>
  4831. <g id="sbqkg3240">
  4832. <g v-if="ajaxData.sbqkg3240" id="off_58_">
  4833. <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
  4834. x1="865.604" y1="675.394" x2="882.866" y2="675.394"></line>
  4835. <path fill="#9E2224"
  4836. d="M872.173,691.985c0-1.425,1.152-2.574,2.567-2.574c1.421,0,2.571,1.156,2.571,2.574 c0,1.416-1.155,2.567-2.571,2.567C873.323,694.556,872.173,693.403,872.173,691.985 M870.14,691.985 c0,2.543,2.062,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.545-2.063-4.604-4.604-4.604 C872.196,687.378,870.14,689.438,870.14,691.985L870.14,691.985z">
  4837. </path>
  4838. <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
  4839. x1="874.741" y1="675.615" x2="874.741" y2="688.367"></line>
  4840. </g>
  4841. <g v-else-if="ajaxData.sbqkg3240 == false" id="on_58_">
  4842. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  4843. x1="865.604" y1="675.394" x2="882.866" y2="675.394"></line>
  4844. <path fill="#27963A"
  4845. d="M872.173,691.985c0-1.425,1.152-2.576,2.567-2.576c1.421,0,2.571,1.153,2.571,2.576 c0,1.418-1.155,2.567-2.571,2.567C873.323,694.556,872.173,693.403,872.173,691.985 M870.14,691.985 c0,2.543,2.062,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.548-2.063-4.604-4.604-4.604 C872.196,687.376,870.14,689.438,870.14,691.985L870.14,691.985z">
  4846. </path>
  4847. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  4848. x1="881.2" y1="677.552" x2="874.235" y2="688.367"></line>
  4849. </g>
  4850. </g>
  4851. <g id="sbqkg3210">
  4852. <g v-if="ajaxData.sbqkg3210" id="off_54_">
  4853. <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
  4854. x1="544.883" y1="675.394" x2="562.15" y2="675.394"></line>
  4855. <path fill="#9E2224"
  4856. d="M551.451,691.985c0-1.425,1.155-2.574,2.569-2.574c1.422,0,2.572,1.156,2.572,2.574 c0,1.416-1.156,2.567-2.572,2.567C552.605,694.556,551.451,693.403,551.451,691.985 M549.42,691.985 c0,2.543,2.061,4.604,4.604,4.604c2.544,0,4.604-2.063,4.604-4.604c0-2.545-2.063-4.604-4.604-4.604 C551.477,687.378,549.42,689.438,549.42,691.985L549.42,691.985z">
  4857. </path>
  4858. <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
  4859. x1="554.025" y1="675.615" x2="554.025" y2="688.367"></line>
  4860. </g>
  4861. <g v-else-if="ajaxData.sbqkg3210 == false" id="on_54_">
  4862. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  4863. x1="544.883" y1="675.394" x2="562.15" y2="675.394"></line>
  4864. <path fill="#27963A"
  4865. d="M551.451,691.985c0-1.425,1.155-2.576,2.569-2.576c1.422,0,2.572,1.153,2.572,2.576 c0,1.418-1.156,2.567-2.572,2.567C552.605,694.556,551.451,693.403,551.451,691.985 M549.42,691.985 c0,2.543,2.061,4.604,4.604,4.604c2.544,0,4.604-2.063,4.604-4.604c0-2.548-2.063-4.604-4.604-4.604 C551.477,687.376,549.42,689.438,549.42,691.985L549.42,691.985z">
  4866. </path>
  4867. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  4868. x1="560.484" y1="677.552" x2="553.516" y2="688.367"></line>
  4869. </g>
  4870. </g>
  4871. <g id="sbqkg3320">
  4872. <g v-if="ajaxData.sbqkg3320" id="off_64_">
  4873. <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
  4874. x1="1074.931" y1="677.06" x2="1092.198" y2="677.06"></line>
  4875. <path fill="#9E2224"
  4876. d="M1081.501,693.651c0-1.425,1.152-2.574,2.567-2.574c1.421,0,2.571,1.156,2.571,2.574 c0,1.416-1.155,2.567-2.571,2.567C1082.653,696.222,1081.501,695.069,1081.501,693.651 M1079.468,693.651 c0,2.543,2.062,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.545-2.063-4.604-4.604-4.604 C1081.525,689.044,1079.468,691.104,1079.468,693.651L1079.468,693.651z">
  4877. </path>
  4878. <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
  4879. x1="1084.073" y1="677.281" x2="1084.073" y2="690.033"></line>
  4880. </g>
  4881. <g v-else-if="ajaxData.sbqkg3320 == false" id="on_64_">
  4882. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  4883. x1="1074.931" y1="677.06" x2="1092.198" y2="677.06"></line>
  4884. <path fill="#27963A"
  4885. d="M1081.501,693.651c0-1.425,1.152-2.576,2.567-2.576c1.421,0,2.571,1.153,2.571,2.576 c0,1.418-1.155,2.567-2.571,2.567C1082.653,696.222,1081.501,695.069,1081.501,693.651 M1079.468,693.651 c0,2.543,2.062,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.548-2.063-4.604-4.604-4.604 C1081.525,689.042,1079.468,691.104,1079.468,693.651L1079.468,693.651z">
  4886. </path>
  4887. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  4888. x1="1090.531" y1="679.218" x2="1083.564" y2="690.033"></line>
  4889. </g>
  4890. </g>
  4891. <g id="sbqkg3240">
  4892. <g v-if="ajaxData.sbqkg3240" id="off_63_">
  4893. <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
  4894. x1="1152.656" y1="677.06" x2="1169.922" y2="677.06"></line>
  4895. <path fill="#9E2224"
  4896. d="M1159.227,693.651c0-1.425,1.154-2.574,2.57-2.574c1.42,0,2.569,1.156,2.569,2.574 c0,1.416-1.154,2.567-2.569,2.567C1160.376,696.222,1159.227,695.069,1159.227,693.651 M1157.193,693.651 c0,2.543,2.063,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.545-2.062-4.604-4.604-4.604 C1159.249,689.044,1157.193,691.104,1157.193,693.651L1157.193,693.651z">
  4897. </path>
  4898. <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
  4899. x1="1161.797" y1="677.281" x2="1161.797" y2="690.033"></line>
  4900. </g>
  4901. <g v-else-if="ajaxData.sbqkg3240 == false" id="on_63_">
  4902. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  4903. x1="1152.656" y1="677.06" x2="1169.922" y2="677.06"></line>
  4904. <path fill="#27963A"
  4905. d="M1159.227,693.651c0-1.425,1.154-2.576,2.57-2.576c1.42,0,2.569,1.153,2.569,2.576 c0,1.418-1.154,2.567-2.569,2.567C1160.376,696.222,1159.227,695.069,1159.227,693.651 M1157.193,693.651 c0,2.543,2.063,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.548-2.062-4.604-4.604-4.604 C1159.249,689.042,1157.193,691.104,1157.193,693.651L1157.193,693.651z">
  4906. </path>
  4907. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  4908. x1="1168.256" y1="679.218" x2="1161.286" y2="690.033"></line>
  4909. </g>
  4910. </g>
  4911. <g id="sbqkg3310">
  4912. <g v-if="ajaxData.sbqkg3310" id="off_61_">
  4913. <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
  4914. x1="992.307" y1="677.06" x2="1009.573" y2="677.06"></line>
  4915. <path fill="#9E2224"
  4916. d="M998.877,693.651c0-1.425,1.152-2.574,2.567-2.574c1.421,0,2.572,1.156,2.572,2.574 c0,1.416-1.156,2.567-2.572,2.567C1000.028,696.222,998.877,695.069,998.877,693.651 M996.844,693.651 c0,2.543,2.062,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.545-2.063-4.604-4.604-4.604 C998.9,689.044,996.844,691.104,996.844,693.651L996.844,693.651z">
  4917. </path>
  4918. <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
  4919. x1="1001.448" y1="677.281" x2="1001.448" y2="690.033"></line>
  4920. </g>
  4921. <g v-else-if="ajaxData.sbqkg3310 == false" id="on_61_">
  4922. <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
  4923. x1="992.307" y1="677.06" x2="1009.573" y2="677.06"></line>
  4924. <path fill="#27963A"
  4925. d="M998.877,693.651c0-1.425,1.152-2.576,2.567-2.576c1.421,0,2.572,1.153,2.572,2.576 c0,1.418-1.156,2.567-2.572,2.567C1000.028,696.222,998.877,695.069,998.877,693.651 M996.844,693.651 c0,2.543,2.062,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.548-2.063-4.604-4.604-4.604 C998.9,689.042,996.844,691.104,996.844,693.651L996.844,693.651z">
  4926. </path>
  4927. <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
  4928. x1="1007.906" y1="679.218" x2="1000.939" y2="690.033"></line>
  4929. </g>
  4930. </g>
  4931. </g>
  4932. <g id="data">
  4933. <g>
  4934. <text transform="matrix(1 0 0 1 92.1047 75.3186)" fill="#1D833B"
  4935. font-family="'MicrosoftYaHei'" font-size="9.463">
  4936. {{ ajaxData.sbqlaa6 }}
  4937. </text>
  4938. <text transform="matrix(1 0 0 1 92.1042 93.0139)" fill="#1D833B"
  4939. font-family="'MicrosoftYaHei'" font-size="9.463">
  4940. {{ ajaxData.sbqpkw6 }}
  4941. </text>
  4942. <text transform="matrix(1 0 0 1 92.1042 113.4426)" fill="#1D833B"
  4943. font-family="'MicrosoftYaHei'" font-size="9.463">
  4944. {{ ajaxData.sbqqkvar6 }}
  4945. </text>
  4946. <text transform="matrix(1 0 0 1 92.1042 133.7747)" fill="#1D833B"
  4947. font-family="'MicrosoftYaHei'" font-size="9.463">
  4948. {{ ajaxData.sbqfhz6 }}
  4949. </text>
  4950. <text transform="matrix(1 0 0 1 92.1042 154.1653)" fill="#1D833B"
  4951. font-family="'MicrosoftYaHei'" font-size="9.463">
  4952. {{ ajaxData.sbqcos6 }}
  4953. </text>
  4954. </g>
  4955. <g>
  4956. <text transform="matrix(1 0 0 1 453.5032 161.8821)" fill="#1D833B"
  4957. font-family="'MicrosoftYaHei'" font-size="9.463">
  4958. {{ ajaxData.sbquakv6 }}
  4959. </text>
  4960. <text transform="matrix(1 0 0 1 453.5022 179.5774)" fill="#1D833B"
  4961. font-family="'MicrosoftYaHei'" font-size="9.463">
  4962. {{ ajaxData.sbqubkv6 }}
  4963. </text>
  4964. <text transform="matrix(1 0 0 1 453.5022 200.2454)" fill="#1D833B"
  4965. font-family="'MicrosoftYaHei'" font-size="9.463">
  4966. {{ ajaxData.sbquckv6 }}
  4967. </text>
  4968. <text transform="matrix(1 0 0 1 453.5022 220.7483)" fill="#1D833B"
  4969. font-family="'MicrosoftYaHei'" font-size="9.463">
  4970. {{ ajaxData.sbquabkv6 }}
  4971. </text>
  4972. <text transform="matrix(1 0 0 1 453.5022 241.2483)" fill="#1D833B"
  4973. font-family="'MicrosoftYaHei'" font-size="9.463">
  4974. {{ ajaxData.sbqubckv6 }}
  4975. </text>
  4976. <text transform="matrix(1 0 0 1 453.5022 262.7483)" fill="#1D833B"
  4977. font-family="'MicrosoftYaHei'" font-size="9.463">
  4978. {{ ajaxData.sbqu0kv6 }}
  4979. </text>
  4980. </g>
  4981. <g>
  4982. <text transform="matrix(1 0 0 1 765.4387 75.3186)" fill="#1D833B"
  4983. font-family="'MicrosoftYaHei'" font-size="9.463">
  4984. {{ ajaxData.sbqlaa5j }}
  4985. </text>
  4986. <text transform="matrix(1 0 0 1 765.4373 93.0139)" fill="#1D833B"
  4987. font-family="'MicrosoftYaHei'" font-size="9.463">
  4988. {{ ajaxData.sbqpkw5j }}
  4989. </text>
  4990. <text transform="matrix(1 0 0 1 765.4373 113.4426)" fill="#1D833B"
  4991. font-family="'MicrosoftYaHei'" font-size="9.463">
  4992. {{ ajaxData.sbqqkvar5j }}
  4993. </text>
  4994. <text transform="matrix(1 0 0 1 765.4373 133.7747)" fill="#1D833B"
  4995. font-family="'MicrosoftYaHei'" font-size="9.463">
  4996. {{ ajaxData.sbqfhz5j }}
  4997. </text>
  4998. <text transform="matrix(1 0 0 1 765.4373 154.1653)" fill="#1D833B"
  4999. font-family="'MicrosoftYaHei'" font-size="9.463">
  5000. {{ ajaxData.sbq5jcos5j }}
  5001. </text>
  5002. </g>
  5003. <g>
  5004. <text transform="matrix(1 0 0 1 1234.0334 161.8821)" fill="#1D833B"
  5005. font-family="'MicrosoftYaHei'" font-size="9.463">
  5006. {{ ajaxData.sbquakv5j }}
  5007. </text>
  5008. <text transform="matrix(1 0 0 1 1234.0334 179.5774)" fill="#1D833B"
  5009. font-family="'MicrosoftYaHei'" font-size="9.463">
  5010. {{ ajaxData.sbqubkv5j }}
  5011. </text>
  5012. <text transform="matrix(1 0 0 1 1234.0334 200.2454)" fill="#1D833B"
  5013. font-family="'MicrosoftYaHei'" font-size="9.463">
  5014. {{ ajaxData.sbquckv5j }}
  5015. </text>
  5016. <text transform="matrix(1 0 0 1 1234.0334 220.7483)" fill="#1D833B"
  5017. font-family="'MicrosoftYaHei'" font-size="9.463">
  5018. {{ ajaxData.sbquabkv5j }}
  5019. </text>
  5020. <text transform="matrix(1 0 0 1 1234.0334 241.2483)" fill="#1D833B"
  5021. font-family="'MicrosoftYaHei'" font-size="9.463">
  5022. {{ ajaxData.sbqubckv5j }}
  5023. </text>
  5024. <text transform="matrix(1 0 0 1 1234.0334 262.7483)" fill="#1D833B"
  5025. font-family="'MicrosoftYaHei'" font-size="9.463">
  5026. {{ ajaxData.sbqu0kv5j }}
  5027. </text>
  5028. </g>
  5029. <g>
  5030. <text transform="matrix(1 0 0 1 1433.5725 75.3186)" fill="#1D833B"
  5031. font-family="'MicrosoftYaHei'" font-size="9.463">
  5032. {{ ajaxData.sbqlaa5y }}
  5033. </text>
  5034. <text transform="matrix(1 0 0 1 1433.5706 93.0139)" fill="#1D833B"
  5035. font-family="'MicrosoftYaHei'" font-size="9.463">
  5036. {{ ajaxData.sbqpkw5y }}
  5037. </text>
  5038. <text transform="matrix(1 0 0 1 1433.5706 113.4426)" fill="#1D833B"
  5039. font-family="'MicrosoftYaHei'" font-size="9.463">
  5040. {{ ajaxData.sbqqkvar5y }}
  5041. </text>
  5042. <text transform="matrix(1 0 0 1 1433.5706 133.7747)" fill="#1D833B"
  5043. font-family="'MicrosoftYaHei'" font-size="9.463">
  5044. {{ ajaxData.sbqfhz5y }}
  5045. </text>
  5046. <text transform="matrix(1 0 0 1 1433.5706 154.1653)" fill="#1D833B"
  5047. font-family="'MicrosoftYaHei'" font-size="9.463">
  5048. {{ ajaxData.sbq6jcos5y }}
  5049. </text>
  5050. </g>
  5051. <g>
  5052. <text transform="matrix(1 0 0 1 1812.1663 160.8772)" fill="#1D833B"
  5053. font-family="'MicrosoftYaHei'" font-size="9.463">
  5054. {{ ajaxData.sbquakv5y }}
  5055. </text>
  5056. <text transform="matrix(1 0 0 1 1812.1663 178.5715)" fill="#1D833B"
  5057. font-family="'MicrosoftYaHei'" font-size="9.463">
  5058. {{ ajaxData.sbqubkv5y }}
  5059. </text>
  5060. <text transform="matrix(1 0 0 1 1812.1663 199.2375)" fill="#1D833B"
  5061. font-family="'MicrosoftYaHei'" font-size="9.463">
  5062. {{ ajaxData.sbquckv5y }}
  5063. </text>
  5064. <text transform="matrix(1 0 0 1 1812.1663 219.7415)" fill="#1D833B"
  5065. font-family="'MicrosoftYaHei'" font-size="9.463">
  5066. {{ ajaxData.sbquabkv5y }}
  5067. </text>
  5068. <text transform="matrix(1 0 0 1 1812.1663 240.2415)" fill="#1D833B"
  5069. font-family="'MicrosoftYaHei'" font-size="9.463">
  5070. {{ ajaxData.sbqubckv5y }}
  5071. </text>
  5072. <text transform="matrix(1 0 0 1 1812.1663 261.7415)" fill="#1D833B"
  5073. font-family="'MicrosoftYaHei'" font-size="9.463">
  5074. {{ ajaxData.sbqu0kv5y }}
  5075. </text>
  5076. </g>
  5077. <g>
  5078. <text transform="matrix(1 0 0 1 97.2244 434.2639)" fill="#1D833B"
  5079. font-family="'MicrosoftYaHei'" font-size="9.463">
  5080. {{ ajaxData.sbquakvzb1 }}
  5081. </text>
  5082. <text transform="matrix(1 0 0 1 97.2239 451.9602)" fill="#1D833B"
  5083. font-family="'MicrosoftYaHei'" font-size="9.463">
  5084. {{ ajaxData.sbqubkvzb1 }}
  5085. </text>
  5086. <text transform="matrix(1 0 0 1 97.2239 472.6272)" fill="#1D833B"
  5087. font-family="'MicrosoftYaHei'" font-size="9.463">
  5088. {{ ajaxData.sbquckvzb1 }}
  5089. </text>
  5090. <text transform="matrix(1 0 0 1 97.2239 493.1311)" fill="#1D833B"
  5091. font-family="'MicrosoftYaHei'" font-size="9.463">
  5092. {{ ajaxData.sbquabkvzb1 }}
  5093. </text>
  5094. <text transform="matrix(1 0 0 1 97.2239 513.6311)" fill="#1D833B"
  5095. font-family="'MicrosoftYaHei'" font-size="9.463">
  5096. {{ ajaxData.sbqubckvzb1 }}
  5097. </text>
  5098. <text transform="matrix(1 0 0 1 97.2239 535.1311)" fill="#1D833B"
  5099. font-family="'MicrosoftYaHei'" font-size="9.463">
  5100. {{ ajaxData.sbquokvzb1 }}
  5101. </text>
  5102. </g>
  5103. <g>
  5104. <text transform="matrix(1 0 0 1 443.1121 461.8801)" fill="#217E3A"
  5105. font-family="'MicrosoftYaHei'" font-size="9.463">
  5106. {{ ajaxData.sbqpkwmx1 }}
  5107. </text>
  5108. <text transform="matrix(1 0 0 1 443.1121 482.5481)" fill="#217E3A"
  5109. font-family="'MicrosoftYaHei'" font-size="9.463">
  5110. {{ ajaxData.sbqqkvarmx1 }}
  5111. </text>
  5112. <text transform="matrix(1 0 0 1 443.1145 503.9133)" fill="#217E3A"
  5113. font-family="'MicrosoftYaHei'" font-size="9.463">
  5114. {{ ajaxData.sbqlaamx1 }}
  5115. </text>
  5116. <text transform="matrix(1 0 0 1 443.1145 523.4016)" fill="#217E3A"
  5117. font-family="'MicrosoftYaHei'" font-size="9.463">
  5118. {{ ajaxData.sbqdwmx1 }}
  5119. </text>
  5120. </g>
  5121. <g>
  5122. <text transform="matrix(1 0 0 1 828.1121 434.2639)" fill="#1D833B"
  5123. font-family="'MicrosoftYaHei'" font-size="9.463">
  5124. {{ ajaxData.sbquakvzb2 }}
  5125. </text>
  5126. <text transform="matrix(1 0 0 1 828.1121 451.9602)" fill="#1D833B"
  5127. font-family="'MicrosoftYaHei'" font-size="9.463">
  5128. {{ ajaxData.sbqubkvzb2 }}
  5129. </text>
  5130. <text transform="matrix(1 0 0 1 828.1121 472.6272)" fill="#1D833B"
  5131. font-family="'MicrosoftYaHei'" font-size="9.463">
  5132. {{ ajaxData.sbquckvzb2 }}
  5133. </text>
  5134. <text transform="matrix(1 0 0 1 828.1121 494.1311)" fill="#1D833B"
  5135. font-family="'MicrosoftYaHei'" font-size="9.463">
  5136. {{ ajaxData.sbquabkvzb2 }}
  5137. </text>
  5138. <text transform="matrix(1 0 0 1 828.1121 514.6311)" fill="#1D833B"
  5139. font-family="'MicrosoftYaHei'" font-size="9.463">
  5140. {{ ajaxData.sbqubckvzb2 }}
  5141. </text>
  5142. <text transform="matrix(1 0 0 1 828.1121 535.1311)" fill="#1D833B"
  5143. font-family="'MicrosoftYaHei'" font-size="9.463">
  5144. {{ ajaxData.sbqu0kvzb2 }}
  5145. </text>
  5146. </g>
  5147. <g>
  5148. <text transform="matrix(1 0 0 1 930.9451 462.8801)" fill="#217E3A"
  5149. font-family="'MicrosoftYaHei'" font-size="9.463">
  5150. {{ ajaxData.sbqpmx2 }}
  5151. </text>
  5152. <text transform="matrix(1 0 0 1 930.9451 482.5481)" fill="#217E3A"
  5153. font-family="'MicrosoftYaHei'" font-size="9.463">
  5154. {{ ajaxData.sbqqmx2 }}
  5155. </text>
  5156. <text transform="matrix(1 0 0 1 930.946 503.9133)" fill="#217E3A"
  5157. font-family="'MicrosoftYaHei'" font-size="9.463">
  5158. {{ ajaxData.sbqlaamx2 }}
  5159. </text>
  5160. <text transform="matrix(1 0 0 1 930.946 524.4016)" fill="#217E3A"
  5161. font-family="'MicrosoftYaHei'" font-size="9.463">
  5162. {{ ajaxData.sbqdwmx2 }}
  5163. </text>
  5164. </g>
  5165. <g>
  5166. <text transform="matrix(1 0 0 1 1053.3987 434.2639)" fill="#1D833B"
  5167. font-family="'MicrosoftYaHei'" font-size="9.463">
  5168. {{ ajaxData.sbquakvzb3 }}
  5169. </text>
  5170. <text transform="matrix(1 0 0 1 1053.3987 451.9602)" fill="#1D833B"
  5171. font-family="'MicrosoftYaHei'" font-size="9.463">
  5172. {{ ajaxData.sbqubkvzb3 }}
  5173. </text>
  5174. <text transform="matrix(1 0 0 1 1053.3987 472.6272)" fill="#1D833B"
  5175. font-family="'MicrosoftYaHei'" font-size="9.463">
  5176. {{ ajaxData.sbquckvzb3 }}
  5177. </text>
  5178. <text transform="matrix(1 0 0 1 1053.3987 494.1311)" fill="#1D833B"
  5179. font-family="'MicrosoftYaHei'" font-size="9.463">
  5180. {{ ajaxData.sbquabkvzb3 }}
  5181. </text>
  5182. <text transform="matrix(1 0 0 1 1053.3987 514.6311)" fill="#1D833B"
  5183. font-family="'MicrosoftYaHei'" font-size="9.463">
  5184. {{ ajaxData.sbqubckvzb3 }}
  5185. </text>
  5186. <text transform="matrix(1 0 0 1 1053.3987 535.1311)" fill="#1D833B"
  5187. font-family="'MicrosoftYaHei'" font-size="9.463">
  5188. {{ ajaxData.sbqu0kvzb3 }}
  5189. </text>
  5190. </g>
  5191. <g>
  5192. <text transform="matrix(1 0 0 1 1332.9983 462.8801)" fill="#217E3A"
  5193. font-family="'MicrosoftYaHei'" font-size="9.463">
  5194. {{ ajaxData.sbqpkwzb3 }}
  5195. </text>
  5196. <text transform="matrix(1 0 0 1 1332.9983 482.5481)" fill="#217E3A"
  5197. font-family="'MicrosoftYaHei'" font-size="9.463">
  5198. {{ ajaxData.sbqqkvarzb3 }}
  5199. </text>
  5200. <text transform="matrix(1 0 0 1 1333.0002 503.9133)" fill="#217E3A"
  5201. font-family="'MicrosoftYaHei'" font-size="9.463">
  5202. {{ ajaxData.sbqlaazb3 }}
  5203. </text>
  5204. <text transform="matrix(1 0 0 1 1333.0002 524.4016)" fill="#217E3A"
  5205. font-family="'MicrosoftYaHei'" font-size="9.463">
  5206. {{ ajaxData.sbqdwzb3 }}
  5207. </text>
  5208. </g>
  5209. <g>
  5210. <text transform="matrix(1 0 0 1 1453.1526 462.8801)" fill="#217E3A"
  5211. font-family="'MicrosoftYaHei'" font-size="9.463">
  5212. {{ ajaxData.sbqpkwmx5 }}
  5213. </text>
  5214. <text transform="matrix(1 0 0 1 1453.1526 482.5481)" fill="#217E3A"
  5215. font-family="'MicrosoftYaHei'" font-size="9.463">
  5216. {{ ajaxData.sbqqkvarmx5 }}
  5217. </text>
  5218. <text transform="matrix(1 0 0 1 1453.1545 503.9133)" fill="#217E3A"
  5219. font-family="'MicrosoftYaHei'" font-size="9.463">
  5220. {{ ajaxData.sbqlaamx5 }}
  5221. </text>
  5222. <text transform="matrix(1 0 0 1 1453.1545 524.4016)" fill="#217E3A"
  5223. font-family="'MicrosoftYaHei'" font-size="9.463">
  5224. {{ ajaxData.sbqdwmx5 }}
  5225. </text>
  5226. </g>
  5227. <g>
  5228. <text transform="matrix(1 0 0 1 1798.1018 434.2639)" fill="#1D833B"
  5229. font-family="'MicrosoftYaHei'" font-size="9.463">
  5230. {{ ajaxData.sbquakvzb4 }}
  5231. </text>
  5232. <text transform="matrix(1 0 0 1 1798.0999 451.9602)" fill="#1D833B"
  5233. font-family="'MicrosoftYaHei'" font-size="9.463">
  5234. {{ ajaxData.sbqubkvzb4 }}
  5235. </text>
  5236. <text transform="matrix(1 0 0 1 1798.0999 472.6272)" fill="#1D833B"
  5237. font-family="'MicrosoftYaHei'" font-size="9.463">
  5238. {{ ajaxData.sbquckvzb4 }}
  5239. </text>
  5240. <text transform="matrix(1 0 0 1 1798.0999 494.1311)" fill="#1D833B"
  5241. font-family="'MicrosoftYaHei'" font-size="9.463">
  5242. {{ ajaxData.sbquabkvzb4 }}
  5243. </text>
  5244. <text transform="matrix(1 0 0 1 1798.0999 514.6311)" fill="#1D833B"
  5245. font-family="'MicrosoftYaHei'" font-size="9.463">
  5246. {{ ajaxData.sbqubckvzb4 }}
  5247. </text>
  5248. <text transform="matrix(1 0 0 1 1798.0999 535.1311)" fill="#1D833B"
  5249. font-family="'MicrosoftYaHei'" font-size="9.463">
  5250. {{ ajaxData.sbqu0kvzb4 }}
  5251. </text>
  5252. </g>
  5253. <g>
  5254. <g>
  5255. <text transform="matrix(1 0 0 1 56.1873 803.4407)" fill="#FFFFFF"
  5256. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5257. {{ ajaxData.sbqlaafc1 }}
  5258. </text>
  5259. <text transform="matrix(1 0 0 1 56.1873 829.2922)" fill="#FFFFFF"
  5260. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5261. {{ ajaxData.sbqpkwfc1 }}
  5262. </text>
  5263. <text transform="matrix(1 0 0 1 56.1873 855.1438)" fill="#FFFFFF"
  5264. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5265. {{ ajaxData.sbqqkvarfc1 }}
  5266. </text>
  5267. </g>
  5268. <g>
  5269. <text transform="matrix(1 0 0 1 131.8054 803.4407)" fill="#FFFFFF"
  5270. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5271. {{ ajaxData.sbqlaafc2 }}
  5272. </text>
  5273. <text transform="matrix(1 0 0 1 131.8054 829.2922)" fill="#FFFFFF"
  5274. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5275. {{ ajaxData.sbqpkwfc2 }}
  5276. </text>
  5277. <text transform="matrix(1 0 0 1 131.8054 855.1438)" fill="#FFFFFF"
  5278. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5279. {{ ajaxData.sbqqkvarfc2 }}
  5280. </text>
  5281. </g>
  5282. <g>
  5283. <text transform="matrix(1 0 0 1 300.8313 803.4407)" fill="#FFFFFF"
  5284. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5285. {{ ajaxData.sbqlaafc3 }}
  5286. </text>
  5287. <text transform="matrix(1 0 0 1 300.8313 829.2922)" fill="#FFFFFF"
  5288. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5289. {{ ajaxData.sbqpkwfc3 }}
  5290. </text>
  5291. <text transform="matrix(1 0 0 1 300.8313 855.1438)" fill="#FFFFFF"
  5292. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5293. {{ ajaxData.sbqqkvarfc3 }}
  5294. </text>
  5295. </g>
  5296. <g>
  5297. <text transform="matrix(1 0 0 1 376.0173 803.4407)" fill="#FFFFFF"
  5298. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5299. {{ ajaxData.sbqlaabc1 }}
  5300. </text>
  5301. <text transform="matrix(1 0 0 1 376.0173 829.2922)" fill="#FFFFFF"
  5302. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5303. {{ ajaxData.sbqpkwbc1 }}
  5304. </text>
  5305. <text transform="matrix(1 0 0 1 376.0173 855.1438)" fill="#FFFFFF"
  5306. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5307. {{ ajaxData.sbqqkvarbc1 }}
  5308. </text>
  5309. </g>
  5310. <g>
  5311. <text transform="matrix(1 0 0 1 453.0061 803.4407)" fill="#FFFFFF"
  5312. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5313. {{ ajaxData.sbqlaazy1 }}
  5314. </text>
  5315. <text transform="matrix(1 0 0 1 453.0061 829.2922)" fill="#FFFFFF"
  5316. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5317. {{ ajaxData.sbqpkwzy1 }}
  5318. </text>
  5319. <text transform="matrix(1 0 0 1 453.0061 855.1438)" fill="#FFFFFF"
  5320. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5321. {{ ajaxData.sbqqkvarzy1 }}
  5322. </text>
  5323. </g>
  5324. <g>
  5325. <text transform="matrix(1 0 0 1 557.429 803.4407)" fill="#FFFFFF"
  5326. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5327. {{ ajaxData.sbqlaafc4 }}
  5328. </text>
  5329. <text transform="matrix(1 0 0 1 557.429 829.2922)" fill="#FFFFFF"
  5330. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5331. {{ ajaxData.sbqpkwfc4 }}
  5332. </text>
  5333. <text transform="matrix(1 0 0 1 557.429 855.1438)" fill="#FFFFFF"
  5334. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5335. {{ ajaxData.sbqqvarfc4 }}
  5336. </text>
  5337. </g>
  5338. <g>
  5339. <text transform="matrix(1 0 0 1 638.1399 803.4407)" fill="#FFFFFF"
  5340. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5341. {{ ajaxData.sbqlaafc5 }}
  5342. </text>
  5343. <text transform="matrix(1 0 0 1 638.1399 829.2922)" fill="#FFFFFF"
  5344. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5345. {{ ajaxData.sbqpkwfc5 }}
  5346. </text>
  5347. <text transform="matrix(1 0 0 1 638.1399 855.1438)" fill="#FFFFFF"
  5348. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5349. {{ ajaxData.sbqqvarfc5 }}
  5350. </text>
  5351. </g>
  5352. <g>
  5353. <text transform="matrix(1 0 0 1 805.4417 803.4407)" fill="#FFFFFF"
  5354. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5355. {{ ajaxData.sbqlaafc6 }}
  5356. </text>
  5357. <text transform="matrix(1 0 0 1 805.4417 829.2922)" fill="#FFFFFF"
  5358. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5359. {{ ajaxData.sbqpkwfc6 }}
  5360. </text>
  5361. <text transform="matrix(1 0 0 1 805.4417 855.1438)" fill="#FFFFFF"
  5362. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5363. {{ ajaxData.sbqqvarfc6 }}
  5364. </text>
  5365. </g>
  5366. <g>
  5367. <text transform="matrix(1 0 0 1 886.4221 803.4407)" fill="#FFFFFF"
  5368. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5369. {{ ajaxData.sbqlaabc2 }}
  5370. </text>
  5371. <text transform="matrix(1 0 0 1 886.4221 829.2922)" fill="#FFFFFF"
  5372. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5373. {{ ajaxData.sbqpkwbc2 }}
  5374. </text>
  5375. <text transform="matrix(1 0 0 1 886.4221 855.1438)" fill="#FFFFFF"
  5376. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5377. {{ ajaxData.sbqqvarbc2 }}
  5378. </text>
  5379. </g>
  5380. <g>
  5381. <text transform="matrix(1 0 0 1 1010.3147 803.4407)" fill="#FFFFFF"
  5382. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5383. {{ ajaxData.sbqlaafc7 }}
  5384. </text>
  5385. <text transform="matrix(1 0 0 1 1010.3147 829.2922)" fill="#FFFFFF"
  5386. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5387. {{ ajaxData.sbqpkwfc7 }}
  5388. </text>
  5389. <text transform="matrix(1 0 0 1 1010.3147 855.1438)" fill="#FFFFFF"
  5390. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5391. {{ ajaxData.sbqqvarfc7 }}
  5392. </text>
  5393. </g>
  5394. <g>
  5395. <text transform="matrix(1 0 0 1 1090.5315 803.4407)" fill="#FFFFFF"
  5396. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5397. {{ ajaxData.sbqlaafc8 }}
  5398. </text>
  5399. <text transform="matrix(1 0 0 1 1090.5315 829.2922)" fill="#FFFFFF"
  5400. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5401. {{ ajaxData.sbqpkwfc8 }}
  5402. </text>
  5403. <text transform="matrix(1 0 0 1 1090.5315 855.1438)" fill="#FFFFFF"
  5404. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5405. {{ ajaxData.sbqqvarfc8 }}
  5406. </text>
  5407. </g>
  5408. <g>
  5409. <text transform="matrix(1 0 0 1 1166.9338 803.4407)" fill="#FFFFFF"
  5410. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5411. {{ ajaxData.sbqlaanc3 }}
  5412. </text>
  5413. <text transform="matrix(1 0 0 1 1166.9338 829.2922)" fill="#FFFFFF"
  5414. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5415. {{ ajaxData.sbqpkwnc3 }}
  5416. </text>
  5417. <text transform="matrix(1 0 0 1 1166.9338 855.1438)" fill="#FFFFFF"
  5418. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5419. {{ ajaxData.sbqqvarnc3 }}
  5420. </text>
  5421. </g>
  5422. <g>
  5423. <text transform="matrix(1 0 0 1 1397.8674 803.4407)" fill="#FFFFFF"
  5424. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5425. -.--
  5426. </text>
  5427. <text transform="matrix(1 0 0 1 1397.8674 829.2922)" fill="#FFFFFF"
  5428. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5429. -.--
  5430. </text>
  5431. <text transform="matrix(1 0 0 1 1397.8674 855.1438)" fill="#FFFFFF"
  5432. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5433. -.--
  5434. </text>
  5435. </g>
  5436. <g>
  5437. <text transform="matrix(1 0 0 1 1482.0706 803.4407)" fill="#FFFFFF"
  5438. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5439. {{ ajaxData.sbqlaafc9 }}
  5440. </text>
  5441. <text transform="matrix(1 0 0 1 1482.0706 829.2922)" fill="#FFFFFF"
  5442. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5443. {{ ajaxData.sbqpkwfc9 }}
  5444. </text>
  5445. <text transform="matrix(1 0 0 1 1482.0706 855.1438)" fill="#FFFFFF"
  5446. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5447. {{ ajaxData.sbqqvarfc9 }}
  5448. </text>
  5449. </g>
  5450. <g>
  5451. <text transform="matrix(1 0 0 1 1562.9436 803.4407)" fill="#FFFFFF"
  5452. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5453. {{ ajaxData.sbqlaafc10 }}
  5454. </text>
  5455. <text transform="matrix(1 0 0 1 1562.9436 829.2922)" fill="#FFFFFF"
  5456. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5457. {{ ajaxData.sbqpkwfc10 }}
  5458. </text>
  5459. <text transform="matrix(1 0 0 1 1562.9436 855.1438)" fill="#FFFFFF"
  5460. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5461. {{ ajaxData.sbqqvarfc10 }}
  5462. </text>
  5463. </g>
  5464. <g>
  5465. <text transform="matrix(1 0 0 1 1643.6819 803.4407)" fill="#FFFFFF"
  5466. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5467. {{ ajaxData.sbqlaafc11 }}
  5468. </text>
  5469. <text transform="matrix(1 0 0 1 1643.6819 829.2922)" fill="#FFFFFF"
  5470. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5471. {{ ajaxData.sbqpkwfc11 }}
  5472. </text>
  5473. <text transform="matrix(1 0 0 1 1643.6819 855.1438)" fill="#FFFFFF"
  5474. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5475. {{ ajaxData.sbqqvarfc11 }}
  5476. </text>
  5477. </g>
  5478. <g>
  5479. <text transform="matrix(1 0 0 1 1720.0159 803.4407)" fill="#FFFFFF"
  5480. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5481. {{ ajaxData.sbqlaabc4 }}
  5482. </text>
  5483. <text transform="matrix(1 0 0 1 1720.0159 829.2922)" fill="#FFFFFF"
  5484. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5485. {{ ajaxData.sbqpkwbc4 }}
  5486. </text>
  5487. <text transform="matrix(1 0 0 1 1720.0159 855.1438)" fill="#FFFFFF"
  5488. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5489. {{ ajaxData.sbqqvarbc4 }}
  5490. </text>
  5491. </g>
  5492. </g>
  5493. </g>
  5494. </svg>
  5495. </template>
  5496. </previewPicture>
  5497. </el-col>
  5498. </el-row>
  5499. </div>
  5500. </template>
  5501. <script>
  5502. import previewPicture from "./previewPicture.vue";
  5503. import { BoosterStation } from "utils/BoosterStation";
  5504. export default {
  5505. components: {
  5506. previewPicture
  5507. },
  5508. data() {
  5509. return {
  5510. green: '#02A434',
  5511. red: '#FF0000',
  5512. ajaxData: {},
  5513. interval: '',
  5514. };
  5515. },
  5516. created() {
  5517. this.boosterStation = new BoosterStation();
  5518. this.refreshTPData()
  5519. this.interval = setInterval(this.refreshTPData, 3000)
  5520. },
  5521. methods: {
  5522. closed() {
  5523. clearInterval(this.interval);
  5524. },
  5525. refreshTPData() {
  5526. this.boosterStation.getDatas("SBQ_FDC", this.bindValue);
  5527. },
  5528. bindValue(msg) {
  5529. this.ajaxData = msg;
  5530. },
  5531. }
  5532. };
  5533. </script>
  5534. <style scoped>
  5535. .center-bar {
  5536. position: relative;
  5537. box-sizing: border-box;
  5538. height: 90vh;
  5539. background-color: #000000;
  5540. padding-top: 10px;
  5541. padding-left: 5px;
  5542. padding-right: 5px;
  5543. padding-bottom: 5px;
  5544. margin-top: 0;
  5545. margin-right: 0;
  5546. margin-bottom: 3px;
  5547. margin-left: 0;
  5548. display: flex;
  5549. flex-direction: column;
  5550. }
  5551. .svg {
  5552. width: 100%;
  5553. height: 100%;
  5554. }
  5555. </style>