iot-管道(21)-04.svg 277 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
  3. <svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
  4. viewBox="0 0 150 150" style="enable-background:new 0 0 150 150;" xml:space="preserve">
  5. <style type="text/css">
  6. .st0{clip-path:url(#SVGID_2_);}
  7. .st1{fill:url(#SVGID_3_);}
  8. .st2{fill:url(#SVGID_4_);}
  9. .st3{fill:url(#SVGID_5_);}
  10. .st4{fill:url(#SVGID_6_);}
  11. .st5{fill:url(#SVGID_7_);}
  12. .st6{fill:url(#SVGID_8_);}
  13. .st7{fill:url(#SVGID_9_);}
  14. .st8{fill:url(#SVGID_10_);}
  15. .st9{fill:url(#SVGID_11_);}
  16. .st10{fill:url(#SVGID_12_);}
  17. .st11{fill:url(#SVGID_13_);}
  18. .st12{fill:url(#SVGID_14_);}
  19. .st13{fill:url(#SVGID_15_);}
  20. .st14{fill:url(#SVGID_16_);}
  21. .st15{fill:url(#SVGID_17_);}
  22. .st16{fill:url(#SVGID_18_);}
  23. .st17{fill:url(#SVGID_19_);}
  24. .st18{fill:url(#SVGID_20_);}
  25. .st19{fill:url(#SVGID_21_);}
  26. .st20{fill:url(#SVGID_22_);}
  27. .st21{fill:url(#SVGID_23_);}
  28. .st22{fill:url(#SVGID_24_);}
  29. .st23{fill:url(#SVGID_25_);}
  30. .st24{fill:url(#SVGID_26_);}
  31. .st25{fill:url(#SVGID_27_);}
  32. .st26{fill:url(#SVGID_28_);}
  33. .st27{fill:url(#SVGID_29_);}
  34. .st28{fill:url(#SVGID_30_);}
  35. .st29{fill:url(#SVGID_31_);}
  36. .st30{fill:url(#SVGID_32_);}
  37. .st31{fill:url(#SVGID_33_);}
  38. .st32{fill:url(#SVGID_34_);}
  39. .st33{fill:url(#SVGID_35_);}
  40. .st34{fill:url(#SVGID_36_);}
  41. .st35{fill:url(#SVGID_37_);}
  42. .st36{fill:url(#SVGID_38_);}
  43. .st37{fill:url(#SVGID_39_);}
  44. .st38{fill:url(#SVGID_40_);}
  45. .st39{fill:url(#SVGID_41_);}
  46. .st40{fill:url(#SVGID_42_);}
  47. .st41{fill:url(#SVGID_43_);}
  48. .st42{fill:url(#SVGID_44_);}
  49. .st43{fill:url(#SVGID_45_);}
  50. .st44{fill:url(#SVGID_46_);}
  51. .st45{fill:url(#SVGID_47_);}
  52. .st46{fill:url(#SVGID_48_);}
  53. .st47{fill:url(#SVGID_49_);}
  54. .st48{fill:url(#SVGID_50_);}
  55. .st49{fill:url(#SVGID_51_);}
  56. .st50{fill:url(#SVGID_52_);}
  57. .st51{fill:url(#SVGID_53_);}
  58. .st52{fill:url(#SVGID_54_);}
  59. .st53{fill:url(#SVGID_55_);}
  60. .st54{fill:url(#SVGID_56_);}
  61. .st55{fill:url(#SVGID_57_);}
  62. .st56{fill:url(#SVGID_58_);}
  63. .st57{fill:url(#SVGID_59_);}
  64. .st58{fill:url(#SVGID_60_);}
  65. .st59{fill:url(#SVGID_61_);}
  66. .st60{fill:url(#SVGID_62_);}
  67. .st61{fill:url(#SVGID_63_);}
  68. .st62{fill:url(#SVGID_64_);}
  69. .st63{fill:url(#SVGID_65_);}
  70. .st64{fill:url(#SVGID_66_);}
  71. .st65{fill:url(#SVGID_67_);}
  72. .st66{fill:url(#SVGID_68_);}
  73. .st67{fill:url(#SVGID_69_);}
  74. .st68{fill:url(#SVGID_70_);}
  75. .st69{fill:url(#SVGID_71_);}
  76. .st70{fill:url(#SVGID_72_);}
  77. .st71{fill:url(#SVGID_73_);}
  78. .st72{fill:url(#SVGID_74_);}
  79. .st73{fill:url(#SVGID_75_);}
  80. .st74{fill:url(#SVGID_76_);}
  81. .st75{fill:url(#SVGID_77_);}
  82. .st76{fill:url(#SVGID_78_);}
  83. .st77{clip-path:url(#SVGID_80_);}
  84. .st78{fill:url(#SVGID_81_);}
  85. .st79{fill:url(#SVGID_82_);}
  86. .st80{fill:url(#SVGID_83_);}
  87. .st81{fill:url(#SVGID_84_);}
  88. .st82{fill:url(#SVGID_85_);}
  89. .st83{fill:url(#SVGID_86_);}
  90. .st84{fill:url(#SVGID_87_);}
  91. .st85{fill:url(#SVGID_88_);}
  92. .st86{fill:url(#SVGID_89_);}
  93. .st87{fill:url(#SVGID_90_);}
  94. .st88{fill:url(#SVGID_91_);}
  95. .st89{fill:url(#SVGID_92_);}
  96. .st90{fill:url(#SVGID_93_);}
  97. .st91{fill:url(#SVGID_94_);}
  98. .st92{fill:url(#SVGID_95_);}
  99. .st93{fill:url(#SVGID_96_);}
  100. .st94{fill:url(#SVGID_97_);}
  101. .st95{fill:url(#SVGID_98_);}
  102. .st96{fill:url(#SVGID_99_);}
  103. .st97{fill:url(#SVGID_100_);}
  104. .st98{fill:url(#SVGID_101_);}
  105. .st99{fill:url(#SVGID_102_);}
  106. .st100{fill:url(#SVGID_103_);}
  107. .st101{fill:url(#SVGID_104_);}
  108. .st102{fill:url(#SVGID_105_);}
  109. .st103{fill:url(#SVGID_106_);}
  110. .st104{fill:url(#SVGID_107_);}
  111. .st105{fill:url(#SVGID_108_);}
  112. .st106{fill:url(#SVGID_109_);}
  113. .st107{fill:url(#SVGID_110_);}
  114. .st108{fill:url(#SVGID_111_);}
  115. .st109{fill:url(#SVGID_112_);}
  116. .st110{fill:url(#SVGID_113_);}
  117. .st111{fill:url(#SVGID_114_);}
  118. .st112{fill:url(#SVGID_115_);}
  119. .st113{fill:url(#SVGID_116_);}
  120. .st114{fill:url(#SVGID_117_);}
  121. .st115{fill:url(#SVGID_118_);}
  122. .st116{fill:url(#SVGID_119_);}
  123. .st117{fill:url(#SVGID_120_);}
  124. .st118{fill:url(#SVGID_121_);}
  125. .st119{fill:url(#SVGID_122_);}
  126. .st120{fill:url(#SVGID_123_);}
  127. .st121{fill:url(#SVGID_124_);}
  128. .st122{fill:url(#SVGID_125_);}
  129. .st123{fill:url(#SVGID_126_);}
  130. .st124{fill:url(#SVGID_127_);}
  131. .st125{fill:url(#SVGID_128_);}
  132. .st126{fill:url(#SVGID_129_);}
  133. .st127{fill:url(#SVGID_130_);}
  134. .st128{fill:url(#SVGID_131_);}
  135. .st129{fill:url(#SVGID_132_);}
  136. .st130{fill:url(#SVGID_133_);}
  137. .st131{fill:url(#SVGID_134_);}
  138. .st132{fill:url(#SVGID_135_);}
  139. .st133{fill:url(#SVGID_136_);}
  140. .st134{fill:url(#SVGID_137_);}
  141. .st135{fill:url(#SVGID_138_);}
  142. .st136{fill:url(#SVGID_139_);}
  143. .st137{fill:url(#SVGID_140_);}
  144. .st138{fill:url(#SVGID_141_);}
  145. .st139{fill:url(#SVGID_142_);}
  146. .st140{fill:url(#SVGID_143_);}
  147. .st141{fill:url(#SVGID_144_);}
  148. .st142{fill:url(#SVGID_145_);}
  149. .st143{fill:url(#SVGID_146_);}
  150. .st144{fill:url(#SVGID_147_);}
  151. .st145{fill:url(#SVGID_148_);}
  152. .st146{fill:url(#SVGID_149_);}
  153. .st147{fill:url(#SVGID_150_);}
  154. .st148{fill:url(#SVGID_151_);}
  155. .st149{fill:url(#SVGID_152_);}
  156. .st150{fill:url(#SVGID_153_);}
  157. .st151{fill:url(#SVGID_154_);}
  158. .st152{fill:url(#SVGID_155_);}
  159. .st153{fill:url(#SVGID_156_);}
  160. .st154{fill:url(#SVGID_157_);}
  161. .st155{fill:url(#SVGID_158_);}
  162. .st156{fill:url(#SVGID_159_);}
  163. .st157{fill:url(#SVGID_160_);}
  164. .st158{fill:url(#SVGID_161_);}
  165. .st159{fill:url(#SVGID_162_);}
  166. .st160{fill:url(#SVGID_163_);}
  167. .st161{fill:url(#SVGID_164_);}
  168. .st162{fill:url(#SVGID_165_);}
  169. .st163{fill:url(#SVGID_166_);}
  170. .st164{fill:url(#SVGID_167_);}
  171. .st165{fill:url(#SVGID_168_);}
  172. .st166{fill:url(#SVGID_169_);}
  173. .st167{fill:url(#SVGID_170_);}
  174. .st168{fill:url(#SVGID_171_);}
  175. .st169{fill:url(#SVGID_172_);}
  176. .st170{fill:url(#SVGID_173_);}
  177. .st171{fill:url(#SVGID_174_);}
  178. .st172{fill:url(#SVGID_175_);}
  179. .st173{fill:url(#SVGID_176_);}
  180. .st174{fill:url(#SVGID_177_);}
  181. .st175{fill:url(#SVGID_178_);}
  182. .st176{fill:url(#SVGID_179_);}
  183. .st177{fill:url(#SVGID_180_);}
  184. .st178{fill:url(#SVGID_181_);}
  185. .st179{fill:url(#SVGID_182_);}
  186. .st180{fill:url(#SVGID_183_);}
  187. .st181{fill:url(#SVGID_184_);}
  188. .st182{fill:url(#SVGID_185_);}
  189. .st183{fill:url(#SVGID_186_);}
  190. .st184{fill:url(#SVGID_187_);}
  191. .st185{fill:url(#SVGID_188_);}
  192. .st186{fill:url(#SVGID_189_);}
  193. .st187{fill:url(#SVGID_190_);}
  194. .st188{fill:url(#SVGID_191_);}
  195. .st189{fill:url(#SVGID_192_);}
  196. .st190{fill:url(#SVGID_193_);}
  197. .st191{fill:url(#SVGID_194_);}
  198. .st192{fill:url(#SVGID_195_);}
  199. .st193{fill:url(#SVGID_196_);}
  200. .st194{fill:url(#SVGID_197_);}
  201. .st195{fill:url(#SVGID_198_);}
  202. .st196{fill:url(#SVGID_199_);}
  203. .st197{fill:url(#SVGID_200_);}
  204. .st198{fill:url(#SVGID_201_);}
  205. .st199{fill:url(#SVGID_202_);}
  206. .st200{fill:url(#SVGID_203_);}
  207. .st201{fill:url(#SVGID_204_);}
  208. .st202{fill:url(#SVGID_205_);}
  209. .st203{fill:url(#SVGID_206_);}
  210. .st204{fill:url(#SVGID_207_);}
  211. .st205{clip-path:url(#SVGID_209_);}
  212. .st206{fill:url(#SVGID_210_);}
  213. .st207{fill:url(#SVGID_211_);}
  214. .st208{fill:url(#SVGID_212_);}
  215. .st209{fill:url(#SVGID_213_);}
  216. .st210{fill:url(#SVGID_214_);}
  217. .st211{fill:url(#SVGID_215_);}
  218. .st212{fill:url(#SVGID_216_);}
  219. .st213{fill:url(#SVGID_217_);}
  220. .st214{fill:url(#SVGID_218_);}
  221. .st215{fill:url(#SVGID_219_);}
  222. .st216{fill:url(#SVGID_220_);}
  223. .st217{fill:url(#SVGID_221_);}
  224. .st218{fill:url(#SVGID_222_);}
  225. .st219{fill:url(#SVGID_223_);}
  226. .st220{fill:url(#SVGID_224_);}
  227. .st221{fill:url(#SVGID_225_);}
  228. .st222{fill:url(#SVGID_226_);}
  229. .st223{fill:url(#SVGID_227_);}
  230. .st224{fill:url(#SVGID_228_);}
  231. .st225{fill:url(#SVGID_229_);}
  232. .st226{fill:url(#SVGID_230_);}
  233. .st227{fill:url(#SVGID_231_);}
  234. .st228{fill:url(#SVGID_232_);}
  235. .st229{fill:url(#SVGID_233_);}
  236. .st230{fill:url(#SVGID_234_);}
  237. .st231{fill:url(#SVGID_235_);}
  238. .st232{fill:url(#SVGID_236_);}
  239. .st233{fill:url(#SVGID_237_);}
  240. .st234{fill:url(#SVGID_238_);}
  241. .st235{fill:url(#SVGID_239_);}
  242. .st236{fill:url(#SVGID_240_);}
  243. .st237{fill:url(#SVGID_241_);}
  244. .st238{fill:url(#SVGID_242_);}
  245. .st239{fill:url(#SVGID_243_);}
  246. .st240{fill:url(#SVGID_244_);}
  247. .st241{fill:url(#SVGID_245_);}
  248. .st242{fill:url(#SVGID_246_);}
  249. .st243{fill:url(#SVGID_247_);}
  250. .st244{fill:url(#SVGID_248_);}
  251. .st245{fill:url(#SVGID_249_);}
  252. .st246{fill:url(#SVGID_250_);}
  253. .st247{fill:url(#SVGID_251_);}
  254. .st248{fill:url(#SVGID_252_);}
  255. .st249{fill:url(#SVGID_253_);}
  256. .st250{fill:url(#SVGID_254_);}
  257. .st251{fill:url(#SVGID_255_);}
  258. .st252{fill:url(#SVGID_256_);}
  259. .st253{fill:url(#SVGID_257_);}
  260. .st254{fill:url(#SVGID_258_);}
  261. .st255{fill:url(#SVGID_259_);}
  262. .st256{fill:url(#SVGID_260_);}
  263. .st257{fill:url(#SVGID_261_);}
  264. .st258{fill:url(#SVGID_262_);}
  265. .st259{fill:url(#SVGID_263_);}
  266. .st260{fill:url(#SVGID_264_);}
  267. .st261{fill:url(#SVGID_265_);}
  268. .st262{fill:url(#SVGID_266_);}
  269. .st263{fill:url(#SVGID_267_);}
  270. .st264{fill:url(#SVGID_268_);}
  271. .st265{fill:url(#SVGID_269_);}
  272. .st266{fill:url(#SVGID_270_);}
  273. .st267{fill:url(#SVGID_271_);}
  274. .st268{fill:url(#SVGID_272_);}
  275. .st269{fill:url(#SVGID_273_);}
  276. .st270{fill:url(#SVGID_274_);}
  277. .st271{fill:url(#SVGID_275_);}
  278. .st272{fill:url(#SVGID_276_);}
  279. .st273{fill:url(#SVGID_277_);}
  280. .st274{fill:url(#SVGID_278_);}
  281. .st275{fill:url(#SVGID_279_);}
  282. .st276{fill:url(#SVGID_280_);}
  283. .st277{fill:url(#SVGID_281_);}
  284. .st278{fill:url(#SVGID_282_);}
  285. </style>
  286. <title>iot-管道(21)</title>
  287. <g id="图层_2">
  288. <g>
  289. <defs>
  290. <polygon id="SVGID_1_" points="103.5,200 43.8,200 43.8,290.9 73.3,329.8 103.5,290.9 "/>
  291. </defs>
  292. <clipPath id="SVGID_2_">
  293. <use xlink:href="#SVGID_1_" style="overflow:visible;"/>
  294. </clipPath>
  295. <g class="st0">
  296. <linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="-631.07" y1="601.04" x2="-631.07" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  297. <stop offset="0" style="stop-color:#B7B7B7"/>
  298. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  299. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  300. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  301. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  302. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  303. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  304. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  305. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  306. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  307. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  308. <stop offset="0.95" style="stop-color:#888888"/>
  309. <stop offset="1" style="stop-color:#666666"/>
  310. </linearGradient>
  311. <ellipse class="st1" cx="73.6" cy="193.7" rx="29.5" ry="44.9"/>
  312. <linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="-629.28" y1="601.04" x2="-629.28" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  313. <stop offset="0" style="stop-color:#B7B7B7"/>
  314. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  315. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  316. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  317. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  318. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  319. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  320. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  321. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  322. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  323. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  324. <stop offset="0.95" style="stop-color:#888888"/>
  325. <stop offset="1" style="stop-color:#666666"/>
  326. </linearGradient>
  327. <ellipse class="st2" cx="73.6" cy="192" rx="29.5" ry="44.8"/>
  328. <linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="-627.5" y1="601.04" x2="-627.5" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  329. <stop offset="0" style="stop-color:#B7B7B7"/>
  330. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  331. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  332. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  333. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  334. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  335. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  336. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  337. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  338. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  339. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  340. <stop offset="0.95" style="stop-color:#888888"/>
  341. <stop offset="1" style="stop-color:#666666"/>
  342. </linearGradient>
  343. <ellipse class="st3" cx="73.6" cy="190.2" rx="29.5" ry="44.9"/>
  344. <linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="-625.71" y1="601.04" x2="-625.71" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  345. <stop offset="0" style="stop-color:#B7B7B7"/>
  346. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  347. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  348. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  349. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  350. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  351. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  352. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  353. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  354. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  355. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  356. <stop offset="0.95" style="stop-color:#888888"/>
  357. <stop offset="1" style="stop-color:#666666"/>
  358. </linearGradient>
  359. <ellipse class="st4" cx="73.6" cy="188.4" rx="29.5" ry="44.8"/>
  360. <linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="-623.92" y1="601.04" x2="-623.92" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  361. <stop offset="0" style="stop-color:#B7B7B7"/>
  362. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  363. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  364. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  365. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  366. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  367. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  368. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  369. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  370. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  371. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  372. <stop offset="0.95" style="stop-color:#888888"/>
  373. <stop offset="1" style="stop-color:#666666"/>
  374. </linearGradient>
  375. <ellipse class="st5" cx="73.6" cy="186.6" rx="29.5" ry="44.9"/>
  376. <linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="-622.13" y1="601.04" x2="-622.13" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  377. <stop offset="0" style="stop-color:#B7B7B7"/>
  378. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  379. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  380. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  381. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  382. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  383. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  384. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  385. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  386. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  387. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  388. <stop offset="0.95" style="stop-color:#888888"/>
  389. <stop offset="1" style="stop-color:#666666"/>
  390. </linearGradient>
  391. <ellipse class="st6" cx="73.6" cy="184.8" rx="29.5" ry="44.9"/>
  392. <linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="-620.35" y1="601.04" x2="-620.35" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  393. <stop offset="0" style="stop-color:#B7B7B7"/>
  394. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  395. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  396. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  397. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  398. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  399. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  400. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  401. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  402. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  403. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  404. <stop offset="0.95" style="stop-color:#888888"/>
  405. <stop offset="1" style="stop-color:#666666"/>
  406. </linearGradient>
  407. <ellipse class="st7" cx="73.6" cy="183" rx="29.5" ry="44.9"/>
  408. <linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="-618.56" y1="601.04" x2="-618.56" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  409. <stop offset="0" style="stop-color:#B7B7B7"/>
  410. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  411. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  412. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  413. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  414. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  415. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  416. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  417. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  418. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  419. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  420. <stop offset="0.95" style="stop-color:#888888"/>
  421. <stop offset="1" style="stop-color:#666666"/>
  422. </linearGradient>
  423. <ellipse class="st8" cx="73.6" cy="181.2" rx="29.5" ry="44.8"/>
  424. <linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="-616.77" y1="601.04" x2="-616.77" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  425. <stop offset="0" style="stop-color:#B7B7B7"/>
  426. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  427. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  428. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  429. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  430. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  431. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  432. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  433. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  434. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  435. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  436. <stop offset="0.95" style="stop-color:#888888"/>
  437. <stop offset="1" style="stop-color:#666666"/>
  438. </linearGradient>
  439. <ellipse class="st9" cx="73.6" cy="179.4" rx="29.5" ry="44.8"/>
  440. <linearGradient id="SVGID_12_" gradientUnits="userSpaceOnUse" x1="-614.99" y1="601.04" x2="-614.99" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  441. <stop offset="0" style="stop-color:#B7B7B7"/>
  442. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  443. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  444. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  445. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  446. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  447. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  448. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  449. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  450. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  451. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  452. <stop offset="0.95" style="stop-color:#888888"/>
  453. <stop offset="1" style="stop-color:#666666"/>
  454. </linearGradient>
  455. <ellipse class="st10" cx="73.6" cy="177.7" rx="29.5" ry="44.8"/>
  456. <linearGradient id="SVGID_13_" gradientUnits="userSpaceOnUse" x1="-613.2" y1="601.04" x2="-613.2" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  457. <stop offset="0" style="stop-color:#B7B7B7"/>
  458. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  459. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  460. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  461. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  462. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  463. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  464. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  465. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  466. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  467. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  468. <stop offset="0.95" style="stop-color:#888888"/>
  469. <stop offset="1" style="stop-color:#666666"/>
  470. </linearGradient>
  471. <ellipse class="st11" cx="73.6" cy="175.9" rx="29.5" ry="44.9"/>
  472. <linearGradient id="SVGID_14_" gradientUnits="userSpaceOnUse" x1="-611.41" y1="601.04" x2="-611.41" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  473. <stop offset="0" style="stop-color:#B7B7B7"/>
  474. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  475. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  476. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  477. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  478. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  479. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  480. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  481. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  482. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  483. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  484. <stop offset="0.95" style="stop-color:#888888"/>
  485. <stop offset="1" style="stop-color:#666666"/>
  486. </linearGradient>
  487. <ellipse class="st12" cx="73.6" cy="174.1" rx="29.5" ry="44.9"/>
  488. <linearGradient id="SVGID_15_" gradientUnits="userSpaceOnUse" x1="-609.62" y1="601.04" x2="-609.62" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  489. <stop offset="0" style="stop-color:#B7B7B7"/>
  490. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  491. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  492. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  493. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  494. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  495. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  496. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  497. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  498. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  499. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  500. <stop offset="0.95" style="stop-color:#888888"/>
  501. <stop offset="1" style="stop-color:#666666"/>
  502. </linearGradient>
  503. <ellipse class="st13" cx="73.6" cy="172.3" rx="29.5" ry="44.8"/>
  504. <linearGradient id="SVGID_16_" gradientUnits="userSpaceOnUse" x1="-607.84" y1="601.04" x2="-607.84" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  505. <stop offset="0" style="stop-color:#B7B7B7"/>
  506. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  507. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  508. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  509. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  510. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  511. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  512. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  513. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  514. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  515. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  516. <stop offset="0.95" style="stop-color:#888888"/>
  517. <stop offset="1" style="stop-color:#666666"/>
  518. </linearGradient>
  519. <ellipse class="st14" cx="73.6" cy="170.5" rx="29.5" ry="44.8"/>
  520. <linearGradient id="SVGID_17_" gradientUnits="userSpaceOnUse" x1="-606.05" y1="601.04" x2="-606.05" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  521. <stop offset="0" style="stop-color:#B7B7B7"/>
  522. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  523. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  524. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  525. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  526. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  527. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  528. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  529. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  530. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  531. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  532. <stop offset="0.95" style="stop-color:#888888"/>
  533. <stop offset="1" style="stop-color:#666666"/>
  534. </linearGradient>
  535. <ellipse class="st15" cx="73.6" cy="168.7" rx="29.5" ry="44.8"/>
  536. <linearGradient id="SVGID_18_" gradientUnits="userSpaceOnUse" x1="-604.26" y1="601.04" x2="-604.26" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  537. <stop offset="0" style="stop-color:#B7B7B7"/>
  538. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  539. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  540. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  541. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  542. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  543. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  544. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  545. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  546. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  547. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  548. <stop offset="0.95" style="stop-color:#888888"/>
  549. <stop offset="1" style="stop-color:#666666"/>
  550. </linearGradient>
  551. <ellipse class="st16" cx="73.6" cy="166.9" rx="29.5" ry="44.9"/>
  552. <linearGradient id="SVGID_19_" gradientUnits="userSpaceOnUse" x1="-602.47" y1="601.04" x2="-602.47" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  553. <stop offset="0" style="stop-color:#B7B7B7"/>
  554. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  555. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  556. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  557. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  558. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  559. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  560. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  561. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  562. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  563. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  564. <stop offset="0.95" style="stop-color:#888888"/>
  565. <stop offset="1" style="stop-color:#666666"/>
  566. </linearGradient>
  567. <ellipse class="st17" cx="73.6" cy="165.1" rx="29.5" ry="44.9"/>
  568. <linearGradient id="SVGID_20_" gradientUnits="userSpaceOnUse" x1="-600.69" y1="601.04" x2="-600.69" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  569. <stop offset="0" style="stop-color:#B7B7B7"/>
  570. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  571. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  572. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  573. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  574. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  575. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  576. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  577. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  578. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  579. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  580. <stop offset="0.95" style="stop-color:#888888"/>
  581. <stop offset="1" style="stop-color:#666666"/>
  582. </linearGradient>
  583. <ellipse class="st18" cx="73.6" cy="163.4" rx="29.5" ry="44.9"/>
  584. <linearGradient id="SVGID_21_" gradientUnits="userSpaceOnUse" x1="-598.9" y1="601.04" x2="-598.9" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  585. <stop offset="0" style="stop-color:#B7B7B7"/>
  586. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  587. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  588. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  589. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  590. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  591. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  592. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  593. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  594. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  595. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  596. <stop offset="0.95" style="stop-color:#888888"/>
  597. <stop offset="1" style="stop-color:#666666"/>
  598. </linearGradient>
  599. <ellipse class="st19" cx="73.6" cy="161.6" rx="29.5" ry="44.8"/>
  600. <linearGradient id="SVGID_22_" gradientUnits="userSpaceOnUse" x1="-597.11" y1="601.04" x2="-597.11" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  601. <stop offset="0" style="stop-color:#B7B7B7"/>
  602. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  603. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  604. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  605. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  606. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  607. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  608. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  609. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  610. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  611. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  612. <stop offset="0.95" style="stop-color:#888888"/>
  613. <stop offset="1" style="stop-color:#666666"/>
  614. </linearGradient>
  615. <ellipse class="st20" cx="73.6" cy="159.8" rx="29.5" ry="44.8"/>
  616. <linearGradient id="SVGID_23_" gradientUnits="userSpaceOnUse" x1="-595.33" y1="601.04" x2="-595.33" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  617. <stop offset="0" style="stop-color:#B7B7B7"/>
  618. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  619. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  620. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  621. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  622. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  623. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  624. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  625. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  626. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  627. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  628. <stop offset="0.95" style="stop-color:#888888"/>
  629. <stop offset="1" style="stop-color:#666666"/>
  630. </linearGradient>
  631. <ellipse class="st21" cx="73.6" cy="158" rx="29.5" ry="44.8"/>
  632. <linearGradient id="SVGID_24_" gradientUnits="userSpaceOnUse" x1="-593.54" y1="601.04" x2="-593.54" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  633. <stop offset="0" style="stop-color:#B7B7B7"/>
  634. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  635. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  636. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  637. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  638. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  639. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  640. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  641. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  642. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  643. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  644. <stop offset="0.95" style="stop-color:#888888"/>
  645. <stop offset="1" style="stop-color:#666666"/>
  646. </linearGradient>
  647. <ellipse class="st22" cx="73.6" cy="156.2" rx="29.5" ry="44.9"/>
  648. <linearGradient id="SVGID_25_" gradientUnits="userSpaceOnUse" x1="-591.75" y1="601.04" x2="-591.75" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  649. <stop offset="0" style="stop-color:#B7B7B7"/>
  650. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  651. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  652. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  653. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  654. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  655. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  656. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  657. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  658. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  659. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  660. <stop offset="0.95" style="stop-color:#888888"/>
  661. <stop offset="1" style="stop-color:#666666"/>
  662. </linearGradient>
  663. <ellipse class="st23" cx="73.6" cy="154.4" rx="29.5" ry="44.9"/>
  664. <linearGradient id="SVGID_26_" gradientUnits="userSpaceOnUse" x1="-589.96" y1="601.04" x2="-589.96" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  665. <stop offset="0" style="stop-color:#B7B7B7"/>
  666. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  667. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  668. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  669. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  670. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  671. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  672. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  673. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  674. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  675. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  676. <stop offset="0.95" style="stop-color:#888888"/>
  677. <stop offset="1" style="stop-color:#666666"/>
  678. </linearGradient>
  679. <ellipse class="st24" cx="73.6" cy="152.6" rx="29.5" ry="44.8"/>
  680. <linearGradient id="SVGID_27_" gradientUnits="userSpaceOnUse" x1="-588.18" y1="601.04" x2="-588.18" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  681. <stop offset="0" style="stop-color:#B7B7B7"/>
  682. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  683. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  684. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  685. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  686. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  687. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  688. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  689. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  690. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  691. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  692. <stop offset="0.95" style="stop-color:#888888"/>
  693. <stop offset="1" style="stop-color:#666666"/>
  694. </linearGradient>
  695. <ellipse class="st25" cx="73.6" cy="150.9" rx="29.5" ry="44.8"/>
  696. <linearGradient id="SVGID_28_" gradientUnits="userSpaceOnUse" x1="-586.39" y1="601.04" x2="-586.39" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  697. <stop offset="0" style="stop-color:#B7B7B7"/>
  698. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  699. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  700. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  701. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  702. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  703. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  704. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  705. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  706. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  707. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  708. <stop offset="0.95" style="stop-color:#888888"/>
  709. <stop offset="1" style="stop-color:#666666"/>
  710. </linearGradient>
  711. <ellipse class="st26" cx="73.6" cy="149.1" rx="29.5" ry="44.9"/>
  712. <linearGradient id="SVGID_29_" gradientUnits="userSpaceOnUse" x1="-584.6" y1="601.04" x2="-584.6" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  713. <stop offset="0" style="stop-color:#B7B7B7"/>
  714. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  715. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  716. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  717. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  718. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  719. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  720. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  721. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  722. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  723. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  724. <stop offset="0.95" style="stop-color:#888888"/>
  725. <stop offset="1" style="stop-color:#666666"/>
  726. </linearGradient>
  727. <ellipse class="st27" cx="73.6" cy="147.3" rx="29.5" ry="44.9"/>
  728. <linearGradient id="SVGID_30_" gradientUnits="userSpaceOnUse" x1="-582.82" y1="601.04" x2="-582.82" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  729. <stop offset="0" style="stop-color:#B7B7B7"/>
  730. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  731. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  732. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  733. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  734. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  735. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  736. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  737. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  738. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  739. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  740. <stop offset="0.95" style="stop-color:#888888"/>
  741. <stop offset="1" style="stop-color:#666666"/>
  742. </linearGradient>
  743. <ellipse class="st28" cx="73.6" cy="145.5" rx="29.5" ry="44.9"/>
  744. <linearGradient id="SVGID_31_" gradientUnits="userSpaceOnUse" x1="-581.03" y1="601.04" x2="-581.03" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  745. <stop offset="0" style="stop-color:#B7B7B7"/>
  746. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  747. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  748. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  749. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  750. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  751. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  752. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  753. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  754. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  755. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  756. <stop offset="0.95" style="stop-color:#888888"/>
  757. <stop offset="1" style="stop-color:#666666"/>
  758. </linearGradient>
  759. <ellipse class="st29" cx="73.6" cy="143.7" rx="29.5" ry="44.8"/>
  760. <linearGradient id="SVGID_32_" gradientUnits="userSpaceOnUse" x1="-579.24" y1="601.04" x2="-579.24" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  761. <stop offset="0" style="stop-color:#B7B7B7"/>
  762. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  763. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  764. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  765. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  766. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  767. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  768. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  769. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  770. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  771. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  772. <stop offset="0.95" style="stop-color:#888888"/>
  773. <stop offset="1" style="stop-color:#666666"/>
  774. </linearGradient>
  775. <ellipse class="st30" cx="73.6" cy="141.9" rx="29.5" ry="44.8"/>
  776. <linearGradient id="SVGID_33_" gradientUnits="userSpaceOnUse" x1="-577.45" y1="601.04" x2="-577.45" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  777. <stop offset="0" style="stop-color:#B7B7B7"/>
  778. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  779. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  780. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  781. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  782. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  783. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  784. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  785. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  786. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  787. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  788. <stop offset="0.95" style="stop-color:#888888"/>
  789. <stop offset="1" style="stop-color:#666666"/>
  790. </linearGradient>
  791. <ellipse class="st31" cx="73.6" cy="140.1" rx="29.5" ry="44.9"/>
  792. <linearGradient id="SVGID_34_" gradientUnits="userSpaceOnUse" x1="-575.67" y1="601.04" x2="-575.67" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  793. <stop offset="0" style="stop-color:#B7B7B7"/>
  794. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  795. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  796. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  797. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  798. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  799. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  800. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  801. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  802. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  803. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  804. <stop offset="0.95" style="stop-color:#888888"/>
  805. <stop offset="1" style="stop-color:#666666"/>
  806. </linearGradient>
  807. <ellipse class="st32" cx="73.6" cy="138.3" rx="29.5" ry="44.9"/>
  808. <linearGradient id="SVGID_35_" gradientUnits="userSpaceOnUse" x1="-573.88" y1="601.04" x2="-573.88" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  809. <stop offset="0" style="stop-color:#B7B7B7"/>
  810. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  811. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  812. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  813. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  814. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  815. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  816. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  817. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  818. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  819. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  820. <stop offset="0.95" style="stop-color:#888888"/>
  821. <stop offset="1" style="stop-color:#666666"/>
  822. </linearGradient>
  823. <ellipse class="st33" cx="73.6" cy="136.6" rx="29.5" ry="44.9"/>
  824. <linearGradient id="SVGID_36_" gradientUnits="userSpaceOnUse" x1="-572.09" y1="601.04" x2="-572.09" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  825. <stop offset="0" style="stop-color:#B7B7B7"/>
  826. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  827. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  828. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  829. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  830. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  831. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  832. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  833. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  834. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  835. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  836. <stop offset="0.95" style="stop-color:#888888"/>
  837. <stop offset="1" style="stop-color:#666666"/>
  838. </linearGradient>
  839. <ellipse class="st34" cx="73.6" cy="134.8" rx="29.5" ry="44.8"/>
  840. <linearGradient id="SVGID_37_" gradientUnits="userSpaceOnUse" x1="-570.3" y1="601.04" x2="-570.3" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  841. <stop offset="0" style="stop-color:#B7B7B7"/>
  842. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  843. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  844. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  845. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  846. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  847. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  848. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  849. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  850. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  851. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  852. <stop offset="0.95" style="stop-color:#888888"/>
  853. <stop offset="1" style="stop-color:#666666"/>
  854. </linearGradient>
  855. <ellipse class="st35" cx="73.6" cy="133" rx="29.5" ry="44.8"/>
  856. <linearGradient id="SVGID_38_" gradientUnits="userSpaceOnUse" x1="-568.52" y1="601.04" x2="-568.52" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  857. <stop offset="0" style="stop-color:#B7B7B7"/>
  858. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  859. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  860. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  861. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  862. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  863. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  864. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  865. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  866. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  867. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  868. <stop offset="0.95" style="stop-color:#888888"/>
  869. <stop offset="1" style="stop-color:#666666"/>
  870. </linearGradient>
  871. <ellipse class="st36" cx="73.6" cy="131.2" rx="29.5" ry="44.8"/>
  872. <linearGradient id="SVGID_39_" gradientUnits="userSpaceOnUse" x1="-566.73" y1="601.04" x2="-566.73" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  873. <stop offset="0" style="stop-color:#B7B7B7"/>
  874. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  875. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  876. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  877. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  878. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  879. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  880. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  881. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  882. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  883. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  884. <stop offset="0.95" style="stop-color:#888888"/>
  885. <stop offset="1" style="stop-color:#666666"/>
  886. </linearGradient>
  887. <ellipse class="st37" cx="73.6" cy="129.4" rx="29.5" ry="44.9"/>
  888. <linearGradient id="SVGID_40_" gradientUnits="userSpaceOnUse" x1="-564.94" y1="601.04" x2="-564.94" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  889. <stop offset="0" style="stop-color:#B7B7B7"/>
  890. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  891. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  892. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  893. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  894. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  895. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  896. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  897. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  898. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  899. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  900. <stop offset="0.95" style="stop-color:#888888"/>
  901. <stop offset="1" style="stop-color:#666666"/>
  902. </linearGradient>
  903. <ellipse class="st38" cx="73.6" cy="127.6" rx="29.5" ry="44.8"/>
  904. <linearGradient id="SVGID_41_" gradientUnits="userSpaceOnUse" x1="-563.16" y1="601.04" x2="-563.16" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  905. <stop offset="0" style="stop-color:#B7B7B7"/>
  906. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  907. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  908. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  909. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  910. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  911. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  912. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  913. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  914. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  915. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  916. <stop offset="0.95" style="stop-color:#888888"/>
  917. <stop offset="1" style="stop-color:#666666"/>
  918. </linearGradient>
  919. <ellipse class="st39" cx="73.6" cy="125.8" rx="29.5" ry="44.9"/>
  920. <linearGradient id="SVGID_42_" gradientUnits="userSpaceOnUse" x1="-561.37" y1="601.04" x2="-561.37" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  921. <stop offset="0" style="stop-color:#B7B7B7"/>
  922. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  923. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  924. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  925. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  926. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  927. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  928. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  929. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  930. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  931. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  932. <stop offset="0.95" style="stop-color:#888888"/>
  933. <stop offset="1" style="stop-color:#666666"/>
  934. </linearGradient>
  935. <ellipse class="st40" cx="73.6" cy="124" rx="29.5" ry="44.8"/>
  936. <linearGradient id="SVGID_43_" gradientUnits="userSpaceOnUse" x1="-559.58" y1="601.04" x2="-559.58" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  937. <stop offset="0" style="stop-color:#B7B7B7"/>
  938. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  939. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  940. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  941. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  942. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  943. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  944. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  945. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  946. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  947. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  948. <stop offset="0.95" style="stop-color:#888888"/>
  949. <stop offset="1" style="stop-color:#666666"/>
  950. </linearGradient>
  951. <ellipse class="st41" cx="73.6" cy="122.3" rx="29.5" ry="44.8"/>
  952. <linearGradient id="SVGID_44_" gradientUnits="userSpaceOnUse" x1="-557.79" y1="601.04" x2="-557.79" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  953. <stop offset="0" style="stop-color:#B7B7B7"/>
  954. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  955. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  956. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  957. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  958. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  959. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  960. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  961. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  962. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  963. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  964. <stop offset="0.95" style="stop-color:#888888"/>
  965. <stop offset="1" style="stop-color:#666666"/>
  966. </linearGradient>
  967. <ellipse class="st42" cx="73.6" cy="120.5" rx="29.5" ry="44.9"/>
  968. <linearGradient id="SVGID_45_" gradientUnits="userSpaceOnUse" x1="-556.01" y1="601.04" x2="-556.01" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  969. <stop offset="0" style="stop-color:#B7B7B7"/>
  970. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  971. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  972. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  973. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  974. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  975. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  976. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  977. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  978. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  979. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  980. <stop offset="0.95" style="stop-color:#888888"/>
  981. <stop offset="1" style="stop-color:#666666"/>
  982. </linearGradient>
  983. <ellipse class="st43" cx="73.6" cy="118.7" rx="29.5" ry="44.9"/>
  984. <linearGradient id="SVGID_46_" gradientUnits="userSpaceOnUse" x1="-554.22" y1="601.04" x2="-554.22" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  985. <stop offset="0" style="stop-color:#B7B7B7"/>
  986. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  987. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  988. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  989. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  990. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  991. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  992. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  993. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  994. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  995. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  996. <stop offset="0.95" style="stop-color:#888888"/>
  997. <stop offset="1" style="stop-color:#666666"/>
  998. </linearGradient>
  999. <ellipse class="st44" cx="73.6" cy="116.9" rx="29.5" ry="44.8"/>
  1000. <linearGradient id="SVGID_47_" gradientUnits="userSpaceOnUse" x1="-552.43" y1="601.04" x2="-552.43" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  1001. <stop offset="0" style="stop-color:#B7B7B7"/>
  1002. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1003. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1004. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1005. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1006. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1007. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1008. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1009. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1010. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1011. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1012. <stop offset="0.95" style="stop-color:#888888"/>
  1013. <stop offset="1" style="stop-color:#666666"/>
  1014. </linearGradient>
  1015. <ellipse class="st45" cx="73.6" cy="115.1" rx="29.5" ry="44.8"/>
  1016. <linearGradient id="SVGID_48_" gradientUnits="userSpaceOnUse" x1="-550.65" y1="601.04" x2="-550.65" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  1017. <stop offset="0" style="stop-color:#B7B7B7"/>
  1018. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1019. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1020. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1021. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1022. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1023. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1024. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1025. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1026. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1027. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1028. <stop offset="0.95" style="stop-color:#888888"/>
  1029. <stop offset="1" style="stop-color:#666666"/>
  1030. </linearGradient>
  1031. <ellipse class="st46" cx="73.6" cy="113.3" rx="29.5" ry="44.8"/>
  1032. <linearGradient id="SVGID_49_" gradientUnits="userSpaceOnUse" x1="-548.86" y1="601.04" x2="-548.86" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  1033. <stop offset="0" style="stop-color:#B7B7B7"/>
  1034. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1035. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1036. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1037. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1038. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1039. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1040. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1041. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1042. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1043. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1044. <stop offset="0.95" style="stop-color:#888888"/>
  1045. <stop offset="1" style="stop-color:#666666"/>
  1046. </linearGradient>
  1047. <ellipse class="st47" cx="73.6" cy="111.5" rx="29.5" ry="44.8"/>
  1048. <linearGradient id="SVGID_50_" gradientUnits="userSpaceOnUse" x1="-547.07" y1="601.04" x2="-547.07" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  1049. <stop offset="0" style="stop-color:#B7B7B7"/>
  1050. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1051. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1052. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1053. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1054. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1055. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1056. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1057. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1058. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1059. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1060. <stop offset="0.95" style="stop-color:#888888"/>
  1061. <stop offset="1" style="stop-color:#666666"/>
  1062. </linearGradient>
  1063. <ellipse class="st48" cx="73.6" cy="109.7" rx="29.5" ry="44.9"/>
  1064. <linearGradient id="SVGID_51_" gradientUnits="userSpaceOnUse" x1="-545.28" y1="601.04" x2="-545.28" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  1065. <stop offset="0" style="stop-color:#B7B7B7"/>
  1066. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1067. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1068. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1069. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1070. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1071. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1072. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1073. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1074. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1075. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1076. <stop offset="0.95" style="stop-color:#888888"/>
  1077. <stop offset="1" style="stop-color:#666666"/>
  1078. </linearGradient>
  1079. <ellipse class="st49" cx="73.6" cy="108" rx="29.5" ry="44.8"/>
  1080. <linearGradient id="SVGID_52_" gradientUnits="userSpaceOnUse" x1="-543.5" y1="601.04" x2="-543.5" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  1081. <stop offset="0" style="stop-color:#B7B7B7"/>
  1082. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1083. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1084. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1085. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1086. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1087. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1088. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1089. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1090. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1091. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1092. <stop offset="0.95" style="stop-color:#888888"/>
  1093. <stop offset="1" style="stop-color:#666666"/>
  1094. </linearGradient>
  1095. <ellipse class="st50" cx="73.6" cy="106.2" rx="29.5" ry="44.8"/>
  1096. <linearGradient id="SVGID_53_" gradientUnits="userSpaceOnUse" x1="-541.71" y1="601.04" x2="-541.71" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  1097. <stop offset="0" style="stop-color:#B7B7B7"/>
  1098. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1099. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1100. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1101. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1102. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1103. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1104. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1105. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1106. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1107. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1108. <stop offset="0.95" style="stop-color:#888888"/>
  1109. <stop offset="1" style="stop-color:#666666"/>
  1110. </linearGradient>
  1111. <ellipse class="st51" cx="73.6" cy="104.4" rx="29.5" ry="44.8"/>
  1112. <linearGradient id="SVGID_54_" gradientUnits="userSpaceOnUse" x1="-539.92" y1="601.04" x2="-539.92" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  1113. <stop offset="0" style="stop-color:#B7B7B7"/>
  1114. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1115. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1116. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1117. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1118. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1119. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1120. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1121. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1122. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1123. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1124. <stop offset="0.95" style="stop-color:#888888"/>
  1125. <stop offset="1" style="stop-color:#666666"/>
  1126. </linearGradient>
  1127. <ellipse class="st52" cx="73.6" cy="102.6" rx="29.5" ry="44.8"/>
  1128. <linearGradient id="SVGID_55_" gradientUnits="userSpaceOnUse" x1="-538.13" y1="601.04" x2="-538.13" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  1129. <stop offset="0" style="stop-color:#B7B7B7"/>
  1130. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1131. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1132. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1133. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1134. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1135. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1136. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1137. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1138. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1139. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1140. <stop offset="0.95" style="stop-color:#888888"/>
  1141. <stop offset="1" style="stop-color:#666666"/>
  1142. </linearGradient>
  1143. <ellipse class="st53" cx="73.6" cy="100.8" rx="29.5" ry="44.9"/>
  1144. <linearGradient id="SVGID_56_" gradientUnits="userSpaceOnUse" x1="-536.35" y1="601.04" x2="-536.35" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  1145. <stop offset="0" style="stop-color:#B7B7B7"/>
  1146. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1147. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1148. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1149. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1150. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1151. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1152. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1153. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1154. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1155. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1156. <stop offset="0.95" style="stop-color:#888888"/>
  1157. <stop offset="1" style="stop-color:#666666"/>
  1158. </linearGradient>
  1159. <ellipse class="st54" cx="73.6" cy="99" rx="29.5" ry="44.9"/>
  1160. <linearGradient id="SVGID_57_" gradientUnits="userSpaceOnUse" x1="-534.56" y1="601.04" x2="-534.56" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  1161. <stop offset="0" style="stop-color:#B7B7B7"/>
  1162. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1163. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1164. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1165. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1166. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1167. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1168. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1169. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1170. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1171. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1172. <stop offset="0.95" style="stop-color:#888888"/>
  1173. <stop offset="1" style="stop-color:#666666"/>
  1174. </linearGradient>
  1175. <ellipse class="st55" cx="73.6" cy="97.2" rx="29.5" ry="44.8"/>
  1176. <linearGradient id="SVGID_58_" gradientUnits="userSpaceOnUse" x1="-532.77" y1="601.04" x2="-532.77" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  1177. <stop offset="0" style="stop-color:#B7B7B7"/>
  1178. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1179. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1180. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1181. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1182. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1183. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1184. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1185. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1186. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1187. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1188. <stop offset="0.95" style="stop-color:#888888"/>
  1189. <stop offset="1" style="stop-color:#666666"/>
  1190. </linearGradient>
  1191. <ellipse class="st56" cx="73.6" cy="95.4" rx="29.5" ry="44.8"/>
  1192. <linearGradient id="SVGID_59_" gradientUnits="userSpaceOnUse" x1="-530.99" y1="601.04" x2="-530.99" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  1193. <stop offset="0" style="stop-color:#B7B7B7"/>
  1194. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1195. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1196. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1197. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1198. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1199. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1200. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1201. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1202. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1203. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1204. <stop offset="0.95" style="stop-color:#888888"/>
  1205. <stop offset="1" style="stop-color:#666666"/>
  1206. </linearGradient>
  1207. <ellipse class="st57" cx="73.6" cy="93.7" rx="29.5" ry="44.8"/>
  1208. <linearGradient id="SVGID_60_" gradientUnits="userSpaceOnUse" x1="-529.2" y1="601.04" x2="-529.2" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  1209. <stop offset="0" style="stop-color:#B7B7B7"/>
  1210. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1211. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1212. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1213. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1214. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1215. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1216. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1217. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1218. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1219. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1220. <stop offset="0.95" style="stop-color:#888888"/>
  1221. <stop offset="1" style="stop-color:#666666"/>
  1222. </linearGradient>
  1223. <ellipse class="st58" cx="73.6" cy="91.9" rx="29.5" ry="44.8"/>
  1224. <linearGradient id="SVGID_61_" gradientUnits="userSpaceOnUse" x1="-527.41" y1="601.04" x2="-527.41" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  1225. <stop offset="0" style="stop-color:#B7B7B7"/>
  1226. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1227. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1228. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1229. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1230. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1231. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1232. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1233. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1234. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1235. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1236. <stop offset="0.95" style="stop-color:#888888"/>
  1237. <stop offset="1" style="stop-color:#666666"/>
  1238. </linearGradient>
  1239. <ellipse class="st59" cx="73.6" cy="90.1" rx="29.5" ry="44.9"/>
  1240. <linearGradient id="SVGID_62_" gradientUnits="userSpaceOnUse" x1="-525.62" y1="601.04" x2="-525.62" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  1241. <stop offset="0" style="stop-color:#B7B7B7"/>
  1242. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1243. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1244. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1245. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1246. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1247. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1248. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1249. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1250. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1251. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1252. <stop offset="0.95" style="stop-color:#888888"/>
  1253. <stop offset="1" style="stop-color:#666666"/>
  1254. </linearGradient>
  1255. <ellipse class="st60" cx="73.6" cy="88.3" rx="29.5" ry="44.8"/>
  1256. <linearGradient id="SVGID_63_" gradientUnits="userSpaceOnUse" x1="-523.84" y1="601.04" x2="-523.84" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  1257. <stop offset="0" style="stop-color:#B7B7B7"/>
  1258. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1259. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1260. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1261. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1262. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1263. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1264. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1265. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1266. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1267. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1268. <stop offset="0.95" style="stop-color:#888888"/>
  1269. <stop offset="1" style="stop-color:#666666"/>
  1270. </linearGradient>
  1271. <ellipse class="st61" cx="73.6" cy="86.5" rx="29.5" ry="44.8"/>
  1272. <linearGradient id="SVGID_64_" gradientUnits="userSpaceOnUse" x1="-522.05" y1="601.04" x2="-522.05" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  1273. <stop offset="0" style="stop-color:#B7B7B7"/>
  1274. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1275. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1276. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1277. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1278. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1279. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1280. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1281. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1282. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1283. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1284. <stop offset="0.95" style="stop-color:#888888"/>
  1285. <stop offset="1" style="stop-color:#666666"/>
  1286. </linearGradient>
  1287. <ellipse class="st62" cx="73.6" cy="84.7" rx="29.5" ry="44.8"/>
  1288. <linearGradient id="SVGID_65_" gradientUnits="userSpaceOnUse" x1="-520.26" y1="601.04" x2="-520.26" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  1289. <stop offset="0" style="stop-color:#B7B7B7"/>
  1290. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1291. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1292. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1293. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1294. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1295. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1296. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1297. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1298. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1299. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1300. <stop offset="0.95" style="stop-color:#888888"/>
  1301. <stop offset="1" style="stop-color:#666666"/>
  1302. </linearGradient>
  1303. <ellipse class="st63" cx="73.6" cy="82.9" rx="29.5" ry="44.8"/>
  1304. <linearGradient id="SVGID_66_" gradientUnits="userSpaceOnUse" x1="-518.48" y1="601.04" x2="-518.48" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  1305. <stop offset="0" style="stop-color:#B7B7B7"/>
  1306. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1307. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1308. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1309. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1310. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1311. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1312. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1313. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1314. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1315. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1316. <stop offset="0.95" style="stop-color:#888888"/>
  1317. <stop offset="1" style="stop-color:#666666"/>
  1318. </linearGradient>
  1319. <ellipse class="st64" cx="73.6" cy="81.2" rx="29.5" ry="44.8"/>
  1320. <linearGradient id="SVGID_67_" gradientUnits="userSpaceOnUse" x1="-516.69" y1="601.04" x2="-516.69" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  1321. <stop offset="0" style="stop-color:#B7B7B7"/>
  1322. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1323. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1324. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1325. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1326. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1327. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1328. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1329. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1330. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1331. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1332. <stop offset="0.95" style="stop-color:#888888"/>
  1333. <stop offset="1" style="stop-color:#666666"/>
  1334. </linearGradient>
  1335. <ellipse class="st65" cx="73.6" cy="79.4" rx="29.5" ry="44.8"/>
  1336. <linearGradient id="SVGID_68_" gradientUnits="userSpaceOnUse" x1="-514.9" y1="601.04" x2="-514.9" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  1337. <stop offset="0" style="stop-color:#B7B7B7"/>
  1338. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1339. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1340. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1341. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1342. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1343. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1344. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1345. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1346. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1347. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1348. <stop offset="0.95" style="stop-color:#888888"/>
  1349. <stop offset="1" style="stop-color:#666666"/>
  1350. </linearGradient>
  1351. <ellipse class="st66" cx="73.6" cy="77.6" rx="29.5" ry="44.8"/>
  1352. <linearGradient id="SVGID_69_" gradientUnits="userSpaceOnUse" x1="-513.11" y1="601.04" x2="-513.11" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  1353. <stop offset="0" style="stop-color:#B7B7B7"/>
  1354. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1355. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1356. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1357. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1358. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1359. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1360. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1361. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1362. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1363. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1364. <stop offset="0.95" style="stop-color:#888888"/>
  1365. <stop offset="1" style="stop-color:#666666"/>
  1366. </linearGradient>
  1367. <ellipse class="st67" cx="73.6" cy="75.8" rx="29.5" ry="44.8"/>
  1368. <linearGradient id="SVGID_70_" gradientUnits="userSpaceOnUse" x1="-511.33" y1="601.04" x2="-511.33" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  1369. <stop offset="0" style="stop-color:#B7B7B7"/>
  1370. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1371. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1372. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1373. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1374. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1375. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1376. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1377. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1378. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1379. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1380. <stop offset="0.95" style="stop-color:#888888"/>
  1381. <stop offset="1" style="stop-color:#666666"/>
  1382. </linearGradient>
  1383. <ellipse class="st68" cx="73.6" cy="74" rx="29.5" ry="44.8"/>
  1384. <linearGradient id="SVGID_71_" gradientUnits="userSpaceOnUse" x1="-509.54" y1="601.04" x2="-509.54" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  1385. <stop offset="0" style="stop-color:#B7B7B7"/>
  1386. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1387. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1388. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1389. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1390. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1391. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1392. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1393. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1394. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1395. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1396. <stop offset="0.95" style="stop-color:#888888"/>
  1397. <stop offset="1" style="stop-color:#666666"/>
  1398. </linearGradient>
  1399. <ellipse class="st69" cx="73.6" cy="72.2" rx="29.5" ry="44.8"/>
  1400. <linearGradient id="SVGID_72_" gradientUnits="userSpaceOnUse" x1="-507.75" y1="601.04" x2="-507.75" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  1401. <stop offset="0" style="stop-color:#B7B7B7"/>
  1402. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1403. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1404. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1405. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1406. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1407. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1408. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1409. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1410. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1411. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1412. <stop offset="0.95" style="stop-color:#888888"/>
  1413. <stop offset="1" style="stop-color:#666666"/>
  1414. </linearGradient>
  1415. <ellipse class="st70" cx="73.6" cy="70.4" rx="29.5" ry="44.8"/>
  1416. <linearGradient id="SVGID_73_" gradientUnits="userSpaceOnUse" x1="-505.96" y1="601.04" x2="-505.96" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  1417. <stop offset="0" style="stop-color:#B7B7B7"/>
  1418. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1419. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1420. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1421. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1422. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1423. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1424. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1425. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1426. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1427. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1428. <stop offset="0.95" style="stop-color:#888888"/>
  1429. <stop offset="1" style="stop-color:#666666"/>
  1430. </linearGradient>
  1431. <ellipse class="st71" cx="73.6" cy="68.6" rx="29.5" ry="44.8"/>
  1432. <linearGradient id="SVGID_74_" gradientUnits="userSpaceOnUse" x1="-504.18" y1="601.04" x2="-504.18" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  1433. <stop offset="0" style="stop-color:#B7B7B7"/>
  1434. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1435. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1436. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1437. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1438. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1439. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1440. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1441. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1442. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1443. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1444. <stop offset="0.95" style="stop-color:#888888"/>
  1445. <stop offset="1" style="stop-color:#666666"/>
  1446. </linearGradient>
  1447. <ellipse class="st72" cx="73.6" cy="66.9" rx="29.5" ry="44.8"/>
  1448. <linearGradient id="SVGID_75_" gradientUnits="userSpaceOnUse" x1="-502.39" y1="601.04" x2="-502.39" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  1449. <stop offset="0" style="stop-color:#B7B7B7"/>
  1450. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1451. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1452. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1453. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1454. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1455. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1456. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1457. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1458. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1459. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1460. <stop offset="0.95" style="stop-color:#888888"/>
  1461. <stop offset="1" style="stop-color:#666666"/>
  1462. </linearGradient>
  1463. <ellipse class="st73" cx="73.6" cy="65.1" rx="29.5" ry="44.8"/>
  1464. <linearGradient id="SVGID_76_" gradientUnits="userSpaceOnUse" x1="-500.6" y1="601.04" x2="-500.6" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  1465. <stop offset="0" style="stop-color:#B7B7B7"/>
  1466. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1467. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1468. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1469. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1470. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1471. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1472. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1473. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1474. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1475. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1476. <stop offset="0.95" style="stop-color:#888888"/>
  1477. <stop offset="1" style="stop-color:#666666"/>
  1478. </linearGradient>
  1479. <ellipse class="st74" cx="73.6" cy="63.3" rx="29.5" ry="44.8"/>
  1480. <linearGradient id="SVGID_77_" gradientUnits="userSpaceOnUse" x1="-498.82" y1="601.04" x2="-498.82" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  1481. <stop offset="0" style="stop-color:#B7B7B7"/>
  1482. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1483. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1484. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1485. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1486. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1487. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1488. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1489. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1490. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1491. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1492. <stop offset="0.95" style="stop-color:#888888"/>
  1493. <stop offset="1" style="stop-color:#666666"/>
  1494. </linearGradient>
  1495. <ellipse class="st75" cx="73.6" cy="61.5" rx="29.5" ry="44.8"/>
  1496. <linearGradient id="SVGID_78_" gradientUnits="userSpaceOnUse" x1="-497.03" y1="601.04" x2="-497.03" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
  1497. <stop offset="0" style="stop-color:#B7B7B7"/>
  1498. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1499. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1500. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1501. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1502. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1503. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1504. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1505. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1506. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1507. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1508. <stop offset="0.95" style="stop-color:#888888"/>
  1509. <stop offset="1" style="stop-color:#666666"/>
  1510. </linearGradient>
  1511. <ellipse class="st76" cx="73.6" cy="59.7" rx="29.5" ry="44.8"/>
  1512. </g>
  1513. </g>
  1514. </g>
  1515. <g id="图层_4">
  1516. <g>
  1517. <defs>
  1518. <rect id="SVGID_79_" y="0" width="63" height="150"/>
  1519. </defs>
  1520. <clipPath id="SVGID_80_">
  1521. <use xlink:href="#SVGID_79_" style="overflow:visible;"/>
  1522. </clipPath>
  1523. <g class="st77">
  1524. <linearGradient id="SVGID_81_" gradientUnits="userSpaceOnUse" x1="-444.86" y1="214.65" x2="-444.86" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  1525. <stop offset="0" style="stop-color:#B7B7B7"/>
  1526. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1527. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1528. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1529. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1530. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1531. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1532. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1533. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1534. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1535. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1536. <stop offset="0.95" style="stop-color:#888888"/>
  1537. <stop offset="1" style="stop-color:#666666"/>
  1538. </linearGradient>
  1539. <circle class="st78" cx="31.9" cy="0" r="31"/>
  1540. <linearGradient id="SVGID_82_" gradientUnits="userSpaceOnUse" x1="-443.63" y1="214.65" x2="-443.63" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  1541. <stop offset="0" style="stop-color:#B7B7B7"/>
  1542. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1543. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1544. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1545. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1546. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1547. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1548. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1549. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1550. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1551. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1552. <stop offset="0.95" style="stop-color:#888888"/>
  1553. <stop offset="1" style="stop-color:#666666"/>
  1554. </linearGradient>
  1555. <circle class="st79" cx="31.9" cy="1.2" r="31"/>
  1556. <linearGradient id="SVGID_83_" gradientUnits="userSpaceOnUse" x1="-442.39" y1="214.65" x2="-442.39" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  1557. <stop offset="0" style="stop-color:#B7B7B7"/>
  1558. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1559. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1560. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1561. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1562. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1563. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1564. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1565. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1566. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1567. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1568. <stop offset="0.95" style="stop-color:#888888"/>
  1569. <stop offset="1" style="stop-color:#666666"/>
  1570. </linearGradient>
  1571. <circle class="st80" cx="31.9" cy="2.5" r="31"/>
  1572. <linearGradient id="SVGID_84_" gradientUnits="userSpaceOnUse" x1="-441.15" y1="214.65" x2="-441.15" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  1573. <stop offset="0" style="stop-color:#B7B7B7"/>
  1574. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1575. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1576. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1577. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1578. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1579. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1580. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1581. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1582. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1583. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1584. <stop offset="0.95" style="stop-color:#888888"/>
  1585. <stop offset="1" style="stop-color:#666666"/>
  1586. </linearGradient>
  1587. <circle class="st81" cx="31.9" cy="3.7" r="31"/>
  1588. <linearGradient id="SVGID_85_" gradientUnits="userSpaceOnUse" x1="-439.91" y1="214.65" x2="-439.91" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  1589. <stop offset="0" style="stop-color:#B7B7B7"/>
  1590. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1591. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1592. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1593. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1594. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1595. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1596. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1597. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1598. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1599. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1600. <stop offset="0.95" style="stop-color:#888888"/>
  1601. <stop offset="1" style="stop-color:#666666"/>
  1602. </linearGradient>
  1603. <circle class="st82" cx="31.9" cy="4.9" r="31"/>
  1604. <linearGradient id="SVGID_86_" gradientUnits="userSpaceOnUse" x1="-438.68" y1="214.65" x2="-438.68" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  1605. <stop offset="0" style="stop-color:#B7B7B7"/>
  1606. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1607. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1608. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1609. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1610. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1611. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1612. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1613. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1614. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1615. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1616. <stop offset="0.95" style="stop-color:#888888"/>
  1617. <stop offset="1" style="stop-color:#666666"/>
  1618. </linearGradient>
  1619. <circle class="st83" cx="31.9" cy="6.2" r="31"/>
  1620. <linearGradient id="SVGID_87_" gradientUnits="userSpaceOnUse" x1="-437.44" y1="214.65" x2="-437.44" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  1621. <stop offset="0" style="stop-color:#B7B7B7"/>
  1622. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1623. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1624. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1625. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1626. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1627. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1628. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1629. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1630. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1631. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1632. <stop offset="0.95" style="stop-color:#888888"/>
  1633. <stop offset="1" style="stop-color:#666666"/>
  1634. </linearGradient>
  1635. <circle class="st84" cx="31.9" cy="7.4" r="31"/>
  1636. <linearGradient id="SVGID_88_" gradientUnits="userSpaceOnUse" x1="-436.2" y1="214.65" x2="-436.2" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  1637. <stop offset="0" style="stop-color:#B7B7B7"/>
  1638. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1639. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1640. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1641. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1642. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1643. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1644. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1645. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1646. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1647. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1648. <stop offset="0.95" style="stop-color:#888888"/>
  1649. <stop offset="1" style="stop-color:#666666"/>
  1650. </linearGradient>
  1651. <circle class="st85" cx="31.9" cy="8.7" r="31"/>
  1652. <linearGradient id="SVGID_89_" gradientUnits="userSpaceOnUse" x1="-434.96" y1="214.65" x2="-434.96" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  1653. <stop offset="0" style="stop-color:#B7B7B7"/>
  1654. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1655. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1656. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1657. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1658. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1659. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1660. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1661. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1662. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1663. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1664. <stop offset="0.95" style="stop-color:#888888"/>
  1665. <stop offset="1" style="stop-color:#666666"/>
  1666. </linearGradient>
  1667. <circle class="st86" cx="31.9" cy="9.9" r="31"/>
  1668. <linearGradient id="SVGID_90_" gradientUnits="userSpaceOnUse" x1="-433.73" y1="214.65" x2="-433.73" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  1669. <stop offset="0" style="stop-color:#B7B7B7"/>
  1670. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1671. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1672. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1673. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1674. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1675. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1676. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1677. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1678. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1679. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1680. <stop offset="0.95" style="stop-color:#888888"/>
  1681. <stop offset="1" style="stop-color:#666666"/>
  1682. </linearGradient>
  1683. <circle class="st87" cx="31.9" cy="11.1" r="31"/>
  1684. <linearGradient id="SVGID_91_" gradientUnits="userSpaceOnUse" x1="-432.49" y1="214.65" x2="-432.49" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  1685. <stop offset="0" style="stop-color:#B7B7B7"/>
  1686. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1687. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1688. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1689. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1690. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1691. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1692. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1693. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1694. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1695. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1696. <stop offset="0.95" style="stop-color:#888888"/>
  1697. <stop offset="1" style="stop-color:#666666"/>
  1698. </linearGradient>
  1699. <circle class="st88" cx="31.9" cy="12.4" r="31"/>
  1700. <linearGradient id="SVGID_92_" gradientUnits="userSpaceOnUse" x1="-431.25" y1="214.65" x2="-431.25" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  1701. <stop offset="0" style="stop-color:#B7B7B7"/>
  1702. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1703. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1704. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1705. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1706. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1707. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1708. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1709. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1710. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1711. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1712. <stop offset="0.95" style="stop-color:#888888"/>
  1713. <stop offset="1" style="stop-color:#666666"/>
  1714. </linearGradient>
  1715. <circle class="st89" cx="31.9" cy="13.6" r="31"/>
  1716. <linearGradient id="SVGID_93_" gradientUnits="userSpaceOnUse" x1="-430.01" y1="214.65" x2="-430.01" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  1717. <stop offset="0" style="stop-color:#B7B7B7"/>
  1718. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1719. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1720. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1721. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1722. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1723. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1724. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1725. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1726. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1727. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1728. <stop offset="0.95" style="stop-color:#888888"/>
  1729. <stop offset="1" style="stop-color:#666666"/>
  1730. </linearGradient>
  1731. <circle class="st90" cx="31.9" cy="14.8" r="31"/>
  1732. <linearGradient id="SVGID_94_" gradientUnits="userSpaceOnUse" x1="-428.78" y1="214.65" x2="-428.78" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  1733. <stop offset="0" style="stop-color:#B7B7B7"/>
  1734. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1735. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1736. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1737. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1738. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1739. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1740. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1741. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1742. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1743. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1744. <stop offset="0.95" style="stop-color:#888888"/>
  1745. <stop offset="1" style="stop-color:#666666"/>
  1746. </linearGradient>
  1747. <circle class="st91" cx="31.9" cy="16.1" r="31"/>
  1748. <linearGradient id="SVGID_95_" gradientUnits="userSpaceOnUse" x1="-427.54" y1="214.65" x2="-427.54" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  1749. <stop offset="0" style="stop-color:#B7B7B7"/>
  1750. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1751. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1752. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1753. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1754. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1755. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1756. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1757. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1758. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1759. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1760. <stop offset="0.95" style="stop-color:#888888"/>
  1761. <stop offset="1" style="stop-color:#666666"/>
  1762. </linearGradient>
  1763. <circle class="st92" cx="31.9" cy="17.3" r="31"/>
  1764. <linearGradient id="SVGID_96_" gradientUnits="userSpaceOnUse" x1="-426.3" y1="214.65" x2="-426.3" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  1765. <stop offset="0" style="stop-color:#B7B7B7"/>
  1766. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1767. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1768. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1769. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1770. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1771. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1772. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1773. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1774. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1775. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1776. <stop offset="0.95" style="stop-color:#888888"/>
  1777. <stop offset="1" style="stop-color:#666666"/>
  1778. </linearGradient>
  1779. <circle class="st93" cx="31.9" cy="18.6" r="31"/>
  1780. <linearGradient id="SVGID_97_" gradientUnits="userSpaceOnUse" x1="-425.06" y1="214.65" x2="-425.06" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  1781. <stop offset="0" style="stop-color:#B7B7B7"/>
  1782. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1783. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1784. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1785. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1786. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1787. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1788. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1789. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1790. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1791. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1792. <stop offset="0.95" style="stop-color:#888888"/>
  1793. <stop offset="1" style="stop-color:#666666"/>
  1794. </linearGradient>
  1795. <circle class="st94" cx="31.9" cy="19.8" r="31"/>
  1796. <linearGradient id="SVGID_98_" gradientUnits="userSpaceOnUse" x1="-423.83" y1="214.65" x2="-423.83" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  1797. <stop offset="0" style="stop-color:#B7B7B7"/>
  1798. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1799. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1800. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1801. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1802. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1803. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1804. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1805. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1806. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1807. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1808. <stop offset="0.95" style="stop-color:#888888"/>
  1809. <stop offset="1" style="stop-color:#666666"/>
  1810. </linearGradient>
  1811. <circle class="st95" cx="31.9" cy="21" r="31"/>
  1812. <linearGradient id="SVGID_99_" gradientUnits="userSpaceOnUse" x1="-422.59" y1="214.65" x2="-422.59" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  1813. <stop offset="0" style="stop-color:#B7B7B7"/>
  1814. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1815. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1816. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1817. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1818. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1819. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1820. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1821. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1822. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1823. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1824. <stop offset="0.95" style="stop-color:#888888"/>
  1825. <stop offset="1" style="stop-color:#666666"/>
  1826. </linearGradient>
  1827. <circle class="st96" cx="31.9" cy="22.3" r="31"/>
  1828. <linearGradient id="SVGID_100_" gradientUnits="userSpaceOnUse" x1="-421.35" y1="214.65" x2="-421.35" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  1829. <stop offset="0" style="stop-color:#B7B7B7"/>
  1830. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1831. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1832. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1833. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1834. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1835. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1836. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1837. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1838. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1839. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1840. <stop offset="0.95" style="stop-color:#888888"/>
  1841. <stop offset="1" style="stop-color:#666666"/>
  1842. </linearGradient>
  1843. <circle class="st97" cx="31.9" cy="23.5" r="31"/>
  1844. <linearGradient id="SVGID_101_" gradientUnits="userSpaceOnUse" x1="-420.11" y1="214.65" x2="-420.11" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  1845. <stop offset="0" style="stop-color:#B7B7B7"/>
  1846. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1847. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1848. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1849. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1850. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1851. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1852. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1853. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1854. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1855. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1856. <stop offset="0.95" style="stop-color:#888888"/>
  1857. <stop offset="1" style="stop-color:#666666"/>
  1858. </linearGradient>
  1859. <circle class="st98" cx="31.9" cy="24.7" r="31"/>
  1860. <linearGradient id="SVGID_102_" gradientUnits="userSpaceOnUse" x1="-418.88" y1="214.65" x2="-418.88" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  1861. <stop offset="0" style="stop-color:#B7B7B7"/>
  1862. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1863. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1864. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1865. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1866. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1867. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1868. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1869. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1870. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1871. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1872. <stop offset="0.95" style="stop-color:#888888"/>
  1873. <stop offset="1" style="stop-color:#666666"/>
  1874. </linearGradient>
  1875. <circle class="st99" cx="31.9" cy="26" r="31"/>
  1876. <linearGradient id="SVGID_103_" gradientUnits="userSpaceOnUse" x1="-417.64" y1="214.65" x2="-417.64" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  1877. <stop offset="0" style="stop-color:#B7B7B7"/>
  1878. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1879. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1880. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1881. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1882. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1883. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1884. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1885. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1886. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1887. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1888. <stop offset="0.95" style="stop-color:#888888"/>
  1889. <stop offset="1" style="stop-color:#666666"/>
  1890. </linearGradient>
  1891. <circle class="st100" cx="31.9" cy="27.2" r="31"/>
  1892. <linearGradient id="SVGID_104_" gradientUnits="userSpaceOnUse" x1="-416.4" y1="214.65" x2="-416.4" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  1893. <stop offset="0" style="stop-color:#B7B7B7"/>
  1894. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1895. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1896. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1897. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1898. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1899. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1900. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1901. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1902. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1903. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1904. <stop offset="0.95" style="stop-color:#888888"/>
  1905. <stop offset="1" style="stop-color:#666666"/>
  1906. </linearGradient>
  1907. <circle class="st101" cx="31.9" cy="28.5" r="31"/>
  1908. <linearGradient id="SVGID_105_" gradientUnits="userSpaceOnUse" x1="-415.16" y1="214.65" x2="-415.16" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  1909. <stop offset="0" style="stop-color:#B7B7B7"/>
  1910. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1911. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1912. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1913. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1914. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1915. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1916. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1917. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1918. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1919. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1920. <stop offset="0.95" style="stop-color:#888888"/>
  1921. <stop offset="1" style="stop-color:#666666"/>
  1922. </linearGradient>
  1923. <circle class="st102" cx="31.9" cy="29.7" r="31"/>
  1924. <linearGradient id="SVGID_106_" gradientUnits="userSpaceOnUse" x1="-413.93" y1="214.65" x2="-413.93" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  1925. <stop offset="0" style="stop-color:#B7B7B7"/>
  1926. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1927. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1928. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1929. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1930. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1931. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1932. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1933. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1934. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1935. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1936. <stop offset="0.95" style="stop-color:#888888"/>
  1937. <stop offset="1" style="stop-color:#666666"/>
  1938. </linearGradient>
  1939. <circle class="st103" cx="31.9" cy="30.9" r="31"/>
  1940. <linearGradient id="SVGID_107_" gradientUnits="userSpaceOnUse" x1="-412.69" y1="214.65" x2="-412.69" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  1941. <stop offset="0" style="stop-color:#B7B7B7"/>
  1942. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1943. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1944. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1945. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1946. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1947. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1948. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1949. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1950. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1951. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1952. <stop offset="0.95" style="stop-color:#888888"/>
  1953. <stop offset="1" style="stop-color:#666666"/>
  1954. </linearGradient>
  1955. <circle class="st104" cx="31.9" cy="32.2" r="31"/>
  1956. <linearGradient id="SVGID_108_" gradientUnits="userSpaceOnUse" x1="-411.45" y1="214.65" x2="-411.45" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  1957. <stop offset="0" style="stop-color:#B7B7B7"/>
  1958. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1959. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1960. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1961. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1962. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1963. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1964. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1965. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1966. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1967. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1968. <stop offset="0.95" style="stop-color:#888888"/>
  1969. <stop offset="1" style="stop-color:#666666"/>
  1970. </linearGradient>
  1971. <circle class="st105" cx="31.9" cy="33.4" r="31"/>
  1972. <linearGradient id="SVGID_109_" gradientUnits="userSpaceOnUse" x1="-410.21" y1="214.65" x2="-410.21" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  1973. <stop offset="0" style="stop-color:#B7B7B7"/>
  1974. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1975. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1976. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1977. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1978. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1979. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1980. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1981. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1982. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1983. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1984. <stop offset="0.95" style="stop-color:#888888"/>
  1985. <stop offset="1" style="stop-color:#666666"/>
  1986. </linearGradient>
  1987. <circle class="st106" cx="31.9" cy="34.6" r="31"/>
  1988. <linearGradient id="SVGID_110_" gradientUnits="userSpaceOnUse" x1="-408.98" y1="214.65" x2="-408.98" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  1989. <stop offset="0" style="stop-color:#B7B7B7"/>
  1990. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1991. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1992. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1993. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1994. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1995. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1996. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1997. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1998. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1999. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2000. <stop offset="0.95" style="stop-color:#888888"/>
  2001. <stop offset="1" style="stop-color:#666666"/>
  2002. </linearGradient>
  2003. <circle class="st107" cx="31.9" cy="35.9" r="31"/>
  2004. <linearGradient id="SVGID_111_" gradientUnits="userSpaceOnUse" x1="-407.74" y1="214.65" x2="-407.74" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2005. <stop offset="0" style="stop-color:#B7B7B7"/>
  2006. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2007. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2008. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2009. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2010. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2011. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2012. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2013. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2014. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2015. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2016. <stop offset="0.95" style="stop-color:#888888"/>
  2017. <stop offset="1" style="stop-color:#666666"/>
  2018. </linearGradient>
  2019. <circle class="st108" cx="31.9" cy="37.1" r="31"/>
  2020. <linearGradient id="SVGID_112_" gradientUnits="userSpaceOnUse" x1="-406.5" y1="214.65" x2="-406.5" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2021. <stop offset="0" style="stop-color:#B7B7B7"/>
  2022. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2023. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2024. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2025. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2026. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2027. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2028. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2029. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2030. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2031. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2032. <stop offset="0.95" style="stop-color:#888888"/>
  2033. <stop offset="1" style="stop-color:#666666"/>
  2034. </linearGradient>
  2035. <circle class="st109" cx="31.9" cy="38.4" r="31"/>
  2036. <linearGradient id="SVGID_113_" gradientUnits="userSpaceOnUse" x1="-405.26" y1="214.65" x2="-405.26" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2037. <stop offset="0" style="stop-color:#B7B7B7"/>
  2038. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2039. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2040. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2041. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2042. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2043. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2044. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2045. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2046. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2047. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2048. <stop offset="0.95" style="stop-color:#888888"/>
  2049. <stop offset="1" style="stop-color:#666666"/>
  2050. </linearGradient>
  2051. <circle class="st110" cx="31.9" cy="39.6" r="31"/>
  2052. <linearGradient id="SVGID_114_" gradientUnits="userSpaceOnUse" x1="-404.03" y1="214.65" x2="-404.03" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2053. <stop offset="0" style="stop-color:#B7B7B7"/>
  2054. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2055. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2056. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2057. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2058. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2059. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2060. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2061. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2062. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2063. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2064. <stop offset="0.95" style="stop-color:#888888"/>
  2065. <stop offset="1" style="stop-color:#666666"/>
  2066. </linearGradient>
  2067. <circle class="st111" cx="31.9" cy="40.8" r="31"/>
  2068. <linearGradient id="SVGID_115_" gradientUnits="userSpaceOnUse" x1="-402.79" y1="214.65" x2="-402.79" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2069. <stop offset="0" style="stop-color:#B7B7B7"/>
  2070. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2071. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2072. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2073. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2074. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2075. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2076. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2077. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2078. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2079. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2080. <stop offset="0.95" style="stop-color:#888888"/>
  2081. <stop offset="1" style="stop-color:#666666"/>
  2082. </linearGradient>
  2083. <circle class="st112" cx="31.9" cy="42.1" r="31"/>
  2084. <linearGradient id="SVGID_116_" gradientUnits="userSpaceOnUse" x1="-401.55" y1="214.65" x2="-401.55" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2085. <stop offset="0" style="stop-color:#B7B7B7"/>
  2086. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2087. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2088. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2089. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2090. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2091. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2092. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2093. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2094. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2095. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2096. <stop offset="0.95" style="stop-color:#888888"/>
  2097. <stop offset="1" style="stop-color:#666666"/>
  2098. </linearGradient>
  2099. <circle class="st113" cx="31.9" cy="43.3" r="31"/>
  2100. <linearGradient id="SVGID_117_" gradientUnits="userSpaceOnUse" x1="-400.31" y1="214.65" x2="-400.31" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2101. <stop offset="0" style="stop-color:#B7B7B7"/>
  2102. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2103. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2104. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2105. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2106. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2107. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2108. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2109. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2110. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2111. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2112. <stop offset="0.95" style="stop-color:#888888"/>
  2113. <stop offset="1" style="stop-color:#666666"/>
  2114. </linearGradient>
  2115. <circle class="st114" cx="31.9" cy="44.5" r="31"/>
  2116. <linearGradient id="SVGID_118_" gradientUnits="userSpaceOnUse" x1="-399.07" y1="214.65" x2="-399.07" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2117. <stop offset="0" style="stop-color:#B7B7B7"/>
  2118. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2119. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2120. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2121. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2122. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2123. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2124. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2125. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2126. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2127. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2128. <stop offset="0.95" style="stop-color:#888888"/>
  2129. <stop offset="1" style="stop-color:#666666"/>
  2130. </linearGradient>
  2131. <circle class="st115" cx="31.9" cy="45.8" r="31"/>
  2132. <linearGradient id="SVGID_119_" gradientUnits="userSpaceOnUse" x1="-397.84" y1="214.65" x2="-397.84" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2133. <stop offset="0" style="stop-color:#B7B7B7"/>
  2134. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2135. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2136. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2137. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2138. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2139. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2140. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2141. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2142. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2143. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2144. <stop offset="0.95" style="stop-color:#888888"/>
  2145. <stop offset="1" style="stop-color:#666666"/>
  2146. </linearGradient>
  2147. <circle class="st116" cx="31.9" cy="47" r="31"/>
  2148. <linearGradient id="SVGID_120_" gradientUnits="userSpaceOnUse" x1="-396.6" y1="214.65" x2="-396.6" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2149. <stop offset="0" style="stop-color:#B7B7B7"/>
  2150. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2151. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2152. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2153. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2154. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2155. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2156. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2157. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2158. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2159. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2160. <stop offset="0.95" style="stop-color:#888888"/>
  2161. <stop offset="1" style="stop-color:#666666"/>
  2162. </linearGradient>
  2163. <circle class="st117" cx="31.9" cy="48.3" r="31"/>
  2164. <linearGradient id="SVGID_121_" gradientUnits="userSpaceOnUse" x1="-395.36" y1="214.65" x2="-395.36" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2165. <stop offset="0" style="stop-color:#B7B7B7"/>
  2166. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2167. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2168. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2169. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2170. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2171. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2172. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2173. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2174. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2175. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2176. <stop offset="0.95" style="stop-color:#888888"/>
  2177. <stop offset="1" style="stop-color:#666666"/>
  2178. </linearGradient>
  2179. <circle class="st118" cx="31.9" cy="49.5" r="31"/>
  2180. <linearGradient id="SVGID_122_" gradientUnits="userSpaceOnUse" x1="-394.12" y1="214.65" x2="-394.12" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2181. <stop offset="0" style="stop-color:#B7B7B7"/>
  2182. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2183. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2184. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2185. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2186. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2187. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2188. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2189. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2190. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2191. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2192. <stop offset="0.95" style="stop-color:#888888"/>
  2193. <stop offset="1" style="stop-color:#666666"/>
  2194. </linearGradient>
  2195. <circle class="st119" cx="31.9" cy="50.7" r="31"/>
  2196. <linearGradient id="SVGID_123_" gradientUnits="userSpaceOnUse" x1="-392.89" y1="214.65" x2="-392.89" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2197. <stop offset="0" style="stop-color:#B7B7B7"/>
  2198. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2199. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2200. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2201. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2202. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2203. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2204. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2205. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2206. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2207. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2208. <stop offset="0.95" style="stop-color:#888888"/>
  2209. <stop offset="1" style="stop-color:#666666"/>
  2210. </linearGradient>
  2211. <circle class="st120" cx="31.9" cy="52" r="31"/>
  2212. <linearGradient id="SVGID_124_" gradientUnits="userSpaceOnUse" x1="-391.65" y1="214.65" x2="-391.65" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2213. <stop offset="0" style="stop-color:#B7B7B7"/>
  2214. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2215. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2216. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2217. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2218. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2219. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2220. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2221. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2222. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2223. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2224. <stop offset="0.95" style="stop-color:#888888"/>
  2225. <stop offset="1" style="stop-color:#666666"/>
  2226. </linearGradient>
  2227. <circle class="st121" cx="31.9" cy="53.2" r="31"/>
  2228. <linearGradient id="SVGID_125_" gradientUnits="userSpaceOnUse" x1="-390.41" y1="214.65" x2="-390.41" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2229. <stop offset="0" style="stop-color:#B7B7B7"/>
  2230. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2231. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2232. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2233. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2234. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2235. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2236. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2237. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2238. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2239. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2240. <stop offset="0.95" style="stop-color:#888888"/>
  2241. <stop offset="1" style="stop-color:#666666"/>
  2242. </linearGradient>
  2243. <circle class="st122" cx="31.9" cy="54.4" r="31"/>
  2244. <linearGradient id="SVGID_126_" gradientUnits="userSpaceOnUse" x1="-389.17" y1="214.65" x2="-389.17" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2245. <stop offset="0" style="stop-color:#B7B7B7"/>
  2246. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2247. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2248. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2249. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2250. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2251. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2252. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2253. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2254. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2255. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2256. <stop offset="0.95" style="stop-color:#888888"/>
  2257. <stop offset="1" style="stop-color:#666666"/>
  2258. </linearGradient>
  2259. <circle class="st123" cx="31.9" cy="55.7" r="31"/>
  2260. <linearGradient id="SVGID_127_" gradientUnits="userSpaceOnUse" x1="-387.94" y1="214.65" x2="-387.94" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2261. <stop offset="0" style="stop-color:#B7B7B7"/>
  2262. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2263. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2264. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2265. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2266. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2267. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2268. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2269. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2270. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2271. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2272. <stop offset="0.95" style="stop-color:#888888"/>
  2273. <stop offset="1" style="stop-color:#666666"/>
  2274. </linearGradient>
  2275. <circle class="st124" cx="31.9" cy="56.9" r="31"/>
  2276. <linearGradient id="SVGID_128_" gradientUnits="userSpaceOnUse" x1="-386.7" y1="214.65" x2="-386.7" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2277. <stop offset="0" style="stop-color:#B7B7B7"/>
  2278. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2279. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2280. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2281. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2282. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2283. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2284. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2285. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2286. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2287. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2288. <stop offset="0.95" style="stop-color:#888888"/>
  2289. <stop offset="1" style="stop-color:#666666"/>
  2290. </linearGradient>
  2291. <circle class="st125" cx="31.9" cy="58.2" r="31"/>
  2292. <linearGradient id="SVGID_129_" gradientUnits="userSpaceOnUse" x1="-385.46" y1="214.65" x2="-385.46" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2293. <stop offset="0" style="stop-color:#B7B7B7"/>
  2294. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2295. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2296. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2297. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2298. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2299. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2300. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2301. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2302. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2303. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2304. <stop offset="0.95" style="stop-color:#888888"/>
  2305. <stop offset="1" style="stop-color:#666666"/>
  2306. </linearGradient>
  2307. <circle class="st126" cx="31.9" cy="59.4" r="31"/>
  2308. <linearGradient id="SVGID_130_" gradientUnits="userSpaceOnUse" x1="-384.22" y1="214.65" x2="-384.22" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2309. <stop offset="0" style="stop-color:#B7B7B7"/>
  2310. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2311. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2312. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2313. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2314. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2315. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2316. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2317. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2318. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2319. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2320. <stop offset="0.95" style="stop-color:#888888"/>
  2321. <stop offset="1" style="stop-color:#666666"/>
  2322. </linearGradient>
  2323. <circle class="st127" cx="31.9" cy="60.6" r="31"/>
  2324. <linearGradient id="SVGID_131_" gradientUnits="userSpaceOnUse" x1="-382.99" y1="214.65" x2="-382.99" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2325. <stop offset="0" style="stop-color:#B7B7B7"/>
  2326. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2327. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2328. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2329. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2330. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2331. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2332. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2333. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2334. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2335. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2336. <stop offset="0.95" style="stop-color:#888888"/>
  2337. <stop offset="1" style="stop-color:#666666"/>
  2338. </linearGradient>
  2339. <circle class="st128" cx="31.9" cy="61.9" r="31"/>
  2340. <linearGradient id="SVGID_132_" gradientUnits="userSpaceOnUse" x1="-381.75" y1="214.65" x2="-381.75" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2341. <stop offset="0" style="stop-color:#B7B7B7"/>
  2342. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2343. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2344. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2345. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2346. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2347. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2348. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2349. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2350. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2351. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2352. <stop offset="0.95" style="stop-color:#888888"/>
  2353. <stop offset="1" style="stop-color:#666666"/>
  2354. </linearGradient>
  2355. <circle class="st129" cx="31.9" cy="63.1" r="31"/>
  2356. <linearGradient id="SVGID_133_" gradientUnits="userSpaceOnUse" x1="-380.51" y1="214.65" x2="-380.51" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2357. <stop offset="0" style="stop-color:#B7B7B7"/>
  2358. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2359. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2360. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2361. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2362. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2363. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2364. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2365. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2366. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2367. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2368. <stop offset="0.95" style="stop-color:#888888"/>
  2369. <stop offset="1" style="stop-color:#666666"/>
  2370. </linearGradient>
  2371. <circle class="st130" cx="31.9" cy="64.3" r="31"/>
  2372. <linearGradient id="SVGID_134_" gradientUnits="userSpaceOnUse" x1="-379.27" y1="214.65" x2="-379.27" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2373. <stop offset="0" style="stop-color:#B7B7B7"/>
  2374. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2375. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2376. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2377. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2378. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2379. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2380. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2381. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2382. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2383. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2384. <stop offset="0.95" style="stop-color:#888888"/>
  2385. <stop offset="1" style="stop-color:#666666"/>
  2386. </linearGradient>
  2387. <circle class="st131" cx="31.9" cy="65.6" r="31"/>
  2388. <linearGradient id="SVGID_135_" gradientUnits="userSpaceOnUse" x1="-378.04" y1="214.65" x2="-378.04" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2389. <stop offset="0" style="stop-color:#B7B7B7"/>
  2390. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2391. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2392. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2393. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2394. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2395. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2396. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2397. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2398. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2399. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2400. <stop offset="0.95" style="stop-color:#888888"/>
  2401. <stop offset="1" style="stop-color:#666666"/>
  2402. </linearGradient>
  2403. <circle class="st132" cx="31.9" cy="66.8" r="31"/>
  2404. <linearGradient id="SVGID_136_" gradientUnits="userSpaceOnUse" x1="-376.8" y1="214.65" x2="-376.8" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2405. <stop offset="0" style="stop-color:#B7B7B7"/>
  2406. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2407. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2408. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2409. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2410. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2411. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2412. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2413. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2414. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2415. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2416. <stop offset="0.95" style="stop-color:#888888"/>
  2417. <stop offset="1" style="stop-color:#666666"/>
  2418. </linearGradient>
  2419. <circle class="st133" cx="31.9" cy="68.1" r="31"/>
  2420. <linearGradient id="SVGID_137_" gradientUnits="userSpaceOnUse" x1="-375.56" y1="214.65" x2="-375.56" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2421. <stop offset="0" style="stop-color:#B7B7B7"/>
  2422. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2423. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2424. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2425. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2426. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2427. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2428. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2429. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2430. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2431. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2432. <stop offset="0.95" style="stop-color:#888888"/>
  2433. <stop offset="1" style="stop-color:#666666"/>
  2434. </linearGradient>
  2435. <circle class="st134" cx="31.9" cy="69.3" r="31"/>
  2436. <linearGradient id="SVGID_138_" gradientUnits="userSpaceOnUse" x1="-374.32" y1="214.65" x2="-374.32" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2437. <stop offset="0" style="stop-color:#B7B7B7"/>
  2438. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2439. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2440. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2441. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2442. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2443. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2444. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2445. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2446. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2447. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2448. <stop offset="0.95" style="stop-color:#888888"/>
  2449. <stop offset="1" style="stop-color:#666666"/>
  2450. </linearGradient>
  2451. <circle class="st135" cx="31.9" cy="70.5" r="31"/>
  2452. <linearGradient id="SVGID_139_" gradientUnits="userSpaceOnUse" x1="-373.09" y1="214.65" x2="-373.09" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2453. <stop offset="0" style="stop-color:#B7B7B7"/>
  2454. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2455. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2456. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2457. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2458. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2459. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2460. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2461. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2462. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2463. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2464. <stop offset="0.95" style="stop-color:#888888"/>
  2465. <stop offset="1" style="stop-color:#666666"/>
  2466. </linearGradient>
  2467. <circle class="st136" cx="31.9" cy="71.8" r="31"/>
  2468. <linearGradient id="SVGID_140_" gradientUnits="userSpaceOnUse" x1="-371.85" y1="214.65" x2="-371.85" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2469. <stop offset="0" style="stop-color:#B7B7B7"/>
  2470. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2471. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2472. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2473. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2474. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2475. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2476. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2477. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2478. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2479. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2480. <stop offset="0.95" style="stop-color:#888888"/>
  2481. <stop offset="1" style="stop-color:#666666"/>
  2482. </linearGradient>
  2483. <circle class="st137" cx="31.9" cy="73" r="31"/>
  2484. <linearGradient id="SVGID_141_" gradientUnits="userSpaceOnUse" x1="-370.61" y1="214.65" x2="-370.61" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2485. <stop offset="0" style="stop-color:#B7B7B7"/>
  2486. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2487. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2488. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2489. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2490. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2491. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2492. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2493. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2494. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2495. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2496. <stop offset="0.95" style="stop-color:#888888"/>
  2497. <stop offset="1" style="stop-color:#666666"/>
  2498. </linearGradient>
  2499. <circle class="st138" cx="31.9" cy="74.2" r="31"/>
  2500. <linearGradient id="SVGID_142_" gradientUnits="userSpaceOnUse" x1="-369.37" y1="214.65" x2="-369.37" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2501. <stop offset="0" style="stop-color:#B7B7B7"/>
  2502. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2503. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2504. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2505. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2506. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2507. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2508. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2509. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2510. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2511. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2512. <stop offset="0.95" style="stop-color:#888888"/>
  2513. <stop offset="1" style="stop-color:#666666"/>
  2514. </linearGradient>
  2515. <circle class="st139" cx="31.9" cy="75.5" r="31"/>
  2516. <linearGradient id="SVGID_143_" gradientUnits="userSpaceOnUse" x1="-368.14" y1="214.65" x2="-368.14" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2517. <stop offset="0" style="stop-color:#B7B7B7"/>
  2518. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2519. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2520. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2521. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2522. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2523. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2524. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2525. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2526. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2527. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2528. <stop offset="0.95" style="stop-color:#888888"/>
  2529. <stop offset="1" style="stop-color:#666666"/>
  2530. </linearGradient>
  2531. <circle class="st140" cx="31.9" cy="76.7" r="31"/>
  2532. <linearGradient id="SVGID_144_" gradientUnits="userSpaceOnUse" x1="-366.9" y1="214.65" x2="-366.9" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2533. <stop offset="0" style="stop-color:#B7B7B7"/>
  2534. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2535. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2536. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2537. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2538. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2539. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2540. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2541. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2542. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2543. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2544. <stop offset="0.95" style="stop-color:#888888"/>
  2545. <stop offset="1" style="stop-color:#666666"/>
  2546. </linearGradient>
  2547. <circle class="st141" cx="31.9" cy="78" r="31"/>
  2548. <linearGradient id="SVGID_145_" gradientUnits="userSpaceOnUse" x1="-365.66" y1="214.65" x2="-365.66" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2549. <stop offset="0" style="stop-color:#B7B7B7"/>
  2550. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2551. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2552. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2553. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2554. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2555. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2556. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2557. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2558. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2559. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2560. <stop offset="0.95" style="stop-color:#888888"/>
  2561. <stop offset="1" style="stop-color:#666666"/>
  2562. </linearGradient>
  2563. <circle class="st142" cx="31.9" cy="79.2" r="31"/>
  2564. <linearGradient id="SVGID_146_" gradientUnits="userSpaceOnUse" x1="-364.42" y1="214.65" x2="-364.42" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2565. <stop offset="0" style="stop-color:#B7B7B7"/>
  2566. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2567. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2568. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2569. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2570. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2571. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2572. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2573. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2574. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2575. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2576. <stop offset="0.95" style="stop-color:#888888"/>
  2577. <stop offset="1" style="stop-color:#666666"/>
  2578. </linearGradient>
  2579. <circle class="st143" cx="31.9" cy="80.4" r="31"/>
  2580. <linearGradient id="SVGID_147_" gradientUnits="userSpaceOnUse" x1="-363.19" y1="214.65" x2="-363.19" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2581. <stop offset="0" style="stop-color:#B7B7B7"/>
  2582. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2583. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2584. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2585. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2586. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2587. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2588. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2589. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2590. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2591. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2592. <stop offset="0.95" style="stop-color:#888888"/>
  2593. <stop offset="1" style="stop-color:#666666"/>
  2594. </linearGradient>
  2595. <circle class="st144" cx="31.9" cy="81.7" r="31"/>
  2596. <linearGradient id="SVGID_148_" gradientUnits="userSpaceOnUse" x1="-361.95" y1="214.65" x2="-361.95" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2597. <stop offset="0" style="stop-color:#B7B7B7"/>
  2598. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2599. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2600. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2601. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2602. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2603. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2604. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2605. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2606. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2607. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2608. <stop offset="0.95" style="stop-color:#888888"/>
  2609. <stop offset="1" style="stop-color:#666666"/>
  2610. </linearGradient>
  2611. <circle class="st145" cx="31.9" cy="82.9" r="31"/>
  2612. <linearGradient id="SVGID_149_" gradientUnits="userSpaceOnUse" x1="-360.71" y1="214.65" x2="-360.71" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2613. <stop offset="0" style="stop-color:#B7B7B7"/>
  2614. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2615. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2616. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2617. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2618. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2619. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2620. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2621. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2622. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2623. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2624. <stop offset="0.95" style="stop-color:#888888"/>
  2625. <stop offset="1" style="stop-color:#666666"/>
  2626. </linearGradient>
  2627. <circle class="st146" cx="31.9" cy="84.1" r="31"/>
  2628. <linearGradient id="SVGID_150_" gradientUnits="userSpaceOnUse" x1="-359.47" y1="214.65" x2="-359.47" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2629. <stop offset="0" style="stop-color:#B7B7B7"/>
  2630. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2631. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2632. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2633. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2634. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2635. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2636. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2637. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2638. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2639. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2640. <stop offset="0.95" style="stop-color:#888888"/>
  2641. <stop offset="1" style="stop-color:#666666"/>
  2642. </linearGradient>
  2643. <circle class="st147" cx="31.9" cy="85.4" r="31"/>
  2644. <linearGradient id="SVGID_151_" gradientUnits="userSpaceOnUse" x1="-358.24" y1="214.65" x2="-358.24" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2645. <stop offset="0" style="stop-color:#B7B7B7"/>
  2646. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2647. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2648. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2649. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2650. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2651. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2652. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2653. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2654. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2655. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2656. <stop offset="0.95" style="stop-color:#888888"/>
  2657. <stop offset="1" style="stop-color:#666666"/>
  2658. </linearGradient>
  2659. <circle class="st148" cx="31.9" cy="86.6" r="31"/>
  2660. <linearGradient id="SVGID_152_" gradientUnits="userSpaceOnUse" x1="-357" y1="214.65" x2="-357" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2661. <stop offset="0" style="stop-color:#B7B7B7"/>
  2662. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2663. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2664. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2665. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2666. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2667. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2668. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2669. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2670. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2671. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2672. <stop offset="0.95" style="stop-color:#888888"/>
  2673. <stop offset="1" style="stop-color:#666666"/>
  2674. </linearGradient>
  2675. <circle class="st149" cx="31.9" cy="87.9" r="31"/>
  2676. <linearGradient id="SVGID_153_" gradientUnits="userSpaceOnUse" x1="-355.76" y1="214.65" x2="-355.76" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2677. <stop offset="0" style="stop-color:#B7B7B7"/>
  2678. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2679. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2680. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2681. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2682. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2683. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2684. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2685. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2686. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2687. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2688. <stop offset="0.95" style="stop-color:#888888"/>
  2689. <stop offset="1" style="stop-color:#666666"/>
  2690. </linearGradient>
  2691. <circle class="st150" cx="31.9" cy="89.1" r="31"/>
  2692. <linearGradient id="SVGID_154_" gradientUnits="userSpaceOnUse" x1="-354.52" y1="214.65" x2="-354.52" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2693. <stop offset="0" style="stop-color:#B7B7B7"/>
  2694. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2695. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2696. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2697. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2698. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2699. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2700. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2701. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2702. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2703. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2704. <stop offset="0.95" style="stop-color:#888888"/>
  2705. <stop offset="1" style="stop-color:#666666"/>
  2706. </linearGradient>
  2707. <circle class="st151" cx="31.9" cy="90.3" r="31"/>
  2708. <linearGradient id="SVGID_155_" gradientUnits="userSpaceOnUse" x1="-353.29" y1="214.65" x2="-353.29" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2709. <stop offset="0" style="stop-color:#B7B7B7"/>
  2710. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2711. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2712. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2713. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2714. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2715. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2716. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2717. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2718. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2719. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2720. <stop offset="0.95" style="stop-color:#888888"/>
  2721. <stop offset="1" style="stop-color:#666666"/>
  2722. </linearGradient>
  2723. <circle class="st152" cx="31.9" cy="91.6" r="31"/>
  2724. <linearGradient id="SVGID_156_" gradientUnits="userSpaceOnUse" x1="-352.05" y1="214.65" x2="-352.05" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2725. <stop offset="0" style="stop-color:#B7B7B7"/>
  2726. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2727. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2728. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2729. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2730. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2731. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2732. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2733. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2734. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2735. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2736. <stop offset="0.95" style="stop-color:#888888"/>
  2737. <stop offset="1" style="stop-color:#666666"/>
  2738. </linearGradient>
  2739. <circle class="st153" cx="31.9" cy="92.8" r="31"/>
  2740. <linearGradient id="SVGID_157_" gradientUnits="userSpaceOnUse" x1="-350.81" y1="214.65" x2="-350.81" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2741. <stop offset="0" style="stop-color:#B7B7B7"/>
  2742. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2743. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2744. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2745. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2746. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2747. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2748. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2749. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2750. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2751. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2752. <stop offset="0.95" style="stop-color:#888888"/>
  2753. <stop offset="1" style="stop-color:#666666"/>
  2754. </linearGradient>
  2755. <circle class="st154" cx="31.9" cy="94" r="31"/>
  2756. <linearGradient id="SVGID_158_" gradientUnits="userSpaceOnUse" x1="-349.57" y1="214.65" x2="-349.57" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2757. <stop offset="0" style="stop-color:#B7B7B7"/>
  2758. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2759. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2760. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2761. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2762. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2763. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2764. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2765. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2766. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2767. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2768. <stop offset="0.95" style="stop-color:#888888"/>
  2769. <stop offset="1" style="stop-color:#666666"/>
  2770. </linearGradient>
  2771. <circle class="st155" cx="31.9" cy="95.3" r="31"/>
  2772. <linearGradient id="SVGID_159_" gradientUnits="userSpaceOnUse" x1="-348.34" y1="214.65" x2="-348.34" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2773. <stop offset="0" style="stop-color:#B7B7B7"/>
  2774. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2775. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2776. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2777. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2778. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2779. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2780. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2781. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2782. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2783. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2784. <stop offset="0.95" style="stop-color:#888888"/>
  2785. <stop offset="1" style="stop-color:#666666"/>
  2786. </linearGradient>
  2787. <circle class="st156" cx="31.9" cy="96.5" r="31"/>
  2788. <linearGradient id="SVGID_160_" gradientUnits="userSpaceOnUse" x1="-347.1" y1="214.65" x2="-347.1" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2789. <stop offset="0" style="stop-color:#B7B7B7"/>
  2790. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2791. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2792. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2793. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2794. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2795. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2796. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2797. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2798. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2799. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2800. <stop offset="0.95" style="stop-color:#888888"/>
  2801. <stop offset="1" style="stop-color:#666666"/>
  2802. </linearGradient>
  2803. <circle class="st157" cx="31.9" cy="97.8" r="31"/>
  2804. <linearGradient id="SVGID_161_" gradientUnits="userSpaceOnUse" x1="-345.86" y1="214.65" x2="-345.86" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2805. <stop offset="0" style="stop-color:#B7B7B7"/>
  2806. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2807. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2808. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2809. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2810. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2811. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2812. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2813. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2814. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2815. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2816. <stop offset="0.95" style="stop-color:#888888"/>
  2817. <stop offset="1" style="stop-color:#666666"/>
  2818. </linearGradient>
  2819. <circle class="st158" cx="31.9" cy="99" r="31.1"/>
  2820. <linearGradient id="SVGID_162_" gradientUnits="userSpaceOnUse" x1="-344.62" y1="214.65" x2="-344.62" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2821. <stop offset="0" style="stop-color:#B7B7B7"/>
  2822. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2823. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2824. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2825. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2826. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2827. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2828. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2829. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2830. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2831. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2832. <stop offset="0.95" style="stop-color:#888888"/>
  2833. <stop offset="1" style="stop-color:#666666"/>
  2834. </linearGradient>
  2835. <circle class="st159" cx="31.9" cy="100.2" r="31"/>
  2836. <linearGradient id="SVGID_163_" gradientUnits="userSpaceOnUse" x1="-343.39" y1="214.65" x2="-343.39" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2837. <stop offset="0" style="stop-color:#B7B7B7"/>
  2838. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2839. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2840. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2841. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2842. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2843. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2844. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2845. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2846. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2847. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2848. <stop offset="0.95" style="stop-color:#888888"/>
  2849. <stop offset="1" style="stop-color:#666666"/>
  2850. </linearGradient>
  2851. <circle class="st160" cx="31.9" cy="101.5" r="31.1"/>
  2852. <linearGradient id="SVGID_164_" gradientUnits="userSpaceOnUse" x1="-342.15" y1="214.65" x2="-342.15" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2853. <stop offset="0" style="stop-color:#B7B7B7"/>
  2854. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2855. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2856. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2857. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2858. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2859. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2860. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2861. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2862. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2863. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2864. <stop offset="0.95" style="stop-color:#888888"/>
  2865. <stop offset="1" style="stop-color:#666666"/>
  2866. </linearGradient>
  2867. <circle class="st161" cx="31.9" cy="102.7" r="31"/>
  2868. <linearGradient id="SVGID_165_" gradientUnits="userSpaceOnUse" x1="-340.91" y1="214.65" x2="-340.91" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2869. <stop offset="0" style="stop-color:#B7B7B7"/>
  2870. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2871. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2872. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2873. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2874. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2875. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2876. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2877. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2878. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2879. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2880. <stop offset="0.95" style="stop-color:#888888"/>
  2881. <stop offset="1" style="stop-color:#666666"/>
  2882. </linearGradient>
  2883. <circle class="st162" cx="31.9" cy="103.9" r="31.1"/>
  2884. <linearGradient id="SVGID_166_" gradientUnits="userSpaceOnUse" x1="-339.67" y1="214.65" x2="-339.67" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2885. <stop offset="0" style="stop-color:#B7B7B7"/>
  2886. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2887. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2888. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2889. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2890. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2891. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2892. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2893. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2894. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2895. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2896. <stop offset="0.95" style="stop-color:#888888"/>
  2897. <stop offset="1" style="stop-color:#666666"/>
  2898. </linearGradient>
  2899. <circle class="st163" cx="31.9" cy="105.2" r="31.1"/>
  2900. <linearGradient id="SVGID_167_" gradientUnits="userSpaceOnUse" x1="-338.44" y1="214.65" x2="-338.44" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2901. <stop offset="0" style="stop-color:#B7B7B7"/>
  2902. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2903. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2904. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2905. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2906. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2907. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2908. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2909. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2910. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2911. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2912. <stop offset="0.95" style="stop-color:#888888"/>
  2913. <stop offset="1" style="stop-color:#666666"/>
  2914. </linearGradient>
  2915. <circle class="st164" cx="31.9" cy="106.4" r="31.1"/>
  2916. <linearGradient id="SVGID_168_" gradientUnits="userSpaceOnUse" x1="-337.2" y1="214.65" x2="-337.2" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2917. <stop offset="0" style="stop-color:#B7B7B7"/>
  2918. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2919. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2920. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2921. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2922. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2923. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2924. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2925. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2926. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2927. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2928. <stop offset="0.95" style="stop-color:#888888"/>
  2929. <stop offset="1" style="stop-color:#666666"/>
  2930. </linearGradient>
  2931. <circle class="st165" cx="31.9" cy="107.7" r="31.1"/>
  2932. <linearGradient id="SVGID_169_" gradientUnits="userSpaceOnUse" x1="-335.96" y1="214.65" x2="-335.96" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2933. <stop offset="0" style="stop-color:#B7B7B7"/>
  2934. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2935. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2936. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2937. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2938. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2939. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2940. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2941. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2942. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2943. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2944. <stop offset="0.95" style="stop-color:#888888"/>
  2945. <stop offset="1" style="stop-color:#666666"/>
  2946. </linearGradient>
  2947. <circle class="st166" cx="31.9" cy="108.9" r="31"/>
  2948. <linearGradient id="SVGID_170_" gradientUnits="userSpaceOnUse" x1="-334.72" y1="214.65" x2="-334.72" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2949. <stop offset="0" style="stop-color:#B7B7B7"/>
  2950. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2951. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2952. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2953. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2954. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2955. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2956. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2957. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2958. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2959. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2960. <stop offset="0.95" style="stop-color:#888888"/>
  2961. <stop offset="1" style="stop-color:#666666"/>
  2962. </linearGradient>
  2963. <circle class="st167" cx="31.9" cy="110.1" r="31.1"/>
  2964. <linearGradient id="SVGID_171_" gradientUnits="userSpaceOnUse" x1="-333.49" y1="214.65" x2="-333.49" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2965. <stop offset="0" style="stop-color:#B7B7B7"/>
  2966. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2967. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2968. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2969. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2970. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2971. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2972. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2973. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2974. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2975. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2976. <stop offset="0.95" style="stop-color:#888888"/>
  2977. <stop offset="1" style="stop-color:#666666"/>
  2978. </linearGradient>
  2979. <circle class="st168" cx="31.9" cy="111.4" r="31"/>
  2980. <linearGradient id="SVGID_172_" gradientUnits="userSpaceOnUse" x1="-332.25" y1="214.65" x2="-332.25" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2981. <stop offset="0" style="stop-color:#B7B7B7"/>
  2982. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2983. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2984. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2985. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2986. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2987. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2988. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2989. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2990. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2991. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2992. <stop offset="0.95" style="stop-color:#888888"/>
  2993. <stop offset="1" style="stop-color:#666666"/>
  2994. </linearGradient>
  2995. <circle class="st169" cx="31.9" cy="112.6" r="31.1"/>
  2996. <linearGradient id="SVGID_173_" gradientUnits="userSpaceOnUse" x1="-331.01" y1="214.65" x2="-331.01" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  2997. <stop offset="0" style="stop-color:#B7B7B7"/>
  2998. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2999. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3000. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3001. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3002. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3003. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3004. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3005. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3006. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3007. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3008. <stop offset="0.95" style="stop-color:#888888"/>
  3009. <stop offset="1" style="stop-color:#666666"/>
  3010. </linearGradient>
  3011. <circle class="st170" cx="31.9" cy="113.8" r="31"/>
  3012. <linearGradient id="SVGID_174_" gradientUnits="userSpaceOnUse" x1="-329.77" y1="214.65" x2="-329.77" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  3013. <stop offset="0" style="stop-color:#B7B7B7"/>
  3014. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3015. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3016. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3017. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3018. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3019. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3020. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3021. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3022. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3023. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3024. <stop offset="0.95" style="stop-color:#888888"/>
  3025. <stop offset="1" style="stop-color:#666666"/>
  3026. </linearGradient>
  3027. <circle class="st171" cx="31.9" cy="115.1" r="31.1"/>
  3028. <linearGradient id="SVGID_175_" gradientUnits="userSpaceOnUse" x1="-328.54" y1="214.65" x2="-328.54" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  3029. <stop offset="0" style="stop-color:#B7B7B7"/>
  3030. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3031. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3032. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3033. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3034. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3035. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3036. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3037. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3038. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3039. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3040. <stop offset="0.95" style="stop-color:#888888"/>
  3041. <stop offset="1" style="stop-color:#666666"/>
  3042. </linearGradient>
  3043. <circle class="st172" cx="31.9" cy="116.3" r="31"/>
  3044. <linearGradient id="SVGID_176_" gradientUnits="userSpaceOnUse" x1="-327.3" y1="214.65" x2="-327.3" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  3045. <stop offset="0" style="stop-color:#B7B7B7"/>
  3046. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3047. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3048. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3049. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3050. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3051. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3052. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3053. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3054. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3055. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3056. <stop offset="0.95" style="stop-color:#888888"/>
  3057. <stop offset="1" style="stop-color:#666666"/>
  3058. </linearGradient>
  3059. <circle class="st173" cx="31.9" cy="117.6" r="31.1"/>
  3060. <linearGradient id="SVGID_177_" gradientUnits="userSpaceOnUse" x1="-326.06" y1="214.65" x2="-326.06" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  3061. <stop offset="0" style="stop-color:#B7B7B7"/>
  3062. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3063. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3064. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3065. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3066. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3067. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3068. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3069. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3070. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3071. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3072. <stop offset="0.95" style="stop-color:#888888"/>
  3073. <stop offset="1" style="stop-color:#666666"/>
  3074. </linearGradient>
  3075. <circle class="st174" cx="31.9" cy="118.8" r="31.1"/>
  3076. <linearGradient id="SVGID_178_" gradientUnits="userSpaceOnUse" x1="-324.82" y1="214.65" x2="-324.82" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  3077. <stop offset="0" style="stop-color:#B7B7B7"/>
  3078. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3079. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3080. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3081. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3082. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3083. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3084. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3085. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3086. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3087. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3088. <stop offset="0.95" style="stop-color:#888888"/>
  3089. <stop offset="1" style="stop-color:#666666"/>
  3090. </linearGradient>
  3091. <circle class="st175" cx="31.9" cy="120" r="31"/>
  3092. <linearGradient id="SVGID_179_" gradientUnits="userSpaceOnUse" x1="-323.59" y1="214.65" x2="-323.59" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  3093. <stop offset="0" style="stop-color:#B7B7B7"/>
  3094. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3095. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3096. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3097. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3098. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3099. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3100. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3101. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3102. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3103. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3104. <stop offset="0.95" style="stop-color:#888888"/>
  3105. <stop offset="1" style="stop-color:#666666"/>
  3106. </linearGradient>
  3107. <circle class="st176" cx="31.9" cy="121.3" r="31"/>
  3108. <linearGradient id="SVGID_180_" gradientUnits="userSpaceOnUse" x1="-322.35" y1="214.65" x2="-322.35" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  3109. <stop offset="0" style="stop-color:#B7B7B7"/>
  3110. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3111. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3112. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3113. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3114. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3115. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3116. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3117. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3118. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3119. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3120. <stop offset="0.95" style="stop-color:#888888"/>
  3121. <stop offset="1" style="stop-color:#666666"/>
  3122. </linearGradient>
  3123. <circle class="st177" cx="31.9" cy="122.5" r="31"/>
  3124. <linearGradient id="SVGID_181_" gradientUnits="userSpaceOnUse" x1="-321.11" y1="214.65" x2="-321.11" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  3125. <stop offset="0" style="stop-color:#B7B7B7"/>
  3126. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3127. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3128. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3129. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3130. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3131. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3132. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3133. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3134. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3135. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3136. <stop offset="0.95" style="stop-color:#888888"/>
  3137. <stop offset="1" style="stop-color:#666666"/>
  3138. </linearGradient>
  3139. <circle class="st178" cx="31.9" cy="123.7" r="31.1"/>
  3140. <linearGradient id="SVGID_182_" gradientUnits="userSpaceOnUse" x1="-319.87" y1="214.65" x2="-319.87" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  3141. <stop offset="0" style="stop-color:#B7B7B7"/>
  3142. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3143. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3144. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3145. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3146. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3147. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3148. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3149. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3150. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3151. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3152. <stop offset="0.95" style="stop-color:#888888"/>
  3153. <stop offset="1" style="stop-color:#666666"/>
  3154. </linearGradient>
  3155. <circle class="st179" cx="31.9" cy="125" r="31"/>
  3156. <linearGradient id="SVGID_183_" gradientUnits="userSpaceOnUse" x1="-318.64" y1="214.65" x2="-318.64" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  3157. <stop offset="0" style="stop-color:#B7B7B7"/>
  3158. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3159. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3160. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3161. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3162. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3163. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3164. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3165. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3166. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3167. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3168. <stop offset="0.95" style="stop-color:#888888"/>
  3169. <stop offset="1" style="stop-color:#666666"/>
  3170. </linearGradient>
  3171. <circle class="st180" cx="31.9" cy="126.2" r="31.1"/>
  3172. <linearGradient id="SVGID_184_" gradientUnits="userSpaceOnUse" x1="-317.4" y1="214.65" x2="-317.4" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  3173. <stop offset="0" style="stop-color:#B7B7B7"/>
  3174. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3175. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3176. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3177. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3178. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3179. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3180. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3181. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3182. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3183. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3184. <stop offset="0.95" style="stop-color:#888888"/>
  3185. <stop offset="1" style="stop-color:#666666"/>
  3186. </linearGradient>
  3187. <circle class="st181" cx="31.9" cy="127.5" r="31"/>
  3188. <linearGradient id="SVGID_185_" gradientUnits="userSpaceOnUse" x1="-316.16" y1="214.65" x2="-316.16" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  3189. <stop offset="0" style="stop-color:#B7B7B7"/>
  3190. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3191. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3192. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3193. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3194. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3195. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3196. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3197. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3198. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3199. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3200. <stop offset="0.95" style="stop-color:#888888"/>
  3201. <stop offset="1" style="stop-color:#666666"/>
  3202. </linearGradient>
  3203. <circle class="st182" cx="31.9" cy="128.7" r="31.1"/>
  3204. <linearGradient id="SVGID_186_" gradientUnits="userSpaceOnUse" x1="-314.92" y1="214.65" x2="-314.92" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  3205. <stop offset="0" style="stop-color:#B7B7B7"/>
  3206. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3207. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3208. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3209. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3210. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3211. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3212. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3213. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3214. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3215. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3216. <stop offset="0.95" style="stop-color:#888888"/>
  3217. <stop offset="1" style="stop-color:#666666"/>
  3218. </linearGradient>
  3219. <circle class="st183" cx="31.9" cy="129.9" r="31.1"/>
  3220. <linearGradient id="SVGID_187_" gradientUnits="userSpaceOnUse" x1="-313.68" y1="214.65" x2="-313.68" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  3221. <stop offset="0" style="stop-color:#B7B7B7"/>
  3222. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3223. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3224. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3225. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3226. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3227. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3228. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3229. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3230. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3231. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3232. <stop offset="0.95" style="stop-color:#888888"/>
  3233. <stop offset="1" style="stop-color:#666666"/>
  3234. </linearGradient>
  3235. <circle class="st184" cx="31.9" cy="131.2" r="31.1"/>
  3236. <linearGradient id="SVGID_188_" gradientUnits="userSpaceOnUse" x1="-312.45" y1="214.65" x2="-312.45" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  3237. <stop offset="0" style="stop-color:#B7B7B7"/>
  3238. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3239. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3240. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3241. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3242. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3243. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3244. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3245. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3246. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3247. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3248. <stop offset="0.95" style="stop-color:#888888"/>
  3249. <stop offset="1" style="stop-color:#666666"/>
  3250. </linearGradient>
  3251. <circle class="st185" cx="31.9" cy="132.4" r="31.1"/>
  3252. <linearGradient id="SVGID_189_" gradientUnits="userSpaceOnUse" x1="-311.21" y1="214.65" x2="-311.21" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  3253. <stop offset="0" style="stop-color:#B7B7B7"/>
  3254. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3255. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3256. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3257. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3258. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3259. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3260. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3261. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3262. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3263. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3264. <stop offset="0.95" style="stop-color:#888888"/>
  3265. <stop offset="1" style="stop-color:#666666"/>
  3266. </linearGradient>
  3267. <circle class="st186" cx="31.9" cy="133.6" r="31.1"/>
  3268. <linearGradient id="SVGID_190_" gradientUnits="userSpaceOnUse" x1="-309.97" y1="214.65" x2="-309.97" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  3269. <stop offset="0" style="stop-color:#B7B7B7"/>
  3270. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3271. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3272. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3273. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3274. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3275. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3276. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3277. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3278. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3279. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3280. <stop offset="0.95" style="stop-color:#888888"/>
  3281. <stop offset="1" style="stop-color:#666666"/>
  3282. </linearGradient>
  3283. <circle class="st187" cx="31.9" cy="134.9" r="31.1"/>
  3284. <linearGradient id="SVGID_191_" gradientUnits="userSpaceOnUse" x1="-308.73" y1="214.65" x2="-308.73" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  3285. <stop offset="0" style="stop-color:#B7B7B7"/>
  3286. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3287. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3288. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3289. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3290. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3291. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3292. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3293. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3294. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3295. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3296. <stop offset="0.95" style="stop-color:#888888"/>
  3297. <stop offset="1" style="stop-color:#666666"/>
  3298. </linearGradient>
  3299. <circle class="st188" cx="31.9" cy="136.1" r="31.1"/>
  3300. <linearGradient id="SVGID_192_" gradientUnits="userSpaceOnUse" x1="-307.5" y1="214.65" x2="-307.5" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  3301. <stop offset="0" style="stop-color:#B7B7B7"/>
  3302. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3303. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3304. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3305. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3306. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3307. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3308. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3309. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3310. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3311. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3312. <stop offset="0.95" style="stop-color:#888888"/>
  3313. <stop offset="1" style="stop-color:#666666"/>
  3314. </linearGradient>
  3315. <circle class="st189" cx="31.9" cy="137.4" r="31.1"/>
  3316. <linearGradient id="SVGID_193_" gradientUnits="userSpaceOnUse" x1="-306.26" y1="214.65" x2="-306.26" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  3317. <stop offset="0" style="stop-color:#B7B7B7"/>
  3318. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3319. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3320. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3321. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3322. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3323. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3324. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3325. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3326. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3327. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3328. <stop offset="0.95" style="stop-color:#888888"/>
  3329. <stop offset="1" style="stop-color:#666666"/>
  3330. </linearGradient>
  3331. <circle class="st190" cx="31.9" cy="138.6" r="31.1"/>
  3332. <linearGradient id="SVGID_194_" gradientUnits="userSpaceOnUse" x1="-305.02" y1="214.65" x2="-305.02" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  3333. <stop offset="0" style="stop-color:#B7B7B7"/>
  3334. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3335. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3336. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3337. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3338. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3339. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3340. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3341. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3342. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3343. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3344. <stop offset="0.95" style="stop-color:#888888"/>
  3345. <stop offset="1" style="stop-color:#666666"/>
  3346. </linearGradient>
  3347. <circle class="st191" cx="31.9" cy="139.8" r="31.1"/>
  3348. <linearGradient id="SVGID_195_" gradientUnits="userSpaceOnUse" x1="-303.78" y1="214.65" x2="-303.78" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  3349. <stop offset="0" style="stop-color:#B7B7B7"/>
  3350. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3351. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3352. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3353. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3354. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3355. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3356. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3357. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3358. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3359. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3360. <stop offset="0.95" style="stop-color:#888888"/>
  3361. <stop offset="1" style="stop-color:#666666"/>
  3362. </linearGradient>
  3363. <circle class="st192" cx="31.9" cy="141.1" r="31.1"/>
  3364. <linearGradient id="SVGID_196_" gradientUnits="userSpaceOnUse" x1="-302.55" y1="214.65" x2="-302.55" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  3365. <stop offset="0" style="stop-color:#B7B7B7"/>
  3366. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3367. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3368. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3369. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3370. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3371. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3372. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3373. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3374. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3375. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3376. <stop offset="0.95" style="stop-color:#888888"/>
  3377. <stop offset="1" style="stop-color:#666666"/>
  3378. </linearGradient>
  3379. <circle class="st193" cx="31.9" cy="142.3" r="31.1"/>
  3380. <linearGradient id="SVGID_197_" gradientUnits="userSpaceOnUse" x1="-301.31" y1="214.65" x2="-301.31" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  3381. <stop offset="0" style="stop-color:#B7B7B7"/>
  3382. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3383. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3384. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3385. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3386. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3387. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3388. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3389. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3390. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3391. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3392. <stop offset="0.95" style="stop-color:#888888"/>
  3393. <stop offset="1" style="stop-color:#666666"/>
  3394. </linearGradient>
  3395. <circle class="st194" cx="31.9" cy="143.5" r="31.1"/>
  3396. <linearGradient id="SVGID_198_" gradientUnits="userSpaceOnUse" x1="-300.07" y1="214.65" x2="-300.07" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  3397. <stop offset="0" style="stop-color:#B7B7B7"/>
  3398. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3399. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3400. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3401. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3402. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3403. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3404. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3405. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3406. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3407. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3408. <stop offset="0.95" style="stop-color:#888888"/>
  3409. <stop offset="1" style="stop-color:#666666"/>
  3410. </linearGradient>
  3411. <circle class="st195" cx="31.9" cy="144.8" r="31.1"/>
  3412. <linearGradient id="SVGID_199_" gradientUnits="userSpaceOnUse" x1="-298.83" y1="214.65" x2="-298.83" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  3413. <stop offset="0" style="stop-color:#B7B7B7"/>
  3414. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3415. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3416. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3417. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3418. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3419. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3420. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3421. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3422. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3423. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3424. <stop offset="0.95" style="stop-color:#888888"/>
  3425. <stop offset="1" style="stop-color:#666666"/>
  3426. </linearGradient>
  3427. <circle class="st196" cx="31.9" cy="146" r="31.1"/>
  3428. <linearGradient id="SVGID_200_" gradientUnits="userSpaceOnUse" x1="-297.6" y1="214.65" x2="-297.6" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  3429. <stop offset="0" style="stop-color:#B7B7B7"/>
  3430. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3431. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3432. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3433. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3434. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3435. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3436. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3437. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3438. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3439. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3440. <stop offset="0.95" style="stop-color:#888888"/>
  3441. <stop offset="1" style="stop-color:#666666"/>
  3442. </linearGradient>
  3443. <circle class="st197" cx="31.9" cy="147.3" r="31.1"/>
  3444. <linearGradient id="SVGID_201_" gradientUnits="userSpaceOnUse" x1="-296.36" y1="214.65" x2="-296.36" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  3445. <stop offset="0" style="stop-color:#B7B7B7"/>
  3446. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3447. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3448. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3449. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3450. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3451. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3452. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3453. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3454. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3455. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3456. <stop offset="0.95" style="stop-color:#888888"/>
  3457. <stop offset="1" style="stop-color:#666666"/>
  3458. </linearGradient>
  3459. <circle class="st198" cx="31.9" cy="148.5" r="31.1"/>
  3460. <linearGradient id="SVGID_202_" gradientUnits="userSpaceOnUse" x1="-295.12" y1="214.65" x2="-295.12" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  3461. <stop offset="0" style="stop-color:#B7B7B7"/>
  3462. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3463. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3464. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3465. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3466. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3467. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3468. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3469. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3470. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3471. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3472. <stop offset="0.95" style="stop-color:#888888"/>
  3473. <stop offset="1" style="stop-color:#666666"/>
  3474. </linearGradient>
  3475. <circle class="st199" cx="31.9" cy="149.7" r="31.1"/>
  3476. <linearGradient id="SVGID_203_" gradientUnits="userSpaceOnUse" x1="-293.88" y1="214.65" x2="-293.88" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  3477. <stop offset="0" style="stop-color:#B7B7B7"/>
  3478. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3479. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3480. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3481. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3482. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3483. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3484. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3485. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3486. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3487. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3488. <stop offset="0.95" style="stop-color:#888888"/>
  3489. <stop offset="1" style="stop-color:#666666"/>
  3490. </linearGradient>
  3491. <circle class="st200" cx="31.9" cy="151" r="31.1"/>
  3492. <linearGradient id="SVGID_204_" gradientUnits="userSpaceOnUse" x1="-292.65" y1="214.65" x2="-292.65" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  3493. <stop offset="0" style="stop-color:#B7B7B7"/>
  3494. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3495. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3496. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3497. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3498. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3499. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3500. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3501. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3502. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3503. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3504. <stop offset="0.95" style="stop-color:#888888"/>
  3505. <stop offset="1" style="stop-color:#666666"/>
  3506. </linearGradient>
  3507. <circle class="st201" cx="31.9" cy="152.2" r="31.1"/>
  3508. <linearGradient id="SVGID_205_" gradientUnits="userSpaceOnUse" x1="-291.41" y1="214.65" x2="-291.41" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  3509. <stop offset="0" style="stop-color:#B7B7B7"/>
  3510. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3511. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3512. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3513. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3514. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3515. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3516. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3517. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3518. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3519. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3520. <stop offset="0.95" style="stop-color:#888888"/>
  3521. <stop offset="1" style="stop-color:#666666"/>
  3522. </linearGradient>
  3523. <circle class="st202" cx="31.9" cy="153.4" r="31.1"/>
  3524. <linearGradient id="SVGID_206_" gradientUnits="userSpaceOnUse" x1="-290.17" y1="214.65" x2="-290.17" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  3525. <stop offset="0" style="stop-color:#B7B7B7"/>
  3526. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3527. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3528. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3529. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3530. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3531. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3532. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3533. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3534. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3535. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3536. <stop offset="0.95" style="stop-color:#888888"/>
  3537. <stop offset="1" style="stop-color:#666666"/>
  3538. </linearGradient>
  3539. <circle class="st203" cx="31.9" cy="154.7" r="31.1"/>
  3540. <linearGradient id="SVGID_207_" gradientUnits="userSpaceOnUse" x1="-288.93" y1="214.65" x2="-288.93" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
  3541. <stop offset="0" style="stop-color:#B7B7B7"/>
  3542. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3543. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3544. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3545. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3546. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3547. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3548. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3549. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3550. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3551. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3552. <stop offset="0.95" style="stop-color:#888888"/>
  3553. <stop offset="1" style="stop-color:#666666"/>
  3554. </linearGradient>
  3555. <circle class="st204" cx="31.9" cy="155.9" r="31.1"/>
  3556. </g>
  3557. </g>
  3558. <g>
  3559. <defs>
  3560. <polygon id="SVGID_208_" points="150,45 150,112.2 63.1,112.2 26,78.9 63.1,45 "/>
  3561. </defs>
  3562. <clipPath id="SVGID_209_">
  3563. <use xlink:href="#SVGID_208_" style="overflow:visible;"/>
  3564. </clipPath>
  3565. <g class="st205">
  3566. <linearGradient id="SVGID_210_" gradientUnits="userSpaceOnUse" x1="-107.07" y1="171.58" x2="-107.07" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  3567. <stop offset="0" style="stop-color:#B7B7B7"/>
  3568. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3569. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3570. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3571. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3572. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3573. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3574. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3575. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3576. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3577. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3578. <stop offset="0.95" style="stop-color:#888888"/>
  3579. <stop offset="1" style="stop-color:#666666"/>
  3580. </linearGradient>
  3581. <ellipse class="st206" cx="68.9" cy="78.6" rx="42.8" ry="33.2"/>
  3582. <linearGradient id="SVGID_211_" gradientUnits="userSpaceOnUse" x1="-105.36" y1="171.58" x2="-105.36" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  3583. <stop offset="0" style="stop-color:#B7B7B7"/>
  3584. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3585. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3586. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3587. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3588. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3589. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3590. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3591. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3592. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3593. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3594. <stop offset="0.95" style="stop-color:#888888"/>
  3595. <stop offset="1" style="stop-color:#666666"/>
  3596. </linearGradient>
  3597. <ellipse class="st207" cx="70.6" cy="78.6" rx="42.8" ry="33.2"/>
  3598. <linearGradient id="SVGID_212_" gradientUnits="userSpaceOnUse" x1="-103.66" y1="171.58" x2="-103.66" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  3599. <stop offset="0" style="stop-color:#B7B7B7"/>
  3600. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3601. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3602. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3603. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3604. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3605. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3606. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3607. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3608. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3609. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3610. <stop offset="0.95" style="stop-color:#888888"/>
  3611. <stop offset="1" style="stop-color:#666666"/>
  3612. </linearGradient>
  3613. <ellipse class="st208" cx="72.3" cy="78.6" rx="42.8" ry="33.2"/>
  3614. <linearGradient id="SVGID_213_" gradientUnits="userSpaceOnUse" x1="-101.95" y1="171.58" x2="-101.95" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  3615. <stop offset="0" style="stop-color:#B7B7B7"/>
  3616. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3617. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3618. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3619. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3620. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3621. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3622. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3623. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3624. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3625. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3626. <stop offset="0.95" style="stop-color:#888888"/>
  3627. <stop offset="1" style="stop-color:#666666"/>
  3628. </linearGradient>
  3629. <ellipse class="st209" cx="74" cy="78.6" rx="42.8" ry="33.2"/>
  3630. <linearGradient id="SVGID_214_" gradientUnits="userSpaceOnUse" x1="-100.24" y1="171.58" x2="-100.24" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  3631. <stop offset="0" style="stop-color:#B7B7B7"/>
  3632. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3633. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3634. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3635. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3636. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3637. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3638. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3639. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3640. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3641. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3642. <stop offset="0.95" style="stop-color:#888888"/>
  3643. <stop offset="1" style="stop-color:#666666"/>
  3644. </linearGradient>
  3645. <ellipse class="st210" cx="75.7" cy="78.6" rx="42.8" ry="33.2"/>
  3646. <linearGradient id="SVGID_215_" gradientUnits="userSpaceOnUse" x1="-98.53" y1="171.58" x2="-98.53" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  3647. <stop offset="0" style="stop-color:#B7B7B7"/>
  3648. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3649. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3650. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3651. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3652. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3653. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3654. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3655. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3656. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3657. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3658. <stop offset="0.95" style="stop-color:#888888"/>
  3659. <stop offset="1" style="stop-color:#666666"/>
  3660. </linearGradient>
  3661. <ellipse class="st211" cx="77.4" cy="78.6" rx="42.8" ry="33.2"/>
  3662. <linearGradient id="SVGID_216_" gradientUnits="userSpaceOnUse" x1="-96.83" y1="171.58" x2="-96.83" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  3663. <stop offset="0" style="stop-color:#B7B7B7"/>
  3664. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3665. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3666. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3667. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3668. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3669. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3670. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3671. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3672. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3673. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3674. <stop offset="0.95" style="stop-color:#888888"/>
  3675. <stop offset="1" style="stop-color:#666666"/>
  3676. </linearGradient>
  3677. <ellipse class="st212" cx="79.1" cy="78.6" rx="42.8" ry="33.2"/>
  3678. <linearGradient id="SVGID_217_" gradientUnits="userSpaceOnUse" x1="-95.12" y1="171.58" x2="-95.12" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  3679. <stop offset="0" style="stop-color:#B7B7B7"/>
  3680. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3681. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3682. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3683. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3684. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3685. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3686. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3687. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3688. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3689. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3690. <stop offset="0.95" style="stop-color:#888888"/>
  3691. <stop offset="1" style="stop-color:#666666"/>
  3692. </linearGradient>
  3693. <ellipse class="st213" cx="80.8" cy="78.6" rx="42.8" ry="33.2"/>
  3694. <linearGradient id="SVGID_218_" gradientUnits="userSpaceOnUse" x1="-93.41" y1="171.58" x2="-93.41" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  3695. <stop offset="0" style="stop-color:#B7B7B7"/>
  3696. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3697. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3698. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3699. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3700. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3701. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3702. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3703. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3704. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3705. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3706. <stop offset="0.95" style="stop-color:#888888"/>
  3707. <stop offset="1" style="stop-color:#666666"/>
  3708. </linearGradient>
  3709. <ellipse class="st214" cx="82.6" cy="78.6" rx="42.8" ry="33.2"/>
  3710. <linearGradient id="SVGID_219_" gradientUnits="userSpaceOnUse" x1="-91.7" y1="171.58" x2="-91.7" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  3711. <stop offset="0" style="stop-color:#B7B7B7"/>
  3712. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3713. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3714. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3715. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3716. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3717. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3718. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3719. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3720. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3721. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3722. <stop offset="0.95" style="stop-color:#888888"/>
  3723. <stop offset="1" style="stop-color:#666666"/>
  3724. </linearGradient>
  3725. <ellipse class="st215" cx="84.3" cy="78.6" rx="42.8" ry="33.2"/>
  3726. <linearGradient id="SVGID_220_" gradientUnits="userSpaceOnUse" x1="-90" y1="171.58" x2="-90" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  3727. <stop offset="0" style="stop-color:#B7B7B7"/>
  3728. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3729. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3730. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3731. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3732. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3733. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3734. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3735. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3736. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3737. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3738. <stop offset="0.95" style="stop-color:#888888"/>
  3739. <stop offset="1" style="stop-color:#666666"/>
  3740. </linearGradient>
  3741. <ellipse class="st216" cx="86" cy="78.6" rx="42.8" ry="33.2"/>
  3742. <linearGradient id="SVGID_221_" gradientUnits="userSpaceOnUse" x1="-88.29" y1="171.58" x2="-88.29" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  3743. <stop offset="0" style="stop-color:#B7B7B7"/>
  3744. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3745. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3746. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3747. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3748. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3749. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3750. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3751. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3752. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3753. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3754. <stop offset="0.95" style="stop-color:#888888"/>
  3755. <stop offset="1" style="stop-color:#666666"/>
  3756. </linearGradient>
  3757. <ellipse class="st217" cx="87.7" cy="78.6" rx="42.8" ry="33.2"/>
  3758. <linearGradient id="SVGID_222_" gradientUnits="userSpaceOnUse" x1="-86.58" y1="171.58" x2="-86.58" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  3759. <stop offset="0" style="stop-color:#B7B7B7"/>
  3760. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3761. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3762. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3763. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3764. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3765. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3766. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3767. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3768. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3769. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3770. <stop offset="0.95" style="stop-color:#888888"/>
  3771. <stop offset="1" style="stop-color:#666666"/>
  3772. </linearGradient>
  3773. <ellipse class="st218" cx="89.4" cy="78.6" rx="42.8" ry="33.2"/>
  3774. <linearGradient id="SVGID_223_" gradientUnits="userSpaceOnUse" x1="-84.87" y1="171.58" x2="-84.87" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  3775. <stop offset="0" style="stop-color:#B7B7B7"/>
  3776. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3777. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3778. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3779. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3780. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3781. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3782. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3783. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3784. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3785. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3786. <stop offset="0.95" style="stop-color:#888888"/>
  3787. <stop offset="1" style="stop-color:#666666"/>
  3788. </linearGradient>
  3789. <ellipse class="st219" cx="91.1" cy="78.6" rx="42.9" ry="33.2"/>
  3790. <linearGradient id="SVGID_224_" gradientUnits="userSpaceOnUse" x1="-83.17" y1="171.58" x2="-83.17" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  3791. <stop offset="0" style="stop-color:#B7B7B7"/>
  3792. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3793. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3794. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3795. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3796. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3797. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3798. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3799. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3800. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3801. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3802. <stop offset="0.95" style="stop-color:#888888"/>
  3803. <stop offset="1" style="stop-color:#666666"/>
  3804. </linearGradient>
  3805. <ellipse class="st220" cx="92.8" cy="78.6" rx="42.8" ry="33.2"/>
  3806. <linearGradient id="SVGID_225_" gradientUnits="userSpaceOnUse" x1="-81.46" y1="171.58" x2="-81.46" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  3807. <stop offset="0" style="stop-color:#B7B7B7"/>
  3808. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3809. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3810. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3811. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3812. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3813. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3814. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3815. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3816. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3817. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3818. <stop offset="0.95" style="stop-color:#888888"/>
  3819. <stop offset="1" style="stop-color:#666666"/>
  3820. </linearGradient>
  3821. <ellipse class="st221" cx="94.5" cy="78.6" rx="42.9" ry="33.2"/>
  3822. <linearGradient id="SVGID_226_" gradientUnits="userSpaceOnUse" x1="-79.75" y1="171.58" x2="-79.75" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  3823. <stop offset="0" style="stop-color:#B7B7B7"/>
  3824. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3825. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3826. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3827. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3828. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3829. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3830. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3831. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3832. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3833. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3834. <stop offset="0.95" style="stop-color:#888888"/>
  3835. <stop offset="1" style="stop-color:#666666"/>
  3836. </linearGradient>
  3837. <ellipse class="st222" cx="96.2" cy="78.6" rx="42.8" ry="33.2"/>
  3838. <linearGradient id="SVGID_227_" gradientUnits="userSpaceOnUse" x1="-78.04" y1="171.58" x2="-78.04" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  3839. <stop offset="0" style="stop-color:#B7B7B7"/>
  3840. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3841. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3842. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3843. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3844. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3845. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3846. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3847. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3848. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3849. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3850. <stop offset="0.95" style="stop-color:#888888"/>
  3851. <stop offset="1" style="stop-color:#666666"/>
  3852. </linearGradient>
  3853. <ellipse class="st223" cx="97.9" cy="78.6" rx="42.8" ry="33.2"/>
  3854. <linearGradient id="SVGID_228_" gradientUnits="userSpaceOnUse" x1="-76.34" y1="171.58" x2="-76.34" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  3855. <stop offset="0" style="stop-color:#B7B7B7"/>
  3856. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3857. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3858. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3859. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3860. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3861. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3862. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3863. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3864. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3865. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3866. <stop offset="0.95" style="stop-color:#888888"/>
  3867. <stop offset="1" style="stop-color:#666666"/>
  3868. </linearGradient>
  3869. <ellipse class="st224" cx="99.6" cy="78.6" rx="42.8" ry="33.2"/>
  3870. <linearGradient id="SVGID_229_" gradientUnits="userSpaceOnUse" x1="-74.63" y1="171.58" x2="-74.63" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  3871. <stop offset="0" style="stop-color:#B7B7B7"/>
  3872. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3873. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3874. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3875. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3876. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3877. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3878. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3879. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3880. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3881. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3882. <stop offset="0.95" style="stop-color:#888888"/>
  3883. <stop offset="1" style="stop-color:#666666"/>
  3884. </linearGradient>
  3885. <ellipse class="st225" cx="101.3" cy="78.6" rx="42.8" ry="33.2"/>
  3886. <linearGradient id="SVGID_230_" gradientUnits="userSpaceOnUse" x1="-72.92" y1="171.58" x2="-72.92" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  3887. <stop offset="0" style="stop-color:#B7B7B7"/>
  3888. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3889. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3890. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3891. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3892. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3893. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3894. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3895. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3896. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3897. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3898. <stop offset="0.95" style="stop-color:#888888"/>
  3899. <stop offset="1" style="stop-color:#666666"/>
  3900. </linearGradient>
  3901. <ellipse class="st226" cx="103" cy="78.6" rx="42.8" ry="33.2"/>
  3902. <linearGradient id="SVGID_231_" gradientUnits="userSpaceOnUse" x1="-71.21" y1="171.58" x2="-71.21" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  3903. <stop offset="0" style="stop-color:#B7B7B7"/>
  3904. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3905. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3906. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3907. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3908. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3909. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3910. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3911. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3912. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3913. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3914. <stop offset="0.95" style="stop-color:#888888"/>
  3915. <stop offset="1" style="stop-color:#666666"/>
  3916. </linearGradient>
  3917. <ellipse class="st227" cx="104.8" cy="78.6" rx="42.9" ry="33.2"/>
  3918. <linearGradient id="SVGID_232_" gradientUnits="userSpaceOnUse" x1="-69.51" y1="171.58" x2="-69.51" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  3919. <stop offset="0" style="stop-color:#B7B7B7"/>
  3920. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3921. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3922. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3923. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3924. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3925. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3926. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3927. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3928. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3929. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3930. <stop offset="0.95" style="stop-color:#888888"/>
  3931. <stop offset="1" style="stop-color:#666666"/>
  3932. </linearGradient>
  3933. <ellipse class="st228" cx="106.4" cy="78.6" rx="42.8" ry="33.2"/>
  3934. <linearGradient id="SVGID_233_" gradientUnits="userSpaceOnUse" x1="-67.8" y1="171.58" x2="-67.8" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  3935. <stop offset="0" style="stop-color:#B7B7B7"/>
  3936. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3937. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3938. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3939. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3940. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3941. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3942. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3943. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3944. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3945. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3946. <stop offset="0.95" style="stop-color:#888888"/>
  3947. <stop offset="1" style="stop-color:#666666"/>
  3948. </linearGradient>
  3949. <ellipse class="st229" cx="108.2" cy="78.6" rx="42.9" ry="33.2"/>
  3950. <linearGradient id="SVGID_234_" gradientUnits="userSpaceOnUse" x1="-66.09" y1="171.58" x2="-66.09" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  3951. <stop offset="0" style="stop-color:#B7B7B7"/>
  3952. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3953. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3954. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3955. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3956. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3957. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3958. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3959. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3960. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3961. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3962. <stop offset="0.95" style="stop-color:#888888"/>
  3963. <stop offset="1" style="stop-color:#666666"/>
  3964. </linearGradient>
  3965. <ellipse class="st230" cx="109.9" cy="78.6" rx="42.8" ry="33.2"/>
  3966. <linearGradient id="SVGID_235_" gradientUnits="userSpaceOnUse" x1="-64.38" y1="171.58" x2="-64.38" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  3967. <stop offset="0" style="stop-color:#B7B7B7"/>
  3968. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3969. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3970. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3971. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3972. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3973. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3974. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3975. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3976. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3977. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3978. <stop offset="0.95" style="stop-color:#888888"/>
  3979. <stop offset="1" style="stop-color:#666666"/>
  3980. </linearGradient>
  3981. <ellipse class="st231" cx="111.6" cy="78.6" rx="42.8" ry="33.2"/>
  3982. <linearGradient id="SVGID_236_" gradientUnits="userSpaceOnUse" x1="-62.68" y1="171.58" x2="-62.68" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  3983. <stop offset="0" style="stop-color:#B7B7B7"/>
  3984. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  3985. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  3986. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  3987. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  3988. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  3989. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  3990. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  3991. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  3992. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  3993. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  3994. <stop offset="0.95" style="stop-color:#888888"/>
  3995. <stop offset="1" style="stop-color:#666666"/>
  3996. </linearGradient>
  3997. <ellipse class="st232" cx="113.3" cy="78.6" rx="42.9" ry="33.2"/>
  3998. <linearGradient id="SVGID_237_" gradientUnits="userSpaceOnUse" x1="-60.97" y1="171.58" x2="-60.97" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  3999. <stop offset="0" style="stop-color:#B7B7B7"/>
  4000. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  4001. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  4002. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  4003. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  4004. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  4005. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  4006. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  4007. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  4008. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  4009. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  4010. <stop offset="0.95" style="stop-color:#888888"/>
  4011. <stop offset="1" style="stop-color:#666666"/>
  4012. </linearGradient>
  4013. <ellipse class="st233" cx="115" cy="78.6" rx="42.8" ry="33.2"/>
  4014. <linearGradient id="SVGID_238_" gradientUnits="userSpaceOnUse" x1="-59.26" y1="171.58" x2="-59.26" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  4015. <stop offset="0" style="stop-color:#B7B7B7"/>
  4016. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  4017. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  4018. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  4019. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  4020. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  4021. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  4022. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  4023. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  4024. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  4025. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  4026. <stop offset="0.95" style="stop-color:#888888"/>
  4027. <stop offset="1" style="stop-color:#666666"/>
  4028. </linearGradient>
  4029. <ellipse class="st234" cx="116.7" cy="78.6" rx="42.8" ry="33.2"/>
  4030. <linearGradient id="SVGID_239_" gradientUnits="userSpaceOnUse" x1="-57.55" y1="171.58" x2="-57.55" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  4031. <stop offset="0" style="stop-color:#B7B7B7"/>
  4032. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  4033. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  4034. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  4035. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  4036. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  4037. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  4038. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  4039. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  4040. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  4041. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  4042. <stop offset="0.95" style="stop-color:#888888"/>
  4043. <stop offset="1" style="stop-color:#666666"/>
  4044. </linearGradient>
  4045. <ellipse class="st235" cx="118.4" cy="78.6" rx="42.9" ry="33.2"/>
  4046. <linearGradient id="SVGID_240_" gradientUnits="userSpaceOnUse" x1="-55.85" y1="171.58" x2="-55.85" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  4047. <stop offset="0" style="stop-color:#B7B7B7"/>
  4048. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  4049. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  4050. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  4051. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  4052. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  4053. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  4054. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  4055. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  4056. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  4057. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  4058. <stop offset="0.95" style="stop-color:#888888"/>
  4059. <stop offset="1" style="stop-color:#666666"/>
  4060. </linearGradient>
  4061. <ellipse class="st236" cx="120.1" cy="78.6" rx="42.8" ry="33.2"/>
  4062. <linearGradient id="SVGID_241_" gradientUnits="userSpaceOnUse" x1="-54.14" y1="171.58" x2="-54.14" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  4063. <stop offset="0" style="stop-color:#B7B7B7"/>
  4064. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  4065. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  4066. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  4067. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  4068. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  4069. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  4070. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  4071. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  4072. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  4073. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  4074. <stop offset="0.95" style="stop-color:#888888"/>
  4075. <stop offset="1" style="stop-color:#666666"/>
  4076. </linearGradient>
  4077. <ellipse class="st237" cx="121.8" cy="78.6" rx="42.8" ry="33.2"/>
  4078. <linearGradient id="SVGID_242_" gradientUnits="userSpaceOnUse" x1="-52.43" y1="171.58" x2="-52.43" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  4079. <stop offset="0" style="stop-color:#B7B7B7"/>
  4080. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  4081. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  4082. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  4083. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  4084. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  4085. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  4086. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  4087. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  4088. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  4089. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  4090. <stop offset="0.95" style="stop-color:#888888"/>
  4091. <stop offset="1" style="stop-color:#666666"/>
  4092. </linearGradient>
  4093. <ellipse class="st238" cx="123.5" cy="78.6" rx="42.9" ry="33.2"/>
  4094. <linearGradient id="SVGID_243_" gradientUnits="userSpaceOnUse" x1="-50.72" y1="171.58" x2="-50.72" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  4095. <stop offset="0" style="stop-color:#B7B7B7"/>
  4096. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  4097. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  4098. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  4099. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  4100. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  4101. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  4102. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  4103. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  4104. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  4105. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  4106. <stop offset="0.95" style="stop-color:#888888"/>
  4107. <stop offset="1" style="stop-color:#666666"/>
  4108. </linearGradient>
  4109. <ellipse class="st239" cx="125.2" cy="78.6" rx="42.8" ry="33.2"/>
  4110. <linearGradient id="SVGID_244_" gradientUnits="userSpaceOnUse" x1="-49.02" y1="171.58" x2="-49.02" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  4111. <stop offset="0" style="stop-color:#B7B7B7"/>
  4112. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  4113. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  4114. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  4115. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  4116. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  4117. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  4118. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  4119. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  4120. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  4121. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  4122. <stop offset="0.95" style="stop-color:#888888"/>
  4123. <stop offset="1" style="stop-color:#666666"/>
  4124. </linearGradient>
  4125. <ellipse class="st240" cx="126.9" cy="78.6" rx="42.9" ry="33.2"/>
  4126. <linearGradient id="SVGID_245_" gradientUnits="userSpaceOnUse" x1="-47.31" y1="171.58" x2="-47.31" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  4127. <stop offset="0" style="stop-color:#B7B7B7"/>
  4128. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  4129. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  4130. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  4131. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  4132. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  4133. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  4134. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  4135. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  4136. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  4137. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  4138. <stop offset="0.95" style="stop-color:#888888"/>
  4139. <stop offset="1" style="stop-color:#666666"/>
  4140. </linearGradient>
  4141. <ellipse class="st241" cx="128.6" cy="78.6" rx="42.9" ry="33.2"/>
  4142. <linearGradient id="SVGID_246_" gradientUnits="userSpaceOnUse" x1="-45.6" y1="171.58" x2="-45.6" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  4143. <stop offset="0" style="stop-color:#B7B7B7"/>
  4144. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  4145. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  4146. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  4147. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  4148. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  4149. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  4150. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  4151. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  4152. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  4153. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  4154. <stop offset="0.95" style="stop-color:#888888"/>
  4155. <stop offset="1" style="stop-color:#666666"/>
  4156. </linearGradient>
  4157. <ellipse class="st242" cx="130.4" cy="78.6" rx="42.8" ry="33.2"/>
  4158. <linearGradient id="SVGID_247_" gradientUnits="userSpaceOnUse" x1="-43.89" y1="171.58" x2="-43.89" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  4159. <stop offset="0" style="stop-color:#B7B7B7"/>
  4160. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  4161. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  4162. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  4163. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  4164. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  4165. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  4166. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  4167. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  4168. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  4169. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  4170. <stop offset="0.95" style="stop-color:#888888"/>
  4171. <stop offset="1" style="stop-color:#666666"/>
  4172. </linearGradient>
  4173. <ellipse class="st243" cx="132.1" cy="78.6" rx="42.9" ry="33.2"/>
  4174. <linearGradient id="SVGID_248_" gradientUnits="userSpaceOnUse" x1="-42.19" y1="171.58" x2="-42.19" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  4175. <stop offset="0" style="stop-color:#B7B7B7"/>
  4176. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  4177. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  4178. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  4179. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  4180. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  4181. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  4182. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  4183. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  4184. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  4185. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  4186. <stop offset="0.95" style="stop-color:#888888"/>
  4187. <stop offset="1" style="stop-color:#666666"/>
  4188. </linearGradient>
  4189. <ellipse class="st244" cx="133.8" cy="78.6" rx="42.8" ry="33.2"/>
  4190. <linearGradient id="SVGID_249_" gradientUnits="userSpaceOnUse" x1="-40.48" y1="171.58" x2="-40.48" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  4191. <stop offset="0" style="stop-color:#B7B7B7"/>
  4192. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  4193. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  4194. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  4195. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  4196. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  4197. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  4198. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  4199. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  4200. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  4201. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  4202. <stop offset="0.95" style="stop-color:#888888"/>
  4203. <stop offset="1" style="stop-color:#666666"/>
  4204. </linearGradient>
  4205. <ellipse class="st245" cx="135.5" cy="78.6" rx="42.8" ry="33.2"/>
  4206. <linearGradient id="SVGID_250_" gradientUnits="userSpaceOnUse" x1="-38.77" y1="171.58" x2="-38.77" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  4207. <stop offset="0" style="stop-color:#B7B7B7"/>
  4208. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  4209. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  4210. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  4211. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  4212. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  4213. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  4214. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  4215. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  4216. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  4217. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  4218. <stop offset="0.95" style="stop-color:#888888"/>
  4219. <stop offset="1" style="stop-color:#666666"/>
  4220. </linearGradient>
  4221. <ellipse class="st246" cx="137.2" cy="78.6" rx="42.9" ry="33.2"/>
  4222. <linearGradient id="SVGID_251_" gradientUnits="userSpaceOnUse" x1="-37.06" y1="171.58" x2="-37.06" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  4223. <stop offset="0" style="stop-color:#B7B7B7"/>
  4224. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  4225. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  4226. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  4227. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  4228. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  4229. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  4230. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  4231. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  4232. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  4233. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  4234. <stop offset="0.95" style="stop-color:#888888"/>
  4235. <stop offset="1" style="stop-color:#666666"/>
  4236. </linearGradient>
  4237. <ellipse class="st247" cx="138.9" cy="78.6" rx="42.9" ry="33.2"/>
  4238. <linearGradient id="SVGID_252_" gradientUnits="userSpaceOnUse" x1="-35.36" y1="171.58" x2="-35.36" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  4239. <stop offset="0" style="stop-color:#B7B7B7"/>
  4240. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  4241. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  4242. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  4243. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  4244. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  4245. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  4246. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  4247. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  4248. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  4249. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  4250. <stop offset="0.95" style="stop-color:#888888"/>
  4251. <stop offset="1" style="stop-color:#666666"/>
  4252. </linearGradient>
  4253. <ellipse class="st248" cx="140.6" cy="78.6" rx="42.9" ry="33.2"/>
  4254. <linearGradient id="SVGID_253_" gradientUnits="userSpaceOnUse" x1="-33.65" y1="171.58" x2="-33.65" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  4255. <stop offset="0" style="stop-color:#B7B7B7"/>
  4256. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  4257. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  4258. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  4259. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  4260. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  4261. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  4262. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  4263. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  4264. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  4265. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  4266. <stop offset="0.95" style="stop-color:#888888"/>
  4267. <stop offset="1" style="stop-color:#666666"/>
  4268. </linearGradient>
  4269. <ellipse class="st249" cx="142.3" cy="78.6" rx="42.9" ry="33.2"/>
  4270. <linearGradient id="SVGID_254_" gradientUnits="userSpaceOnUse" x1="-31.94" y1="171.58" x2="-31.94" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  4271. <stop offset="0" style="stop-color:#B7B7B7"/>
  4272. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  4273. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  4274. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  4275. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  4276. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  4277. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  4278. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  4279. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  4280. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  4281. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  4282. <stop offset="0.95" style="stop-color:#888888"/>
  4283. <stop offset="1" style="stop-color:#666666"/>
  4284. </linearGradient>
  4285. <ellipse class="st250" cx="144" cy="78.6" rx="42.8" ry="33.2"/>
  4286. <linearGradient id="SVGID_255_" gradientUnits="userSpaceOnUse" x1="-30.23" y1="171.58" x2="-30.23" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  4287. <stop offset="0" style="stop-color:#B7B7B7"/>
  4288. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  4289. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  4290. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  4291. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  4292. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  4293. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  4294. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  4295. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  4296. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  4297. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  4298. <stop offset="0.95" style="stop-color:#888888"/>
  4299. <stop offset="1" style="stop-color:#666666"/>
  4300. </linearGradient>
  4301. <ellipse class="st251" cx="145.7" cy="78.6" rx="42.8" ry="33.2"/>
  4302. <linearGradient id="SVGID_256_" gradientUnits="userSpaceOnUse" x1="-28.53" y1="171.58" x2="-28.53" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  4303. <stop offset="0" style="stop-color:#B7B7B7"/>
  4304. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  4305. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  4306. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  4307. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  4308. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  4309. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  4310. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  4311. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  4312. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  4313. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  4314. <stop offset="0.95" style="stop-color:#888888"/>
  4315. <stop offset="1" style="stop-color:#666666"/>
  4316. </linearGradient>
  4317. <ellipse class="st252" cx="147.4" cy="78.6" rx="42.9" ry="33.2"/>
  4318. <linearGradient id="SVGID_257_" gradientUnits="userSpaceOnUse" x1="-26.82" y1="171.58" x2="-26.82" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  4319. <stop offset="0" style="stop-color:#B7B7B7"/>
  4320. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  4321. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  4322. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  4323. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  4324. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  4325. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  4326. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  4327. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  4328. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  4329. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  4330. <stop offset="0.95" style="stop-color:#888888"/>
  4331. <stop offset="1" style="stop-color:#666666"/>
  4332. </linearGradient>
  4333. <ellipse class="st253" cx="149.1" cy="78.6" rx="42.8" ry="33.2"/>
  4334. <linearGradient id="SVGID_258_" gradientUnits="userSpaceOnUse" x1="-25.11" y1="171.58" x2="-25.11" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  4335. <stop offset="0" style="stop-color:#B7B7B7"/>
  4336. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  4337. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  4338. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  4339. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  4340. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  4341. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  4342. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  4343. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  4344. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  4345. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  4346. <stop offset="0.95" style="stop-color:#888888"/>
  4347. <stop offset="1" style="stop-color:#666666"/>
  4348. </linearGradient>
  4349. <ellipse class="st254" cx="150.9" cy="78.6" rx="42.9" ry="33.2"/>
  4350. <linearGradient id="SVGID_259_" gradientUnits="userSpaceOnUse" x1="-23.4" y1="171.58" x2="-23.4" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  4351. <stop offset="0" style="stop-color:#B7B7B7"/>
  4352. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  4353. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  4354. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  4355. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  4356. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  4357. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  4358. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  4359. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  4360. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  4361. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  4362. <stop offset="0.95" style="stop-color:#888888"/>
  4363. <stop offset="1" style="stop-color:#666666"/>
  4364. </linearGradient>
  4365. <ellipse class="st255" cx="152.6" cy="78.6" rx="42.9" ry="33.2"/>
  4366. <linearGradient id="SVGID_260_" gradientUnits="userSpaceOnUse" x1="-21.7" y1="171.58" x2="-21.7" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  4367. <stop offset="0" style="stop-color:#B7B7B7"/>
  4368. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  4369. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  4370. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  4371. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  4372. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  4373. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  4374. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  4375. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  4376. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  4377. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  4378. <stop offset="0.95" style="stop-color:#888888"/>
  4379. <stop offset="1" style="stop-color:#666666"/>
  4380. </linearGradient>
  4381. <ellipse class="st256" cx="154.3" cy="78.6" rx="42.8" ry="33.2"/>
  4382. <linearGradient id="SVGID_261_" gradientUnits="userSpaceOnUse" x1="-19.99" y1="171.58" x2="-19.99" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  4383. <stop offset="0" style="stop-color:#B7B7B7"/>
  4384. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  4385. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  4386. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  4387. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  4388. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  4389. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  4390. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  4391. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  4392. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  4393. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  4394. <stop offset="0.95" style="stop-color:#888888"/>
  4395. <stop offset="1" style="stop-color:#666666"/>
  4396. </linearGradient>
  4397. <ellipse class="st257" cx="156" cy="78.6" rx="42.9" ry="33.2"/>
  4398. <linearGradient id="SVGID_262_" gradientUnits="userSpaceOnUse" x1="-18.28" y1="171.58" x2="-18.28" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  4399. <stop offset="0" style="stop-color:#B7B7B7"/>
  4400. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  4401. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  4402. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  4403. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  4404. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  4405. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  4406. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  4407. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  4408. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  4409. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  4410. <stop offset="0.95" style="stop-color:#888888"/>
  4411. <stop offset="1" style="stop-color:#666666"/>
  4412. </linearGradient>
  4413. <ellipse class="st258" cx="157.7" cy="78.6" rx="42.9" ry="33.2"/>
  4414. <linearGradient id="SVGID_263_" gradientUnits="userSpaceOnUse" x1="-16.57" y1="171.58" x2="-16.57" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  4415. <stop offset="0" style="stop-color:#B7B7B7"/>
  4416. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  4417. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  4418. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  4419. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  4420. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  4421. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  4422. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  4423. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  4424. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  4425. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  4426. <stop offset="0.95" style="stop-color:#888888"/>
  4427. <stop offset="1" style="stop-color:#666666"/>
  4428. </linearGradient>
  4429. <ellipse class="st259" cx="159.4" cy="78.6" rx="42.8" ry="33.2"/>
  4430. <linearGradient id="SVGID_264_" gradientUnits="userSpaceOnUse" x1="-14.87" y1="171.58" x2="-14.87" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  4431. <stop offset="0" style="stop-color:#B7B7B7"/>
  4432. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  4433. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  4434. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  4435. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  4436. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  4437. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  4438. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  4439. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  4440. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  4441. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  4442. <stop offset="0.95" style="stop-color:#888888"/>
  4443. <stop offset="1" style="stop-color:#666666"/>
  4444. </linearGradient>
  4445. <ellipse class="st260" cx="161.1" cy="78.6" rx="42.9" ry="33.2"/>
  4446. <linearGradient id="SVGID_265_" gradientUnits="userSpaceOnUse" x1="-13.16" y1="171.58" x2="-13.16" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  4447. <stop offset="0" style="stop-color:#B7B7B7"/>
  4448. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  4449. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  4450. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  4451. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  4452. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  4453. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  4454. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  4455. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  4456. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  4457. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  4458. <stop offset="0.95" style="stop-color:#888888"/>
  4459. <stop offset="1" style="stop-color:#666666"/>
  4460. </linearGradient>
  4461. <ellipse class="st261" cx="162.8" cy="78.6" rx="42.8" ry="33.2"/>
  4462. <linearGradient id="SVGID_266_" gradientUnits="userSpaceOnUse" x1="-11.45" y1="171.58" x2="-11.45" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  4463. <stop offset="0" style="stop-color:#B7B7B7"/>
  4464. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  4465. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  4466. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  4467. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  4468. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  4469. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  4470. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  4471. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  4472. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  4473. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  4474. <stop offset="0.95" style="stop-color:#888888"/>
  4475. <stop offset="1" style="stop-color:#666666"/>
  4476. </linearGradient>
  4477. <ellipse class="st262" cx="164.5" cy="78.6" rx="42.8" ry="33.2"/>
  4478. <linearGradient id="SVGID_267_" gradientUnits="userSpaceOnUse" x1="-9.74" y1="171.58" x2="-9.74" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  4479. <stop offset="0" style="stop-color:#B7B7B7"/>
  4480. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  4481. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  4482. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  4483. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  4484. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  4485. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  4486. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  4487. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  4488. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  4489. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  4490. <stop offset="0.95" style="stop-color:#888888"/>
  4491. <stop offset="1" style="stop-color:#666666"/>
  4492. </linearGradient>
  4493. <ellipse class="st263" cx="166.2" cy="78.6" rx="42.9" ry="33.2"/>
  4494. <linearGradient id="SVGID_268_" gradientUnits="userSpaceOnUse" x1="-8.04" y1="171.58" x2="-8.04" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  4495. <stop offset="0" style="stop-color:#B7B7B7"/>
  4496. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  4497. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  4498. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  4499. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  4500. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  4501. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  4502. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  4503. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  4504. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  4505. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  4506. <stop offset="0.95" style="stop-color:#888888"/>
  4507. <stop offset="1" style="stop-color:#666666"/>
  4508. </linearGradient>
  4509. <ellipse class="st264" cx="167.9" cy="78.6" rx="42.8" ry="33.2"/>
  4510. <linearGradient id="SVGID_269_" gradientUnits="userSpaceOnUse" x1="-6.33" y1="171.58" x2="-6.33" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  4511. <stop offset="0" style="stop-color:#B7B7B7"/>
  4512. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  4513. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  4514. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  4515. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  4516. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  4517. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  4518. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  4519. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  4520. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  4521. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  4522. <stop offset="0.95" style="stop-color:#888888"/>
  4523. <stop offset="1" style="stop-color:#666666"/>
  4524. </linearGradient>
  4525. <ellipse class="st265" cx="169.6" cy="78.6" rx="42.9" ry="33.2"/>
  4526. <linearGradient id="SVGID_270_" gradientUnits="userSpaceOnUse" x1="-4.62" y1="171.58" x2="-4.62" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  4527. <stop offset="0" style="stop-color:#B7B7B7"/>
  4528. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  4529. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  4530. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  4531. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  4532. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  4533. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  4534. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  4535. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  4536. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  4537. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  4538. <stop offset="0.95" style="stop-color:#888888"/>
  4539. <stop offset="1" style="stop-color:#666666"/>
  4540. </linearGradient>
  4541. <ellipse class="st266" cx="171.3" cy="78.6" rx="42.9" ry="33.2"/>
  4542. <linearGradient id="SVGID_271_" gradientUnits="userSpaceOnUse" x1="-2.91" y1="171.58" x2="-2.91" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  4543. <stop offset="0" style="stop-color:#B7B7B7"/>
  4544. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  4545. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  4546. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  4547. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  4548. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  4549. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  4550. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  4551. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  4552. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  4553. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  4554. <stop offset="0.95" style="stop-color:#888888"/>
  4555. <stop offset="1" style="stop-color:#666666"/>
  4556. </linearGradient>
  4557. <ellipse class="st267" cx="173.1" cy="78.6" rx="42.8" ry="33.2"/>
  4558. <linearGradient id="SVGID_272_" gradientUnits="userSpaceOnUse" x1="-1.21" y1="171.58" x2="-1.21" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  4559. <stop offset="0" style="stop-color:#B7B7B7"/>
  4560. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  4561. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  4562. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  4563. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  4564. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  4565. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  4566. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  4567. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  4568. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  4569. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  4570. <stop offset="0.95" style="stop-color:#888888"/>
  4571. <stop offset="1" style="stop-color:#666666"/>
  4572. </linearGradient>
  4573. <ellipse class="st268" cx="174.8" cy="78.6" rx="42.9" ry="33.2"/>
  4574. <linearGradient id="SVGID_273_" gradientUnits="userSpaceOnUse" x1="0.5" y1="171.58" x2="0.5" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  4575. <stop offset="0" style="stop-color:#B7B7B7"/>
  4576. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  4577. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  4578. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  4579. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  4580. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  4581. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  4582. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  4583. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  4584. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  4585. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  4586. <stop offset="0.95" style="stop-color:#888888"/>
  4587. <stop offset="1" style="stop-color:#666666"/>
  4588. </linearGradient>
  4589. <ellipse class="st269" cx="176.5" cy="78.6" rx="42.8" ry="33.2"/>
  4590. <linearGradient id="SVGID_274_" gradientUnits="userSpaceOnUse" x1="2.21" y1="171.58" x2="2.21" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  4591. <stop offset="0" style="stop-color:#B7B7B7"/>
  4592. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  4593. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  4594. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  4595. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  4596. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  4597. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  4598. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  4599. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  4600. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  4601. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  4602. <stop offset="0.95" style="stop-color:#888888"/>
  4603. <stop offset="1" style="stop-color:#666666"/>
  4604. </linearGradient>
  4605. <ellipse class="st270" cx="178.2" cy="78.6" rx="42.8" ry="33.2"/>
  4606. <linearGradient id="SVGID_275_" gradientUnits="userSpaceOnUse" x1="3.92" y1="171.58" x2="3.92" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  4607. <stop offset="0" style="stop-color:#B7B7B7"/>
  4608. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  4609. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  4610. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  4611. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  4612. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  4613. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  4614. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  4615. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  4616. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  4617. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  4618. <stop offset="0.95" style="stop-color:#888888"/>
  4619. <stop offset="1" style="stop-color:#666666"/>
  4620. </linearGradient>
  4621. <ellipse class="st271" cx="179.9" cy="78.6" rx="42.9" ry="33.2"/>
  4622. <linearGradient id="SVGID_276_" gradientUnits="userSpaceOnUse" x1="5.62" y1="171.58" x2="5.62" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  4623. <stop offset="0" style="stop-color:#B7B7B7"/>
  4624. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  4625. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  4626. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  4627. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  4628. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  4629. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  4630. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  4631. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  4632. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  4633. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  4634. <stop offset="0.95" style="stop-color:#888888"/>
  4635. <stop offset="1" style="stop-color:#666666"/>
  4636. </linearGradient>
  4637. <ellipse class="st272" cx="181.6" cy="78.6" rx="42.8" ry="33.2"/>
  4638. <linearGradient id="SVGID_277_" gradientUnits="userSpaceOnUse" x1="7.33" y1="171.58" x2="7.33" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  4639. <stop offset="0" style="stop-color:#B7B7B7"/>
  4640. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  4641. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  4642. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  4643. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  4644. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  4645. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  4646. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  4647. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  4648. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  4649. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  4650. <stop offset="0.95" style="stop-color:#888888"/>
  4651. <stop offset="1" style="stop-color:#666666"/>
  4652. </linearGradient>
  4653. <ellipse class="st273" cx="183.3" cy="78.6" rx="42.8" ry="33.2"/>
  4654. <linearGradient id="SVGID_278_" gradientUnits="userSpaceOnUse" x1="9.04" y1="171.58" x2="9.04" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  4655. <stop offset="0" style="stop-color:#B7B7B7"/>
  4656. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  4657. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  4658. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  4659. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  4660. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  4661. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  4662. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  4663. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  4664. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  4665. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  4666. <stop offset="0.95" style="stop-color:#888888"/>
  4667. <stop offset="1" style="stop-color:#666666"/>
  4668. </linearGradient>
  4669. <ellipse class="st274" cx="185" cy="78.6" rx="42.9" ry="33.2"/>
  4670. <linearGradient id="SVGID_279_" gradientUnits="userSpaceOnUse" x1="10.75" y1="171.58" x2="10.75" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  4671. <stop offset="0" style="stop-color:#B7B7B7"/>
  4672. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  4673. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  4674. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  4675. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  4676. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  4677. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  4678. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  4679. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  4680. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  4681. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  4682. <stop offset="0.95" style="stop-color:#888888"/>
  4683. <stop offset="1" style="stop-color:#666666"/>
  4684. </linearGradient>
  4685. <ellipse class="st275" cx="186.7" cy="78.6" rx="42.8" ry="33.2"/>
  4686. <linearGradient id="SVGID_280_" gradientUnits="userSpaceOnUse" x1="12.45" y1="171.58" x2="12.45" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  4687. <stop offset="0" style="stop-color:#B7B7B7"/>
  4688. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  4689. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  4690. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  4691. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  4692. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  4693. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  4694. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  4695. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  4696. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  4697. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  4698. <stop offset="0.95" style="stop-color:#888888"/>
  4699. <stop offset="1" style="stop-color:#666666"/>
  4700. </linearGradient>
  4701. <ellipse class="st276" cx="188.4" cy="78.6" rx="42.9" ry="33.2"/>
  4702. <linearGradient id="SVGID_281_" gradientUnits="userSpaceOnUse" x1="14.16" y1="171.58" x2="14.16" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  4703. <stop offset="0" style="stop-color:#B7B7B7"/>
  4704. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  4705. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  4706. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  4707. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  4708. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  4709. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  4710. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  4711. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  4712. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  4713. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  4714. <stop offset="0.95" style="stop-color:#888888"/>
  4715. <stop offset="1" style="stop-color:#666666"/>
  4716. </linearGradient>
  4717. <ellipse class="st277" cx="190.1" cy="78.6" rx="42.9" ry="33.2"/>
  4718. <linearGradient id="SVGID_282_" gradientUnits="userSpaceOnUse" x1="15.87" y1="171.58" x2="15.87" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
  4719. <stop offset="0" style="stop-color:#B7B7B7"/>
  4720. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  4721. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  4722. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  4723. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  4724. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  4725. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  4726. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  4727. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  4728. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  4729. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  4730. <stop offset="0.95" style="stop-color:#888888"/>
  4731. <stop offset="1" style="stop-color:#666666"/>
  4732. </linearGradient>
  4733. <ellipse class="st278" cx="191.8" cy="78.6" rx="42.8" ry="33.2"/>
  4734. </g>
  4735. </g>
  4736. </g>
  4737. </svg>