sbq.vue 445 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452
  1. <template>
  2. <div>
  3. <el-row :gutter="10">
  4. <el-col :span="24">
  5. <previewPicture v-if="datas">
  6. <template v-slot:svg>
  7. <svg class="svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="图层_1" x="0px" y="0px" width="1794px" height="788px" viewBox="0 46 1794 788" enable-background="new 0 0 1794 788" xml:space="preserve">
  8. <g id="other">
  9. <g opacity="0.6">
  10. <path opacity="0.4" fill="#114832" enable-background="new " d="M44.605,133.222c0,0.709-0.574,1.281-1.283,1.281H8.933 c-0.709,0-1.283-0.572-1.283-1.281v-22.84c0-0.709,0.574-1.281,1.283-1.281h34.392c0.709,0,1.282,0.572,1.282,1.281 L44.605,133.222L44.605,133.222z"></path>
  11. <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M44.605,133.222 c0,0.709-0.574,1.281-1.283,1.281H8.933c-0.709,0-1.283-0.572-1.283-1.281v-22.84c0-0.709,0.574-1.281,1.283-1.281h34.392 c0.709,0,1.282,0.572,1.282,1.281L44.605,133.222L44.605,133.222z"></path>
  12. </g>
  13. <g opacity="0.6">
  14. <path opacity="0.4" fill="#114832" enable-background="new " d="M90.817,133.222c0,0.709-0.573,1.281-1.282,1.281H55.144 c-0.709,0-1.283-0.572-1.283-1.281v-22.84c0-0.709,0.574-1.281,1.283-1.281h34.392c0.709,0,1.282,0.572,1.282,1.281 L90.817,133.222L90.817,133.222z"></path>
  15. <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M90.817,133.222 c0,0.709-0.573,1.281-1.282,1.281H55.144c-0.709,0-1.283-0.572-1.283-1.281v-22.84c0-0.709,0.574-1.281,1.283-1.281h34.392 c0.709,0,1.282,0.572,1.282,1.281L90.817,133.222L90.817,133.222z"></path>
  16. </g>
  17. <g opacity="0.6">
  18. <path opacity="0.4" fill="#114832" enable-background="new " d="M136.314,133.222c0,0.709-0.574,1.281-1.283,1.281H100.64 c-0.709,0-1.283-0.572-1.283-1.281v-22.84c0-0.709,0.574-1.281,1.283-1.281h34.391c0.71,0,1.283,0.572,1.283,1.281V133.222 L136.314,133.222z"></path>
  19. <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M136.314,133.222 c0,0.709-0.574,1.281-1.283,1.281H100.64c-0.709,0-1.283-0.572-1.283-1.281v-22.84c0-0.709,0.574-1.281,1.283-1.281h34.391 c0.71,0,1.283,0.572,1.283,1.281V133.222L136.314,133.222z"></path>
  20. </g>
  21. <g opacity="0.6">
  22. <path opacity="0.4" fill="#114832" enable-background="new " d="M182.527,133.222c0,0.709-0.573,1.281-1.282,1.281h-34.392 c-0.708,0-1.283-0.572-1.283-1.281v-22.84c0-0.709,0.574-1.281,1.283-1.281h34.392c0.709,0,1.282,0.572,1.282,1.281V133.222z"></path>
  23. <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M182.527,133.222 c0,0.709-0.573,1.281-1.282,1.281h-34.392c-0.708,0-1.283-0.572-1.283-1.281v-22.84c0-0.709,0.574-1.281,1.283-1.281h34.392 c0.709,0,1.282,0.572,1.282,1.281V133.222z"></path>
  24. </g>
  25. <g opacity="0.6">
  26. <path opacity="0.4" fill="#114832" enable-background="new " d="M229.1,133.222c0,0.709-0.574,1.281-1.282,1.281h-34.393 c-0.708,0-1.282-0.572-1.282-1.281v-22.84c0-0.709,0.574-1.281,1.282-1.281h34.393c0.708,0,1.282,0.572,1.282,1.281V133.222z"></path>
  27. <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M229.1,133.222c0,0.709-0.574,1.281-1.282,1.281 h-34.393c-0.708,0-1.282-0.572-1.282-1.281v-22.84c0-0.709,0.574-1.281,1.282-1.281h34.393c0.708,0,1.282,0.572,1.282,1.281 V133.222z"></path>
  28. </g>
  29. <g opacity="0.6">
  30. <path opacity="0.4" fill="#114832" enable-background="new " d="M273.804,133.222c0,0.709-0.574,1.281-1.283,1.281H238.13 c-0.708,0-1.283-0.572-1.283-1.281v-22.84c0-0.709,0.574-1.281,1.283-1.281h34.391c0.708,0,1.283,0.572,1.283,1.281V133.222z"></path>
  31. <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M273.804,133.222 c0,0.709-0.574,1.281-1.283,1.281H238.13c-0.708,0-1.283-0.572-1.283-1.281v-22.84c0-0.709,0.574-1.281,1.283-1.281h34.391 c0.708,0,1.283,0.572,1.283,1.281V133.222z"></path>
  32. </g>
  33. <g opacity="0.6">
  34. <path opacity="0.4" fill="#114832" enable-background="new " d="M325.492,133.222c0,0.709-0.573,1.281-1.282,1.281h-34.392 c-0.709,0-1.282-0.572-1.282-1.281v-22.84c0-0.709,0.573-1.281,1.282-1.281h34.392c0.709,0,1.282,0.572,1.282,1.281V133.222z"></path>
  35. <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M325.492,133.222 c0,0.709-0.573,1.281-1.282,1.281h-34.392c-0.709,0-1.282-0.572-1.282-1.281v-22.84c0-0.709,0.573-1.281,1.282-1.281h34.392 c0.709,0,1.282,0.572,1.282,1.281V133.222z"></path>
  36. </g>
  37. <g opacity="0.6">
  38. <path opacity="0.4" fill="#114832" enable-background="new " d="M373.738,133.222c0,0.709-0.574,1.281-1.282,1.281h-34.391 c-0.708,0-1.283-0.572-1.283-1.281v-22.84c0-0.709,0.575-1.281,1.283-1.281h34.391c0.708,0,1.282,0.572,1.282,1.281V133.222z"></path>
  39. <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M373.738,133.222 c0,0.709-0.574,1.281-1.282,1.281h-34.391c-0.708,0-1.283-0.572-1.283-1.281v-22.84c0-0.709,0.575-1.281,1.283-1.281h34.391 c0.708,0,1.282,0.572,1.282,1.281V133.222z"></path>
  40. </g>
  41. <g opacity="0.6">
  42. <path opacity="0.4" fill="#114832" enable-background="new " d="M421.219,133.222c0,0.709-0.574,1.281-1.283,1.281h-34.391 c-0.708,0-1.283-0.572-1.283-1.281v-22.84c0-0.709,0.575-1.281,1.283-1.281h34.391c0.709,0,1.283,0.572,1.283,1.281V133.222 L421.219,133.222z"></path>
  43. <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M421.219,133.222 c0,0.709-0.574,1.281-1.283,1.281h-34.391c-0.708,0-1.283-0.572-1.283-1.281v-22.84c0-0.709,0.575-1.281,1.283-1.281h34.391 c0.709,0,1.283,0.572,1.283,1.281V133.222L421.219,133.222z"></path>
  44. </g>
  45. <g opacity="0.6">
  46. <path opacity="0.4" fill="#114832" enable-background="new " d="M471.955,133.222c0,0.709-0.573,1.281-1.281,1.281h-34.393 c-0.708,0-1.283-0.572-1.283-1.281v-22.84c0-0.709,0.575-1.281,1.283-1.281h34.393c0.708,0,1.281,0.572,1.281,1.281V133.222z"></path>
  47. <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M471.955,133.222 c0,0.709-0.573,1.281-1.281,1.281h-34.393c-0.708,0-1.283-0.572-1.283-1.281v-22.84c0-0.709,0.575-1.281,1.283-1.281h34.393 c0.708,0,1.281,0.572,1.281,1.281V133.222z"></path>
  48. </g>
  49. <g opacity="0.6">
  50. <path opacity="0.4" fill="#114832" enable-background="new " d="M525.664,133.222c0,0.709-0.572,1.281-1.28,1.281h-34.392 c-0.708,0-1.282-0.572-1.282-1.281v-22.84c0-0.709,0.573-1.281,1.282-1.281h34.392c0.708,0,1.28,0.572,1.28,1.281V133.222z"></path>
  51. <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M525.664,133.222 c0,0.709-0.572,1.281-1.28,1.281h-34.392c-0.708,0-1.282-0.572-1.282-1.281v-22.84c0-0.709,0.573-1.281,1.282-1.281h34.392 c0.708,0,1.28,0.572,1.28,1.281V133.222z"></path>
  52. </g>
  53. <g opacity="0.6">
  54. <path opacity="0.4" fill="#114832" enable-background="new " d="M41.933,263.511c0,0.707-0.573,1.281-1.282,1.281H6.259 c-0.708,0-1.283-0.574-1.283-1.281v-22.84c0-0.707,0.575-1.281,1.283-1.281h34.392c0.708,0,1.282,0.574,1.282,1.281V263.511z"></path>
  55. <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M41.933,263.511 c0,0.707-0.573,1.281-1.282,1.281H6.259c-0.708,0-1.283-0.574-1.283-1.281v-22.84c0-0.707,0.575-1.281,1.283-1.281h34.392 c0.708,0,1.282,0.574,1.282,1.281V263.511z"></path>
  56. </g>
  57. <g opacity="0.6">
  58. <path opacity="0.4" fill="#114832" enable-background="new " d="M91.327,263.511c0,0.707-0.574,1.281-1.282,1.281H55.654 c-0.708,0-1.282-0.574-1.282-1.281v-22.84c0-0.707,0.573-1.281,1.282-1.281h34.392c0.708,0,1.282,0.574,1.282,1.281V263.511z"></path>
  59. <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M91.327,263.511 c0,0.707-0.574,1.281-1.282,1.281H55.654c-0.708,0-1.282-0.574-1.282-1.281v-22.84c0-0.707,0.573-1.281,1.282-1.281h34.392 c0.708,0,1.282,0.574,1.282,1.281V263.511z"></path>
  60. </g>
  61. <g opacity="0.6">
  62. <path opacity="0.4" fill="#114832" enable-background="new " d="M138.334,263.511c0,0.707-0.575,1.281-1.283,1.281h-34.392 c-0.708,0-1.282-0.574-1.282-1.281v-22.84c0-0.707,0.574-1.281,1.282-1.281h34.392c0.708,0,1.283,0.574,1.283,1.281V263.511z"></path>
  63. <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M138.334,263.511 c0,0.707-0.575,1.281-1.283,1.281h-34.392c-0.708,0-1.282-0.574-1.282-1.281v-22.84c0-0.707,0.574-1.281,1.282-1.281h34.392 c0.708,0,1.283,0.574,1.283,1.281V263.511z"></path>
  64. </g>
  65. <g opacity="0.6">
  66. <path opacity="0.4" fill="#114832" enable-background="new " d="M188.07,263.511c0,0.707-0.573,1.281-1.281,1.281h-34.393 c-0.708,0-1.283-0.574-1.283-1.281v-22.84c0-0.707,0.575-1.281,1.283-1.281h34.393c0.708,0,1.281,0.574,1.281,1.281V263.511z"></path>
  67. <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M188.07,263.511 c0,0.707-0.573,1.281-1.281,1.281h-34.393c-0.708,0-1.283-0.574-1.283-1.281v-22.84c0-0.707,0.575-1.281,1.283-1.281h34.393 c0.708,0,1.281,0.574,1.281,1.281V263.511z"></path>
  68. </g>
  69. <g opacity="0.6">
  70. <path opacity="0.4" fill="#114832" enable-background="new " d="M235.61,263.511c0,0.707-0.573,1.281-1.282,1.281h-34.392 c-0.709,0-1.283-0.574-1.283-1.281v-22.84c0-0.707,0.574-1.281,1.283-1.281h34.392c0.709,0,1.282,0.574,1.282,1.281V263.511z"></path>
  71. <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M235.61,263.511 c0,0.707-0.573,1.281-1.282,1.281h-34.392c-0.709,0-1.283-0.574-1.283-1.281v-22.84c0-0.707,0.574-1.281,1.283-1.281h34.392 c0.709,0,1.282,0.574,1.282,1.281V263.511z"></path>
  72. </g>
  73. <g opacity="0.6">
  74. <path opacity="0.4" fill="#114832" enable-background="new " d="M284.855,263.511c0,0.707-0.574,1.281-1.282,1.281h-34.391 c-0.709,0-1.283-0.574-1.283-1.281v-22.84c0-0.707,0.574-1.281,1.283-1.281h34.391c0.708,0,1.282,0.574,1.282,1.281V263.511z"></path>
  75. <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M284.855,263.511 c0,0.707-0.574,1.281-1.282,1.281h-34.391c-0.709,0-1.283-0.574-1.283-1.281v-22.84c0-0.707,0.574-1.281,1.283-1.281h34.391 c0.708,0,1.282,0.574,1.282,1.281V263.511z"></path>
  76. </g>
  77. <g opacity="0.6">
  78. <path opacity="0.4" fill="#114832" enable-background="new " d="M336.545,263.511c0,0.707-0.574,1.281-1.283,1.281H300.87 c-0.709,0-1.282-0.574-1.282-1.281v-22.84c0-0.707,0.573-1.281,1.282-1.281h34.392c0.709,0,1.283,0.574,1.283,1.281V263.511z"></path>
  79. <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M336.545,263.511 c0,0.707-0.574,1.281-1.283,1.281H300.87c-0.709,0-1.282-0.574-1.282-1.281v-22.84c0-0.707,0.573-1.281,1.282-1.281h34.392 c0.709,0,1.283,0.574,1.283,1.281V263.511z"></path>
  80. </g>
  81. <g opacity="0.6">
  82. <path opacity="0.4" fill="#114832" enable-background="new " d="M385.298,263.511c0,0.707-0.574,1.281-1.282,1.281h-34.393 c-0.708,0-1.281-0.574-1.281-1.281v-22.84c0-0.707,0.573-1.281,1.281-1.281h34.393c0.708,0,1.282,0.574,1.282,1.281V263.511z"></path>
  83. <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M385.298,263.511 c0,0.707-0.574,1.281-1.282,1.281h-34.393c-0.708,0-1.281-0.574-1.281-1.281v-22.84c0-0.707,0.573-1.281,1.281-1.281h34.393 c0.708,0,1.282,0.574,1.282,1.281V263.511z"></path>
  84. </g>
  85. <g opacity="0.6">
  86. <path opacity="0.4" fill="#114832" enable-background="new " d="M433.676,263.511c0,0.707-0.574,1.281-1.281,1.281h-34.393 c-0.708,0-1.283-0.574-1.283-1.281v-22.84c0-0.707,0.575-1.281,1.283-1.281h34.393c0.707,0,1.281,0.574,1.281,1.281V263.511z"></path>
  87. <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M433.676,263.511 c0,0.707-0.574,1.281-1.281,1.281h-34.393c-0.708,0-1.283-0.574-1.283-1.281v-22.84c0-0.707,0.575-1.281,1.283-1.281h34.393 c0.707,0,1.281,0.574,1.281,1.281V263.511z"></path>
  88. </g>
  89. <g opacity="0.6">
  90. <path opacity="0.4" fill="#114832" enable-background="new " d="M483.128,263.511c0,0.707-0.574,1.281-1.283,1.281h-34.391 c-0.709,0-1.282-0.574-1.282-1.281v-22.84c0-0.707,0.573-1.281,1.282-1.281h34.392c0.709,0,1.282,0.574,1.282,1.281V263.511 L483.128,263.511z"></path>
  91. <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M483.128,263.511 c0,0.707-0.574,1.281-1.283,1.281h-34.391c-0.709,0-1.282-0.574-1.282-1.281v-22.84c0-0.707,0.573-1.281,1.282-1.281h34.392 c0.709,0,1.282,0.574,1.282,1.281V263.511L483.128,263.511z"></path>
  92. </g>
  93. <g opacity="0.6">
  94. <path opacity="0.4" fill="#114832" enable-background="new " d="M525.666,263.511c0,0.707-0.573,1.281-1.282,1.281h-34.393 c-0.709,0-1.282-0.574-1.282-1.281v-22.84c0-0.707,0.573-1.281,1.282-1.281h34.393c0.709,0,1.282,0.574,1.282,1.281V263.511z"></path>
  95. <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M525.666,263.511 c0,0.707-0.573,1.281-1.282,1.281h-34.393c-0.709,0-1.282-0.574-1.282-1.281v-22.84c0-0.707,0.573-1.281,1.282-1.281h34.393 c0.709,0,1.282,0.574,1.282,1.281V263.511z"></path>
  96. </g>
  97. <g opacity="0.6">
  98. <path opacity="0.4" fill="#114832" enable-background="new " d="M38.329,393.012c0,0.707-0.572,1.281-1.281,1.281H2.657 c-0.709,0-1.284-0.574-1.284-1.281v-22.84c0-0.707,0.575-1.281,1.284-1.281h34.391c0.709,0,1.281,0.574,1.281,1.281V393.012z"></path>
  99. <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M38.329,393.012 c0,0.707-0.572,1.281-1.281,1.281H2.657c-0.709,0-1.284-0.574-1.284-1.281v-22.84c0-0.707,0.575-1.281,1.284-1.281h34.391 c0.709,0,1.281,0.574,1.281,1.281V393.012z"></path>
  100. </g>
  101. <g opacity="0.6">
  102. <path opacity="0.4" fill="#114832" enable-background="new " d="M87.147,393.012c0,0.707-0.573,1.281-1.283,1.281H51.472 c-0.706,0-1.282-0.574-1.282-1.281v-22.84c0-0.707,0.575-1.281,1.282-1.281h34.392c0.709,0,1.283,0.574,1.283,1.281V393.012z"></path>
  103. <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M87.147,393.012 c0,0.707-0.573,1.281-1.283,1.281H51.472c-0.706,0-1.282-0.574-1.282-1.281v-22.84c0-0.707,0.575-1.281,1.282-1.281h34.392 c0.709,0,1.283,0.574,1.283,1.281V393.012z"></path>
  104. </g>
  105. <g opacity="0.6">
  106. <path opacity="0.4" fill="#114832" enable-background="new " d="M135.306,393.012c0,0.707-0.572,1.281-1.281,1.281H99.634 c-0.711,0-1.284-0.574-1.284-1.281v-22.84c0-0.707,0.573-1.281,1.284-1.281h34.391c0.709,0,1.281,0.574,1.281,1.281V393.012z"></path>
  107. <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M135.306,393.012 c0,0.707-0.572,1.281-1.281,1.281H99.634c-0.711,0-1.284-0.574-1.284-1.281v-22.84c0-0.707,0.573-1.281,1.284-1.281h34.391 c0.709,0,1.281,0.574,1.281,1.281V393.012z"></path>
  108. </g>
  109. <g opacity="0.6">
  110. <path opacity="0.4" fill="#114832" enable-background="new " d="M183.231,392.36c0,0.709-0.571,1.282-1.28,1.282h-34.394 c-0.709,0-1.281-0.573-1.281-1.282v-22.839c0-0.709,0.572-1.28,1.281-1.28h34.394c0.709,0,1.28,0.571,1.28,1.28V392.36z"></path>
  111. <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M183.231,392.36c0,0.709-0.571,1.282-1.28,1.282 h-34.394c-0.709,0-1.281-0.573-1.281-1.282v-22.839c0-0.709,0.572-1.28,1.281-1.28h34.394c0.709,0,1.28,0.571,1.28,1.28V392.36z"></path>
  112. </g>
  113. <g opacity="0.6">
  114. <path opacity="0.4" fill="#114832" enable-background="new " d="M230.608,392.36c0,0.709-0.571,1.282-1.28,1.282h-34.392 c-0.711,0-1.285-0.573-1.285-1.282v-22.839c0-0.709,0.576-1.28,1.285-1.28h34.392c0.709,0,1.28,0.571,1.28,1.28V392.36z"></path>
  115. <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M230.608,392.36c0,0.709-0.571,1.282-1.28,1.282 h-34.392c-0.711,0-1.285-0.573-1.285-1.282v-22.839c0-0.709,0.576-1.28,1.285-1.28h34.392c0.709,0,1.28,0.571,1.28,1.28V392.36z"></path>
  116. </g>
  117. <g opacity="0.6">
  118. <path opacity="0.4" fill="#114832" enable-background="new " d="M281.114,392.36c0,0.709-0.571,1.282-1.282,1.282h-34.39 c-0.711,0-1.284-0.573-1.284-1.282v-22.839c0-0.709,0.573-1.28,1.284-1.28h34.39c0.711,0,1.282,0.571,1.282,1.28V392.36z"></path>
  119. <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M281.114,392.36 c0,0.709-0.571,1.282-1.282,1.282h-34.39c-0.711,0-1.284-0.573-1.284-1.282v-22.839c0-0.709,0.573-1.28,1.284-1.28h34.39 c0.711,0,1.282,0.571,1.282,1.28V392.36z"></path>
  120. </g>
  121. <g opacity="0.6">
  122. <path opacity="0.4" fill="#114832" enable-background="new " d="M329.994,392.36c0,0.709-0.575,1.282-1.28,1.282h-34.394 c-0.709,0-1.282-0.573-1.282-1.282v-22.839c0-0.709,0.573-1.28,1.282-1.28h34.394c0.705,0,1.28,0.571,1.28,1.28V392.36z"></path>
  123. <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M329.994,392.36c0,0.709-0.575,1.282-1.28,1.282 h-34.394c-0.709,0-1.282-0.573-1.282-1.282v-22.839c0-0.709,0.573-1.28,1.282-1.28h34.394c0.705,0,1.28,0.571,1.28,1.28V392.36z"></path>
  124. </g>
  125. <g opacity="0.6">
  126. <path opacity="0.4" fill="#114832" enable-background="new " d="M378.587,392.36c0,0.709-0.576,1.282-1.285,1.282H342.91 c-0.707,0-1.28-0.573-1.28-1.282v-22.839c0-0.709,0.573-1.28,1.28-1.28h34.392c0.709,0,1.285,0.571,1.285,1.28V392.36z"></path>
  127. <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M378.587,392.36 c0,0.709-0.576,1.282-1.285,1.282H342.91c-0.707,0-1.28-0.573-1.28-1.282v-22.839c0-0.709,0.573-1.28,1.28-1.28h34.392 c0.709,0,1.285,0.571,1.285,1.28V392.36z"></path>
  128. </g>
  129. <g opacity="0.6">
  130. <path opacity="0.4" fill="#114832" enable-background="new " d="M425.451,392.36c0,0.709-0.569,1.282-1.28,1.282h-34.39 c-0.711,0-1.285-0.573-1.285-1.282v-22.839c0-0.709,0.574-1.28,1.285-1.28h34.39c0.711,0,1.28,0.571,1.28,1.28V392.36z"></path>
  131. <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M425.451,392.36c0,0.709-0.569,1.282-1.28,1.282 h-34.39c-0.711,0-1.285-0.573-1.285-1.282v-22.839c0-0.709,0.574-1.28,1.285-1.28h34.39c0.711,0,1.28,0.571,1.28,1.28V392.36z"></path>
  132. </g>
  133. <g opacity="0.6">
  134. <path opacity="0.4" fill="#114832" enable-background="new " d="M477.776,392.36c0,0.709-0.574,1.282-1.281,1.282h-34.394 c-0.707,0-1.282-0.573-1.282-1.282v-22.839c0-0.709,0.575-1.28,1.282-1.28h34.394c0.707,0,1.281,0.571,1.281,1.28V392.36z"></path>
  135. <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M477.776,392.36 c0,0.709-0.574,1.282-1.281,1.282h-34.394c-0.707,0-1.282-0.573-1.282-1.282v-22.839c0-0.709,0.575-1.28,1.282-1.28h34.394 c0.707,0,1.281,0.571,1.281,1.28V392.36z"></path>
  136. </g>
  137. <g opacity="0.6">
  138. <path opacity="0.4" fill="#114832" enable-background="new " d="M525.666,392.36c0,0.709-0.572,1.282-1.281,1.282h-34.392 c-0.709,0-1.284-0.573-1.284-1.282v-22.839c0-0.709,0.575-1.28,1.284-1.28h34.392c0.709,0,1.281,0.571,1.281,1.28V392.36z"></path>
  139. <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M525.666,392.36 c0,0.709-0.572,1.282-1.281,1.282h-34.392c-0.709,0-1.284-0.573-1.284-1.282v-22.839c0-0.709,0.575-1.28,1.284-1.28h34.392 c0.709,0,1.281,0.571,1.281,1.28V392.36z"></path>
  140. </g>
  141. <text transform="matrix(1 0 0 1 30.2732 22.9775)" fill="#FFFFFF" font-family="'MicrosoftYaHeiLight'" font-size="10.7967">运</text>
  142. <text transform="matrix(1 0 0 1 30.2732 35.9336)" fill="#FFFFFF" font-family="'MicrosoftYaHeiLight'" font-size="10.7967">行</text>
  143. <text transform="matrix(1 0 0 1 74.3601 22.9775)" fill="#FFFFFF" font-family="'MicrosoftYaHeiLight'" font-size="10.7967">待</text>
  144. <text transform="matrix(1 0 0 1 74.3601 35.9336)" fill="#FFFFFF" font-family="'MicrosoftYaHeiLight'" font-size="10.7967">机</text>
  145. <text transform="matrix(1 0 0 1 120.9207 22.9775)" fill="#FFFFFF" font-family="'MicrosoftYaHeiLight'" font-size="10.7967">维</text>
  146. <text transform="matrix(1 0 0 1 120.9207 35.9336)" fill="#FFFFFF" font-family="'MicrosoftYaHeiLight'" font-size="10.7967">护</text>
  147. <text transform="matrix(1 0 0 1 165.0085 22.9775)" fill="#FFFFFF" font-family="'MicrosoftYaHeiLight'" font-size="10.7967">停</text>
  148. <text transform="matrix(1 0 0 1 165.0085 35.9336)" fill="#FFFFFF" font-family="'MicrosoftYaHeiLight'" font-size="10.7967">机</text>
  149. <text transform="matrix(1 0 0 1 212.4949 22.9775)" fill="#FFFFFF" font-family="'MicrosoftYaHeiLight'" font-size="10.7967">限</text>
  150. <text transform="matrix(1 0 0 1 212.4949 35.9336)" fill="#FFFFFF" font-family="'MicrosoftYaHeiLight'" font-size="10.7967">电</text>
  151. <text transform="matrix(1 0 0 1 257.4783 22.9775)" fill="#FFFFFF" font-family="'MicrosoftYaHeiLight'" font-size="10.7967">中</text>
  152. <text transform="matrix(1 0 0 1 257.4783 35.9336)" fill="#FFFFFF" font-family="'MicrosoftYaHeiLight'" font-size="10.7967">断</text>
  153. <g opacity="0.6">
  154. <path opacity="0.4" fill="#0B472F" enable-background="new " d="M37.869,509.895c0,0.707-0.572,1.283-1.281,1.283H2.196 c-0.709,0-1.281-0.576-1.281-1.283v-22.838c0-0.709,0.572-1.281,1.281-1.281h34.393c0.709,0,1.281,0.572,1.281,1.281V509.895z"></path>
  155. <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M37.869,509.895 c0,0.707-0.572,1.283-1.281,1.283H2.196c-0.709,0-1.281-0.576-1.281-1.283v-22.838c0-0.709,0.572-1.281,1.281-1.281h34.393 c0.709,0,1.281,0.572,1.281,1.281V509.895z"></path>
  156. </g>
  157. <g opacity="0.6">
  158. <path opacity="0.4" fill="#0B472F" enable-background="new " d="M84.7,509.895c0,0.707-0.573,1.283-1.282,1.283H49.026 c-0.709,0-1.282-0.576-1.282-1.283v-22.838c0-0.709,0.573-1.281,1.282-1.281h34.393c0.709,0,1.282,0.572,1.282,1.281V509.895z"></path>
  159. <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M84.7,509.895c0,0.707-0.573,1.283-1.282,1.283 H49.026c-0.709,0-1.282-0.576-1.282-1.283v-22.838c0-0.709,0.573-1.281,1.282-1.281h34.393c0.709,0,1.282,0.572,1.282,1.281 V509.895z"></path>
  160. </g>
  161. <g opacity="0.6">
  162. <path opacity="0.4" fill="#0B472F" enable-background="new " d="M130.58,509.895c0,0.707-0.574,1.283-1.283,1.283H94.903 c-0.707,0-1.279-0.576-1.279-1.283v-22.838c0-0.709,0.572-1.281,1.279-1.281h34.395c0.709,0,1.283,0.572,1.283,1.281V509.895z"></path>
  163. <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M130.58,509.895 c0,0.707-0.574,1.283-1.283,1.283H94.903c-0.707,0-1.279-0.576-1.279-1.283v-22.838c0-0.709,0.572-1.281,1.279-1.281h34.395 c0.709,0,1.283,0.572,1.283,1.281V509.895z"></path>
  164. </g>
  165. <g opacity="0.6">
  166. <path opacity="0.4" fill="#0B472F" enable-background="new " d="M472.686,509.893c0,0.712-0.573,1.285-1.28,1.285h-34.394 c-0.707,0-1.283-0.573-1.283-1.285v-22.836c0-0.709,0.576-1.281,1.283-1.281h34.394c0.707,0,1.28,0.572,1.28,1.281V509.893z"></path>
  167. <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M472.686,509.893 c0,0.712-0.573,1.285-1.28,1.285h-34.394c-0.707,0-1.283-0.573-1.283-1.285v-22.836c0-0.709,0.576-1.281,1.283-1.281h34.394 c0.707,0,1.28,0.572,1.28,1.281V509.893z"></path>
  168. </g>
  169. <g opacity="0.6">
  170. <path opacity="0.4" fill="#0B472F" enable-background="new " d="M525.666,509.893c0,0.712-0.572,1.285-1.281,1.285h-34.392 c-0.711,0-1.284-0.573-1.284-1.285v-22.836c0-0.709,0.573-1.281,1.284-1.281h34.392c0.709,0,1.281,0.572,1.281,1.281V509.893z"></path>
  171. <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M525.666,509.893 c0,0.712-0.572,1.285-1.281,1.285h-34.392c-0.711,0-1.284-0.573-1.284-1.285v-22.836c0-0.709,0.573-1.281,1.284-1.281h34.392 c0.709,0,1.281,0.572,1.281,1.281V509.893z"></path>
  172. </g>
  173. <g opacity="0.6">
  174. <path opacity="0.4" fill="#0B472F" enable-background="new " d="M420.553,509.893c0,0.709-0.574,1.285-1.281,1.285h-34.393 c-0.709,0-1.283-0.576-1.283-1.285v-22.836c0-0.711,0.574-1.283,1.283-1.283h34.393c0.707,0,1.281,0.572,1.281,1.283V509.893z"></path>
  175. <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M420.553,509.893 c0,0.709-0.574,1.285-1.281,1.285h-34.393c-0.709,0-1.283-0.576-1.283-1.285v-22.836c0-0.711,0.574-1.283,1.283-1.283h34.393 c0.707,0,1.281,0.572,1.281,1.283V509.893z"></path>
  176. </g>
  177. <g opacity="0.6">
  178. <path opacity="0.4" fill="#0B472F" enable-background="new " d="M370.522,509.893c0,0.709-0.572,1.285-1.281,1.285H334.85 c-0.709,0-1.285-0.576-1.285-1.285v-22.836c0-0.711,0.576-1.283,1.285-1.283h34.391c0.709,0,1.281,0.572,1.281,1.283V509.893z"></path>
  179. <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M370.522,509.893 c0,0.709-0.572,1.285-1.281,1.285H334.85c-0.709,0-1.285-0.576-1.285-1.285v-22.836c0-0.711,0.576-1.283,1.285-1.283h34.391 c0.709,0,1.281,0.572,1.281,1.283V509.893z"></path>
  180. </g>
  181. <g opacity="0.6">
  182. <path opacity="0.4" fill="#0B472F" enable-background="new " d="M325.587,509.893c0,0.709-0.572,1.285-1.281,1.285h-34.392 c-0.711,0-1.284-0.576-1.284-1.285v-22.836c0-0.711,0.573-1.283,1.284-1.283h34.392c0.709,0,1.281,0.572,1.281,1.283V509.893z"></path>
  183. <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M325.587,509.893 c0,0.709-0.572,1.285-1.281,1.285h-34.392c-0.711,0-1.284-0.576-1.284-1.285v-22.836c0-0.711,0.573-1.283,1.284-1.283h34.392 c0.709,0,1.281,0.572,1.281,1.283V509.893z"></path>
  184. </g>
  185. <g opacity="0.6">
  186. <path opacity="0.4" fill="#0B472F" enable-background="new " d="M276.24,509.893c0,0.709-0.575,1.285-1.279,1.285h-34.393 c-0.711,0-1.284-0.576-1.284-1.285v-22.836c0-0.711,0.573-1.283,1.284-1.283h34.393c0.704,0,1.279,0.572,1.279,1.283V509.893z"></path>
  187. <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M276.24,509.893 c0,0.709-0.575,1.285-1.279,1.285h-34.393c-0.711,0-1.284-0.576-1.284-1.285v-22.836c0-0.711,0.573-1.283,1.284-1.283h34.393 c0.704,0,1.279,0.572,1.279,1.283V509.893z"></path>
  188. </g>
  189. <g opacity="0.6">
  190. <path opacity="0.4" fill="#0B472F" enable-background="new " d="M227.951,509.893c0,0.709-0.573,1.285-1.284,1.285h-34.389 c-0.707,0-1.28-0.576-1.28-1.285v-22.836c0-0.711,0.573-1.283,1.28-1.283h34.389c0.711,0,1.284,0.572,1.284,1.283V509.893z"></path>
  191. <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M227.951,509.893 c0,0.709-0.573,1.285-1.284,1.285h-34.389c-0.707,0-1.28-0.576-1.28-1.285v-22.836c0-0.711,0.573-1.283,1.28-1.283h34.389 c0.711,0,1.284,0.572,1.284,1.283V509.893z"></path>
  192. </g>
  193. <g opacity="0.6">
  194. <path opacity="0.4" fill="#0B472F" enable-background="new " d="M178.686,509.893c0,0.709-0.576,1.285-1.285,1.285h-34.387 c-0.707,0-1.283-0.576-1.283-1.285v-22.836c0-0.711,0.576-1.283,1.283-1.283H177.4c0.709,0,1.285,0.572,1.285,1.283 L178.686,509.893L178.686,509.893z"></path>
  195. <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M178.686,509.893 c0,0.709-0.576,1.285-1.285,1.285h-34.387c-0.707,0-1.283-0.576-1.283-1.285v-22.836c0-0.711,0.576-1.283,1.283-1.283H177.4 c0.709,0,1.285,0.572,1.285,1.283L178.686,509.893L178.686,509.893z"></path>
  196. </g>
  197. <g opacity="0.6">
  198. <path opacity="0.4" fill="#0B472F" enable-background="new " d="M134.142,760.308c0,0.707-0.574,1.281-1.281,1.281H98.468 c-0.709,0-1.283-0.574-1.283-1.281V737.47c0-0.709,0.574-1.283,1.283-1.283h34.393c0.707,0,1.281,0.574,1.281,1.283V760.308 L134.142,760.308z"></path>
  199. <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M134.142,760.308 c0,0.707-0.574,1.281-1.281,1.281H98.468c-0.709,0-1.283-0.574-1.283-1.281V737.47c0-0.709,0.574-1.283,1.283-1.283h34.393 c0.707,0,1.281,0.574,1.281,1.283V760.308L134.142,760.308z"></path>
  200. </g>
  201. <g opacity="0.6">
  202. <path opacity="0.4" fill="#0B472F" enable-background="new " d="M85.839,760.308c0,0.707-0.572,1.281-1.281,1.281H50.167 c-0.709,0-1.285-0.574-1.285-1.281V737.47c0-0.709,0.576-1.283,1.285-1.283h34.391c0.709,0,1.281,0.574,1.281,1.283V760.308z"></path>
  203. <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M85.839,760.308 c0,0.707-0.572,1.281-1.281,1.281H50.167c-0.709,0-1.285-0.574-1.285-1.281V737.47c0-0.709,0.576-1.283,1.285-1.283h34.391 c0.709,0,1.281,0.574,1.281,1.283V760.308z"></path>
  204. </g>
  205. <g opacity="0.6">
  206. <path opacity="0.4" fill="#0B472F" enable-background="new " d="M37.296,760.308c0,0.707-0.57,1.281-1.281,1.281H1.624 c-0.709,0-1.283-0.574-1.283-1.281V737.47c0-0.709,0.574-1.283,1.283-1.283h34.391c0.711,0,1.281,0.574,1.281,1.283V760.308z"></path>
  207. <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M37.296,760.308c0,0.707-0.57,1.281-1.281,1.281 H1.624c-0.709,0-1.283-0.574-1.283-1.281V737.47c0-0.709,0.574-1.283,1.283-1.283h34.391c0.711,0,1.281,0.574,1.281,1.283V760.308 z"></path>
  208. </g>
  209. <g opacity="0.6">
  210. <path opacity="0.4" fill="#0B472F" enable-background="new " d="M182.931,760.308c0,0.709-0.572,1.282-1.281,1.282h-34.391 c-0.709,0-1.283-0.573-1.283-1.282V737.47c0-0.707,0.574-1.283,1.283-1.283h34.391c0.709,0,1.281,0.576,1.281,1.283V760.308z"></path>
  211. <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M182.931,760.308 c0,0.709-0.572,1.282-1.281,1.282h-34.391c-0.709,0-1.283-0.573-1.283-1.282V737.47c0-0.707,0.574-1.283,1.283-1.283h34.391 c0.709,0,1.281,0.576,1.281,1.283V760.308z"></path>
  212. </g>
  213. <g opacity="0.6">
  214. <path opacity="0.4" fill="#0B472F" enable-background="new " d="M232.704,760.308c0,0.709-0.572,1.282-1.281,1.282h-34.392 c-0.709,0-1.282-0.573-1.282-1.282V737.47c0-0.707,0.573-1.283,1.282-1.283h34.392c0.709,0,1.281,0.576,1.281,1.283V760.308 L232.704,760.308z"></path>
  215. <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M232.704,760.308 c0,0.709-0.572,1.282-1.281,1.282h-34.392c-0.709,0-1.282-0.573-1.282-1.282V737.47c0-0.707,0.573-1.283,1.282-1.283h34.392 c0.709,0,1.281,0.576,1.281,1.283V760.308L232.704,760.308z"></path>
  216. </g>
  217. <g opacity="0.6">
  218. <path opacity="0.4" fill="#0B472F" enable-background="new " d="M281.65,760.308c0,0.709-0.572,1.282-1.28,1.282h-34.394 c-0.709,0-1.283-0.573-1.283-1.282V737.47c0-0.707,0.574-1.283,1.283-1.283h34.394c0.708,0,1.279,0.576,1.279,1.283 L281.65,760.308L281.65,760.308z"></path>
  219. <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M281.65,760.308c0,0.709-0.572,1.282-1.28,1.282 h-34.394c-0.709,0-1.283-0.573-1.283-1.282V737.47c0-0.707,0.574-1.283,1.283-1.283h34.394c0.708,0,1.279,0.576,1.279,1.283 L281.65,760.308L281.65,760.308z"></path>
  220. </g>
  221. <g opacity="0.6">
  222. <path opacity="0.4" fill="#0B472F" enable-background="new " d="M332.215,760.308c0,0.709-0.574,1.282-1.283,1.282h-34.391 c-0.709,0-1.283-0.573-1.283-1.282V737.47c0-0.707,0.574-1.283,1.283-1.283h34.391c0.709,0,1.283,0.576,1.283,1.283V760.308z"></path>
  223. <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M332.215,760.308 c0,0.709-0.574,1.282-1.283,1.282h-34.391c-0.709,0-1.283-0.573-1.283-1.282V737.47c0-0.707,0.574-1.283,1.283-1.283h34.391 c0.709,0,1.283,0.576,1.283,1.283V760.308z"></path>
  224. </g>
  225. <g opacity="0.6">
  226. <path opacity="0.4" fill="#0B472F" enable-background="new " d="M381.055,760.308c0,0.709-0.574,1.282-1.281,1.282h-34.393 c-0.707,0-1.281-0.573-1.281-1.282V737.47c0-0.707,0.574-1.283,1.281-1.283h34.393c0.707,0,1.281,0.576,1.281,1.283V760.308z"></path>
  227. <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M381.055,760.308 c0,0.709-0.574,1.282-1.281,1.282h-34.393c-0.707,0-1.281-0.573-1.281-1.282V737.47c0-0.707,0.574-1.283,1.281-1.283h34.393 c0.707,0,1.281,0.576,1.281,1.283V760.308z"></path>
  228. </g>
  229. <g opacity="0.6">
  230. <path opacity="0.4" fill="#0B472F" enable-background="new " d="M430.884,760.308c0,0.709-0.573,1.282-1.282,1.282h-34.391 c-0.709,0-1.283-0.573-1.283-1.282V737.47c0-0.707,0.574-1.283,1.283-1.283h34.391c0.709,0,1.282,0.576,1.282,1.283V760.308z"></path>
  231. <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M430.884,760.308 c0,0.709-0.573,1.282-1.282,1.282h-34.391c-0.709,0-1.283-0.573-1.283-1.282V737.47c0-0.707,0.574-1.283,1.283-1.283h34.391 c0.709,0,1.282,0.576,1.282,1.283V760.308z"></path>
  232. </g>
  233. <g opacity="0.6">
  234. <path opacity="0.4" fill="#0B472F" enable-background="new " d="M480.791,760.308c0,0.709-0.573,1.282-1.282,1.282h-34.392 c-0.709,0-1.282-0.573-1.282-1.282V737.47c0-0.707,0.573-1.283,1.282-1.283h34.392c0.709,0,1.282,0.576,1.282,1.283V760.308z"></path>
  235. <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M480.791,760.308 c0,0.709-0.573,1.282-1.282,1.282h-34.392c-0.709,0-1.282-0.573-1.282-1.282V737.47c0-0.707,0.573-1.283,1.282-1.283h34.392 c0.709,0,1.282,0.576,1.282,1.283V760.308z"></path>
  236. </g>
  237. <g opacity="0.6">
  238. <path opacity="0.4" fill="#0B472F" enable-background="new " d="M525.666,760.229c0,0.709-0.574,1.281-1.283,1.281h-34.392 c-0.709,0-1.282-0.572-1.282-1.281v-22.839c0-0.707,0.573-1.281,1.282-1.281h34.392c0.709,0,1.283,0.574,1.283,1.281V760.229z"></path>
  239. <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M525.666,760.229 c0,0.709-0.574,1.281-1.283,1.281h-34.392c-0.709,0-1.282-0.572-1.282-1.281v-22.839c0-0.707,0.573-1.281,1.282-1.281h34.392 c0.709,0,1.283,0.574,1.283,1.281V760.229z"></path>
  240. </g>
  241. <g opacity="0.6">
  242. <path opacity="0.4" fill="#0B472F" enable-background="new " d="M1238.832,135.501c0,0.709-0.571,1.282-1.28,1.282h-34.392 c-0.709,0-1.285-0.573-1.285-1.282v-22.838c0-0.707,0.576-1.283,1.285-1.283h34.392c0.709,0,1.28,0.576,1.28,1.283V135.501z"></path>
  243. <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M1238.832,135.501 c0,0.709-0.571,1.282-1.28,1.282h-34.392c-0.709,0-1.285-0.573-1.285-1.282v-22.838c0-0.707,0.576-1.283,1.285-1.283h34.392 c0.709,0,1.28,0.576,1.28,1.283V135.501z"></path>
  244. </g>
  245. <g opacity="0.6">
  246. <path opacity="0.4" fill="#0B472F" enable-background="new " d="M1288.939,135.5c0,0.71-0.572,1.283-1.28,1.283h-34.394 c-0.707,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.576-1.282,1.283-1.282h34.394c0.708,0,1.28,0.575,1.28,1.282V135.5 L1288.939,135.5z"></path>
  247. <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M1288.939,135.5c0,0.71-0.572,1.283-1.28,1.283 h-34.394c-0.707,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.576-1.282,1.283-1.282h34.394c0.708,0,1.28,0.575,1.28,1.282V135.5 L1288.939,135.5z"></path>
  248. </g>
  249. <g opacity="0.6">
  250. <path opacity="0.4" fill="#0B472F" enable-background="new " d="M1337.516,135.5c0,0.71-0.572,1.283-1.281,1.283h-34.393 c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.574-1.282,1.283-1.282h34.393c0.709,0,1.281,0.575,1.281,1.282V135.5z"></path>
  251. <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M1337.516,135.5c0,0.71-0.572,1.283-1.281,1.283 h-34.393c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.574-1.282,1.283-1.282h34.393c0.709,0,1.281,0.575,1.281,1.282 V135.5z"></path>
  252. </g>
  253. <g opacity="0.6">
  254. <path opacity="0.4" fill="#0B472F" enable-background="new " d="M1387.906,135.5c0,0.71-0.571,1.283-1.28,1.283h-34.392 c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.572-1.282,1.283-1.282h34.392c0.709,0,1.28,0.575,1.28,1.282V135.5z"></path>
  255. <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M1387.906,135.5c0,0.71-0.571,1.283-1.28,1.283 h-34.392c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.572-1.282,1.283-1.282h34.392c0.709,0,1.28,0.575,1.28,1.282V135.5z "></path>
  256. </g>
  257. <g opacity="0.6">
  258. <path opacity="0.4" fill="#0B472F" enable-background="new " d="M1436.289,135.5c0,0.71-0.571,1.283-1.28,1.283h-34.392 c-0.709,0-1.282-0.574-1.282-1.283v-22.838c0-0.707,0.573-1.282,1.282-1.282h34.392c0.709,0,1.28,0.575,1.28,1.282V135.5z"></path>
  259. <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M1436.289,135.5c0,0.71-0.571,1.283-1.28,1.283 h-34.392c-0.709,0-1.282-0.574-1.282-1.283v-22.838c0-0.707,0.573-1.282,1.282-1.282h34.392c0.709,0,1.28,0.575,1.28,1.282V135.5z "></path>
  260. </g>
  261. <g opacity="0.6">
  262. <path opacity="0.4" fill="#0B472F" enable-background="new " d="M1483.557,135.5c0,0.71-0.574,1.283-1.281,1.283h-34.394 c-0.707,0-1.28-0.574-1.28-1.283v-22.838c0-0.707,0.573-1.282,1.28-1.282h34.394c0.707,0,1.281,0.575,1.281,1.282V135.5z"></path>
  263. <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M1483.557,135.5c0,0.71-0.574,1.283-1.281,1.283 h-34.394c-0.707,0-1.28-0.574-1.28-1.283v-22.838c0-0.707,0.573-1.282,1.28-1.282h34.394c0.707,0,1.281,0.575,1.281,1.282V135.5z"></path>
  264. </g>
  265. <g opacity="0.6">
  266. <path opacity="0.4" fill="#0B472F" enable-background="new " d="M1530.845,135.5c0,0.71-0.573,1.283-1.282,1.283h-34.392 c-0.709,0-1.282-0.574-1.282-1.283v-22.838c0-0.707,0.573-1.282,1.282-1.282h34.392c0.709,0,1.282,0.575,1.282,1.282V135.5z"></path>
  267. <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M1530.845,135.5c0,0.71-0.573,1.283-1.282,1.283 h-34.392c-0.709,0-1.282-0.574-1.282-1.283v-22.838c0-0.707,0.573-1.282,1.282-1.282h34.392c0.709,0,1.282,0.575,1.282,1.282 V135.5z"></path>
  268. </g>
  269. <g opacity="0.6">
  270. <path opacity="0.4" fill="#0B472F" enable-background="new " d="M1578.191,135.5c0,0.71-0.574,1.283-1.283,1.283h-34.393 c-0.709,0-1.281-0.574-1.281-1.283v-22.838c0-0.707,0.572-1.282,1.281-1.282h34.393c0.709,0,1.283,0.575,1.283,1.282V135.5 L1578.191,135.5z"></path>
  271. <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M1578.191,135.5c0,0.71-0.574,1.283-1.283,1.283 h-34.393c-0.709,0-1.281-0.574-1.281-1.283v-22.838c0-0.707,0.572-1.282,1.281-1.282h34.393c0.709,0,1.283,0.575,1.283,1.282 V135.5L1578.191,135.5z"></path>
  272. </g>
  273. <g opacity="0.6">
  274. <path opacity="0.4" fill="#0B472F" enable-background="new " d="M38.892,640.121c0,0.711-0.571,1.284-1.282,1.284H3.22 c-0.711,0-1.285-0.573-1.285-1.284v-22.836c0-0.709,0.574-1.283,1.285-1.283h34.39c0.711,0,1.282,0.574,1.282,1.283V640.121 L38.892,640.121z"></path>
  275. <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M38.892,640.121 c0,0.711-0.571,1.284-1.282,1.284H3.22c-0.711,0-1.285-0.573-1.285-1.284v-22.836c0-0.709,0.574-1.283,1.285-1.283h34.39 c0.711,0,1.282,0.574,1.282,1.283V640.121L38.892,640.121z"></path>
  276. </g>
  277. <g opacity="0.6">
  278. <path opacity="0.4" fill="#0B472F" enable-background="new " d="M85.722,640.121c0,0.711-0.573,1.284-1.28,1.284h-34.39 c-0.711,0-1.285-0.573-1.285-1.284v-22.836c0-0.709,0.574-1.283,1.285-1.283h34.39c0.706,0,1.28,0.574,1.28,1.283V640.121z"></path>
  279. <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M85.722,640.121c0,0.711-0.573,1.284-1.28,1.284 h-34.39c-0.711,0-1.285-0.573-1.285-1.284v-22.836c0-0.709,0.574-1.283,1.285-1.283h34.39c0.706,0,1.28,0.574,1.28,1.283V640.121z "></path>
  280. </g>
  281. <g opacity="0.6">
  282. <path opacity="0.4" fill="#0B472F" enable-background="new " d="M133.603,640.121c0,0.711-0.576,1.284-1.285,1.284H97.926 c-0.707,0-1.28-0.573-1.28-1.284v-22.836c0-0.709,0.573-1.283,1.28-1.283h34.392c0.709,0,1.285,0.574,1.285,1.283V640.121z"></path>
  283. <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M133.603,640.121 c0,0.711-0.576,1.284-1.285,1.284H97.926c-0.707,0-1.28-0.573-1.28-1.284v-22.836c0-0.709,0.573-1.283,1.28-1.283h34.392 c0.709,0,1.285,0.574,1.285,1.283V640.121z"></path>
  284. </g>
  285. <g opacity="0.6">
  286. <path opacity="0.4" fill="#0B472F" enable-background="new " d="M525.666,641.174c0,0.707-0.574,1.281-1.281,1.281h-34.394 c-0.709,0-1.282-0.574-1.282-1.281v-22.838c0-0.709,0.573-1.283,1.282-1.283h34.394c0.707,0,1.281,0.574,1.281,1.283V641.174z"></path>
  287. <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M525.666,641.174 c0,0.707-0.574,1.281-1.281,1.281h-34.394c-0.709,0-1.282-0.574-1.282-1.281v-22.838c0-0.709,0.573-1.283,1.282-1.283h34.394 c0.707,0,1.281,0.574,1.281,1.283V641.174z"></path>
  288. </g>
  289. <g opacity="0.6">
  290. <path opacity="0.4" fill="#0B472F" enable-background="new " d="M478.707,641.421c0,0.707-0.573,1.281-1.282,1.281h-34.392 c-0.707,0-1.28-0.574-1.28-1.281v-22.838c0-0.709,0.573-1.283,1.28-1.283h34.392c0.709,0,1.282,0.574,1.282,1.283V641.421z"></path>
  291. <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M478.707,641.421 c0,0.707-0.573,1.281-1.282,1.281h-34.392c-0.707,0-1.28-0.574-1.28-1.281v-22.838c0-0.709,0.573-1.283,1.28-1.283h34.392 c0.709,0,1.282,0.574,1.282,1.283V641.421z"></path>
  292. </g>
  293. <g opacity="0.6">
  294. <path opacity="0.4" fill="#0B472F" enable-background="new " d="M428.574,641.422c0,0.707-0.569,1.281-1.28,1.281h-34.392 c-0.709,0-1.283-0.574-1.283-1.281v-22.838c0-0.709,0.574-1.283,1.283-1.283h34.392c0.711,0,1.28,0.574,1.28,1.283V641.422z"></path>
  295. <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M428.574,641.422 c0,0.707-0.569,1.281-1.28,1.281h-34.392c-0.709,0-1.283-0.574-1.283-1.281v-22.838c0-0.709,0.574-1.283,1.283-1.283h34.392 c0.711,0,1.28,0.574,1.28,1.283V641.422z"></path>
  296. </g>
  297. <g opacity="0.6">
  298. <path opacity="0.4" fill="#0B472F" enable-background="new " d="M377.544,640.926c0,0.707-0.574,1.281-1.281,1.281h-34.394 c-0.709,0-1.28-0.574-1.28-1.281v-22.838c0-0.709,0.571-1.283,1.28-1.283h34.394c0.707,0,1.281,0.574,1.281,1.283V640.926z"></path>
  299. <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M377.544,640.926 c0,0.707-0.574,1.281-1.281,1.281h-34.394c-0.709,0-1.28-0.574-1.28-1.281v-22.838c0-0.709,0.571-1.283,1.28-1.283h34.394 c0.707,0,1.281,0.574,1.281,1.283V640.926z"></path>
  300. </g>
  301. <g opacity="0.6">
  302. <path opacity="0.4" fill="#0B472F" enable-background="new " d="M328.61,641.176c0,0.707-0.572,1.281-1.283,1.281h-34.39 c-0.709,0-1.284-0.574-1.284-1.281v-22.838c0-0.709,0.575-1.283,1.284-1.283h34.39c0.711,0,1.283,0.574,1.283,1.283V641.176 L328.61,641.176z"></path>
  303. <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M328.61,641.176 c0,0.707-0.572,1.281-1.283,1.281h-34.39c-0.709,0-1.284-0.574-1.284-1.281v-22.838c0-0.709,0.575-1.283,1.284-1.283h34.39 c0.711,0,1.283,0.574,1.283,1.283V641.176L328.61,641.176z"></path>
  304. </g>
  305. <g opacity="0.6">
  306. <path opacity="0.4" fill="#0B472F" enable-background="new " d="M280.263,640.926c0,0.707-0.571,1.281-1.283,1.281h-34.389 c-0.709,0-1.285-0.574-1.285-1.281v-22.838c0-0.709,0.576-1.283,1.285-1.283h34.389c0.712,0,1.283,0.574,1.283,1.283V640.926z"></path>
  307. <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M280.263,640.926 c0,0.707-0.571,1.281-1.283,1.281h-34.389c-0.709,0-1.285-0.574-1.285-1.281v-22.838c0-0.709,0.576-1.283,1.285-1.283h34.389 c0.712,0,1.283,0.574,1.283,1.283V640.926z"></path>
  308. </g>
  309. <g opacity="0.6">
  310. <path opacity="0.4" fill="#0B472F" enable-background="new " d="M232.974,641.176c0,0.707-0.571,1.281-1.28,1.281h-34.392 c-0.709,0-1.283-0.574-1.283-1.281v-22.838c0-0.709,0.574-1.283,1.283-1.283h34.392c0.709,0,1.28,0.574,1.28,1.283V641.176z"></path>
  311. <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M232.974,641.176 c0,0.707-0.571,1.281-1.28,1.281h-34.392c-0.709,0-1.283-0.574-1.283-1.281v-22.838c0-0.709,0.574-1.283,1.283-1.283h34.392 c0.709,0,1.28,0.574,1.28,1.283V641.176z"></path>
  312. </g>
  313. <g opacity="0.6">
  314. <path opacity="0.4" fill="#0B472F" enable-background="new " d="M182.709,640.927c0,0.707-0.574,1.281-1.283,1.281h-34.393 c-0.707,0-1.281-0.574-1.281-1.281v-22.838c0-0.709,0.574-1.283,1.281-1.283h34.393c0.709,0,1.283,0.574,1.283,1.283V640.927z"></path>
  315. <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M182.709,640.927 c0,0.707-0.574,1.281-1.283,1.281h-34.393c-0.707,0-1.281-0.574-1.281-1.281v-22.838c0-0.709,0.574-1.283,1.281-1.283h34.393 c0.709,0,1.283,0.574,1.283,1.283V640.927z"></path>
  316. </g>
  317. <g opacity="0.6">
  318. <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1626.337,135.222c0,0.71-0.573,1.283-1.282,1.283h-34.393 c-0.709,0-1.282-0.574-1.282-1.283v-22.838c0-0.707,0.573-1.282,1.282-1.282h34.393c0.709,0,1.282,0.575,1.282,1.282V135.222z"></path>
  319. <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1626.337,135.222 c0,0.71-0.573,1.283-1.282,1.283h-34.393c-0.709,0-1.282-0.574-1.282-1.283v-22.838c0-0.707,0.573-1.282,1.282-1.282h34.393 c0.709,0,1.282,0.575,1.282,1.282V135.222z"></path>
  320. </g>
  321. <g opacity="0.6">
  322. <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1674.366,135.222c0,0.71-0.571,1.283-1.28,1.283h-34.392 c-0.709,0-1.285-0.574-1.285-1.283v-22.838c0-0.707,0.576-1.282,1.285-1.282h34.392c0.709,0,1.28,0.575,1.28,1.282V135.222z"></path>
  323. <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1674.366,135.222 c0,0.71-0.571,1.283-1.28,1.283h-34.392c-0.709,0-1.285-0.574-1.285-1.283v-22.838c0-0.707,0.576-1.282,1.285-1.282h34.392 c0.709,0,1.28,0.575,1.28,1.282V135.222z"></path>
  324. </g>
  325. <g opacity="0.6">
  326. <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1725.5,135.222c0,0.71-0.572,1.283-1.281,1.283h-34.392 c-0.709,0-1.284-0.574-1.284-1.283v-22.838c0-0.707,0.575-1.282,1.284-1.282h34.392c0.709,0,1.281,0.575,1.281,1.282V135.222z"></path>
  327. <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1725.5,135.222c0,0.71-0.572,1.283-1.281,1.283 h-34.392c-0.709,0-1.284-0.574-1.284-1.283v-22.838c0-0.707,0.575-1.282,1.284-1.282h34.392c0.709,0,1.281,0.575,1.281,1.282 V135.222z"></path>
  328. </g>
  329. <g opacity="0.6">
  330. <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1771.413,135.222c0,0.71-0.572,1.283-1.28,1.283h-34.393 c-0.708,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.575-1.282,1.283-1.282h34.393c0.708,0,1.28,0.575,1.28,1.282V135.222z"></path>
  331. <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1771.413,135.222 c0,0.71-0.572,1.283-1.28,1.283h-34.393c-0.708,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.575-1.282,1.283-1.282h34.393 c0.708,0,1.28,0.575,1.28,1.282V135.222z"></path>
  332. </g>
  333. <g opacity="0.6">
  334. <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1258.182,382.117c0,0.709-0.574,1.283-1.281,1.283h-34.394 c-0.709,0-1.282-0.574-1.282-1.283v-22.838c0-0.707,0.573-1.283,1.282-1.283h34.394c0.707,0,1.279,0.576,1.279,1.283 L1258.182,382.117L1258.182,382.117z"></path>
  335. <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1258.182,382.117 c0,0.709-0.574,1.283-1.281,1.283h-34.394c-0.709,0-1.282-0.574-1.282-1.283v-22.838c0-0.707,0.573-1.283,1.282-1.283h34.394 c0.707,0,1.279,0.576,1.279,1.283L1258.182,382.117L1258.182,382.117z"></path>
  336. </g>
  337. <g opacity="0.6">
  338. <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1304.012,382.117c0,0.709-0.572,1.283-1.281,1.283h-34.392 c-0.709,0-1.282-0.574-1.282-1.283v-22.838c0-0.707,0.573-1.283,1.282-1.283h34.392c0.709,0,1.281,0.576,1.281,1.283V382.117z"></path>
  339. <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1304.012,382.117 c0,0.709-0.572,1.283-1.281,1.283h-34.392c-0.709,0-1.282-0.574-1.282-1.283v-22.838c0-0.707,0.573-1.283,1.282-1.283h34.392 c0.709,0,1.281,0.576,1.281,1.283V382.117z"></path>
  340. </g>
  341. <g opacity="0.6">
  342. <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1352.891,382.117c0,0.709-0.574,1.283-1.281,1.283h-34.394 c-0.707,0-1.28-0.574-1.28-1.283v-22.838c0-0.707,0.573-1.283,1.28-1.283h34.394c0.707,0,1.281,0.576,1.281,1.283V382.117z"></path>
  343. <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1352.891,382.117 c0,0.709-0.574,1.283-1.281,1.283h-34.394c-0.707,0-1.28-0.574-1.28-1.283v-22.838c0-0.707,0.573-1.283,1.28-1.283h34.394 c0.707,0,1.281,0.576,1.281,1.283V382.117z"></path>
  344. </g>
  345. <g opacity="0.6">
  346. <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1401.996,382.117c0,0.709-0.571,1.283-1.28,1.283h-34.392 c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.574-1.283,1.283-1.283h34.392c0.709,0,1.28,0.576,1.28,1.283V382.117z"></path>
  347. <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1401.996,382.117 c0,0.709-0.571,1.283-1.28,1.283h-34.392c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.574-1.283,1.283-1.283h34.392 c0.709,0,1.28,0.576,1.28,1.283V382.117z"></path>
  348. </g>
  349. <g opacity="0.6">
  350. <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1451.266,382.117c0,0.709-0.574,1.283-1.283,1.283h-34.392 c-0.709,0-1.282-0.574-1.282-1.283v-22.838c0-0.707,0.573-1.283,1.282-1.283h34.392c0.709,0,1.283,0.576,1.283,1.283V382.117z"></path>
  351. <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1451.266,382.117 c0,0.709-0.574,1.283-1.283,1.283h-34.392c-0.709,0-1.282-0.574-1.282-1.283v-22.838c0-0.707,0.573-1.283,1.282-1.283h34.392 c0.709,0,1.283,0.576,1.283,1.283V382.117z"></path>
  352. </g>
  353. <g opacity="0.6">
  354. <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1499.552,382.117c0,0.709-0.573,1.283-1.282,1.283h-34.392 c-0.709,0-1.282-0.574-1.282-1.283v-22.838c0-0.707,0.573-1.283,1.282-1.283h34.392c0.709,0,1.282,0.576,1.282,1.283V382.117z"></path>
  355. <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1499.552,382.117 c0,0.709-0.573,1.283-1.282,1.283h-34.392c-0.709,0-1.282-0.574-1.282-1.283v-22.838c0-0.707,0.573-1.283,1.282-1.283h34.392 c0.709,0,1.282,0.576,1.282,1.283V382.117z"></path>
  356. </g>
  357. <g opacity="0.6">
  358. <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1549.898,382.117c0,0.709-0.572,1.283-1.281,1.283h-34.393 c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.574-1.283,1.283-1.283h34.393c0.709,0,1.281,0.576,1.281,1.283V382.117z"></path>
  359. <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1549.898,382.117 c0,0.709-0.572,1.283-1.281,1.283h-34.393c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.574-1.283,1.283-1.283h34.393 c0.709,0,1.281,0.576,1.281,1.283V382.117z"></path>
  360. </g>
  361. <g opacity="0.6">
  362. <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1596.834,382.117c0,0.709-0.572,1.283-1.281,1.283h-34.392 c-0.709,0-1.284-0.574-1.284-1.283v-22.838c0-0.707,0.575-1.283,1.284-1.283h34.392c0.709,0,1.281,0.576,1.281,1.283V382.117z"></path>
  363. <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1596.834,382.117 c0,0.709-0.572,1.283-1.281,1.283h-34.392c-0.709,0-1.284-0.574-1.284-1.283v-22.838c0-0.707,0.575-1.283,1.284-1.283h34.392 c0.709,0,1.281,0.576,1.281,1.283V382.117z"></path>
  364. </g>
  365. <g opacity="0.6">
  366. <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1644.863,382.117c0,0.709-0.571,1.283-1.28,1.283h-34.392 c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.574-1.283,1.283-1.283h34.392c0.709,0,1.28,0.576,1.28,1.283V382.117z"></path>
  367. <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1644.863,382.117 c0,0.709-0.571,1.283-1.28,1.283h-34.392c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.574-1.283,1.283-1.283h34.392 c0.709,0,1.28,0.576,1.28,1.283V382.117z"></path>
  368. </g>
  369. <g opacity="0.6">
  370. <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1685.996,382.117c0,0.709-0.573,1.283-1.282,1.283h-34.392 c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.574-1.283,1.283-1.283h34.392c0.709,0,1.282,0.576,1.282,1.283V382.117z"></path>
  371. <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1685.996,382.117 c0,0.709-0.573,1.283-1.282,1.283h-34.392c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.574-1.283,1.283-1.283h34.392 c0.709,0,1.282,0.576,1.282,1.283V382.117z"></path>
  372. </g>
  373. <g opacity="0.6">
  374. <path opacity="0.4" fill="#0B472F" enable-background="new " d="M1212.225,381.873c0,0.709-0.574,1.281-1.283,1.281h-34.392 c-0.709,0-1.282-0.572-1.282-1.281v-22.838c0-0.707,0.573-1.283,1.282-1.283h34.392c0.709,0,1.283,0.576,1.283,1.283V381.873z"></path>
  375. <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M1212.225,381.873 c0,0.709-0.574,1.281-1.283,1.281h-34.392c-0.709,0-1.282-0.572-1.282-1.281v-22.838c0-0.707,0.573-1.283,1.282-1.283h34.392 c0.709,0,1.283,0.576,1.283,1.283V381.873z"></path>
  376. </g>
  377. <g opacity="0.6">
  378. <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1734.182,382.412c0,0.709-0.574,1.283-1.281,1.283h-34.394 c-0.709,0-1.282-0.574-1.282-1.283v-22.838c0-0.707,0.573-1.283,1.282-1.283h34.394c0.707,0,1.279,0.576,1.279,1.283 L1734.182,382.412L1734.182,382.412z"></path>
  379. <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1734.182,382.412 c0,0.709-0.574,1.283-1.281,1.283h-34.394c-0.709,0-1.282-0.574-1.282-1.283v-22.838c0-0.707,0.573-1.283,1.282-1.283h34.394 c0.707,0,1.279,0.576,1.279,1.283L1734.182,382.412L1734.182,382.412z"></path>
  380. </g>
  381. <g opacity="0.6">
  382. <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1782.012,382.412c0,0.709-0.572,1.283-1.281,1.283h-34.392 c-0.709,0-1.282-0.574-1.282-1.283v-22.838c0-0.707,0.573-1.283,1.282-1.283h34.392c0.709,0,1.281,0.576,1.281,1.283V382.412z"></path>
  383. <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1782.012,382.412 c0,0.709-0.572,1.283-1.281,1.283h-34.392c-0.709,0-1.282-0.574-1.282-1.283v-22.838c0-0.707,0.573-1.283,1.282-1.283h34.392 c0.709,0,1.281,0.576,1.281,1.283V382.412z"></path>
  384. </g>
  385. <g>
  386. <rect x="0.263" y="147.194" fill="none" stroke="#4A4877" stroke-miterlimit="10" width="84.191" height="24.605"></rect>
  387. <rect x="0.263" y="147.194" opacity="0.7" fill="#1A295D" enable-background="new " width="84.191" height="24.605"></rect>
  388. <text transform="matrix(1 0 0 1 11.0183 163.9678)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="14.8514">#1风机线</text>
  389. </g>
  390. <g>
  391. <rect x="0.263" y="281.194" fill="none" stroke="#4A4877" stroke-miterlimit="10" width="84.191" height="24.605"></rect>
  392. <rect x="0.263" y="281.194" opacity="0.7" fill="#1A295D" enable-background="new " width="84.191" height="24.605"></rect>
  393. <text transform="matrix(1 0 0 1 11.0183 297.9678)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="14.8514">#2风机线</text>
  394. </g>
  395. <g>
  396. <rect x="0.263" y="403.193" fill="none" stroke="#4A4877" stroke-miterlimit="10" width="84.191" height="24.604"></rect>
  397. <rect x="0.263" y="403.193" opacity="0.7" fill="#1A295D" enable-background="new " width="84.191" height="24.604"></rect>
  398. <text transform="matrix(1 0 0 1 11.0183 419.9668)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="14.8514">#3风机线</text>
  399. </g>
  400. <g>
  401. <rect x="0.263" y="519.859" fill="none" stroke="#4A4877" stroke-miterlimit="10" width="84.191" height="24.604"></rect>
  402. <rect x="0.263" y="519.859" opacity="0.7" fill="#1A295D" enable-background="new " width="84.191" height="24.604"></rect>
  403. <text transform="matrix(1 0 0 1 11.0183 536.6328)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="14.8514">#4风机线</text>
  404. </g>
  405. <g>
  406. <rect x="0.263" y="648.526" fill="none" stroke="#4A4877" stroke-miterlimit="10" width="84.191" height="24.604"></rect>
  407. <rect x="0.263" y="648.526" opacity="0.7" fill="#1A295D" enable-background="new " width="84.191" height="24.604"></rect>
  408. <text transform="matrix(1 0 0 1 11.0183 665.3008)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="14.8514">#5风机线</text>
  409. </g>
  410. <g>
  411. <rect x="657.263" y="742.859" fill="none" stroke="#4A4877" stroke-miterlimit="10" width="84.19" height="24.604"></rect>
  412. <rect x="657.263" y="742.859" opacity="0.7" fill="#1A295D" enable-background="new " width="84.19" height="24.604"></rect>
  413. <text transform="matrix(1 0 0 1 668.0183 759.6328)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="14.8514">#6风机线</text>
  414. </g>
  415. <g>
  416. <rect x="1041.263" y="743.859" fill="none" stroke="#4A4877" stroke-miterlimit="10" width="84.19" height="24.604"></rect>
  417. <rect x="1041.263" y="743.859" opacity="0.7" fill="#1A295D" enable-background="new " width="84.19" height="24.604"></rect>
  418. <text transform="matrix(1 0 0 1 1052.0178 760.6328)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="14.8514">#9风机线</text>
  419. </g>
  420. <g>
  421. <rect x="1697.595" y="520.859" fill="none" stroke="#4A4877" stroke-miterlimit="10" width="84.19" height="24.604"></rect>
  422. <rect x="1697.595" y="520.859" opacity="0.7" fill="#1A295D" enable-background="new " width="84.19" height="24.604"></rect>
  423. <text transform="matrix(1 0 0 1 1703.3518 537.6328)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="14.8514">#11风机线</text>
  424. </g>
  425. <g>
  426. <rect x="1697.595" y="653.859" fill="none" stroke="#4A4877" stroke-miterlimit="10" width="84.19" height="24.604"></rect>
  427. <rect x="1697.595" y="653.859" opacity="0.7" fill="#1A295D" enable-background="new " width="84.19" height="24.604"></rect>
  428. <text transform="matrix(1 0 0 1 1703.3518 670.6328)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="14.8514">#10风机线</text>
  429. </g>
  430. <g>
  431. <rect x="1697.595" y="400.859" fill="none" stroke="#4A4877" stroke-miterlimit="10" width="84.19" height="24.604"></rect>
  432. <rect x="1697.595" y="400.859" opacity="0.7" fill="#1A295D" enable-background="new " width="84.19" height="24.604"></rect>
  433. <text transform="matrix(1 0 0 1 1703.3518 417.6328)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="14.8514">#8风机线</text>
  434. </g>
  435. <g>
  436. <rect x="1697.595" y="145.859" fill="none" stroke="#4A4877" stroke-miterlimit="10" width="84.19" height="24.605"></rect>
  437. <rect x="1697.595" y="145.859" opacity="0.7" fill="#1A295D" enable-background="new " width="84.19" height="24.605"></rect>
  438. <text transform="matrix(1 0 0 1 1703.3518 162.6328)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="14.8514">#7风机线</text>
  439. </g>
  440. <text transform="matrix(1 0 0 1 725.9045 723.9824)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">110kV Ⅱ母线</text>
  441. <text transform="matrix(1 0 0 1 1032.9045 509.4824)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">35kV 2 母线</text>
  442. <text transform="matrix(1 0 0 1 656.4045 509.4824)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">35kV 2 母线</text>
  443. <text transform="matrix(1 0 0 1 948.9045 724.4824)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">110kV Ⅱ母线</text>
  444. <polyline fill="#AD1658" points="1789.453,766.956 1132.52,766.958 1132.52,764.883 1789.453,764.881 "></polyline>
  445. <g opacity="0.6">
  446. <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1247.453,756.838c0,0.709-0.572,1.283-1.279,1.283h-34.396 c-0.707,0-1.28-0.574-1.28-1.283V734c0-0.707,0.573-1.283,1.28-1.283h34.396c0.707,0,1.279,0.576,1.279,1.283V756.838z"></path>
  447. <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1247.453,756.838 c0,0.709-0.572,1.283-1.279,1.283h-34.396c-0.707,0-1.28-0.574-1.28-1.283V734c0-0.707,0.573-1.283,1.28-1.283h34.396 c0.707,0,1.279,0.576,1.279,1.283V756.838z"></path>
  448. </g>
  449. <g opacity="0.6">
  450. <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1296.563,756.838c0,0.709-0.572,1.283-1.281,1.283h-34.391 c-0.709,0-1.283-0.574-1.283-1.283V734c0-0.707,0.574-1.283,1.283-1.283h34.391c0.709,0,1.281,0.576,1.281,1.283V756.838z"></path>
  451. <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1296.563,756.838 c0,0.709-0.572,1.283-1.281,1.283h-34.391c-0.709,0-1.283-0.574-1.283-1.283V734c0-0.707,0.574-1.283,1.283-1.283h34.391 c0.709,0,1.281,0.576,1.281,1.283V756.838z"></path>
  452. </g>
  453. <g opacity="0.6">
  454. <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1344.828,756.838c0,0.709-0.572,1.283-1.281,1.283h-34.393 c-0.709,0-1.283-0.574-1.283-1.283V734c0-0.707,0.574-1.283,1.283-1.283h34.393c0.709,0,1.281,0.576,1.281,1.283V756.838z"></path>
  455. <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1344.828,756.838 c0,0.709-0.572,1.283-1.281,1.283h-34.393c-0.709,0-1.283-0.574-1.283-1.283V734c0-0.707,0.574-1.283,1.283-1.283h34.393 c0.709,0,1.281,0.576,1.281,1.283V756.838z"></path>
  456. </g>
  457. <g opacity="0.6">
  458. <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1392.115,756.838c0,0.709-0.572,1.283-1.283,1.283h-34.392 c-0.709,0-1.282-0.574-1.282-1.283V734c0-0.707,0.573-1.283,1.282-1.283h34.392c0.709,0,1.283,0.576,1.283,1.283V756.838z"></path>
  459. <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1392.115,756.838 c0,0.709-0.572,1.283-1.283,1.283h-34.392c-0.709,0-1.282-0.574-1.282-1.283V734c0-0.707,0.573-1.283,1.282-1.283h34.392 c0.709,0,1.283,0.576,1.283,1.283V756.838z"></path>
  460. </g>
  461. <g opacity="0.6">
  462. <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1440.463,756.838c0,0.709-0.572,1.283-1.281,1.283h-34.393 c-0.709,0-1.283-0.574-1.283-1.283V734c0-0.707,0.574-1.283,1.283-1.283h34.393c0.709,0,1.281,0.576,1.281,1.283V756.838z"></path>
  463. <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1440.463,756.838 c0,0.709-0.572,1.283-1.281,1.283h-34.393c-0.709,0-1.283-0.574-1.283-1.283V734c0-0.707,0.574-1.283,1.283-1.283h34.393 c0.709,0,1.281,0.576,1.281,1.283V756.838z"></path>
  464. </g>
  465. <g opacity="0.6">
  466. <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1487.398,756.838c0,0.709-0.572,1.283-1.281,1.283h-34.391 c-0.709,0-1.285-0.574-1.285-1.283V734c0-0.707,0.576-1.283,1.285-1.283h34.391c0.709,0,1.281,0.576,1.281,1.283V756.838z"></path>
  467. <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1487.398,756.838 c0,0.709-0.572,1.283-1.281,1.283h-34.391c-0.709,0-1.285-0.574-1.285-1.283V734c0-0.707,0.576-1.283,1.285-1.283h34.391 c0.709,0,1.281,0.576,1.281,1.283V756.838z"></path>
  468. </g>
  469. <g opacity="0.6">
  470. <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1534.428,756.838c0,0.709-0.572,1.283-1.281,1.283h-34.391 c-0.709,0-1.283-0.574-1.283-1.283V734c0-0.707,0.574-1.283,1.283-1.283h34.391c0.709,0,1.281,0.576,1.281,1.283V756.838z"></path>
  471. <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1534.428,756.838 c0,0.709-0.572,1.283-1.281,1.283h-34.391c-0.709,0-1.283-0.574-1.283-1.283V734c0-0.707,0.574-1.283,1.283-1.283h34.391 c0.709,0,1.281,0.576,1.281,1.283V756.838z"></path>
  472. </g>
  473. <g opacity="0.6">
  474. <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1580.563,756.838c0,0.709-0.574,1.283-1.283,1.283h-34.391 c-0.709,0-1.283-0.574-1.283-1.283V734c0-0.707,0.574-1.283,1.283-1.283h34.391c0.709,0,1.283,0.576,1.283,1.283V756.838z"></path>
  475. <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1580.563,756.838 c0,0.709-0.574,1.283-1.283,1.283h-34.391c-0.709,0-1.283-0.574-1.283-1.283V734c0-0.707,0.574-1.283,1.283-1.283h34.391 c0.709,0,1.283,0.576,1.283,1.283V756.838z"></path>
  476. </g>
  477. <polyline fill="#AD1658" points="1133.482,778 1133.482,501.883 1135.556,501.883 1135.556,778 "></polyline>
  478. <polyline fill="#AD1658" points="1001.482,709 1001.482,590 1003.556,590 1003.556,709 "></polyline>
  479. <polyline fill="#AD1658" points="1001.482,330 1001.482,211 1003.556,211 1003.556,330 "></polyline>
  480. <rect x="1085.953" y="644.703" fill="#AD1658" width="49.731" height="2.074"></rect>
  481. <g>
  482. <rect x="1039.683" y="588.495" fill="none" stroke="#4B4877" stroke-miterlimit="10" width="65.177" height="24.604"></rect>
  483. <rect x="1039.683" y="588.495" opacity="0.7" fill="#1A295D" enable-background="new " width="65.177" height="24.604"></rect>
  484. <text transform="matrix(1 0 0 1 1048.3245 605.2676)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="14.8514">#4主变</text>
  485. </g>
  486. <text transform="matrix(1 0 0 1 1098.5901 669.1621)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">305</text>
  487. <text transform="matrix(1 0 0 1 1016.0901 669.1621)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">105</text>
  488. <text transform="matrix(1 0 0 1 958.0901 669.1621)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">151</text>
  489. <text transform="matrix(1 0 0 1 1140.5901 670.1621)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">352</text>
  490. <text transform="matrix(1 0 0 1 1140.5901 545.1621)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">351</text>
  491. <text transform="matrix(1 0 0 1 614.0901 545.1621)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">321</text>
  492. <text transform="matrix(1 0 0 1 614.0901 666.6621)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">322</text>
  493. <text transform="matrix(1 0 0 1 654.0901 666.6621)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">302</text>
  494. <text transform="matrix(1 0 0 1 742.5901 666.6621)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">102</text>
  495. <text transform="matrix(1 0 0 1 795.0901 666.6621)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">121</text>
  496. <text transform="matrix(1 0 0 1 614.0901 752.1621)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">323</text>
  497. <text transform="matrix(1 0 0 1 1143.5901 750.1621)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">353</text>
  498. <g>
  499. <rect x="855.007" y="582" fill="none" stroke="#AA2B4D" stroke-miterlimit="10" width="30.743" height="116"></rect>
  500. <rect x="855.007" y="582" opacity="0.7" fill="#621126" enable-background="new " width="30.743" height="116"></rect>
  501. <text transform="matrix(1 0 0 1 862.6423 606.4473)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="15.5623">首</text>
  502. <text transform="matrix(1 0 0 1 862.6423 625.1221)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="15.5623">风</text>
  503. <text transform="matrix(1 0 0 1 862.6423 643.7969)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="15.5623">五</text>
  504. <text transform="matrix(1 0 0 1 862.6423 662.4717)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="15.5623">甲</text>
  505. <text transform="matrix(1 0 0 1 862.6423 681.1465)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="15.5623">线</text>
  506. </g>
  507. <g>
  508. <rect x="897.369" y="582" fill="none" stroke="#AA2B4D" stroke-miterlimit="10" width="30.743" height="116"></rect>
  509. <rect x="897.369" y="582" opacity="0.7" fill="#621126" enable-background="new " width="30.743" height="116"></rect>
  510. <text transform="matrix(1 0 0 1 905.0061 606.4473)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="15.5623">首</text>
  511. <text transform="matrix(1 0 0 1 905.0061 625.1221)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="15.5623">风</text>
  512. <text transform="matrix(1 0 0 1 905.0061 643.7969)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="15.5623">五</text>
  513. <text transform="matrix(1 0 0 1 905.0061 662.4717)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="15.5623">乙</text>
  514. <text transform="matrix(1 0 0 1 905.0061 681.1465)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="15.5623">线</text>
  515. </g>
  516. <g>
  517. <rect x="855.007" y="217" fill="none" stroke="#AA2B4D" stroke-miterlimit="10" width="30.743" height="116"></rect>
  518. <rect x="855.007" y="217" opacity="0.7" fill="#621126" enable-background="new " width="30.743" height="116"></rect>
  519. <text transform="matrix(1 0 0 1 862.6423 252.4473)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="15.5623">能</text>
  520. <text transform="matrix(1 0 0 1 862.6423 271.1221)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="15.5623">风</text>
  521. <text transform="matrix(1 0 0 1 862.6423 289.7969)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="15.5623">六</text>
  522. <text transform="matrix(1 0 0 1 862.6423 308.4717)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="15.5623">线</text>
  523. </g>
  524. <g>
  525. <rect x="897.369" y="217" fill="none" stroke="#AA2B4D" stroke-miterlimit="10" width="30.743" height="116"></rect>
  526. <rect x="897.369" y="217" opacity="0.7" fill="#621126" enable-background="new " width="30.743" height="116"></rect>
  527. <text transform="matrix(1 0 0 1 905.0061 241.4473)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="15.5623">首</text>
  528. <text transform="matrix(1 0 0 1 905.0061 260.1221)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="15.5623">风</text>
  529. <text transform="matrix(1 0 0 1 905.0061 278.7969)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="15.5623">五</text>
  530. <text transform="matrix(1 0 0 1 905.0061 297.4717)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="15.5623">甲</text>
  531. <text transform="matrix(1 0 0 1 905.0061 316.1465)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="15.5623">线</text>
  532. </g>
  533. <g opacity="0.6">
  534. <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1633.953,756.838c0,0.709-0.573,1.283-1.282,1.283h-41.782 c-0.709,0-1.283-0.574-1.283-1.283V734c0-0.707,0.574-1.283,1.283-1.283h41.782c0.709,0,1.282,0.576,1.282,1.283V756.838z"></path>
  535. <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1633.953,756.838 c0,0.709-0.573,1.283-1.282,1.283h-41.782c-0.709,0-1.283-0.574-1.283-1.283V734c0-0.707,0.574-1.283,1.283-1.283h41.782 c0.709,0,1.282,0.576,1.282,1.283V756.838z"></path>
  536. </g>
  537. <g>
  538. <g opacity="0.6">
  539. <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1247.744,511.143c0,0.709-0.573,1.283-1.282,1.283h-41.783 c-0.709,0-1.282-0.574-1.282-1.283v-22.838c0-0.707,0.573-1.281,1.282-1.281h41.783c0.709,0,1.282,0.574,1.282,1.281V511.143z"></path>
  540. <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1247.744,511.143 c0,0.709-0.573,1.283-1.282,1.283h-41.783c-0.709,0-1.282-0.574-1.282-1.283v-22.838c0-0.707,0.573-1.281,1.282-1.281h41.783 c0.709,0,1.282,0.574,1.282,1.281V511.143z"></path>
  541. </g>
  542. </g>
  543. <g>
  544. <g opacity="0.6">
  545. <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1584.577,641.143c0,0.709-0.573,1.283-1.282,1.283h-41.783 c-0.709,0-1.283-0.573-1.283-1.283v-22.838c0-0.707,0.574-1.282,1.283-1.282h41.783c0.709,0,1.282,0.575,1.282,1.282V641.143z"></path>
  546. <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1584.577,641.143 c0,0.709-0.573,1.283-1.282,1.283h-41.783c-0.709,0-1.283-0.573-1.283-1.283v-22.838c0-0.707,0.574-1.282,1.283-1.282h41.783 c0.709,0,1.282,0.575,1.282,1.282V641.143z"></path>
  547. </g>
  548. </g>
  549. <g>
  550. <g opacity="0.6">
  551. <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1536.077,641.143c0,0.709-0.573,1.283-1.282,1.283h-41.783 c-0.709,0-1.283-0.573-1.283-1.283v-22.838c0-0.707,0.574-1.282,1.283-1.282h41.783c0.709,0,1.282,0.575,1.282,1.282V641.143z"></path>
  552. <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1536.077,641.143 c0,0.709-0.573,1.283-1.282,1.283h-41.783c-0.709,0-1.283-0.573-1.283-1.283v-22.838c0-0.707,0.574-1.282,1.283-1.282h41.783 c0.709,0,1.282,0.575,1.282,1.282V641.143z"></path>
  553. </g>
  554. </g>
  555. <g>
  556. <g opacity="0.6">
  557. <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1487.577,641.143c0,0.709-0.573,1.283-1.282,1.283h-41.783 c-0.709,0-1.283-0.573-1.283-1.283v-22.838c0-0.707,0.574-1.282,1.283-1.282h41.783c0.709,0,1.282,0.575,1.282,1.282V641.143z"></path>
  558. <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1487.577,641.143 c0,0.709-0.573,1.283-1.282,1.283h-41.783c-0.709,0-1.283-0.573-1.283-1.283v-22.838c0-0.707,0.574-1.282,1.283-1.282h41.783 c0.709,0,1.282,0.575,1.282,1.282V641.143z"></path>
  559. </g>
  560. </g>
  561. <g>
  562. <g opacity="0.6">
  563. <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1439.077,641.143c0,0.709-0.573,1.283-1.282,1.283h-41.783 c-0.709,0-1.283-0.573-1.283-1.283v-22.838c0-0.707,0.574-1.282,1.283-1.282h41.783c0.709,0,1.282,0.575,1.282,1.282V641.143z"></path>
  564. <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1439.077,641.143 c0,0.709-0.573,1.283-1.282,1.283h-41.783c-0.709,0-1.283-0.573-1.283-1.283v-22.838c0-0.707,0.574-1.282,1.283-1.282h41.783 c0.709,0,1.282,0.575,1.282,1.282V641.143z"></path>
  565. </g>
  566. </g>
  567. <g>
  568. <g opacity="0.6">
  569. <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1390.577,641.143c0,0.709-0.573,1.283-1.282,1.283h-41.783 c-0.709,0-1.283-0.573-1.283-1.283v-22.838c0-0.707,0.574-1.282,1.283-1.282h41.783c0.709,0,1.282,0.575,1.282,1.282V641.143z"></path>
  570. <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1390.577,641.143 c0,0.709-0.573,1.283-1.282,1.283h-41.783c-0.709,0-1.283-0.573-1.283-1.283v-22.838c0-0.707,0.574-1.282,1.283-1.282h41.783 c0.709,0,1.282,0.575,1.282,1.282V641.143z"></path>
  571. </g>
  572. </g>
  573. <g>
  574. <g opacity="0.6">
  575. <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1342.077,641.143c0,0.709-0.573,1.283-1.282,1.283h-41.783 c-0.709,0-1.283-0.573-1.283-1.283v-22.838c0-0.707,0.574-1.282,1.283-1.282h41.783c0.709,0,1.282,0.575,1.282,1.282V641.143z"></path>
  576. <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1342.077,641.143 c0,0.709-0.573,1.283-1.282,1.283h-41.783c-0.709,0-1.283-0.573-1.283-1.283v-22.838c0-0.707,0.574-1.282,1.283-1.282h41.783 c0.709,0,1.282,0.575,1.282,1.282V641.143z"></path>
  577. </g>
  578. </g>
  579. <g>
  580. <g opacity="0.6">
  581. <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1293.577,641.143c0,0.709-0.573,1.283-1.282,1.283h-41.783 c-0.709,0-1.283-0.573-1.283-1.283v-22.838c0-0.707,0.574-1.282,1.283-1.282h41.783c0.709,0,1.282,0.575,1.282,1.282V641.143z"></path>
  582. <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1293.577,641.143 c0,0.709-0.573,1.283-1.282,1.283h-41.783c-0.709,0-1.283-0.573-1.283-1.283v-22.838c0-0.707,0.574-1.282,1.283-1.282h41.783 c0.709,0,1.282,0.575,1.282,1.282V641.143z"></path>
  583. </g>
  584. </g>
  585. <g>
  586. <g opacity="0.6">
  587. <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1245.077,641.143c0,0.709-0.573,1.283-1.282,1.283h-41.783 c-0.709,0-1.282-0.573-1.282-1.283v-22.838c0-0.707,0.573-1.282,1.282-1.282h41.783c0.709,0,1.282,0.575,1.282,1.282V641.143z"></path>
  588. <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1245.077,641.143 c0,0.709-0.573,1.283-1.282,1.283h-41.783c-0.709,0-1.282-0.573-1.282-1.283v-22.838c0-0.707,0.573-1.282,1.282-1.282h41.783 c0.709,0,1.282,0.575,1.282,1.282V641.143z"></path>
  589. </g>
  590. </g>
  591. <polyline fill="#AD1658" points="1789.453,645.956 1133.977,645.958 1133.977,643.883 1789.453,643.881 "></polyline>
  592. <rect x="942.453" y="644.703" fill="#AD1658" width="103.731" height="2.074"></rect>
  593. <polyline fill="#AD1658" points="1789.453,516.956 1134.484,516.958 1134.484,514.883 1789.453,514.881 "></polyline>
  594. <g>
  595. <g opacity="0.6">
  596. <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1587.744,511.143c0,0.709-0.573,1.283-1.282,1.283h-41.782 c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.574-1.281,1.283-1.281h41.782c0.709,0,1.282,0.574,1.282,1.281V511.143z"></path>
  597. <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1587.744,511.143 c0,0.709-0.573,1.283-1.282,1.283h-41.782c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.574-1.281,1.283-1.281h41.782 c0.709,0,1.282,0.574,1.282,1.281V511.143z"></path>
  598. </g>
  599. </g>
  600. <g>
  601. <g opacity="0.6">
  602. <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1539.244,511.143c0,0.709-0.573,1.283-1.282,1.283h-41.782 c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.574-1.281,1.283-1.281h41.782c0.709,0,1.282,0.574,1.282,1.281V511.143z"></path>
  603. <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1539.244,511.143 c0,0.709-0.573,1.283-1.282,1.283h-41.782c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.574-1.281,1.283-1.281h41.782 c0.709,0,1.282,0.574,1.282,1.281V511.143z"></path>
  604. </g>
  605. </g>
  606. <g>
  607. <g opacity="0.6">
  608. <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1490.744,511.143c0,0.709-0.573,1.283-1.282,1.283h-41.782 c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.574-1.281,1.283-1.281h41.782c0.709,0,1.282,0.574,1.282,1.281V511.143z"></path>
  609. <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1490.744,511.143 c0,0.709-0.573,1.283-1.282,1.283h-41.782c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.574-1.281,1.283-1.281h41.782 c0.709,0,1.282,0.574,1.282,1.281V511.143z"></path>
  610. </g>
  611. </g>
  612. <g>
  613. <g opacity="0.6">
  614. <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1442.244,511.143c0,0.709-0.573,1.283-1.282,1.283h-41.782 c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.574-1.281,1.283-1.281h41.782c0.709,0,1.282,0.574,1.282,1.281V511.143z"></path>
  615. <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1442.244,511.143 c0,0.709-0.573,1.283-1.282,1.283h-41.782c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.574-1.281,1.283-1.281h41.782 c0.709,0,1.282,0.574,1.282,1.281V511.143z"></path>
  616. </g>
  617. </g>
  618. <g>
  619. <g opacity="0.6">
  620. <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1393.744,511.143c0,0.709-0.573,1.283-1.282,1.283h-41.782 c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.574-1.281,1.283-1.281h41.782c0.709,0,1.282,0.574,1.282,1.281V511.143z"></path>
  621. <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1393.744,511.143 c0,0.709-0.573,1.283-1.282,1.283h-41.782c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.574-1.281,1.283-1.281h41.782 c0.709,0,1.282,0.574,1.282,1.281V511.143z"></path>
  622. </g>
  623. </g>
  624. <g>
  625. <g opacity="0.6">
  626. <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1345.244,511.143c0,0.709-0.573,1.283-1.282,1.283h-41.782 c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.574-1.281,1.283-1.281h41.782c0.709,0,1.282,0.574,1.282,1.281V511.143z"></path>
  627. <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1345.244,511.143 c0,0.709-0.573,1.283-1.282,1.283h-41.782c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.574-1.281,1.283-1.281h41.782 c0.709,0,1.282,0.574,1.282,1.281V511.143z"></path>
  628. </g>
  629. </g>
  630. <g>
  631. <g opacity="0.6">
  632. <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1296.744,511.143c0,0.709-0.573,1.283-1.282,1.283h-41.782 c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.574-1.281,1.283-1.281h41.782c0.709,0,1.282,0.574,1.282,1.281V511.143z"></path>
  633. <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1296.744,511.143 c0,0.709-0.573,1.283-1.282,1.283h-41.782c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.574-1.281,1.283-1.281h41.782 c0.709,0,1.282,0.574,1.282,1.281V511.143z"></path>
  634. </g>
  635. </g>
  636. <g>
  637. <circle fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" cx="1078.109" cy="658.367" r="12.709"></circle>
  638. <circle fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" cx="1078.108" cy="636.313" r="12.709"></circle>
  639. <polyline fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" points="1082.658,664.182 1078.086,659.661 1073.824,664.182 "></polyline>
  640. <line fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" x1="1077.99" y1="659.542" x2="1077.99" y2="651.57"></line>
  641. <polyline fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" points="1082.658,642.618 1078.086,638.097 1073.824,642.618 "></polyline>
  642. <line fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" x1="1077.99" y1="637.977" x2="1077.99" y2="630.005"></line>
  643. <circle fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" cx="1059.452" cy="646.7" r="12.708"></circle>
  644. <polygon fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" points="1061.99,651.406 1061.99,641.995 1054.229,646.957 "></polygon>
  645. </g>
  646. <polygon fill="#AD1658" points="949.306,653.271 928.47,645.191 949.306,635.115 "></polygon>
  647. <g>
  648. <rect x="1041.263" y="371.859" fill="none" stroke="#4A4877" stroke-miterlimit="10" width="84.19" height="24.604"></rect>
  649. <rect x="1041.263" y="371.859" opacity="0.7" fill="#1A295D" enable-background="new " width="84.19" height="24.604"></rect>
  650. <text transform="matrix(1 0 0 1 1052.0178 388.6328)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="14.8514">#9风机线</text>
  651. </g>
  652. <text transform="matrix(1 0 0 1 1027.9045 143.4824)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">35kV Ⅰ 母线</text>
  653. <text transform="matrix(1 0 0 1 948.9045 352.4824)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">110kV Ⅰ母线</text>
  654. <polyline fill="#AD1658" points="1789.453,394.956 1132.52,394.958 1132.52,392.883 1789.453,392.881 "></polyline>
  655. <polyline fill="#AD1658" points="1133.482,406 1133.482,129.883 1135.556,129.883 1135.556,406 "></polyline>
  656. <rect x="1085.953" y="272.703" fill="#AD1658" width="49.731" height="2.074"></rect>
  657. <g>
  658. <rect x="1039.683" y="216.495" fill="none" stroke="#4B4877" stroke-miterlimit="10" width="65.177" height="24.604"></rect>
  659. <rect x="1039.683" y="216.495" opacity="0.7" fill="#1A295D" enable-background="new " width="65.177" height="24.604"></rect>
  660. <text transform="matrix(1 0 0 1 1048.3245 233.2676)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="14.8514">#3主变</text>
  661. </g>
  662. <text transform="matrix(1 0 0 1 1098.5901 297.1621)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">302</text>
  663. <text transform="matrix(1 0 0 1 1016.0901 297.1621)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">102</text>
  664. <text transform="matrix(1 0 0 1 958.0901 297.1621)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">121</text>
  665. <text transform="matrix(1 0 0 1 1140.5901 173.1621)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">331</text>
  666. <text transform="matrix(1 0 0 1 1143.5901 378.1621)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">332</text>
  667. <rect x="942.453" y="271.703" fill="#AD1658" width="103.731" height="2.074"></rect>
  668. <polyline fill="#AD1658" points="1789.453,144.956 1134.484,144.958 1134.484,142.883 1789.453,142.881 "></polyline>
  669. <g>
  670. <circle fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" cx="1078.109" cy="286.367" r="12.709"></circle>
  671. <circle fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" cx="1078.108" cy="264.312" r="12.709"></circle>
  672. <polyline fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" points="1082.658,292.182 1078.086,287.661 1073.824,292.182 "></polyline>
  673. <line fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" x1="1077.99" y1="287.542" x2="1077.99" y2="279.57"></line>
  674. <polyline fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" points="1082.658,270.618 1078.086,266.097 1073.824,270.618 "></polyline>
  675. <line fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" x1="1077.99" y1="265.977" x2="1077.99" y2="258.005"></line>
  676. <circle fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" cx="1059.452" cy="274.7" r="12.708"></circle>
  677. <polygon fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" points="1061.99,279.406 1061.99,269.995 1054.229,274.957 "></polygon>
  678. </g>
  679. <polygon fill="#AD1658" points="949.306,280.271 928.47,272.191 949.306,262.115 "></polygon>
  680. <polyline fill="#AD1658" points="1.47,763.881 648.405,763.883 648.405,765.958 1.47,765.956 "></polyline>
  681. <polyline fill="#AD1658" points="645.367,777 645.367,500.883 647.441,500.883 647.441,777 "></polyline>
  682. <polyline fill="#AD1658" points="777.367,708 777.367,589 779.441,589 779.441,708 "></polyline>
  683. <rect x="645.237" y="643.703" fill="#AD1658" width="49.731" height="2.074"></rect>
  684. <g>
  685. <rect x="666.683" y="587.495" fill="none" stroke="#4B4877" stroke-miterlimit="10" width="65.177" height="24.604"></rect>
  686. <rect x="666.683" y="587.495" opacity="0.7" fill="#1A295D" enable-background="new " width="65.177" height="24.604"></rect>
  687. <text transform="matrix(1 0 0 1 675.3235 604.2676)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="14.8514">#2主变</text>
  688. </g>
  689. <polyline fill="#AD1658" points="1.47,642.881 646.97,642.883 646.97,644.958 1.47,644.956 "></polyline>
  690. <rect x="734.737" y="643.703" fill="#AD1658" width="103.731" height="2.074"></rect>
  691. <polyline fill="#AD1658" points="1.47,513.881 648.405,513.883 648.405,515.958 1.47,515.956 "></polyline>
  692. <g>
  693. <circle fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" cx="702.814" cy="657.367" r="12.709"></circle>
  694. <circle fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" cx="702.814" cy="635.313" r="12.709"></circle>
  695. <polyline fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" points="698.265,663.182 702.838,658.661 707.099,663.182 "></polyline>
  696. <line fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" x1="702.934" y1="658.542" x2="702.934" y2="650.57"></line>
  697. <polyline fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" points="698.265,641.618 702.838,637.097 707.099,641.618 "></polyline>
  698. <line fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" x1="702.934" y1="636.977" x2="702.934" y2="629.005"></line>
  699. <circle fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" cx="721.471" cy="645.7" r="12.708"></circle>
  700. <polygon fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" points="718.934,650.406 718.934,640.995 726.695,645.957 "></polygon>
  701. </g>
  702. <polygon fill="#AD1658" points="831.617,634.115 852.453,644.191 831.617,652.271 "></polygon>
  703. <g>
  704. <rect x="657.263" y="368.082" fill="none" stroke="#4A4877" stroke-miterlimit="10" width="84.19" height="24.605"></rect>
  705. <rect x="657.263" y="368.082" opacity="0.7" fill="#1A295D" enable-background="new " width="84.19" height="24.605"></rect>
  706. <text transform="matrix(1 0 0 1 668.0183 384.8555)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="14.8514">#6风机线</text>
  707. </g>
  708. <text transform="matrix(1 0 0 1 725.9045 349.2051)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">110kV Ⅰ母线</text>
  709. <text transform="matrix(1 0 0 1 656.4045 134.7051)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">35kV Ⅰ 母线</text>
  710. <text transform="matrix(1 0 0 1 614.0901 170.3848)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">312</text>
  711. <text transform="matrix(1 0 0 1 614.0901 291.8848)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">313</text>
  712. <text transform="matrix(1 0 0 1 654.0901 291.8848)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">301</text>
  713. <text transform="matrix(1 0 0 1 742.5901 291.8848)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">101</text>
  714. <text transform="matrix(1 0 0 1 795.0901 291.8848)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">111</text>
  715. <text transform="matrix(1 0 0 1 614.0901 415.3848)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">314</text>
  716. <text transform="matrix(1 0 0 1 657.0901 341.3848)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">314</text>
  717. <polyline fill="#AD1658" points="1.47,396.438 648.405,396.438 648.405,398.514 1.47,398.512 "></polyline>
  718. <polyline fill="#AD1658" points="645.367,420 645.367,126.105 647.441,126.105 647.441,420 "></polyline>
  719. <polyline fill="#AD1658" points="777.367,333.223 777.367,214.223 779.441,214.223 779.441,333.223 "></polyline>
  720. <rect x="645.237" y="268.926" fill="#AD1658" width="49.731" height="2.074"></rect>
  721. <g>
  722. <rect x="666.683" y="212.718" fill="none" stroke="#4B4877" stroke-miterlimit="10" width="65.177" height="24.604"></rect>
  723. <rect x="666.683" y="212.718" opacity="0.7" fill="#1A295D" enable-background="new " width="65.177" height="24.604"></rect>
  724. <text transform="matrix(1 0 0 1 675.3235 229.4902)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="14.8514">#1主变</text>
  725. </g>
  726. <polyline fill="#AD1658" points="1.47,268.104 646.97,268.105 646.97,270.181 1.47,270.179 "></polyline>
  727. <rect x="734.737" y="268.926" fill="#AD1658" width="103.731" height="2.074"></rect>
  728. <polyline fill="#AD1658" points="1.47,139.104 648.405,139.105 648.405,141.181 1.47,141.179 "></polyline>
  729. <g>
  730. <circle fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" cx="702.814" cy="282.59" r="12.709"></circle>
  731. <circle fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" cx="702.814" cy="260.535" r="12.709"></circle>
  732. <polyline fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" points="698.265,288.404 702.838,283.884 707.099,288.404 "></polyline>
  733. <line fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" x1="702.934" y1="283.765" x2="702.934" y2="275.793"></line>
  734. <polyline fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" points="698.265,266.841 702.838,262.319 707.099,266.841 "></polyline>
  735. <line fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" x1="702.934" y1="262.199" x2="702.934" y2="254.228"></line>
  736. <circle fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" cx="721.471" cy="270.922" r="12.708"></circle>
  737. <polygon fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" points="718.934,275.629 718.934,266.218 726.695,271.18 "></polygon>
  738. </g>
  739. <polygon fill="#AD1658" points="831.617,260.338 852.453,270.414 831.617,278.494 "></polygon>
  740. </g>
  741. <g id="wtnum">
  742. <text transform="matrix(1 0 0 1 1302.2756 505.541)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[110].wtnum}}</text>
  743. <text transform="matrix(1 0 0 1 1253.7756 505.541)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[109].wtnum}}</text>
  744. <text transform="matrix(1 0 0 1 1500.5022 751.2363)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[97].wtnum}}</text>
  745. <text transform="matrix(1 0 0 1 1453.4729 751.2363)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[96].wtnum}}</text>
  746. <text transform="matrix(1 0 0 1 1546.635 751.2363)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[98].wtnum}}</text>
  747. <text transform="matrix(1 0 0 1 1213.5295 751.2363)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[91].wtnum}}</text>
  748. <text transform="matrix(1 0 0 1 1262.637 751.2363)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[92].wtnum}}</text>
  749. <text transform="matrix(1 0 0 1 1310.9026 751.2363)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[93].wtnum}}</text>
  750. <text transform="matrix(1 0 0 1 1358.1897 751.2363)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[94].wtnum}}</text>
  751. <text transform="matrix(1 0 0 1 1406.5354 751.2363)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[95].wtnum}}</text>
  752. <text transform="matrix(1 0 0 1 1652.0706 376.5137)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[88].wtnum}}</text>
  753. <text transform="matrix(1 0 0 1 1178.2971 375.6758)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[78].wtnum}}</text>
  754. <text transform="matrix(1 0 0 1 1562.9084 376.5137)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[86].wtnum}}</text>
  755. <text transform="matrix(1 0 0 1 1610.9377 376.5137)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[87].wtnum}}</text>
  756. <text transform="matrix(1 0 0 1 1224.2542 376.5137)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[79].wtnum}}</text>
  757. <text transform="matrix(1 0 0 1 1318.9651 376.5137)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[81].wtnum}}</text>
  758. <text transform="matrix(1 0 0 1 1368.0725 376.5137)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[82].wtnum}}</text>
  759. <text transform="matrix(1 0 0 1 1417.3381 376.5137)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[83].wtnum}}</text>
  760. <text transform="matrix(1 0 0 1 1465.6252 376.5137)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[84].wtnum}}</text>
  761. <text transform="matrix(1 0 0 1 1515.9709 376.5137)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[85].wtnum}}</text>
  762. <text transform="matrix(1 0 0 1 1270.0862 376.5137)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[80].wtnum}}</text>
  763. <text transform="matrix(1 0 0 1 1700.2542 376.8105)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[89].wtnum}}</text>
  764. <text transform="matrix(1 0 0 1 1748.0862 376.8105)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[90].wtnum}}</text>
  765. <text transform="matrix(1 0 0 1 12.0662 127.0254)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[0].wtnum}}</text>
  766. <text transform="matrix(1 0 0 1 58.073 127.0254)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[1].wtnum}}</text>
  767. <text transform="matrix(1 0 0 1 106.5349 127.0254)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[2].wtnum}}</text>
  768. <text transform="matrix(1 0 0 1 152.5417 127.0254)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[3].wtnum}}</text>
  769. <text transform="matrix(1 0 0 1 196.6912 127.0254)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[4].wtnum}}</text>
  770. <text transform="matrix(1 0 0 1 242.698 127.0254)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[5].wtnum}}</text>
  771. <text transform="matrix(1 0 0 1 342.2625 127.0254)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[7].wtnum}}</text>
  772. <text transform="matrix(1 0 0 1 392.2693 127.0254)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[8].wtnum}}</text>
  773. <text transform="matrix(1 0 0 1 438.4177 127.0254)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[9].wtnum}}</text>
  774. <text transform="matrix(1 0 0 1 491.4792 127.0254)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[10].wtnum}}</text>
  775. <text transform="matrix(1 0 0 1 295.8699 127.0254)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[6].wtnum}}</text>
  776. <text transform="matrix(1 0 0 1 7.9211 257.9082)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[11].wtnum}}</text>
  777. <text transform="matrix(1 0 0 1 57.6292 257.9082)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[12].wtnum}}</text>
  778. <text transform="matrix(1 0 0 1 105.0325 257.9082)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[33].wtnum}}</text>
  779. <text transform="matrix(1 0 0 1 154.5657 257.9082)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[14].wtnum}}</text>
  780. <text transform="matrix(1 0 0 1 201.7141 257.9082)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[15].wtnum}}</text>
  781. <text transform="matrix(1 0 0 1 250.7668 257.9082)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[16].wtnum}}</text>
  782. <text transform="matrix(1 0 0 1 351.5042 257.9082)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[18].wtnum}}</text>
  783. <text transform="matrix(1 0 0 1 399.6653 257.9082)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[19].wtnum}}</text>
  784. <text transform="matrix(1 0 0 1 449.1174 257.9082)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[20].wtnum}}</text>
  785. <text transform="matrix(1 0 0 1 491.4792 257.9082)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[21].wtnum}}</text>
  786. <text transform="matrix(1 0 0 1 4.3191 387.4102)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[22].wtnum}}</text>
  787. <text transform="matrix(1 0 0 1 53.1365 387.4102)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[23].wtnum}}</text>
  788. <text transform="matrix(1 0 0 1 101.2971 387.4102)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[24].wtnum}}</text>
  789. <text transform="matrix(1 0 0 1 302.1125 257.9082)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[17].wtnum}}</text>
  790. <text transform="matrix(1 0 0 1 196.7068 387.1484)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[26].wtnum}}</text>
  791. <text transform="matrix(1 0 0 1 247.1042 387.1484)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[27].wtnum}}</text>
  792. <text transform="matrix(1 0 0 1 295.9841 387.1484)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[28].wtnum}}</text>
  793. <text transform="matrix(1 0 0 1 344.574 387.1484)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[29].wtnum}}</text>
  794. <text transform="matrix(1 0 0 1 391.4431 387.1484)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[30].wtnum}}</text>
  795. <text transform="matrix(1 0 0 1 491.4792 387.1484)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[32].wtnum}}</text>
  796. <text transform="matrix(1 0 0 1 441.6316 387.1484)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[31].wtnum}}</text>
  797. <text transform="matrix(1 0 0 1 148.3582 387.1484)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[25].wtnum}}</text>
  798. <text transform="matrix(1 0 0 1 3.9426 503.6973)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[33].wtnum}}</text>
  799. <text transform="matrix(1 0 0 1 50.7742 503.6973)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[34].wtnum}}</text>
  800. <text transform="matrix(1 0 0 1 96.6531 503.6973)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[35].wtnum}}</text>
  801. <text transform="matrix(1 0 0 1 100.2151 754.1094)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[57].wtnum}}</text>
  802. <text transform="matrix(1 0 0 1 51.9119 754.1094)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[56].wtnum}}</text>
  803. <text transform="matrix(1 0 0 1 3.3704 754.1094)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[55].wtnum}}</text>
  804. <text transform="matrix(1 0 0 1 386.6257 503.6973)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[41].wtnum}}</text>
  805. <text transform="matrix(1 0 0 1 336.5964 503.6973)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[40].wtnum}}</text>
  806. <text transform="matrix(1 0 0 1 291.6594 503.6973)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[39].wtnum}}</text>
  807. <text transform="matrix(1 0 0 1 242.3142 503.6973)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[38].wtnum}}</text>
  808. <text transform="matrix(1 0 0 1 194.0266 503.6973)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[37].wtnum}}</text>
  809. <text transform="matrix(1 0 0 1 144.7605 503.6973)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[36].wtnum}}</text>
  810. <text transform="matrix(1 0 0 1 438.7595 503.6973)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[42].wtnum}}</text>
  811. <text transform="matrix(1 0 0 1 491.4792 503.6973)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[43].wtnum}}</text>
  812. <text transform="matrix(1 0 0 1 149.0051 754.1094)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[58].wtnum}}</text>
  813. <text transform="matrix(1 0 0 1 198.7786 754.1094)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[59].wtnum}}</text>
  814. <text transform="matrix(1 0 0 1 247.7239 754.1094)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[60].wtnum}}</text>
  815. <text transform="matrix(1 0 0 1 347.1296 754.1094)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[62].wtnum}}</text>
  816. <text transform="matrix(1 0 0 1 396.9583 754.1094)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[63].wtnum}}</text>
  817. <text transform="matrix(1 0 0 1 446.866 754.1094)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[64].wtnum}}</text>
  818. <text transform="matrix(1 0 0 1 491.4792 754.0322)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[65].wtnum}}</text>
  819. <text transform="matrix(1 0 0 1 1204.9065 129.3037)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[66].wtnum}}</text>
  820. <text transform="matrix(1 0 0 1 298.2888 754.1094)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[61].wtnum}}</text>
  821. <text transform="matrix(1 0 0 1 1255.0139 129.3037)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[67].wtnum}}</text>
  822. <text transform="matrix(1 0 0 1 1303.5881 129.3037)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[68].wtnum}}</text>
  823. <text transform="matrix(1 0 0 1 1353.9807 129.3037)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[69].wtnum}}</text>
  824. <text transform="matrix(1 0 0 1 1449.6311 129.3037)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[71].wtnum}}</text>
  825. <text transform="matrix(1 0 0 1 1496.9182 129.3037)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[72].wtnum}}</text>
  826. <text transform="matrix(1 0 0 1 1544.2639 129.3037)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[73].wtnum}}</text>
  827. <text transform="matrix(1 0 0 1 1402.3655 129.3037)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[70].wtnum}}</text>
  828. <text transform="matrix(1 0 0 1 491.4792 634.9756)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[54].wtnum}}</text>
  829. <text transform="matrix(1 0 0 1 444.7825 635.2217)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[53].wtnum}}</text>
  830. <text transform="matrix(1 0 0 1 394.6487 635.2236)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[52].wtnum}}</text>
  831. <text transform="matrix(1 0 0 1 294.6824 634.9775)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[50].wtnum}}</text>
  832. <text transform="matrix(1 0 0 1 246.3372 634.7275)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[49].wtnum}}</text>
  833. <text transform="matrix(1 0 0 1 199.0496 634.9775)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[48].wtnum}}</text>
  834. <text transform="matrix(1 0 0 1 148.7834 634.7295)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[47].wtnum}}</text>
  835. <text transform="matrix(1 0 0 1 343.6194 634.7275)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[51].wtnum}}</text>
  836. <text transform="matrix(1 0 0 1 4.9656 635.2236)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[44].wtnum}}</text>
  837. <text transform="matrix(1 0 0 1 51.7971 635.2236)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[45].wtnum}}</text>
  838. <text transform="matrix(1 0 0 1 99.676 635.2236)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[46].wtnum}}</text>
  839. <text transform="matrix(1 0 0 1 1592.4104 129.6191)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[74].wtnum}}</text>
  840. <text transform="matrix(1 0 0 1 1640.4397 129.6191)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[75].wtnum}}</text>
  841. <text transform="matrix(1 0 0 1 1737.4885 129.6191)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[77].wtnum}}</text>
  842. <text transform="matrix(1 0 0 1 1691.5745 129.6191)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[76].wtnum}}</text>
  843. <text transform="matrix(1 0 0 1 1541.6096 635.541)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[107].wtnum}}</text>
  844. <text transform="matrix(1 0 0 1 1347.6096 635.541)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[103].wtnum}}</text>
  845. <text transform="matrix(1 0 0 1 1299.1096 635.541)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[102].wtnum}}</text>
  846. <text transform="matrix(1 0 0 1 1250.6096 635.541)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[101].wtnum}}</text>
  847. <text transform="matrix(1 0 0 1 1591.5276 751.2363)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[99].wtnum}}</text>
  848. <text transform="matrix(1 0 0 1 1204.7756 505.541)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[108].wtnum}}</text>
  849. <text transform="matrix(1 0 0 1 1493.1096 635.541)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[106].wtnum}}</text>
  850. <text transform="matrix(1 0 0 1 1444.6096 635.541)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[105].wtnum}}</text>
  851. <text transform="matrix(1 0 0 1 1396.1096 635.541)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[104].wtnum}}</text>
  852. <text transform="matrix(1 0 0 1 1202.1096 635.541)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[100].wtnum}}</text>
  853. <text transform="matrix(1 0 0 1 1544.7756 505.541)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[115].wtnum}}</text>
  854. <text transform="matrix(1 0 0 1 1496.2756 505.541)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[114].wtnum}}</text>
  855. <text transform="matrix(1 0 0 1 1447.7756 505.541)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[113].wtnum}}</text>
  856. <text transform="matrix(1 0 0 1 1399.2756 505.541)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[112].wtnum}}</text>
  857. <text transform="matrix(1 0 0 1 1350.7756 505.541)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[111].wtnum}}</text>
  858. </g>
  859. <g id="s_x5F_fan">
  860. <g>
  861. <g>
  862. <path fill="#E1E1E0" d="M199.739,21.989l-0.86,18c0,0,0.684,0.271,1.291,0.271c0.623,0.002,1.344-0.264,1.344-0.264L200.8,21.993 L199.739,21.989L199.739,21.989z"/>
  863. </g>
  864. <g>
  865. <g>
  866. <g>
  867. <path fill="#A33F89" d="M199.554,21.332l1.375,0.532c0,0,3.658-7.608,3.924-11.733 C202.153,13.397,199.554,21.332,199.554,21.332"/>
  868. <path fill="#A33F89" d="M200.858,21.864l-1.133,0.942c0,0,4.861,6.898,8.332,9.146 C206.521,28.002,200.858,21.864,200.858,21.864"/>
  869. <path fill="#A33F89" d="M199.659,22.852l0.016-1.479c0,0-8.408-0.746-12.363,0.455 C191.321,23.207,199.659,22.852,199.659,22.852"/>
  870. </g>
  871. <g>
  872. <path fill="#E1E1E0" d="M200.864,21.687l3.99-11.709c0,0-0.043,0.717-0.071,0.956c-0.023,0.201-0.104,0.597-0.146,0.794 c-0.037,0.164-0.154,0.647-0.154,0.647s-0.213,0.84-0.295,1.115c-0.278,0.918-0.901,2.729-1.244,3.623 c-0.293,0.758-0.914,2.258-1.241,3c-0.181,0.405-0.732,1.608-0.732,1.608"/>
  873. <path fill="#E1E1E0" d="M199.911,22.834l8.28,9.191c0,0-0.606-0.383-0.805-0.525c-0.16-0.121-0.469-0.384-0.619-0.519 c-0.125-0.108-0.49-0.449-0.49-0.449s-0.633-0.594-0.832-0.801c-0.663-0.688-1.942-2.117-2.557-2.853 c-0.521-0.623-1.525-1.897-2.014-2.547c-0.269-0.352-1.049-1.423-1.049-1.423"/>
  874. <path fill="#E1E1E0" d="M199.532,21.5l-12.365,0.383c0,0,0.688-0.217,0.922-0.271c0.192-0.045,0.594-0.113,0.795-0.141 c0.164-0.024,0.658-0.086,0.658-0.086s0.86-0.096,1.151-0.114c0.953-0.062,2.871-0.117,3.826-0.11 c0.813,0.008,2.435,0.063,3.244,0.107c0.443,0.025,1.766,0.121,1.766,0.121"/>
  875. </g>
  876. </g>
  877. <g>
  878. <path fill="#69B7D0" d="M198.569,21.983c-0.006,0.897,0.752,1.631,1.689,1.635c0.936,0.005,1.697-0.725,1.697-1.62 c0.006-0.898-0.752-1.631-1.688-1.636C199.329,20.361,198.571,21.086,198.569,21.983"/>
  879. </g>
  880. <g>
  881. <path fill="#BEE0EA" d="M199.183,21.987c-0.004,0.56,0.479,1.015,1.078,1.017c0.592,0.004,1.078-0.449,1.084-1.01 c0.002-0.558-0.481-1.015-1.08-1.016C199.671,20.976,199.183,21.428,199.183,21.987"/>
  882. </g>
  883. </g>
  884. </g>
  885. <g>
  886. <g>
  887. <path fill="#E1E1E0" d="M110.938,21.989l-0.86,18c0,0,0.684,0.271,1.289,0.271c0.62,0.002,1.344-0.264,1.344-0.264l-0.713-18.005 L110.938,21.989L110.938,21.989z"/>
  888. </g>
  889. <g>
  890. <g>
  891. <g>
  892. <g>
  893. <path fill="#D97F0E" d="M110.749,21.332l1.379,0.532c0,0,3.651-7.608,3.92-11.733 C113.351,13.397,110.749,21.332,110.749,21.332"/>
  894. <path fill="#D97F0E" d="M112.058,21.864l-1.137,0.942c0,0,4.858,6.898,8.334,9.146 C117.716,28.002,112.058,21.864,112.058,21.864"/>
  895. <path fill="#D97F0E" d="M110.856,22.852l0.021-1.479c0,0-8.408-0.746-12.363,0.455 C102.519,23.207,110.856,22.852,110.856,22.852"/>
  896. </g>
  897. <g>
  898. <path fill="#DDAE76" d="M111.405,21.508l0.9-0.352c0,0,3.611-9.041,3.744-11.104c-0.096,0.115-0.211,0.604-0.324,0.859 c-0.086,0.209-0.197,0.52-0.293,0.735c-0.074,0.174-0.188,0.512-0.246,0.608c-0.094,0.162-0.291,0.75-0.424,1.062 c-0.434,1.022-1.02,2.537-1.432,3.556c-0.388,0.949-0.9,2.232-1.218,3.018c-0.272,0.707-0.655,1.635-0.655,1.635"/>
  899. <path fill="#DDAE76" d="M111.583,22.35l-0.133,0.956c0,0,6.135,7.561,7.87,8.683c-0.055-0.14-0.424-0.479-0.596-0.699 c-0.137-0.178-0.354-0.429-0.498-0.615c-0.113-0.15-0.354-0.416-0.41-0.512c-0.098-0.162-0.514-0.621-0.721-0.889 c-0.682-0.877-1.719-2.128-2.406-2.982c-0.643-0.801-1.512-1.875-2.045-2.533c-0.481-0.582-1.104-1.37-1.104-1.369"/>
  900. <path fill="#DDAE76" d="M110.792,22.174l-0.765-0.713c0,0-8.36-0.096-10.479,0.174c-0.152,0.021,0.043-0.068,0.018-0.07 c-0.032,0.001,0.039-0.008,0.019,0.008c-0.021,0.012,0.135,0.008,0.045,0.034c0.207,0.072,0.869,0.085,1.262,0.13 c1.187,0.125,2.988,0.186,4.275,0.236c1.155,0.048,2.688,0.086,3.651,0.105c0.877,0.012,1.976,0.041,1.976,0.041"/>
  901. </g>
  902. <g>
  903. <path fill="#E1E1E0" d="M112.062,21.687l3.99-11.709c0,0-0.039,0.717-0.072,0.956c-0.024,0.201-0.102,0.597-0.146,0.796 c-0.033,0.162-0.152,0.646-0.152,0.646s-0.211,0.84-0.295,1.116c-0.277,0.917-0.9,2.729-1.244,3.622 c-0.293,0.758-0.914,2.258-1.242,3c-0.18,0.406-0.729,1.608-0.729,1.608"/>
  904. <path fill="#E1E1E0" d="M111.108,22.836l8.279,9.189c0,0-0.607-0.383-0.801-0.525c-0.162-0.121-0.471-0.384-0.623-0.519 c-0.123-0.108-0.49-0.449-0.49-0.449s-0.629-0.594-0.83-0.801c-0.664-0.688-1.94-2.117-2.555-2.853 c-0.521-0.623-1.525-1.897-2.019-2.547c-0.266-0.352-1.047-1.423-1.047-1.423"/>
  905. <path fill="#E1E1E0" d="M110.729,21.5l-12.36,0.383c0,0,0.684-0.217,0.918-0.271c0.196-0.045,0.598-0.113,0.797-0.141 c0.16-0.024,0.66-0.086,0.66-0.086s0.86-0.096,1.147-0.114c0.953-0.062,2.871-0.117,3.826-0.11 c0.813,0.008,2.436,0.063,3.246,0.107c0.438,0.025,1.764,0.121,1.764,0.121"/>
  906. </g>
  907. </g>
  908. </g>
  909. <g>
  910. <path fill="#69B7D0" d="M109.767,21.983c-0.006,0.897,0.752,1.632,1.687,1.635c0.938,0.005,1.696-0.725,1.702-1.62 c0.005-0.898-0.752-1.631-1.688-1.636C110.53,20.361,109.769,21.086,109.767,21.983"/>
  911. </g>
  912. <g>
  913. <path fill="#BEE0EA" d="M110.38,21.987c-0.004,0.56,0.477,1.015,1.078,1.019c0.592,0.002,1.08-0.451,1.084-1.012 c0-0.558-0.484-1.015-1.078-1.016C110.866,20.976,110.382,21.428,110.38,21.987"/>
  914. </g>
  915. </g>
  916. </g>
  917. <g>
  918. <g>
  919. <path fill="#E1E1E0" d="M60.702,21.989l-0.861,18c0,0,0.684,0.271,1.291,0.271c0.621,0.002,1.342-0.264,1.342-0.264 l-0.713-18.005L60.702,21.989L60.702,21.989z"/>
  920. </g>
  921. <g>
  922. <g>
  923. <g>
  924. <path fill="#1EA23E" d="M60.517,21.332l1.377,0.532c0,0,3.654-7.608,3.918-11.733C63.114,13.397,60.517,21.332,60.517,21.332"/>
  925. <path fill="#1EA23E" d="M61.821,21.864l-1.135,0.942c0,0,4.861,6.898,8.332,9.146C67.483,28.002,61.821,21.864,61.821,21.864"/>
  926. <path fill="#1EA23E" d="M60.624,22.852l0.014-1.479c0,0-8.408-0.746-12.365,0.455C52.28,23.207,60.624,22.852,60.624,22.852"/>
  927. </g>
  928. <g>
  929. <path fill="#E1E1E0" d="M61.825,21.687l3.989-11.709c0,0-0.043,0.717-0.069,0.956c-0.025,0.201-0.105,0.597-0.146,0.794 c-0.037,0.164-0.154,0.647-0.154,0.647s-0.213,0.84-0.295,1.115c-0.28,0.918-0.897,2.729-1.244,3.623 c-0.29,0.758-0.911,2.258-1.241,3c-0.181,0.405-0.73,1.608-0.73,1.608"/>
  930. <path fill="#E1E1E0" d="M60.872,22.834l8.28,9.191c0,0-0.606-0.383-0.803-0.525c-0.16-0.121-0.471-0.384-0.623-0.519 c-0.123-0.108-0.488-0.449-0.488-0.449s-0.633-0.594-0.831-0.801c-0.662-0.688-1.941-2.117-2.558-2.853 c-0.518-0.623-1.524-1.897-2.016-2.547c-0.269-0.352-1.049-1.423-1.049-1.423"/>
  931. <path fill="#E1E1E0" d="M60.491,21.5L48.13,21.883c0,0,0.686-0.217,0.92-0.271c0.197-0.045,0.594-0.113,0.795-0.141 c0.166-0.024,0.662-0.086,0.662-0.086s0.856-0.096,1.147-0.114c0.953-0.062,2.867-0.117,3.828-0.11 c0.813,0.008,2.435,0.063,3.244,0.107c0.439,0.025,1.762,0.121,1.762,0.121"/>
  932. </g>
  933. </g>
  934. <g>
  935. <path fill="#69B7D0" d="M59.53,21.983c-0.004,0.897,0.753,1.631,1.688,1.635c0.936,0.005,1.697-0.725,1.701-1.62 c0.002-0.898-0.754-1.631-1.689-1.636C60.294,20.361,59.532,21.086,59.53,21.983"/>
  936. </g>
  937. <g>
  938. <path fill="#BEE0EA" d="M60.144,21.987c-0.002,0.56,0.48,1.015,1.076,1.017c0.596,0.004,1.082-0.449,1.086-1.01 c0-0.558-0.479-1.015-1.078-1.016C60.632,20.976,60.146,21.428,60.144,21.987"/>
  939. </g>
  940. </g>
  941. </g>
  942. <g>
  943. <g>
  944. <path fill="#E1E1E0" d="M15.78,22.209l-0.86,18c0,0,0.682,0.27,1.289,0.271c0.623,0.002,1.344-0.264,1.344-0.264L16.841,22.21 L15.78,22.209L15.78,22.209z"/>
  945. </g>
  946. <g>
  947. <g>
  948. <g>
  949. <path fill="#454995" d="M15.591,21.549l1.377,0.533c0,0,3.656-7.607,3.922-11.733C18.194,13.616,15.591,21.549,15.591,21.549"/>
  950. <path fill="#454995" d="M16.899,22.082l-1.137,0.943c0,0,4.859,6.898,8.334,9.145C22.56,28.221,16.899,22.082,16.899,22.082"/>
  951. <path fill="#454995" d="M15.7,23.069l0.012-1.478c0,0-8.406-0.748-12.361,0.453C7.358,23.424,15.7,23.069,15.7,23.069"/>
  952. </g>
  953. <g>
  954. <path fill="#E1E1E0" d="M16.903,21.905l3.986-11.711c0,0-0.037,0.72-0.068,0.957c-0.021,0.201-0.102,0.599-0.145,0.795 c-0.039,0.163-0.154,0.649-0.154,0.649s-0.217,0.841-0.297,1.115c-0.279,0.916-0.899,2.729-1.244,3.621 c-0.291,0.758-0.914,2.258-1.239,3c-0.179,0.405-0.734,1.607-0.734,1.607"/>
  955. <path fill="#E1E1E0" d="M15.95,23.053l8.278,9.19c0,0-0.606-0.383-0.799-0.526c-0.166-0.12-0.475-0.381-0.625-0.518 c-0.123-0.109-0.49-0.449-0.49-0.449s-0.631-0.594-0.83-0.802c-0.664-0.688-1.942-2.114-2.555-2.854 c-0.522-0.623-1.527-1.896-2.018-2.545c-0.269-0.354-1.047-1.424-1.047-1.424"/>
  956. <path fill="#E1E1E0" d="M15.573,21.717L3.208,22.101c0,0,0.684-0.218,0.922-0.271c0.193-0.048,0.596-0.113,0.793-0.144 c0.166-0.022,0.66-0.084,0.66-0.084s0.86-0.097,1.146-0.116c0.959-0.061,2.873-0.115,3.83-0.107 c0.813,0.006,2.435,0.063,3.246,0.106c0.441,0.024,1.762,0.121,1.762,0.121"/>
  957. </g>
  958. </g>
  959. <g>
  960. <path fill="#69B7D0" d="M14.606,22.205c-0.004,0.896,0.752,1.629,1.689,1.631c0.936,0.006,1.697-0.725,1.701-1.621 c0.004-0.898-0.752-1.627-1.689-1.633C15.37,20.58,14.61,21.304,14.606,22.205"/>
  961. </g>
  962. <g>
  963. <path fill="#BEE0EA" d="M15.22,22.205c-0.002,0.56,0.48,1.016,1.076,1.019c0.594,0.003,1.082-0.45,1.084-1.009 c0.004-0.561-0.479-1.015-1.076-1.02C15.71,21.194,15.224,21.646,15.22,22.205"/>
  964. </g>
  965. </g>
  966. </g>
  967. <g>
  968. <g>
  969. <path fill="#E1E1E0" d="M246.126,21.989l-0.861,18c0,0,0.685,0.271,1.291,0.271c0.619,0.002,1.342-0.264,1.342-0.264 l-0.713-18.005L246.126,21.989L246.126,21.989z"/>
  970. </g>
  971. <g>
  972. <g>
  973. <g>
  974. <path fill="#FFFFFF" d="M245.937,21.332l1.379,0.532c0,0,3.656-7.608,3.922-11.733 C248.54,13.397,245.937,21.332,245.937,21.332"/>
  975. <path fill="#FFFFFF" d="M247.245,21.864l-1.138,0.942c0,0,4.863,6.898,8.334,9.146 C252.906,28.002,247.245,21.864,247.245,21.864"/>
  976. <path fill="#FFFFFF" d="M246.046,22.852l0.016-1.479c0,0-8.406-0.746-12.362,0.455 C237.704,23.207,246.046,22.852,246.046,22.852"/>
  977. </g>
  978. <g>
  979. <path fill="#E1E1E0" d="M247.249,21.687l3.989-11.709c0,0-0.043,0.717-0.071,0.956c-0.023,0.201-0.104,0.597-0.146,0.794 c-0.035,0.164-0.153,0.647-0.153,0.647s-0.209,0.84-0.294,1.115c-0.278,0.918-0.897,2.729-1.241,3.623 c-0.293,0.758-0.916,2.258-1.246,3c-0.178,0.405-0.73,1.608-0.73,1.608"/>
  980. <path fill="#E1E1E0" d="M246.298,22.834l8.279,9.191c0,0-0.607-0.383-0.802-0.525c-0.164-0.121-0.471-0.384-0.625-0.519 c-0.123-0.108-0.489-0.449-0.489-0.449s-0.629-0.594-0.83-0.802c-0.666-0.688-1.943-2.116-2.558-2.852 c-0.52-0.623-1.524-1.897-2.014-2.547c-0.266-0.352-1.047-1.423-1.047-1.423"/>
  981. <path fill="#E1E1E0" d="M245.921,21.5l-12.369,0.383c0,0,0.687-0.217,0.922-0.271c0.197-0.045,0.598-0.113,0.795-0.141 c0.164-0.024,0.66-0.086,0.66-0.086s0.863-0.096,1.15-0.114c0.957-0.062,2.871-0.117,3.825-0.11 c0.813,0.008,2.437,0.063,3.246,0.107c0.439,0.025,1.765,0.121,1.765,0.121"/>
  982. </g>
  983. </g>
  984. <g>
  985. <path fill="#69B7D0" d="M244.954,21.983c-0.004,0.897,0.752,1.631,1.688,1.635c0.937,0.005,1.697-0.725,1.701-1.62 c0.004-0.898-0.754-1.631-1.691-1.636C245.716,20.361,244.958,21.086,244.954,21.983"/>
  986. </g>
  987. <g>
  988. <path fill="#BEE0EA" d="M245.569,21.987c-0.004,0.56,0.478,1.015,1.074,1.017c0.596,0.004,1.082-0.449,1.084-1.01 c0.002-0.558-0.479-1.015-1.078-1.016C246.058,20.976,245.569,21.428,245.569,21.987"/>
  989. </g>
  990. </g>
  991. </g>
  992. <g>
  993. <g>
  994. <path fill="#E1E1E0" d="M152.851,21.996l-0.863,18c0,0,0.688,0.27,1.293,0.271c0.621,0.002,1.345-0.264,1.345-0.264 l-0.715-18.006L152.851,21.996L152.851,21.996z"/>
  995. </g>
  996. <g>
  997. <g>
  998. <g>
  999. <path fill="#B62F2D" d="M152.661,21.338l1.381,0.531c0,0,3.651-7.606,3.92-11.731 C155.265,13.403,152.661,21.338,152.661,21.338"/>
  1000. <path fill="#B62F2D" d="M153.972,21.871l-1.137,0.942c0,0,4.86,6.897,8.334,9.146 C159.634,28.008,153.972,21.871,153.972,21.871"/>
  1001. <path fill="#B62F2D" d="M152.772,22.856l0.015-1.476c0,0-8.408-0.748-12.363,0.453 C144.431,23.211,152.772,22.856,152.772,22.856"/>
  1002. </g>
  1003. <g>
  1004. <path fill="#E1E1E0" d="M153.976,21.692l3.99-11.711c0,0-0.039,0.72-0.072,0.958c-0.024,0.201-0.104,0.598-0.147,0.794 c-0.035,0.162-0.152,0.647-0.152,0.647s-0.207,0.841-0.295,1.117c-0.277,0.916-0.9,2.729-1.242,3.621 c-0.293,0.758-0.914,2.258-1.242,3c-0.178,0.404-0.729,1.609-0.729,1.609"/>
  1005. <path fill="#E1E1E0" d="M153.022,22.84l8.281,9.191c0,0-0.609-0.385-0.801-0.527c-0.164-0.119-0.476-0.383-0.623-0.516 c-0.123-0.111-0.492-0.451-0.492-0.451s-0.629-0.594-0.83-0.802c-0.664-0.688-1.94-2.116-2.559-2.851 c-0.519-0.627-1.523-1.9-2.015-2.549c-0.264-0.351-1.047-1.422-1.047-1.422"/>
  1006. <path fill="#E1E1E0" d="M152.644,21.504l-12.365,0.384c0,0,0.688-0.216,0.925-0.271c0.194-0.047,0.594-0.115,0.795-0.144 c0.162-0.023,0.66-0.085,0.66-0.085s0.858-0.096,1.147-0.115c0.953-0.061,2.871-0.116,3.828-0.107 c0.811,0.006,2.434,0.062,3.244,0.105c0.438,0.023,1.764,0.121,1.764,0.121"/>
  1007. </g>
  1008. </g>
  1009. <g>
  1010. <path fill="#69B7D0" d="M151.679,21.99c-0.002,0.896,0.754,1.631,1.688,1.635c0.938,0.002,1.698-0.726,1.702-1.621 c0-0.898-0.756-1.629-1.688-1.633C152.442,20.365,151.681,21.092,151.679,21.99"/>
  1011. </g>
  1012. <g>
  1013. <path fill="#BEE0EA" d="M152.292,21.993c0,0.558,0.481,1.015,1.076,1.017c0.598,0.003,1.082-0.449,1.086-1.01 c0.002-0.558-0.482-1.013-1.076-1.016C152.782,20.981,152.298,21.433,152.292,21.993"/>
  1014. </g>
  1015. </g>
  1016. </g>
  1017. </g>
  1018. <g id="arrow">
  1019. <!--这两个点位缺失返回值-->
  1020. <rect id="305" x="1105.84" y="635.488" fill="#CA201D" width="27.348" height="16.294"/>
  1021. <rect id="105" x="1016.34" y="635.488" fill="#CA201D" width="27.348" height="16.294"/>
  1022. <!--这两个点位缺失返回值-->
  1023. <rect id="sbq5j302" x="1105.84" y="263.488" fill="#CA201D" width="27.348" height="16.294"/>
  1024. <rect id="sbq6j353" x="1150.34" y="755.391" fill="#CA201D" width="27.348" height="16.294"/>
  1025. <rect id="sbq6j352" x="1150.34" y="635.488" fill="#CA201D" width="27.348" height="16.294"/>
  1026. <rect id="sbq6j151" x="970.34" y="635.488" fill="#CA201D" width="27.348" height="16.294"/>
  1027. <rect id="sbq6j351" x="1150.34" y="505.716" fill="#CA201D" width="27.348" height="16.294"/>
  1028. <rect id="sbq5j332" x="1141.34" y="383.391" fill="#CA201D" width="27.348" height="16.294"/>
  1029. <rect id="sbq5j102" x="1016.34" y="263.488" fill="#CA201D" width="27.348" height="16.294"/>
  1030. <rect id="sbq5j121" x="970.34" y="263.488" fill="#CA201D" width="27.348" height="16.294"/>
  1031. <rect id="sbq5j331" x="1141.34" y="133.716" fill="#CA201D" width="27.348" height="16.294"/>
  1032. <rect id="sbq5j323" x="622.237" y="754.391" fill="#CA201D" width="27.348" height="16.294"/>
  1033. <rect id="sbq5j322" x="622.237" y="634.488" fill="#CA201D" width="27.348" height="16.294"/>
  1034. <rect id="sbq5j302" x="661.737" y="634.488" fill="#CA201D" width="27.348" height="16.294"/>
  1035. <rect id="sbq5j102" x="753.737" y="634.488" fill="#CA201D" width="27.348" height="16.294"/>
  1036. <rect id="sbq5j121" x="801.737" y="634.488" fill="#CA201D" width="27.348" height="16.294"/>
  1037. <rect id="sbq5j321" x="622.237" y="504.716" fill="#CA201D" width="27.348" height="16.294"/>
  1038. <rect id="sbqdq314" x="622.237" y="386.946" fill="#CA201D" width="27.348" height="16.294"/>
  1039. <rect id="sbqdq313" x="622.237" y="259.711" fill="#CA201D" width="27.348" height="16.294"/>
  1040. <rect id="sbqdq1h301" x="661.737" y="259.711" fill="#CA201D" width="27.348" height="16.294"/>
  1041. <rect id="sbqdq1h101" x="753.737" y="259.711" fill="#CA201D" width="27.348" height="16.294"/>
  1042. <rect id="sbqdq111" x="801.737" y="259.711" fill="#CA201D" width="27.348" height="16.294"/>
  1043. <rect id="sbqdq312" x="622.237" y="129.938" fill="#CA201D" width="27.348" height="16.294"/>
  1044. </g>
  1045. <g id="fan">
  1046. <g id="_x23_34">
  1047. <g>
  1048. <path fill="#DFDFDD" d="M22.764,451.388l-1.377,28.777c0,0,1.094,0.43,2.063,0.434c0.995,0.002,2.146-0.422,2.146-0.422 l-1.139-28.783L22.764,451.388L22.764,451.388z"/>
  1049. </g>
  1050. <g>
  1051. <g transform="rotate(91.5214 23 451.384)">
  1052. <g>
  1053. <path fill="#3E4484" d="M22.463,450.336l2.203,0.854c0,0,5.844-12.161,6.27-18.758 C26.621,437.656,22.463,450.336,22.463,450.336"/>
  1054. <path fill="#3E4484" d="M24.553,451.187l-1.813,1.513c0,0,7.769,11.022,13.319,14.616 C33.604,460.999,24.553,451.187,24.553,451.187"/>
  1055. <path fill="#3E4484" d="M22.639,452.767l0.021-2.36c0,0-13.44-1.197-19.767,0.728C9.303,453.336,22.639,452.767,22.639,452.767 "/>
  1056. </g>
  1057. <g>
  1058. <path fill="#DFDFDD" d="M24.559,450.906l6.377-18.722c0,0-0.063,1.148-0.108,1.529c-0.041,0.32-0.166,0.957-0.235,1.271 c-0.06,0.26-0.246,1.034-0.246,1.034s-0.34,1.343-0.472,1.784c-0.446,1.469-1.438,4.358-1.987,5.789 c-0.467,1.211-1.463,3.608-1.984,4.797c-0.282,0.646-1.172,2.569-1.172,2.569"/>
  1059. <path fill="#DFDFDD" d="M23.037,452.742l13.239,14.69c0,0-0.975-0.61-1.28-0.844c-0.263-0.189-0.754-0.607-0.996-0.824 c-0.198-0.174-0.786-0.717-0.786-0.717s-1.009-0.953-1.322-1.287c-1.065-1.102-3.111-3.379-4.092-4.557 c-0.828-0.996-2.438-3.033-3.22-4.07c-0.429-0.563-1.675-2.275-1.675-2.275"/>
  1060. <path fill="#DFDFDD" d="M22.434,450.601L2.666,451.22c0,0,1.094-0.352,1.473-0.438c0.313-0.072,0.951-0.184,1.271-0.229 c0.267-0.037,1.058-0.136,1.058-0.136s1.377-0.155,1.838-0.186c1.526-0.101,4.59-0.188,6.121-0.181 c1.295,0.017,3.889,0.104,5.184,0.175c0.705,0.044,2.82,0.194,2.82,0.194"/>
  1061. </g>
  1062. <animateTransform restart="always" from="0 23 451.384" dur="4s" to="359 23 451.384" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  1063. </animateTransform>
  1064. </g>
  1065. <g>
  1066. <path fill="#63A5BA" d="M20.893,451.382c-0.01,1.434,1.199,2.604,2.695,2.609c1.496,0.004,2.715-1.158,2.721-2.59 c0.006-1.439-1.203-2.604-2.703-2.613C22.11,448.788,20.895,449.943,20.893,451.382"/>
  1067. </g>
  1068. <g>
  1069. <path fill="#B6D6DE" d="M21.871,451.384c-0.002,0.896,0.769,1.621,1.722,1.627c0.95,0.002,1.733-0.719,1.733-1.613 c0.004-0.895-0.769-1.618-1.722-1.625C22.651,449.772,21.875,450.494,21.871,451.384"/>
  1070. </g>
  1071. </g>
  1072. </g>
  1073. <g id="_x23_35">
  1074. <g>
  1075. <path fill="#DFDFDD" d="M64.987,451.388l-1.379,28.777c0,0,1.095,0.43,2.063,0.434c0.996,0.002,2.147-0.422,2.147-0.422 l-1.139-28.783L64.987,451.388L64.987,451.388z"/>
  1076. </g>
  1077. <g>
  1078. <g transform="rotate(91.5214 66 451.384)">
  1079. <g>
  1080. <path fill="#3E4484" d="M64.686,450.336l2.203,0.854c0,0,5.844-12.161,6.269-18.758 C68.842,437.656,64.686,450.336,64.686,450.336"/>
  1081. <path fill="#3E4484" d="M66.776,451.187l-1.813,1.513c0,0,7.766,11.022,13.316,14.616 C75.827,460.999,66.776,451.187,66.776,451.187"/>
  1082. <path fill="#3E4484" d="M64.862,452.767l0.021-2.36c0,0-13.441-1.197-19.767,0.728 C51.526,453.336,64.862,452.767,64.862,452.767"/>
  1083. </g>
  1084. <g>
  1085. <path fill="#DFDFDD" d="M66.782,450.906l6.377-18.722c0,0-0.063,1.148-0.11,1.529c-0.039,0.32-0.166,0.957-0.236,1.271 c-0.057,0.26-0.244,1.034-0.244,1.034s-0.34,1.343-0.471,1.784c-0.447,1.469-1.44,4.358-1.99,5.789 c-0.465,1.211-1.461,3.608-1.982,4.797c-0.283,0.646-1.171,2.569-1.171,2.569"/>
  1086. <path fill="#DFDFDD" d="M65.26,452.742l13.24,14.69c0,0-0.977-0.61-1.283-0.844c-0.263-0.189-0.752-0.607-0.996-0.824 c-0.197-0.174-0.785-0.717-0.785-0.717s-1.008-0.953-1.326-1.287c-1.063-1.102-3.108-3.379-4.088-4.557 c-0.828-0.996-2.436-3.033-3.221-4.07c-0.426-0.563-1.674-2.275-1.674-2.275"/>
  1087. <path fill="#DFDFDD" d="M64.657,450.601l-19.771,0.619c0,0,1.096-0.352,1.475-0.438c0.313-0.072,0.949-0.184,1.271-0.229 c0.266-0.037,1.057-0.136,1.057-0.136s1.377-0.155,1.836-0.186c1.527-0.101,4.588-0.188,6.123-0.181 c1.297,0.017,3.89,0.104,5.186,0.175c0.705,0.044,2.818,0.194,2.818,0.194"/>
  1088. </g>
  1089. <animateTransform restart="always" from="0 66 451.384" dur="4s" to="359 66 451.384" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  1090. </animateTransform>
  1091. </g>
  1092. <g>
  1093. <path fill="#63A5BA" d="M63.112,451.382c-0.006,1.434,1.203,2.604,2.697,2.609c1.5,0.004,2.717-1.158,2.724-2.59 c0.006-1.439-1.203-2.604-2.703-2.613C64.332,448.788,63.118,449.943,63.112,451.382"/>
  1094. </g>
  1095. <g>
  1096. <path fill="#B6D6DE" d="M64.094,451.384c-0.002,0.896,0.768,1.621,1.721,1.627c0.951,0.002,1.732-0.719,1.734-1.613 c0.004-0.895-0.771-1.618-1.724-1.625C64.875,449.772,64.098,450.494,64.094,451.384"/>
  1097. </g>
  1098. </g>
  1099. </g>
  1100. <g id="_x23_36">
  1101. <g>
  1102. <path fill="#DFDFDD" d="M115.482,451.388l-1.379,28.777c0,0,1.097,0.43,2.063,0.434c0.995,0.002,2.146-0.422,2.146-0.422 l-1.139-28.783L115.482,451.388L115.482,451.388z"/>
  1103. </g>
  1104. <g>
  1105. <g transform="rotate(91.5214 116 451.384)">
  1106. <g>
  1107. <path fill="#3E4484" d="M115.18,450.336l2.205,0.854c0,0,5.842-12.161,6.268-18.758 C119.34,437.656,115.18,450.336,115.18,450.336"/>
  1108. <path fill="#3E4484" d="M117.271,451.187l-1.813,1.513c0,0,7.77,11.022,13.32,14.616 C126.32,460.999,117.271,451.187,117.271,451.187"/>
  1109. <path fill="#3E4484" d="M115.357,452.767l0.021-2.36c0,0-13.44-1.197-19.768,0.728 C102.02,453.336,115.357,452.767,115.357,452.767"/>
  1110. </g>
  1111. <g>
  1112. <path fill="#DFDFDD" d="M117.277,450.906l6.377-18.722c0,0-0.063,1.148-0.107,1.529c-0.041,0.32-0.166,0.957-0.238,1.271 c-0.057,0.26-0.244,1.034-0.244,1.034s-0.34,1.343-0.473,1.784c-0.445,1.469-1.439,4.358-1.988,5.789 c-0.465,1.211-1.461,3.608-1.983,4.797c-0.283,0.646-1.17,2.569-1.17,2.569"/>
  1113. <path fill="#DFDFDD" d="M115.756,452.742l13.24,14.69c0,0-0.979-0.61-1.283-0.844c-0.263-0.189-0.752-0.607-0.996-0.824 c-0.197-0.174-0.785-0.717-0.785-0.717s-1.008-0.953-1.324-1.287c-1.064-1.102-3.11-3.379-4.092-4.557 c-0.828-0.996-2.436-3.033-3.219-4.07c-0.426-0.563-1.674-2.275-1.674-2.275"/>
  1114. <path fill="#DFDFDD" d="M115.152,450.601l-19.767,0.619c0,0,1.094-0.352,1.471-0.438c0.313-0.072,0.953-0.184,1.271-0.229 c0.266-0.037,1.057-0.136,1.057-0.136s1.374-0.155,1.835-0.186c1.527-0.101,4.588-0.188,6.123-0.181 c1.295,0.017,3.889,0.104,5.185,0.175c0.704,0.044,2.819,0.194,2.819,0.194"/>
  1115. </g>
  1116. <animateTransform restart="always" from="0 116 451.384" dur="4s" to="359 116 451.384" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  1117. </animateTransform>
  1118. </g>
  1119. <g>
  1120. <path fill="#63A5BA" d="M113.609,451.382c-0.008,1.434,1.201,2.604,2.695,2.609c1.498,0.004,2.715-1.158,2.721-2.59 c0.006-1.439-1.203-2.604-2.7-2.613C114.828,448.788,113.613,449.943,113.609,451.382"/>
  1121. </g>
  1122. <g>
  1123. <path fill="#B6D6DE" d="M114.588,451.384c-0.002,0.896,0.77,1.621,1.721,1.627c0.953,0.002,1.734-0.719,1.736-1.613 c0.004-0.895-0.771-1.618-1.725-1.625C115.369,449.772,114.592,450.494,114.588,451.384"/>
  1124. </g>
  1125. </g>
  1126. </g>
  1127. <g id="_x23_58">
  1128. <g>
  1129. <path fill="#DFDFDD" d="M116.999,695.891l-1.377,28.778c0,0,1.094,0.432,2.063,0.434c0.996,0.005,2.148-0.421,2.148-0.421 l-1.14-28.781L116.999,695.891L116.999,695.891z"/>
  1130. </g>
  1131. <g>
  1132. <g transform="rotate(91.5214 118 695.888)">
  1133. <g>
  1134. <path fill="#3E4484" d="M116.701,694.839l2.202,0.854c0,0,5.843-12.162,6.269-18.757 C120.857,682.158,116.701,694.839,116.701,694.839"/>
  1135. <path fill="#3E4484" d="M118.79,695.693l-1.814,1.508c0,0,7.771,11.025,13.322,14.619 C127.839,705.502,118.79,695.693,118.79,695.693"/>
  1136. <path fill="#3E4484" d="M116.876,697.273l0.02-2.363c0,0-13.438-1.197-19.766,0.729 C103.54,697.838,116.876,697.273,116.876,697.273"/>
  1137. </g>
  1138. <g>
  1139. <path fill="#DFDFDD" d="M118.796,695.41l6.377-18.719c0,0-0.063,1.146-0.111,1.524c-0.039,0.322-0.164,0.959-0.233,1.273 c-0.06,0.26-0.246,1.035-0.246,1.035s-0.34,1.344-0.474,1.783c-0.444,1.469-1.438,4.358-1.987,5.788 c-0.466,1.212-1.461,3.607-1.984,4.796c-0.283,0.649-1.17,2.571-1.17,2.571"/>
  1140. <path fill="#DFDFDD" d="M117.273,697.246l13.24,14.689c0,0-0.977-0.609-1.281-0.843c-0.264-0.188-0.754-0.606-0.994-0.823 c-0.198-0.175-0.786-0.718-0.786-0.718s-1.011-0.953-1.324-1.287c-1.064-1.102-3.111-3.379-4.092-4.559 c-0.826-0.994-2.438-3.031-3.222-4.068c-0.426-0.563-1.672-2.274-1.672-2.274"/>
  1141. <path fill="#DFDFDD" d="M116.671,695.107l-19.769,0.617c0,0,1.095-0.353,1.472-0.438c0.313-0.074,0.951-0.183,1.27-0.229 c0.269-0.036,1.06-0.136,1.06-0.136s1.375-0.155,1.838-0.186c1.524-0.1,4.588-0.188,6.121-0.179 c1.295,0.013,3.887,0.104,5.184,0.175c0.707,0.041,2.82,0.192,2.82,0.192"/>
  1142. </g>
  1143. <animateTransform restart="always" from="0 118 695.888" dur="4s" to="359 118 695.888" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  1144. </animateTransform>
  1145. </g>
  1146. <g>
  1147. <path fill="#63A5BA" d="M115.128,695.884c-0.008,1.437,1.201,2.605,2.694,2.611c1.498,0.002,2.716-1.158,2.722-2.59 c0.006-1.441-1.203-2.604-2.701-2.613C116.347,693.292,115.132,694.447,115.128,695.884"/>
  1148. </g>
  1149. <g>
  1150. <path fill="#B6D6DE" d="M116.107,695.888c-0.002,0.896,0.771,1.621,1.724,1.628c0.95,0.002,1.731-0.72,1.733-1.613 c0.002-0.895-0.77-1.619-1.723-1.627C116.888,694.275,116.109,694.997,116.107,695.888"/>
  1151. </g>
  1152. </g>
  1153. </g>
  1154. <g id="_x23_57">
  1155. <g>
  1156. <path fill="#DFDFDD" d="M70.796,695.891l-1.379,28.778c0,0,1.096,0.432,2.063,0.434c0.998,0.005,2.148-0.421,2.148-0.421 L72.488,695.9L70.796,695.891L70.796,695.891z"/>
  1157. </g>
  1158. <g>
  1159. <g transform="rotate(91.5214 71 695.888)">
  1160. <g>
  1161. <path fill="#3E4484" d="M70.494,694.839l2.202,0.854c0,0,5.843-12.162,6.271-18.757 C74.652,682.158,70.494,694.839,70.494,694.839"/>
  1162. <path fill="#3E4484" d="M72.585,695.693l-1.813,1.508c0,0,7.769,11.025,13.32,14.619 C81.636,705.502,72.585,695.693,72.585,695.693"/>
  1163. <path fill="#3E4484" d="M70.669,697.273l0.021-2.363c0,0-13.438-1.197-19.766,0.729 C57.333,697.838,70.669,697.273,70.669,697.273"/>
  1164. </g>
  1165. <g>
  1166. <path fill="#DFDFDD" d="M72.593,695.41l6.377-18.719c0,0-0.063,1.146-0.111,1.524c-0.041,0.322-0.164,0.959-0.235,1.273 c-0.06,0.26-0.246,1.035-0.246,1.035s-0.34,1.344-0.474,1.783c-0.442,1.469-1.438,4.358-1.987,5.788 c-0.465,1.212-1.461,3.607-1.982,4.796c-0.283,0.649-1.17,2.571-1.17,2.571"/>
  1167. <path fill="#DFDFDD" d="M71.07,697.246l13.238,14.689c0,0-0.975-0.609-1.281-0.843c-0.264-0.188-0.756-0.606-0.996-0.823 c-0.196-0.175-0.784-0.718-0.784-0.718s-1.011-0.953-1.322-1.287c-1.066-1.102-3.111-3.379-4.094-4.559 c-0.828-0.994-2.437-3.031-3.22-4.068c-0.426-0.563-1.674-2.274-1.674-2.274"/>
  1168. <path fill="#DFDFDD" d="M70.468,695.107l-19.771,0.617c0,0,1.097-0.353,1.474-0.438c0.313-0.074,0.949-0.183,1.271-0.229 c0.267-0.036,1.056-0.136,1.056-0.136s1.377-0.155,1.838-0.186c1.524-0.1,4.59-0.188,6.123-0.179 c1.293,0.013,3.887,0.104,5.184,0.175c0.707,0.041,2.816,0.192,2.816,0.192"/>
  1169. </g>
  1170. <animateTransform restart="always" from="0 71 695.888" dur="4s" to="359 71 695.888" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  1171. </animateTransform>
  1172. </g>
  1173. <g>
  1174. <path fill="#63A5BA" d="M68.925,695.884c-0.01,1.437,1.199,2.605,2.693,2.611c1.498,0.002,2.715-1.158,2.723-2.59 c0.006-1.441-1.203-2.604-2.701-2.613C70.142,693.292,68.927,694.447,68.925,695.884"/>
  1175. </g>
  1176. <g>
  1177. <path fill="#B6D6DE" d="M69.902,695.888c-0.004,0.896,0.769,1.621,1.72,1.628c0.953,0.002,1.735-0.72,1.735-1.613 c0.004-0.896-0.77-1.619-1.721-1.627C70.681,694.275,69.904,694.997,69.902,695.888"/>
  1178. </g>
  1179. </g>
  1180. </g>
  1181. <g id="_x23_56">
  1182. <g>
  1183. <path fill="#DFDFDD" d="M20.734,699.863l-1.377,28.777c0,0,1.097,0.432,2.063,0.434c0.996,0.005,2.146-0.42,2.146-0.42 l-1.139-28.782L20.734,699.863L20.734,699.863z"/>
  1184. </g>
  1185. <g>
  1186. <g transform="rotate(91.5214 21 699.861)">
  1187. <g>
  1188. <path fill="#3E4484" d="M20.433,698.812l2.203,0.854c0,0,5.844-12.162,6.268-18.757 C24.591,686.129,20.433,698.812,20.433,698.812"/>
  1189. <path fill="#3E4484" d="M22.525,699.665l-1.813,1.508c0,0,7.768,11.026,13.32,14.619 C31.574,709.473,22.525,699.665,22.525,699.665"/>
  1190. <path fill="#3E4484" d="M20.611,701.245l0.021-2.363c0,0-13.439-1.197-19.766,0.729 C7.273,701.809,20.611,701.245,20.611,701.245"/>
  1191. </g>
  1192. <g>
  1193. <path fill="#DFDFDD" d="M22.531,699.38l6.378-18.719c0,0-0.063,1.146-0.109,1.525c-0.039,0.321-0.166,0.959-0.236,1.272 c-0.057,0.26-0.246,1.035-0.246,1.035s-0.338,1.344-0.471,1.785c-0.447,1.467-1.438,4.356-1.988,5.788 c-0.467,1.212-1.463,3.605-1.983,4.796c-0.283,0.647-1.172,2.569-1.172,2.569"/>
  1194. <path fill="#DFDFDD" d="M21.007,701.216l13.24,14.69c0,0-0.976-0.61-1.281-0.842c-0.264-0.19-0.754-0.608-0.996-0.824 c-0.199-0.174-0.785-0.717-0.785-0.717s-1.008-0.953-1.326-1.287c-1.063-1.104-3.108-3.379-4.09-4.561 c-0.828-0.994-2.438-3.029-3.219-4.066c-0.428-0.563-1.674-2.276-1.674-2.276"/>
  1195. <path fill="#DFDFDD" d="M20.406,699.079l-19.771,0.618c0,0,1.094-0.354,1.475-0.438c0.312-0.074,0.949-0.182,1.271-0.228 c0.264-0.036,1.055-0.137,1.055-0.137s1.377-0.154,1.84-0.186c1.525-0.099,4.588-0.187,6.123-0.179 c1.293,0.013,3.888,0.104,5.183,0.175c0.707,0.041,2.819,0.194,2.819,0.194"/>
  1196. </g>
  1197. <animateTransform restart="always" from="0 21 699.861" dur="4s" to="359 21 699.861" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  1198. </animateTransform>
  1199. </g>
  1200. <g>
  1201. <path fill="#63A5BA" d="M18.861,699.857c-0.006,1.435,1.201,2.604,2.695,2.609c1.498,0.002,2.715-1.158,2.721-2.59 c0.007-1.44-1.2-2.604-2.7-2.613C20.081,697.262,18.869,698.418,18.861,699.857"/>
  1202. </g>
  1203. <g>
  1204. <path fill="#B6D6DE" d="M19.841,699.861c-0.004,0.894,0.771,1.621,1.721,1.627c0.951,0.002,1.732-0.72,1.734-1.614 c0.004-0.894-0.771-1.619-1.721-1.627C20.622,698.247,19.843,698.968,19.841,699.861"/>
  1205. </g>
  1206. </g>
  1207. </g>
  1208. <g id="_x23_42">
  1209. <g>
  1210. <path fill="#DFDFDD" d="M401.331,451.388l-1.38,28.777c0,0,1.098,0.43,2.063,0.434c0.998,0.002,2.149-0.422,2.149-0.422 l-1.14-28.783L401.331,451.388L401.331,451.388z"/>
  1211. </g>
  1212. <g>
  1213. <g transform="rotate(91.5214 402 451.384)">
  1214. <g>
  1215. <path fill="#3E4484" d="M401.029,450.336l2.205,0.854c0,0,5.842-12.161,6.27-18.756 C405.189,437.654,401.029,450.336,401.029,450.336"/>
  1216. <path fill="#3E4484" d="M403.12,451.187l-1.813,1.511c0,0,7.768,11.024,13.32,14.618 C412.17,460.999,403.12,451.187,403.12,451.187"/>
  1217. <path fill="#3E4484" d="M401.206,452.767l0.021-2.36c0,0-13.439-1.195-19.766,0.729 C387.868,453.336,401.206,452.767,401.206,452.767"/>
  1218. </g>
  1219. <g>
  1220. <path fill="#DFDFDD" d="M403.127,450.906l6.377-18.722c0,0-0.063,1.148-0.109,1.529c-0.041,0.32-0.166,0.957-0.238,1.271 c-0.057,0.26-0.246,1.034-0.246,1.034s-0.338,1.345-0.471,1.784c-0.445,1.469-1.438,4.358-1.988,5.789 c-0.465,1.211-1.461,3.608-1.982,4.797c-0.283,0.647-1.17,2.571-1.17,2.571"/>
  1221. <path fill="#DFDFDD" d="M401.605,452.742l13.24,14.69c0,0-0.979-0.61-1.283-0.844c-0.262-0.189-0.754-0.607-0.996-0.824 c-0.197-0.174-0.785-0.717-0.785-0.717s-1.008-0.955-1.323-1.287c-1.065-1.102-3.11-3.379-4.093-4.559 c-0.828-0.994-2.437-3.031-3.219-4.066c-0.426-0.563-1.674-2.277-1.674-2.277"/>
  1222. <path fill="#DFDFDD" d="M401.002,450.601l-19.771,0.619c0,0,1.097-0.352,1.474-0.436c0.313-0.074,0.952-0.186,1.271-0.229 c0.266-0.037,1.057-0.136,1.057-0.136s1.375-0.155,1.837-0.186c1.526-0.101,4.591-0.188,6.122-0.181 c1.296,0.017,3.889,0.104,5.186,0.174c0.705,0.045,2.818,0.195,2.818,0.195"/>
  1223. </g>
  1224. <animateTransform restart="always" from="0 402 451.384" dur="4s" to="359 402 451.384" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  1225. </animateTransform>
  1226. </g>
  1227. <g>
  1228. <path fill="#63A5BA" d="M399.459,451.382c-0.01,1.434,1.199,2.604,2.693,2.609c1.498,0.004,2.715-1.158,2.721-2.59 c0.008-1.439-1.199-2.604-2.699-2.613C400.678,448.788,399.463,449.943,399.459,451.382"/>
  1229. </g>
  1230. <g>
  1231. <path fill="#B6D6DE" d="M400.437,451.384c-0.002,0.896,0.771,1.621,1.721,1.627c0.951,0.002,1.734-0.719,1.736-1.613 c0.004-0.895-0.771-1.618-1.724-1.625C401.219,449.772,400.441,450.494,400.437,451.384"/>
  1232. </g>
  1233. </g>
  1234. </g>
  1235. <g id="_x23_41">
  1236. <g>
  1237. <path fill="#DFDFDD" d="M354.055,451.388l-1.377,28.777c0,0,1.094,0.43,2.062,0.434c0.998,0.002,2.147-0.422,2.147-0.422 l-1.14-28.783L354.055,451.388L354.055,451.388z"/>
  1238. </g>
  1239. <g>
  1240. <g transform="rotate(91.5214 355 451.384)">
  1241. <g>
  1242. <path fill="#3E4484" d="M353.754,450.336l2.202,0.854c0,0,5.843-12.161,6.271-18.756 C357.913,437.654,353.754,450.336,353.754,450.336"/>
  1243. <path fill="#3E4484" d="M355.846,451.187l-1.815,1.511c0,0,7.771,11.024,13.324,14.618 C364.895,460.999,355.846,451.187,355.846,451.187"/>
  1244. <path fill="#3E4484" d="M353.93,452.767l0.021-2.36c0,0-13.438-1.195-19.766,0.729 C340.594,453.336,353.93,452.767,353.93,452.767"/>
  1245. </g>
  1246. <g>
  1247. <path fill="#DFDFDD" d="M355.852,450.906l6.377-18.722c0,0-0.063,1.148-0.111,1.529c-0.041,0.32-0.164,0.957-0.234,1.271 c-0.061,0.26-0.246,1.034-0.246,1.034s-0.338,1.345-0.473,1.784c-0.445,1.469-1.438,4.358-1.988,5.789 c-0.466,1.211-1.461,3.608-1.981,4.797c-0.281,0.647-1.172,2.571-1.172,2.571"/>
  1248. <path fill="#DFDFDD" d="M354.329,452.742l13.237,14.69c0,0-0.975-0.61-1.281-0.844c-0.262-0.189-0.756-0.607-0.995-0.824 c-0.196-0.174-0.784-0.717-0.784-0.717s-1.011-0.955-1.324-1.287c-1.066-1.102-3.111-3.379-4.092-4.559 c-0.828-0.994-2.438-3.031-3.22-4.066c-0.429-0.563-1.675-2.277-1.675-2.277"/>
  1249. <path fill="#DFDFDD" d="M353.725,450.601l-19.766,0.619c0,0,1.094-0.352,1.471-0.436c0.312-0.074,0.949-0.186,1.271-0.229 c0.268-0.037,1.057-0.136,1.057-0.136s1.377-0.155,1.838-0.186c1.526-0.101,4.588-0.188,6.123-0.181 c1.295,0.017,3.885,0.104,5.182,0.174c0.707,0.045,2.818,0.195,2.818,0.195"/>
  1250. </g>
  1251. <animateTransform restart="always" from="0 355 451.384" dur="4s" to="359 355 451.384" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  1252. </animateTransform>
  1253. </g>
  1254. <g>
  1255. <path fill="#63A5BA" d="M352.184,451.382c-0.008,1.434,1.199,2.604,2.695,2.609c1.498,0.004,2.715-1.158,2.721-2.59 c0.006-1.439-1.203-2.604-2.701-2.613C353.4,448.788,352.187,449.943,352.184,451.382"/>
  1256. </g>
  1257. <g>
  1258. <path fill="#B6D6DE" d="M353.159,451.384c-0.002,0.896,0.771,1.621,1.725,1.627c0.951,0.002,1.732-0.719,1.732-1.613 c0.005-0.895-0.771-1.618-1.721-1.625C353.943,449.772,353.163,450.494,353.159,451.384"/>
  1259. </g>
  1260. </g>
  1261. </g>
  1262. <g id="_x23_40">
  1263. <g>
  1264. <path fill="#DFDFDD" d="M308.489,451.388l-1.377,28.777c0,0,1.094,0.43,2.063,0.434c0.995,0.002,2.146-0.422,2.146-0.422 l-1.139-28.783L308.489,451.388L308.489,451.388z"/>
  1265. </g>
  1266. <g>
  1267. <g transform="rotate(91.5214 309 451.384)">
  1268. <g>
  1269. <path fill="#3E4484" d="M308.188,450.336l2.203,0.854c0,0,5.844-12.161,6.27-18.756 C312.347,437.654,308.188,450.336,308.188,450.336"/>
  1270. <path fill="#3E4484" d="M310.278,451.187l-1.813,1.511c0,0,7.766,11.024,13.318,14.618 C319.328,460.999,310.278,451.187,310.278,451.187"/>
  1271. <path fill="#3E4484" d="M308.364,452.767l0.021-2.36c0,0-13.441-1.195-19.767,0.729 C295.028,453.336,308.364,452.767,308.364,452.767"/>
  1272. </g>
  1273. <g>
  1274. <path fill="#DFDFDD" d="M310.283,450.906l6.377-18.722c0,0-0.063,1.148-0.107,1.529c-0.041,0.32-0.166,0.957-0.236,1.271 c-0.059,0.26-0.246,1.034-0.246,1.034s-0.34,1.345-0.473,1.784c-0.445,1.469-1.438,4.358-1.986,5.789 c-0.467,1.211-1.463,3.608-1.982,4.797c-0.283,0.647-1.174,2.571-1.174,2.571"/>
  1275. <path fill="#DFDFDD" d="M308.763,452.742l13.239,14.69c0,0-0.976-0.61-1.28-0.844c-0.266-0.189-0.754-0.607-0.996-0.824 c-0.199-0.174-0.787-0.717-0.787-0.717s-1.008-0.955-1.324-1.287c-1.063-1.102-3.107-3.379-4.09-4.559 c-0.828-0.994-2.438-3.031-3.219-4.066c-0.428-0.563-1.674-2.277-1.674-2.277"/>
  1276. <path fill="#DFDFDD" d="M308.158,450.601l-19.768,0.619c0,0,1.094-0.352,1.473-0.436c0.313-0.074,0.951-0.186,1.271-0.229 c0.266-0.037,1.057-0.136,1.057-0.136s1.377-0.155,1.838-0.186c1.527-0.101,4.588-0.188,6.121-0.181 c1.295,0.017,3.891,0.104,5.186,0.174c0.704,0.045,2.818,0.195,2.818,0.195"/>
  1277. </g>
  1278. <animateTransform restart="always" from="0 309 451.384" dur="4s" to="359 309 451.384" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  1279. </animateTransform>
  1280. </g>
  1281. <g>
  1282. <path fill="#63A5BA" d="M306.617,451.382c-0.01,1.434,1.199,2.604,2.695,2.609c1.496,0.004,2.713-1.158,2.721-2.59 c0.006-1.439-1.203-2.604-2.703-2.613C307.834,448.788,306.619,449.943,306.617,451.382"/>
  1283. </g>
  1284. <g>
  1285. <path fill="#B6D6DE" d="M307.597,451.384c-0.002,0.896,0.769,1.621,1.719,1.627c0.953,0.002,1.734-0.719,1.736-1.613 c0.004-0.895-0.77-1.618-1.723-1.625C308.375,449.772,307.601,450.494,307.597,451.384"/>
  1286. </g>
  1287. </g>
  1288. </g>
  1289. <g id="_x23_39">
  1290. <g>
  1291. <path fill="#DFDFDD" d="M259.019,451.388l-1.379,28.777c0,0,1.094,0.43,2.063,0.434c0.998,0.002,2.147-0.422,2.147-0.422 l-1.142-28.783L259.019,451.388L259.019,451.388z"/>
  1292. </g>
  1293. <g>
  1294. <g transform="rotate(91.5214 260 451.384)">
  1295. <g>
  1296. <path fill="#3E4484" d="M258.716,450.336l2.202,0.854c0,0,5.845-12.161,6.271-18.756 C262.875,437.654,258.716,450.336,258.716,450.336"/>
  1297. <path fill="#3E4484" d="M260.808,451.187l-1.813,1.511c0,0,7.771,11.024,13.321,14.618 C269.856,460.999,260.808,451.187,260.808,451.187"/>
  1298. <path fill="#3E4484" d="M258.894,452.767l0.021-2.36c0,0-13.438-1.195-19.768,0.729 C245.556,453.336,258.894,452.767,258.894,452.767"/>
  1299. </g>
  1300. <g>
  1301. <path fill="#DFDFDD" d="M260.813,450.906l6.377-18.722c0,0-0.061,1.148-0.11,1.529c-0.039,0.32-0.164,0.957-0.233,1.271 c-0.06,0.26-0.246,1.034-0.246,1.034s-0.34,1.345-0.474,1.784c-0.444,1.469-1.438,4.358-1.987,5.789 c-0.465,1.211-1.463,3.608-1.984,4.797c-0.279,0.647-1.17,2.571-1.17,2.571"/>
  1302. <path fill="#DFDFDD" d="M259.291,452.742l13.237,14.69c0,0-0.976-0.61-1.28-0.844c-0.263-0.189-0.754-0.607-0.996-0.824 c-0.196-0.174-0.784-0.717-0.784-0.717s-1.009-0.955-1.324-1.287c-1.064-1.102-3.11-3.379-4.09-4.559 c-0.828-0.994-2.438-3.031-3.22-4.066c-0.429-0.563-1.674-2.277-1.674-2.277"/>
  1303. <path fill="#DFDFDD" d="M258.688,450.601l-19.768,0.619c0,0,1.096-0.352,1.471-0.436c0.312-0.074,0.951-0.186,1.273-0.229 c0.264-0.037,1.053-0.136,1.053-0.136s1.377-0.155,1.84-0.186c1.525-0.101,4.586-0.188,6.121-0.181 c1.295,0.017,3.887,0.104,5.182,0.174c0.709,0.045,2.82,0.195,2.82,0.195"/>
  1304. </g>
  1305. <animateTransform restart="always" from="0 260 451.384" dur="4s" to="359 260 451.384" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  1306. </animateTransform>
  1307. </g>
  1308. <g>
  1309. <path fill="#63A5BA" d="M257.145,451.382c-0.008,1.434,1.201,2.604,2.695,2.609c1.5,0.004,2.717-1.158,2.723-2.59 c0.004-1.439-1.205-2.604-2.703-2.613C258.364,448.788,257.151,449.943,257.145,451.382"/>
  1310. </g>
  1311. <g>
  1312. <path fill="#B6D6DE" d="M258.123,451.384c-0.002,0.896,0.771,1.621,1.722,1.627c0.953,0.002,1.735-0.719,1.735-1.613 c0.002-0.895-0.771-1.618-1.724-1.625C258.905,449.772,258.127,450.494,258.123,451.384"/>
  1313. </g>
  1314. </g>
  1315. </g>
  1316. <g id="_x23_38">
  1317. <g>
  1318. <path fill="#DFDFDD" d="M209.495,451.388l-1.377,28.777c0,0,1.094,0.43,2.062,0.434c0.996,0.002,2.147-0.422,2.147-0.422 l-1.14-28.783L209.495,451.388L209.495,451.388z"/>
  1319. </g>
  1320. <g>
  1321. <g transform="rotate(91.5214 210 451.384)">
  1322. <g>
  1323. <path fill="#3E4484" d="M209.194,450.336l2.203,0.854c0,0,5.845-12.161,6.271-18.756 C213.353,437.654,209.194,450.336,209.194,450.336"/>
  1324. <path fill="#3E4484" d="M211.284,451.187l-1.813,1.511c0,0,7.769,11.024,13.32,14.618 C220.334,460.999,211.284,451.187,211.284,451.187"/>
  1325. <path fill="#3E4484" d="M209.37,452.767l0.021-2.36c0,0-13.44-1.195-19.766,0.729 C196.034,453.336,209.37,452.767,209.37,452.767"/>
  1326. </g>
  1327. <g>
  1328. <path fill="#DFDFDD" d="M211.289,450.906l6.377-18.722c0,0-0.063,1.148-0.108,1.529c-0.041,0.32-0.166,0.957-0.236,1.271 c-0.06,0.26-0.245,1.034-0.245,1.034s-0.341,1.345-0.472,1.784c-0.446,1.469-1.438,4.358-1.987,5.789 c-0.468,1.211-1.464,3.608-1.983,4.797c-0.283,0.647-1.172,2.571-1.172,2.571"/>
  1329. <path fill="#DFDFDD" d="M209.769,452.742l13.24,14.69c0,0-0.976-0.61-1.281-0.844c-0.262-0.189-0.754-0.607-0.996-0.824 c-0.198-0.174-0.787-0.717-0.787-0.717s-1.008-0.955-1.32-1.287c-1.066-1.102-3.111-3.379-4.094-4.559 c-0.826-0.994-2.438-3.031-3.219-4.066c-0.428-0.563-1.674-2.277-1.674-2.277"/>
  1330. <path fill="#DFDFDD" d="M209.164,450.601l-19.769,0.619c0,0,1.094-0.352,1.474-0.436c0.313-0.074,0.95-0.186,1.271-0.229 c0.266-0.037,1.057-0.136,1.057-0.136s1.378-0.155,1.84-0.186c1.525-0.101,4.588-0.188,6.119-0.181 c1.296,0.017,3.891,0.104,5.186,0.174c0.707,0.045,2.82,0.195,2.82,0.195"/>
  1331. </g>
  1332. <animateTransform restart="always" from="0 210 451.384" dur="4s" to="359 210 451.384" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  1333. </animateTransform>
  1334. </g>
  1335. <g>
  1336. <path fill="#63A5BA" d="M207.623,451.382c-0.011,1.434,1.198,2.604,2.694,2.609c1.496,0.004,2.716-1.158,2.722-2.59 c0.007-1.439-1.202-2.604-2.702-2.613C208.841,448.788,207.625,449.943,207.623,451.382"/>
  1337. </g>
  1338. <g>
  1339. <path fill="#B6D6DE" d="M208.603,451.384c-0.002,0.896,0.77,1.621,1.722,1.627c0.95,0.002,1.73-0.719,1.733-1.613 c0.004-0.895-0.769-1.618-1.721-1.625C209.382,449.772,208.606,450.494,208.603,451.384"/>
  1340. </g>
  1341. </g>
  1342. </g>
  1343. <g id="_x23_37">
  1344. <g>
  1345. <path fill="#DFDFDD" d="M160.97,451.388l-1.379,28.777c0,0,1.094,0.43,2.061,0.434c0.998,0.002,2.148-0.422,2.148-0.422 l-1.14-28.783L160.97,451.388L160.97,451.388z"/>
  1346. </g>
  1347. <g>
  1348. <g transform="rotate(91.5214 162 451.384)">
  1349. <g>
  1350. <path fill="#3E4484" d="M160.666,450.336l2.203,0.854c0,0,5.842-12.161,6.271-18.756 C164.825,437.654,160.666,450.336,160.666,450.336"/>
  1351. <path fill="#3E4484" d="M162.759,451.187l-1.816,1.511c0,0,7.771,11.024,13.322,14.618 C171.808,460.999,162.759,451.187,162.759,451.187"/>
  1352. <path fill="#3E4484" d="M160.843,452.767l0.021-2.36c0,0-13.438-1.195-19.766,0.729 C147.507,453.336,160.843,452.767,160.843,452.767"/>
  1353. </g>
  1354. <g>
  1355. <path fill="#DFDFDD" d="M162.765,450.906l6.377-18.722c0,0-0.063,1.148-0.111,1.529c-0.04,0.32-0.165,0.957-0.234,1.271 c-0.061,0.26-0.246,1.034-0.246,1.034s-0.34,1.345-0.474,1.784c-0.442,1.469-1.438,4.358-1.987,5.789 c-0.467,1.211-1.461,3.608-1.982,4.797c-0.282,0.647-1.17,2.571-1.17,2.571"/>
  1356. <path fill="#DFDFDD" d="M161.243,452.742l13.237,14.69c0,0-0.975-0.61-1.283-0.844c-0.262-0.189-0.754-0.607-0.993-0.824 c-0.196-0.174-0.785-0.717-0.785-0.717s-1.01-0.955-1.323-1.287c-1.066-1.102-3.113-3.379-4.092-4.559 c-0.828-0.994-2.438-3.031-3.22-4.066c-0.427-0.563-1.675-2.277-1.675-2.277"/>
  1357. <path fill="#DFDFDD" d="M160.638,450.601l-19.769,0.619c0,0,1.097-0.352,1.474-0.436c0.311-0.074,0.948-0.186,1.271-0.229 c0.268-0.037,1.056-0.136,1.056-0.136s1.378-0.155,1.839-0.186c1.524-0.101,4.588-0.188,6.123-0.181 c1.293,0.017,3.885,0.104,5.182,0.174c0.707,0.045,2.818,0.195,2.818,0.195"/>
  1358. </g>
  1359. <animateTransform restart="always" from="0 162 451.384" dur="4s" to="359 162 451.384" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  1360. </animateTransform>
  1361. </g>
  1362. <g>
  1363. <path fill="#63A5BA" d="M159.097,451.382c-0.008,1.434,1.201,2.604,2.694,2.609c1.498,0.004,2.716-1.158,2.722-2.59 c0.006-1.439-1.203-2.604-2.703-2.613C160.313,448.788,159.101,449.943,159.097,451.382"/>
  1364. </g>
  1365. <g>
  1366. <path fill="#B6D6DE" d="M160.073,451.384c-0.002,0.896,0.771,1.621,1.722,1.627c0.953,0.002,1.735-0.719,1.735-1.613 c0.005-0.895-0.77-1.618-1.721-1.625C160.854,449.772,160.077,450.494,160.073,451.384"/>
  1367. </g>
  1368. </g>
  1369. </g>
  1370. <g id="_x23_43">
  1371. <g>
  1372. <path fill="#DFDFDD" d="M456.15,451.388l-1.377,28.779c0,0,1.094,0.428,2.063,0.432c0.994,0.002,2.146-0.422,2.146-0.422 l-1.14-28.783L456.15,451.388L456.15,451.388z"/>
  1373. </g>
  1374. <g>
  1375. <g transform="rotate(91.5214 457 451.386)">
  1376. <g>
  1377. <path fill="#3E4484" d="M455.849,450.338l2.203,0.852c0,0,5.844-12.159,6.271-18.756 C460.007,437.656,455.849,450.338,455.849,450.338"/>
  1378. <path fill="#3E4484" d="M457.939,451.187l-1.813,1.513c0,0,7.769,11.024,13.318,14.616 C466.989,461,457.939,451.187,457.939,451.187"/>
  1379. <path fill="#3E4484" d="M456.025,452.767l0.021-2.36c0,0-13.438-1.195-19.768,0.729 C442.689,453.336,456.025,452.767,456.025,452.767"/>
  1380. </g>
  1381. <g>
  1382. <path fill="#DFDFDD" d="M457.944,450.908l6.377-18.724c0,0-0.062,1.15-0.108,1.529c-0.038,0.322-0.166,0.957-0.234,1.273 c-0.059,0.26-0.246,1.031-0.246,1.031s-0.341,1.346-0.474,1.785c-0.444,1.471-1.438,4.36-1.985,5.789 c-0.468,1.211-1.464,3.608-1.984,4.797c-0.281,0.647-1.172,2.571-1.172,2.571"/>
  1383. <path fill="#DFDFDD" d="M456.423,452.742l13.238,14.69c0,0-0.976-0.61-1.279-0.842c-0.266-0.188-0.755-0.606-0.996-0.826 c-0.199-0.174-0.787-0.715-0.787-0.715s-1.006-0.955-1.321-1.287c-1.064-1.104-3.109-3.379-4.093-4.559 c-0.828-0.996-2.438-3.031-3.219-4.068c-0.43-0.563-1.675-2.274-1.675-2.274"/>
  1384. <path fill="#DFDFDD" d="M455.819,450.603l-19.769,0.617c0,0,1.095-0.35,1.474-0.436c0.313-0.074,0.95-0.184,1.271-0.229 c0.266-0.039,1.057-0.138,1.057-0.138s1.378-0.153,1.839-0.186c1.526-0.099,4.588-0.188,6.123-0.179 c1.293,0.015,3.887,0.104,5.183,0.176c0.707,0.04,2.819,0.191,2.819,0.191"/>
  1385. </g>
  1386. <animateTransform restart="always" from="0 457 451.386" dur="4s" to="359 457 451.386" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  1387. </animateTransform>
  1388. </g>
  1389. <g>
  1390. <path fill="#63A5BA" d="M454.278,451.382c-0.008,1.434,1.199,2.605,2.694,2.609c1.496,0.004,2.714-1.156,2.722-2.588 c0.006-1.441-1.203-2.605-2.703-2.613C455.494,448.788,454.28,449.943,454.278,451.382"/>
  1391. </g>
  1392. <g>
  1393. <path fill="#B6D6DE" d="M455.257,451.386c-0.002,0.896,0.769,1.619,1.721,1.625c0.951,0.004,1.732-0.719,1.734-1.611 c0.004-0.895-0.77-1.62-1.723-1.629C456.035,449.772,455.261,450.496,455.257,451.386"/>
  1394. </g>
  1395. </g>
  1396. </g>
  1397. <g id="_x23_44">
  1398. <g>
  1399. <path fill="#DFDFDD" d="M508.668,451.388l-1.381,28.779c0,0,1.096,0.428,2.063,0.432c0.996,0.002,2.146-0.422,2.146-0.422 l-1.14-28.783L508.668,451.388L508.668,451.388z"/>
  1400. </g>
  1401. <g>
  1402. <g transform="rotate(91.5214 509 451.386)">
  1403. <g>
  1404. <path fill="#3E4484" d="M508.364,450.338l2.205,0.852c0,0,5.842-12.159,6.271-18.756 C512.525,437.656,508.364,450.338,508.364,450.338"/>
  1405. <path fill="#3E4484" d="M510.455,451.187l-1.813,1.513c0,0,7.771,11.024,13.322,14.616 C519.508,461,510.455,451.187,510.455,451.187"/>
  1406. <path fill="#3E4484" d="M508.543,452.767l0.021-2.36c0,0-13.438-1.195-19.767,0.729 C495.203,453.336,508.543,452.767,508.543,452.767"/>
  1407. </g>
  1408. <g>
  1409. <path fill="#DFDFDD" d="M510.463,450.908l6.377-18.724c0,0-0.063,1.15-0.11,1.529c-0.041,0.322-0.164,0.957-0.234,1.273 c-0.06,0.26-0.245,1.031-0.245,1.031s-0.341,1.346-0.474,1.785c-0.444,1.471-1.438,4.36-1.987,5.789 c-0.468,1.211-1.462,3.608-1.983,4.797c-0.28,0.647-1.171,2.571-1.171,2.571"/>
  1410. <path fill="#DFDFDD" d="M508.941,452.742l13.237,14.69c0,0-0.975-0.61-1.28-0.842c-0.263-0.188-0.755-0.606-0.996-0.826 c-0.197-0.174-0.785-0.715-0.785-0.715s-1.008-0.955-1.322-1.287c-1.065-1.104-3.108-3.379-4.092-4.559 c-0.826-0.996-2.438-3.031-3.219-4.068c-0.429-0.563-1.674-2.274-1.674-2.274"/>
  1411. <path fill="#DFDFDD" d="M508.338,450.603l-19.77,0.617c0,0,1.094-0.35,1.475-0.436c0.312-0.074,0.947-0.184,1.271-0.229 c0.266-0.039,1.055-0.138,1.055-0.138s1.379-0.153,1.838-0.186c1.527-0.099,4.59-0.188,6.123-0.179 c1.296,0.015,3.889,0.104,5.186,0.176c0.705,0.04,2.816,0.191,2.816,0.191"/>
  1412. </g>
  1413. <animateTransform restart="always" from="0 509 451.386" dur="4s" to="359 509 451.386" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  1414. </animateTransform>
  1415. </g>
  1416. <g>
  1417. <path fill="#63A5BA" d="M506.795,451.382c-0.01,1.434,1.199,2.605,2.695,2.609s2.713-1.156,2.723-2.588 c0.006-1.441-1.205-2.605-2.703-2.613C508.014,448.788,506.799,449.943,506.795,451.382"/>
  1418. </g>
  1419. <g>
  1420. <path fill="#B6D6DE" d="M507.773,451.386c-0.005,0.896,0.771,1.619,1.721,1.625c0.953,0.004,1.734-0.719,1.734-1.611 c0.004-0.895-0.771-1.62-1.722-1.629C508.555,449.772,507.775,450.496,507.773,451.386"/>
  1421. </g>
  1422. </g>
  1423. </g>
  1424. <g id="_x23_59">
  1425. <g>
  1426. <path fill="#DFDFDD" d="M167.835,695.943l-1.379,28.776c0,0,1.096,0.433,2.063,0.437c0.996,0.004,2.148-0.422,2.148-0.422 l-1.14-28.783L167.835,695.943L167.835,695.943z"/>
  1427. </g>
  1428. <g>
  1429. <g transform="rotate(91.5214 168 695.943)">
  1430. <g>
  1431. <path fill="#3E4484" d="M167.535,694.891l2.202,0.854c0,0,5.845-12.162,6.271-18.754 C171.693,682.209,167.535,694.891,167.535,694.891"/>
  1432. <path fill="#3E4484" d="M169.624,695.744l-1.813,1.51c0,0,7.769,11.027,13.318,14.617 C178.675,705.552,169.624,695.744,169.624,695.744"/>
  1433. <path fill="#3E4484" d="M167.71,697.322l0.021-2.361c0,0-13.438-1.197-19.768,0.729 C154.372,697.891,167.71,697.322,167.71,697.322"/>
  1434. </g>
  1435. <g>
  1436. <path fill="#DFDFDD" d="M169.63,695.459l6.379-18.719c0,0-0.063,1.146-0.111,1.525c-0.041,0.321-0.166,0.956-0.235,1.274 c-0.06,0.258-0.244,1.033-0.244,1.033s-0.342,1.344-0.474,1.785c-0.446,1.467-1.438,4.358-1.989,5.789 c-0.465,1.211-1.461,3.606-1.982,4.797c-0.281,0.646-1.172,2.568-1.172,2.568"/>
  1437. <path fill="#DFDFDD" d="M168.111,697.296l13.238,14.691c0,0-0.975-0.613-1.281-0.842c-0.264-0.193-0.754-0.611-0.996-0.826 c-0.198-0.178-0.784-0.717-0.784-0.717s-1.011-0.955-1.326-1.287c-1.063-1.104-3.109-3.381-4.09-4.56 c-0.826-0.996-2.437-3.031-3.22-4.065c-0.428-0.563-1.674-2.279-1.674-2.279"/>
  1438. <path fill="#DFDFDD" d="M167.505,695.158l-19.771,0.617c0,0,1.097-0.351,1.474-0.437c0.313-0.073,0.951-0.184,1.271-0.229 c0.267-0.037,1.058-0.137,1.058-0.137s1.377-0.154,1.836-0.187c1.526-0.098,4.59-0.187,6.123-0.176 c1.297,0.012,3.889,0.102,5.186,0.172c0.705,0.043,2.818,0.194,2.818,0.194"/>
  1439. </g>
  1440. <animateTransform restart="always" from="0 168 695.943" dur="4s" to="359 168 695.943" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  1441. </animateTransform>
  1442. </g>
  1443. <g>
  1444. <path fill="#63A5BA" d="M165.962,695.937c-0.006,1.435,1.201,2.604,2.695,2.609c1.5,0.004,2.717-1.158,2.723-2.59 c0.006-1.438-1.203-2.604-2.701-2.613C167.183,693.341,165.968,694.497,165.962,695.937"/>
  1445. </g>
  1446. <g>
  1447. <path fill="#B6D6DE" d="M166.943,695.943c-0.004,0.893,0.771,1.618,1.722,1.625c0.953,0.004,1.733-0.724,1.733-1.613 c0.004-0.896-0.77-1.623-1.723-1.627C167.724,694.326,166.945,695.046,166.943,695.943"/>
  1448. </g>
  1449. </g>
  1450. </g>
  1451. <g id="_x23_60">
  1452. <g>
  1453. <path fill="#DFDFDD" d="M213.597,695.943l-1.377,28.776c0,0,1.094,0.433,2.063,0.437c0.995,0.004,2.146-0.422,2.146-0.422 l-1.141-28.783L213.597,695.943L213.597,695.943z"/>
  1454. </g>
  1455. <g>
  1456. <g transform="rotate(91.5214 214 695.943)">
  1457. <g>
  1458. <path fill="#3E4484" d="M213.296,694.891l2.203,0.854c0,0,5.844-12.162,6.27-18.754 C217.454,682.209,213.296,694.891,213.296,694.891"/>
  1459. <path fill="#3E4484" d="M215.388,695.744l-1.813,1.51c0,0,7.768,11.027,13.321,14.617 C224.437,705.552,215.388,695.744,215.388,695.744"/>
  1460. <path fill="#3E4484" d="M213.474,697.322l0.021-2.361c0,0-13.441-1.197-19.769,0.729 C200.136,697.891,213.474,697.322,213.474,697.322"/>
  1461. </g>
  1462. <g>
  1463. <path fill="#DFDFDD" d="M215.394,695.459l6.377-18.719c0,0-0.063,1.146-0.11,1.525c-0.039,0.321-0.164,0.956-0.236,1.274 c-0.057,0.258-0.244,1.033-0.244,1.033s-0.34,1.344-0.473,1.785c-0.447,1.467-1.438,4.358-1.99,5.789 c-0.465,1.211-1.461,3.606-1.98,4.797c-0.282,0.646-1.17,2.568-1.17,2.568"/>
  1464. <path fill="#DFDFDD" d="M213.872,697.296l13.237,14.691c0,0-0.977-0.613-1.28-0.842c-0.263-0.193-0.754-0.611-0.996-0.826 c-0.197-0.178-0.785-0.717-0.785-0.717s-1.008-0.955-1.326-1.287c-1.063-1.104-3.108-3.381-4.09-4.56 c-0.826-0.996-2.437-3.031-3.219-4.065c-0.429-0.563-1.675-2.279-1.675-2.279"/>
  1465. <path fill="#DFDFDD" d="M213.269,695.158l-19.77,0.617c0,0,1.096-0.351,1.473-0.437c0.313-0.073,0.951-0.184,1.271-0.229 c0.264-0.037,1.055-0.137,1.055-0.137s1.377-0.154,1.838-0.187c1.527-0.098,4.588-0.187,6.123-0.176 c1.295,0.012,3.887,0.102,5.182,0.172c0.707,0.043,2.82,0.194,2.82,0.194"/>
  1466. </g>
  1467. <animateTransform restart="always" from="0 214 695.943" dur="4s" to="359 214 695.943" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  1468. </animateTransform>
  1469. </g>
  1470. <g>
  1471. <path fill="#63A5BA" d="M211.724,695.937c-0.006,1.435,1.203,2.604,2.697,2.609c1.498,0.004,2.715-1.158,2.721-2.59 c0.006-1.438-1.203-2.604-2.701-2.613C212.945,693.341,211.73,694.497,211.724,695.937"/>
  1472. </g>
  1473. <g>
  1474. <path fill="#B6D6DE" d="M212.704,695.943c-0.002,0.893,0.771,1.618,1.721,1.625c0.953,0.004,1.734-0.724,1.736-1.613 c0.002-0.896-0.771-1.623-1.724-1.627C213.486,694.326,212.708,695.046,212.704,695.943"/>
  1475. </g>
  1476. </g>
  1477. </g>
  1478. <g id="_x23_61">
  1479. <g>
  1480. <path fill="#DFDFDD" d="M263.872,695.943l-1.377,28.776c0,0,1.094,0.433,2.063,0.437c0.996,0.004,2.148-0.422,2.148-0.422 l-1.143-28.783L263.872,695.943L263.872,695.943z"/>
  1481. </g>
  1482. <g>
  1483. <g transform="rotate(91.5214 264 695.943)">
  1484. <g>
  1485. <path fill="#3E4484" d="M263.571,694.891l2.203,0.854c0,0,5.846-12.162,6.271-18.754 C267.729,682.209,263.571,694.891,263.571,694.891"/>
  1486. <path fill="#3E4484" d="M265.663,695.744l-1.814,1.51c0,0,7.77,11.027,13.322,14.617 C274.712,705.552,265.663,695.744,265.663,695.744"/>
  1487. <path fill="#3E4484" d="M263.749,697.322l0.021-2.361c0,0-13.439-1.197-19.768,0.729 C250.412,697.891,263.749,697.322,263.749,697.322"/>
  1488. </g>
  1489. <g>
  1490. <path fill="#DFDFDD" d="M265.669,695.459l6.377-18.719c0,0-0.063,1.146-0.111,1.525c-0.039,0.321-0.164,0.956-0.234,1.274 c-0.059,0.258-0.244,1.033-0.244,1.033s-0.34,1.344-0.475,1.785c-0.445,1.467-1.438,4.358-1.988,5.789 c-0.467,1.211-1.461,3.606-1.982,4.797c-0.283,0.646-1.17,2.568-1.17,2.568"/>
  1491. <path fill="#DFDFDD" d="M264.147,697.296l13.238,14.691c0,0-0.975-0.613-1.281-0.842c-0.262-0.193-0.754-0.611-0.996-0.826 c-0.195-0.178-0.785-0.717-0.785-0.717s-1.008-0.955-1.324-1.287c-1.064-1.104-3.109-3.381-4.092-4.56 c-0.824-0.996-2.437-3.031-3.219-4.065c-0.428-0.563-1.674-2.279-1.674-2.279"/>
  1492. <path fill="#DFDFDD" d="M263.544,695.158l-19.771,0.617c0,0,1.098-0.351,1.475-0.437c0.311-0.073,0.949-0.184,1.271-0.229 c0.265-0.037,1.055-0.137,1.055-0.137s1.379-0.154,1.84-0.187c1.525-0.098,4.588-0.187,6.123-0.176 c1.295,0.012,3.887,0.102,5.182,0.172c0.707,0.043,2.82,0.194,2.82,0.194"/>
  1493. </g>
  1494. <animateTransform restart="always" from="0 264 695.943" dur="4s" to="359 264 695.943" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  1495. </animateTransform>
  1496. </g>
  1497. <g>
  1498. <path fill="#63A5BA" d="M261.999,695.937c-0.006,1.435,1.203,2.604,2.695,2.609c1.498,0.004,2.717-1.158,2.723-2.59 c0.006-1.438-1.203-2.604-2.701-2.613C263.219,693.341,262.005,694.497,261.999,695.937"/>
  1499. </g>
  1500. <g>
  1501. <path fill="#B6D6DE" d="M262.979,695.943c-0.002,0.893,0.771,1.618,1.723,1.625c0.951,0.004,1.732-0.724,1.734-1.613 c0.002-0.896-0.771-1.623-1.723-1.627C263.76,694.326,262.983,695.046,262.979,695.943"/>
  1502. </g>
  1503. </g>
  1504. </g>
  1505. <g id="_x23_63">
  1506. <g>
  1507. <path fill="#DFDFDD" d="M364.895,695.943l-1.377,28.776c0,0,1.092,0.433,2.061,0.437c0.996,0.004,2.148-0.422,2.148-0.422 l-1.141-28.783L364.895,695.943L364.895,695.943z"/>
  1508. </g>
  1509. <g>
  1510. <g transform="rotate(91.5214 366 695.943)">
  1511. <g>
  1512. <path fill="#3E4484" d="M364.594,694.891l2.203,0.854c0,0,5.842-12.162,6.268-18.754 C368.752,682.209,364.594,694.891,364.594,694.891"/>
  1513. <path fill="#3E4484" d="M366.684,695.744l-1.813,1.51c0,0,7.769,11.027,13.32,14.617 C375.733,705.552,366.684,695.744,366.684,695.744"/>
  1514. <path fill="#3E4484" d="M364.77,697.322l0.021-2.361c0,0-13.438-1.197-19.766,0.729 C351.434,697.891,364.77,697.322,364.77,697.322"/>
  1515. </g>
  1516. <g>
  1517. <path fill="#DFDFDD" d="M366.69,695.459l6.377-18.719c0,0-0.061,1.146-0.111,1.525c-0.038,0.321-0.163,0.956-0.231,1.274 c-0.062,0.258-0.246,1.033-0.246,1.033s-0.34,1.344-0.475,1.785c-0.443,1.467-1.438,4.358-1.986,5.789 c-0.467,1.211-1.461,3.606-1.984,4.797c-0.282,0.646-1.17,2.568-1.17,2.568"/>
  1518. <path fill="#DFDFDD" d="M365.168,697.296l13.237,14.691c0,0-0.973-0.613-1.28-0.842c-0.263-0.193-0.755-0.611-0.996-0.826 c-0.197-0.178-0.783-0.717-0.783-0.717s-1.01-0.955-1.326-1.287c-1.064-1.104-3.111-3.381-4.09-4.56 c-0.828-0.996-2.438-3.031-3.221-4.065c-0.427-0.563-1.673-2.279-1.673-2.279"/>
  1519. <path fill="#DFDFDD" d="M364.565,695.158l-19.768,0.617c0,0,1.096-0.351,1.473-0.437c0.311-0.073,0.949-0.184,1.27-0.229 c0.269-0.037,1.058-0.137,1.058-0.137s1.379-0.154,1.838-0.187c1.525-0.098,4.588-0.187,6.123-0.176 c1.295,0.012,3.887,0.102,5.184,0.172c0.705,0.043,2.82,0.194,2.82,0.194"/>
  1520. </g>
  1521. <animateTransform restart="always" from="0 366 695.943" dur="4s" to="359 366 695.943" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  1522. </animateTransform>
  1523. </g>
  1524. <g>
  1525. <path fill="#63A5BA" d="M363.022,695.937c-0.006,1.435,1.201,2.604,2.695,2.609c1.5,0.004,2.717-1.158,2.723-2.59 c0.006-1.438-1.203-2.604-2.701-2.613C364.24,693.341,363.028,694.497,363.022,695.937"/>
  1526. </g>
  1527. <g>
  1528. <path fill="#B6D6DE" d="M364,695.943c-0.003,0.893,0.77,1.618,1.723,1.625c0.951,0.004,1.731-0.724,1.733-1.613 c0.005-0.896-0.77-1.623-1.723-1.627C364.781,694.326,364.004,695.046,364,695.943"/>
  1529. </g>
  1530. </g>
  1531. </g>
  1532. <g id="_x23_62">
  1533. <g>
  1534. <path fill="#DFDFDD" d="M318.395,695.943l-1.379,28.776c0,0,1.094,0.433,2.063,0.437c0.996,0.004,2.148-0.422,2.148-0.422 l-1.139-28.783L318.395,695.943L318.395,695.943z"/>
  1535. </g>
  1536. <g>
  1537. <g transform="rotate(91.5214 319 695.943)">
  1538. <g>
  1539. <path fill="#3E4484" d="M318.095,694.891l2.203,0.854c0,0,5.842-12.162,6.268-18.754 C322.253,682.209,318.095,694.891,318.095,694.891"/>
  1540. <path fill="#3E4484" d="M320.184,695.744l-1.814,1.51c0,0,7.771,11.027,13.322,14.617 C329.233,705.552,320.184,695.744,320.184,695.744"/>
  1541. <path fill="#3E4484" d="M318.27,697.322l0.021-2.361c0,0-13.438-1.197-19.766,0.729 C304.933,697.891,318.27,697.322,318.27,697.322"/>
  1542. </g>
  1543. <g>
  1544. <path fill="#DFDFDD" d="M320.19,695.459l6.377-18.719c0,0-0.061,1.146-0.111,1.525c-0.038,0.321-0.163,0.956-0.231,1.274 c-0.062,0.258-0.246,1.033-0.246,1.033s-0.342,1.344-0.475,1.785c-0.443,1.467-1.438,4.358-1.986,5.789 c-0.467,1.211-1.461,3.606-1.984,4.797c-0.28,0.646-1.17,2.568-1.17,2.568"/>
  1545. <path fill="#DFDFDD" d="M318.669,697.296l13.237,14.691c0,0-0.973-0.613-1.28-0.842c-0.263-0.193-0.755-0.611-0.996-0.826 c-0.197-0.178-0.785-0.717-0.785-0.717s-1.008-0.955-1.324-1.287c-1.064-1.104-3.111-3.381-4.09-4.56 c-0.828-0.996-2.438-3.031-3.221-4.065c-0.427-0.563-1.673-2.279-1.673-2.279"/>
  1546. <path fill="#DFDFDD" d="M318.065,695.158l-19.768,0.617c0,0,1.094-0.351,1.473-0.437c0.311-0.073,0.949-0.184,1.27-0.229 c0.269-0.037,1.06-0.137,1.06-0.137s1.377-0.154,1.836-0.187c1.524-0.098,4.588-0.187,6.123-0.176 c1.295,0.012,3.887,0.102,5.185,0.172c0.705,0.043,2.82,0.194,2.82,0.194"/>
  1547. </g>
  1548. <animateTransform restart="always" from="0 319 695.943" dur="4s" to="359 319 695.943" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  1549. </animateTransform>
  1550. </g>
  1551. <g>
  1552. <path fill="#63A5BA" d="M316.522,695.937c-0.006,1.435,1.201,2.604,2.695,2.609c1.5,0.004,2.717-1.158,2.723-2.59 c0.006-1.438-1.203-2.604-2.703-2.613C317.74,693.341,316.526,694.497,316.522,695.937"/>
  1553. </g>
  1554. <g>
  1555. <path fill="#B6D6DE" d="M317.503,695.943c-0.005,0.893,0.768,1.618,1.721,1.625c0.951,0.004,1.731-0.724,1.733-1.613 c0.005-0.896-0.77-1.623-1.723-1.627C318.281,694.326,317.505,695.046,317.503,695.943"/>
  1556. </g>
  1557. </g>
  1558. </g>
  1559. <g id="_x23_64">
  1560. <g>
  1561. <path fill="#DFDFDD" d="M414.663,695.943l-1.379,28.776c0,0,1.095,0.433,2.063,0.437c0.996,0.004,2.147-0.422,2.147-0.422 l-1.142-28.783L414.663,695.943L414.663,695.943z"/>
  1562. </g>
  1563. <g>
  1564. <g transform="rotate(91.5214 415 695.943)">
  1565. <g>
  1566. <path fill="#3E4484" d="M414.36,694.891l2.205,0.854c0,0,5.843-12.162,6.27-18.754 C418.518,682.209,414.36,694.891,414.36,694.891"/>
  1567. <path fill="#3E4484" d="M416.452,695.744l-1.813,1.51c0,0,7.77,11.027,13.322,14.617 C425.502,705.552,416.452,695.744,416.452,695.744"/>
  1568. <path fill="#3E4484" d="M414.538,697.322l0.021-2.361c0,0-13.438-1.197-19.766,0.729 C401.2,697.891,414.538,697.322,414.538,697.322"/>
  1569. </g>
  1570. <g>
  1571. <path fill="#DFDFDD" d="M416.459,695.459l6.377-18.719c0,0-0.063,1.146-0.111,1.525c-0.038,0.321-0.163,0.956-0.232,1.274 c-0.061,0.258-0.246,1.033-0.246,1.033s-0.34,1.344-0.474,1.785c-0.446,1.467-1.438,4.358-1.987,5.789 c-0.467,1.211-1.461,3.606-1.983,4.797c-0.283,0.646-1.17,2.568-1.17,2.568"/>
  1572. <path fill="#DFDFDD" d="M414.936,697.296l13.238,14.691c0,0-0.974-0.613-1.281-0.842c-0.262-0.193-0.754-0.611-0.995-0.826 c-0.196-0.178-0.785-0.717-0.785-0.717s-1.008-0.955-1.323-1.287c-1.065-1.104-3.11-3.381-4.09-4.56 c-0.828-0.996-2.438-3.031-3.222-4.065c-0.426-0.563-1.674-2.279-1.674-2.279"/>
  1573. <path fill="#DFDFDD" d="M414.334,695.158l-19.77,0.617c0,0,1.095-0.351,1.472-0.437c0.312-0.073,0.95-0.184,1.271-0.229 c0.267-0.037,1.055-0.137,1.055-0.137s1.378-0.154,1.839-0.187c1.526-0.098,4.588-0.187,6.123-0.176 c1.295,0.012,3.888,0.102,5.185,0.172c0.705,0.043,2.817,0.194,2.817,0.194"/>
  1574. </g>
  1575. <animateTransform restart="always" from="0 415 695.943" dur="4s" to="359 415 695.943" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  1576. </animateTransform>
  1577. </g>
  1578. <g>
  1579. <path fill="#63A5BA" d="M412.79,695.937c-0.008,1.435,1.201,2.604,2.694,2.609c1.498,0.004,2.716-1.158,2.722-2.59 c0.007-1.438-1.202-2.604-2.7-2.613C414.009,693.341,412.795,694.497,412.79,695.937"/>
  1580. </g>
  1581. <g>
  1582. <path fill="#B6D6DE" d="M413.768,695.943c-0.002,0.893,0.771,1.618,1.722,1.625c0.952,0.004,1.732-0.724,1.735-1.613 c0.002-0.896-0.771-1.623-1.723-1.627C414.55,694.326,413.772,695.046,413.768,695.943"/>
  1583. </g>
  1584. </g>
  1585. </g>
  1586. <g id="_x23_65">
  1587. <g>
  1588. <path fill="#DFDFDD" d="M463.122,695.943l-1.379,28.776c0,0,1.095,0.433,2.063,0.437c0.996,0.004,2.147-0.422,2.147-0.422 l-1.142-28.783L463.122,695.943L463.122,695.943z"/>
  1589. </g>
  1590. <g>
  1591. <g transform="rotate(91.5214 464 695.943)">
  1592. <g>
  1593. <path fill="#3E4484" d="M462.82,694.891l2.202,0.854c0,0,5.845-12.162,6.271-18.754 C466.978,682.209,462.82,694.891,462.82,694.891"/>
  1594. <path fill="#3E4484" d="M464.911,695.744l-1.813,1.51c0,0,7.771,11.027,13.322,14.617 C473.961,705.552,464.911,695.744,464.911,695.744"/>
  1595. <path fill="#3E4484" d="M462.997,697.322l0.021-2.361c0,0-13.438-1.197-19.766,0.729 C449.659,697.891,462.997,697.322,462.997,697.322"/>
  1596. </g>
  1597. <g>
  1598. <path fill="#DFDFDD" d="M464.918,695.459l6.377-18.719c0,0-0.063,1.146-0.111,1.525c-0.038,0.321-0.163,0.956-0.233,1.274 c-0.06,0.258-0.246,1.033-0.246,1.033s-0.34,1.344-0.473,1.785c-0.445,1.467-1.438,4.358-1.988,5.789 c-0.467,1.211-1.461,3.606-1.983,4.797c-0.281,0.646-1.17,2.568-1.17,2.568"/>
  1599. <path fill="#DFDFDD" d="M463.394,697.296l13.24,14.691c0,0-0.976-0.613-1.283-0.842c-0.262-0.193-0.752-0.611-0.996-0.826 c-0.194-0.178-0.782-0.717-0.782-0.717s-1.011-0.955-1.324-1.287c-1.063-1.104-3.11-3.381-4.09-4.56 c-0.828-0.996-2.438-3.031-3.222-4.065c-0.428-0.563-1.674-2.279-1.674-2.279"/>
  1600. <path fill="#DFDFDD" d="M462.793,695.158l-19.771,0.617c0,0,1.097-0.351,1.476-0.437c0.312-0.073,0.947-0.184,1.271-0.229 c0.267-0.037,1.056-0.137,1.056-0.137s1.379-0.154,1.84-0.187c1.525-0.098,4.589-0.187,6.121-0.176 c1.295,0.012,3.89,0.102,5.185,0.172c0.707,0.043,2.819,0.194,2.819,0.194"/>
  1601. </g>
  1602. <animateTransform restart="always" from="0 464 695.943" dur="4s" to="359 464 695.943" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  1603. </animateTransform>
  1604. </g>
  1605. <g>
  1606. <path fill="#63A5BA" d="M461.25,695.937c-0.007,1.435,1.2,2.604,2.692,2.609c1.5,0.004,2.717-1.158,2.726-2.59 c0.006-1.438-1.203-2.604-2.703-2.613C462.469,693.341,461.254,694.497,461.25,695.937"/>
  1607. </g>
  1608. <g>
  1609. <path fill="#B6D6DE" d="M462.228,695.943c-0.004,0.893,0.771,1.618,1.722,1.625c0.95,0.004,1.731-0.724,1.733-1.613 c0.004-0.896-0.771-1.623-1.723-1.627C463.01,694.326,462.23,695.046,462.228,695.943"/>
  1610. </g>
  1611. </g>
  1612. </g>
  1613. <g id="_x23_66">
  1614. <g>
  1615. <path fill="#DFDFDD" d="M509.684,695.943l-1.379,28.776c0,0,1.095,0.433,2.063,0.437c0.996,0.004,2.147-0.422,2.147-0.422 l-1.142-28.783L509.684,695.943L509.684,695.943z"/>
  1616. </g>
  1617. <g>
  1618. <g transform="rotate(91.5214 510 695.943)">
  1619. <g>
  1620. <path fill="#3E4484" d="M509.385,694.891l2.203,0.854c0,0,5.842-12.162,6.269-18.754 C513.543,682.209,509.385,694.891,509.385,694.891"/>
  1621. <path fill="#3E4484" d="M511.474,695.744l-1.813,1.51c0,0,7.767,11.027,13.318,14.617 C520.523,705.552,511.474,695.744,511.474,695.744"/>
  1622. <path fill="#3E4484" d="M509.559,697.322l0.021-2.361c0,0-13.438-1.197-19.767,0.729 C496.224,697.891,509.559,697.322,509.559,697.322"/>
  1623. </g>
  1624. <g>
  1625. <path fill="#DFDFDD" d="M511.48,695.459l6.377-18.719c0,0-0.062,1.146-0.11,1.525c-0.039,0.321-0.164,0.956-0.233,1.274 c-0.06,0.258-0.246,1.033-0.246,1.033s-0.34,1.344-0.473,1.785c-0.445,1.467-1.438,4.358-1.988,5.789 c-0.467,1.211-1.461,3.606-1.983,4.797c-0.279,0.646-1.17,2.568-1.17,2.568"/>
  1626. <path fill="#DFDFDD" d="M509.959,697.296l13.236,14.691c0,0-0.974-0.613-1.279-0.842c-0.264-0.193-0.755-0.611-0.994-0.826 c-0.199-0.178-0.785-0.717-0.785-0.717s-1.01-0.955-1.325-1.287c-1.063-1.104-3.11-3.381-4.091-4.56 c-0.828-0.996-2.438-3.031-3.221-4.065c-0.428-0.563-1.673-2.279-1.673-2.279"/>
  1627. <path fill="#DFDFDD" d="M509.355,695.158l-19.769,0.617c0,0,1.096-0.351,1.473-0.437c0.313-0.073,0.949-0.184,1.271-0.229 c0.267-0.037,1.058-0.137,1.058-0.137s1.377-0.154,1.838-0.187c1.525-0.098,4.587-0.187,6.121-0.176 c1.295,0.012,3.888,0.102,5.186,0.172c0.704,0.043,2.818,0.194,2.818,0.194"/>
  1628. </g>
  1629. <animateTransform restart="always" from="0 510 695.943" dur="4s" to="359 510 695.943" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  1630. </animateTransform>
  1631. </g>
  1632. <g>
  1633. <path fill="#63A5BA" d="M507.812,695.937c-0.007,1.435,1.2,2.604,2.696,2.609c1.498,0.004,2.713-1.158,2.72-2.59 c0.006-1.438-1.201-2.604-2.701-2.613C509.03,693.341,507.818,694.497,507.812,695.937"/>
  1634. </g>
  1635. <g>
  1636. <path fill="#B6D6DE" d="M508.793,695.943c-0.005,0.893,0.769,1.618,1.719,1.625c0.953,0.004,1.733-0.724,1.735-1.613 c0.005-0.896-0.771-1.623-1.724-1.627C509.571,694.326,508.795,695.046,508.793,695.943"/>
  1637. </g>
  1638. </g>
  1639. </g>
  1640. <g id="_x23_67">
  1641. <g>
  1642. <path fill="#DFDFDD" d="M1223.775,72.667l-1.377,28.778c0,0,1.094,0.431,2.062,0.435c0.998,0.004,2.149-0.422,2.149-0.422 l-1.143-28.783L1223.775,72.667L1223.775,72.667z"/>
  1643. </g>
  1644. <g>
  1645. <g transform="rotate(91.5214 1224 72.6669)">
  1646. <g>
  1647. <path fill="#3E4484" d="M1223.472,71.616l2.203,0.852c0,0,5.844-12.162,6.271-18.754 C1227.63,58.933,1223.472,71.616,1223.472,71.616"/>
  1648. <path fill="#3E4484" d="M1225.564,72.466l-1.813,1.51c0,0,7.77,11.027,13.322,14.617 C1234.614,82.276,1225.564,72.466,1225.564,72.466"/>
  1649. <path fill="#3E4484" d="M1223.651,74.045l0.021-2.361c0,0-13.44-1.197-19.767,0.729 C1210.314,74.616,1223.651,74.045,1223.651,74.045"/>
  1650. </g>
  1651. <g>
  1652. <path fill="#DFDFDD" d="M1225.571,72.183l6.377-18.719c0,0-0.063,1.147-0.11,1.527c-0.041,0.321-0.164,0.956-0.236,1.274 c-0.057,0.258-0.244,1.033-0.244,1.033s-0.34,1.344-0.473,1.785c-0.445,1.467-1.438,4.36-1.99,5.789 c-0.465,1.211-1.461,3.608-1.979,4.797c-0.283,0.646-1.173,2.57-1.173,2.57"/>
  1653. <path fill="#DFDFDD" d="M1224.048,74.021l13.237,14.691c0,0-0.977-0.613-1.28-0.842c-0.263-0.193-0.755-0.611-0.996-0.826 c-0.197-0.176-0.785-0.717-0.785-0.717s-1.01-0.955-1.324-1.287c-1.063-1.103-3.108-3.381-4.09-4.558 c-0.826-0.996-2.438-3.032-3.221-4.067c-0.429-0.563-1.674-2.279-1.674-2.279"/>
  1654. <path fill="#DFDFDD" d="M1223.444,71.881l-19.77,0.617c0,0,1.098-0.349,1.475-0.435c0.311-0.073,0.95-0.184,1.271-0.229 c0.267-0.037,1.056-0.135,1.056-0.135s1.377-0.156,1.838-0.187c1.526-0.098,4.588-0.186,6.121-0.176 c1.297,0.012,3.89,0.102,5.185,0.172c0.707,0.043,2.819,0.195,2.819,0.195"/>
  1655. </g>
  1656. <animateTransform restart="always" from="0 1224 72.667" dur="4s" to="359 1224 72.667" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  1657. </animateTransform>
  1658. </g>
  1659. <g>
  1660. <path fill="#63A5BA" d="M1221.903,72.661c-0.01,1.434,1.197,2.604,2.693,2.61c1.498,0.004,2.715-1.158,2.723-2.59 c0.006-1.438-1.203-2.604-2.701-2.613C1223.12,70.065,1221.906,71.219,1221.903,72.661"/>
  1661. </g>
  1662. <g>
  1663. <path fill="#B6D6DE" d="M1222.88,72.667c-0.002,0.893,0.771,1.619,1.721,1.625c0.953,0.004,1.733-0.722,1.733-1.613 c0.005-0.895-0.771-1.623-1.721-1.627C1223.661,71.048,1222.884,71.771,1222.88,72.667"/>
  1664. </g>
  1665. </g>
  1666. </g>
  1667. <g id="_x23_68">
  1668. <g>
  1669. <path fill="#DFDFDD" d="M1275.818,72.667l-1.379,28.778c0,0,1.098,0.431,2.063,0.435c0.995,0.004,2.146-0.422,2.146-0.422 l-1.14-28.783L1275.818,72.667L1275.818,72.667z"/>
  1670. </g>
  1671. <g>
  1672. <g transform="rotate(91.5214 1276 72.6669)">
  1673. <g>
  1674. <path fill="#3E4484" d="M1275.517,71.615l2.203,0.853c0,0,5.842-12.162,6.268-18.754 C1279.675,58.934,1275.517,71.615,1275.517,71.615"/>
  1675. <path fill="#3E4484" d="M1277.607,72.466l-1.813,1.51c0,0,7.768,11.027,13.319,14.617 C1286.657,82.276,1277.607,72.466,1277.607,72.466"/>
  1676. <path fill="#3E4484" d="M1275.693,74.045l0.021-2.361c0,0-13.439-1.197-19.767,0.729 C1262.357,74.615,1275.693,74.045,1275.693,74.045"/>
  1677. </g>
  1678. <g>
  1679. <path fill="#DFDFDD" d="M1277.613,72.184l6.379-18.719c0,0-0.063,1.147-0.11,1.526c-0.041,0.322-0.166,0.957-0.235,1.275 c-0.06,0.258-0.246,1.033-0.246,1.033s-0.34,1.344-0.471,1.785c-0.447,1.467-1.438,4.36-1.99,5.789 c-0.465,1.211-1.461,3.608-1.982,4.797c-0.28,0.646-1.171,2.569-1.171,2.569"/>
  1680. <path fill="#DFDFDD" d="M1276.093,74.021l13.235,14.691c0,0-0.975-0.613-1.28-0.843c-0.263-0.192-0.755-0.61-0.994-0.825 c-0.199-0.177-0.787-0.718-0.787-0.718s-1.008-0.954-1.324-1.286c-1.063-1.103-3.108-3.382-4.09-4.558 c-0.828-0.996-2.437-3.033-3.219-4.067c-0.429-0.563-1.674-2.279-1.674-2.279"/>
  1681. <path fill="#DFDFDD" d="M1275.488,71.881l-19.77,0.617c0,0,1.097-0.349,1.474-0.435c0.313-0.074,0.949-0.184,1.271-0.229 c0.267-0.037,1.058-0.136,1.058-0.136s1.377-0.155,1.836-0.186c1.526-0.098,4.59-0.187,6.123-0.176 c1.297,0.012,3.888,0.102,5.186,0.172c0.704,0.043,2.818,0.195,2.818,0.195"/>
  1682. </g>
  1683. <animateTransform restart="always" from="0 1276 72.667" dur="4s" to="359 1276 72.667" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  1684. </animateTransform>
  1685. </g>
  1686. <g>
  1687. <path fill="#63A5BA" d="M1273.944,72.66c-0.006,1.435,1.201,2.605,2.695,2.611c1.5,0.004,2.717-1.158,2.723-2.59 c0.008-1.439-1.201-2.604-2.699-2.613C1275.162,70.065,1273.95,71.221,1273.944,72.66"/>
  1688. </g>
  1689. <g>
  1690. <path fill="#B6D6DE" d="M1274.925,72.667c-0.004,0.893,0.768,1.618,1.721,1.625c0.951,0.004,1.732-0.722,1.734-1.613 c0.004-0.896-0.771-1.623-1.724-1.627C1275.705,71.048,1274.927,71.771,1274.925,72.667"/>
  1691. </g>
  1692. </g>
  1693. </g>
  1694. <g id="_x23_69">
  1695. <g>
  1696. <path fill="#DFDFDD" d="M1326.862,72.667l-1.377,28.778c0,0,1.094,0.431,2.063,0.435c0.996,0.004,2.146-0.422,2.146-0.422 l-1.141-28.783L1326.862,72.667L1326.862,72.667z"/>
  1697. </g>
  1698. <g>
  1699. <g transform="rotate(91.5214 1327 72.6669)">
  1700. <g>
  1701. <path fill="#3E4484" d="M1326.562,71.615l2.203,0.853c0,0,5.844-12.162,6.271-18.754 C1330.719,58.934,1326.562,71.615,1326.562,71.615"/>
  1702. <path fill="#3E4484" d="M1328.651,72.466l-1.813,1.51c0,0,7.768,11.027,13.32,14.617 C1337.701,82.276,1328.651,72.466,1328.651,72.466"/>
  1703. <path fill="#3E4484" d="M1326.739,74.045l0.021-2.361c0,0-13.438-1.197-19.768,0.729 C1313.401,74.615,1326.739,74.045,1326.739,74.045"/>
  1704. </g>
  1705. <g>
  1706. <path fill="#DFDFDD" d="M1328.657,72.184l6.378-18.719c0,0-0.063,1.147-0.11,1.526c-0.04,0.322-0.165,0.957-0.236,1.275 c-0.058,0.258-0.243,1.033-0.243,1.033s-0.341,1.344-0.474,1.785c-0.447,1.467-1.438,4.36-1.99,5.789 c-0.465,1.211-1.461,3.608-1.979,4.797c-0.283,0.646-1.172,2.569-1.172,2.569"/>
  1707. <path fill="#DFDFDD" d="M1327.137,74.021l13.238,14.691c0,0-0.977-0.613-1.282-0.843c-0.263-0.192-0.753-0.61-0.994-0.825 c-0.197-0.177-0.785-0.718-0.785-0.718s-1.01-0.954-1.325-1.286c-1.063-1.103-3.109-3.382-4.091-4.558 c-0.826-0.996-2.437-3.033-3.219-4.067c-0.429-0.563-1.675-2.279-1.675-2.279"/>
  1708. <path fill="#DFDFDD" d="M1326.532,71.881l-19.771,0.617c0,0,1.098-0.349,1.475-0.435c0.312-0.074,0.951-0.184,1.271-0.229 c0.265-0.037,1.056-0.136,1.056-0.136s1.377-0.155,1.838-0.186c1.525-0.098,4.589-0.187,6.121-0.176 c1.297,0.012,3.89,0.102,5.185,0.172c0.707,0.043,2.819,0.195,2.819,0.195"/>
  1709. </g>
  1710. <animateTransform restart="always" from="0 1327 72.667" dur="4s" to="359 1327 72.667" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  1711. </animateTransform>
  1712. </g>
  1713. <g>
  1714. <path fill="#63A5BA" d="M1324.989,72.66c-0.006,1.435,1.201,2.605,2.697,2.611c1.496,0.004,2.715-1.158,2.721-2.59 c0.006-1.439-1.203-2.604-2.701-2.613C1326.207,70.065,1324.994,71.221,1324.989,72.66"/>
  1715. </g>
  1716. <g>
  1717. <path fill="#B6D6DE" d="M1325.969,72.667c-0.002,0.893,0.771,1.618,1.722,1.625c0.953,0.004,1.732-0.722,1.734-1.613 c0.003-0.896-0.771-1.623-1.723-1.627C1326.75,71.048,1325.972,71.771,1325.969,72.667"/>
  1718. </g>
  1719. </g>
  1720. </g>
  1721. <g id="_x23_70">
  1722. <g>
  1723. <path fill="#DFDFDD" d="M1371.347,72.667l-1.377,28.778c0,0,1.094,0.431,2.063,0.435c0.995,0.004,2.147-0.422,2.147-0.422 l-1.141-28.783L1371.347,72.667L1371.347,72.667z"/>
  1724. </g>
  1725. <g>
  1726. <g transform="rotate(91.5214 1372 72.6669)">
  1727. <g>
  1728. <path fill="#3E4484" d="M1371.047,71.615l2.203,0.853c0,0,5.844-12.162,6.271-18.754 C1375.204,58.934,1371.047,71.615,1371.047,71.615"/>
  1729. <path fill="#3E4484" d="M1373.138,72.466l-1.813,1.51c0,0,7.77,11.027,13.321,14.617 C1382.187,82.276,1373.138,72.466,1373.138,72.466"/>
  1730. <path fill="#3E4484" d="M1371.224,74.045l0.021-2.361c0,0-13.44-1.197-19.77,0.729 C1357.886,74.615,1371.224,74.045,1371.224,74.045"/>
  1731. </g>
  1732. <g>
  1733. <path fill="#DFDFDD" d="M1373.144,72.184l6.377-18.719c0,0-0.063,1.147-0.109,1.526c-0.038,0.322-0.163,0.957-0.235,1.275 c-0.059,0.258-0.244,1.033-0.244,1.033s-0.34,1.344-0.473,1.785c-0.447,1.467-1.439,4.36-1.99,5.789 c-0.465,1.211-1.461,3.608-1.982,4.797c-0.281,0.646-1.17,2.569-1.17,2.569"/>
  1734. <path fill="#DFDFDD" d="M1371.623,74.021l13.236,14.691c0,0-0.976-0.613-1.279-0.843c-0.264-0.192-0.756-0.61-0.996-0.825 c-0.197-0.177-0.785-0.718-0.785-0.718s-1.008-0.954-1.326-1.286c-1.063-1.103-3.108-3.382-4.09-4.558 c-0.826-0.996-2.438-3.033-3.219-4.067c-0.43-0.563-1.676-2.279-1.676-2.279"/>
  1735. <path fill="#DFDFDD" d="M1371.019,71.881l-19.771,0.617c0,0,1.097-0.349,1.474-0.435c0.312-0.074,0.951-0.184,1.271-0.229 c0.265-0.037,1.056-0.136,1.056-0.136s1.377-0.155,1.838-0.186c1.526-0.098,4.588-0.187,6.123-0.176 c1.295,0.012,3.887,0.102,5.182,0.172c0.707,0.043,2.82,0.195,2.82,0.195"/>
  1736. </g>
  1737. <animateTransform restart="always" from="0 1372 72.667" dur="4s" to="359 1372 72.667" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  1738. </animateTransform>
  1739. </g>
  1740. <g>
  1741. <path fill="#63A5BA" d="M1369.474,72.66c-0.006,1.435,1.203,2.605,2.697,2.611c1.498,0.004,2.715-1.158,2.721-2.59 c0.006-1.439-1.203-2.604-2.701-2.613C1370.694,70.065,1369.48,71.221,1369.474,72.66"/>
  1742. </g>
  1743. <g>
  1744. <path fill="#B6D6DE" d="M1370.454,72.667c-0.002,0.893,0.771,1.618,1.722,1.625c0.953,0.004,1.733-0.722,1.735-1.613 c0.002-0.896-0.771-1.623-1.724-1.627C1371.235,71.048,1370.459,71.771,1370.454,72.667"/>
  1745. </g>
  1746. </g>
  1747. </g>
  1748. <g id="_x23_72">
  1749. <g>
  1750. <path fill="#DFDFDD" d="M1469.089,72.667l-1.378,28.778c0,0,1.093,0.431,2.063,0.435c0.994,0.004,2.146-0.422,2.146-0.422 l-1.142-28.783L1469.089,72.667L1469.089,72.667z"/>
  1751. </g>
  1752. <g>
  1753. <g transform="rotate(91.5214 1470 72.6669)">
  1754. <g>
  1755. <path fill="#3E4484" d="M1468.788,71.615l2.203,0.853c0,0,5.843-12.162,6.269-18.754 C1472.948,58.934,1468.788,71.615,1468.788,71.615"/>
  1756. <path fill="#3E4484" d="M1470.878,72.466l-1.813,1.51c0,0,7.768,11.027,13.319,14.617 C1479.927,82.276,1470.878,72.466,1470.878,72.466"/>
  1757. <path fill="#3E4484" d="M1468.964,74.045l0.021-2.361c0,0-13.438-1.197-19.768,0.729 C1455.627,74.615,1468.964,74.045,1468.964,74.045"/>
  1758. </g>
  1759. <g>
  1760. <path fill="#DFDFDD" d="M1470.884,72.184l6.377-18.719c0,0-0.062,1.147-0.109,1.526c-0.039,0.322-0.164,0.957-0.233,1.275 c-0.062,0.258-0.246,1.033-0.246,1.033s-0.34,1.344-0.474,1.785c-0.444,1.467-1.438,4.36-1.987,5.789 c-0.467,1.211-1.462,3.608-1.982,4.797c-0.283,0.646-1.172,2.569-1.172,2.569"/>
  1761. <path fill="#DFDFDD" d="M1469.364,74.021l13.236,14.691c0,0-0.973-0.613-1.279-0.843c-0.264-0.192-0.754-0.61-0.996-0.825 c-0.197-0.177-0.784-0.718-0.784-0.718s-1.009-0.954-1.324-1.286c-1.063-1.103-3.109-3.382-4.091-4.558 c-0.827-0.996-2.438-3.033-3.221-4.067c-0.428-0.563-1.673-2.279-1.673-2.279"/>
  1762. <path fill="#DFDFDD" d="M1468.759,71.881l-19.769,0.617c0,0,1.096-0.349,1.473-0.435c0.313-0.074,0.949-0.184,1.271-0.229 c0.267-0.037,1.057-0.136,1.057-0.136s1.378-0.155,1.838-0.186c1.525-0.098,4.588-0.187,6.122-0.176 c1.295,0.012,3.888,0.102,5.185,0.172c0.705,0.043,2.819,0.195,2.819,0.195"/>
  1763. </g>
  1764. <animateTransform restart="always" from="0 1470 72.667" dur="4s" to="359 1470 72.667" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  1765. </animateTransform>
  1766. </g>
  1767. <g>
  1768. <path fill="#63A5BA" d="M1467.216,72.66c-0.007,1.435,1.2,2.605,2.694,2.611c1.499,0.004,2.716-1.158,2.723-2.59 c0.007-1.439-1.202-2.604-2.701-2.613C1468.435,70.065,1467.221,71.221,1467.216,72.66"/>
  1769. </g>
  1770. <g>
  1771. <path fill="#B6D6DE" d="M1468.197,72.667c-0.003,0.893,0.77,1.618,1.722,1.625c0.951,0.004,1.732-0.722,1.734-1.613 c0.004-0.896-0.771-1.623-1.725-1.627C1468.976,71.048,1468.199,71.771,1468.197,72.667"/>
  1772. </g>
  1773. </g>
  1774. </g>
  1775. <g id="_x23_71">
  1776. <g>
  1777. <path fill="#DFDFDD" d="M1418.644,72.667l-1.379,28.778c0,0,1.096,0.431,2.063,0.435c0.995,0.004,2.146-0.422,2.146-0.422 l-1.14-28.783L1418.644,72.667L1418.644,72.667z"/>
  1778. </g>
  1779. <g>
  1780. <g transform="rotate(91.5214 1419 72.6669)">
  1781. <g>
  1782. <path fill="#3E4484" d="M1418.343,71.615l2.202,0.853c0,0,5.843-12.162,6.269-18.754 C1422.5,58.934,1418.343,71.615,1418.343,71.615"/>
  1783. <path fill="#3E4484" d="M1420.433,72.466l-1.813,1.51c0,0,7.771,11.027,13.322,14.617 C1429.482,82.276,1420.433,72.466,1420.433,72.466"/>
  1784. <path fill="#3E4484" d="M1418.519,74.045l0.021-2.361c0,0-13.438-1.197-19.766,0.729 C1405.181,74.615,1418.519,74.045,1418.519,74.045"/>
  1785. </g>
  1786. <g>
  1787. <path fill="#DFDFDD" d="M1420.439,72.184l6.379-18.719c0,0-0.063,1.147-0.11,1.526c-0.039,0.322-0.164,0.957-0.234,1.275 c-0.059,0.258-0.244,1.033-0.244,1.033s-0.342,1.344-0.475,1.785c-0.445,1.467-1.438,4.36-1.988,5.789 c-0.466,1.211-1.461,3.608-1.982,4.797c-0.281,0.646-1.17,2.569-1.17,2.569"/>
  1788. <path fill="#DFDFDD" d="M1418.916,74.021l13.238,14.691c0,0-0.975-0.613-1.281-0.843c-0.262-0.192-0.754-0.61-0.995-0.825 c-0.197-0.177-0.785-0.718-0.785-0.718s-1.009-0.954-1.324-1.286c-1.063-1.103-3.109-3.382-4.09-4.558 c-0.828-0.996-2.438-3.033-3.221-4.067c-0.427-0.563-1.673-2.279-1.673-2.279"/>
  1789. <path fill="#DFDFDD" d="M1418.314,71.881l-19.768,0.617c0,0,1.094-0.349,1.473-0.435c0.312-0.074,0.949-0.184,1.271-0.229 c0.267-0.037,1.058-0.136,1.058-0.136s1.377-0.155,1.836-0.186c1.527-0.098,4.59-0.187,6.123-0.176 c1.295,0.012,3.889,0.102,5.187,0.172c0.704,0.043,2.819,0.195,2.819,0.195"/>
  1790. </g>
  1791. <animateTransform restart="always" from="0 1419 72.667" dur="4s" to="359 1419 72.667" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  1792. </animateTransform>
  1793. </g>
  1794. <g>
  1795. <path fill="#63A5BA" d="M1416.771,72.66c-0.006,1.435,1.201,2.605,2.695,2.611c1.499,0.004,2.716-1.158,2.723-2.59 c0.006-1.439-1.203-2.604-2.701-2.613C1417.99,70.065,1416.776,71.221,1416.771,72.66"/>
  1796. </g>
  1797. <g>
  1798. <path fill="#B6D6DE" d="M1417.75,72.667c-0.004,0.893,0.769,1.618,1.721,1.625c0.952,0.004,1.732-0.722,1.734-1.613 c0.004-0.896-0.771-1.623-1.723-1.627C1418.531,71.048,1417.753,71.771,1417.75,72.667"/>
  1799. </g>
  1800. </g>
  1801. </g>
  1802. <g id="_x23_73">
  1803. <g>
  1804. <path fill="#DFDFDD" d="M1517.568,72.667l-1.379,28.778c0,0,1.095,0.431,2.063,0.435c0.995,0.004,2.146-0.422,2.146-0.422 l-1.141-28.783L1517.568,72.667L1517.568,72.667z"/>
  1805. </g>
  1806. <g>
  1807. <g transform="rotate(91.5214 1518 72.6669)">
  1808. <g>
  1809. <path fill="#3E4484" d="M1517.265,71.615l2.204,0.853c0,0,5.843-12.162,6.27-18.754 C1521.423,58.934,1517.265,71.615,1517.265,71.615"/>
  1810. <path fill="#3E4484" d="M1519.357,72.466l-1.813,1.51c0,0,7.77,11.027,13.32,14.617 C1528.406,82.276,1519.357,72.466,1519.357,72.466"/>
  1811. <path fill="#3E4484" d="M1517.443,74.045l0.021-2.361c0,0-13.438-1.197-19.767,0.729 C1504.105,74.615,1517.443,74.045,1517.443,74.045"/>
  1812. </g>
  1813. <g>
  1814. <path fill="#DFDFDD" d="M1519.363,72.184l6.377-18.719c0,0-0.063,1.147-0.11,1.526c-0.039,0.322-0.164,0.957-0.233,1.275 c-0.06,0.258-0.246,1.033-0.246,1.033s-0.34,1.344-0.474,1.785c-0.444,1.467-1.438,4.36-1.987,5.789 c-0.467,1.211-1.461,3.608-1.983,4.797c-0.281,0.646-1.17,2.569-1.17,2.569"/>
  1815. <path fill="#DFDFDD" d="M1517.84,74.021l13.237,14.691c0,0-0.974-0.613-1.28-0.843c-0.263-0.192-0.754-0.61-0.996-0.825 c-0.196-0.177-0.784-0.718-0.784-0.718s-1.009-0.954-1.324-1.286c-1.064-1.103-3.11-3.382-4.09-4.558 c-0.828-0.996-2.438-3.033-3.222-4.067c-0.427-0.563-1.674-2.279-1.674-2.279"/>
  1816. <path fill="#DFDFDD" d="M1517.238,71.881l-19.77,0.617c0,0,1.095-0.349,1.472-0.435c0.313-0.074,0.951-0.184,1.271-0.229 c0.266-0.037,1.057-0.136,1.057-0.136s1.377-0.155,1.838-0.186c1.525-0.098,4.588-0.187,6.121-0.176 c1.295,0.012,3.889,0.102,5.186,0.172c0.705,0.043,2.816,0.195,2.816,0.195"/>
  1817. </g>
  1818. <animateTransform restart="always" from="0 1518 72.667" dur="4s" to="359 1518 72.667" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  1819. </animateTransform>
  1820. </g>
  1821. <g>
  1822. <path fill="#63A5BA" d="M1515.694,72.66c-0.008,1.435,1.201,2.605,2.694,2.611c1.499,0.004,2.716-1.158,2.724-2.59 c0.006-1.439-1.203-2.604-2.702-2.613C1516.912,70.065,1515.699,71.221,1515.694,72.66"/>
  1823. </g>
  1824. <g>
  1825. <path fill="#B6D6DE" d="M1516.673,72.667c-0.003,0.893,0.77,1.618,1.721,1.625c0.952,0.004,1.733-0.722,1.735-1.613 c0.003-0.896-0.771-1.623-1.725-1.627C1517.453,71.048,1516.676,71.771,1516.673,72.667"/>
  1826. </g>
  1827. </g>
  1828. </g>
  1829. <g id="_x23_74">
  1830. <g>
  1831. <path fill="#DFDFDD" d="M1563.25,72.667l-1.378,28.778c0,0,1.095,0.431,2.063,0.435c0.996,0.004,2.147-0.422,2.147-0.422 l-1.139-28.783L1563.25,72.667L1563.25,72.667z"/>
  1832. </g>
  1833. <g>
  1834. <g transform="rotate(91.5214 1564 72.6669)">
  1835. <g>
  1836. <path fill="#3E4484" d="M1562.951,71.615l2.203,0.853c0,0,5.842-12.162,6.27-18.754 C1567.11,58.934,1562.951,71.615,1562.951,71.615"/>
  1837. <path fill="#3E4484" d="M1565.041,72.466l-1.813,1.51c0,0,7.771,11.027,13.321,14.617 C1574.09,82.276,1565.041,72.466,1565.041,72.466"/>
  1838. <path fill="#3E4484" d="M1563.125,74.045l0.021-2.361c0,0-13.439-1.197-19.768,0.729 C1549.789,74.615,1563.125,74.045,1563.125,74.045"/>
  1839. </g>
  1840. <g>
  1841. <path fill="#DFDFDD" d="M1565.046,72.184l6.377-18.719c0,0-0.062,1.147-0.109,1.526c-0.039,0.322-0.164,0.957-0.234,1.275 c-0.061,0.258-0.245,1.033-0.245,1.033s-0.341,1.344-0.474,1.785c-0.444,1.467-1.438,4.36-1.988,5.789 c-0.466,1.211-1.461,3.608-1.983,4.797c-0.279,0.646-1.17,2.569-1.17,2.569"/>
  1842. <path fill="#DFDFDD" d="M1563.526,74.021l13.238,14.691c0,0-0.975-0.613-1.281-0.843c-0.264-0.192-0.754-0.61-0.996-0.825 c-0.197-0.177-0.784-0.718-0.784-0.718s-1.009-0.954-1.324-1.286c-1.063-1.103-3.109-3.382-4.091-4.558 c-0.827-0.996-2.438-3.033-3.22-4.067c-0.429-0.563-1.675-2.279-1.675-2.279"/>
  1843. <path fill="#DFDFDD" d="M1562.921,71.881l-19.769,0.617c0,0,1.096-0.349,1.474-0.435c0.311-0.074,0.948-0.184,1.27-0.229 c0.269-0.037,1.058-0.136,1.058-0.136s1.379-0.155,1.839-0.186c1.525-0.098,4.588-0.187,6.122-0.176 c1.295,0.012,3.888,0.102,5.186,0.172c0.705,0.043,2.818,0.195,2.818,0.195"/>
  1844. </g>
  1845. <animateTransform restart="always" from="0 1564 72.667" dur="4s" to="359 1564 72.667" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  1846. </animateTransform>
  1847. </g>
  1848. <g>
  1849. <path fill="#63A5BA" d="M1561.378,72.66c-0.007,1.435,1.2,2.605,2.694,2.611c1.498,0.004,2.716-1.158,2.724-2.59 c0.006-1.439-1.203-2.604-2.702-2.613C1562.597,70.065,1561.383,71.221,1561.378,72.66"/>
  1850. </g>
  1851. <g>
  1852. <path fill="#B6D6DE" d="M1562.36,72.667c-0.006,0.893,0.768,1.618,1.72,1.625c0.952,0.004,1.731-0.722,1.733-1.613 c0.006-0.896-0.77-1.623-1.723-1.627C1563.138,71.048,1562.362,71.771,1562.36,72.667"/>
  1853. </g>
  1854. </g>
  1855. </g>
  1856. <g id="_x23_55">
  1857. <g>
  1858. <path fill="#DFDFDD" d="M508.987,572.031l-1.379,28.777c0,0,1.095,0.432,2.063,0.435c0.995,0.004,2.146-0.421,2.146-0.421 l-1.14-28.782L508.987,572.031L508.987,572.031z"/>
  1859. </g>
  1860. <g>
  1861. <g transform="rotate(91.5214 510 572.029)">
  1862. <g>
  1863. <path fill="#3E4484" d="M508.684,570.979l2.205,0.854c0,0,5.843-12.162,6.271-18.756 C512.845,558.296,508.684,570.979,508.684,570.979"/>
  1864. <path fill="#3E4484" d="M510.776,571.833l-1.813,1.508c0,0,7.771,11.027,13.321,14.619 C519.827,581.641,510.776,571.833,510.776,571.833"/>
  1865. <path fill="#3E4484" d="M508.862,573.413l0.021-2.363c0,0-13.438-1.195-19.767,0.729 C495.525,573.978,508.862,573.413,508.862,573.413"/>
  1866. </g>
  1867. <g>
  1868. <path fill="#DFDFDD" d="M510.781,571.548l6.377-18.719c0,0-0.063,1.146-0.107,1.525c-0.041,0.321-0.166,0.959-0.235,1.272 c-0.06,0.26-0.246,1.035-0.246,1.035s-0.34,1.344-0.474,1.785c-0.444,1.467-1.438,4.356-1.987,5.788 c-0.465,1.212-1.461,3.605-1.982,4.796c-0.281,0.647-1.171,2.569-1.171,2.569"/>
  1869. <path fill="#DFDFDD" d="M509.261,573.383l13.237,14.691c0,0-0.975-0.611-1.28-0.843c-0.263-0.19-0.754-0.608-0.996-0.823 c-0.197-0.175-0.785-0.718-0.785-0.718s-1.008-0.952-1.323-1.286c-1.064-1.104-3.107-3.38-4.091-4.562 c-0.827-0.994-2.438-3.031-3.219-4.065c-0.429-0.563-1.674-2.277-1.674-2.277"/>
  1870. <path fill="#DFDFDD" d="M508.656,571.247l-19.769,0.619c0,0,1.095-0.354,1.472-0.438c0.313-0.072,0.951-0.182,1.271-0.227 c0.267-0.037,1.056-0.136,1.056-0.136s1.379-0.155,1.838-0.188c1.526-0.098,4.588-0.187,6.123-0.178 c1.295,0.012,3.888,0.104,5.185,0.174c0.705,0.041,2.817,0.195,2.817,0.195"/>
  1871. </g>
  1872. <animateTransform restart="always" from="0 510 572.029" dur="4s" to="359 510 572.029" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  1873. </animateTransform>
  1874. </g>
  1875. <g>
  1876. <path fill="#63A5BA" d="M507.114,572.025c-0.008,1.435,1.201,2.604,2.697,2.609c1.497,0.002,2.715-1.157,2.721-2.59 c0.007-1.44-1.204-2.604-2.702-2.613C508.334,569.43,507.118,570.586,507.114,572.025"/>
  1877. </g>
  1878. <g>
  1879. <path fill="#B6D6DE" d="M508.093,572.029c-0.004,0.894,0.771,1.621,1.721,1.628c0.953,0.002,1.736-0.721,1.736-1.615 c0.004-0.894-0.771-1.619-1.724-1.627C508.875,570.415,508.095,571.135,508.093,572.029"/>
  1880. </g>
  1881. </g>
  1882. </g>
  1883. <g id="_x23_54">
  1884. <g>
  1885. <path fill="#DFDFDD" d="M462.71,572.278l-1.38,28.777c0,0,1.097,0.432,2.063,0.435c0.998,0.004,2.147-0.421,2.147-0.421 l-1.14-28.782L462.71,572.278L462.71,572.278z"/>
  1886. </g>
  1887. <g>
  1888. <g transform="rotate(91.5214 463 572.276)">
  1889. <g>
  1890. <path fill="#3E4484" d="M462.408,571.226l2.203,0.854c0,0,5.842-12.162,6.269-18.756 C466.568,558.544,462.408,571.226,462.408,571.226"/>
  1891. <path fill="#3E4484" d="M464.498,572.08l-1.813,1.508c0,0,7.769,11.027,13.319,14.619 C473.547,581.888,464.498,572.08,464.498,572.08"/>
  1892. <path fill="#3E4484" d="M462.585,573.66l0.021-2.363c0,0-13.438-1.197-19.767,0.729 C449.248,574.224,462.585,573.66,462.585,573.66"/>
  1893. </g>
  1894. <g>
  1895. <path fill="#DFDFDD" d="M464.504,571.796l6.377-18.719c0,0-0.062,1.146-0.11,1.525c-0.039,0.321-0.164,0.959-0.233,1.272 c-0.06,0.26-0.245,1.035-0.245,1.035s-0.339,1.344-0.472,1.784c-0.447,1.468-1.438,4.357-1.99,5.789 c-0.465,1.211-1.461,3.605-1.983,4.795c-0.282,0.648-1.17,2.57-1.17,2.57"/>
  1896. <path fill="#DFDFDD" d="M462.982,573.631l13.24,14.691c0,0-0.978-0.611-1.281-0.844c-0.262-0.189-0.754-0.607-0.994-0.822 c-0.199-0.175-0.787-0.719-0.787-0.719s-1.01-0.951-1.323-1.285c-1.063-1.104-3.111-3.381-4.091-4.562 c-0.827-0.994-2.438-3.031-3.219-4.066c-0.43-0.563-1.676-2.276-1.676-2.276"/>
  1897. <path fill="#DFDFDD" d="M462.379,571.494l-19.769,0.619c0,0,1.096-0.354,1.471-0.438c0.313-0.072,0.953-0.182,1.272-0.227 c0.265-0.037,1.056-0.136,1.056-0.136s1.375-0.155,1.838-0.188c1.527-0.098,4.589-0.187,6.121-0.178 c1.295,0.012,3.888,0.104,5.185,0.174c0.707,0.041,2.819,0.195,2.819,0.195"/>
  1898. </g>
  1899. <animateTransform restart="always" from="0 463 572.276" dur="4s" to="359 463 572.276" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  1900. </animateTransform>
  1901. </g>
  1902. <g>
  1903. <path fill="#63A5BA" d="M460.836,572.271c-0.009,1.437,1.2,2.605,2.694,2.611c1.5,0.002,2.717-1.158,2.722-2.59 c0.006-1.441-1.201-2.604-2.701-2.613C462.055,569.677,460.842,570.833,460.836,572.271"/>
  1904. </g>
  1905. <g>
  1906. <path fill="#B6D6DE" d="M461.814,572.276c-0.002,0.894,0.771,1.619,1.725,1.628c0.951,0.002,1.73-0.722,1.732-1.615 s-0.77-1.619-1.723-1.627C462.598,570.662,461.819,571.383,461.814,572.276"/>
  1907. </g>
  1908. </g>
  1909. </g>
  1910. <g id="_x23_53">
  1911. <g>
  1912. <path fill="#DFDFDD" d="M409.307,572.279l-1.377,28.777c0,0,1.093,0.432,2.063,0.435c0.996,0.004,2.146-0.421,2.146-0.421 L411,572.288L409.307,572.279L409.307,572.279z"/>
  1913. </g>
  1914. <g>
  1915. <g transform="rotate(91.5214 410 572.277)">
  1916. <g>
  1917. <path fill="#3E4484" d="M409.004,571.228l2.205,0.854c0,0,5.842-12.162,6.27-18.756 C413.166,558.545,409.004,571.228,409.004,571.228"/>
  1918. <path fill="#3E4484" d="M411.096,572.081l-1.813,1.508c0,0,7.771,11.026,13.321,14.619 C420.146,581.889,411.096,572.081,411.096,572.081"/>
  1919. <path fill="#3E4484" d="M409.182,573.661l0.021-2.363c0,0-13.438-1.197-19.767,0.729 C395.844,574.225,409.182,573.661,409.182,573.661"/>
  1920. </g>
  1921. <g>
  1922. <path fill="#DFDFDD" d="M411.101,571.796l6.377-18.719c0,0-0.061,1.146-0.108,1.525c-0.041,0.321-0.166,0.959-0.235,1.272 c-0.06,0.26-0.246,1.035-0.246,1.035s-0.34,1.344-0.474,1.785c-0.444,1.467-1.438,4.356-1.987,5.788 c-0.465,1.212-1.461,3.605-1.98,4.796c-0.283,0.647-1.173,2.569-1.173,2.569"/>
  1923. <path fill="#DFDFDD" d="M409.58,573.632l13.24,14.691c0,0-0.977-0.611-1.283-0.844c-0.262-0.189-0.754-0.607-0.996-0.822 c-0.196-0.175-0.784-0.719-0.784-0.719s-1.009-0.951-1.322-1.285c-1.067-1.104-3.11-3.381-4.092-4.562 c-0.828-0.994-2.437-3.03-3.22-4.066c-0.428-0.563-1.674-2.276-1.674-2.276"/>
  1924. <path fill="#DFDFDD" d="M408.976,571.495l-19.769,0.618c0,0,1.095-0.354,1.474-0.438c0.313-0.074,0.949-0.182,1.271-0.227 c0.267-0.037,1.058-0.137,1.058-0.137s1.377-0.154,1.838-0.187c1.524-0.099,4.586-0.187,6.123-0.178 c1.295,0.012,3.886,0.104,5.183,0.174c0.707,0.041,2.817,0.194,2.817,0.194"/>
  1925. </g>
  1926. <animateTransform restart="always" from="0 410 572.277" dur="4s" to="359 410 572.277" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  1927. </animateTransform>
  1928. </g>
  1929. <g>
  1930. <path fill="#63A5BA" d="M407.435,572.273c-0.008,1.435,1.199,2.604,2.695,2.609c1.498,0.002,2.715-1.158,2.721-2.59 c0.006-1.44-1.205-2.604-2.703-2.613C408.653,569.678,407.437,570.834,407.435,572.273"/>
  1931. </g>
  1932. <g>
  1933. <path fill="#B6D6DE" d="M408.412,572.277c-0.004,0.894,0.771,1.62,1.722,1.627c0.953,0.003,1.735-0.721,1.735-1.614 c0.004-0.895-0.771-1.619-1.722-1.627C409.194,570.663,408.414,571.383,408.412,572.277"/>
  1934. </g>
  1935. </g>
  1936. </g>
  1937. <g id="_x23_51">
  1938. <g>
  1939. <path fill="#DFDFDD" d="M309.98,572.034l-1.379,28.777c0,0,1.095,0.432,2.063,0.434c0.996,0.004,2.146-0.42,2.146-0.42 l-1.139-28.783L309.98,572.034L309.98,572.034z"/>
  1940. </g>
  1941. <g>
  1942. <g transform="rotate(91.5214 311 572.031)">
  1943. <g>
  1944. <path fill="#3E4484" d="M309.68,570.982l2.201,0.853c0,0,5.846-12.162,6.268-18.756 C313.836,558.298,309.68,570.982,309.68,570.982"/>
  1945. <path fill="#3E4484" d="M311.767,571.834l-1.812,1.508c0,0,7.767,11.027,13.318,14.619 C320.819,581.643,311.767,571.834,311.767,571.834"/>
  1946. <path fill="#3E4484" d="M309.855,573.415l0.021-2.363c0,0-13.441-1.195-19.767,0.729 C296.517,573.979,309.855,573.415,309.855,573.415"/>
  1947. </g>
  1948. <g>
  1949. <path fill="#DFDFDD" d="M311.773,571.55l6.38-18.719c0,0-0.063,1.146-0.113,1.526c-0.036,0.32-0.163,0.959-0.233,1.271 c-0.058,0.26-0.243,1.035-0.243,1.035s-0.341,1.344-0.474,1.785c-0.447,1.467-1.438,4.356-1.99,5.789 c-0.465,1.211-1.461,3.604-1.983,4.795c-0.28,0.647-1.168,2.569-1.168,2.569"/>
  1950. <path fill="#DFDFDD" d="M310.254,573.385l13.237,14.691c0,0-0.974-0.611-1.28-0.843c-0.263-0.19-0.755-0.608-0.996-0.823 c-0.199-0.174-0.785-0.717-0.785-0.717s-1.008-0.953-1.326-1.287c-1.063-1.104-3.11-3.379-4.088-4.562 c-0.83-0.994-2.438-3.029-3.221-4.065c-0.429-0.563-1.675-2.277-1.675-2.277"/>
  1951. <path fill="#DFDFDD" d="M309.65,571.249l-19.77,0.619c0,0,1.096-0.354,1.475-0.438c0.313-0.072,0.949-0.182,1.271-0.227 c0.264-0.037,1.055-0.136,1.055-0.136s1.379-0.155,1.838-0.188c1.527-0.098,4.589-0.186,6.121-0.178 c1.297,0.012,3.892,0.104,5.185,0.174c0.707,0.041,2.822,0.195,2.822,0.195"/>
  1952. </g>
  1953. <animateTransform restart="always" from="0 311 572.031" dur="4s" to="359 311 572.031" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  1954. </animateTransform>
  1955. </g>
  1956. <g>
  1957. <path fill="#63A5BA" d="M308.105,572.027c-0.006,1.435,1.203,2.604,2.695,2.609c1.5,0.002,2.717-1.157,2.723-2.59 c0.007-1.44-1.2-2.604-2.7-2.613C309.326,569.432,308.112,570.588,308.105,572.027"/>
  1958. </g>
  1959. <g>
  1960. <path fill="#B6D6DE" d="M309.088,572.031c-0.004,0.894,0.768,1.621,1.719,1.628c0.951,0.002,1.734-0.72,1.736-1.615 c0.004-0.894-0.771-1.619-1.726-1.627C309.867,570.417,309.09,571.137,309.088,572.031"/>
  1961. </g>
  1962. </g>
  1963. </g>
  1964. <g id="_x23_52">
  1965. <g>
  1966. <path fill="#DFDFDD" d="M360.691,571.784l-1.381,28.777c0,0,1.096,0.432,2.063,0.434c0.998,0.004,2.148-0.42,2.148-0.42 l-1.14-28.783L360.691,571.784L360.691,571.784z"/>
  1967. </g>
  1968. <g>
  1969. <g transform="rotate(91.5214 361 571.781)">
  1970. <g>
  1971. <path fill="#3E4484" d="M360.388,570.732l2.203,0.853c0,0,5.844-12.162,6.269-18.756 C364.546,558.048,360.388,570.732,360.388,570.732"/>
  1972. <path fill="#3E4484" d="M362.478,571.584l-1.813,1.508c0,0,7.769,11.027,13.32,14.619 C371.529,581.393,362.478,571.584,362.478,571.584"/>
  1973. <path fill="#3E4484" d="M360.566,573.165l0.021-2.363c0,0-13.439-1.195-19.767,0.729 C347.228,573.729,360.566,573.165,360.566,573.165"/>
  1974. </g>
  1975. <g>
  1976. <path fill="#DFDFDD" d="M362.484,571.3l6.379-18.719c0,0-0.063,1.146-0.112,1.526c-0.037,0.32-0.164,0.959-0.234,1.271 c-0.06,0.26-0.246,1.035-0.246,1.035s-0.338,1.344-0.471,1.785c-0.447,1.467-1.438,4.356-1.99,5.789 c-0.465,1.211-1.461,3.604-1.983,4.795c-0.282,0.647-1.168,2.569-1.168,2.569"/>
  1977. <path fill="#DFDFDD" d="M360.964,573.135l13.237,14.691c0,0-0.974-0.611-1.28-0.843c-0.263-0.19-0.755-0.608-0.996-0.823 c-0.198-0.174-0.785-0.717-0.785-0.717s-1.008-0.953-1.325-1.287c-1.064-1.104-3.111-3.379-4.091-4.562 c-0.827-0.994-2.437-3.029-3.219-4.065c-0.429-0.563-1.675-2.277-1.675-2.277"/>
  1978. <path fill="#DFDFDD" d="M360.361,570.999l-19.771,0.619c0,0,1.097-0.354,1.474-0.438c0.312-0.072,0.948-0.182,1.271-0.227 c0.266-0.037,1.057-0.136,1.057-0.136s1.379-0.155,1.838-0.188c1.527-0.098,4.589-0.186,6.121-0.178 c1.297,0.012,3.89,0.104,5.185,0.174c0.705,0.041,2.821,0.195,2.821,0.195"/>
  1979. </g>
  1980. <animateTransform restart="always" from="0 361 571.781" dur="4s" to="359 361 571.781" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  1981. </animateTransform>
  1982. </g>
  1983. <g>
  1984. <path fill="#63A5BA" d="M358.816,571.777c-0.006,1.435,1.203,2.604,2.694,2.609c1.5,0.002,2.718-1.157,2.724-2.59 c0.006-1.44-1.201-2.604-2.701-2.613C360.034,569.182,358.822,570.338,358.816,571.777"/>
  1985. </g>
  1986. <g>
  1987. <path fill="#B6D6DE" d="M359.798,571.781c-0.004,0.894,0.769,1.621,1.719,1.628c0.951,0.002,1.731-0.72,1.736-1.615 c0.002-0.894-0.771-1.619-1.726-1.627C360.577,570.167,359.8,570.887,359.798,571.781"/>
  1988. </g>
  1989. </g>
  1990. </g>
  1991. <g id="_x23_50">
  1992. <g>
  1993. <path fill="#DFDFDD" d="M260.982,571.785l-1.377,28.776c0,0,1.096,0.433,2.063,0.435c0.996,0.004,2.146-0.42,2.146-0.42 l-1.139-28.783L260.982,571.785L260.982,571.785z"/>
  1994. </g>
  1995. <g>
  1996. <g transform="rotate(91.5214 262 571.783)">
  1997. <g>
  1998. <path fill="#3E4484" d="M260.682,570.733l2.203,0.853c0,0,5.844-12.162,6.27-18.756 C264.84,558.049,260.682,570.733,260.682,570.733"/>
  1999. <path fill="#3E4484" d="M262.771,571.585l-1.813,1.508c0,0,7.768,11.027,13.319,14.619 C271.821,581.394,262.771,571.585,262.771,571.585"/>
  2000. <path fill="#3E4484" d="M260.857,573.166l0.021-2.363c0,0-13.441-1.195-19.767,0.729 C247.521,573.731,260.857,573.166,260.857,573.166"/>
  2001. </g>
  2002. <g>
  2003. <path fill="#DFDFDD" d="M262.778,571.3l6.377-18.719c0,0-0.063,1.146-0.108,1.526c-0.041,0.32-0.166,0.959-0.236,1.271 c-0.057,0.26-0.245,1.035-0.245,1.035s-0.341,1.344-0.474,1.785c-0.444,1.467-1.438,4.356-1.985,5.789 c-0.468,1.211-1.464,3.604-1.983,4.795c-0.283,0.647-1.172,2.569-1.172,2.569"/>
  2004. <path fill="#DFDFDD" d="M261.256,573.136l13.24,14.691c0,0-0.976-0.611-1.281-0.843c-0.264-0.19-0.754-0.608-0.996-0.823 c-0.199-0.175-0.787-0.718-0.787-0.718s-1.008-0.952-1.323-1.286c-1.063-1.104-3.11-3.38-4.091-4.562 c-0.828-0.994-2.438-3.03-3.221-4.065c-0.426-0.563-1.672-2.277-1.672-2.277"/>
  2005. <path fill="#DFDFDD" d="M260.653,571l-19.769,0.619c0,0,1.094-0.354,1.473-0.438c0.313-0.072,0.951-0.182,1.271-0.227 c0.267-0.037,1.058-0.136,1.058-0.136s1.377-0.155,1.838-0.188c1.526-0.098,4.588-0.186,6.121-0.178 c1.295,0.012,3.89,0.104,5.185,0.174c0.707,0.041,2.819,0.195,2.819,0.195"/>
  2006. </g>
  2007. <animateTransform restart="always" from="0 262 571.783" dur="4s" to="359 262 571.783" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  2008. </animateTransform>
  2009. </g>
  2010. <g>
  2011. <path fill="#63A5BA" d="M259.11,571.778c-0.009,1.435,1.2,2.604,2.694,2.609c1.498,0.002,2.715-1.156,2.722-2.59 c0.006-1.439-1.2-2.604-2.7-2.613C260.329,569.183,259.114,570.338,259.11,571.778"/>
  2012. </g>
  2013. <g>
  2014. <path fill="#B6D6DE" d="M260.09,571.783c-0.004,0.893,0.768,1.62,1.721,1.627c0.951,0.002,1.732-0.72,1.734-1.615 c0.004-0.894-0.771-1.619-1.721-1.627C260.87,570.167,260.092,570.888,260.09,571.783"/>
  2015. </g>
  2016. </g>
  2017. </g>
  2018. <g id="_x23_49">
  2019. <g>
  2020. <path fill="#DFDFDD" d="M211.282,572.034l-1.38,28.777c0,0,1.095,0.432,2.063,0.434c0.996,0.004,2.147-0.42,2.147-0.42 l-1.143-28.783L211.282,572.034L211.282,572.034z"/>
  2021. </g>
  2022. <g>
  2023. <g transform="rotate(91.5214 212 572.031)">
  2024. <g>
  2025. <path fill="#3E4484" d="M210.98,570.982l2.203,0.853c0,0,5.845-12.162,6.27-18.756 C215.137,558.298,210.98,570.982,210.98,570.982"/>
  2026. <path fill="#3E4484" d="M213.069,571.834l-1.812,1.508c0,0,7.766,11.027,13.318,14.619 C222.12,581.643,213.069,571.834,213.069,571.834"/>
  2027. <path fill="#3E4484" d="M211.159,573.415l0.02-2.363c0,0-13.438-1.195-19.766,0.729 C197.821,573.979,211.159,573.415,211.159,573.415"/>
  2028. </g>
  2029. <g>
  2030. <path fill="#DFDFDD" d="M213.075,571.55l6.379-18.719c0,0-0.063,1.146-0.111,1.526c-0.039,0.32-0.166,0.959-0.235,1.271 c-0.058,0.26-0.244,1.035-0.244,1.035s-0.34,1.344-0.474,1.785c-0.446,1.467-1.438,4.356-1.987,5.789 c-0.468,1.211-1.461,3.604-1.983,4.795c-0.283,0.647-1.17,2.569-1.17,2.569"/>
  2031. <path fill="#DFDFDD" d="M211.555,573.385l13.238,14.691c0,0-0.974-0.611-1.281-0.843c-0.262-0.19-0.752-0.608-0.996-0.823 c-0.198-0.174-0.783-0.717-0.783-0.717s-1.01-0.953-1.327-1.287c-1.063-1.104-3.108-3.379-4.089-4.562 c-0.827-0.994-2.438-3.029-3.221-4.065c-0.428-0.563-1.674-2.277-1.674-2.277"/>
  2032. <path fill="#DFDFDD" d="M210.952,571.249l-19.771,0.619c0,0,1.097-0.354,1.477-0.438c0.311-0.072,0.947-0.182,1.27-0.227 c0.265-0.037,1.058-0.136,1.058-0.136s1.377-0.155,1.836-0.188c1.525-0.098,4.589-0.186,6.121-0.178 c1.297,0.012,3.892,0.104,5.187,0.174c0.705,0.041,2.82,0.195,2.82,0.195"/>
  2033. </g>
  2034. <animateTransform restart="always" from="0 212 572.031" dur="4s" to="359 212 572.031" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  2035. </animateTransform>
  2036. </g>
  2037. <g>
  2038. <path fill="#63A5BA" d="M209.407,572.027c-0.007,1.435,1.202,2.604,2.695,2.609c1.498,0.002,2.716-1.157,2.723-2.59 c0.006-1.44-1.201-2.604-2.701-2.613C210.627,569.432,209.413,570.588,209.407,572.027"/>
  2039. </g>
  2040. <g>
  2041. <path fill="#B6D6DE" d="M210.389,572.031c-0.004,0.894,0.771,1.621,1.722,1.628c0.95,0.002,1.731-0.72,1.733-1.615 c0.004-0.894-0.77-1.619-1.723-1.627C211.168,570.417,210.391,571.137,210.389,572.031"/>
  2042. </g>
  2043. </g>
  2044. </g>
  2045. <g id="_x23_48">
  2046. <g>
  2047. <path fill="#DFDFDD" d="M161.387,571.786l-1.377,28.778c0,0,1.094,0.431,2.062,0.433c0.997,0.004,2.149-0.42,2.149-0.42 l-1.139-28.783L161.387,571.786L161.387,571.786z"/>
  2048. </g>
  2049. <g>
  2050. <g transform="rotate(91.5214 162 571.784)">
  2051. <g>
  2052. <path fill="#3E4484" d="M161.088,570.734l2.203,0.853c0,0,5.842-12.162,6.268-18.756 C165.245,558.05,161.088,570.734,161.088,570.734"/>
  2053. <path fill="#3E4484" d="M163.178,571.586l-1.813,1.508c0,0,7.771,11.027,13.321,14.619 C172.226,581.396,163.178,571.586,163.178,571.586"/>
  2054. <path fill="#3E4484" d="M161.264,573.167l0.021-2.363c0,0-13.441-1.195-19.77,0.729 C147.926,573.732,161.264,573.167,161.264,573.167"/>
  2055. </g>
  2056. <g>
  2057. <path fill="#DFDFDD" d="M163.183,571.301l6.377-18.719c0,0-0.063,1.147-0.109,1.526c-0.041,0.32-0.164,0.959-0.236,1.271 c-0.057,0.26-0.244,1.035-0.244,1.035s-0.34,1.344-0.473,1.785c-0.445,1.467-1.439,4.356-1.988,5.789 c-0.467,1.211-1.461,3.604-1.983,4.795c-0.282,0.647-1.17,2.57-1.17,2.57"/>
  2058. <path fill="#DFDFDD" d="M161.663,573.137l13.239,14.691c0,0-0.978-0.611-1.28-0.842c-0.266-0.191-0.756-0.609-0.996-0.824 c-0.199-0.174-0.789-0.717-0.789-0.717s-1.006-0.953-1.322-1.287c-1.064-1.104-3.11-3.379-4.092-4.562 c-0.826-0.992-2.437-3.028-3.219-4.065c-0.427-0.563-1.675-2.277-1.675-2.277"/>
  2059. <path fill="#DFDFDD" d="M161.057,571l-19.766,0.619c0,0,1.094-0.354,1.471-0.438c0.313-0.072,0.951-0.182,1.271-0.227 c0.266-0.037,1.057-0.135,1.057-0.135s1.375-0.156,1.836-0.188c1.529-0.098,4.59-0.186,6.121-0.178 c1.297,0.012,3.889,0.104,5.186,0.174c0.705,0.041,2.818,0.195,2.818,0.195"/>
  2060. </g>
  2061. <animateTransform restart="always" from="0 162 571.784" dur="4s" to="359 162 571.784" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  2062. </animateTransform>
  2063. </g>
  2064. <g>
  2065. <path fill="#63A5BA" d="M159.514,571.779c-0.006,1.435,1.201,2.604,2.697,2.609c1.498,0.002,2.715-1.156,2.721-2.59 c0.006-1.439-1.203-2.604-2.701-2.612C160.735,569.184,159.519,570.339,159.514,571.779"/>
  2066. </g>
  2067. <g>
  2068. <path fill="#B6D6DE" d="M160.495,571.784c-0.002,0.893,0.77,1.62,1.721,1.627c0.953,0.002,1.734-0.72,1.736-1.615 c0.002-0.894-0.771-1.619-1.725-1.627C161.275,570.168,160.497,570.889,160.495,571.784"/>
  2069. </g>
  2070. </g>
  2071. </g>
  2072. <g id="_x23_45">
  2073. <g>
  2074. <path fill="#DFDFDD" d="M22.668,571.788l-1.377,28.778c0,0,1.096,0.429,2.061,0.433c0.998,0.002,2.15-0.422,2.15-0.422 l-1.142-28.783L22.668,571.788L22.668,571.788z"/>
  2075. </g>
  2076. <g>
  2077. <g transform="rotate(91.5214 23 571.786)">
  2078. <g>
  2079. <path fill="#3E4484" d="M22.369,570.736l2.202,0.851c0,0,5.843-12.16,6.269-18.754 C26.527,558.051,22.369,570.736,22.369,570.736"/>
  2080. <path fill="#3E4484" d="M24.457,571.586l-1.813,1.51c0,0,7.769,11.027,13.321,14.617 C33.508,581.398,24.457,571.586,24.457,571.586"/>
  2081. <path fill="#3E4484" d="M22.545,573.167l0.021-2.363c0,0-13.44-1.193-19.767,0.729 C9.209,573.734,22.545,573.167,22.545,573.167"/>
  2082. </g>
  2083. <g>
  2084. <path fill="#DFDFDD" d="M24.463,571.303l6.377-18.721c0,0-0.062,1.149-0.109,1.528c-0.039,0.32-0.164,0.957-0.232,1.271 c-0.061,0.261-0.246,1.033-0.246,1.033s-0.34,1.344-0.474,1.785c-0.444,1.469-1.438,4.359-1.987,5.789 c-0.465,1.211-1.461,3.606-1.984,4.797c-0.282,0.646-1.172,2.57-1.172,2.57"/>
  2085. <path fill="#DFDFDD" d="M22.941,573.137L36.18,587.83c0,0-0.975-0.613-1.28-0.842c-0.263-0.191-0.754-0.609-0.994-0.826 c-0.2-0.174-0.786-0.715-0.786-0.715s-1.009-0.955-1.324-1.287c-1.064-1.104-3.111-3.379-4.092-4.562 c-0.828-0.994-2.437-3.028-3.22-4.065c-0.429-0.563-1.672-2.277-1.672-2.277"/>
  2086. <path fill="#DFDFDD" d="M22.338,571.002L2.572,571.62c0,0,1.095-0.353,1.472-0.438c0.313-0.072,0.951-0.182,1.271-0.227 c0.267-0.039,1.058-0.138,1.058-0.138s1.375-0.153,1.836-0.188c1.526-0.096,4.59-0.186,6.123-0.176 c1.295,0.012,3.887,0.104,5.184,0.174c0.705,0.041,2.818,0.193,2.818,0.193"/>
  2087. </g>
  2088. <animateTransform restart="always" from="0 23 571.786" dur="4s" to="359 23 571.786" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  2089. </animateTransform>
  2090. </g>
  2091. <g>
  2092. <path fill="#63A5BA" d="M20.797,571.781c-0.008,1.433,1.199,2.604,2.695,2.607c1.498,0.005,2.715-1.154,2.721-2.588 c0.006-1.439-1.201-2.604-2.701-2.612C22.014,569.184,20.801,570.339,20.797,571.781"/>
  2093. </g>
  2094. <g>
  2095. <path fill="#B6D6DE" d="M21.775,571.786c-0.002,0.893,0.771,1.618,1.722,1.625c0.953,0.004,1.733-0.72,1.735-1.613 c0.002-0.893-0.771-1.621-1.724-1.627C22.557,570.17,21.779,570.891,21.775,571.786"/>
  2096. </g>
  2097. </g>
  2098. </g>
  2099. <g id="_x23_46">
  2100. <g>
  2101. <path fill="#DFDFDD" d="M69.98,571.788l-1.377,28.778c0,0,1.094,0.429,2.063,0.433c0.996,0.002,2.147-0.422,2.147-0.422 l-1.142-28.783L69.98,571.788L69.98,571.788z"/>
  2102. </g>
  2103. <g>
  2104. <g transform="rotate(91.5214 71 571.786)">
  2105. <g>
  2106. <path fill="#3E4484" d="M69.679,570.736l2.203,0.851c0,0,5.842-12.16,6.271-18.754 C73.837,558.051,69.679,570.736,69.679,570.736"/>
  2107. <path fill="#3E4484" d="M71.771,571.586l-1.813,1.51c0,0,7.768,11.027,13.319,14.617 C80.819,581.398,71.771,571.586,71.771,571.586"/>
  2108. <path fill="#3E4484" d="M69.855,573.167l0.021-2.363c0,0-13.438-1.193-19.767,0.729 C56.519,573.734,69.855,573.167,69.855,573.167"/>
  2109. </g>
  2110. <g>
  2111. <path fill="#DFDFDD" d="M71.775,571.303l6.378-18.721c0,0-0.063,1.149-0.11,1.528c-0.041,0.32-0.166,0.957-0.236,1.271 c-0.059,0.261-0.244,1.033-0.244,1.033s-0.342,1.344-0.475,1.785c-0.443,1.469-1.438,4.359-1.988,5.789 c-0.465,1.211-1.461,3.606-1.98,4.797c-0.283,0.646-1.171,2.57-1.171,2.57"/>
  2112. <path fill="#DFDFDD" d="M70.255,573.137l13.236,14.693c0,0-0.975-0.613-1.281-0.842c-0.263-0.191-0.754-0.609-0.994-0.826 c-0.197-0.174-0.785-0.715-0.785-0.715s-1.01-0.955-1.325-1.287c-1.063-1.104-3.108-3.379-4.091-4.562 c-0.827-0.994-2.436-3.028-3.219-4.065c-0.426-0.563-1.674-2.277-1.674-2.277"/>
  2113. <path fill="#DFDFDD" d="M69.65,571.002l-19.77,0.617c0,0,1.096-0.353,1.473-0.438c0.313-0.072,0.949-0.182,1.271-0.227 c0.266-0.039,1.055-0.138,1.055-0.138s1.377-0.153,1.838-0.188c1.525-0.096,4.588-0.186,6.123-0.176 c1.293,0.012,3.885,0.104,5.184,0.174c0.706,0.041,2.818,0.193,2.818,0.193"/>
  2114. </g>
  2115. <animateTransform restart="always" from="0 71 571.786" dur="4s" to="359 71 571.786" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  2116. </animateTransform>
  2117. </g>
  2118. <g>
  2119. <path fill="#63A5BA" d="M68.105,571.781c-0.006,1.433,1.203,2.604,2.697,2.607c1.498,0.005,2.715-1.154,2.721-2.588 c0.007-1.439-1.202-2.604-2.699-2.612C69.327,569.184,68.112,570.339,68.105,571.781"/>
  2120. </g>
  2121. <g>
  2122. <path fill="#B6D6DE" d="M69.087,571.786c-0.004,0.893,0.769,1.618,1.719,1.625c0.953,0.004,1.736-0.72,1.736-1.613 c0.004-0.894-0.771-1.621-1.722-1.627C69.866,570.17,69.089,570.891,69.087,571.786"/>
  2123. </g>
  2124. </g>
  2125. </g>
  2126. <g id="_x23_47">
  2127. <g>
  2128. <path fill="#DFDFDD" d="M118.503,571.788l-1.377,28.778c0,0,1.096,0.429,2.062,0.433c0.997,0.002,2.149-0.422,2.149-0.422 l-1.14-28.783L118.503,571.788L118.503,571.788z"/>
  2129. </g>
  2130. <g>
  2131. <g transform="rotate(91.5214 119 571.786)">
  2132. <g>
  2133. <path fill="#3E4484" d="M118.205,570.736l2.203,0.851c0,0,5.842-12.16,6.268-18.754 C122.363,558.051,118.205,570.736,118.205,570.736"/>
  2134. <path fill="#3E4484" d="M120.294,571.586l-1.813,1.51c0,0,7.768,11.027,13.32,14.617 C129.343,581.398,120.294,571.586,120.294,571.586"/>
  2135. <path fill="#3E4484" d="M118.38,573.167l0.021-2.363c0,0-13.439-1.193-19.766,0.729 C105.044,573.734,118.38,573.167,118.38,573.167"/>
  2136. </g>
  2137. <g>
  2138. <path fill="#DFDFDD" d="M120.3,571.303l6.377-18.721c0,0-0.063,1.149-0.11,1.528c-0.039,0.32-0.164,0.957-0.233,1.271 c-0.06,0.261-0.246,1.033-0.246,1.033s-0.34,1.344-0.474,1.785c-0.444,1.469-1.438,4.359-1.987,5.789 c-0.465,1.211-1.461,3.606-1.984,4.797c-0.283,0.646-1.172,2.57-1.172,2.57"/>
  2139. <path fill="#DFDFDD" d="M118.779,573.137l13.24,14.693c0,0-0.978-0.613-1.283-0.842c-0.263-0.191-0.754-0.609-0.993-0.826 c-0.201-0.174-0.787-0.715-0.787-0.715s-1.009-0.955-1.324-1.287c-1.064-1.104-3.111-3.379-4.09-4.562 c-0.828-0.994-2.438-3.028-3.22-4.065c-0.431-0.563-1.674-2.277-1.674-2.277"/>
  2140. <path fill="#DFDFDD" d="M118.173,571.002l-19.766,0.617c0,0,1.094-0.353,1.471-0.438c0.313-0.072,0.951-0.182,1.271-0.227 c0.268-0.039,1.059-0.138,1.059-0.138s1.375-0.153,1.836-0.188c1.526-0.096,4.59-0.186,6.123-0.176 c1.295,0.012,3.887,0.104,5.184,0.174c0.705,0.041,2.818,0.193,2.818,0.193"/>
  2141. </g>
  2142. <animateTransform restart="always" from="0 119 571.786" dur="4s" to="359 119 571.786" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  2143. </animateTransform>
  2144. </g>
  2145. <g>
  2146. <path fill="#63A5BA" d="M116.632,571.781c-0.008,1.433,1.199,2.604,2.695,2.607c1.498,0.005,2.715-1.154,2.721-2.588 c0.006-1.439-1.201-2.604-2.701-2.612C117.85,569.184,116.636,570.339,116.632,571.781"/>
  2147. </g>
  2148. <g>
  2149. <path fill="#B6D6DE" d="M117.611,571.786c-0.002,0.893,0.771,1.618,1.722,1.625c0.953,0.004,1.733-0.72,1.735-1.613 c0.002-0.893-0.771-1.621-1.724-1.627C118.392,570.17,117.615,570.891,117.611,571.786"/>
  2150. </g>
  2151. </g>
  2152. </g>
  2153. <g id="_x23_75">
  2154. <g>
  2155. <path fill="#E0E0DF" d="M1610.42,74.184l-1.379,28.778c0,0,1.094,0.431,2.063,0.435c0.995,0.004,2.146-0.422,2.146-0.422 l-1.142-28.783L1610.42,74.184L1610.42,74.184z"/>
  2156. </g>
  2157. <g>
  2158. <g transform="rotate(91.5214 1611 74.1839)">
  2159. <g>
  2160. <path fill="#42478C" d="M1610.12,73.131l2.203,0.853c0,0,5.843-12.162,6.269-18.754 C1614.278,60.452,1610.12,73.131,1610.12,73.131"/>
  2161. <path fill="#42478C" d="M1612.209,73.984l-1.813,1.51c0,0,7.767,11.027,13.319,14.617 C1621.258,83.794,1612.209,73.984,1612.209,73.984"/>
  2162. <path fill="#42478C" d="M1610.295,75.563l0.021-2.361c0,0-13.438-1.197-19.767,0.729 C1596.959,76.131,1610.295,75.563,1610.295,75.563"/>
  2163. </g>
  2164. <g>
  2165. <path fill="#E0E0DF" d="M1612.215,73.702l6.377-18.719c0,0-0.063,1.147-0.11,1.526c-0.039,0.322-0.164,0.957-0.233,1.275 c-0.06,0.258-0.246,1.033-0.246,1.033s-0.34,1.344-0.474,1.785c-0.444,1.467-1.438,4.36-1.987,5.789 c-0.468,1.211-1.461,3.608-1.983,4.797c-0.28,0.646-1.17,2.569-1.17,2.569"/>
  2166. <path fill="#E0E0DF" d="M1610.694,75.539l13.238,14.691c0,0-0.975-0.613-1.281-0.843c-0.262-0.192-0.754-0.61-0.993-0.825 c-0.198-0.177-0.785-0.718-0.785-0.718s-1.011-0.954-1.325-1.286c-1.063-1.103-3.11-3.382-4.091-4.558 c-0.827-0.996-2.438-3.033-3.222-4.067c-0.427-0.563-1.672-2.279-1.672-2.279"/>
  2167. <path fill="#E0E0DF" d="M1610.09,73.398l-19.769,0.617c0,0,1.097-0.349,1.474-0.435c0.312-0.074,0.948-0.184,1.271-0.229 c0.267-0.037,1.058-0.136,1.058-0.136s1.377-0.155,1.839-0.186c1.524-0.098,4.586-0.188,6.12-0.176 c1.296,0.012,3.888,0.102,5.186,0.172c0.704,0.043,2.819,0.195,2.819,0.195"/>
  2168. </g>
  2169. <animateTransform restart="always" from="0 1611 74.184" dur="4s" to="359 1611 74.184" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  2170. </animateTransform>
  2171. </g>
  2172. <g>
  2173. <path fill="#66ADC5" d="M1608.547,74.176c-0.006,1.435,1.201,2.605,2.696,2.611c1.498,0.004,2.714-1.158,2.72-2.59 c0.006-1.439-1.201-2.604-2.701-2.613C1609.767,71.583,1608.553,72.739,1608.547,74.176"/>
  2174. </g>
  2175. <g>
  2176. <path fill="#BADBE5" d="M1609.528,74.184c-0.004,0.893,0.77,1.618,1.72,1.625c0.953,0.004,1.733-0.722,1.735-1.613 c0.004-0.896-0.771-1.623-1.724-1.627C1610.308,72.566,1609.531,73.289,1609.528,74.184"/>
  2177. </g>
  2178. </g>
  2179. </g>
  2180. <g id="_x23_76">
  2181. <g>
  2182. <path fill="#E0E0DF" d="M1657.454,74.184l-1.377,28.778c0,0,1.095,0.431,2.063,0.435c0.998,0.004,2.149-0.422,2.149-0.422 l-1.143-28.783L1657.454,74.184L1657.454,74.184z"/>
  2183. </g>
  2184. <g>
  2185. <g transform="rotate(91.5214 1658 74.1839)">
  2186. <g>
  2187. <path fill="#42478C" d="M1657.155,73.131l2.203,0.853c0,0,5.844-12.162,6.271-18.754 C1661.314,60.452,1657.155,73.131,1657.155,73.131"/>
  2188. <path fill="#42478C" d="M1659.244,73.984l-1.813,1.51c0,0,7.769,11.027,13.321,14.617 C1668.293,83.794,1659.244,73.984,1659.244,73.984"/>
  2189. <path fill="#42478C" d="M1657.332,75.563l0.021-2.361c0,0-13.44-1.197-19.767,0.729 C1643.994,76.131,1657.332,75.563,1657.332,75.563"/>
  2190. </g>
  2191. <g>
  2192. <path fill="#E0E0DF" d="M1659.25,73.702l6.377-18.719c0,0-0.063,1.147-0.11,1.526c-0.041,0.322-0.162,0.957-0.234,1.275 c-0.059,0.258-0.244,1.033-0.244,1.033s-0.34,1.344-0.473,1.785c-0.445,1.467-1.438,4.36-1.99,5.789 c-0.465,1.211-1.461,3.608-1.981,4.797c-0.283,0.646-1.172,2.569-1.172,2.569"/>
  2193. <path fill="#E0E0DF" d="M1657.732,75.539l13.236,14.691c0,0-0.976-0.613-1.279-0.843c-0.264-0.192-0.756-0.61-0.996-0.825 c-0.199-0.177-0.785-0.718-0.785-0.718s-1.01-0.954-1.326-1.286c-1.063-1.103-3.108-3.382-4.088-4.558 c-0.828-0.996-2.438-3.033-3.221-4.067c-0.43-0.563-1.676-2.279-1.676-2.279"/>
  2194. <path fill="#E0E0DF" d="M1657.125,73.398l-19.77,0.617c0,0,1.097-0.349,1.474-0.435c0.313-0.074,0.951-0.184,1.271-0.229 c0.267-0.037,1.056-0.136,1.056-0.136s1.377-0.155,1.838-0.186c1.526-0.098,4.588-0.188,6.121-0.176 c1.297,0.012,3.89,0.102,5.185,0.172c0.707,0.043,2.819,0.195,2.819,0.195"/>
  2195. </g>
  2196. <animateTransform restart="always" from="0 1658 74.184" dur="4s" to="359 1658 74.184" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  2197. </animateTransform>
  2198. </g>
  2199. <g>
  2200. <path fill="#66ADC5" d="M1655.584,74.176c-0.009,1.435,1.198,2.605,2.693,2.611c1.498,0.004,2.716-1.158,2.723-2.59 c0.006-1.439-1.203-2.604-2.701-2.613C1656.802,71.583,1655.587,72.739,1655.584,74.176"/>
  2201. </g>
  2202. <g>
  2203. <path fill="#BADBE5" d="M1656.564,74.184c-0.002,0.893,0.771,1.618,1.721,1.625c0.953,0.004,1.732-0.722,1.732-1.613 c0.006-0.896-0.771-1.623-1.721-1.627C1657.343,72.566,1656.568,73.289,1656.564,74.184"/>
  2204. </g>
  2205. </g>
  2206. </g>
  2207. <g id="_x23_77">
  2208. <g>
  2209. <path fill="#E0E0DF" d="M1711.668,74.184l-1.377,28.778c0,0,1.094,0.431,2.062,0.435c0.998,0.004,2.149-0.422,2.149-0.422 l-1.142-28.783L1711.668,74.184L1711.668,74.184z"/>
  2210. </g>
  2211. <g>
  2212. <g transform="rotate(91.5214 1712 74.1839)">
  2213. <g>
  2214. <path fill="#42478C" d="M1711.368,73.131l2.203,0.853c0,0,5.845-12.162,6.271-18.754 C1715.526,60.452,1711.368,73.131,1711.368,73.131"/>
  2215. <path fill="#42478C" d="M1713.457,73.984l-1.813,1.51c0,0,7.77,11.027,13.321,14.617 C1722.508,83.794,1713.457,73.984,1713.457,73.984"/>
  2216. <path fill="#42478C" d="M1711.545,75.563l0.021-2.361c0,0-13.439-1.197-19.767,0.729 C1698.207,76.131,1711.545,75.563,1711.545,75.563"/>
  2217. </g>
  2218. <g>
  2219. <path fill="#E0E0DF" d="M1713.465,73.702l6.377-18.719c0,0-0.063,1.147-0.11,1.526c-0.041,0.322-0.164,0.957-0.235,1.275 c-0.058,0.258-0.244,1.033-0.244,1.033s-0.34,1.344-0.474,1.785c-0.444,1.467-1.438,4.36-1.989,5.789 c-0.465,1.211-1.461,3.608-1.981,4.797c-0.282,0.646-1.172,2.569-1.172,2.569"/>
  2220. <path fill="#E0E0DF" d="M1711.944,75.539l13.238,14.691c0,0-0.977-0.613-1.281-0.843c-0.262-0.192-0.754-0.61-0.995-0.825 c-0.198-0.177-0.785-0.718-0.785-0.718s-1.011-0.954-1.325-1.286c-1.063-1.103-3.108-3.382-4.089-4.558 c-0.827-0.996-2.438-3.033-3.222-4.067c-0.428-0.563-1.674-2.279-1.674-2.279"/>
  2221. <path fill="#E0E0DF" d="M1711.338,73.398l-19.769,0.617c0,0,1.097-0.349,1.474-0.435c0.312-0.074,0.951-0.184,1.271-0.229 c0.267-0.037,1.056-0.136,1.056-0.136s1.377-0.155,1.839-0.186c1.526-0.098,4.588-0.188,6.12-0.176 c1.298,0.012,3.891,0.102,5.186,0.172c0.707,0.043,2.819,0.195,2.819,0.195"/>
  2222. </g>
  2223. <animateTransform restart="always" from="0 1712 74.184" dur="4s" to="359 1712 74.184" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  2224. </animateTransform>
  2225. </g>
  2226. <g>
  2227. <path fill="#66ADC5" d="M1709.797,74.176c-0.009,1.435,1.198,2.605,2.694,2.611c1.498,0.004,2.715-1.158,2.722-2.59 c0.006-1.439-1.203-2.604-2.701-2.613C1711.017,71.583,1709.801,72.739,1709.797,74.176"/>
  2228. </g>
  2229. <g>
  2230. <path fill="#BADBE5" d="M1710.776,74.184c-0.002,0.893,0.771,1.618,1.723,1.625c0.952,0.004,1.732-0.722,1.732-1.613 c0.004-0.896-0.771-1.623-1.722-1.627C1711.558,72.566,1710.781,73.289,1710.776,74.184"/>
  2231. </g>
  2232. </g>
  2233. </g>
  2234. <g id="_x23_78">
  2235. <g>
  2236. <path fill="#E0E0DF" d="M1756.523,74.184l-1.377,28.778c0,0,1.095,0.431,2.062,0.435c0.996,0.004,2.147-0.422,2.147-0.422 l-1.14-28.783L1756.523,74.184L1756.523,74.184z"/>
  2237. </g>
  2238. <g>
  2239. <g transform="rotate(91.5214 1757 74.1839)">
  2240. <g>
  2241. <path fill="#42478C" d="M1756.221,73.131l2.203,0.853c0,0,5.845-12.162,6.271-18.754 C1760.379,60.452,1756.221,73.131,1756.221,73.131"/>
  2242. <path fill="#42478C" d="M1758.312,73.984l-1.813,1.51c0,0,7.77,11.027,13.319,14.617 C1767.363,83.794,1758.312,73.984,1758.312,73.984"/>
  2243. <path fill="#42478C" d="M1756.4,75.563l0.021-2.361c0,0-13.438-1.197-19.768,0.729 C1743.062,76.131,1756.4,75.563,1756.4,75.563"/>
  2244. </g>
  2245. <g>
  2246. <path fill="#E0E0DF" d="M1758.318,73.702l6.38-18.719c0,0-0.063,1.147-0.11,1.526c-0.041,0.322-0.166,0.957-0.235,1.275 c-0.061,0.258-0.244,1.033-0.244,1.033s-0.342,1.344-0.474,1.785c-0.446,1.467-1.438,4.36-1.989,5.789 c-0.465,1.211-1.461,3.608-1.98,4.797c-0.283,0.646-1.173,2.569-1.173,2.569"/>
  2247. <path fill="#E0E0DF" d="M1756.797,75.539l13.237,14.691c0,0-0.976-0.613-1.28-0.843c-0.265-0.192-0.754-0.61-0.996-0.825 c-0.198-0.177-0.784-0.718-0.784-0.718s-1.011-0.954-1.326-1.286c-1.063-1.103-3.108-3.382-4.09-4.558 c-0.826-0.996-2.438-3.033-3.22-4.067c-0.429-0.563-1.674-2.279-1.674-2.279"/>
  2248. <path fill="#E0E0DF" d="M1756.193,73.398l-19.769,0.617c0,0,1.097-0.349,1.474-0.435c0.312-0.074,0.95-0.184,1.271-0.229 c0.265-0.037,1.056-0.136,1.056-0.136s1.377-0.155,1.84-0.186c1.525-0.098,4.588-0.188,6.119-0.176 c1.299,0.012,3.891,0.102,5.186,0.172c0.707,0.043,2.818,0.195,2.818,0.195"/>
  2249. </g>
  2250. <animateTransform restart="always" from="0 1757 74.184" dur="4s" to="359 1757 74.184" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  2251. </animateTransform>
  2252. </g>
  2253. <g>
  2254. <path fill="#66ADC5" d="M1754.65,74.176c-0.006,1.435,1.201,2.605,2.696,2.611c1.498,0.004,2.716-1.158,2.722-2.59 c0.006-1.439-1.203-2.604-2.7-2.613C1755.87,71.583,1754.656,72.739,1754.65,74.176"/>
  2255. </g>
  2256. <g>
  2257. <path fill="#BADBE5" d="M1755.629,74.184c-0.004,0.893,0.771,1.618,1.722,1.625c0.952,0.004,1.733-0.722,1.733-1.613 c0.004-0.896-0.771-1.623-1.722-1.627C1756.411,72.566,1755.631,73.289,1755.629,74.184"/>
  2258. </g>
  2259. </g>
  2260. </g>
  2261. <g id="_x23_80">
  2262. <g>
  2263. <path fill="#E0E0DF" d="M1242.267,320.078l-1.379,28.779c0,0,1.096,0.43,2.063,0.434c0.995,0.004,2.146-0.422,2.146-0.422 l-1.142-28.783L1242.267,320.078L1242.267,320.078z"/>
  2264. </g>
  2265. <g>
  2266. <g transform="rotate(91.5214 1243 320.078)">
  2267. <g>
  2268. <path fill="#42478C" d="M1241.964,319.028l2.202,0.852c0,0,5.845-12.162,6.271-18.754 C1246.123,306.345,1241.964,319.028,1241.964,319.028"/>
  2269. <path fill="#42478C" d="M1244.056,319.878l-1.813,1.511c0,0,7.769,11.026,13.32,14.617 C1253.105,329.69,1244.056,319.878,1244.056,319.878"/>
  2270. <path fill="#42478C" d="M1242.142,321.457l0.021-2.36c0,0-13.44-1.196-19.768,0.729 C1228.804,322.028,1242.142,321.457,1242.142,321.457"/>
  2271. </g>
  2272. <g>
  2273. <path fill="#E0E0DF" d="M1244.062,319.595l6.377-18.72c0,0-0.063,1.148-0.11,1.527c-0.039,0.321-0.164,0.957-0.235,1.274 c-0.058,0.258-0.243,1.033-0.243,1.033s-0.341,1.344-0.475,1.785c-0.445,1.467-1.438,4.361-1.988,5.789 c-0.465,1.211-1.462,3.609-1.982,4.797c-0.282,0.646-1.17,2.57-1.17,2.57"/>
  2274. <path fill="#E0E0DF" d="M1242.539,321.433l13.238,14.69c0,0-0.976-0.612-1.281-0.842c-0.262-0.192-0.754-0.611-0.995-0.826 c-0.197-0.176-0.785-0.717-0.785-0.717s-1.009-0.955-1.324-1.287c-1.063-1.104-3.109-3.381-4.091-4.559 c-0.827-0.994-2.438-3.031-3.22-4.066c-0.428-0.563-1.673-2.278-1.673-2.278"/>
  2275. <path fill="#E0E0DF" d="M1241.937,319.292l-19.771,0.617c0,0,1.096-0.35,1.474-0.436c0.313-0.072,0.95-0.184,1.271-0.229 c0.266-0.037,1.056-0.135,1.056-0.135s1.379-0.156,1.838-0.187c1.526-0.099,4.588-0.187,6.123-0.177 c1.295,0.013,3.889,0.103,5.184,0.173c0.707,0.043,2.818,0.194,2.818,0.194"/>
  2276. </g>
  2277. <animateTransform restart="always" from="0 1243 320.078" dur="4s" to="359 1243 320.078" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  2278. </animateTransform>
  2279. </g>
  2280. <g>
  2281. <path fill="#66ADC5" d="M1240.394,320.073c-0.008,1.434,1.201,2.604,2.695,2.61c1.498,0.004,2.716-1.157,2.723-2.59 c0.006-1.438-1.203-2.604-2.701-2.613C1241.613,317.478,1240.398,318.632,1240.394,320.073"/>
  2282. </g>
  2283. <g>
  2284. <path fill="#BADBE5" d="M1241.371,320.078c-0.002,0.894,0.771,1.619,1.722,1.625c0.952,0.004,1.733-0.721,1.735-1.612 c0.003-0.896-0.771-1.623-1.723-1.628C1242.153,318.46,1241.375,319.183,1241.371,320.078"/>
  2285. </g>
  2286. </g>
  2287. </g>
  2288. <g id="_x23_82">
  2289. <g>
  2290. <path fill="#E0E0DF" d="M1337.796,320.078l-1.38,28.779c0,0,1.095,0.43,2.063,0.434c0.996,0.004,2.147-0.422,2.147-0.422 l-1.141-28.783L1337.796,320.078L1337.796,320.078z"/>
  2291. </g>
  2292. <g>
  2293. <g transform="rotate(91.5214 1338 320.078)">
  2294. <g>
  2295. <path fill="#42478C" d="M1337.495,319.028l2.203,0.852c0,0,5.843-12.162,6.269-18.754 C1341.655,306.345,1337.495,319.028,1337.495,319.028"/>
  2296. <path fill="#42478C" d="M1339.584,319.878l-1.813,1.511c0,0,7.771,11.026,13.322,14.617 C1348.634,329.69,1339.584,319.878,1339.584,319.878"/>
  2297. <path fill="#42478C" d="M1337.671,321.457l0.021-2.36c0,0-13.439-1.196-19.769,0.729 C1324.332,322.028,1337.671,321.457,1337.671,321.457"/>
  2298. </g>
  2299. <g>
  2300. <path fill="#E0E0DF" d="M1339.591,319.595l6.377-18.72c0,0-0.062,1.148-0.109,1.527c-0.039,0.321-0.164,0.957-0.234,1.274 c-0.061,0.258-0.245,1.033-0.245,1.033s-0.341,1.344-0.474,1.785c-0.444,1.467-1.438,4.361-1.988,5.789 c-0.467,1.211-1.461,3.609-1.982,4.797c-0.282,0.646-1.171,2.57-1.171,2.57"/>
  2301. <path fill="#E0E0DF" d="M1338.071,321.433l13.236,14.69c0,0-0.973-0.612-1.279-0.842c-0.264-0.192-0.756-0.611-0.996-0.826 c-0.197-0.176-0.785-0.717-0.785-0.717s-1.008-0.955-1.323-1.287c-1.063-1.104-3.109-3.381-4.091-4.559 c-0.827-0.994-2.438-3.031-3.221-4.066c-0.428-0.563-1.672-2.278-1.672-2.278"/>
  2302. <path fill="#E0E0DF" d="M1337.466,319.292l-19.771,0.617c0,0,1.096-0.35,1.473-0.436c0.313-0.072,0.95-0.184,1.271-0.229 c0.266-0.037,1.056-0.135,1.056-0.135s1.378-0.156,1.839-0.187c1.525-0.099,4.587-0.187,6.121-0.177 c1.297,0.013,3.889,0.103,5.187,0.173c0.705,0.043,2.819,0.194,2.819,0.194"/>
  2303. </g>
  2304. <animateTransform restart="always" from="0 1338 320.078" dur="4s" to="359 1338 320.078" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  2305. </animateTransform>
  2306. </g>
  2307. <g>
  2308. <path fill="#66ADC5" d="M1335.923,320.073c-0.007,1.434,1.2,2.604,2.694,2.61c1.498,0.004,2.715-1.157,2.721-2.59 c0.009-1.438-1.2-2.604-2.7-2.613C1337.142,317.478,1335.927,318.632,1335.923,320.073"/>
  2309. </g>
  2310. <g>
  2311. <path fill="#BADBE5" d="M1336.903,320.078c-0.002,0.894,0.771,1.619,1.721,1.625c0.953,0.004,1.734-0.721,1.736-1.612 c0.004-0.896-0.771-1.623-1.725-1.628C1337.683,318.46,1336.906,319.183,1336.903,320.078"/>
  2312. </g>
  2313. </g>
  2314. </g>
  2315. <g id="_x23_81">
  2316. <g>
  2317. <path fill="#E0E0DF" d="M1290.101,320.078l-1.38,28.779c0,0,1.095,0.43,2.063,0.434c0.996,0.004,2.146-0.422,2.146-0.422 l-1.141-28.783L1290.101,320.078L1290.101,320.078z"/>
  2318. </g>
  2319. <g>
  2320. <g transform="rotate(91.5214 1291 320.078)">
  2321. <g>
  2322. <path fill="#42478C" d="M1289.799,319.028l2.201,0.852c0,0,5.844-12.162,6.271-18.754 C1293.957,306.345,1289.799,319.028,1289.799,319.028"/>
  2323. <path fill="#42478C" d="M1291.889,319.878l-1.813,1.511c0,0,7.77,11.026,13.321,14.617 C1300.937,329.69,1291.889,319.878,1291.889,319.878"/>
  2324. <path fill="#42478C" d="M1289.976,321.457l0.021-2.36c0,0-13.438-1.196-19.768,0.729 C1276.637,322.028,1289.976,321.457,1289.976,321.457"/>
  2325. </g>
  2326. <g>
  2327. <path fill="#E0E0DF" d="M1291.894,319.595l6.377-18.72c0,0-0.062,1.148-0.109,1.527c-0.038,0.321-0.163,0.957-0.233,1.274 c-0.06,0.258-0.246,1.033-0.246,1.033s-0.34,1.344-0.473,1.785c-0.445,1.467-1.438,4.361-1.988,5.789 c-0.466,1.211-1.461,3.609-1.982,4.797c-0.282,0.646-1.17,2.57-1.17,2.57"/>
  2328. <path fill="#E0E0DF" d="M1290.373,321.433l13.236,14.69c0,0-0.974-0.612-1.279-0.842c-0.264-0.192-0.755-0.611-0.996-0.826 c-0.197-0.176-0.785-0.717-0.785-0.717s-1.008-0.955-1.323-1.287c-1.063-1.104-3.11-3.381-4.091-4.559 c-0.827-0.994-2.438-3.031-3.221-4.066c-0.427-0.563-1.674-2.278-1.674-2.278"/>
  2329. <path fill="#E0E0DF" d="M1289.769,319.292l-19.768,0.617c0,0,1.094-0.35,1.473-0.436c0.312-0.072,0.949-0.184,1.271-0.229 c0.267-0.037,1.057-0.135,1.057-0.135s1.379-0.156,1.838-0.187c1.526-0.099,4.588-0.187,6.123-0.177 c1.295,0.013,3.887,0.103,5.186,0.173c0.704,0.043,2.818,0.194,2.818,0.194"/>
  2330. </g>
  2331. <animateTransform restart="always" from="0 1291 320.078" dur="4s" to="359 1291 320.078" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  2332. </animateTransform>
  2333. </g>
  2334. <g>
  2335. <path fill="#66ADC5" d="M1288.228,320.073c-0.008,1.434,1.2,2.604,2.694,2.61c1.499,0.004,2.716-1.157,2.722-2.59 c0.008-1.438-1.201-2.604-2.701-2.613C1289.446,317.478,1288.23,318.632,1288.228,320.073"/>
  2336. </g>
  2337. <g>
  2338. <path fill="#BADBE5" d="M1289.205,320.078c-0.003,0.894,0.771,1.619,1.722,1.625c0.952,0.004,1.732-0.721,1.734-1.612 c0.003-0.896-0.771-1.623-1.724-1.628C1289.987,318.46,1289.209,319.183,1289.205,320.078"/>
  2339. </g>
  2340. </g>
  2341. </g>
  2342. <g id="_x23_83">
  2343. <g>
  2344. <path fill="#E0E0DF" d="M1382.533,320.078l-1.379,28.779c0,0,1.094,0.43,2.063,0.434c0.996,0.004,2.147-0.422,2.147-0.422 l-1.141-28.783L1382.533,320.078L1382.533,320.078z"/>
  2345. </g>
  2346. <g>
  2347. <g transform="rotate(91.5214 1383 320.078)">
  2348. <g>
  2349. <path fill="#42478C" d="M1382.232,319.028l2.203,0.852c0,0,5.844-12.162,6.271-18.754 C1386.389,306.345,1382.232,319.028,1382.232,319.028"/>
  2350. <path fill="#42478C" d="M1384.323,319.878l-1.813,1.511c0,0,7.77,11.026,13.32,14.617 C1393.37,329.69,1384.323,319.878,1384.323,319.878"/>
  2351. <path fill="#42478C" d="M1382.408,321.457l0.021-2.36c0,0-13.438-1.196-19.766,0.729 C1369.071,322.028,1382.408,321.457,1382.408,321.457"/>
  2352. </g>
  2353. <g>
  2354. <path fill="#E0E0DF" d="M1384.328,319.595l6.377-18.72c0,0-0.063,1.148-0.11,1.527c-0.039,0.321-0.164,0.957-0.232,1.274 c-0.061,0.258-0.246,1.033-0.246,1.033s-0.34,1.344-0.473,1.785c-0.447,1.467-1.439,4.361-1.988,5.789 c-0.467,1.211-1.461,3.609-1.983,4.797c-0.282,0.646-1.171,2.57-1.171,2.57"/>
  2355. <path fill="#E0E0DF" d="M1382.806,321.433l13.238,14.69c0,0-0.974-0.612-1.281-0.842c-0.262-0.192-0.754-0.611-0.996-0.826 c-0.195-0.176-0.783-0.717-0.783-0.717s-1.01-0.955-1.323-1.287c-1.066-1.104-3.111-3.381-4.091-4.559 c-0.827-0.994-2.438-3.031-3.223-4.066c-0.426-0.563-1.673-2.278-1.673-2.278"/>
  2356. <path fill="#E0E0DF" d="M1382.203,319.292l-19.77,0.617c0,0,1.096-0.35,1.474-0.436c0.312-0.072,0.95-0.184,1.271-0.229 c0.268-0.037,1.057-0.135,1.057-0.135s1.377-0.156,1.839-0.187c1.526-0.099,4.587-0.187,6.122-0.177 c1.295,0.013,3.887,0.103,5.185,0.173c0.704,0.043,2.817,0.194,2.817,0.194"/>
  2357. </g>
  2358. <animateTransform restart="always" from="0 1383 320.078" dur="4s" to="359 1383 320.078" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  2359. </animateTransform>
  2360. </g>
  2361. <g>
  2362. <path fill="#66ADC5" d="M1380.66,320.073c-0.007,1.434,1.201,2.604,2.693,2.61c1.5,0.004,2.718-1.157,2.724-2.59 c0.007-1.438-1.202-2.604-2.702-2.613C1381.878,317.478,1380.663,318.632,1380.66,320.073"/>
  2363. </g>
  2364. <g>
  2365. <path fill="#BADBE5" d="M1381.639,320.078c-0.003,0.894,0.771,1.619,1.722,1.625c0.951,0.004,1.732-0.721,1.734-1.612 c0.003-0.896-0.771-1.623-1.724-1.628C1382.418,318.46,1381.642,319.183,1381.639,320.078"/>
  2366. </g>
  2367. </g>
  2368. </g>
  2369. <g id="_x23_84">
  2370. <g>
  2371. <path fill="#E0E0DF" d="M1435.513,320.078l-1.379,28.779c0,0,1.094,0.43,2.063,0.434c0.996,0.004,2.147-0.422,2.147-0.422 l-1.14-28.783L1435.513,320.078L1435.513,320.078z"/>
  2372. </g>
  2373. <g>
  2374. <g transform="rotate(91.5214 1436 320.078)">
  2375. <g>
  2376. <path fill="#42478C" d="M1435.212,319.028l2.202,0.852c0,0,5.843-12.162,6.269-18.754 C1439.37,306.345,1435.212,319.028,1435.212,319.028"/>
  2377. <path fill="#42478C" d="M1437.302,319.878l-1.813,1.511c0,0,7.771,11.026,13.32,14.617 C1446.351,329.69,1437.302,319.878,1437.302,319.878"/>
  2378. <path fill="#42478C" d="M1435.388,321.457l0.021-2.36c0,0-13.438-1.196-19.766,0.729 C1422.05,322.028,1435.388,321.457,1435.388,321.457"/>
  2379. </g>
  2380. <g>
  2381. <path fill="#E0E0DF" d="M1437.308,319.595l6.377-18.72c0,0-0.062,1.148-0.109,1.527c-0.039,0.321-0.164,0.957-0.233,1.274 c-0.06,0.258-0.246,1.033-0.246,1.033s-0.34,1.344-0.474,1.785c-0.444,1.467-1.438,4.361-1.987,5.789 c-0.468,1.211-1.461,3.609-1.982,4.797c-0.281,0.646-1.17,2.57-1.17,2.57"/>
  2382. <path fill="#E0E0DF" d="M1435.786,321.433l13.237,14.69c0,0-0.974-0.612-1.28-0.842c-0.263-0.192-0.754-0.611-0.995-0.826 c-0.197-0.176-0.785-0.717-0.785-0.717s-1.009-0.955-1.323-1.287c-1.063-1.104-3.11-3.381-4.091-4.559 c-0.827-0.994-2.438-3.031-3.221-4.066c-0.427-0.563-1.673-2.278-1.673-2.278"/>
  2383. <path fill="#E0E0DF" d="M1435.183,319.292l-19.769,0.617c0,0,1.095-0.35,1.474-0.436c0.313-0.072,0.949-0.184,1.271-0.229 c0.267-0.037,1.056-0.135,1.056-0.135s1.379-0.156,1.838-0.187c1.526-0.099,4.59-0.187,6.123-0.177 c1.295,0.013,3.889,0.103,5.186,0.173c0.705,0.043,2.818,0.194,2.818,0.194"/>
  2384. </g>
  2385. <animateTransform restart="always" from="0 1436 320.078" dur="4s" to="359 1436 320.078" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  2386. </animateTransform>
  2387. </g>
  2388. <g>
  2389. <path fill="#66ADC5" d="M1433.64,320.073c-0.006,1.434,1.201,2.604,2.694,2.61c1.498,0.004,2.716-1.157,2.724-2.59 c0.008-1.438-1.201-2.604-2.701-2.613C1434.86,317.478,1433.644,318.632,1433.64,320.073"/>
  2390. </g>
  2391. <g>
  2392. <path fill="#BADBE5" d="M1434.62,320.078c-0.004,0.894,0.769,1.619,1.72,1.625c0.953,0.004,1.733-0.721,1.735-1.612 c0.004-0.896-0.771-1.623-1.724-1.628C1435.401,318.46,1434.623,319.183,1434.62,320.078"/>
  2393. </g>
  2394. </g>
  2395. </g>
  2396. <g id="_x23_85">
  2397. <g>
  2398. <path fill="#E0E0DF" d="M1486.991,320.078l-1.38,28.779c0,0,1.095,0.43,2.063,0.434c0.995,0.004,2.146-0.422,2.146-0.422 l-1.142-28.783L1486.991,320.078L1486.991,320.078z"/>
  2399. </g>
  2400. <g>
  2401. <g transform="rotate(91.5214 1488 320.078)">
  2402. <g>
  2403. <path fill="#42478C" d="M1486.691,319.028l2.203,0.852c0,0,5.842-12.162,6.269-18.754 C1490.849,306.345,1486.691,319.028,1486.691,319.028"/>
  2404. <path fill="#42478C" d="M1488.781,319.878l-1.813,1.511c0,0,7.768,11.026,13.319,14.617 C1497.828,329.69,1488.781,319.878,1488.781,319.878"/>
  2405. <path fill="#42478C" d="M1486.866,321.457l0.021-2.36c0,0-13.438-1.196-19.767,0.729 C1473.531,322.028,1486.866,321.457,1486.866,321.457"/>
  2406. </g>
  2407. <g>
  2408. <path fill="#E0E0DF" d="M1488.786,319.595l6.377-18.72c0,0-0.062,1.148-0.11,1.527c-0.038,0.321-0.163,0.957-0.233,1.274 c-0.06,0.258-0.245,1.033-0.245,1.033s-0.341,1.344-0.474,1.785c-0.444,1.467-1.438,4.361-1.988,5.789 c-0.467,1.211-1.461,3.609-1.983,4.797c-0.28,0.646-1.17,2.57-1.17,2.57"/>
  2409. <path fill="#E0E0DF" d="M1487.264,321.433l13.238,14.69c0,0-0.975-0.612-1.281-0.842c-0.262-0.192-0.754-0.611-0.993-0.826 c-0.199-0.176-0.785-0.717-0.785-0.717s-1.011-0.955-1.326-1.287c-1.063-1.104-3.109-3.381-4.09-4.559 c-0.828-0.994-2.438-3.031-3.222-4.066c-0.426-0.563-1.672-2.278-1.672-2.278"/>
  2410. <path fill="#E0E0DF" d="M1486.661,319.292l-19.769,0.617c0,0,1.097-0.35,1.474-0.436c0.313-0.072,0.948-0.184,1.271-0.229 c0.267-0.037,1.058-0.135,1.058-0.135s1.377-0.156,1.838-0.187c1.524-0.099,4.586-0.187,6.121-0.177 c1.295,0.013,3.887,0.103,5.184,0.173c0.705,0.043,2.82,0.194,2.82,0.194"/>
  2411. </g>
  2412. <animateTransform restart="always" from="0 1488 320.078" dur="4s" to="359 1488 320.078" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  2413. </animateTransform>
  2414. </g>
  2415. <g>
  2416. <path fill="#66ADC5" d="M1485.118,320.073c-0.006,1.434,1.201,2.604,2.696,2.61c1.498,0.004,2.714-1.157,2.72-2.59 c0.007-1.438-1.2-2.604-2.7-2.613C1486.336,317.478,1485.123,318.632,1485.118,320.073"/>
  2417. </g>
  2418. <g>
  2419. <path fill="#BADBE5" d="M1486.099,320.078c-0.005,0.894,0.769,1.619,1.719,1.625c0.953,0.004,1.733-0.721,1.735-1.612 c0.005-0.896-0.771-1.623-1.724-1.628C1486.877,318.46,1486.101,319.183,1486.099,320.078"/>
  2420. </g>
  2421. </g>
  2422. </g>
  2423. <g id="_x23_86">
  2424. <g>
  2425. <path fill="#E0E0DF" d="M1534.933,320.078l-1.378,28.779c0,0,1.095,0.43,2.063,0.434c0.998,0.004,2.149-0.422,2.149-0.422 l-1.142-28.783L1534.933,320.078L1534.933,320.078z"/>
  2426. </g>
  2427. <g>
  2428. <g transform="rotate(91.5214 1536 320.078)">
  2429. <g>
  2430. <path fill="#42478C" d="M1534.631,319.028l2.203,0.852c0,0,5.844-12.162,6.271-18.754 C1538.788,306.345,1534.631,319.028,1534.631,319.028"/>
  2431. <path fill="#42478C" d="M1536.721,319.878l-1.813,1.511c0,0,7.769,11.026,13.321,14.617 C1545.773,329.69,1536.721,319.878,1536.721,319.878"/>
  2432. <path fill="#42478C" d="M1534.81,321.457l0.021-2.36c0,0-13.438-1.196-19.766,0.729 C1521.471,322.028,1534.81,321.457,1534.81,321.457"/>
  2433. </g>
  2434. <g>
  2435. <path fill="#E0E0DF" d="M1536.73,319.595l6.377-18.72c0,0-0.063,1.148-0.11,1.527c-0.041,0.321-0.164,0.957-0.235,1.274 c-0.058,0.258-0.243,1.033-0.243,1.033s-0.341,1.344-0.475,1.785c-0.443,1.467-1.438,4.361-1.989,5.789 c-0.465,1.211-1.461,3.609-1.98,4.797c-0.282,0.646-1.173,2.57-1.173,2.57"/>
  2436. <path fill="#E0E0DF" d="M1535.207,321.433l13.237,14.69c0,0-0.976-0.612-1.28-0.842c-0.263-0.192-0.755-0.611-0.996-0.826 c-0.198-0.176-0.785-0.717-0.785-0.717s-1.01-0.955-1.325-1.287c-1.063-1.104-3.108-3.381-4.088-4.559 c-0.828-0.994-2.438-3.031-3.222-4.066c-0.429-0.563-1.675-2.278-1.675-2.278"/>
  2437. <path fill="#E0E0DF" d="M1534.603,319.292l-19.769,0.617c0,0,1.096-0.35,1.474-0.436c0.312-0.072,0.95-0.184,1.271-0.229 c0.267-0.037,1.056-0.135,1.056-0.135s1.377-0.156,1.838-0.187c1.526-0.099,4.59-0.187,6.121-0.177 c1.297,0.013,3.891,0.103,5.186,0.173c0.707,0.043,2.818,0.194,2.818,0.194"/>
  2438. </g>
  2439. <animateTransform restart="always" from="0 1536 320.078" dur="4s" to="359 1536 320.078" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  2440. </animateTransform>
  2441. </g>
  2442. <g>
  2443. <path fill="#66ADC5" d="M1533.062,320.073c-0.009,1.434,1.198,2.604,2.694,2.61c1.498,0.004,2.715-1.157,2.722-2.59 c0.006-1.438-1.203-2.604-2.701-2.613C1534.281,317.478,1533.066,318.632,1533.062,320.073"/>
  2444. </g>
  2445. <g>
  2446. <path fill="#BADBE5" d="M1534.038,320.078c-0.002,0.894,0.771,1.619,1.722,1.625c0.953,0.004,1.733-0.721,1.733-1.612 c0.004-0.896-0.771-1.623-1.722-1.628C1534.822,318.46,1534.043,319.183,1534.038,320.078"/>
  2447. </g>
  2448. </g>
  2449. </g>
  2450. <g id="_x23_87">
  2451. <g>
  2452. <path fill="#E0E0DF" d="M1580.907,320.078l-1.377,28.779c0,0,1.095,0.43,2.062,0.434c0.998,0.004,2.149-0.422,2.149-0.422 l-1.142-28.783L1580.907,320.078L1580.907,320.078z"/>
  2453. </g>
  2454. <g>
  2455. <g transform="rotate(91.5214 1582 320.078)">
  2456. <g>
  2457. <path fill="#42478C" d="M1580.607,319.028l2.203,0.852c0,0,5.844-12.162,6.271-18.754 C1584.764,306.345,1580.607,319.028,1580.607,319.028"/>
  2458. <path fill="#42478C" d="M1582.697,319.878l-1.813,1.511c0,0,7.77,11.026,13.321,14.617 C1591.746,329.69,1582.697,319.878,1582.697,319.878"/>
  2459. <path fill="#42478C" d="M1580.784,321.457l0.021-2.36c0,0-13.439-1.196-19.767,0.729 C1567.447,322.028,1580.784,321.457,1580.784,321.457"/>
  2460. </g>
  2461. <g>
  2462. <path fill="#E0E0DF" d="M1582.703,319.595l6.377-18.72c0,0-0.063,1.148-0.11,1.527c-0.041,0.321-0.164,0.957-0.234,1.274 c-0.059,0.258-0.244,1.033-0.244,1.033s-0.342,1.344-0.475,1.785c-0.443,1.467-1.438,4.361-1.988,5.789 c-0.467,1.211-1.463,3.609-1.981,4.797c-0.283,0.646-1.173,2.57-1.173,2.57"/>
  2463. <path fill="#E0E0DF" d="M1581.183,321.433l13.237,14.69c0,0-0.976-0.612-1.28-0.842c-0.263-0.192-0.755-0.611-0.996-0.826 c-0.198-0.176-0.785-0.717-0.785-0.717s-1.01-0.955-1.325-1.287c-1.063-1.104-3.108-3.381-4.089-4.559 c-0.827-0.994-2.438-3.031-3.221-4.066c-0.429-0.563-1.675-2.278-1.675-2.278"/>
  2464. <path fill="#E0E0DF" d="M1580.577,319.292l-19.769,0.617c0,0,1.097-0.35,1.474-0.436c0.313-0.072,0.951-0.184,1.271-0.229 c0.268-0.037,1.057-0.135,1.057-0.135s1.377-0.156,1.838-0.187c1.525-0.099,4.588-0.187,6.121-0.177 c1.297,0.013,3.89,0.103,5.185,0.173c0.707,0.043,2.819,0.194,2.819,0.194"/>
  2465. </g>
  2466. <animateTransform restart="always" from="0 1582 320.078" dur="4s" to="359 1582 320.078" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  2467. </animateTransform>
  2468. </g>
  2469. <g>
  2470. <path fill="#66ADC5" d="M1579.036,320.073c-0.009,1.434,1.198,2.604,2.694,2.61c1.498,0.004,2.715-1.157,2.722-2.59 c0.007-1.438-1.202-2.604-2.7-2.613C1580.254,317.478,1579.038,318.632,1579.036,320.073"/>
  2471. </g>
  2472. <g>
  2473. <path fill="#BADBE5" d="M1580.014,320.078c-0.002,0.894,0.771,1.619,1.722,1.625c0.953,0.004,1.733-0.721,1.733-1.612 c0.005-0.896-0.771-1.623-1.721-1.628C1580.795,318.46,1580.019,319.183,1580.014,320.078"/>
  2474. </g>
  2475. </g>
  2476. </g>
  2477. <g id="_x23_88">
  2478. <g>
  2479. <path fill="#E0E0DF" d="M1627.439,320.078l-1.379,28.779c0,0,1.096,0.43,2.063,0.434c0.996,0.004,2.147-0.422,2.147-0.422 l-1.141-28.783L1627.439,320.078L1627.439,320.078z"/>
  2480. </g>
  2481. <g>
  2482. <g transform="rotate(91.5214 1628 320.078)">
  2483. <g>
  2484. <path fill="#42478C" d="M1627.137,319.028l2.203,0.852c0,0,5.843-12.162,6.271-18.754 C1631.295,306.345,1627.137,319.028,1627.137,319.028"/>
  2485. <path fill="#42478C" d="M1629.228,319.878l-1.813,1.511c0,0,7.769,11.026,13.32,14.617 C1638.278,329.69,1629.228,319.878,1629.228,319.878"/>
  2486. <path fill="#42478C" d="M1627.316,321.457l0.021-2.36c0,0-13.438-1.196-19.768,0.729 C1613.978,322.028,1627.316,321.457,1627.316,321.457"/>
  2487. </g>
  2488. <g>
  2489. <path fill="#E0E0DF" d="M1629.234,319.595l6.38-18.72c0,0-0.063,1.148-0.11,1.527c-0.041,0.321-0.166,0.957-0.235,1.274 c-0.061,0.258-0.244,1.033-0.244,1.033s-0.342,1.344-0.474,1.785c-0.446,1.467-1.438,4.361-1.989,5.789 c-0.465,1.211-1.461,3.609-1.982,4.797c-0.281,0.646-1.171,2.57-1.171,2.57"/>
  2490. <path fill="#E0E0DF" d="M1627.713,321.433l13.236,14.69c0,0-0.975-0.612-1.28-0.842c-0.264-0.192-0.755-0.611-0.995-0.826 c-0.198-0.176-0.786-0.717-0.786-0.717s-1.009-0.955-1.324-1.287c-1.063-1.104-3.108-3.381-4.09-4.559 c-0.826-0.994-2.437-3.031-3.22-4.066c-0.428-0.563-1.674-2.278-1.674-2.278"/>
  2491. <path fill="#E0E0DF" d="M1627.109,319.292l-19.769,0.617c0,0,1.097-0.35,1.474-0.436c0.312-0.072,0.949-0.184,1.271-0.229 c0.267-0.037,1.058-0.135,1.058-0.135s1.377-0.156,1.838-0.187c1.525-0.099,4.588-0.187,6.121-0.177 c1.297,0.013,3.889,0.103,5.185,0.173c0.706,0.043,2.819,0.194,2.819,0.194"/>
  2492. </g>
  2493. <animateTransform restart="always" from="0 1628 320.078" dur="4s" to="359 1628 320.078" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  2494. </animateTransform>
  2495. </g>
  2496. <g>
  2497. <path fill="#66ADC5" d="M1625.566,320.073c-0.006,1.434,1.201,2.604,2.695,2.61c1.499,0.004,2.717-1.157,2.723-2.59 c0.006-1.438-1.203-2.604-2.701-2.613C1626.785,317.478,1625.572,318.632,1625.566,320.073"/>
  2498. </g>
  2499. <g>
  2500. <path fill="#BADBE5" d="M1626.545,320.078c-0.004,0.894,0.771,1.619,1.721,1.625c0.952,0.004,1.732-0.721,1.734-1.612 c0.004-0.896-0.771-1.623-1.723-1.628C1627.327,318.46,1626.547,319.183,1626.545,320.078"/>
  2501. </g>
  2502. </g>
  2503. </g>
  2504. <g id="_x23_89">
  2505. <g>
  2506. <path fill="#E0E0DF" d="M1671.742,320.078l-1.377,28.779c0,0,1.095,0.43,2.063,0.434c0.996,0.004,2.147-0.422,2.147-0.422 l-1.143-28.783L1671.742,320.078L1671.742,320.078z"/>
  2507. </g>
  2508. <g>
  2509. <g transform="rotate(91.5214 1672 320.078)">
  2510. <g>
  2511. <path fill="#42478C" d="M1671.443,319.028l2.201,0.852c0,0,5.846-12.162,6.271-18.754 C1675.599,306.345,1671.443,319.028,1671.443,319.028"/>
  2512. <path fill="#42478C" d="M1673.533,319.878l-1.813,1.511c0,0,7.77,11.026,13.322,14.617 C1682.58,329.69,1673.533,319.878,1673.533,319.878"/>
  2513. <path fill="#42478C" d="M1671.619,321.457l0.021-2.36c0,0-13.44-1.196-19.77,0.729 C1658.281,322.028,1671.619,321.457,1671.619,321.457"/>
  2514. </g>
  2515. <g>
  2516. <path fill="#E0E0DF" d="M1673.538,319.595l6.377-18.72c0,0-0.063,1.148-0.11,1.527c-0.038,0.321-0.163,0.957-0.235,1.274 c-0.058,0.258-0.243,1.033-0.243,1.033s-0.341,1.344-0.474,1.785c-0.447,1.467-1.438,4.361-1.99,5.789 c-0.465,1.211-1.461,3.609-1.98,4.797c-0.283,0.646-1.171,2.57-1.171,2.57"/>
  2517. <path fill="#E0E0DF" d="M1672.017,321.433l13.238,14.69c0,0-0.976-0.612-1.281-0.842c-0.262-0.192-0.754-0.611-0.994-0.826 c-0.197-0.176-0.785-0.717-0.785-0.717s-1.01-0.955-1.326-1.287c-1.063-1.104-3.108-3.381-4.09-4.559 c-0.826-0.994-2.438-3.031-3.221-4.066c-0.428-0.563-1.674-2.278-1.674-2.278"/>
  2518. <path fill="#E0E0DF" d="M1671.413,319.292l-19.771,0.617c0,0,1.097-0.35,1.474-0.436c0.312-0.072,0.95-0.184,1.271-0.229 c0.266-0.037,1.057-0.135,1.057-0.135s1.377-0.156,1.838-0.187c1.525-0.099,4.588-0.187,6.123-0.177 c1.295,0.013,3.888,0.103,5.183,0.173c0.707,0.043,2.819,0.194,2.819,0.194"/>
  2519. </g>
  2520. <animateTransform restart="always" from="0 1672 320.078" dur="4s" to="359 1672 320.078" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  2521. </animateTransform>
  2522. </g>
  2523. <g>
  2524. <path fill="#66ADC5" d="M1669.869,320.073c-0.006,1.434,1.203,2.604,2.697,2.61c1.498,0.004,2.715-1.157,2.721-2.59 c0.006-1.438-1.203-2.604-2.701-2.613C1671.089,317.478,1669.873,318.632,1669.869,320.073"/>
  2525. </g>
  2526. <g>
  2527. <path fill="#BADBE5" d="M1670.849,320.078c-0.002,0.894,0.771,1.619,1.723,1.625c0.951,0.004,1.732-0.721,1.734-1.612 c0.002-0.896-0.771-1.623-1.724-1.628C1671.63,318.46,1670.853,319.183,1670.849,320.078"/>
  2528. </g>
  2529. </g>
  2530. </g>
  2531. <g id="_x23_79">
  2532. <g>
  2533. <path fill="#DFDFDD" d="M1195.968,317.925l-1.377,28.778c0,0,1.094,0.431,2.063,0.435c0.996,0.004,2.147-0.422,2.147-0.422 l-1.141-28.783L1195.968,317.925L1195.968,317.925z"/>
  2534. </g>
  2535. <g>
  2536. <g transform="rotate(91.5214 1197 317.925)">
  2537. <g>
  2538. <path fill="#3E4484" d="M1195.666,316.875l2.203,0.853c0,0,5.845-12.162,6.271-18.755 C1199.824,304.193,1195.666,316.875,1195.666,316.875"/>
  2539. <path fill="#3E4484" d="M1197.758,317.726l-1.813,1.511c0,0,7.77,11.026,13.321,14.616 C1206.808,327.537,1197.758,317.726,1197.758,317.726"/>
  2540. <path fill="#3E4484" d="M1195.845,319.304l0.021-2.36c0,0-13.438-1.197-19.768,0.729 C1182.507,319.875,1195.845,319.304,1195.845,319.304"/>
  2541. </g>
  2542. <g>
  2543. <path fill="#DFDFDD" d="M1197.764,317.443l6.378-18.72c0,0-0.063,1.147-0.11,1.527c-0.039,0.321-0.164,0.956-0.234,1.274 c-0.059,0.258-0.244,1.032-0.244,1.032s-0.341,1.345-0.473,1.785c-0.447,1.467-1.439,4.36-1.99,5.789 c-0.465,1.211-1.461,3.608-1.982,4.797c-0.281,0.646-1.171,2.57-1.171,2.57"/>
  2544. <path fill="#DFDFDD" d="M1196.243,319.281l13.237,14.69c0,0-0.976-0.612-1.282-0.842c-0.263-0.192-0.753-0.61-0.993-0.826 c-0.198-0.176-0.785-0.717-0.785-0.717s-1.011-0.955-1.326-1.287c-1.063-1.103-3.109-3.381-4.09-4.558 c-0.827-0.996-2.438-3.032-3.22-4.067c-0.429-0.563-1.675-2.278-1.675-2.278"/>
  2545. <path fill="#DFDFDD" d="M1195.639,317.14l-19.77,0.617c0,0,1.097-0.349,1.474-0.435c0.312-0.073,0.951-0.185,1.271-0.229 c0.266-0.037,1.057-0.135,1.057-0.135s1.377-0.156,1.838-0.188c1.524-0.098,4.588-0.186,6.122-0.176 c1.296,0.013,3.888,0.103,5.183,0.172c0.707,0.043,2.82,0.195,2.82,0.195"/>
  2546. </g>
  2547. <animateTransform restart="always" from="0 1197 317.925" dur="4s" to="359 1197 317.925" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  2548. </animateTransform>
  2549. </g>
  2550. <g>
  2551. <path fill="#63A5BA" d="M1194.095,317.92c-0.006,1.435,1.202,2.604,2.696,2.61c1.498,0.004,2.716-1.158,2.722-2.59 c0.006-1.438-1.203-2.604-2.701-2.613C1195.314,315.326,1194.1,316.48,1194.095,317.92"/>
  2552. </g>
  2553. <g>
  2554. <path fill="#B6D6DE" d="M1195.074,317.925c-0.002,0.894,0.771,1.619,1.723,1.625c0.951,0.004,1.731-0.722,1.733-1.613 c0.003-0.895-0.771-1.622-1.723-1.627C1195.857,316.308,1195.077,317.031,1195.074,317.925"/>
  2555. </g>
  2556. </g>
  2557. </g>
  2558. <g id="_x23_90">
  2559. <g>
  2560. <path fill="#E0E0DF" d="M1719.235,321.374l-1.379,28.779c0,0,1.095,0.43,2.063,0.434c0.996,0.004,2.147-0.422,2.147-0.422 l-1.142-28.783L1719.235,321.374L1719.235,321.374z"/>
  2561. </g>
  2562. <g>
  2563. <g transform="rotate(91.5214 1720 321.374)">
  2564. <g>
  2565. <path fill="#42478C" d="M1718.933,320.324l2.203,0.853c0,0,5.844-12.162,6.271-18.755 C1723.092,307.64,1718.933,320.324,1718.933,320.324"/>
  2566. <path fill="#42478C" d="M1721.025,321.173l-1.813,1.51c0,0,7.769,11.027,13.321,14.617 C1730.073,330.986,1721.025,321.173,1721.025,321.173"/>
  2567. <path fill="#42478C" d="M1719.11,322.752l0.021-2.361c0,0-13.439-1.195-19.769,0.729 C1705.773,323.324,1719.11,322.752,1719.11,322.752"/>
  2568. </g>
  2569. <g>
  2570. <path fill="#E0E0DF" d="M1721.031,320.89l6.377-18.719c0,0-0.063,1.148-0.11,1.527c-0.039,0.322-0.164,0.957-0.235,1.274 c-0.058,0.259-0.244,1.033-0.244,1.033s-0.34,1.344-0.474,1.784c-0.444,1.468-1.438,4.361-1.987,5.789 c-0.467,1.211-1.463,3.609-1.983,4.797c-0.282,0.646-1.17,2.57-1.17,2.57"/>
  2571. <path fill="#E0E0DF" d="M1719.509,322.728l13.237,14.691c0,0-0.975-0.613-1.28-0.842c-0.263-0.193-0.754-0.611-0.996-0.826 c-0.197-0.176-0.785-0.717-0.785-0.717s-1.008-0.955-1.323-1.287c-1.064-1.102-3.109-3.381-4.091-4.557 c-0.826-0.996-2.438-3.033-3.221-4.068c-0.427-0.563-1.673-2.279-1.673-2.279"/>
  2572. <path fill="#E0E0DF" d="M1718.906,320.588l-19.771,0.617c0,0,1.096-0.348,1.475-0.435c0.312-0.073,0.949-0.185,1.271-0.229 c0.267-0.037,1.056-0.135,1.056-0.135s1.379-0.156,1.838-0.188c1.526-0.098,4.589-0.186,6.123-0.176 c1.295,0.012,3.888,0.102,5.183,0.172c0.707,0.043,2.819,0.195,2.819,0.195"/>
  2573. </g>
  2574. <animateTransform restart="always" from="0 1720 321.374" dur="4s" to="359 1720 321.374" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  2575. </animateTransform>
  2576. </g>
  2577. <g>
  2578. <path fill="#66ADC5" d="M1717.362,321.369c-0.008,1.435,1.201,2.604,2.695,2.609c1.497,0.006,2.717-1.156,2.723-2.59 c0.005-1.438-1.203-2.604-2.702-2.611C1718.58,318.775,1717.366,319.927,1717.362,321.369"/>
  2579. </g>
  2580. <g>
  2581. <path fill="#BADBE5" d="M1718.341,321.374c-0.002,0.893,0.771,1.619,1.721,1.625c0.953,0.004,1.733-0.721,1.735-1.613 c0.004-0.895-0.771-1.623-1.723-1.627C1719.121,319.756,1718.345,320.478,1718.341,321.374"/>
  2582. </g>
  2583. </g>
  2584. </g>
  2585. <g id="_x23_91">
  2586. <g>
  2587. <path fill="#E0E0DF" d="M1769.069,321.374l-1.381,28.779c0,0,1.096,0.43,2.063,0.434c0.996,0.004,2.147-0.422,2.147-0.422 l-1.141-28.783L1769.069,321.374L1769.069,321.374z"/>
  2588. </g>
  2589. <g>
  2590. <g transform="rotate(91.5214 1770 321.374)">
  2591. <g>
  2592. <path fill="#42478C" d="M1768.769,320.324l2.201,0.853c0,0,5.844-12.162,6.271-18.755 C1772.926,307.64,1768.769,320.324,1768.769,320.324"/>
  2593. <path fill="#42478C" d="M1770.859,321.173l-1.813,1.51c0,0,7.77,11.027,13.321,14.617 C1779.906,330.986,1770.859,321.173,1770.859,321.173"/>
  2594. <path fill="#42478C" d="M1768.944,322.752l0.021-2.361c0,0-13.438-1.195-19.767,0.729 C1755.605,323.324,1768.944,322.752,1768.944,322.752"/>
  2595. </g>
  2596. <g>
  2597. <path fill="#E0E0DF" d="M1770.864,320.89l6.377-18.719c0,0-0.063,1.148-0.11,1.527c-0.039,0.322-0.164,0.957-0.232,1.274 c-0.062,0.259-0.246,1.033-0.246,1.033s-0.34,1.344-0.475,1.784c-0.443,1.468-1.438,4.361-1.986,5.789 c-0.468,1.211-1.461,3.609-1.983,4.797c-0.282,0.646-1.171,2.57-1.171,2.57"/>
  2598. <path fill="#E0E0DF" d="M1769.342,322.728l13.238,14.691c0,0-0.975-0.613-1.281-0.842c-0.262-0.193-0.754-0.611-0.996-0.826 c-0.196-0.176-0.784-0.717-0.784-0.717s-1.009-0.955-1.324-1.287c-1.063-1.102-3.109-3.381-4.09-4.557 c-0.828-0.996-2.438-3.033-3.222-4.068c-0.426-0.563-1.673-2.279-1.673-2.279"/>
  2599. <path fill="#E0E0DF" d="M1768.739,320.588l-19.77,0.617c0,0,1.094-0.348,1.473-0.435c0.313-0.073,0.949-0.185,1.271-0.229 c0.268-0.037,1.057-0.135,1.057-0.135s1.379-0.156,1.838-0.188c1.525-0.098,4.588-0.186,6.123-0.176 c1.295,0.012,3.887,0.102,5.184,0.172c0.705,0.043,2.82,0.195,2.82,0.195"/>
  2600. </g>
  2601. <animateTransform restart="always" from="0 1770 321.374" dur="4s" to="359 1770 321.374" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  2602. </animateTransform>
  2603. </g>
  2604. <g>
  2605. <path fill="#66ADC5" d="M1767.196,321.369c-0.008,1.435,1.199,2.604,2.693,2.609c1.5,0.006,2.717-1.156,2.723-2.59 c0.007-1.438-1.202-2.604-2.701-2.611C1768.413,318.775,1767.199,319.927,1767.196,321.369"/>
  2606. </g>
  2607. <g>
  2608. <path fill="#BADBE5" d="M1768.175,321.374c-0.003,0.893,0.77,1.619,1.721,1.625c0.953,0.004,1.733-0.721,1.735-1.613 c0.003-0.895-0.771-1.623-1.725-1.627C1768.954,319.756,1768.178,320.478,1768.175,321.374"/>
  2609. </g>
  2610. </g>
  2611. </g>
  2612. <g id="_x23_92">
  2613. <g>
  2614. <path fill="#E0E0DF" d="M1232.36,695.798l-1.379,28.779c0,0,1.095,0.43,2.063,0.434c0.996,0.004,2.147-0.422,2.147-0.422 l-1.141-28.783L1232.36,695.798L1232.36,695.798z"/>
  2615. </g>
  2616. <g>
  2617. <g transform="rotate(91.5214 1233 695.798)">
  2618. <g>
  2619. <path fill="#42478C" d="M1232.062,694.75l2.203,0.854c0,0,5.842-12.162,6.268-18.757 C1236.219,682.067,1232.062,694.75,1232.062,694.75"/>
  2620. <path fill="#42478C" d="M1234.15,695.599l-1.813,1.512c0,0,7.769,11.025,13.321,14.615 C1243.198,705.412,1234.15,695.599,1234.15,695.599"/>
  2621. <path fill="#42478C" d="M1232.235,697.177l0.021-2.359c0,0-13.439-1.196-19.769,0.729 C1218.898,697.75,1232.235,697.177,1232.235,697.177"/>
  2622. </g>
  2623. <g>
  2624. <path fill="#E0E0DF" d="M1234.156,695.317l6.377-18.721c0,0-0.062,1.148-0.109,1.527c-0.039,0.322-0.164,0.957-0.234,1.275 c-0.06,0.258-0.246,1.031-0.246,1.031s-0.34,1.346-0.473,1.784c-0.445,1.469-1.438,4.361-1.988,5.789 c-0.467,1.211-1.461,3.609-1.982,4.797c-0.282,0.646-1.171,2.57-1.171,2.57"/>
  2625. <path fill="#E0E0DF" d="M1232.635,697.155l13.236,14.689c0,0-0.973-0.611-1.279-0.842c-0.264-0.193-0.755-0.611-0.995-0.826 c-0.197-0.176-0.785-0.717-0.785-0.717s-1.009-0.955-1.324-1.287c-1.063-1.102-3.109-3.381-4.09-4.557 c-0.828-0.996-2.438-3.033-3.221-4.068c-0.428-0.563-1.673-2.277-1.673-2.277"/>
  2626. <path fill="#E0E0DF" d="M1232.031,695.013l-19.77,0.617c0,0,1.095-0.348,1.472-0.434c0.313-0.074,0.951-0.187,1.271-0.229 c0.266-0.037,1.057-0.135,1.057-0.135s1.377-0.156,1.838-0.188c1.525-0.098,4.587-0.186,6.121-0.176 c1.297,0.014,3.889,0.104,5.188,0.172c0.704,0.043,2.818,0.195,2.818,0.195"/>
  2627. </g>
  2628. <animateTransform restart="always" from="0 1233 695.798" dur="4s" to="359 1233 695.798" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  2629. </animateTransform>
  2630. </g>
  2631. <g>
  2632. <path fill="#66ADC5" d="M1230.488,695.794c-0.007,1.436,1.2,2.604,2.694,2.61c1.498,0.005,2.715-1.157,2.721-2.591 c0.009-1.438-1.2-2.604-2.7-2.611C1231.705,693.201,1230.491,694.353,1230.488,695.794"/>
  2633. </g>
  2634. <g>
  2635. <path fill="#BADBE5" d="M1231.467,695.798c-0.002,0.895,0.771,1.619,1.722,1.625c0.952,0.004,1.733-0.721,1.735-1.613 c0.004-0.895-0.771-1.621-1.725-1.627C1232.246,694.181,1231.471,694.905,1231.467,695.798"/>
  2636. </g>
  2637. </g>
  2638. </g>
  2639. <g id="_x23_93">
  2640. <g>
  2641. <path fill="#E0E0DF" d="M1277.58,695.798l-1.379,28.779c0,0,1.095,0.43,2.063,0.434c0.996,0.004,2.146-0.422,2.146-0.422 l-1.14-28.783L1277.58,695.798L1277.58,695.798z"/>
  2642. </g>
  2643. <g>
  2644. <g transform="rotate(91.5214 1278 695.798)">
  2645. <g>
  2646. <path fill="#42478C" d="M1277.28,694.75l2.203,0.854c0,0,5.843-12.162,6.27-18.757 C1281.439,682.067,1277.28,694.75,1277.28,694.75"/>
  2647. <path fill="#42478C" d="M1279.37,695.599l-1.813,1.512c0,0,7.769,11.025,13.319,14.615 C1288.418,705.412,1279.37,695.599,1279.37,695.599"/>
  2648. <path fill="#42478C" d="M1277.455,697.177l0.021-2.359c0,0-13.439-1.196-19.767,0.729 C1264.118,697.75,1277.455,697.177,1277.455,697.177"/>
  2649. </g>
  2650. <g>
  2651. <path fill="#E0E0DF" d="M1279.375,695.317l6.379-18.721c0,0-0.063,1.148-0.11,1.527c-0.039,0.322-0.164,0.957-0.234,1.275 c-0.059,0.258-0.245,1.031-0.245,1.031s-0.341,1.346-0.474,1.784c-0.446,1.469-1.438,4.361-1.988,5.789 c-0.466,1.211-1.461,3.609-1.982,4.797c-0.282,0.646-1.17,2.57-1.17,2.57"/>
  2652. <path fill="#E0E0DF" d="M1277.855,697.155l13.238,14.689c0,0-0.975-0.611-1.281-0.842c-0.262-0.193-0.754-0.611-0.996-0.826 c-0.196-0.176-0.784-0.717-0.784-0.717s-1.009-0.955-1.324-1.287c-1.064-1.102-3.109-3.381-4.09-4.557 c-0.828-0.996-2.438-3.033-3.222-4.068c-0.426-0.563-1.672-2.277-1.672-2.277"/>
  2653. <path fill="#E0E0DF" d="M1277.25,695.013l-19.768,0.617c0,0,1.095-0.348,1.473-0.434c0.312-0.074,0.949-0.187,1.271-0.229 c0.266-0.037,1.056-0.135,1.056-0.135s1.377-0.156,1.839-0.188c1.525-0.098,4.588-0.186,6.121-0.176 c1.297,0.014,3.889,0.104,5.187,0.172c0.704,0.043,2.817,0.195,2.817,0.195"/>
  2654. </g>
  2655. <animateTransform restart="always" from="0 1278 695.798" dur="4s" to="359 1278 695.798" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  2656. </animateTransform>
  2657. </g>
  2658. <g>
  2659. <path fill="#66ADC5" d="M1275.707,695.794c-0.007,1.436,1.201,2.604,2.695,2.61c1.498,0.005,2.716-1.157,2.723-2.591 c0.007-1.438-1.202-2.604-2.701-2.611C1276.928,693.201,1275.714,694.353,1275.707,695.794"/>
  2660. </g>
  2661. <g>
  2662. <path fill="#BADBE5" d="M1276.689,695.798c-0.004,0.895,0.769,1.619,1.72,1.625c0.952,0.004,1.733-0.721,1.735-1.613 c0.004-0.895-0.771-1.621-1.724-1.627C1277.469,694.181,1276.691,694.905,1276.689,695.798"/>
  2663. </g>
  2664. </g>
  2665. </g>
  2666. <g id="_x23_94">
  2667. <g>
  2668. <path fill="#E0E0DF" d="M1330.047,695.798l-1.381,28.779c0,0,1.096,0.43,2.063,0.434c0.996,0.004,2.147-0.422,2.147-0.422 l-1.141-28.783L1330.047,695.798L1330.047,695.798z"/>
  2669. </g>
  2670. <g>
  2671. <g transform="rotate(91.5214 1331 695.798)">
  2672. <g>
  2673. <path fill="#42478C" d="M1329.745,694.75l2.203,0.854c0,0,5.843-12.162,6.27-18.757 C1333.903,682.067,1329.745,694.75,1329.745,694.75"/>
  2674. <path fill="#42478C" d="M1331.834,695.599l-1.813,1.512c0,0,7.771,11.025,13.321,14.615 C1340.885,705.412,1331.834,695.599,1331.834,695.599"/>
  2675. <path fill="#42478C" d="M1329.922,697.177l0.021-2.359c0,0-13.438-1.196-19.766,0.729 C1316.582,697.75,1329.922,697.177,1329.922,697.177"/>
  2676. </g>
  2677. <g>
  2678. <path fill="#E0E0DF" d="M1331.842,695.317l6.377-18.721c0,0-0.063,1.148-0.11,1.527c-0.039,0.322-0.164,0.957-0.233,1.275 c-0.06,0.258-0.245,1.031-0.245,1.031s-0.341,1.346-0.475,1.784c-0.443,1.469-1.438,4.361-1.987,5.789 c-0.468,1.211-1.461,3.609-1.983,4.797c-0.28,0.646-1.17,2.57-1.17,2.57"/>
  2679. <path fill="#E0E0DF" d="M1330.319,697.155l13.238,14.689c0,0-0.973-0.611-1.281-0.842c-0.262-0.193-0.754-0.611-0.995-0.826 c-0.196-0.176-0.785-0.717-0.785-0.717s-1.009-0.955-1.322-1.287c-1.064-1.102-3.111-3.381-4.091-4.557 c-0.827-0.996-2.438-3.033-3.222-4.068c-0.427-0.563-1.673-2.277-1.673-2.277"/>
  2680. <path fill="#E0E0DF" d="M1329.717,695.013l-19.77,0.617c0,0,1.094-0.348,1.475-0.434c0.312-0.074,0.947-0.187,1.271-0.229 c0.267-0.037,1.056-0.135,1.056-0.135s1.38-0.156,1.839-0.188c1.525-0.098,4.588-0.186,6.123-0.176 c1.295,0.014,3.887,0.104,5.185,0.172c0.704,0.043,2.819,0.195,2.819,0.195"/>
  2681. </g>
  2682. <animateTransform restart="always" from="0 1331 695.798" dur="4s" to="359 1331 695.798" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  2683. </animateTransform>
  2684. </g>
  2685. <g>
  2686. <path fill="#66ADC5" d="M1328.174,695.794c-0.008,1.436,1.199,2.604,2.693,2.61c1.498,0.005,2.715-1.157,2.725-2.591 c0.006-1.438-1.203-2.604-2.703-2.611C1329.394,693.201,1328.178,694.353,1328.174,695.794"/>
  2687. </g>
  2688. <g>
  2689. <path fill="#BADBE5" d="M1329.153,695.798c-0.004,0.895,0.771,1.619,1.72,1.625c0.953,0.004,1.733-0.721,1.735-1.613 c0.004-0.895-0.77-1.621-1.723-1.627C1329.935,694.181,1329.156,694.905,1329.153,695.798"/>
  2690. </g>
  2691. </g>
  2692. </g>
  2693. <g id="_x23_95">
  2694. <g>
  2695. <path fill="#E0E0DF" d="M1374.525,695.798l-1.379,28.779c0,0,1.094,0.43,2.063,0.434c0.994,0.004,2.146-0.422,2.146-0.422 l-1.141-28.783L1374.525,695.798L1374.525,695.798z"/>
  2696. </g>
  2697. <g>
  2698. <g transform="rotate(91.5214 1375 695.798)">
  2699. <g>
  2700. <path fill="#42478C" d="M1374.224,694.75l2.203,0.854c0,0,5.842-12.162,6.268-18.757 C1378.382,682.067,1374.224,694.75,1374.224,694.75"/>
  2701. <path fill="#42478C" d="M1376.314,695.599l-1.813,1.512c0,0,7.768,11.025,13.319,14.615 C1385.362,705.412,1376.314,695.599,1376.314,695.599"/>
  2702. <path fill="#42478C" d="M1374.4,697.177l0.021-2.359c0,0-13.438-1.196-19.768,0.729 C1361.064,697.75,1374.4,697.177,1374.4,697.177"/>
  2703. </g>
  2704. <g>
  2705. <path fill="#E0E0DF" d="M1376.319,695.317l6.377-18.721c0,0-0.062,1.148-0.109,1.527c-0.039,0.322-0.164,0.957-0.233,1.275 c-0.061,0.258-0.246,1.031-0.246,1.031s-0.34,1.346-0.474,1.784c-0.444,1.469-1.438,4.361-1.987,5.789 c-0.468,1.211-1.462,3.609-1.984,4.797c-0.28,0.646-1.17,2.57-1.17,2.57"/>
  2706. <path fill="#E0E0DF" d="M1374.798,697.155l13.236,14.689c0,0-0.974-0.611-1.279-0.842c-0.264-0.193-0.755-0.611-0.994-0.826 c-0.199-0.176-0.785-0.717-0.785-0.717s-1.01-0.955-1.326-1.287c-1.063-1.102-3.11-3.381-4.09-4.557 c-0.828-0.996-2.438-3.033-3.221-4.068c-0.428-0.563-1.673-2.277-1.673-2.277"/>
  2707. <path fill="#E0E0DF" d="M1374.194,695.013l-19.769,0.617c0,0,1.097-0.348,1.474-0.434c0.313-0.074,0.949-0.187,1.271-0.229 c0.267-0.037,1.058-0.135,1.058-0.135s1.377-0.156,1.838-0.188c1.524-0.098,4.586-0.186,6.121-0.176 c1.295,0.014,3.887,0.104,5.184,0.172c0.705,0.043,2.82,0.195,2.82,0.195"/>
  2708. </g>
  2709. <animateTransform restart="always" from="0 1375 695.798" dur="4s" to="359 1375 695.798" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  2710. </animateTransform>
  2711. </g>
  2712. <g>
  2713. <path fill="#66ADC5" d="M1372.651,695.794c-0.006,1.436,1.201,2.604,2.697,2.61c1.498,0.005,2.713-1.157,2.719-2.591 c0.006-1.438-1.201-2.604-2.701-2.611C1373.869,693.201,1372.656,694.353,1372.651,695.794"/>
  2714. </g>
  2715. <g>
  2716. <path fill="#BADBE5" d="M1373.632,695.798c-0.005,0.895,0.768,1.619,1.719,1.625c0.953,0.004,1.733-0.721,1.735-1.613 c0.005-0.895-0.771-1.621-1.725-1.627C1374.41,694.181,1373.634,694.905,1373.632,695.798"/>
  2717. </g>
  2718. </g>
  2719. </g>
  2720. <g id="_x23_96">
  2721. <g>
  2722. <path fill="#E0E0DF" d="M1419.739,695.798l-1.377,28.779c0,0,1.096,0.43,2.063,0.434c0.998,0.004,2.148-0.422,2.148-0.422 l-1.141-28.783L1419.739,695.798L1419.739,695.798z"/>
  2723. </g>
  2724. <g>
  2725. <g transform="rotate(91.5214 1420 695.798)">
  2726. <g>
  2727. <path fill="#42478C" d="M1419.439,694.75l2.203,0.854c0,0,5.844-12.162,6.27-18.757 C1423.597,682.067,1419.439,694.75,1419.439,694.75"/>
  2728. <path fill="#42478C" d="M1421.528,695.599l-1.813,1.512c0,0,7.769,11.025,13.32,14.615 C1430.578,705.412,1421.528,695.599,1421.528,695.599"/>
  2729. <path fill="#42478C" d="M1419.615,697.177l0.021-2.359c0,0-13.44-1.196-19.768,0.729 C1406.278,697.75,1419.615,697.177,1419.615,697.177"/>
  2730. </g>
  2731. <g>
  2732. <path fill="#E0E0DF" d="M1421.535,695.317l6.379-18.721c0,0-0.063,1.148-0.11,1.527c-0.041,0.322-0.164,0.957-0.236,1.275 c-0.057,0.258-0.244,1.031-0.244,1.031s-0.34,1.346-0.473,1.784c-0.445,1.469-1.438,4.361-1.99,5.789 c-0.465,1.211-1.461,3.609-1.981,4.797c-0.281,0.646-1.172,2.57-1.172,2.57"/>
  2733. <path fill="#E0E0DF" d="M1420.015,697.155l13.238,14.689c0,0-0.977-0.611-1.281-0.842c-0.262-0.193-0.754-0.611-0.996-0.826 c-0.198-0.176-0.785-0.717-0.785-0.717s-1.01-0.955-1.325-1.287c-1.063-1.102-3.107-3.381-4.089-4.557 c-0.827-0.996-2.438-3.033-3.221-4.068c-0.428-0.563-1.674-2.277-1.674-2.277"/>
  2734. <path fill="#E0E0DF" d="M1419.408,695.013l-19.768,0.617c0,0,1.096-0.348,1.473-0.434c0.313-0.074,0.951-0.187,1.271-0.229 c0.267-0.037,1.056-0.135,1.056-0.135s1.377-0.156,1.838-0.188c1.527-0.098,4.589-0.186,6.121-0.176 c1.297,0.014,3.89,0.104,5.186,0.172c0.707,0.043,2.818,0.195,2.818,0.195"/>
  2735. </g>
  2736. <animateTransform restart="always" from="0 1420 695.798" dur="4s" to="359 1420 695.798" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  2737. </animateTransform>
  2738. </g>
  2739. <g>
  2740. <path fill="#66ADC5" d="M1417.867,695.794c-0.008,1.436,1.199,2.604,2.695,2.61c1.498,0.005,2.715-1.157,2.721-2.591 c0.007-1.438-1.202-2.604-2.699-2.611C1419.087,693.201,1417.871,694.353,1417.867,695.794"/>
  2741. </g>
  2742. <g>
  2743. <path fill="#BADBE5" d="M1418.847,695.798c-0.002,0.895,0.771,1.619,1.721,1.625c0.953,0.004,1.734-0.721,1.734-1.613 c0.004-0.895-0.771-1.621-1.722-1.627C1419.628,694.181,1418.851,694.905,1418.847,695.798"/>
  2744. </g>
  2745. </g>
  2746. </g>
  2747. <g id="_x23_97">
  2748. <g>
  2749. <path fill="#E0E0DF" d="M1465.409,695.798l-1.377,28.779c0,0,1.095,0.43,2.063,0.434c0.998,0.004,2.149-0.422,2.149-0.422 l-1.143-28.783L1465.409,695.798L1465.409,695.798z"/>
  2750. </g>
  2751. <g>
  2752. <g transform="rotate(91.5214 1466 695.798)">
  2753. <g>
  2754. <path fill="#42478C" d="M1465.109,694.75l2.203,0.854c0,0,5.845-12.162,6.271-18.757 C1469.269,682.067,1465.109,694.75,1465.109,694.75"/>
  2755. <path fill="#42478C" d="M1467.198,695.599l-1.813,1.512c0,0,7.768,11.025,13.321,14.615 C1476.248,705.412,1467.198,695.599,1467.198,695.599"/>
  2756. <path fill="#42478C" d="M1465.286,697.177l0.021-2.359c0,0-13.44-1.196-19.767,0.729 C1451.948,697.75,1465.286,697.177,1465.286,697.177"/>
  2757. </g>
  2758. <g>
  2759. <path fill="#E0E0DF" d="M1467.205,695.317l6.377-18.721c0,0-0.063,1.148-0.109,1.527c-0.041,0.322-0.163,0.957-0.235,1.275 c-0.058,0.258-0.244,1.031-0.244,1.031s-0.34,1.346-0.473,1.784c-0.445,1.469-1.438,4.361-1.99,5.789 c-0.465,1.211-1.461,3.609-1.98,4.797c-0.282,0.646-1.172,2.57-1.172,2.57"/>
  2760. <path fill="#E0E0DF" d="M1465.687,697.155l13.237,14.689c0,0-0.977-0.611-1.28-0.842c-0.264-0.193-0.754-0.611-0.996-0.826 c-0.199-0.176-0.785-0.717-0.785-0.717s-1.01-0.955-1.326-1.287c-1.063-1.102-3.107-3.381-4.088-4.557 c-0.828-0.996-2.438-3.033-3.221-4.068c-0.429-0.563-1.674-2.277-1.674-2.277"/>
  2761. <path fill="#E0E0DF" d="M1465.078,695.013l-19.768,0.617c0,0,1.096-0.348,1.473-0.434c0.313-0.074,0.951-0.187,1.271-0.229 c0.266-0.037,1.055-0.135,1.055-0.135s1.377-0.156,1.838-0.188c1.527-0.098,4.588-0.186,6.121-0.176 c1.297,0.014,3.89,0.104,5.186,0.172c0.706,0.043,2.818,0.195,2.818,0.195"/>
  2762. </g>
  2763. <animateTransform restart="always" from="0 1466 695.798" dur="4s" to="359 1466 695.798" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  2764. </animateTransform>
  2765. </g>
  2766. <g>
  2767. <path fill="#66ADC5" d="M1463.537,695.794c-0.008,1.436,1.199,2.604,2.695,2.61c1.498,0.005,2.715-1.157,2.721-2.591 c0.006-1.438-1.203-2.604-2.699-2.611C1464.758,693.201,1463.541,694.353,1463.537,695.794"/>
  2768. </g>
  2769. <g>
  2770. <path fill="#BADBE5" d="M1464.519,695.798c-0.002,0.895,0.771,1.619,1.721,1.625c0.953,0.004,1.733-0.721,1.733-1.613 c0.005-0.895-0.771-1.621-1.723-1.627C1465.299,694.181,1464.521,694.905,1464.519,695.798"/>
  2771. </g>
  2772. </g>
  2773. </g>
  2774. <g id="_x23_98">
  2775. <g>
  2776. <path fill="#E0E0DF" d="M1512.882,695.798l-1.38,28.779c0,0,1.097,0.43,2.063,0.434c0.996,0.004,2.147-0.422,2.147-0.422 l-1.141-28.783L1512.882,695.798L1512.882,695.798z"/>
  2777. </g>
  2778. <g>
  2779. <g transform="rotate(91.5214 1513 695.798)">
  2780. <g>
  2781. <path fill="#42478C" d="M1512.58,694.75l2.202,0.854c0,0,5.845-12.162,6.271-18.757 C1516.739,682.067,1512.58,694.75,1512.58,694.75"/>
  2782. <path fill="#42478C" d="M1514.671,695.599l-1.813,1.512c0,0,7.77,11.025,13.319,14.615 C1523.722,705.412,1514.671,695.599,1514.671,695.599"/>
  2783. <path fill="#42478C" d="M1512.758,697.177l0.021-2.359c0,0-13.438-1.196-19.766,0.729 C1499.421,697.75,1512.758,697.177,1512.758,697.177"/>
  2784. </g>
  2785. <g>
  2786. <path fill="#E0E0DF" d="M1514.677,695.317l6.379-18.721c0,0-0.063,1.148-0.11,1.527c-0.041,0.322-0.166,0.957-0.234,1.275 c-0.062,0.258-0.245,1.031-0.245,1.031s-0.341,1.346-0.474,1.784c-0.445,1.469-1.438,4.361-1.988,5.789 c-0.467,1.211-1.463,3.609-1.982,4.797c-0.282,0.646-1.172,2.57-1.172,2.57"/>
  2787. <path fill="#E0E0DF" d="M1513.156,697.155l13.236,14.689c0,0-0.975-0.611-1.28-0.842c-0.263-0.193-0.755-0.611-0.995-0.826 c-0.197-0.176-0.786-0.717-0.786-0.717s-1.009-0.955-1.323-1.287c-1.063-1.102-3.11-3.381-4.09-4.557 c-0.827-0.996-2.438-3.033-3.221-4.068c-0.428-0.563-1.674-2.277-1.674-2.277"/>
  2788. <path fill="#E0E0DF" d="M1512.552,695.013l-19.77,0.617c0,0,1.098-0.348,1.475-0.434c0.311-0.074,0.948-0.187,1.271-0.229 c0.266-0.037,1.057-0.135,1.057-0.135s1.378-0.156,1.838-0.188c1.525-0.098,4.589-0.186,6.121-0.176 c1.298,0.014,3.89,0.104,5.185,0.172c0.707,0.043,2.82,0.195,2.82,0.195"/>
  2789. </g>
  2790. <animateTransform restart="always" from="0 1513 695.798" dur="4s" to="359 1513 695.798" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  2791. </animateTransform>
  2792. </g>
  2793. <g>
  2794. <path fill="#66ADC5" d="M1511.009,695.794c-0.006,1.436,1.201,2.604,2.694,2.61c1.5,0.005,2.718-1.157,2.724-2.591 c0.006-1.438-1.203-2.604-2.701-2.611C1512.23,693.201,1511.015,694.353,1511.009,695.794"/>
  2795. </g>
  2796. <g>
  2797. <path fill="#BADBE5" d="M1511.989,695.798c-0.004,0.895,0.771,1.619,1.723,1.625c0.951,0.004,1.731-0.721,1.732-1.613 c0.004-0.895-0.771-1.621-1.723-1.627C1512.771,694.181,1511.99,694.905,1511.989,695.798"/>
  2798. </g>
  2799. </g>
  2800. </g>
  2801. <g id="_x23_99">
  2802. <g>
  2803. <path fill="#E0E0DF" d="M1566.187,695.798l-1.377,28.779c0,0,1.094,0.43,2.062,0.434c0.996,0.004,2.147-0.422,2.147-0.422 l-1.14-28.783L1566.187,695.798L1566.187,695.798z"/>
  2804. </g>
  2805. <g>
  2806. <g transform="rotate(91.5214 1567 695.798)">
  2807. <g>
  2808. <path fill="#42478C" d="M1565.885,694.75l2.203,0.854c0,0,5.845-12.162,6.271-18.757 C1570.041,682.067,1565.885,694.75,1565.885,694.75"/>
  2809. <path fill="#42478C" d="M1567.976,695.599l-1.813,1.512c0,0,7.771,11.025,13.32,14.615 C1577.025,705.412,1567.976,695.599,1567.976,695.599"/>
  2810. <path fill="#42478C" d="M1566.064,697.177l0.021-2.359c0,0-13.438-1.196-19.767,0.729 C1552.726,697.75,1566.064,697.177,1566.064,697.177"/>
  2811. </g>
  2812. <g>
  2813. <path fill="#E0E0DF" d="M1567.982,695.317l6.377-18.721c0,0-0.063,1.148-0.11,1.527c-0.038,0.322-0.163,0.957-0.234,1.275 c-0.059,0.258-0.244,1.031-0.244,1.031s-0.34,1.346-0.473,1.784c-0.447,1.469-1.439,4.361-1.99,5.789 c-0.465,1.211-1.461,3.609-1.981,4.797c-0.281,0.646-1.171,2.57-1.171,2.57"/>
  2814. <path fill="#E0E0DF" d="M1566.459,697.155l13.238,14.689c0,0-0.975-0.611-1.281-0.842c-0.263-0.193-0.754-0.611-0.994-0.826 c-0.198-0.176-0.785-0.717-0.785-0.717s-1.01-0.955-1.325-1.287c-1.063-1.102-3.11-3.381-4.091-4.557 c-0.827-0.996-2.438-3.033-3.22-4.068c-0.429-0.563-1.675-2.277-1.675-2.277"/>
  2815. <path fill="#E0E0DF" d="M1565.857,695.013l-19.77,0.617c0,0,1.096-0.348,1.473-0.434c0.312-0.074,0.951-0.187,1.271-0.229 c0.266-0.037,1.057-0.135,1.057-0.135s1.377-0.156,1.839-0.188c1.524-0.098,4.588-0.186,6.121-0.176 c1.297,0.014,3.889,0.104,5.184,0.172c0.707,0.043,2.819,0.195,2.819,0.195"/>
  2816. </g>
  2817. <animateTransform restart="always" from="0 1567 695.798" dur="4s" to="359 1567 695.798" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  2818. </animateTransform>
  2819. </g>
  2820. <g>
  2821. <path fill="#66ADC5" d="M1564.314,695.794c-0.006,1.436,1.201,2.604,2.696,2.61c1.498,0.005,2.716-1.157,2.722-2.591 c0.006-1.438-1.203-2.604-2.701-2.611C1565.531,693.201,1564.318,694.353,1564.314,695.794"/>
  2822. </g>
  2823. <g>
  2824. <path fill="#BADBE5" d="M1565.291,695.798c-0.002,0.895,0.771,1.619,1.724,1.625c0.951,0.004,1.73-0.721,1.733-1.613 c0.003-0.895-0.771-1.621-1.723-1.627C1566.073,694.181,1565.296,694.905,1565.291,695.798"/>
  2825. </g>
  2826. </g>
  2827. </g>
  2828. <g id="_x23_100">
  2829. <g>
  2830. <path fill="#E0E0DF" d="M1612.187,695.798l-1.377,28.779c0,0,1.094,0.43,2.062,0.434c0.996,0.004,2.147-0.422,2.147-0.422 l-1.14-28.783L1612.187,695.798L1612.187,695.798z"/>
  2831. </g>
  2832. <g>
  2833. <g transform="rotate(91.5214 1613 695.798)">
  2834. <g>
  2835. <path fill="#42478C" d="M1611.885,694.75l2.203,0.854c0,0,5.845-12.162,6.271-18.757 C1616.041,682.067,1611.885,694.75,1611.885,694.75"/>
  2836. <path fill="#42478C" d="M1613.976,695.599l-1.813,1.512c0,0,7.771,11.025,13.32,14.615 C1623.025,705.412,1613.976,695.599,1613.976,695.599"/>
  2837. <path fill="#42478C" d="M1612.064,697.177l0.021-2.359c0,0-13.438-1.196-19.767,0.729 C1598.726,697.75,1612.064,697.177,1612.064,697.177"/>
  2838. </g>
  2839. <g>
  2840. <path fill="#E0E0DF" d="M1613.982,695.317l6.377-18.721c0,0-0.063,1.148-0.11,1.527c-0.038,0.322-0.163,0.957-0.234,1.275 c-0.059,0.258-0.244,1.031-0.244,1.031s-0.34,1.346-0.473,1.784c-0.447,1.469-1.439,4.361-1.99,5.789 c-0.465,1.211-1.461,3.609-1.981,4.797c-0.281,0.646-1.171,2.57-1.171,2.57"/>
  2841. <path fill="#E0E0DF" d="M1612.459,697.155l13.238,14.689c0,0-0.975-0.611-1.281-0.842c-0.263-0.193-0.754-0.611-0.994-0.826 c-0.198-0.176-0.785-0.717-0.785-0.717s-1.01-0.955-1.325-1.287c-1.063-1.102-3.11-3.381-4.091-4.557 c-0.827-0.996-2.438-3.033-3.22-4.068c-0.429-0.563-1.675-2.277-1.675-2.277"/>
  2842. <path fill="#E0E0DF" d="M1611.857,695.013l-19.77,0.617c0,0,1.096-0.348,1.473-0.434c0.312-0.074,0.951-0.187,1.271-0.229 c0.266-0.037,1.057-0.135,1.057-0.135s1.377-0.156,1.839-0.188c1.524-0.098,4.588-0.186,6.121-0.176 c1.297,0.014,3.889,0.104,5.184,0.172c0.707,0.043,2.819,0.195,2.819,0.195"/>
  2843. </g>
  2844. <animateTransform restart="always" from="0 1613 695.798" dur="4s" to="359 1613 695.798" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  2845. </animateTransform>
  2846. </g>
  2847. <g>
  2848. <path fill="#66ADC5" d="M1610.314,695.794c-0.006,1.436,1.201,2.604,2.696,2.61c1.498,0.005,2.716-1.157,2.722-2.591 c0.006-1.438-1.203-2.604-2.701-2.611C1611.531,693.201,1610.318,694.353,1610.314,695.794"/>
  2849. </g>
  2850. <g>
  2851. <path fill="#BADBE5" d="M1611.291,695.798c-0.002,0.895,0.771,1.619,1.724,1.625c0.951,0.004,1.73-0.721,1.733-1.613 c0.003-0.895-0.771-1.621-1.723-1.627C1612.073,694.181,1611.296,694.905,1611.291,695.798"/>
  2852. </g>
  2853. </g>
  2854. </g>
  2855. <g id="_x23_101">
  2856. <g>
  2857. <path fill="#E0E0DF" d="M1223.213,580.103l-1.379,28.779c0,0,1.094,0.43,2.063,0.436c0.996,0.004,2.146-0.424,2.146-0.424 l-1.142-28.781L1223.213,580.103L1223.213,580.103z"/>
  2858. </g>
  2859. <g>
  2860. <g transform="rotate(91.5214 1224 580.103)">
  2861. <g>
  2862. <path fill="#42478C" d="M1222.912,579.053l2.203,0.854c0,0,5.842-12.162,6.269-18.755 C1227.072,566.372,1222.912,579.053,1222.912,579.053"/>
  2863. <path fill="#42478C" d="M1225.002,579.905l-1.813,1.51c0,0,7.769,11.027,13.321,14.617 C1234.051,589.715,1225.002,579.905,1225.002,579.905"/>
  2864. <path fill="#42478C" d="M1223.088,581.483l0.021-2.361c0,0-13.438-1.196-19.768,0.729 C1209.75,582.053,1223.088,581.483,1223.088,581.483"/>
  2865. </g>
  2866. <g>
  2867. <path fill="#E0E0DF" d="M1225.008,579.622l6.377-18.719c0,0-0.063,1.146-0.11,1.525c-0.039,0.322-0.164,0.957-0.233,1.275 c-0.06,0.258-0.245,1.033-0.245,1.033s-0.341,1.344-0.475,1.784c-0.443,1.468-1.438,4.359-1.987,5.788 c-0.468,1.212-1.461,3.608-1.982,4.798c-0.283,0.646-1.171,2.568-1.171,2.568"/>
  2868. <path fill="#E0E0DF" d="M1223.488,581.459l13.237,14.691c0,0-0.974-0.613-1.28-0.844c-0.263-0.191-0.755-0.609-0.996-0.825 c-0.196-0.177-0.784-0.718-0.784-0.718s-1.009-0.955-1.324-1.286c-1.063-1.103-3.11-3.382-4.09-4.558 c-0.828-0.996-2.438-3.033-3.222-4.067c-0.427-0.563-1.672-2.278-1.672-2.278"/>
  2869. <path fill="#E0E0DF" d="M1222.883,579.319l-19.77,0.615c0,0,1.096-0.348,1.473-0.434c0.313-0.074,0.949-0.185,1.271-0.229 c0.267-0.037,1.058-0.137,1.058-0.137s1.378-0.154,1.838-0.187c1.524-0.1,4.587-0.188,6.121-0.177 c1.297,0.013,3.889,0.103,5.188,0.173c0.704,0.043,2.818,0.193,2.818,0.193"/>
  2870. </g>
  2871. <animateTransform restart="always" from="0 1224 580.103" dur="4s" to="359 1224 580.103" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  2872. </animateTransform>
  2873. </g>
  2874. <g>
  2875. <path fill="#66ADC5" d="M1221.34,580.098c-0.006,1.437,1.201,2.604,2.694,2.61c1.498,0.005,2.715-1.157,2.722-2.59 c0.008-1.438-1.201-2.604-2.701-2.612C1222.56,577.504,1221.344,578.659,1221.34,580.098"/>
  2876. </g>
  2877. <g>
  2878. <path fill="#BADBE5" d="M1222.319,580.103c-0.002,0.895,0.771,1.619,1.723,1.625c0.952,0.006,1.732-0.721,1.734-1.611 c0.004-0.896-0.771-1.623-1.724-1.627C1223.101,578.487,1222.323,579.209,1222.319,580.103"/>
  2879. </g>
  2880. </g>
  2881. </g>
  2882. <g id="_x23_102">
  2883. <g>
  2884. <path fill="#E0E0DF" d="M1269.435,580.103l-1.38,28.779c0,0,1.095,0.43,2.063,0.436c0.996,0.004,2.146-0.424,2.146-0.424 l-1.141-28.781L1269.435,580.103L1269.435,580.103z"/>
  2885. </g>
  2886. <g>
  2887. <g transform="rotate(91.5214 1270 580.103)">
  2888. <g>
  2889. <path fill="#42478C" d="M1269.132,579.053l2.204,0.854c0,0,5.842-12.162,6.269-18.755 C1273.289,566.372,1269.132,579.053,1269.132,579.053"/>
  2890. <path fill="#42478C" d="M1271.224,579.905l-1.813,1.51c0,0,7.769,11.027,13.319,14.617 C1280.273,589.715,1271.224,579.905,1271.224,579.905"/>
  2891. <path fill="#42478C" d="M1269.31,581.483l0.021-2.361c0,0-13.438-1.196-19.767,0.729 C1255.971,582.053,1269.31,581.483,1269.31,581.483"/>
  2892. </g>
  2893. <g>
  2894. <path fill="#E0E0DF" d="M1271.23,579.622l6.377-18.719c0,0-0.062,1.146-0.11,1.525c-0.039,0.322-0.164,0.957-0.232,1.275 c-0.061,0.258-0.246,1.033-0.246,1.033s-0.34,1.344-0.475,1.784c-0.445,1.468-1.438,4.359-1.986,5.788 c-0.467,1.212-1.462,3.608-1.983,4.798c-0.282,0.646-1.171,2.568-1.171,2.568"/>
  2895. <path fill="#E0E0DF" d="M1269.707,581.459l13.237,14.691c0,0-0.974-0.613-1.28-0.844c-0.263-0.191-0.755-0.609-0.996-0.825 c-0.196-0.177-0.785-0.718-0.785-0.718s-1.008-0.955-1.323-1.286c-1.065-1.103-3.11-3.382-4.09-4.558 c-0.828-0.996-2.438-3.033-3.222-4.067c-0.427-0.563-1.674-2.278-1.674-2.278"/>
  2896. <path fill="#E0E0DF" d="M1269.105,579.319l-19.769,0.615c0,0,1.095-0.348,1.474-0.434c0.311-0.074,0.948-0.185,1.271-0.229 c0.268-0.037,1.057-0.137,1.057-0.137s1.377-0.154,1.838-0.187c1.525-0.1,4.588-0.188,6.123-0.177 c1.295,0.013,3.887,0.103,5.185,0.173c0.705,0.043,2.817,0.193,2.817,0.193"/>
  2897. </g>
  2898. <animateTransform restart="always" from="0 1270 580.103" dur="4s" to="359 1270 580.103" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  2899. </animateTransform>
  2900. </g>
  2901. <g>
  2902. <path fill="#66ADC5" d="M1267.562,580.098c-0.008,1.437,1.201,2.604,2.694,2.61c1.499,0.005,2.716-1.157,2.724-2.59 c0.006-1.438-1.203-2.604-2.703-2.612C1268.781,577.504,1267.568,578.659,1267.562,580.098"/>
  2903. </g>
  2904. <g>
  2905. <path fill="#BADBE5" d="M1268.539,580.103c-0.003,0.895,0.771,1.619,1.721,1.625c0.953,0.006,1.733-0.721,1.735-1.611 c0.003-0.896-0.771-1.623-1.724-1.627C1269.322,578.487,1268.543,579.209,1268.539,580.103"/>
  2906. </g>
  2907. </g>
  2908. </g>
  2909. <g id="_x23_103">
  2910. <g>
  2911. <path fill="#E0E0DF" d="M1323.9,580.103l-1.379,28.779c0,0,1.095,0.43,2.063,0.436c0.995,0.004,2.146-0.424,2.146-0.424 l-1.139-28.781L1323.9,580.103L1323.9,580.103z"/>
  2912. </g>
  2913. <g>
  2914. <g transform="rotate(91.5214 1325 580.103)">
  2915. <g>
  2916. <path fill="#42478C" d="M1323.599,579.053l2.202,0.854c0,0,5.843-12.162,6.27-18.755 C1327.756,566.372,1323.599,579.053,1323.599,579.053"/>
  2917. <path fill="#42478C" d="M1325.689,579.905l-1.813,1.51c0,0,7.771,11.027,13.322,14.617 C1334.738,589.715,1325.689,579.905,1325.689,579.905"/>
  2918. <path fill="#42478C" d="M1323.775,581.483l0.021-2.361c0,0-13.439-1.196-19.767,0.729 C1310.437,582.053,1323.775,581.483,1323.775,581.483"/>
  2919. </g>
  2920. <g>
  2921. <path fill="#E0E0DF" d="M1325.694,579.622l6.377-18.719c0,0-0.062,1.146-0.109,1.525c-0.039,0.322-0.164,0.957-0.233,1.275 c-0.061,0.258-0.246,1.033-0.246,1.033s-0.34,1.344-0.474,1.784c-0.444,1.468-1.438,4.359-1.987,5.788 c-0.468,1.212-1.461,3.608-1.983,4.798c-0.281,0.646-1.171,2.568-1.171,2.568"/>
  2922. <path fill="#E0E0DF" d="M1324.172,581.459l13.237,14.691c0,0-0.974-0.613-1.28-0.844c-0.263-0.191-0.754-0.609-0.996-0.825 c-0.196-0.177-0.784-0.718-0.784-0.718s-1.009-0.955-1.324-1.286c-1.063-1.103-3.11-3.382-4.09-4.558 c-0.828-0.996-2.438-3.033-3.222-4.067c-0.427-0.563-1.672-2.278-1.672-2.278"/>
  2923. <path fill="#E0E0DF" d="M1323.569,579.319l-19.769,0.615c0,0,1.095-0.348,1.474-0.434c0.313-0.074,0.948-0.185,1.271-0.229 c0.267-0.037,1.056-0.137,1.056-0.137s1.379-0.154,1.838-0.187c1.526-0.1,4.588-0.188,6.123-0.177 c1.295,0.013,3.888,0.103,5.185,0.173c0.705,0.043,2.819,0.193,2.819,0.193"/>
  2924. </g>
  2925. <animateTransform restart="always" from="0 1325 580.103" dur="4s" to="359 1325 580.103" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  2926. </animateTransform>
  2927. </g>
  2928. <g>
  2929. <path fill="#66ADC5" d="M1322.026,580.098c-0.006,1.437,1.201,2.604,2.694,2.61c1.498,0.005,2.716-1.157,2.724-2.59 c0.007-1.438-1.202-2.604-2.702-2.612C1323.245,577.504,1322.031,578.659,1322.026,580.098"/>
  2930. </g>
  2931. <g>
  2932. <path fill="#BADBE5" d="M1323.006,580.103c-0.004,0.895,0.769,1.619,1.72,1.625c0.952,0.006,1.733-0.721,1.735-1.611 c0.004-0.896-0.771-1.623-1.725-1.627C1323.786,578.487,1323.008,579.209,1323.006,580.103"/>
  2933. </g>
  2934. </g>
  2935. </g>
  2936. <g id="_x23_104">
  2937. <g>
  2938. <path fill="#E0E0DF" d="M1376.375,580.103l-1.379,28.779c0,0,1.095,0.43,2.063,0.436c0.995,0.004,2.146-0.424,2.146-0.424 l-1.142-28.781L1376.375,580.103L1376.375,580.103z"/>
  2939. </g>
  2940. <g>
  2941. <g transform="rotate(91.5214 1377 580.103)">
  2942. <g>
  2943. <path fill="#42478C" d="M1376.076,579.053l2.203,0.854c0,0,5.842-12.162,6.269-18.755 C1380.235,566.372,1376.076,579.053,1376.076,579.053"/>
  2944. <path fill="#42478C" d="M1378.164,579.905l-1.813,1.51c0,0,7.767,11.027,13.319,14.617 C1387.214,589.715,1378.164,579.905,1378.164,579.905"/>
  2945. <path fill="#42478C" d="M1376.25,581.483l0.021-2.361c0,0-13.438-1.196-19.767,0.729 C1362.914,582.053,1376.25,581.483,1376.25,581.483"/>
  2946. </g>
  2947. <g>
  2948. <path fill="#E0E0DF" d="M1378.171,579.622l6.377-18.719c0,0-0.062,1.146-0.109,1.525c-0.039,0.322-0.164,0.957-0.234,1.275 c-0.059,0.258-0.245,1.033-0.245,1.033s-0.341,1.344-0.474,1.784c-0.444,1.468-1.438,4.359-1.988,5.788 c-0.467,1.212-1.461,3.608-1.983,4.798c-0.281,0.646-1.17,2.568-1.17,2.568"/>
  2949. <path fill="#E0E0DF" d="M1376.651,581.459l13.236,14.691c0,0-0.974-0.613-1.279-0.844c-0.264-0.191-0.754-0.609-0.994-0.825 c-0.199-0.177-0.785-0.718-0.785-0.718s-1.01-0.955-1.326-1.286c-1.063-1.103-3.11-3.382-4.09-4.558 c-0.828-0.996-2.438-3.033-3.221-4.067c-0.428-0.563-1.672-2.278-1.672-2.278"/>
  2950. <path fill="#E0E0DF" d="M1376.046,579.319l-19.769,0.615c0,0,1.096-0.348,1.474-0.434c0.313-0.074,0.948-0.185,1.271-0.229 c0.266-0.037,1.057-0.137,1.057-0.137s1.377-0.154,1.839-0.187c1.524-0.1,4.586-0.188,6.12-0.177 c1.296,0.013,3.888,0.103,5.185,0.173c0.705,0.043,2.819,0.193,2.819,0.193"/>
  2951. </g>
  2952. <animateTransform restart="always" from="0 1377 580.103" dur="4s" to="359 1377 580.103" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  2953. </animateTransform>
  2954. </g>
  2955. <g>
  2956. <path fill="#66ADC5" d="M1374.503,580.098c-0.007,1.437,1.2,2.604,2.696,2.61c1.498,0.005,2.713-1.157,2.72-2.59 c0.006-1.438-1.201-2.604-2.701-2.612C1375.722,577.504,1374.509,578.659,1374.503,580.098"/>
  2957. </g>
  2958. <g>
  2959. <path fill="#BADBE5" d="M1375.485,580.103c-0.004,0.895,0.768,1.619,1.719,1.625c0.953,0.006,1.734-0.721,1.736-1.611 c0.004-0.896-0.771-1.623-1.725-1.627C1376.263,578.487,1375.487,579.209,1375.485,580.103"/>
  2960. </g>
  2961. </g>
  2962. </g>
  2963. <g id="_x23_105">
  2964. <g>
  2965. <path fill="#E0E0DF" d="M1424.591,580.103l-1.377,28.779c0,0,1.096,0.43,2.063,0.436c0.998,0.004,2.148-0.424,2.148-0.424 l-1.142-28.781L1424.591,580.103L1424.591,580.103z"/>
  2966. </g>
  2967. <g>
  2968. <g transform="rotate(91.5214 1425 580.103)">
  2969. <g>
  2970. <path fill="#42478C" d="M1424.289,579.053l2.203,0.854c0,0,5.845-12.162,6.271-18.755 C1428.449,566.372,1424.289,579.053,1424.289,579.053"/>
  2971. <path fill="#42478C" d="M1426.38,579.905l-1.813,1.51c0,0,7.768,11.027,13.32,14.617 C1435.431,589.715,1426.38,579.905,1426.38,579.905"/>
  2972. <path fill="#42478C" d="M1424.468,581.483l0.021-2.361c0,0-13.44-1.196-19.768,0.729 C1411.13,582.053,1424.468,581.483,1424.468,581.483"/>
  2973. </g>
  2974. <g>
  2975. <path fill="#E0E0DF" d="M1426.388,579.622l6.379-18.719c0,0-0.063,1.146-0.111,1.525c-0.041,0.322-0.164,0.957-0.235,1.275 c-0.058,0.258-0.244,1.033-0.244,1.033s-0.34,1.344-0.474,1.784c-0.444,1.468-1.438,4.359-1.989,5.788 c-0.465,1.212-1.461,3.608-1.982,4.798c-0.281,0.646-1.172,2.568-1.172,2.568"/>
  2976. <path fill="#E0E0DF" d="M1424.867,581.459l13.238,14.691c0,0-0.977-0.613-1.281-0.844c-0.262-0.191-0.754-0.609-0.996-0.825 c-0.198-0.177-0.784-0.718-0.784-0.718s-1.011-0.955-1.326-1.286c-1.063-1.103-3.107-3.382-4.088-4.558 c-0.828-0.996-2.438-3.033-3.222-4.067c-0.428-0.563-1.674-2.278-1.674-2.278"/>
  2977. <path fill="#E0E0DF" d="M1424.261,579.319l-19.769,0.615c0,0,1.097-0.348,1.474-0.434c0.313-0.074,0.951-0.185,1.271-0.229 c0.267-0.037,1.056-0.137,1.056-0.137s1.377-0.154,1.838-0.187c1.526-0.1,4.588-0.188,6.121-0.177 c1.297,0.013,3.889,0.103,5.186,0.173c0.707,0.043,2.818,0.193,2.818,0.193"/>
  2978. </g>
  2979. <animateTransform restart="always" from="0 1425 580.103" dur="4s" to="359 1425 580.103" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  2980. </animateTransform>
  2981. </g>
  2982. <g>
  2983. <path fill="#66ADC5" d="M1422.72,580.098c-0.009,1.437,1.198,2.604,2.694,2.61c1.498,0.005,2.715-1.157,2.722-2.59 c0.007-1.438-1.202-2.604-2.699-2.612C1423.941,577.504,1422.726,578.659,1422.72,580.098"/>
  2984. </g>
  2985. <g>
  2986. <path fill="#BADBE5" d="M1423.699,580.103c-0.002,0.895,0.771,1.619,1.721,1.625c0.953,0.006,1.734-0.721,1.734-1.611 c0.004-0.896-0.771-1.623-1.721-1.627C1424.482,578.487,1423.703,579.209,1423.699,580.103"/>
  2987. </g>
  2988. </g>
  2989. </g>
  2990. <g id="_x23_106">
  2991. <g>
  2992. <path fill="#E0E0DF" d="M1471.262,580.103l-1.377,28.779c0,0,1.095,0.43,2.063,0.436c0.998,0.004,2.149-0.424,2.149-0.424 l-1.142-28.781L1471.262,580.103L1471.262,580.103z"/>
  2993. </g>
  2994. <g>
  2995. <g transform="rotate(91.5214 1472 580.103)">
  2996. <g>
  2997. <path fill="#42478C" d="M1470.961,579.053l2.203,0.854c0,0,5.844-12.162,6.271-18.755 C1475.12,566.372,1470.961,579.053,1470.961,579.053"/>
  2998. <path fill="#42478C" d="M1473.051,579.905l-1.813,1.51c0,0,7.769,11.027,13.321,14.617 C1482.103,589.715,1473.051,579.905,1473.051,579.905"/>
  2999. <path fill="#42478C" d="M1471.139,581.483l0.021-2.361c0,0-13.44-1.196-19.767,0.729 C1457.801,582.053,1471.139,581.483,1471.139,581.483"/>
  3000. </g>
  3001. <g>
  3002. <path fill="#E0E0DF" d="M1473.06,579.622l6.377-18.719c0,0-0.063,1.146-0.11,1.525c-0.041,0.322-0.164,0.957-0.235,1.275 c-0.058,0.258-0.244,1.033-0.244,1.033s-0.34,1.344-0.474,1.784c-0.444,1.468-1.438,4.359-1.989,5.788 c-0.465,1.212-1.461,3.608-1.981,4.798c-0.281,0.646-1.172,2.568-1.172,2.568"/>
  3003. <path fill="#E0E0DF" d="M1471.537,581.459l13.238,14.691c0,0-0.977-0.613-1.281-0.844c-0.264-0.191-0.754-0.609-0.996-0.825 c-0.198-0.177-0.784-0.718-0.784-0.718s-1.011-0.955-1.326-1.286c-1.063-1.103-3.107-3.382-4.088-4.558 c-0.828-0.996-2.438-3.033-3.222-4.067c-0.428-0.563-1.674-2.278-1.674-2.278"/>
  3004. <path fill="#E0E0DF" d="M1470.933,579.319l-19.77,0.615c0,0,1.097-0.348,1.475-0.434c0.312-0.074,0.95-0.185,1.271-0.229 c0.267-0.037,1.056-0.137,1.056-0.137s1.377-0.154,1.839-0.187c1.525-0.1,4.588-0.188,6.12-0.177 c1.298,0.013,3.89,0.103,5.186,0.173c0.706,0.043,2.819,0.193,2.819,0.193"/>
  3005. </g>
  3006. <animateTransform restart="always" from="0 1472 580.103" dur="4s" to="359 1472 580.103" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  3007. </animateTransform>
  3008. </g>
  3009. <g>
  3010. <path fill="#66ADC5" d="M1469.392,580.098c-0.009,1.437,1.198,2.604,2.694,2.61c1.498,0.005,2.715-1.157,2.721-2.59 c0.007-1.438-1.202-2.604-2.7-2.612C1470.61,577.504,1469.396,578.659,1469.392,580.098"/>
  3011. </g>
  3012. <g>
  3013. <path fill="#BADBE5" d="M1470.37,580.103c-0.002,0.895,0.771,1.619,1.722,1.625c0.953,0.006,1.733-0.721,1.733-1.611 c0.004-0.896-0.771-1.623-1.722-1.627C1471.151,578.487,1470.373,579.209,1470.37,580.103"/>
  3014. </g>
  3015. </g>
  3016. </g>
  3017. <g id="_x23_107">
  3018. <g>
  3019. <path fill="#E0E0DF" d="M1518.735,580.103l-1.379,28.779c0,0,1.096,0.43,2.063,0.436c0.996,0.004,2.148-0.424,2.148-0.424 l-1.141-28.781L1518.735,580.103L1518.735,580.103z"/>
  3020. </g>
  3021. <g>
  3022. <g transform="rotate(91.5214 1519 580.103)">
  3023. <g>
  3024. <path fill="#42478C" d="M1518.435,579.053l2.201,0.854c0,0,5.844-12.162,6.271-18.755 C1522.591,566.372,1518.435,579.053,1518.435,579.053"/>
  3025. <path fill="#42478C" d="M1520.525,579.905l-1.813,1.51c0,0,7.769,11.027,13.318,14.617 C1529.574,589.715,1520.525,579.905,1520.525,579.905"/>
  3026. <path fill="#42478C" d="M1518.61,581.483l0.021-2.361c0,0-13.438-1.196-19.767,0.729 C1505.275,582.053,1518.61,581.483,1518.61,581.483"/>
  3027. </g>
  3028. <g>
  3029. <path fill="#E0E0DF" d="M1520.53,579.622l6.379-18.719c0,0-0.063,1.146-0.11,1.525c-0.041,0.322-0.166,0.957-0.234,1.275 c-0.061,0.258-0.245,1.033-0.245,1.033s-0.341,1.344-0.474,1.784c-0.445,1.468-1.438,4.359-1.988,5.788 c-0.467,1.212-1.463,3.608-1.983,4.798c-0.281,0.646-1.171,2.568-1.171,2.568"/>
  3030. <path fill="#E0E0DF" d="M1519.009,581.459l13.237,14.691c0,0-0.975-0.613-1.281-0.844c-0.264-0.191-0.754-0.609-0.995-0.825 c-0.197-0.177-0.785-0.718-0.785-0.718s-1.01-0.955-1.324-1.286c-1.063-1.103-3.109-3.382-4.09-4.558 c-0.827-0.996-2.438-3.033-3.221-4.067c-0.428-0.563-1.674-2.278-1.674-2.278"/>
  3031. <path fill="#E0E0DF" d="M1518.405,579.319l-19.77,0.615c0,0,1.098-0.348,1.475-0.434c0.312-0.074,0.949-0.185,1.271-0.229 c0.265-0.037,1.056-0.137,1.056-0.137s1.379-0.154,1.838-0.187c1.526-0.1,4.59-0.188,6.121-0.177 c1.299,0.013,3.89,0.103,5.187,0.173c0.705,0.043,2.819,0.193,2.819,0.193"/>
  3032. </g>
  3033. <animateTransform restart="always" from="0 1519 580.103" dur="4s" to="359 1519 580.103" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  3034. </animateTransform>
  3035. </g>
  3036. <g>
  3037. <path fill="#66ADC5" d="M1516.862,580.098c-0.006,1.437,1.201,2.604,2.694,2.61c1.5,0.005,2.718-1.157,2.724-2.59 c0.006-1.438-1.203-2.604-2.701-2.612C1518.08,577.504,1516.867,578.659,1516.862,580.098"/>
  3038. </g>
  3039. <g>
  3040. <path fill="#BADBE5" d="M1517.841,580.103c-0.005,0.895,0.77,1.619,1.723,1.625c0.951,0.006,1.731-0.721,1.732-1.611 c0.004-0.896-0.771-1.623-1.723-1.627C1518.623,578.487,1517.843,579.209,1517.841,580.103"/>
  3041. </g>
  3042. </g>
  3043. </g>
  3044. <g id="_x23_108">
  3045. <g>
  3046. <path fill="#E0E0DF" d="M1564.037,580.103l-1.377,28.779c0,0,1.095,0.43,2.063,0.436c0.995,0.004,2.146-0.424,2.146-0.424 l-1.14-28.781L1564.037,580.103L1564.037,580.103z"/>
  3047. </g>
  3048. <g>
  3049. <g transform="rotate(91.5214 1565 580.103)">
  3050. <g>
  3051. <path fill="#42478C" d="M1563.738,579.053l2.202,0.854c0,0,5.845-12.162,6.271-18.755 C1567.896,566.372,1563.738,579.053,1563.738,579.053"/>
  3052. <path fill="#42478C" d="M1565.828,579.905l-1.813,1.51c0,0,7.769,11.027,13.32,14.617 C1574.877,589.715,1565.828,579.905,1565.828,579.905"/>
  3053. <path fill="#42478C" d="M1563.914,581.483l0.021-2.361c0,0-13.439-1.196-19.768,0.729 C1550.577,582.053,1563.914,581.483,1563.914,581.483"/>
  3054. </g>
  3055. <g>
  3056. <path fill="#E0E0DF" d="M1565.832,579.622l6.379-18.719c0,0-0.063,1.146-0.11,1.525c-0.039,0.322-0.164,0.957-0.235,1.275 c-0.058,0.258-0.244,1.033-0.244,1.033s-0.341,1.344-0.474,1.784c-0.446,1.468-1.438,4.359-1.989,5.788 c-0.465,1.212-1.461,3.608-1.981,4.798c-0.282,0.646-1.171,2.568-1.171,2.568"/>
  3057. <path fill="#E0E0DF" d="M1564.314,581.459l13.237,14.691c0,0-0.976-0.613-1.28-0.844c-0.264-0.191-0.754-0.609-0.996-0.825 c-0.197-0.177-0.784-0.718-0.784-0.718s-1.009-0.955-1.326-1.286c-1.063-1.103-3.109-3.382-4.09-4.558 c-0.827-0.996-2.438-3.033-3.22-4.067c-0.429-0.563-1.674-2.278-1.674-2.278"/>
  3058. <path fill="#E0E0DF" d="M1563.707,579.319l-19.77,0.615c0,0,1.097-0.348,1.474-0.434c0.313-0.074,0.951-0.185,1.271-0.229 c0.266-0.037,1.057-0.137,1.057-0.137s1.377-0.154,1.838-0.187c1.525-0.1,4.589-0.188,6.122-0.177 c1.296,0.013,3.889,0.103,5.184,0.173c0.707,0.043,2.819,0.193,2.819,0.193"/>
  3059. </g>
  3060. <animateTransform restart="always" from="0 1565 580.103" dur="4s" to="359 1565 580.103" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  3061. </animateTransform>
  3062. </g>
  3063. <g>
  3064. <path fill="#66ADC5" d="M1562.164,580.098c-0.006,1.437,1.202,2.604,2.697,2.61c1.498,0.005,2.715-1.157,2.721-2.59 c0.007-1.438-1.202-2.604-2.7-2.612C1563.384,577.504,1562.17,578.659,1562.164,580.098"/>
  3065. </g>
  3066. <g>
  3067. <path fill="#BADBE5" d="M1563.146,580.103c-0.002,0.895,0.771,1.619,1.722,1.625c0.952,0.006,1.731-0.721,1.733-1.611 c0.004-0.896-0.771-1.623-1.722-1.627C1563.926,578.487,1563.15,579.209,1563.146,580.103"/>
  3068. </g>
  3069. </g>
  3070. </g>
  3071. <g id="_x23_109">
  3072. <g>
  3073. <path fill="#E0E0DF" d="M1225.704,450.103l-1.377,28.779c0,0,1.095,0.43,2.063,0.436c0.996,0.004,2.147-0.424,2.147-0.424 l-1.141-28.781L1225.704,450.103L1225.704,450.103z"/>
  3074. </g>
  3075. <g>
  3076. <g transform="rotate(91.5214 1226 450.103)">
  3077. <g>
  3078. <path fill="#42478C" d="M1225.405,449.053l2.203,0.854c0,0,5.844-12.162,6.271-18.755 C1229.562,436.372,1225.405,449.053,1225.405,449.053"/>
  3079. <path fill="#42478C" d="M1227.495,449.905l-1.813,1.51c0,0,7.77,11.027,13.321,14.617 C1236.543,459.715,1227.495,449.905,1227.495,449.905"/>
  3080. <path fill="#42478C" d="M1225.582,451.483l0.021-2.361c0,0-13.438-1.196-19.767,0.729 C1212.244,452.053,1225.582,451.483,1225.582,451.483"/>
  3081. </g>
  3082. <g>
  3083. <path fill="#E0E0DF" d="M1227.5,449.622l6.378-18.719c0,0-0.063,1.146-0.111,1.525c-0.039,0.322-0.164,0.957-0.234,1.275 c-0.059,0.258-0.243,1.033-0.243,1.033s-0.342,1.344-0.474,1.783c-0.447,1.469-1.438,4.36-1.99,5.788 c-0.465,1.212-1.461,3.609-1.981,4.799c-0.281,0.646-1.171,2.568-1.171,2.568"/>
  3084. <path fill="#E0E0DF" d="M1225.98,451.459l13.238,14.691c0,0-0.976-0.613-1.281-0.844c-0.263-0.191-0.754-0.609-0.994-0.824 c-0.198-0.178-0.785-0.719-0.785-0.719s-1.01-0.955-1.326-1.286c-1.063-1.103-3.109-3.382-4.09-4.558 c-0.827-0.996-2.438-3.033-3.221-4.067c-0.428-0.563-1.674-2.278-1.674-2.278"/>
  3085. <path fill="#E0E0DF" d="M1225.375,449.319l-19.77,0.615c0,0,1.096-0.348,1.473-0.434c0.312-0.074,0.951-0.185,1.271-0.229 c0.265-0.037,1.056-0.137,1.056-0.137s1.377-0.154,1.838-0.187c1.524-0.1,4.589-0.188,6.122-0.176 c1.296,0.012,3.889,0.102,5.184,0.172c0.707,0.043,2.819,0.193,2.819,0.193"/>
  3086. </g>
  3087. <animateTransform restart="always" from="0 1226 450.103" dur="4s" to="359 1226 450.103" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  3088. </animateTransform>
  3089. </g>
  3090. <g>
  3091. <path fill="#66ADC5" d="M1223.832,450.098c-0.007,1.437,1.201,2.604,2.696,2.61c1.498,0.005,2.715-1.157,2.722-2.59 c0.006-1.438-1.203-2.604-2.701-2.612C1225.051,447.505,1223.837,448.659,1223.832,450.098"/>
  3092. </g>
  3093. <g>
  3094. <path fill="#BADBE5" d="M1224.812,450.103c-0.002,0.895,0.771,1.619,1.723,1.625s1.732-0.721,1.734-1.611 c0.002-0.896-0.771-1.623-1.723-1.627C1225.593,448.487,1224.816,449.209,1224.812,450.103"/>
  3095. </g>
  3096. </g>
  3097. </g>
  3098. <g id="_x23_110">
  3099. <g>
  3100. <path fill="#E0E0DF" d="M1274.88,450.103l-1.38,28.779c0,0,1.095,0.43,2.063,0.436c0.996,0.004,2.147-0.424,2.147-0.424 l-1.141-28.781L1274.88,450.103L1274.88,450.103z"/>
  3101. </g>
  3102. <g>
  3103. <g transform="rotate(91.5214 1275 450.103)">
  3104. <g>
  3105. <path fill="#42478C" d="M1274.579,449.053l2.203,0.854c0,0,5.843-12.162,6.269-18.755 C1278.739,436.372,1274.579,449.053,1274.579,449.053"/>
  3106. <path fill="#42478C" d="M1276.668,449.905l-1.813,1.51c0,0,7.771,11.027,13.322,14.617 C1285.718,459.715,1276.668,449.905,1276.668,449.905"/>
  3107. <path fill="#42478C" d="M1274.755,451.483l0.021-2.361c0,0-13.439-1.196-19.769,0.729 C1261.416,452.053,1274.755,451.483,1274.755,451.483"/>
  3108. </g>
  3109. <g>
  3110. <path fill="#E0E0DF" d="M1276.675,449.622l6.377-18.719c0,0-0.062,1.146-0.109,1.525c-0.039,0.322-0.164,0.957-0.233,1.275 c-0.062,0.258-0.246,1.033-0.246,1.033s-0.34,1.344-0.474,1.783c-0.444,1.469-1.438,4.36-1.987,5.788 c-0.468,1.212-1.462,3.609-1.983,4.799c-0.282,0.646-1.171,2.568-1.171,2.568"/>
  3111. <path fill="#E0E0DF" d="M1275.155,451.459l13.236,14.691c0,0-0.973-0.613-1.279-0.844c-0.264-0.191-0.756-0.609-0.996-0.824 c-0.197-0.178-0.785-0.719-0.785-0.719s-1.008-0.955-1.323-1.286c-1.063-1.103-3.109-3.382-4.091-4.558 c-0.827-0.996-2.438-3.033-3.221-4.067c-0.428-0.563-1.672-2.278-1.672-2.278"/>
  3112. <path fill="#E0E0DF" d="M1274.55,449.319l-19.771,0.615c0,0,1.096-0.348,1.474-0.434c0.313-0.074,0.949-0.185,1.271-0.229 c0.266-0.037,1.057-0.137,1.057-0.137s1.378-0.154,1.838-0.187c1.525-0.1,4.587-0.188,6.121-0.176 c1.297,0.012,3.889,0.102,5.187,0.172c0.705,0.043,2.819,0.193,2.819,0.193"/>
  3113. </g>
  3114. <animateTransform restart="always" from="0 1275 450.103" dur="4s" to="359 1275 450.103" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  3115. </animateTransform>
  3116. </g>
  3117. <g>
  3118. <path fill="#66ADC5" d="M1273.007,450.098c-0.007,1.437,1.2,2.604,2.694,2.61c1.498,0.005,2.715-1.157,2.721-2.59 c0.009-1.438-1.2-2.604-2.7-2.612C1274.226,447.505,1273.011,448.659,1273.007,450.098"/>
  3119. </g>
  3120. <g>
  3121. <path fill="#BADBE5" d="M1273.987,450.103c-0.002,0.895,0.771,1.619,1.721,1.625c0.953,0.006,1.734-0.721,1.736-1.611 c0.004-0.896-0.771-1.623-1.725-1.627C1274.767,448.487,1273.99,449.209,1273.987,450.103"/>
  3122. </g>
  3123. </g>
  3124. </g>
  3125. <g id="_x23_111">
  3126. <g>
  3127. <path fill="#E0E0DF" d="M1321.101,450.103l-1.379,28.779c0,0,1.094,0.43,2.063,0.436c0.995,0.004,2.146-0.424,2.146-0.424 l-1.141-28.781L1321.101,450.103L1321.101,450.103z"/>
  3128. </g>
  3129. <g>
  3130. <g transform="rotate(91.5214 1322 450.103)">
  3131. <g>
  3132. <path fill="#42478C" d="M1320.799,449.053l2.203,0.854c0,0,5.843-12.162,6.269-18.755 C1324.957,436.372,1320.799,449.053,1320.799,449.053"/>
  3133. <path fill="#42478C" d="M1322.89,449.905l-1.813,1.51c0,0,7.769,11.027,13.32,14.617 C1331.939,459.715,1322.89,449.905,1322.89,449.905"/>
  3134. <path fill="#42478C" d="M1320.976,451.483l0.021-2.361c0,0-13.438-1.196-19.766,0.729 C1307.638,452.053,1320.976,451.483,1320.976,451.483"/>
  3135. </g>
  3136. <g>
  3137. <path fill="#E0E0DF" d="M1322.896,449.622l6.379-18.719c0,0-0.063,1.146-0.11,1.525c-0.039,0.322-0.164,0.957-0.234,1.275 c-0.059,0.258-0.244,1.033-0.244,1.033s-0.342,1.344-0.475,1.783c-0.445,1.469-1.438,4.36-1.988,5.788 c-0.466,1.212-1.461,3.609-1.982,4.799c-0.281,0.646-1.17,2.568-1.17,2.568"/>
  3138. <path fill="#E0E0DF" d="M1321.373,451.459l13.238,14.691c0,0-0.975-0.613-1.281-0.844c-0.262-0.191-0.754-0.609-0.995-0.824 c-0.197-0.178-0.785-0.719-0.785-0.719s-1.009-0.955-1.324-1.286c-1.063-1.103-3.109-3.382-4.09-4.558 c-0.828-0.996-2.438-3.033-3.221-4.067c-0.427-0.563-1.673-2.278-1.673-2.278"/>
  3139. <path fill="#E0E0DF" d="M1320.771,449.319l-19.768,0.615c0,0,1.096-0.348,1.473-0.434c0.312-0.074,0.949-0.185,1.271-0.229 c0.267-0.037,1.058-0.137,1.058-0.137s1.377-0.154,1.838-0.187c1.525-0.1,4.588-0.188,6.121-0.176 c1.297,0.012,3.889,0.102,5.186,0.172c0.705,0.043,2.818,0.193,2.818,0.193"/>
  3140. </g>
  3141. <animateTransform restart="always" from="0 1322 450.103" dur="4s" to="359 1322 450.103" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  3142. </animateTransform>
  3143. </g>
  3144. <g>
  3145. <path fill="#66ADC5" d="M1319.228,450.098c-0.006,1.437,1.201,2.604,2.695,2.61c1.499,0.005,2.716-1.157,2.723-2.59 c0.006-1.438-1.203-2.604-2.701-2.612C1320.448,447.505,1319.234,448.659,1319.228,450.098"/>
  3146. </g>
  3147. <g>
  3148. <path fill="#BADBE5" d="M1320.207,450.103c-0.004,0.895,0.769,1.619,1.72,1.625c0.953,0.006,1.733-0.721,1.735-1.611 c0.004-0.896-0.77-1.623-1.723-1.627C1320.989,448.487,1320.209,449.209,1320.207,450.103"/>
  3149. </g>
  3150. </g>
  3151. </g>
  3152. <g id="_x23_112">
  3153. <g>
  3154. <path fill="#E0E0DF" d="M1375.568,450.103l-1.381,28.779c0,0,1.096,0.43,2.063,0.436c0.995,0.004,2.146-0.424,2.146-0.424 l-1.14-28.781L1375.568,450.103L1375.568,450.103z"/>
  3155. </g>
  3156. <g>
  3157. <g transform="rotate(91.5214 1376 450.103)">
  3158. <g>
  3159. <path fill="#42478C" d="M1375.265,449.053l2.203,0.854c0,0,5.842-12.162,6.27-18.755 C1379.423,436.372,1375.265,449.053,1375.265,449.053"/>
  3160. <path fill="#42478C" d="M1377.355,449.905l-1.813,1.51c0,0,7.771,11.027,13.322,14.617 C1386.405,459.715,1377.355,449.905,1377.355,449.905"/>
  3161. <path fill="#42478C" d="M1375.443,451.483l0.021-2.361c0,0-13.438-1.196-19.767,0.729 C1362.103,452.053,1375.443,451.483,1375.443,451.483"/>
  3162. </g>
  3163. <g>
  3164. <path fill="#E0E0DF" d="M1377.362,449.622l6.377-18.719c0,0-0.063,1.146-0.11,1.525c-0.039,0.322-0.164,0.957-0.232,1.275 c-0.062,0.258-0.246,1.033-0.246,1.033s-0.342,1.344-0.475,1.783c-0.443,1.469-1.438,4.36-1.986,5.788 c-0.469,1.212-1.462,3.609-1.983,4.799c-0.281,0.646-1.171,2.568-1.171,2.568"/>
  3165. <path fill="#E0E0DF" d="M1375.839,451.459l13.237,14.691c0,0-0.973-0.613-1.28-0.844c-0.263-0.191-0.755-0.609-0.996-0.824 c-0.197-0.178-0.785-0.719-0.785-0.719s-1.008-0.955-1.322-1.286c-1.063-1.103-3.11-3.382-4.092-4.558 c-0.826-0.996-2.438-3.033-3.221-4.067c-0.427-0.563-1.673-2.278-1.673-2.278"/>
  3166. <path fill="#E0E0DF" d="M1375.237,449.319l-19.77,0.615c0,0,1.094-0.348,1.475-0.434c0.312-0.074,0.947-0.185,1.271-0.229 c0.268-0.037,1.057-0.137,1.057-0.137s1.379-0.154,1.838-0.187c1.525-0.1,4.588-0.188,6.123-0.176 c1.295,0.012,3.887,0.102,5.185,0.172c0.704,0.043,2.819,0.193,2.819,0.193"/>
  3167. </g>
  3168. <animateTransform restart="always" from="0 1376 450.103" dur="4s" to="359 1376 450.103" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  3169. </animateTransform>
  3170. </g>
  3171. <g>
  3172. <path fill="#66ADC5" d="M1373.694,450.098c-0.008,1.437,1.199,2.604,2.693,2.61c1.498,0.005,2.715-1.157,2.725-2.59 c0.006-1.438-1.203-2.604-2.703-2.612C1374.911,447.505,1373.698,448.659,1373.694,450.098"/>
  3173. </g>
  3174. <g>
  3175. <path fill="#BADBE5" d="M1374.673,450.103c-0.005,0.895,0.77,1.619,1.719,1.625c0.953,0.006,1.733-0.721,1.735-1.611 c0.005-0.896-0.77-1.623-1.723-1.627C1375.453,448.487,1374.675,449.209,1374.673,450.103"/>
  3176. </g>
  3177. </g>
  3178. </g>
  3179. <g id="_x23_113">
  3180. <g>
  3181. <path fill="#E0E0DF" d="M1422.043,450.103l-1.38,28.779c0,0,1.095,0.43,2.063,0.436c0.994,0.004,2.146-0.424,2.146-0.424 l-1.141-28.781L1422.043,450.103L1422.043,450.103z"/>
  3182. </g>
  3183. <g>
  3184. <g transform="rotate(91.5214 1423 450.103)">
  3185. <g>
  3186. <path fill="#42478C" d="M1421.743,449.053l2.203,0.854c0,0,5.843-12.162,6.269-18.755 C1425.901,436.372,1421.743,449.053,1421.743,449.053"/>
  3187. <path fill="#42478C" d="M1423.832,449.905l-1.813,1.51c0,0,7.768,11.027,13.32,14.617 C1432.881,459.715,1423.832,449.905,1423.832,449.905"/>
  3188. <path fill="#42478C" d="M1421.918,451.483l0.021-2.361c0,0-13.438-1.196-19.766,0.729 C1408.582,452.053,1421.918,451.483,1421.918,451.483"/>
  3189. </g>
  3190. <g>
  3191. <path fill="#E0E0DF" d="M1423.838,449.622l6.377-18.719c0,0-0.063,1.146-0.11,1.525c-0.039,0.322-0.164,0.957-0.233,1.275 c-0.06,0.258-0.246,1.033-0.246,1.033s-0.34,1.344-0.474,1.783c-0.444,1.469-1.438,4.36-1.987,5.788 c-0.468,1.212-1.461,3.609-1.983,4.799c-0.28,0.646-1.17,2.568-1.17,2.568"/>
  3192. <path fill="#E0E0DF" d="M1422.318,451.459l13.238,14.691c0,0-0.974-0.613-1.281-0.844c-0.262-0.191-0.754-0.609-0.993-0.824 c-0.199-0.178-0.785-0.719-0.785-0.719s-1.011-0.955-1.326-1.286c-1.063-1.103-3.109-3.382-4.09-4.558 c-0.828-0.996-2.438-3.033-3.222-4.067c-0.426-0.563-1.672-2.278-1.672-2.278"/>
  3193. <path fill="#E0E0DF" d="M1421.713,449.319l-19.769,0.615c0,0,1.097-0.348,1.474-0.434c0.312-0.074,0.948-0.185,1.271-0.229 c0.267-0.037,1.058-0.137,1.058-0.137s1.377-0.154,1.839-0.187c1.524-0.1,4.586-0.188,6.12-0.176 c1.296,0.012,3.888,0.102,5.186,0.172c0.704,0.043,2.819,0.193,2.819,0.193"/>
  3194. </g>
  3195. <animateTransform restart="always" from="0 1423 450.103" dur="4s" to="359 1423 450.103" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  3196. </animateTransform>
  3197. </g>
  3198. <g>
  3199. <path fill="#66ADC5" d="M1420.17,450.098c-0.006,1.437,1.201,2.604,2.696,2.61c1.498,0.005,2.714-1.157,2.72-2.59 c0.006-1.438-1.201-2.604-2.701-2.612C1421.389,447.505,1420.176,448.659,1420.17,450.098"/>
  3200. </g>
  3201. <g>
  3202. <path fill="#BADBE5" d="M1421.151,450.103c-0.004,0.895,0.77,1.619,1.72,1.625c0.953,0.006,1.733-0.721,1.735-1.611 c0.004-0.896-0.771-1.623-1.724-1.627C1421.93,448.487,1421.153,449.209,1421.151,450.103"/>
  3203. </g>
  3204. </g>
  3205. </g>
  3206. <g id="_x23_114">
  3207. <g>
  3208. <path fill="#E0E0DF" d="M1476.258,450.103l-1.377,28.779c0,0,1.095,0.43,2.062,0.436c0.998,0.004,2.149-0.424,2.149-0.424 l-1.141-28.781L1476.258,450.103L1476.258,450.103z"/>
  3209. </g>
  3210. <g>
  3211. <g transform="rotate(91.5214 1477 450.103)">
  3212. <g>
  3213. <path fill="#42478C" d="M1475.957,449.053l2.202,0.854c0,0,5.845-12.162,6.271-18.755 C1480.116,436.372,1475.957,449.053,1475.957,449.053"/>
  3214. <path fill="#42478C" d="M1478.047,449.905l-1.813,1.51c0,0,7.77,11.027,13.322,14.617 C1487.099,459.715,1478.047,449.905,1478.047,449.905"/>
  3215. <path fill="#42478C" d="M1476.135,451.483l0.021-2.361c0,0-13.44-1.196-19.767,0.729 C1462.797,452.053,1476.135,451.483,1476.135,451.483"/>
  3216. </g>
  3217. <g>
  3218. <path fill="#E0E0DF" d="M1478.055,449.622l6.378-18.719c0,0-0.063,1.146-0.11,1.525c-0.041,0.322-0.164,0.957-0.235,1.275 c-0.058,0.258-0.244,1.033-0.244,1.033s-0.34,1.344-0.474,1.783c-0.444,1.469-1.438,4.36-1.989,5.788 c-0.465,1.212-1.461,3.609-1.981,4.799c-0.281,0.646-1.172,2.568-1.172,2.568"/>
  3219. <path fill="#E0E0DF" d="M1476.534,451.459l13.237,14.691c0,0-0.976-0.613-1.28-0.844c-0.263-0.191-0.754-0.609-0.995-0.824 c-0.199-0.178-0.785-0.719-0.785-0.719s-1.011-0.955-1.326-1.286c-1.063-1.103-3.108-3.382-4.088-4.558 c-0.828-0.996-2.438-3.033-3.222-4.067c-0.429-0.563-1.674-2.278-1.674-2.278"/>
  3220. <path fill="#E0E0DF" d="M1475.928,449.319l-19.769,0.615c0,0,1.097-0.348,1.474-0.434c0.313-0.074,0.951-0.185,1.271-0.229 c0.267-0.037,1.056-0.137,1.056-0.137s1.377-0.154,1.838-0.187c1.526-0.1,4.589-0.188,6.121-0.176 c1.297,0.012,3.89,0.102,5.185,0.172c0.707,0.043,2.819,0.193,2.819,0.193"/>
  3221. </g>
  3222. <animateTransform restart="always" from="0 1477 450.103" dur="4s" to="359 1477 450.103" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  3223. </animateTransform>
  3224. </g>
  3225. <g>
  3226. <path fill="#66ADC5" d="M1474.387,450.098c-0.008,1.437,1.199,2.604,2.694,2.61c1.498,0.005,2.716-1.157,2.722-2.59 c0.007-1.438-1.202-2.604-2.7-2.612C1475.607,447.505,1474.392,448.659,1474.387,450.098"/>
  3227. </g>
  3228. <g>
  3229. <path fill="#BADBE5" d="M1475.366,450.103c-0.002,0.895,0.771,1.619,1.722,1.625c0.952,0.006,1.732-0.721,1.732-1.611 c0.005-0.896-0.771-1.623-1.721-1.627C1476.148,448.487,1475.37,449.209,1475.366,450.103"/>
  3230. </g>
  3231. </g>
  3232. </g>
  3233. <g id="_x23_115">
  3234. <g>
  3235. <path fill="#E0E0DF" d="M1522.929,450.103l-1.377,28.779c0,0,1.094,0.43,2.063,0.436c0.998,0.004,2.148-0.424,2.148-0.424 l-1.142-28.781L1522.929,450.103L1522.929,450.103z"/>
  3236. </g>
  3237. <g>
  3238. <g transform="rotate(91.5214 1524 450.103)">
  3239. <g>
  3240. <path fill="#42478C" d="M1522.628,449.053l2.202,0.854c0,0,5.845-12.162,6.271-18.755 C1526.786,436.372,1522.628,449.053,1522.628,449.053"/>
  3241. <path fill="#42478C" d="M1524.718,449.905l-1.813,1.51c0,0,7.769,11.027,13.322,14.617 C1533.769,459.715,1524.718,449.905,1524.718,449.905"/>
  3242. <path fill="#42478C" d="M1522.806,451.483l0.021-2.361c0,0-13.44-1.196-19.766,0.729 C1509.468,452.053,1522.806,451.483,1522.806,451.483"/>
  3243. </g>
  3244. <g>
  3245. <path fill="#E0E0DF" d="M1524.726,449.622l6.377-18.719c0,0-0.063,1.146-0.109,1.525c-0.041,0.322-0.164,0.957-0.235,1.275 c-0.058,0.258-0.244,1.033-0.244,1.033s-0.34,1.344-0.474,1.783c-0.444,1.469-1.438,4.36-1.989,5.788 c-0.465,1.212-1.461,3.609-1.98,4.799c-0.283,0.646-1.172,2.568-1.172,2.568"/>
  3246. <path fill="#E0E0DF" d="M1523.204,451.459l13.237,14.691c0,0-0.976-0.613-1.28-0.844c-0.263-0.191-0.754-0.609-0.995-0.824 c-0.199-0.178-0.785-0.719-0.785-0.719s-1.011-0.955-1.326-1.286c-1.063-1.103-3.108-3.382-4.088-4.558 c-0.828-0.996-2.438-3.033-3.222-4.067c-0.429-0.563-1.674-2.278-1.674-2.278"/>
  3247. <path fill="#E0E0DF" d="M1522.599,449.319l-19.769,0.615c0,0,1.097-0.348,1.474-0.434c0.313-0.074,0.951-0.185,1.271-0.229 c0.267-0.037,1.056-0.137,1.056-0.137s1.377-0.154,1.838-0.187c1.526-0.1,4.588-0.188,6.121-0.176 c1.297,0.012,3.889,0.102,5.186,0.172c0.706,0.043,2.818,0.193,2.818,0.193"/>
  3248. </g>
  3249. <animateTransform restart="always" from="0 1524 450.103" dur="4s" to="359 1524 450.103" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  3250. </animateTransform>
  3251. </g>
  3252. <g>
  3253. <path fill="#66ADC5" d="M1521.058,450.098c-0.008,1.437,1.199,2.604,2.694,2.61c1.498,0.005,2.716-1.157,2.722-2.59 c0.006-1.438-1.203-2.604-2.699-2.612C1522.278,447.505,1521.062,448.659,1521.058,450.098"/>
  3254. </g>
  3255. <g>
  3256. <path fill="#BADBE5" d="M1522.036,450.103c-0.002,0.895,0.771,1.619,1.722,1.625c0.953,0.006,1.733-0.721,1.733-1.611 c0.004-0.896-0.771-1.623-1.722-1.627C1522.819,448.487,1522.039,449.209,1522.036,450.103"/>
  3257. </g>
  3258. </g>
  3259. </g>
  3260. <g id="_x23_116">
  3261. <g>
  3262. <path fill="#E0E0DF" d="M1570.401,450.103l-1.379,28.779c0,0,1.097,0.43,2.063,0.436c0.996,0.004,2.147-0.424,2.147-0.424 l-1.14-28.781L1570.401,450.103L1570.401,450.103z"/>
  3263. </g>
  3264. <g>
  3265. <g transform="rotate(91.5214 1571 450.103)">
  3266. <g>
  3267. <path fill="#42478C" d="M1570.101,449.053l2.202,0.854c0,0,5.845-12.162,6.271-18.755 C1574.258,436.372,1570.101,449.053,1570.101,449.053"/>
  3268. <path fill="#42478C" d="M1572.191,449.905l-1.813,1.51c0,0,7.77,11.027,13.319,14.617 C1581.241,459.715,1572.191,449.905,1572.191,449.905"/>
  3269. <path fill="#42478C" d="M1570.278,451.483l0.021-2.361c0,0-13.438-1.196-19.767,0.729 C1556.941,452.053,1570.278,451.483,1570.278,451.483"/>
  3270. </g>
  3271. <g>
  3272. <path fill="#E0E0DF" d="M1572.197,449.622l6.379-18.719c0,0-0.063,1.146-0.11,1.525c-0.041,0.322-0.166,0.957-0.235,1.275 c-0.06,0.258-0.244,1.033-0.244,1.033s-0.342,1.344-0.473,1.783c-0.447,1.469-1.438,4.36-1.99,5.788 c-0.465,1.212-1.461,3.609-1.981,4.799c-0.282,0.646-1.172,2.568-1.172,2.568"/>
  3273. <path fill="#E0E0DF" d="M1570.676,451.459l13.236,14.691c0,0-0.975-0.613-1.28-0.844c-0.263-0.191-0.754-0.609-0.994-0.824 c-0.199-0.178-0.787-0.719-0.787-0.719s-1.009-0.955-1.323-1.286c-1.063-1.103-3.109-3.382-4.091-4.558 c-0.826-0.996-2.437-3.033-3.219-4.067c-0.429-0.563-1.675-2.278-1.675-2.278"/>
  3274. <path fill="#E0E0DF" d="M1570.072,449.319l-19.77,0.615c0,0,1.097-0.348,1.474-0.434c0.313-0.074,0.949-0.185,1.271-0.229 c0.266-0.037,1.057-0.137,1.057-0.137s1.377-0.154,1.838-0.187c1.525-0.1,4.589-0.188,6.121-0.176 c1.297,0.012,3.889,0.102,5.186,0.172c0.705,0.043,2.818,0.193,2.818,0.193"/>
  3275. </g>
  3276. <animateTransform restart="always" from="0 1571 450.103" dur="4s" to="359 1571 450.103" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  3277. </animateTransform>
  3278. </g>
  3279. <g>
  3280. <path fill="#66ADC5" d="M1568.528,450.098c-0.006,1.437,1.201,2.604,2.695,2.61c1.5,0.005,2.717-1.157,2.723-2.59 c0.007-1.438-1.202-2.604-2.7-2.612C1569.748,447.505,1568.534,448.659,1568.528,450.098"/>
  3281. </g>
  3282. <g>
  3283. <path fill="#BADBE5" d="M1569.508,450.103c-0.004,0.895,0.771,1.619,1.722,1.625s1.732-0.721,1.733-1.611 c0.004-0.896-0.771-1.623-1.723-1.627C1570.289,448.487,1569.51,449.209,1569.508,450.103"/>
  3284. </g>
  3285. </g>
  3286. </g>
  3287. <g id="_x23_34">
  3288. <g>
  3289. <path fill="#DFDFDD" d="M23.467,332.381l-1.377,28.777c0,0,1.094,0.43,2.063,0.434c0.995,0.002,2.146-0.422,2.146-0.422 l-1.139-28.783L23.467,332.381L23.467,332.381z"/>
  3290. </g>
  3291. <g>
  3292. <g transform="rotate(91.5214 24 332.377)">
  3293. <g>
  3294. <path fill="#3E4484" d="M23.166,331.329l2.203,0.854c0,0,5.844-12.161,6.27-18.758 C27.324,318.649,23.166,331.329,23.166,331.329"/>
  3295. <path fill="#3E4484" d="M25.256,332.18l-1.813,1.513c0,0,7.769,11.022,13.319,14.616 C34.307,341.992,25.256,332.18,25.256,332.18"/>
  3296. <path fill="#3E4484" d="M23.342,333.76l0.021-2.36c0,0-13.44-1.197-19.767,0.728C10.006,334.329,23.342,333.76,23.342,333.76"/>
  3297. </g>
  3298. <g>
  3299. <path fill="#DFDFDD" d="M25.262,331.899l6.377-18.722c0,0-0.063,1.148-0.108,1.529c-0.041,0.32-0.166,0.957-0.235,1.271 c-0.06,0.26-0.246,1.034-0.246,1.034s-0.34,1.343-0.472,1.784c-0.446,1.469-1.438,4.358-1.987,5.789 c-0.467,1.211-1.463,3.608-1.984,4.797c-0.282,0.646-1.172,2.569-1.172,2.569"/>
  3300. <path fill="#DFDFDD" d="M23.74,333.735l13.239,14.69c0,0-0.975-0.61-1.28-0.844c-0.263-0.189-0.754-0.607-0.996-0.824 c-0.198-0.174-0.786-0.717-0.786-0.717s-1.009-0.953-1.322-1.287c-1.065-1.102-3.111-3.379-4.092-4.557 c-0.828-0.996-2.438-3.033-3.22-4.07c-0.429-0.563-1.675-2.275-1.675-2.275"/>
  3301. <path fill="#DFDFDD" d="M23.137,331.594l-19.768,0.619c0,0,1.094-0.352,1.473-0.438c0.313-0.072,0.951-0.184,1.271-0.229 c0.267-0.037,1.058-0.136,1.058-0.136s1.377-0.155,1.838-0.186c1.526-0.101,4.59-0.188,6.121-0.181 c1.295,0.017,3.889,0.104,5.184,0.175c0.705,0.044,2.82,0.194,2.82,0.194"/>
  3302. </g>
  3303. <animateTransform restart="always" from="0 24 332.377" dur="4s" to="359 24 332.377" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  3304. </animateTransform>
  3305. </g>
  3306. <g>
  3307. <path fill="#63A5BA" d="M21.596,332.375c-0.01,1.434,1.199,2.604,2.695,2.609c1.496,0.004,2.715-1.158,2.721-2.59 c0.006-1.439-1.203-2.604-2.703-2.613C22.813,329.781,21.598,330.937,21.596,332.375"/>
  3308. </g>
  3309. <g>
  3310. <path fill="#B6D6DE" d="M22.574,332.377c-0.002,0.896,0.769,1.621,1.722,1.627c0.95,0.002,1.733-0.719,1.733-1.613 c0.004-0.895-0.769-1.618-1.722-1.625C23.354,330.766,22.578,331.487,22.574,332.377"/>
  3311. </g>
  3312. </g>
  3313. </g>
  3314. <g id="_x23_35">
  3315. <g>
  3316. <path fill="#DFDFDD" d="M65.69,332.381l-1.379,28.777c0,0,1.095,0.43,2.063,0.434c0.996,0.002,2.147-0.422,2.147-0.422 l-1.139-28.783L65.69,332.381L65.69,332.381z"/>
  3317. </g>
  3318. <g>
  3319. <g transform="rotate(91.5214 66 332.377)">
  3320. <g>
  3321. <path fill="#3E4484" d="M65.389,331.329l2.203,0.854c0,0,5.844-12.161,6.269-18.758 C69.545,318.649,65.389,331.329,65.389,331.329"/>
  3322. <path fill="#3E4484" d="M67.479,332.18l-1.813,1.513c0,0,7.766,11.022,13.316,14.616 C76.531,341.992,67.479,332.18,67.479,332.18"/>
  3323. <path fill="#3E4484" d="M65.565,333.76l0.021-2.36c0,0-13.441-1.197-19.767,0.728C52.229,334.329,65.565,333.76,65.565,333.76"/>
  3324. </g>
  3325. <g>
  3326. <path fill="#DFDFDD" d="M67.486,331.899l6.377-18.722c0,0-0.063,1.148-0.11,1.529c-0.039,0.32-0.166,0.957-0.236,1.271 c-0.057,0.26-0.244,1.034-0.244,1.034s-0.34,1.343-0.471,1.784c-0.447,1.469-1.44,4.358-1.99,5.789 c-0.465,1.211-1.461,3.608-1.982,4.797c-0.283,0.646-1.171,2.569-1.171,2.569"/>
  3327. <path fill="#DFDFDD" d="M65.963,333.735l13.24,14.69c0,0-0.977-0.61-1.283-0.844c-0.263-0.189-0.752-0.607-0.996-0.824 c-0.197-0.174-0.785-0.717-0.785-0.717s-1.008-0.953-1.326-1.287c-1.063-1.102-3.108-3.379-4.088-4.557 c-0.828-0.996-2.436-3.033-3.221-4.07c-0.426-0.563-1.674-2.275-1.674-2.275"/>
  3328. <path fill="#DFDFDD" d="M65.361,331.594l-19.771,0.619c0,0,1.096-0.352,1.475-0.438c0.313-0.072,0.949-0.184,1.271-0.229 c0.266-0.037,1.057-0.136,1.057-0.136s1.377-0.155,1.836-0.186c1.527-0.101,4.588-0.188,6.123-0.181 c1.297,0.017,3.89,0.104,5.186,0.175c0.705,0.044,2.818,0.194,2.818,0.194"/>
  3329. </g>
  3330. <animateTransform restart="always" from="0 66 332.377" dur="4s" to="359 66 332.377" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  3331. </animateTransform>
  3332. </g>
  3333. <g>
  3334. <path fill="#63A5BA" d="M63.815,332.375c-0.006,1.434,1.203,2.604,2.697,2.609c1.5,0.004,2.717-1.158,2.724-2.59 c0.006-1.439-1.203-2.604-2.703-2.613C65.035,329.781,63.822,330.937,63.815,332.375"/>
  3335. </g>
  3336. <g>
  3337. <path fill="#B6D6DE" d="M64.797,332.377c-0.002,0.896,0.768,1.621,1.721,1.627c0.951,0.002,1.732-0.719,1.734-1.613 c0.004-0.895-0.771-1.618-1.724-1.625C65.578,330.766,64.801,331.487,64.797,332.377"/>
  3338. </g>
  3339. </g>
  3340. </g>
  3341. <g id="_x23_36">
  3342. <g>
  3343. <path fill="#DFDFDD" d="M116.185,332.381l-1.379,28.777c0,0,1.097,0.43,2.063,0.434c0.995,0.002,2.146-0.422,2.146-0.422 l-1.139-28.783L116.185,332.381L116.185,332.381z"/>
  3344. </g>
  3345. <g>
  3346. <g transform="rotate(91.5214 117 332.377)">
  3347. <g>
  3348. <path fill="#3E4484" d="M115.883,331.329l2.205,0.854c0,0,5.842-12.161,6.268-18.758 C120.043,318.649,115.883,331.329,115.883,331.329"/>
  3349. <path fill="#3E4484" d="M117.974,332.18l-1.813,1.513c0,0,7.77,11.022,13.32,14.616 C127.023,341.992,117.974,332.18,117.974,332.18"/>
  3350. <path fill="#3E4484" d="M116.06,333.76l0.021-2.36c0,0-13.44-1.197-19.768,0.728C102.723,334.329,116.06,333.76,116.06,333.76"/>
  3351. </g>
  3352. <g>
  3353. <path fill="#DFDFDD" d="M117.98,331.899l6.377-18.722c0,0-0.063,1.148-0.107,1.529c-0.041,0.32-0.166,0.957-0.238,1.271 c-0.057,0.26-0.244,1.034-0.244,1.034s-0.34,1.343-0.473,1.784c-0.445,1.469-1.439,4.358-1.988,5.789 c-0.465,1.211-1.461,3.608-1.983,4.797c-0.283,0.646-1.17,2.569-1.17,2.569"/>
  3354. <path fill="#DFDFDD" d="M116.459,333.735l13.24,14.69c0,0-0.979-0.61-1.283-0.844c-0.263-0.189-0.752-0.607-0.996-0.824 c-0.197-0.174-0.785-0.717-0.785-0.717s-1.008-0.953-1.324-1.287c-1.064-1.102-3.11-3.379-4.092-4.557 c-0.828-0.996-2.436-3.033-3.219-4.07c-0.426-0.563-1.674-2.275-1.674-2.275"/>
  3355. <path fill="#DFDFDD" d="M115.855,331.594l-19.767,0.619c0,0,1.094-0.352,1.471-0.438c0.313-0.072,0.953-0.184,1.271-0.229 c0.266-0.037,1.057-0.136,1.057-0.136s1.374-0.155,1.835-0.186c1.527-0.101,4.588-0.188,6.123-0.181 c1.295,0.017,3.889,0.104,5.185,0.175c0.704,0.044,2.819,0.194,2.819,0.194"/>
  3356. </g>
  3357. <animateTransform restart="always" from="0 117 332.377" dur="4s" to="359 117 332.377" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  3358. </animateTransform>
  3359. </g>
  3360. <g>
  3361. <path fill="#63A5BA" d="M114.312,332.375c-0.008,1.434,1.201,2.604,2.695,2.609c1.498,0.004,2.715-1.158,2.721-2.59 c0.006-1.439-1.203-2.604-2.7-2.613C115.531,329.781,114.316,330.937,114.312,332.375"/>
  3362. </g>
  3363. <g>
  3364. <path fill="#B6D6DE" d="M115.291,332.377c-0.002,0.896,0.77,1.621,1.721,1.627c0.953,0.002,1.734-0.719,1.736-1.613 c0.004-0.895-0.771-1.618-1.725-1.625C116.073,330.766,115.295,331.487,115.291,332.377"/>
  3365. </g>
  3366. </g>
  3367. </g>
  3368. <g id="_x23_42">
  3369. <g>
  3370. <path fill="#DFDFDD" d="M402.034,332.381l-1.38,28.777c0,0,1.098,0.43,2.063,0.434c0.998,0.002,2.149-0.422,2.149-0.422 l-1.14-28.783L402.034,332.381L402.034,332.381z"/>
  3371. </g>
  3372. <g>
  3373. <g transform="rotate(91.5214 403 332.377)">
  3374. <g>
  3375. <path fill="#3E4484" d="M401.732,331.329l2.205,0.854c0,0,5.842-12.161,6.27-18.756 C405.892,318.647,401.732,331.329,401.732,331.329"/>
  3376. <path fill="#3E4484" d="M403.823,332.18l-1.813,1.511c0,0,7.768,11.024,13.32,14.618 C412.873,341.992,403.823,332.18,403.823,332.18"/>
  3377. <path fill="#3E4484" d="M401.909,333.76l0.021-2.36c0,0-13.439-1.195-19.766,0.729 C388.572,334.329,401.909,333.76,401.909,333.76"/>
  3378. </g>
  3379. <g>
  3380. <path fill="#DFDFDD" d="M403.83,331.899l6.377-18.722c0,0-0.063,1.148-0.109,1.529c-0.041,0.32-0.166,0.957-0.238,1.271 c-0.057,0.26-0.246,1.034-0.246,1.034s-0.338,1.345-0.471,1.784c-0.445,1.469-1.438,4.358-1.988,5.789 c-0.465,1.211-1.461,3.608-1.982,4.797c-0.283,0.647-1.17,2.571-1.17,2.571"/>
  3381. <path fill="#DFDFDD" d="M402.308,333.735l13.24,14.69c0,0-0.979-0.61-1.283-0.844c-0.262-0.189-0.754-0.607-0.996-0.824 c-0.197-0.174-0.785-0.717-0.785-0.717s-1.008-0.955-1.323-1.287c-1.065-1.102-3.11-3.379-4.093-4.559 c-0.828-0.994-2.437-3.031-3.219-4.066c-0.426-0.563-1.674-2.277-1.674-2.277"/>
  3382. <path fill="#DFDFDD" d="M401.705,331.594l-19.771,0.619c0,0,1.097-0.352,1.474-0.436c0.313-0.074,0.952-0.186,1.271-0.229 c0.266-0.037,1.057-0.136,1.057-0.136s1.375-0.155,1.837-0.186c1.526-0.101,4.591-0.188,6.122-0.181 c1.296,0.017,3.889,0.104,5.186,0.174c0.705,0.045,2.818,0.195,2.818,0.195"/>
  3383. </g>
  3384. <animateTransform restart="always" from="0 403 332.377" dur="4s" to="359 403 332.377" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  3385. </animateTransform>
  3386. </g>
  3387. <g>
  3388. <path fill="#63A5BA" d="M400.162,332.375c-0.01,1.434,1.199,2.604,2.693,2.609c1.498,0.004,2.715-1.158,2.721-2.59 c0.008-1.439-1.199-2.604-2.699-2.613C401.381,329.781,400.166,330.937,400.162,332.375"/>
  3389. </g>
  3390. <g>
  3391. <path fill="#B6D6DE" d="M401.14,332.377c-0.002,0.896,0.771,1.621,1.721,1.627c0.951,0.002,1.734-0.719,1.736-1.613 c0.004-0.895-0.771-1.618-1.724-1.625C401.922,330.766,401.144,331.487,401.14,332.377"/>
  3392. </g>
  3393. </g>
  3394. </g>
  3395. <g id="_x23_41">
  3396. <g>
  3397. <path fill="#DFDFDD" d="M354.758,332.381l-1.377,28.777c0,0,1.094,0.43,2.062,0.434c0.998,0.002,2.147-0.422,2.147-0.422 l-1.14-28.783L354.758,332.381L354.758,332.381z"/>
  3398. </g>
  3399. <g>
  3400. <g transform="rotate(91.5214 355 332.377)">
  3401. <g>
  3402. <path fill="#3E4484" d="M354.457,331.329l2.202,0.854c0,0,5.843-12.161,6.271-18.756 C358.616,318.647,354.457,331.329,354.457,331.329"/>
  3403. <path fill="#3E4484" d="M356.549,332.18l-1.815,1.511c0,0,7.771,11.024,13.324,14.618 C365.598,341.992,356.549,332.18,356.549,332.18"/>
  3404. <path fill="#3E4484" d="M354.633,333.76l0.021-2.36c0,0-13.438-1.195-19.766,0.729 C341.297,334.329,354.633,333.76,354.633,333.76"/>
  3405. </g>
  3406. <g>
  3407. <path fill="#DFDFDD" d="M356.555,331.899l6.377-18.722c0,0-0.063,1.148-0.111,1.529c-0.041,0.32-0.164,0.957-0.234,1.271 c-0.061,0.26-0.246,1.034-0.246,1.034s-0.338,1.345-0.473,1.784c-0.445,1.469-1.438,4.358-1.988,5.789 c-0.466,1.211-1.461,3.608-1.981,4.797c-0.281,0.647-1.172,2.571-1.172,2.571"/>
  3408. <path fill="#DFDFDD" d="M355.032,333.735l13.237,14.69c0,0-0.975-0.61-1.281-0.844c-0.262-0.189-0.756-0.607-0.995-0.824 c-0.196-0.174-0.784-0.717-0.784-0.717s-1.011-0.955-1.324-1.287c-1.066-1.102-3.111-3.379-4.092-4.559 c-0.828-0.994-2.438-3.031-3.22-4.066c-0.429-0.563-1.675-2.277-1.675-2.277"/>
  3409. <path fill="#DFDFDD" d="M354.428,331.594l-19.766,0.619c0,0,1.094-0.352,1.471-0.436c0.312-0.074,0.949-0.186,1.271-0.229 c0.268-0.037,1.057-0.136,1.057-0.136s1.377-0.155,1.838-0.186c1.526-0.101,4.588-0.188,6.123-0.181 c1.295,0.017,3.885,0.104,5.182,0.174c0.707,0.045,2.818,0.195,2.818,0.195"/>
  3410. </g>
  3411. <animateTransform restart="always" from="0 355 332.377" dur="4s" to="359 355 332.377" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  3412. </animateTransform>
  3413. </g>
  3414. <g>
  3415. <path fill="#63A5BA" d="M352.887,332.375c-0.008,1.434,1.199,2.604,2.695,2.609c1.498,0.004,2.715-1.158,2.721-2.59 c0.006-1.439-1.203-2.604-2.701-2.613C354.103,329.781,352.89,330.937,352.887,332.375"/>
  3416. </g>
  3417. <g>
  3418. <path fill="#B6D6DE" d="M353.863,332.377c-0.002,0.896,0.771,1.621,1.725,1.627c0.951,0.002,1.732-0.719,1.732-1.613 c0.005-0.895-0.771-1.618-1.721-1.625C354.646,330.766,353.866,331.487,353.863,332.377"/>
  3419. </g>
  3420. </g>
  3421. </g>
  3422. <g id="_x23_40">
  3423. <g>
  3424. <path fill="#DFDFDD" d="M309.192,332.381l-1.377,28.777c0,0,1.094,0.43,2.063,0.434c0.995,0.002,2.146-0.422,2.146-0.422 l-1.139-28.783L309.192,332.381L309.192,332.381z"/>
  3425. </g>
  3426. <g>
  3427. <g transform="rotate(91.5214 310 332.377)">
  3428. <g>
  3429. <path fill="#3E4484" d="M308.891,331.329l2.203,0.854c0,0,5.844-12.161,6.27-18.756 C313.05,318.647,308.891,331.329,308.891,331.329"/>
  3430. <path fill="#3E4484" d="M310.981,332.18l-1.813,1.511c0,0,7.766,11.024,13.318,14.618 C320.031,341.992,310.981,332.18,310.981,332.18"/>
  3431. <path fill="#3E4484" d="M309.067,333.76l0.021-2.36c0,0-13.441-1.195-19.767,0.729 C295.731,334.329,309.067,333.76,309.067,333.76"/>
  3432. </g>
  3433. <g>
  3434. <path fill="#DFDFDD" d="M310.987,331.899l6.377-18.722c0,0-0.063,1.148-0.107,1.529c-0.041,0.32-0.166,0.957-0.236,1.271 c-0.059,0.26-0.246,1.034-0.246,1.034s-0.34,1.345-0.473,1.784c-0.445,1.469-1.438,4.358-1.986,5.789 c-0.467,1.211-1.463,3.608-1.982,4.797c-0.283,0.647-1.174,2.571-1.174,2.571"/>
  3435. <path fill="#DFDFDD" d="M309.466,333.735l13.239,14.69c0,0-0.976-0.61-1.28-0.844c-0.266-0.189-0.754-0.607-0.996-0.824 c-0.199-0.174-0.787-0.717-0.787-0.717s-1.008-0.955-1.324-1.287c-1.063-1.102-3.107-3.379-4.09-4.559 c-0.828-0.994-2.438-3.031-3.219-4.066c-0.428-0.563-1.674-2.277-1.674-2.277"/>
  3436. <path fill="#DFDFDD" d="M308.862,331.594l-19.768,0.619c0,0,1.094-0.352,1.473-0.436c0.313-0.074,0.951-0.186,1.271-0.229 c0.266-0.037,1.057-0.136,1.057-0.136s1.377-0.155,1.838-0.186c1.527-0.101,4.588-0.188,6.121-0.181 c1.295,0.017,3.891,0.104,5.186,0.174c0.704,0.045,2.818,0.195,2.818,0.195"/>
  3437. </g>
  3438. <animateTransform restart="always" from="0 310 332.377" dur="4s" to="359 310 332.377" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  3439. </animateTransform>
  3440. </g>
  3441. <g>
  3442. <path fill="#63A5BA" d="M307.321,332.375c-0.01,1.434,1.199,2.604,2.695,2.609c1.496,0.004,2.713-1.158,2.721-2.59 c0.006-1.439-1.203-2.604-2.703-2.613C308.537,329.781,307.323,330.937,307.321,332.375"/>
  3443. </g>
  3444. <g>
  3445. <path fill="#B6D6DE" d="M308.3,332.377c-0.002,0.896,0.769,1.621,1.719,1.627c0.953,0.002,1.734-0.719,1.736-1.613 c0.004-0.895-0.77-1.618-1.723-1.625C309.078,330.766,308.304,331.487,308.3,332.377"/>
  3446. </g>
  3447. </g>
  3448. </g>
  3449. <g id="_x23_39">
  3450. <g>
  3451. <path fill="#DFDFDD" d="M259.722,332.381l-1.379,28.777c0,0,1.094,0.43,2.063,0.434c0.998,0.002,2.147-0.422,2.147-0.422 l-1.142-28.783L259.722,332.381L259.722,332.381z"/>
  3452. </g>
  3453. <g>
  3454. <g transform="rotate(91.5214 260 332.377)">
  3455. <g>
  3456. <path fill="#3E4484" d="M259.419,331.329l2.202,0.854c0,0,5.845-12.161,6.271-18.756 C263.578,318.647,259.419,331.329,259.419,331.329"/>
  3457. <path fill="#3E4484" d="M261.511,332.18l-1.813,1.511c0,0,7.771,11.024,13.321,14.618 C270.559,341.992,261.511,332.18,261.511,332.18"/>
  3458. <path fill="#3E4484" d="M259.597,333.76l0.021-2.36c0,0-13.438-1.195-19.768,0.729 C246.259,334.329,259.597,333.76,259.597,333.76"/>
  3459. </g>
  3460. <g>
  3461. <path fill="#DFDFDD" d="M261.516,331.899l6.377-18.722c0,0-0.061,1.148-0.11,1.529c-0.039,0.32-0.164,0.957-0.233,1.271 c-0.06,0.26-0.246,1.034-0.246,1.034s-0.34,1.345-0.474,1.784c-0.444,1.469-1.438,4.358-1.987,5.789 c-0.465,1.211-1.463,3.608-1.984,4.797c-0.279,0.647-1.17,2.571-1.17,2.571"/>
  3462. <path fill="#DFDFDD" d="M259.994,333.735l13.237,14.69c0,0-0.976-0.61-1.28-0.844c-0.263-0.189-0.754-0.607-0.996-0.824 c-0.196-0.174-0.784-0.717-0.784-0.717s-1.009-0.955-1.324-1.287c-1.064-1.102-3.11-3.379-4.09-4.559 c-0.828-0.994-2.438-3.031-3.22-4.066c-0.429-0.563-1.674-2.277-1.674-2.277"/>
  3463. <path fill="#DFDFDD" d="M259.391,331.594l-19.768,0.619c0,0,1.096-0.352,1.471-0.436c0.312-0.074,0.951-0.186,1.273-0.229 c0.264-0.037,1.053-0.136,1.053-0.136s1.377-0.155,1.84-0.186c1.525-0.101,4.586-0.188,6.121-0.181 c1.295,0.017,3.887,0.104,5.182,0.174c0.709,0.045,2.82,0.195,2.82,0.195"/>
  3464. </g>
  3465. <animateTransform restart="always" from="0 260 332.377" dur="4s" to="359 260 332.377" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  3466. </animateTransform>
  3467. </g>
  3468. <g>
  3469. <path fill="#63A5BA" d="M257.848,332.375c-0.008,1.434,1.201,2.604,2.695,2.609c1.5,0.004,2.717-1.158,2.723-2.59 c0.004-1.439-1.205-2.604-2.703-2.613C259.067,329.781,257.854,330.937,257.848,332.375"/>
  3470. </g>
  3471. <g>
  3472. <path fill="#B6D6DE" d="M258.826,332.377c-0.002,0.896,0.771,1.621,1.722,1.627c0.953,0.002,1.735-0.719,1.735-1.613 c0.002-0.895-0.771-1.618-1.724-1.625C259.608,330.766,258.83,331.487,258.826,332.377"/>
  3473. </g>
  3474. </g>
  3475. </g>
  3476. <g id="_x23_38">
  3477. <g>
  3478. <path fill="#DFDFDD" d="M210.198,332.381l-1.377,28.777c0,0,1.094,0.43,2.062,0.434c0.996,0.002,2.147-0.422,2.147-0.422 l-1.14-28.783L210.198,332.381L210.198,332.381z"/>
  3479. </g>
  3480. <g>
  3481. <g transform="rotate(91.5214 211 332.377)">
  3482. <g>
  3483. <path fill="#3E4484" d="M209.897,331.329l2.203,0.854c0,0,5.845-12.161,6.271-18.756 C214.056,318.647,209.897,331.329,209.897,331.329"/>
  3484. <path fill="#3E4484" d="M211.988,332.18l-1.813,1.511c0,0,7.769,11.024,13.32,14.618 C221.037,341.992,211.988,332.18,211.988,332.18"/>
  3485. <path fill="#3E4484" d="M210.073,333.76l0.021-2.36c0,0-13.44-1.195-19.766,0.729 C196.738,334.329,210.073,333.76,210.073,333.76"/>
  3486. </g>
  3487. <g>
  3488. <path fill="#DFDFDD" d="M211.992,331.899l6.377-18.722c0,0-0.063,1.148-0.108,1.529c-0.041,0.32-0.166,0.957-0.236,1.271 c-0.06,0.26-0.245,1.034-0.245,1.034s-0.341,1.345-0.472,1.784c-0.446,1.469-1.438,4.358-1.987,5.789 c-0.468,1.211-1.464,3.608-1.983,4.797c-0.283,0.647-1.172,2.571-1.172,2.571"/>
  3489. <path fill="#DFDFDD" d="M210.472,333.735l13.24,14.69c0,0-0.976-0.61-1.281-0.844c-0.262-0.189-0.754-0.607-0.996-0.824 c-0.198-0.174-0.787-0.717-0.787-0.717s-1.008-0.955-1.32-1.287c-1.066-1.102-3.111-3.379-4.094-4.559 c-0.826-0.994-2.438-3.031-3.219-4.066c-0.428-0.563-1.674-2.277-1.674-2.277"/>
  3490. <path fill="#DFDFDD" d="M209.867,331.594l-19.769,0.619c0,0,1.094-0.352,1.474-0.436c0.313-0.074,0.95-0.186,1.271-0.229 c0.266-0.037,1.057-0.136,1.057-0.136s1.378-0.155,1.84-0.186c1.525-0.101,4.588-0.188,6.119-0.181 c1.296,0.017,3.891,0.104,5.186,0.174c0.707,0.045,2.82,0.195,2.82,0.195"/>
  3491. </g>
  3492. <animateTransform restart="always" from="0 211 332.377" dur="4s" to="359 211 332.377" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  3493. </animateTransform>
  3494. </g>
  3495. <g>
  3496. <path fill="#63A5BA" d="M208.326,332.375c-0.011,1.434,1.198,2.604,2.694,2.609c1.496,0.004,2.716-1.158,2.722-2.59 c0.007-1.439-1.202-2.604-2.702-2.613C209.544,329.781,208.328,330.937,208.326,332.375"/>
  3497. </g>
  3498. <g>
  3499. <path fill="#B6D6DE" d="M209.306,332.377c-0.002,0.896,0.77,1.621,1.722,1.627c0.95,0.002,1.73-0.719,1.733-1.613 c0.004-0.895-0.769-1.618-1.721-1.625C210.085,330.766,209.309,331.487,209.306,332.377"/>
  3500. </g>
  3501. </g>
  3502. </g>
  3503. <g id="_x23_37">
  3504. <g>
  3505. <path fill="#DFDFDD" d="M161.673,332.381l-1.379,28.777c0,0,1.094,0.43,2.061,0.434c0.998,0.002,2.148-0.422,2.148-0.422 l-1.14-28.783L161.673,332.381L161.673,332.381z"/>
  3506. </g>
  3507. <g>
  3508. <g transform="rotate(91.5214 162 332.377)">
  3509. <g>
  3510. <path fill="#3E4484" d="M161.369,331.329l2.203,0.854c0,0,5.842-12.161,6.271-18.756 C165.529,318.647,161.369,331.329,161.369,331.329"/>
  3511. <path fill="#3E4484" d="M163.462,332.18l-1.816,1.511c0,0,7.771,11.024,13.322,14.618 C172.511,341.992,163.462,332.18,163.462,332.18"/>
  3512. <path fill="#3E4484" d="M161.546,333.76l0.021-2.36c0,0-13.438-1.195-19.766,0.729 C148.21,334.329,161.546,333.76,161.546,333.76"/>
  3513. </g>
  3514. <g>
  3515. <path fill="#DFDFDD" d="M163.468,331.899l6.377-18.722c0,0-0.063,1.148-0.111,1.529c-0.04,0.32-0.165,0.957-0.234,1.271 c-0.061,0.26-0.246,1.034-0.246,1.034s-0.34,1.345-0.474,1.784c-0.442,1.469-1.438,4.358-1.987,5.789 c-0.467,1.211-1.461,3.608-1.982,4.797c-0.282,0.647-1.17,2.571-1.17,2.571"/>
  3516. <path fill="#DFDFDD" d="M161.947,333.735l13.237,14.69c0,0-0.975-0.61-1.283-0.844c-0.262-0.189-0.754-0.607-0.993-0.824 c-0.196-0.174-0.785-0.717-0.785-0.717s-1.01-0.955-1.323-1.287c-1.066-1.102-3.113-3.379-4.092-4.559 c-0.828-0.994-2.438-3.031-3.22-4.066c-0.427-0.563-1.675-2.277-1.675-2.277"/>
  3517. <path fill="#DFDFDD" d="M161.341,331.594l-19.769,0.619c0,0,1.097-0.352,1.474-0.436c0.311-0.074,0.948-0.186,1.271-0.229 c0.268-0.037,1.056-0.136,1.056-0.136s1.378-0.155,1.839-0.186c1.524-0.101,4.588-0.188,6.123-0.181 c1.293,0.017,3.885,0.104,5.182,0.174c0.707,0.045,2.818,0.195,2.818,0.195"/>
  3518. </g>
  3519. <animateTransform restart="always" from="0 162 332.377" dur="4s" to="359 162 332.377" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  3520. </animateTransform>
  3521. </g>
  3522. <g>
  3523. <path fill="#63A5BA" d="M159.8,332.375c-0.008,1.434,1.201,2.604,2.694,2.609c1.498,0.004,2.716-1.158,2.722-2.59 c0.006-1.439-1.203-2.604-2.703-2.613C161.016,329.781,159.804,330.937,159.8,332.375"/>
  3524. </g>
  3525. <g>
  3526. <path fill="#B6D6DE" d="M160.776,332.377c-0.002,0.896,0.771,1.621,1.722,1.627c0.953,0.002,1.735-0.719,1.735-1.613 c0.005-0.895-0.77-1.618-1.721-1.625C161.557,330.766,160.781,331.487,160.776,332.377"/>
  3527. </g>
  3528. </g>
  3529. </g>
  3530. <g id="_x23_43">
  3531. <g>
  3532. <path fill="#DFDFDD" d="M456.853,332.381l-1.377,28.779c0,0,1.094,0.428,2.063,0.432c0.994,0.002,2.146-0.422,2.146-0.422 l-1.14-28.783L456.853,332.381L456.853,332.381z"/>
  3533. </g>
  3534. <g>
  3535. <g transform="rotate(91.5214 457 332.379)">
  3536. <g>
  3537. <path fill="#3E4484" d="M456.552,331.331l2.203,0.852c0,0,5.844-12.159,6.271-18.756 C460.71,318.649,456.552,331.331,456.552,331.331"/>
  3538. <path fill="#3E4484" d="M458.642,332.18l-1.813,1.513c0,0,7.769,11.024,13.318,14.616 C467.692,341.993,458.642,332.18,458.642,332.18"/>
  3539. <path fill="#3E4484" d="M456.728,333.76l0.021-2.36c0,0-13.438-1.195-19.768,0.729 C443.392,334.329,456.728,333.76,456.728,333.76"/>
  3540. </g>
  3541. <g>
  3542. <path fill="#DFDFDD" d="M458.647,331.901l6.377-18.724c0,0-0.062,1.15-0.108,1.529c-0.038,0.322-0.166,0.957-0.234,1.273 c-0.059,0.26-0.246,1.031-0.246,1.031s-0.341,1.346-0.474,1.785c-0.444,1.471-1.438,4.36-1.985,5.789 c-0.468,1.211-1.464,3.608-1.984,4.797c-0.281,0.647-1.172,2.571-1.172,2.571"/>
  3543. <path fill="#DFDFDD" d="M457.126,333.735l13.238,14.69c0,0-0.976-0.61-1.279-0.842c-0.266-0.188-0.755-0.606-0.996-0.826 c-0.199-0.174-0.787-0.715-0.787-0.715s-1.006-0.955-1.321-1.287c-1.064-1.104-3.109-3.379-4.093-4.559 c-0.828-0.996-2.438-3.031-3.219-4.068c-0.43-0.563-1.675-2.274-1.675-2.274"/>
  3544. <path fill="#DFDFDD" d="M456.522,331.596l-19.769,0.617c0,0,1.095-0.35,1.474-0.436c0.313-0.074,0.95-0.184,1.271-0.229 c0.266-0.039,1.057-0.138,1.057-0.138s1.378-0.153,1.839-0.186c1.526-0.099,4.588-0.188,6.123-0.179 c1.293,0.015,3.887,0.104,5.183,0.176c0.707,0.04,2.819,0.191,2.819,0.191"/>
  3545. </g>
  3546. <animateTransform restart="always" from="0 457 332.379" dur="4s" to="359 457 332.379" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  3547. </animateTransform>
  3548. </g>
  3549. <g>
  3550. <path fill="#63A5BA" d="M454.981,332.375c-0.008,1.434,1.199,2.605,2.694,2.609c1.496,0.004,2.714-1.156,2.722-2.588 c0.006-1.441-1.203-2.605-2.703-2.613C456.198,329.781,454.983,330.937,454.981,332.375"/>
  3551. </g>
  3552. <g>
  3553. <path fill="#B6D6DE" d="M455.96,332.379c-0.002,0.896,0.769,1.619,1.721,1.625c0.951,0.004,1.732-0.719,1.734-1.611 c0.004-0.895-0.77-1.62-1.723-1.629C456.739,330.766,455.964,331.489,455.96,332.379"/>
  3554. </g>
  3555. </g>
  3556. </g>
  3557. <g id="_x23_44">
  3558. <g>
  3559. <path fill="#DFDFDD" d="M509.371,332.381l-1.381,28.779c0,0,1.096,0.428,2.063,0.432c0.996,0.002,2.146-0.422,2.146-0.422 l-1.14-28.783L509.371,332.381L509.371,332.381z"/>
  3560. </g>
  3561. <g>
  3562. <g transform="rotate(91.5214 510 332.379)">
  3563. <g>
  3564. <path fill="#3E4484" d="M509.067,331.331l2.205,0.852c0,0,5.842-12.159,6.271-18.756 C513.228,318.649,509.067,331.331,509.067,331.331"/>
  3565. <path fill="#3E4484" d="M511.158,332.18l-1.813,1.513c0,0,7.771,11.024,13.322,14.616 C520.211,341.993,511.158,332.18,511.158,332.18"/>
  3566. <path fill="#3E4484" d="M509.246,333.76l0.021-2.36c0,0-13.438-1.195-19.767,0.729 C495.906,334.329,509.246,333.76,509.246,333.76"/>
  3567. </g>
  3568. <g>
  3569. <path fill="#DFDFDD" d="M511.166,331.901l6.377-18.724c0,0-0.063,1.15-0.11,1.529c-0.041,0.322-0.164,0.957-0.234,1.273 c-0.06,0.26-0.245,1.031-0.245,1.031s-0.341,1.346-0.474,1.785c-0.444,1.471-1.438,4.36-1.987,5.789 c-0.468,1.211-1.462,3.608-1.983,4.797c-0.28,0.647-1.171,2.571-1.171,2.571"/>
  3570. <path fill="#DFDFDD" d="M509.644,333.735l13.237,14.69c0,0-0.975-0.61-1.28-0.842c-0.263-0.188-0.755-0.606-0.996-0.826 c-0.197-0.174-0.785-0.715-0.785-0.715s-1.008-0.955-1.322-1.287c-1.065-1.104-3.108-3.379-4.092-4.559 c-0.826-0.996-2.438-3.031-3.219-4.068c-0.429-0.563-1.674-2.274-1.674-2.274"/>
  3571. <path fill="#DFDFDD" d="M509.041,331.596l-19.77,0.617c0,0,1.094-0.35,1.475-0.436c0.312-0.074,0.947-0.184,1.271-0.229 c0.266-0.039,1.055-0.138,1.055-0.138s1.379-0.153,1.838-0.186c1.527-0.099,4.59-0.188,6.123-0.179 c1.296,0.015,3.889,0.104,5.186,0.176c0.705,0.04,2.816,0.191,2.816,0.191"/>
  3572. </g>
  3573. <animateTransform restart="always" from="0 510 332.379" dur="4s" to="359 510 332.379" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  3574. </animateTransform>
  3575. </g>
  3576. <g>
  3577. <path fill="#63A5BA" d="M507.498,332.375c-0.01,1.434,1.199,2.605,2.695,2.609s2.713-1.156,2.723-2.588 c0.006-1.441-1.205-2.605-2.703-2.613C508.717,329.781,507.502,330.937,507.498,332.375"/>
  3578. </g>
  3579. <g>
  3580. <path fill="#B6D6DE" d="M508.476,332.379c-0.005,0.896,0.771,1.619,1.721,1.625c0.953,0.004,1.734-0.719,1.734-1.611 c0.004-0.895-0.771-1.62-1.722-1.629C509.258,330.766,508.478,331.489,508.476,332.379"/>
  3581. </g>
  3582. </g>
  3583. </g>
  3584. <g id="_x23_34">
  3585. <g>
  3586. <path fill="#DFDFDD" d="M24.7,201.586l-1.377,28.777c0,0,1.094,0.43,2.063,0.434c0.995,0.002,2.146-0.422,2.146-0.422 l-1.139-28.783L24.7,201.586L24.7,201.586z"/>
  3587. </g>
  3588. <g>
  3589. <g transform="rotate(91.5214 25 201.582)">
  3590. <g>
  3591. <path fill="#3E4484" d="M24.399,200.534l2.203,0.854c0,0,5.844-12.161,6.27-18.758 C28.557,187.854,24.399,200.534,24.399,200.534"/>
  3592. <path fill="#3E4484" d="M26.489,201.385l-1.813,1.513c0,0,7.769,11.022,13.319,14.616 C35.54,211.197,26.489,201.385,26.489,201.385"/>
  3593. <path fill="#3E4484" d="M24.575,202.965l0.021-2.36c0,0-13.44-1.197-19.767,0.728 C11.239,203.534,24.575,202.965,24.575,202.965"/>
  3594. </g>
  3595. <g>
  3596. <path fill="#DFDFDD" d="M26.495,201.104l6.377-18.722c0,0-0.063,1.148-0.108,1.529c-0.041,0.32-0.166,0.957-0.235,1.271 c-0.06,0.26-0.246,1.034-0.246,1.034s-0.34,1.343-0.472,1.784c-0.446,1.469-1.438,4.358-1.987,5.789 c-0.467,1.211-1.463,3.608-1.984,4.797c-0.282,0.646-1.172,2.569-1.172,2.569"/>
  3597. <path fill="#DFDFDD" d="M24.973,202.94l13.239,14.69c0,0-0.975-0.61-1.28-0.844c-0.263-0.189-0.754-0.607-0.996-0.824 c-0.198-0.174-0.786-0.717-0.786-0.717s-1.009-0.953-1.322-1.287c-1.065-1.102-3.111-3.379-4.092-4.557 c-0.828-0.996-2.438-3.033-3.22-4.07c-0.429-0.563-1.675-2.275-1.675-2.275"/>
  3598. <path fill="#DFDFDD" d="M24.37,200.799l-19.768,0.619c0,0,1.094-0.352,1.473-0.438c0.313-0.072,0.951-0.184,1.271-0.229 c0.267-0.037,1.058-0.136,1.058-0.136s1.377-0.155,1.838-0.186c1.526-0.101,4.59-0.188,6.121-0.181 c1.295,0.017,3.889,0.104,5.184,0.175c0.705,0.044,2.82,0.194,2.82,0.194"/>
  3599. </g>
  3600. <animateTransform restart="always" from="0 25 201.582" dur="4s" to="359 25 201.582" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  3601. </animateTransform>
  3602. </g>
  3603. <g>
  3604. <path fill="#63A5BA" d="M22.829,201.58c-0.01,1.434,1.199,2.604,2.695,2.609c1.496,0.004,2.715-1.158,2.721-2.59 c0.006-1.439-1.203-2.604-2.703-2.613C24.046,198.986,22.831,200.142,22.829,201.58"/>
  3605. </g>
  3606. <g>
  3607. <path fill="#B6D6DE" d="M23.807,201.582c-0.002,0.896,0.769,1.621,1.722,1.627c0.95,0.002,1.733-0.719,1.733-1.613 c0.004-0.895-0.769-1.618-1.722-1.625C24.587,199.971,23.811,200.692,23.807,201.582"/>
  3608. </g>
  3609. </g>
  3610. </g>
  3611. <g id="_x23_35">
  3612. <g>
  3613. <path fill="#DFDFDD" d="M66.923,201.586l-1.379,28.777c0,0,1.095,0.43,2.063,0.434c0.996,0.002,2.147-0.422,2.147-0.422 l-1.139-28.783L66.923,201.586L66.923,201.586z"/>
  3614. </g>
  3615. <g>
  3616. <g transform="rotate(91.5214 68 201.582)">
  3617. <g>
  3618. <path fill="#3E4484" d="M66.622,200.534l2.203,0.854c0,0,5.844-12.161,6.269-18.758 C70.778,187.854,66.622,200.534,66.622,200.534"/>
  3619. <path fill="#3E4484" d="M68.712,201.385l-1.813,1.513c0,0,7.766,11.022,13.316,14.616 C77.763,211.197,68.712,201.385,68.712,201.385"/>
  3620. <path fill="#3E4484" d="M66.798,202.965l0.021-2.36c0,0-13.441-1.197-19.767,0.728 C53.462,203.534,66.798,202.965,66.798,202.965"/>
  3621. </g>
  3622. <g>
  3623. <path fill="#DFDFDD" d="M68.719,201.104l6.377-18.722c0,0-0.063,1.148-0.11,1.529c-0.039,0.32-0.166,0.957-0.236,1.271 c-0.057,0.26-0.244,1.034-0.244,1.034s-0.34,1.343-0.471,1.784c-0.447,1.469-1.44,4.358-1.99,5.789 c-0.465,1.211-1.461,3.608-1.982,4.797c-0.283,0.646-1.171,2.569-1.171,2.569"/>
  3624. <path fill="#DFDFDD" d="M67.196,202.94l13.24,14.69c0,0-0.977-0.61-1.283-0.844c-0.263-0.189-0.752-0.607-0.996-0.824 c-0.197-0.174-0.785-0.717-0.785-0.717s-1.008-0.953-1.326-1.287c-1.063-1.102-3.108-3.379-4.088-4.557 c-0.828-0.996-2.436-3.033-3.221-4.07c-0.426-0.563-1.674-2.275-1.674-2.275"/>
  3625. <path fill="#DFDFDD" d="M66.594,200.799l-19.771,0.619c0,0,1.096-0.352,1.475-0.438c0.313-0.072,0.949-0.184,1.271-0.229 c0.266-0.037,1.057-0.136,1.057-0.136s1.377-0.155,1.836-0.186c1.527-0.101,4.588-0.188,6.123-0.181 c1.297,0.017,3.89,0.104,5.186,0.175c0.705,0.044,2.818,0.194,2.818,0.194"/>
  3626. </g>
  3627. <animateTransform restart="always" from="0 68 201.582" dur="4s" to="359 68 201.582" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  3628. </animateTransform>
  3629. </g>
  3630. <g>
  3631. <path fill="#63A5BA" d="M65.048,201.58c-0.006,1.434,1.203,2.604,2.697,2.609c1.5,0.004,2.717-1.158,2.724-2.59 c0.006-1.439-1.203-2.604-2.703-2.613C66.268,198.986,65.054,200.142,65.048,201.58"/>
  3632. </g>
  3633. <g>
  3634. <path fill="#B6D6DE" d="M66.03,201.582c-0.002,0.896,0.768,1.621,1.721,1.627c0.951,0.002,1.732-0.719,1.734-1.613 c0.004-0.895-0.771-1.618-1.724-1.625C66.811,199.971,66.034,200.692,66.03,201.582"/>
  3635. </g>
  3636. </g>
  3637. </g>
  3638. <g id="_x23_36">
  3639. <g>
  3640. <path fill="#DFDFDD" d="M117.418,201.586l-1.379,28.777c0,0,1.097,0.43,2.063,0.434c0.995,0.002,2.146-0.422,2.146-0.422 l-1.139-28.783L117.418,201.586L117.418,201.586z"/>
  3641. </g>
  3642. <g>
  3643. <g transform="rotate(91.5214 118 201.582)">
  3644. <g>
  3645. <path fill="#3E4484" d="M117.116,200.534l2.205,0.854c0,0,5.842-12.161,6.268-18.758 C121.276,187.854,117.116,200.534,117.116,200.534"/>
  3646. <path fill="#3E4484" d="M119.207,201.385l-1.813,1.513c0,0,7.77,11.022,13.32,14.616 C128.256,211.197,119.207,201.385,119.207,201.385"/>
  3647. <path fill="#3E4484" d="M117.293,202.965l0.021-2.36c0,0-13.44-1.197-19.768,0.728 C103.956,203.534,117.293,202.965,117.293,202.965"/>
  3648. </g>
  3649. <g>
  3650. <path fill="#DFDFDD" d="M119.213,201.104l6.377-18.722c0,0-0.063,1.148-0.107,1.529c-0.041,0.32-0.166,0.957-0.238,1.271 c-0.057,0.26-0.244,1.034-0.244,1.034s-0.34,1.343-0.473,1.784c-0.445,1.469-1.439,4.358-1.988,5.789 c-0.465,1.211-1.461,3.608-1.983,4.797c-0.283,0.646-1.17,2.569-1.17,2.569"/>
  3651. <path fill="#DFDFDD" d="M117.692,202.94l13.24,14.69c0,0-0.979-0.61-1.283-0.844c-0.263-0.189-0.752-0.607-0.996-0.824 c-0.197-0.174-0.785-0.717-0.785-0.717s-1.008-0.953-1.324-1.287c-1.064-1.102-3.11-3.379-4.092-4.557 c-0.828-0.996-2.436-3.033-3.219-4.07c-0.426-0.563-1.674-2.275-1.674-2.275"/>
  3652. <path fill="#DFDFDD" d="M117.088,200.799l-19.767,0.619c0,0,1.094-0.352,1.471-0.438c0.313-0.072,0.953-0.184,1.271-0.229 c0.266-0.037,1.057-0.136,1.057-0.136s1.374-0.155,1.835-0.186c1.527-0.101,4.588-0.188,6.123-0.181 c1.295,0.017,3.889,0.104,5.185,0.175c0.704,0.044,2.819,0.194,2.819,0.194"/>
  3653. </g>
  3654. <animateTransform restart="always" from="0 118 201.582" dur="4s" to="359 118 201.582" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  3655. </animateTransform>
  3656. </g>
  3657. <g>
  3658. <path fill="#63A5BA" d="M115.545,201.58c-0.008,1.434,1.201,2.604,2.695,2.609c1.498,0.004,2.715-1.158,2.721-2.59 c0.006-1.439-1.203-2.604-2.7-2.613C116.764,198.986,115.549,200.142,115.545,201.58"/>
  3659. </g>
  3660. <g>
  3661. <path fill="#B6D6DE" d="M116.524,201.582c-0.002,0.896,0.77,1.621,1.721,1.627c0.953,0.002,1.734-0.719,1.736-1.613 c0.004-0.895-0.771-1.618-1.725-1.625C117.305,199.971,116.528,200.692,116.524,201.582"/>
  3662. </g>
  3663. </g>
  3664. </g>
  3665. <g id="_x23_42">
  3666. <g>
  3667. <path fill="#DFDFDD" d="M403.267,201.586l-1.38,28.777c0,0,1.098,0.43,2.063,0.434c0.998,0.002,2.149-0.422,2.149-0.422 l-1.14-28.783L403.267,201.586L403.267,201.586z"/>
  3668. </g>
  3669. <g>
  3670. <g transform="rotate(91.5214 404 201.582)">
  3671. <g>
  3672. <path fill="#3E4484" d="M402.965,200.534l2.205,0.854c0,0,5.842-12.161,6.27-18.756 C407.125,187.853,402.965,200.534,402.965,200.534"/>
  3673. <path fill="#3E4484" d="M405.056,201.385l-1.813,1.511c0,0,7.768,11.024,13.32,14.618 C414.106,211.197,405.056,201.385,405.056,201.385"/>
  3674. <path fill="#3E4484" d="M403.142,202.965l0.021-2.36c0,0-13.439-1.195-19.766,0.729 C389.804,203.534,403.142,202.965,403.142,202.965"/>
  3675. </g>
  3676. <g>
  3677. <path fill="#DFDFDD" d="M405.063,201.104l6.377-18.722c0,0-0.063,1.148-0.109,1.529c-0.041,0.32-0.166,0.957-0.238,1.271 c-0.057,0.26-0.246,1.034-0.246,1.034s-0.338,1.345-0.471,1.784c-0.445,1.469-1.438,4.358-1.988,5.789 c-0.465,1.211-1.461,3.608-1.982,4.797c-0.283,0.647-1.17,2.571-1.17,2.571"/>
  3678. <path fill="#DFDFDD" d="M403.541,202.94l13.24,14.69c0,0-0.979-0.61-1.283-0.844c-0.262-0.189-0.754-0.607-0.996-0.824 c-0.197-0.174-0.785-0.717-0.785-0.717s-1.008-0.955-1.323-1.287c-1.065-1.102-3.11-3.379-4.093-4.559 c-0.828-0.994-2.437-3.031-3.219-4.066c-0.426-0.563-1.674-2.277-1.674-2.277"/>
  3679. <path fill="#DFDFDD" d="M402.938,200.799l-19.771,0.619c0,0,1.097-0.352,1.474-0.436c0.313-0.074,0.952-0.186,1.271-0.229 c0.266-0.037,1.057-0.136,1.057-0.136s1.375-0.155,1.837-0.186c1.526-0.101,4.591-0.188,6.122-0.181 c1.296,0.017,3.889,0.104,5.186,0.174c0.705,0.045,2.818,0.195,2.818,0.195"/>
  3680. </g>
  3681. <animateTransform restart="always" from="0 404 201.582" dur="4s" to="359 404 201.582" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  3682. </animateTransform>
  3683. </g>
  3684. <g>
  3685. <path fill="#63A5BA" d="M401.395,201.58c-0.01,1.434,1.199,2.604,2.693,2.609c1.498,0.004,2.715-1.158,2.721-2.59 c0.008-1.439-1.199-2.604-2.699-2.613C402.614,198.986,401.399,200.142,401.395,201.58"/>
  3686. </g>
  3687. <g>
  3688. <path fill="#B6D6DE" d="M402.373,201.582c-0.002,0.896,0.771,1.621,1.721,1.627c0.951,0.002,1.734-0.719,1.736-1.613 c0.004-0.895-0.771-1.618-1.724-1.625C403.155,199.971,402.377,200.692,402.373,201.582"/>
  3689. </g>
  3690. </g>
  3691. </g>
  3692. <g id="_x23_41">
  3693. <g>
  3694. <path fill="#DFDFDD" d="M355.991,201.586l-1.377,28.777c0,0,1.094,0.43,2.062,0.434c0.998,0.002,2.147-0.422,2.147-0.422 l-1.14-28.783L355.991,201.586L355.991,201.586z"/>
  3695. </g>
  3696. <g>
  3697. <g transform="rotate(91.5214 357 201.582)">
  3698. <g>
  3699. <path fill="#3E4484" d="M355.69,200.534l2.202,0.854c0,0,5.843-12.161,6.271-18.756 C359.849,187.853,355.69,200.534,355.69,200.534"/>
  3700. <path fill="#3E4484" d="M357.782,201.385l-1.815,1.511c0,0,7.771,11.024,13.324,14.618 C366.831,211.197,357.782,201.385,357.782,201.385"/>
  3701. <path fill="#3E4484" d="M355.866,202.965l0.021-2.36c0,0-13.438-1.195-19.766,0.729 C342.53,203.534,355.866,202.965,355.866,202.965"/>
  3702. </g>
  3703. <g>
  3704. <path fill="#DFDFDD" d="M357.788,201.104l6.377-18.722c0,0-0.063,1.148-0.111,1.529c-0.041,0.32-0.164,0.957-0.234,1.271 c-0.061,0.26-0.246,1.034-0.246,1.034s-0.338,1.345-0.473,1.784c-0.445,1.469-1.438,4.358-1.988,5.789 c-0.466,1.211-1.461,3.608-1.981,4.797c-0.281,0.647-1.172,2.571-1.172,2.571"/>
  3705. <path fill="#DFDFDD" d="M356.265,202.94l13.237,14.69c0,0-0.975-0.61-1.281-0.844c-0.262-0.189-0.756-0.607-0.995-0.824 c-0.196-0.174-0.784-0.717-0.784-0.717s-1.011-0.955-1.324-1.287c-1.066-1.102-3.111-3.379-4.092-4.559 c-0.828-0.994-2.438-3.031-3.22-4.066c-0.429-0.563-1.675-2.277-1.675-2.277"/>
  3706. <path fill="#DFDFDD" d="M355.661,200.799l-19.766,0.619c0,0,1.094-0.352,1.471-0.436c0.312-0.074,0.949-0.186,1.271-0.229 c0.268-0.037,1.057-0.136,1.057-0.136s1.377-0.155,1.838-0.186c1.526-0.101,4.588-0.188,6.123-0.181 c1.295,0.017,3.885,0.104,5.182,0.174c0.707,0.045,2.818,0.195,2.818,0.195"/>
  3707. </g>
  3708. <animateTransform restart="always" from="0 357 201.582" dur="4s" to="359 357 201.582" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  3709. </animateTransform>
  3710. </g>
  3711. <g>
  3712. <path fill="#63A5BA" d="M354.12,201.58c-0.008,1.434,1.199,2.604,2.695,2.609c1.498,0.004,2.715-1.158,2.721-2.59 c0.006-1.439-1.203-2.604-2.701-2.613C355.336,198.986,354.123,200.142,354.12,201.58"/>
  3713. </g>
  3714. <g>
  3715. <path fill="#B6D6DE" d="M355.095,201.582c-0.002,0.896,0.771,1.621,1.725,1.627c0.951,0.002,1.732-0.719,1.732-1.613 c0.005-0.895-0.771-1.618-1.721-1.625C355.879,199.971,355.099,200.692,355.095,201.582"/>
  3716. </g>
  3717. </g>
  3718. </g>
  3719. <g id="_x23_40">
  3720. <g>
  3721. <path fill="#DFDFDD" d="M310.425,201.586l-1.377,28.777c0,0,1.094,0.43,2.063,0.434c0.995,0.002,2.146-0.422,2.146-0.422 l-1.139-28.783L310.425,201.586L310.425,201.586z"/>
  3722. </g>
  3723. <g>
  3724. <g transform="rotate(91.5214 311 201.582)">
  3725. <g>
  3726. <path fill="#3E4484" d="M310.124,200.534l2.203,0.854c0,0,5.844-12.161,6.27-18.756 C314.283,187.853,310.124,200.534,310.124,200.534"/>
  3727. <path fill="#3E4484" d="M312.214,201.385l-1.813,1.511c0,0,7.766,11.024,13.318,14.618 C321.264,211.197,312.214,201.385,312.214,201.385"/>
  3728. <path fill="#3E4484" d="M310.3,202.965l0.021-2.36c0,0-13.441-1.195-19.767,0.729C296.964,203.534,310.3,202.965,310.3,202.965 "/>
  3729. </g>
  3730. <g>
  3731. <path fill="#DFDFDD" d="M312.219,201.104l6.377-18.722c0,0-0.063,1.148-0.107,1.529c-0.041,0.32-0.166,0.957-0.236,1.271 c-0.059,0.26-0.246,1.034-0.246,1.034s-0.34,1.345-0.473,1.784c-0.445,1.469-1.438,4.358-1.986,5.789 c-0.467,1.211-1.463,3.608-1.982,4.797c-0.283,0.647-1.174,2.571-1.174,2.571"/>
  3732. <path fill="#DFDFDD" d="M310.699,202.94l13.239,14.69c0,0-0.976-0.61-1.28-0.844c-0.266-0.189-0.754-0.607-0.996-0.824 c-0.199-0.174-0.787-0.717-0.787-0.717s-1.008-0.955-1.324-1.287c-1.063-1.102-3.107-3.379-4.09-4.559 c-0.828-0.994-2.438-3.031-3.219-4.066c-0.428-0.563-1.674-2.277-1.674-2.277"/>
  3733. <path fill="#DFDFDD" d="M310.094,200.799l-19.768,0.619c0,0,1.094-0.352,1.473-0.436c0.313-0.074,0.951-0.186,1.271-0.229 c0.266-0.037,1.057-0.136,1.057-0.136s1.377-0.155,1.838-0.186c1.527-0.101,4.588-0.188,6.121-0.181 c1.295,0.017,3.891,0.104,5.186,0.174c0.704,0.045,2.818,0.195,2.818,0.195"/>
  3734. </g>
  3735. <animateTransform restart="always" from="0 311 201.582" dur="4s" to="359 311 201.582" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  3736. </animateTransform>
  3737. </g>
  3738. <g>
  3739. <path fill="#63A5BA" d="M308.553,201.58c-0.01,1.434,1.199,2.604,2.695,2.609c1.496,0.004,2.713-1.158,2.721-2.59 c0.006-1.439-1.203-2.604-2.703-2.613C309.77,198.986,308.555,200.142,308.553,201.58"/>
  3740. </g>
  3741. <g>
  3742. <path fill="#B6D6DE" d="M309.533,201.582c-0.002,0.896,0.769,1.621,1.719,1.627c0.953,0.002,1.734-0.719,1.736-1.613 c0.004-0.895-0.77-1.618-1.723-1.625C310.311,199.971,309.537,200.692,309.533,201.582"/>
  3743. </g>
  3744. </g>
  3745. </g>
  3746. <g id="_x23_39">
  3747. <g>
  3748. <path fill="#DFDFDD" d="M260.955,201.586l-1.379,28.777c0,0,1.094,0.43,2.063,0.434c0.998,0.002,2.147-0.422,2.147-0.422 l-1.142-28.783L260.955,201.586L260.955,201.586z"/>
  3749. </g>
  3750. <g>
  3751. <g transform="rotate(91.5214 262 201.582)">
  3752. <g>
  3753. <path fill="#3E4484" d="M260.652,200.534l2.202,0.854c0,0,5.845-12.161,6.271-18.756 C264.811,187.853,260.652,200.534,260.652,200.534"/>
  3754. <path fill="#3E4484" d="M262.744,201.385l-1.813,1.511c0,0,7.771,11.024,13.321,14.618 C271.792,211.197,262.744,201.385,262.744,201.385"/>
  3755. <path fill="#3E4484" d="M260.83,202.965l0.021-2.36c0,0-13.438-1.195-19.768,0.729 C247.492,203.534,260.83,202.965,260.83,202.965"/>
  3756. </g>
  3757. <g>
  3758. <path fill="#DFDFDD" d="M262.749,201.104l6.377-18.722c0,0-0.061,1.148-0.11,1.529c-0.039,0.32-0.164,0.957-0.233,1.271 c-0.06,0.26-0.246,1.034-0.246,1.034s-0.34,1.345-0.474,1.784c-0.444,1.469-1.438,4.358-1.987,5.789 c-0.465,1.211-1.463,3.608-1.984,4.797c-0.279,0.647-1.17,2.571-1.17,2.571"/>
  3759. <path fill="#DFDFDD" d="M261.227,202.94l13.237,14.69c0,0-0.976-0.61-1.28-0.844c-0.263-0.189-0.754-0.607-0.996-0.824 c-0.196-0.174-0.784-0.717-0.784-0.717s-1.009-0.955-1.324-1.287c-1.064-1.102-3.11-3.379-4.09-4.559 c-0.828-0.994-2.438-3.031-3.22-4.066c-0.429-0.563-1.674-2.277-1.674-2.277"/>
  3760. <path fill="#DFDFDD" d="M260.624,200.799l-19.768,0.619c0,0,1.096-0.352,1.471-0.436c0.312-0.074,0.951-0.186,1.273-0.229 c0.264-0.037,1.053-0.136,1.053-0.136s1.377-0.155,1.84-0.186c1.525-0.101,4.586-0.188,6.121-0.181 c1.295,0.017,3.887,0.104,5.182,0.174c0.709,0.045,2.82,0.195,2.82,0.195"/>
  3761. </g>
  3762. <animateTransform restart="always" from="0 262 201.582" dur="4s" to="359 262 201.582" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  3763. </animateTransform>
  3764. </g>
  3765. <g>
  3766. <path fill="#63A5BA" d="M259.081,201.58c-0.008,1.434,1.201,2.604,2.695,2.609c1.5,0.004,2.717-1.158,2.723-2.59 c0.004-1.439-1.205-2.604-2.703-2.613C260.3,198.986,259.087,200.142,259.081,201.58"/>
  3767. </g>
  3768. <g>
  3769. <path fill="#B6D6DE" d="M260.059,201.582c-0.002,0.896,0.771,1.621,1.722,1.627c0.953,0.002,1.735-0.719,1.735-1.613 c0.002-0.895-0.771-1.618-1.724-1.625C260.841,199.971,260.063,200.692,260.059,201.582"/>
  3770. </g>
  3771. </g>
  3772. </g>
  3773. <g id="_x23_38">
  3774. <g>
  3775. <path fill="#DFDFDD" d="M211.431,201.586l-1.377,28.777c0,0,1.094,0.43,2.062,0.434c0.996,0.002,2.147-0.422,2.147-0.422 l-1.14-28.783L211.431,201.586L211.431,201.586z"/>
  3776. </g>
  3777. <g>
  3778. <g transform="rotate(91.5214 212 201.582)">
  3779. <g>
  3780. <path fill="#3E4484" d="M211.13,200.534l2.203,0.854c0,0,5.845-12.161,6.271-18.756 C215.289,187.853,211.13,200.534,211.13,200.534"/>
  3781. <path fill="#3E4484" d="M213.22,201.385l-1.813,1.511c0,0,7.769,11.024,13.32,14.618 C222.27,211.197,213.22,201.385,213.22,201.385"/>
  3782. <path fill="#3E4484" d="M211.306,202.965l0.021-2.36c0,0-13.44-1.195-19.766,0.729 C197.97,203.534,211.306,202.965,211.306,202.965"/>
  3783. </g>
  3784. <g>
  3785. <path fill="#DFDFDD" d="M213.225,201.104l6.377-18.722c0,0-0.063,1.148-0.108,1.529c-0.041,0.32-0.166,0.957-0.236,1.271 c-0.06,0.26-0.245,1.034-0.245,1.034s-0.341,1.345-0.472,1.784c-0.446,1.469-1.438,4.358-1.987,5.789 c-0.468,1.211-1.464,3.608-1.983,4.797c-0.283,0.647-1.172,2.571-1.172,2.571"/>
  3786. <path fill="#DFDFDD" d="M211.705,202.94l13.24,14.69c0,0-0.976-0.61-1.281-0.844c-0.262-0.189-0.754-0.607-0.996-0.824 c-0.198-0.174-0.787-0.717-0.787-0.717s-1.008-0.955-1.32-1.287c-1.066-1.102-3.111-3.379-4.094-4.559 c-0.826-0.994-2.438-3.031-3.219-4.066c-0.428-0.563-1.674-2.277-1.674-2.277"/>
  3787. <path fill="#DFDFDD" d="M211.1,200.799l-19.769,0.619c0,0,1.094-0.352,1.474-0.436c0.313-0.074,0.95-0.186,1.271-0.229 c0.266-0.037,1.057-0.136,1.057-0.136s1.378-0.155,1.84-0.186c1.525-0.101,4.588-0.188,6.119-0.181 c1.296,0.017,3.891,0.104,5.186,0.174c0.707,0.045,2.82,0.195,2.82,0.195"/>
  3788. </g>
  3789. <animateTransform restart="always" from="0 212 201.582" dur="4s" to="359 212 201.582" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  3790. </animateTransform>
  3791. </g>
  3792. <g>
  3793. <path fill="#63A5BA" d="M209.559,201.58c-0.011,1.434,1.198,2.604,2.694,2.609c1.496,0.004,2.716-1.158,2.722-2.59 c0.007-1.439-1.202-2.604-2.702-2.613C210.777,198.986,209.561,200.142,209.559,201.58"/>
  3794. </g>
  3795. <g>
  3796. <path fill="#B6D6DE" d="M210.539,201.582c-0.002,0.896,0.77,1.621,1.722,1.627c0.95,0.002,1.73-0.719,1.733-1.613 c0.004-0.895-0.769-1.618-1.721-1.625C211.318,199.971,210.542,200.692,210.539,201.582"/>
  3797. </g>
  3798. </g>
  3799. </g>
  3800. <g id="_x23_37">
  3801. <g>
  3802. <path fill="#DFDFDD" d="M162.906,201.586l-1.379,28.777c0,0,1.094,0.43,2.061,0.434c0.998,0.002,2.148-0.422,2.148-0.422 l-1.14-28.783L162.906,201.586L162.906,201.586z"/>
  3803. </g>
  3804. <g>
  3805. <g transform="rotate(91.5214 164 201.582)">
  3806. <g>
  3807. <path fill="#3E4484" d="M162.602,200.534l2.203,0.854c0,0,5.842-12.161,6.271-18.756 C166.761,187.853,162.602,200.534,162.602,200.534"/>
  3808. <path fill="#3E4484" d="M164.695,201.385l-1.816,1.511c0,0,7.771,11.024,13.322,14.618 C173.744,211.197,164.695,201.385,164.695,201.385"/>
  3809. <path fill="#3E4484" d="M162.779,202.965l0.021-2.36c0,0-13.438-1.195-19.766,0.729 C149.443,203.534,162.779,202.965,162.779,202.965"/>
  3810. </g>
  3811. <g>
  3812. <path fill="#DFDFDD" d="M164.701,201.104l6.377-18.722c0,0-0.063,1.148-0.111,1.529c-0.04,0.32-0.165,0.957-0.234,1.271 c-0.061,0.26-0.246,1.034-0.246,1.034s-0.34,1.345-0.474,1.784c-0.442,1.469-1.438,4.358-1.987,5.789 c-0.467,1.211-1.461,3.608-1.982,4.797c-0.282,0.647-1.17,2.571-1.17,2.571"/>
  3813. <path fill="#DFDFDD" d="M163.179,202.94l13.237,14.69c0,0-0.975-0.61-1.283-0.844c-0.262-0.189-0.754-0.607-0.993-0.824 c-0.196-0.174-0.785-0.717-0.785-0.717s-1.01-0.955-1.323-1.287c-1.066-1.102-3.113-3.379-4.092-4.559 c-0.828-0.994-2.438-3.031-3.22-4.066c-0.427-0.563-1.675-2.277-1.675-2.277"/>
  3814. <path fill="#DFDFDD" d="M162.574,200.799l-19.769,0.619c0,0,1.097-0.352,1.474-0.436c0.311-0.074,0.948-0.186,1.271-0.229 c0.268-0.037,1.056-0.136,1.056-0.136s1.378-0.155,1.839-0.186c1.524-0.101,4.588-0.188,6.123-0.181 c1.293,0.017,3.885,0.104,5.182,0.174c0.707,0.045,2.818,0.195,2.818,0.195"/>
  3815. </g>
  3816. <animateTransform restart="always" from="0 164 201.582" dur="4s" to="359 164 201.582" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  3817. </animateTransform>
  3818. </g>
  3819. <g>
  3820. <path fill="#63A5BA" d="M161.033,201.58c-0.008,1.434,1.201,2.604,2.694,2.609c1.498,0.004,2.716-1.158,2.722-2.59 c0.006-1.439-1.203-2.604-2.703-2.613C162.249,198.986,161.037,200.142,161.033,201.58"/>
  3821. </g>
  3822. <g>
  3823. <path fill="#B6D6DE" d="M162.009,201.582c-0.002,0.896,0.771,1.621,1.722,1.627c0.953,0.002,1.735-0.719,1.735-1.613 c0.005-0.895-0.77-1.618-1.721-1.625C162.79,199.971,162.013,200.692,162.009,201.582"/>
  3824. </g>
  3825. </g>
  3826. </g>
  3827. <g id="_x23_43">
  3828. <g>
  3829. <path fill="#DFDFDD" d="M458.086,201.586l-1.377,28.779c0,0,1.094,0.428,2.063,0.432c0.994,0.002,2.146-0.422,2.146-0.422 l-1.14-28.783L458.086,201.586L458.086,201.586z"/>
  3830. </g>
  3831. <g>
  3832. <g transform="rotate(91.5214 459 201.584)">
  3833. <g>
  3834. <path fill="#3E4484" d="M457.785,200.536l2.203,0.852c0,0,5.844-12.159,6.271-18.756 C461.943,187.854,457.785,200.536,457.785,200.536"/>
  3835. <path fill="#3E4484" d="M459.875,201.385l-1.813,1.513c0,0,7.769,11.024,13.318,14.616 C468.925,211.198,459.875,201.385,459.875,201.385"/>
  3836. <path fill="#3E4484" d="M457.961,202.965l0.021-2.36c0,0-13.438-1.195-19.768,0.729 C444.625,203.534,457.961,202.965,457.961,202.965"/>
  3837. </g>
  3838. <g>
  3839. <path fill="#DFDFDD" d="M459.88,201.106l6.377-18.724c0,0-0.062,1.15-0.108,1.529c-0.038,0.322-0.166,0.957-0.234,1.273 c-0.059,0.26-0.246,1.031-0.246,1.031s-0.341,1.346-0.474,1.785c-0.444,1.471-1.438,4.36-1.985,5.789 c-0.468,1.211-1.464,3.608-1.984,4.797c-0.281,0.647-1.172,2.571-1.172,2.571"/>
  3840. <path fill="#DFDFDD" d="M458.359,202.94l13.238,14.69c0,0-0.976-0.61-1.279-0.842c-0.266-0.188-0.755-0.606-0.996-0.826 c-0.199-0.174-0.787-0.715-0.787-0.715s-1.006-0.955-1.321-1.287c-1.064-1.104-3.109-3.379-4.093-4.559 c-0.828-0.996-2.438-3.031-3.219-4.068c-0.43-0.563-1.675-2.274-1.675-2.274"/>
  3841. <path fill="#DFDFDD" d="M457.755,200.801l-19.769,0.617c0,0,1.095-0.35,1.474-0.436c0.313-0.074,0.95-0.184,1.271-0.229 c0.266-0.039,1.057-0.138,1.057-0.138s1.378-0.153,1.839-0.186c1.526-0.099,4.588-0.188,6.123-0.179 c1.293,0.015,3.887,0.104,5.183,0.176c0.707,0.04,2.819,0.191,2.819,0.191"/>
  3842. </g>
  3843. <animateTransform restart="always" from="0 459 201.584" dur="4s" to="359 459 201.584" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  3844. </animateTransform>
  3845. </g>
  3846. <g>
  3847. <path fill="#63A5BA" d="M456.214,201.58c-0.008,1.434,1.199,2.605,2.694,2.609c1.496,0.004,2.714-1.156,2.722-2.588 c0.006-1.441-1.203-2.605-2.703-2.613C457.43,198.986,456.216,200.142,456.214,201.58"/>
  3848. </g>
  3849. <g>
  3850. <path fill="#B6D6DE" d="M457.193,201.584c-0.002,0.896,0.769,1.619,1.721,1.625c0.951,0.004,1.732-0.719,1.734-1.611 c0.004-0.895-0.77-1.62-1.723-1.629C457.971,199.971,457.197,200.694,457.193,201.584"/>
  3851. </g>
  3852. </g>
  3853. </g>
  3854. <g id="_x23_44">
  3855. <g>
  3856. <path fill="#DFDFDD" d="M510.604,201.586l-1.381,28.779c0,0,1.096,0.428,2.063,0.432c0.996,0.002,2.146-0.422,2.146-0.422 l-1.14-28.783L510.604,201.586L510.604,201.586z"/>
  3857. </g>
  3858. <g>
  3859. <g transform="rotate(91.5214 511 201.584)">
  3860. <g>
  3861. <path fill="#3E4484" d="M510.3,200.536l2.205,0.852c0,0,5.842-12.159,6.271-18.756 C514.461,187.854,510.3,200.536,510.3,200.536"/>
  3862. <path fill="#3E4484" d="M512.391,201.385l-1.813,1.513c0,0,7.771,11.024,13.322,14.616 C521.444,211.198,512.391,201.385,512.391,201.385"/>
  3863. <path fill="#3E4484" d="M510.479,202.965l0.021-2.36c0,0-13.438-1.195-19.767,0.729 C497.139,203.534,510.479,202.965,510.479,202.965"/>
  3864. </g>
  3865. <g>
  3866. <path fill="#DFDFDD" d="M512.399,201.106l6.377-18.724c0,0-0.063,1.15-0.11,1.529c-0.041,0.322-0.164,0.957-0.234,1.273 c-0.06,0.26-0.245,1.031-0.245,1.031s-0.341,1.346-0.474,1.785c-0.444,1.471-1.438,4.36-1.987,5.789 c-0.468,1.211-1.462,3.608-1.983,4.797c-0.28,0.647-1.171,2.571-1.171,2.571"/>
  3867. <path fill="#DFDFDD" d="M510.877,202.94l13.237,14.69c0,0-0.975-0.61-1.28-0.842c-0.263-0.188-0.755-0.606-0.996-0.826 c-0.197-0.174-0.785-0.715-0.785-0.715s-1.008-0.955-1.322-1.287c-1.065-1.104-3.108-3.379-4.092-4.559 c-0.826-0.996-2.438-3.031-3.219-4.068c-0.429-0.563-1.674-2.274-1.674-2.274"/>
  3868. <path fill="#DFDFDD" d="M510.274,200.801l-19.77,0.617c0,0,1.094-0.35,1.475-0.436c0.312-0.074,0.947-0.184,1.271-0.229 c0.266-0.039,1.055-0.138,1.055-0.138s1.379-0.153,1.838-0.186c1.527-0.099,4.59-0.188,6.123-0.179 c1.296,0.015,3.889,0.104,5.186,0.176c0.705,0.04,2.816,0.191,2.816,0.191"/>
  3869. </g>
  3870. <animateTransform restart="always" from="0 511 201.584" dur="4s" to="359 511 201.584" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  3871. </animateTransform>
  3872. </g>
  3873. <g>
  3874. <path fill="#63A5BA" d="M508.731,201.58c-0.01,1.434,1.199,2.605,2.695,2.609s2.713-1.156,2.723-2.588 c0.006-1.441-1.205-2.605-2.703-2.613C509.95,198.986,508.735,200.142,508.731,201.58"/>
  3875. </g>
  3876. <g>
  3877. <path fill="#B6D6DE" d="M509.709,201.584c-0.005,0.896,0.771,1.619,1.721,1.625c0.953,0.004,1.734-0.719,1.734-1.611 c0.004-0.895-0.771-1.62-1.722-1.629C510.491,199.971,509.711,200.694,509.709,201.584"/>
  3878. </g>
  3879. </g>
  3880. </g>
  3881. <g id="_x23_34">
  3882. <g>
  3883. <path fill="#DFDFDD" d="M27.199,72.388l-1.377,28.777c0,0,1.094,0.43,2.063,0.434c0.995,0.002,2.146-0.422,2.146-0.422 l-1.139-28.783L27.199,72.388L27.199,72.388z"/>
  3884. </g>
  3885. <g>
  3886. <g transform="rotate(91.5214 28 72.384)">
  3887. <g>
  3888. <path fill="#3E4484" d="M26.899,71.336l2.203,0.854c0,0,5.844-12.161,6.27-18.758C31.057,58.656,26.899,71.336,26.899,71.336"/>
  3889. <path fill="#3E4484" d="M28.989,72.187l-1.813,1.513c0,0,7.769,11.022,13.319,14.616 C38.039,81.999,28.989,72.187,28.989,72.187"/>
  3890. <path fill="#3E4484" d="M27.074,73.767l0.021-2.36c0,0-13.44-1.197-19.767,0.728C13.739,74.336,27.074,73.767,27.074,73.767"/>
  3891. </g>
  3892. <g>
  3893. <path fill="#DFDFDD" d="M28.994,71.906l6.377-18.722c0,0-0.063,1.148-0.108,1.529c-0.041,0.32-0.166,0.957-0.235,1.271 c-0.06,0.26-0.246,1.034-0.246,1.034s-0.34,1.343-0.472,1.784c-0.446,1.469-1.438,4.358-1.987,5.789 c-0.467,1.211-1.463,3.608-1.984,4.797c-0.282,0.646-1.172,2.569-1.172,2.569"/>
  3894. <path fill="#DFDFDD" d="M27.473,73.742l13.239,14.69c0,0-0.975-0.61-1.28-0.844c-0.263-0.189-0.754-0.607-0.996-0.824 c-0.198-0.174-0.786-0.717-0.786-0.717s-1.009-0.953-1.322-1.287c-1.065-1.102-3.111-3.379-4.092-4.557 c-0.828-0.996-2.438-3.033-3.22-4.07c-0.429-0.563-1.675-2.275-1.675-2.275"/>
  3895. <path fill="#DFDFDD" d="M26.869,71.601L7.102,72.22c0,0,1.094-0.352,1.473-0.438c0.313-0.072,0.951-0.184,1.271-0.229 c0.267-0.037,1.058-0.136,1.058-0.136s1.377-0.155,1.838-0.186c1.526-0.101,4.59-0.188,6.121-0.181 c1.295,0.017,3.889,0.104,5.184,0.175c0.705,0.044,2.82,0.194,2.82,0.194"/>
  3896. </g>
  3897. <animateTransform restart="always" from="0 28 72.384" dur="4s" to="359 28 72.384" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  3898. </animateTransform>
  3899. </g>
  3900. <g>
  3901. <path fill="#63A5BA" d="M25.328,72.382c-0.01,1.434,1.199,2.604,2.695,2.609c1.496,0.004,2.715-1.158,2.721-2.59 c0.006-1.439-1.203-2.604-2.703-2.613C26.545,69.788,25.33,70.943,25.328,72.382"/>
  3902. </g>
  3903. <g>
  3904. <path fill="#B6D6DE" d="M26.307,72.384c-0.002,0.896,0.769,1.621,1.722,1.627c0.95,0.002,1.733-0.719,1.733-1.613 c0.004-0.895-0.769-1.618-1.722-1.625C27.086,70.772,26.311,71.494,26.307,72.384"/>
  3905. </g>
  3906. </g>
  3907. </g>
  3908. <g id="_x23_35">
  3909. <g>
  3910. <path fill="#DFDFDD" d="M69.422,72.388l-1.379,28.777c0,0,1.095,0.43,2.063,0.434c0.996,0.002,2.147-0.422,2.147-0.422 l-1.139-28.783L69.422,72.388L69.422,72.388z"/>
  3911. </g>
  3912. <g>
  3913. <g transform="rotate(91.5214 70 72.384)">
  3914. <g>
  3915. <path fill="#3E4484" d="M69.121,71.336l2.203,0.854c0,0,5.844-12.161,6.269-18.758C73.278,58.656,69.121,71.336,69.121,71.336"/>
  3916. <path fill="#3E4484" d="M71.211,72.187l-1.813,1.513c0,0,7.766,11.022,13.316,14.616 C80.263,81.999,71.211,72.187,71.211,72.187"/>
  3917. <path fill="#3E4484" d="M69.297,73.767l0.021-2.36c0,0-13.441-1.197-19.767,0.728C55.961,74.336,69.297,73.767,69.297,73.767"/>
  3918. </g>
  3919. <g>
  3920. <path fill="#DFDFDD" d="M71.218,71.906l6.377-18.722c0,0-0.063,1.148-0.11,1.529c-0.039,0.32-0.166,0.957-0.236,1.271 c-0.057,0.26-0.244,1.034-0.244,1.034s-0.34,1.343-0.471,1.784c-0.447,1.469-1.44,4.358-1.99,5.789 c-0.465,1.211-1.461,3.608-1.982,4.797c-0.283,0.646-1.171,2.569-1.171,2.569"/>
  3921. <path fill="#DFDFDD" d="M69.696,73.742l13.24,14.69c0,0-0.977-0.61-1.283-0.844c-0.263-0.189-0.752-0.607-0.996-0.824 c-0.197-0.174-0.785-0.717-0.785-0.717s-1.008-0.953-1.326-1.287c-1.063-1.102-3.108-3.379-4.088-4.557 c-0.828-0.996-2.436-3.033-3.221-4.07c-0.426-0.563-1.674-2.275-1.674-2.275"/>
  3922. <path fill="#DFDFDD" d="M69.093,71.601L49.322,72.22c0,0,1.096-0.352,1.475-0.438c0.313-0.072,0.949-0.184,1.271-0.229 c0.266-0.037,1.057-0.136,1.057-0.136s1.377-0.155,1.836-0.186c1.527-0.101,4.588-0.188,6.123-0.181 c1.297,0.017,3.89,0.104,5.186,0.175c0.705,0.044,2.818,0.194,2.818,0.194"/>
  3923. </g>
  3924. <animateTransform restart="always" from="0 70 72.384" dur="4s" to="359 70 72.384" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  3925. </animateTransform>
  3926. </g>
  3927. <g>
  3928. <path fill="#63A5BA" d="M67.547,72.382c-0.006,1.434,1.203,2.604,2.697,2.609c1.5,0.004,2.717-1.158,2.724-2.59 c0.006-1.439-1.203-2.604-2.703-2.613C68.768,69.788,67.554,70.943,67.547,72.382"/>
  3929. </g>
  3930. <g>
  3931. <path fill="#B6D6DE" d="M68.53,72.384c-0.002,0.896,0.768,1.621,1.721,1.627c0.951,0.002,1.732-0.719,1.734-1.613 c0.004-0.895-0.771-1.618-1.724-1.625C69.311,70.772,68.533,71.494,68.53,72.384"/>
  3932. </g>
  3933. </g>
  3934. </g>
  3935. <g id="_x23_36">
  3936. <g>
  3937. <path fill="#DFDFDD" d="M119.917,72.388l-1.379,28.777c0,0,1.097,0.43,2.063,0.434c0.995,0.002,2.146-0.422,2.146-0.422 l-1.139-28.783L119.917,72.388L119.917,72.388z"/>
  3938. </g>
  3939. <g>
  3940. <g transform="rotate(91.5214 121 72.384)">
  3941. <g>
  3942. <path fill="#3E4484" d="M119.615,71.336l2.205,0.854c0,0,5.842-12.161,6.268-18.758 C123.776,58.656,119.615,71.336,119.615,71.336"/>
  3943. <path fill="#3E4484" d="M121.706,72.187l-1.813,1.513c0,0,7.77,11.022,13.32,14.616 C130.755,81.999,121.706,72.187,121.706,72.187"/>
  3944. <path fill="#3E4484" d="M119.792,73.767l0.021-2.36c0,0-13.44-1.197-19.768,0.728 C106.455,74.336,119.792,73.767,119.792,73.767"/>
  3945. </g>
  3946. <g>
  3947. <path fill="#DFDFDD" d="M121.712,71.906l6.377-18.722c0,0-0.063,1.148-0.107,1.529c-0.041,0.32-0.166,0.957-0.238,1.271 c-0.057,0.26-0.244,1.034-0.244,1.034s-0.34,1.343-0.473,1.784c-0.445,1.469-1.439,4.358-1.988,5.789 c-0.465,1.211-1.461,3.608-1.983,4.797c-0.283,0.646-1.17,2.569-1.17,2.569"/>
  3948. <path fill="#DFDFDD" d="M120.192,73.742l13.24,14.69c0,0-0.979-0.61-1.283-0.844c-0.263-0.189-0.752-0.607-0.996-0.824 c-0.197-0.174-0.785-0.717-0.785-0.717s-1.008-0.953-1.324-1.287c-1.064-1.102-3.11-3.379-4.092-4.557 c-0.828-0.996-2.436-3.033-3.219-4.07c-0.426-0.563-1.674-2.275-1.674-2.275"/>
  3949. <path fill="#DFDFDD" d="M119.587,71.601L99.821,72.22c0,0,1.094-0.352,1.471-0.438c0.313-0.072,0.953-0.184,1.271-0.229 c0.266-0.037,1.057-0.136,1.057-0.136s1.374-0.155,1.835-0.186c1.527-0.101,4.588-0.188,6.123-0.181 c1.295,0.017,3.889,0.104,5.185,0.175c0.704,0.044,2.819,0.194,2.819,0.194"/>
  3950. </g>
  3951. <animateTransform restart="always" from="0 121 72.384" dur="4s" to="359 121 72.384" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  3952. </animateTransform>
  3953. </g>
  3954. <g>
  3955. <path fill="#63A5BA" d="M118.044,72.382c-0.008,1.434,1.201,2.604,2.695,2.609c1.498,0.004,2.715-1.158,2.721-2.59 c0.006-1.439-1.203-2.604-2.7-2.613C119.264,69.788,118.048,70.943,118.044,72.382"/>
  3956. </g>
  3957. <g>
  3958. <path fill="#B6D6DE" d="M119.024,72.384c-0.002,0.896,0.77,1.621,1.721,1.627c0.953,0.002,1.734-0.719,1.736-1.613 c0.004-0.895-0.771-1.618-1.725-1.625C119.805,70.772,119.028,71.494,119.024,72.384"/>
  3959. </g>
  3960. </g>
  3961. </g>
  3962. <g id="_x23_42">
  3963. <g>
  3964. <path fill="#DFDFDD" d="M405.767,72.388l-1.38,28.777c0,0,1.098,0.43,2.063,0.434c0.998,0.002,2.149-0.422,2.149-0.422 l-1.14-28.783L405.767,72.388L405.767,72.388z"/>
  3965. </g>
  3966. <g>
  3967. <g transform="rotate(91.5214 406 72.384)">
  3968. <g>
  3969. <path fill="#3E4484" d="M405.464,71.336l2.205,0.854c0,0,5.842-12.161,6.27-18.756 C409.624,58.654,405.464,71.336,405.464,71.336"/>
  3970. <path fill="#3E4484" d="M407.556,72.187l-1.813,1.511c0,0,7.768,11.024,13.32,14.618 C416.606,81.999,407.556,72.187,407.556,72.187"/>
  3971. <path fill="#3E4484" d="M405.642,73.767l0.021-2.36c0,0-13.439-1.195-19.766,0.729 C392.304,74.336,405.642,73.767,405.642,73.767"/>
  3972. </g>
  3973. <g>
  3974. <path fill="#DFDFDD" d="M407.563,71.906l6.377-18.722c0,0-0.063,1.148-0.109,1.529c-0.041,0.32-0.166,0.957-0.238,1.271 c-0.057,0.26-0.246,1.034-0.246,1.034s-0.338,1.345-0.471,1.784c-0.445,1.469-1.438,4.358-1.988,5.789 c-0.465,1.211-1.461,3.608-1.982,4.797c-0.283,0.647-1.17,2.571-1.17,2.571"/>
  3975. <path fill="#DFDFDD" d="M406.04,73.742l13.24,14.69c0,0-0.979-0.61-1.283-0.844c-0.262-0.189-0.754-0.607-0.996-0.824 c-0.197-0.174-0.785-0.717-0.785-0.717s-1.008-0.955-1.323-1.287c-1.065-1.102-3.11-3.379-4.093-4.559 c-0.828-0.994-2.437-3.031-3.219-4.066c-0.426-0.563-1.674-2.277-1.674-2.277"/>
  3976. <path fill="#DFDFDD" d="M405.438,71.601l-19.771,0.619c0,0,1.097-0.352,1.474-0.436c0.313-0.074,0.952-0.186,1.271-0.229 c0.266-0.037,1.057-0.136,1.057-0.136s1.375-0.155,1.837-0.186c1.526-0.101,4.591-0.188,6.122-0.181 c1.296,0.017,3.889,0.104,5.186,0.174c0.705,0.045,2.818,0.195,2.818,0.195"/>
  3977. </g>
  3978. <animateTransform restart="always" from="0 406 72.384" dur="4s" to="359 406 72.384" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  3979. </animateTransform>
  3980. </g>
  3981. <g>
  3982. <path fill="#63A5BA" d="M403.895,72.382c-0.01,1.434,1.199,2.604,2.693,2.609c1.498,0.004,2.715-1.158,2.721-2.59 c0.008-1.439-1.199-2.604-2.699-2.613C405.114,69.788,403.899,70.943,403.895,72.382"/>
  3983. </g>
  3984. <g>
  3985. <path fill="#B6D6DE" d="M404.872,72.384c-0.002,0.896,0.771,1.621,1.721,1.627c0.951,0.002,1.734-0.719,1.736-1.613 c0.004-0.895-0.771-1.618-1.724-1.625C405.655,70.772,404.876,71.494,404.872,72.384"/>
  3986. </g>
  3987. </g>
  3988. </g>
  3989. <g id="_x23_41">
  3990. <g>
  3991. <path fill="#DFDFDD" d="M358.49,72.388l-1.377,28.777c0,0,1.094,0.43,2.062,0.434c0.998,0.002,2.147-0.422,2.147-0.422 l-1.14-28.783L358.49,72.388L358.49,72.388z"/>
  3992. </g>
  3993. <g>
  3994. <g transform="rotate(91.5214 359 72.384)">
  3995. <g>
  3996. <path fill="#3E4484" d="M358.19,71.336l2.202,0.854c0,0,5.843-12.161,6.271-18.756C362.349,58.654,358.19,71.336,358.19,71.336 "/>
  3997. <path fill="#3E4484" d="M360.281,72.187l-1.815,1.511c0,0,7.771,11.024,13.324,14.618 C369.33,81.999,360.281,72.187,360.281,72.187"/>
  3998. <path fill="#3E4484" d="M358.365,73.767l0.021-2.36c0,0-13.438-1.195-19.766,0.729 C345.03,74.336,358.365,73.767,358.365,73.767"/>
  3999. </g>
  4000. <g>
  4001. <path fill="#DFDFDD" d="M360.287,71.906l6.377-18.722c0,0-0.063,1.148-0.111,1.529c-0.041,0.32-0.164,0.957-0.234,1.271 c-0.061,0.26-0.246,1.034-0.246,1.034s-0.338,1.345-0.473,1.784c-0.445,1.469-1.438,4.358-1.988,5.789 c-0.466,1.211-1.461,3.608-1.981,4.797c-0.281,0.647-1.172,2.571-1.172,2.571"/>
  4002. <path fill="#DFDFDD" d="M358.765,73.742l13.237,14.69c0,0-0.975-0.61-1.281-0.844c-0.262-0.189-0.756-0.607-0.995-0.824 c-0.196-0.174-0.784-0.717-0.784-0.717s-1.011-0.955-1.324-1.287c-1.066-1.102-3.111-3.379-4.092-4.559 c-0.828-0.994-2.438-3.031-3.22-4.066c-0.429-0.563-1.675-2.277-1.675-2.277"/>
  4003. <path fill="#DFDFDD" d="M358.16,71.601l-19.766,0.619c0,0,1.094-0.352,1.471-0.436c0.312-0.074,0.949-0.186,1.271-0.229 c0.268-0.037,1.057-0.136,1.057-0.136s1.377-0.155,1.838-0.186c1.526-0.101,4.588-0.188,6.123-0.181 c1.295,0.017,3.885,0.104,5.182,0.174c0.707,0.045,2.818,0.195,2.818,0.195"/>
  4004. </g>
  4005. <animateTransform restart="always" from="0 359 72.384" dur="4s" to="359 359 72.384" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  4006. </animateTransform>
  4007. </g>
  4008. <g>
  4009. <path fill="#63A5BA" d="M356.619,72.382c-0.008,1.434,1.199,2.604,2.695,2.609c1.498,0.004,2.715-1.158,2.721-2.59 c0.006-1.439-1.203-2.604-2.701-2.613C357.835,69.788,356.622,70.943,356.619,72.382"/>
  4010. </g>
  4011. <g>
  4012. <path fill="#B6D6DE" d="M357.595,72.384c-0.002,0.896,0.771,1.621,1.725,1.627c0.951,0.002,1.732-0.719,1.732-1.613 c0.005-0.895-0.771-1.618-1.721-1.625C358.378,70.772,357.599,71.494,357.595,72.384"/>
  4013. </g>
  4014. </g>
  4015. </g>
  4016. <g id="_x23_40">
  4017. <g>
  4018. <path fill="#DFDFDD" d="M312.924,72.388l-1.377,28.777c0,0,1.094,0.43,2.063,0.434c0.995,0.002,2.146-0.422,2.146-0.422 l-1.139-28.783L312.924,72.388L312.924,72.388z"/>
  4019. </g>
  4020. <g>
  4021. <g transform="rotate(91.5214 314 72.384)">
  4022. <g>
  4023. <path fill="#3E4484" d="M312.623,71.336l2.203,0.854c0,0,5.844-12.161,6.27-18.756 C316.782,58.654,312.623,71.336,312.623,71.336"/>
  4024. <path fill="#3E4484" d="M314.713,72.187l-1.813,1.511c0,0,7.766,11.024,13.318,14.618 C323.764,81.999,314.713,72.187,314.713,72.187"/>
  4025. <path fill="#3E4484" d="M312.799,73.767l0.021-2.36c0,0-13.441-1.195-19.767,0.729 C299.463,74.336,312.799,73.767,312.799,73.767"/>
  4026. </g>
  4027. <g>
  4028. <path fill="#DFDFDD" d="M314.719,71.906l6.377-18.722c0,0-0.063,1.148-0.107,1.529c-0.041,0.32-0.166,0.957-0.236,1.271 c-0.059,0.26-0.246,1.034-0.246,1.034s-0.34,1.345-0.473,1.784c-0.445,1.469-1.438,4.358-1.986,5.789 c-0.467,1.211-1.463,3.608-1.982,4.797c-0.283,0.647-1.174,2.571-1.174,2.571"/>
  4029. <path fill="#DFDFDD" d="M313.198,73.742l13.239,14.69c0,0-0.976-0.61-1.28-0.844c-0.266-0.189-0.754-0.607-0.996-0.824 c-0.199-0.174-0.787-0.717-0.787-0.717s-1.008-0.955-1.324-1.287c-1.063-1.102-3.107-3.379-4.09-4.559 c-0.828-0.994-2.438-3.031-3.219-4.066c-0.428-0.563-1.674-2.277-1.674-2.277"/>
  4030. <path fill="#DFDFDD" d="M312.594,71.601l-19.768,0.619c0,0,1.094-0.352,1.473-0.436c0.313-0.074,0.951-0.186,1.271-0.229 c0.266-0.037,1.057-0.136,1.057-0.136s1.377-0.155,1.838-0.186c1.527-0.101,4.588-0.188,6.121-0.181 c1.295,0.017,3.891,0.104,5.186,0.174c0.704,0.045,2.818,0.195,2.818,0.195"/>
  4031. </g>
  4032. <animateTransform restart="always" from="0 314 72.384" dur="4s" to="359 314 72.384" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  4033. </animateTransform>
  4034. </g>
  4035. <g>
  4036. <path fill="#63A5BA" d="M311.053,72.382c-0.01,1.434,1.199,2.604,2.695,2.609c1.496,0.004,2.713-1.158,2.721-2.59 c0.006-1.439-1.203-2.604-2.703-2.613C312.27,69.788,311.055,70.943,311.053,72.382"/>
  4037. </g>
  4038. <g>
  4039. <path fill="#B6D6DE" d="M312.032,72.384c-0.002,0.896,0.769,1.621,1.719,1.627c0.953,0.002,1.734-0.719,1.736-1.613 c0.004-0.895-0.77-1.618-1.723-1.625C312.811,70.772,312.036,71.494,312.032,72.384"/>
  4040. </g>
  4041. </g>
  4042. </g>
  4043. <g id="_x23_39">
  4044. <g>
  4045. <path fill="#DFDFDD" d="M263.454,72.388l-1.379,28.777c0,0,1.094,0.43,2.063,0.434c0.998,0.002,2.147-0.422,2.147-0.422 l-1.142-28.783L263.454,72.388L263.454,72.388z"/>
  4046. </g>
  4047. <g>
  4048. <g transform="rotate(91.5214 264 72.384)">
  4049. <g>
  4050. <path fill="#3E4484" d="M263.152,71.336l2.202,0.854c0,0,5.845-12.161,6.271-18.756 C267.311,58.654,263.152,71.336,263.152,71.336"/>
  4051. <path fill="#3E4484" d="M265.243,72.187l-1.813,1.511c0,0,7.771,11.024,13.321,14.618 C274.291,81.999,265.243,72.187,265.243,72.187"/>
  4052. <path fill="#3E4484" d="M263.329,73.767l0.021-2.36c0,0-13.438-1.195-19.768,0.729 C249.991,74.336,263.329,73.767,263.329,73.767"/>
  4053. </g>
  4054. <g>
  4055. <path fill="#DFDFDD" d="M265.248,71.906l6.377-18.722c0,0-0.061,1.148-0.11,1.529c-0.039,0.32-0.164,0.957-0.233,1.271 c-0.06,0.26-0.246,1.034-0.246,1.034s-0.34,1.345-0.474,1.784c-0.444,1.469-1.438,4.358-1.987,5.789 c-0.465,1.211-1.463,3.608-1.984,4.797c-0.279,0.647-1.17,2.571-1.17,2.571"/>
  4056. <path fill="#DFDFDD" d="M263.727,73.742l13.237,14.69c0,0-0.976-0.61-1.28-0.844c-0.263-0.189-0.754-0.607-0.996-0.824 c-0.196-0.174-0.784-0.717-0.784-0.717s-1.009-0.955-1.324-1.287c-1.064-1.102-3.11-3.379-4.09-4.559 c-0.828-0.994-2.438-3.031-3.22-4.066c-0.429-0.563-1.674-2.277-1.674-2.277"/>
  4057. <path fill="#DFDFDD" d="M263.123,71.601l-19.768,0.619c0,0,1.096-0.352,1.471-0.436c0.312-0.074,0.951-0.186,1.273-0.229 c0.264-0.037,1.053-0.136,1.053-0.136s1.377-0.155,1.84-0.186c1.525-0.101,4.586-0.188,6.121-0.181 c1.295,0.017,3.887,0.104,5.182,0.174c0.709,0.045,2.82,0.195,2.82,0.195"/>
  4058. </g>
  4059. <animateTransform restart="always" from="0 264 72.384" dur="4s" to="359 264 72.384" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  4060. </animateTransform>
  4061. </g>
  4062. <g>
  4063. <path fill="#63A5BA" d="M261.58,72.382c-0.008,1.434,1.201,2.604,2.695,2.609c1.5,0.004,2.717-1.158,2.723-2.59 c0.004-1.439-1.205-2.604-2.703-2.613C262.799,69.788,261.586,70.943,261.58,72.382"/>
  4064. </g>
  4065. <g>
  4066. <path fill="#B6D6DE" d="M262.559,72.384c-0.002,0.896,0.771,1.621,1.722,1.627c0.953,0.002,1.735-0.719,1.735-1.613 c0.002-0.895-0.771-1.618-1.724-1.625C263.34,70.772,262.563,71.494,262.559,72.384"/>
  4067. </g>
  4068. </g>
  4069. </g>
  4070. <g id="_x23_38">
  4071. <g>
  4072. <path fill="#DFDFDD" d="M213.931,72.388l-1.377,28.777c0,0,1.094,0.43,2.062,0.434c0.996,0.002,2.147-0.422,2.147-0.422 l-1.14-28.783L213.931,72.388L213.931,72.388z"/>
  4073. </g>
  4074. <g>
  4075. <g transform="rotate(91.5214 215 72.384)">
  4076. <g>
  4077. <path fill="#3E4484" d="M213.629,71.336l2.203,0.854c0,0,5.845-12.161,6.271-18.756 C217.788,58.654,213.629,71.336,213.629,71.336"/>
  4078. <path fill="#3E4484" d="M215.72,72.187l-1.813,1.511c0,0,7.769,11.024,13.32,14.618C224.77,81.999,215.72,72.187,215.72,72.187 "/>
  4079. <path fill="#3E4484" d="M213.806,73.767l0.021-2.36c0,0-13.44-1.195-19.766,0.729C200.47,74.336,213.806,73.767,213.806,73.767 "/>
  4080. </g>
  4081. <g>
  4082. <path fill="#DFDFDD" d="M215.725,71.906l6.377-18.722c0,0-0.063,1.148-0.108,1.529c-0.041,0.32-0.166,0.957-0.236,1.271 c-0.06,0.26-0.245,1.034-0.245,1.034s-0.341,1.345-0.472,1.784c-0.446,1.469-1.438,4.358-1.987,5.789 c-0.468,1.211-1.464,3.608-1.983,4.797c-0.283,0.647-1.172,2.571-1.172,2.571"/>
  4083. <path fill="#DFDFDD" d="M214.204,73.742l13.24,14.69c0,0-0.976-0.61-1.281-0.844c-0.262-0.189-0.754-0.607-0.996-0.824 c-0.198-0.174-0.787-0.717-0.787-0.717s-1.008-0.955-1.32-1.287c-1.066-1.102-3.111-3.379-4.094-4.559 c-0.826-0.994-2.438-3.031-3.219-4.066c-0.428-0.563-1.674-2.277-1.674-2.277"/>
  4084. <path fill="#DFDFDD" d="M213.6,71.601l-19.769,0.619c0,0,1.094-0.352,1.474-0.436c0.313-0.074,0.95-0.186,1.271-0.229 c0.266-0.037,1.057-0.136,1.057-0.136s1.378-0.155,1.84-0.186c1.525-0.101,4.588-0.188,6.119-0.181 c1.296,0.017,3.891,0.104,5.186,0.174c0.707,0.045,2.82,0.195,2.82,0.195"/>
  4085. </g>
  4086. <animateTransform restart="always" from="0 215 72.384" dur="4s" to="359 215 72.384" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  4087. </animateTransform>
  4088. </g>
  4089. <g>
  4090. <path fill="#63A5BA" d="M212.059,72.382c-0.011,1.434,1.198,2.604,2.694,2.609c1.496,0.004,2.716-1.158,2.722-2.59 c0.007-1.439-1.202-2.604-2.702-2.613C213.277,69.788,212.061,70.943,212.059,72.382"/>
  4091. </g>
  4092. <g>
  4093. <path fill="#B6D6DE" d="M213.038,72.384c-0.002,0.896,0.77,1.621,1.722,1.627c0.95,0.002,1.73-0.719,1.733-1.613 c0.004-0.895-0.769-1.618-1.721-1.625C213.818,70.772,213.041,71.494,213.038,72.384"/>
  4094. </g>
  4095. </g>
  4096. </g>
  4097. <g id="_x23_37">
  4098. <g>
  4099. <path fill="#DFDFDD" d="M165.406,72.388l-1.379,28.777c0,0,1.094,0.43,2.061,0.434c0.998,0.002,2.148-0.422,2.148-0.422 l-1.14-28.783L165.406,72.388L165.406,72.388z"/>
  4100. </g>
  4101. <g>
  4102. <g transform="rotate(91.5214 166 72.384)">
  4103. <g>
  4104. <path fill="#3E4484" d="M165.102,71.336l2.203,0.854c0,0,5.842-12.161,6.271-18.756 C169.261,58.654,165.102,71.336,165.102,71.336"/>
  4105. <path fill="#3E4484" d="M167.195,72.187l-1.816,1.511c0,0,7.771,11.024,13.322,14.618 C176.243,81.999,167.195,72.187,167.195,72.187"/>
  4106. <path fill="#3E4484" d="M165.279,73.767l0.021-2.36c0,0-13.438-1.195-19.766,0.729 C151.943,74.336,165.279,73.767,165.279,73.767"/>
  4107. </g>
  4108. <g>
  4109. <path fill="#DFDFDD" d="M167.2,71.906l6.377-18.722c0,0-0.063,1.148-0.111,1.529c-0.04,0.32-0.165,0.957-0.234,1.271 c-0.061,0.26-0.246,1.034-0.246,1.034s-0.34,1.345-0.474,1.784c-0.442,1.469-1.438,4.358-1.987,5.789 c-0.467,1.211-1.461,3.608-1.982,4.797c-0.282,0.647-1.17,2.571-1.17,2.571"/>
  4110. <path fill="#DFDFDD" d="M165.679,73.742l13.237,14.69c0,0-0.975-0.61-1.283-0.844c-0.262-0.189-0.754-0.607-0.993-0.824 c-0.196-0.174-0.785-0.717-0.785-0.717s-1.01-0.955-1.323-1.287c-1.066-1.102-3.113-3.379-4.092-4.559 c-0.828-0.994-2.438-3.031-3.22-4.066c-0.427-0.563-1.675-2.277-1.675-2.277"/>
  4111. <path fill="#DFDFDD" d="M165.073,71.601l-19.769,0.619c0,0,1.097-0.352,1.474-0.436c0.311-0.074,0.948-0.186,1.271-0.229 c0.268-0.037,1.056-0.136,1.056-0.136s1.378-0.155,1.839-0.186c1.524-0.101,4.588-0.188,6.123-0.181 c1.293,0.017,3.885,0.104,5.182,0.174c0.707,0.045,2.818,0.195,2.818,0.195"/>
  4112. </g>
  4113. <animateTransform restart="always" from="0 166 72.384" dur="4s" to="359 166 72.384" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  4114. </animateTransform>
  4115. </g>
  4116. <g>
  4117. <path fill="#63A5BA" d="M163.532,72.382c-0.008,1.434,1.201,2.604,2.694,2.609c1.498,0.004,2.716-1.158,2.722-2.59 c0.006-1.439-1.203-2.604-2.703-2.613C164.748,69.788,163.536,70.943,163.532,72.382"/>
  4118. </g>
  4119. <g>
  4120. <path fill="#B6D6DE" d="M164.508,72.384c-0.002,0.896,0.771,1.621,1.722,1.627c0.953,0.002,1.735-0.719,1.735-1.613 c0.005-0.895-0.77-1.618-1.721-1.625C165.289,70.772,164.513,71.494,164.508,72.384"/>
  4121. </g>
  4122. </g>
  4123. </g>
  4124. <g id="_x23_43">
  4125. <g>
  4126. <path fill="#DFDFDD" d="M460.585,72.388l-1.377,28.779c0,0,1.094,0.428,2.063,0.432c0.994,0.002,2.146-0.422,2.146-0.422 l-1.14-28.783L460.585,72.388L460.585,72.388z"/>
  4127. </g>
  4128. <g>
  4129. <g transform="rotate(91.5214 461 72.386)">
  4130. <g>
  4131. <path fill="#3E4484" d="M460.284,71.338l2.203,0.852c0,0,5.844-12.159,6.271-18.756 C464.443,58.656,460.284,71.338,460.284,71.338"/>
  4132. <path fill="#3E4484" d="M462.374,72.187l-1.813,1.513c0,0,7.769,11.024,13.318,14.616 C471.424,82,462.374,72.187,462.374,72.187"/>
  4133. <path fill="#3E4484" d="M460.46,73.767l0.021-2.36c0,0-13.438-1.195-19.768,0.729C447.124,74.336,460.46,73.767,460.46,73.767"/>
  4134. </g>
  4135. <g>
  4136. <path fill="#DFDFDD" d="M462.379,71.908l6.377-18.724c0,0-0.062,1.15-0.108,1.529c-0.038,0.322-0.166,0.957-0.234,1.273 c-0.059,0.26-0.246,1.031-0.246,1.031s-0.341,1.346-0.474,1.785c-0.444,1.471-1.438,4.36-1.985,5.789 c-0.468,1.211-1.464,3.608-1.984,4.797c-0.281,0.647-1.172,2.571-1.172,2.571"/>
  4137. <path fill="#DFDFDD" d="M460.859,73.742l13.238,14.69c0,0-0.976-0.61-1.279-0.842c-0.266-0.188-0.755-0.606-0.996-0.826 c-0.199-0.174-0.787-0.715-0.787-0.715s-1.006-0.955-1.321-1.287c-1.064-1.104-3.109-3.379-4.093-4.559 c-0.828-0.996-2.438-3.031-3.219-4.068c-0.43-0.563-1.675-2.274-1.675-2.274"/>
  4138. <path fill="#DFDFDD" d="M460.254,71.603l-19.769,0.617c0,0,1.095-0.35,1.474-0.436c0.313-0.074,0.95-0.184,1.271-0.229 c0.266-0.039,1.057-0.138,1.057-0.138s1.378-0.153,1.839-0.186c1.526-0.099,4.588-0.188,6.123-0.179 c1.293,0.015,3.887,0.104,5.183,0.176c0.707,0.04,2.819,0.191,2.819,0.191"/>
  4139. </g>
  4140. <animateTransform restart="always" from="0 461 72.386" dur="4s" to="359 461 72.386" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  4141. </animateTransform>
  4142. </g>
  4143. <g>
  4144. <path fill="#63A5BA" d="M458.713,72.382c-0.008,1.434,1.199,2.605,2.694,2.609c1.496,0.004,2.714-1.156,2.722-2.588 c0.006-1.441-1.203-2.605-2.703-2.613C459.93,69.788,458.715,70.943,458.713,72.382"/>
  4145. </g>
  4146. <g>
  4147. <path fill="#B6D6DE" d="M459.693,72.386c-0.002,0.896,0.769,1.619,1.721,1.625c0.951,0.004,1.732-0.719,1.734-1.611 c0.004-0.895-0.77-1.62-1.723-1.629C460.471,70.772,459.697,71.496,459.693,72.386"/>
  4148. </g>
  4149. </g>
  4150. </g>
  4151. <g id="_x23_44">
  4152. <g>
  4153. <path fill="#DFDFDD" d="M513.104,72.388l-1.381,28.779c0,0,1.096,0.428,2.063,0.432c0.996,0.002,2.146-0.422,2.146-0.422 l-1.14-28.783L513.104,72.388L513.104,72.388z"/>
  4154. </g>
  4155. <g>
  4156. <g transform="rotate(91.5214 514 72.386)">
  4157. <g>
  4158. <path fill="#3E4484" d="M512.799,71.338l2.205,0.852c0,0,5.842-12.159,6.271-18.756 C516.96,58.656,512.799,71.338,512.799,71.338"/>
  4159. <path fill="#3E4484" d="M514.891,72.187l-1.813,1.513c0,0,7.771,11.024,13.322,14.616 C523.944,82,514.891,72.187,514.891,72.187"/>
  4160. <path fill="#3E4484" d="M512.979,73.767l0.021-2.36c0,0-13.438-1.195-19.767,0.729 C499.639,74.336,512.979,73.767,512.979,73.767"/>
  4161. </g>
  4162. <g>
  4163. <path fill="#DFDFDD" d="M514.899,71.908l6.377-18.724c0,0-0.063,1.15-0.11,1.529c-0.041,0.322-0.164,0.957-0.234,1.273 c-0.06,0.26-0.245,1.031-0.245,1.031s-0.341,1.346-0.474,1.785c-0.444,1.471-1.438,4.36-1.987,5.789 c-0.468,1.211-1.462,3.608-1.983,4.797c-0.28,0.647-1.171,2.571-1.171,2.571"/>
  4164. <path fill="#DFDFDD" d="M513.376,73.742l13.237,14.69c0,0-0.975-0.61-1.28-0.842c-0.263-0.188-0.755-0.606-0.996-0.826 c-0.197-0.174-0.785-0.715-0.785-0.715s-1.008-0.955-1.322-1.287c-1.065-1.104-3.108-3.379-4.092-4.559 c-0.826-0.996-2.438-3.031-3.219-4.068c-0.429-0.563-1.674-2.274-1.674-2.274"/>
  4165. <path fill="#DFDFDD" d="M512.774,71.603l-19.77,0.617c0,0,1.094-0.35,1.475-0.436c0.312-0.074,0.947-0.184,1.271-0.229 c0.266-0.039,1.055-0.138,1.055-0.138s1.379-0.153,1.838-0.186c1.527-0.099,4.59-0.188,6.123-0.179 c1.296,0.015,3.889,0.104,5.186,0.176c0.705,0.04,2.816,0.191,2.816,0.191"/>
  4166. </g>
  4167. <animateTransform restart="always" from="0 514 72.386" dur="4s" to="359 514 72.386" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
  4168. </animateTransform>
  4169. </g>
  4170. <g>
  4171. <path fill="#63A5BA" d="M511.231,72.382c-0.01,1.434,1.199,2.605,2.695,2.609s2.713-1.156,2.723-2.588 c0.006-1.441-1.205-2.605-2.703-2.613C512.449,69.788,511.235,70.943,511.231,72.382"/>
  4172. </g>
  4173. <g>
  4174. <path fill="#B6D6DE" d="M512.208,72.386c-0.005,0.896,0.771,1.619,1.721,1.625c0.953,0.004,1.734-0.719,1.734-1.611 c0.004-0.895-0.771-1.62-1.722-1.629C512.99,70.772,512.21,71.496,512.208,72.386"/>
  4175. </g>
  4176. </g>
  4177. </g>
  4178. </g>
  4179. </svg>
  4180. </template>
  4181. </previewPicture>
  4182. </el-col>
  4183. </el-row>
  4184. </div>
  4185. </template>
  4186. <script>
  4187. import previewPicture from "../previewPicture.vue";
  4188. import $ from "jquery";
  4189. export default {
  4190. components: {
  4191. previewPicture,
  4192. },
  4193. props: { data: Array, zmmap: Object },
  4194. data() {
  4195. return {
  4196. // graph: null,
  4197. green: "#02A434",
  4198. red: "#FF0000",
  4199. datas: undefined,
  4200. fjID:'',
  4201. };
  4202. },
  4203. beforeUpdate() {
  4204. if(this.fjID == ''){
  4205. this.fjClcik();
  4206. }
  4207. },
  4208. methods: {
  4209. fjClcik(){
  4210. var that = this;
  4211. $('#fan g').click(function(){
  4212. if($(this).attr('id') != undefined){
  4213. if(that.fjID == ''){
  4214. that.fjID = $(this).attr('id');
  4215. var p = that.$route.path.split('/');
  4216. var pData = p[p.length - 1].split('_')[0].substr(0,1);
  4217. var wpId = p[p.length - 1];
  4218. var id = parseInt($(this).attr('id').split('_')[2]);
  4219. if(id<10){
  4220. id = '0'+id
  4221. }
  4222. if (wpId.indexOf("FDC") !== -1) {
  4223. that.$router.replace(`/monitor/windsite/info/${wpId}/${pData[0] + 'G01_'+id}`);
  4224. }
  4225. }
  4226. }
  4227. })
  4228. },
  4229. refreshFan: function (data) {
  4230. if (data) {
  4231. data.forEach((element) => {
  4232. let wtNum = parseInt(element["wtnum"]);
  4233. let state = element["fjzt"];
  4234. let color = this.getWtColor(state);
  4235. if (document.getElementById("_x23_" + wtNum)) {
  4236. let ele1 = document.getElementById("_x23_" + wtNum).children[1]
  4237. .children[0].children[0];
  4238. ele1.children[0].setAttribute("fill", color);
  4239. ele1.children[1].setAttribute("fill", color);
  4240. ele1.children[2].setAttribute("fill", color);
  4241. let speed = 0;
  4242. if ("1" == state || "5" == state) speed = 2;
  4243. document
  4244. .getElementById("_x23_" + wtNum)
  4245. .children[1].children[0].children[2].setAttribute("dur", speed);
  4246. }
  4247. });
  4248. }
  4249. },
  4250. refreshDLQ: function (data) {
  4251. console.log(data);
  4252. if (data) {
  4253. for (let dlq in data) {
  4254. if (document.getElementById(dlq)) {
  4255. if ("1" == data[dlq]) {
  4256. document.getElementById(dlq).setAttribute("fill", "#E60612");
  4257. } else {
  4258. document.getElementById(dlq).setAttribute("fill", "#05bb4c");
  4259. }
  4260. }
  4261. }
  4262. }
  4263. },
  4264. getWtColor: function (stateCode) {
  4265. if ("0" == stateCode) return "#05bb4c";
  4266. if ("1" == stateCode) return "#4b55ae";
  4267. if ("2" == stateCode) return "#ba3237";
  4268. if ("3" == stateCode) return "#606769";
  4269. if ("4" == stateCode) return "#e17e23";
  4270. if ("5" == stateCode) return "#c531c7";
  4271. if ("6" == stateCode) return "#c531c7";
  4272. },
  4273. },
  4274. watch: {
  4275. data(value) {
  4276. this.datas = value;
  4277. this.refreshFan(value);
  4278. },
  4279. zmmap(value) {
  4280. this.refreshDLQ(value);
  4281. },
  4282. },
  4283. };
  4284. </script>
  4285. <style scoped>
  4286. .center-bar {
  4287. position: relative;
  4288. box-sizing: border-box;
  4289. height: 90vh;
  4290. background-color: #000000;
  4291. padding-top: 10px;
  4292. padding-left: 5px;
  4293. padding-right: 5px;
  4294. padding-bottom: 5px;
  4295. margin-top: 0;
  4296. margin-right: 0;
  4297. margin-bottom: 3px;
  4298. margin-left: 0;
  4299. display: flex;
  4300. flex-direction: column;
  4301. }
  4302. .svg {
  4303. margin-left: 5%;
  4304. width: 90%;
  4305. height: 90%;
  4306. }
  4307. .light #other text[font-size="17.3469"],
  4308. .light #other text[font-size="16.5927"],
  4309. .light #other text[font-size="10.7967"]{
  4310. fill:#000000;
  4311. }
  4312. </style>