iot-管道(21)-16.svg 127 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307
  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 61.7 150" style="enable-background:new 0 0 61.7 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{fill:url(#SVGID_79_);}
  84. .st78{fill:url(#SVGID_80_);}
  85. .st79{fill:url(#SVGID_81_);}
  86. .st80{fill:url(#SVGID_82_);}
  87. .st81{fill:url(#SVGID_83_);}
  88. .st82{fill:url(#SVGID_84_);}
  89. .st83{fill:url(#SVGID_85_);}
  90. .st84{fill:url(#SVGID_86_);}
  91. .st85{fill:url(#SVGID_87_);}
  92. .st86{fill:url(#SVGID_88_);}
  93. .st87{fill:url(#SVGID_89_);}
  94. .st88{fill:url(#SVGID_90_);}
  95. .st89{fill:url(#SVGID_91_);}
  96. .st90{fill:url(#SVGID_92_);}
  97. .st91{fill:url(#SVGID_93_);}
  98. .st92{fill:url(#SVGID_94_);}
  99. .st93{fill:url(#SVGID_95_);}
  100. .st94{fill:url(#SVGID_96_);}
  101. .st95{fill:url(#SVGID_97_);}
  102. .st96{fill:url(#SVGID_98_);}
  103. .st97{fill:url(#SVGID_99_);}
  104. .st98{fill:url(#SVGID_100_);}
  105. .st99{fill:url(#SVGID_101_);}
  106. .st100{fill:url(#SVGID_102_);}
  107. .st101{fill:url(#SVGID_103_);}
  108. .st102{fill:url(#SVGID_104_);}
  109. .st103{fill:url(#SVGID_105_);}
  110. .st104{fill:url(#SVGID_106_);}
  111. .st105{fill:url(#SVGID_107_);}
  112. .st106{fill:url(#SVGID_108_);}
  113. .st107{fill:url(#SVGID_109_);}
  114. .st108{fill:url(#SVGID_110_);}
  115. .st109{fill:url(#SVGID_111_);}
  116. .st110{fill:url(#SVGID_112_);}
  117. .st111{fill:url(#SVGID_113_);}
  118. .st112{fill:url(#SVGID_114_);}
  119. .st113{fill:url(#SVGID_115_);}
  120. .st114{fill:url(#SVGID_116_);}
  121. .st115{fill:url(#SVGID_117_);}
  122. .st116{fill:url(#SVGID_118_);}
  123. .st117{fill:url(#SVGID_119_);}
  124. .st118{fill:url(#SVGID_120_);}
  125. .st119{fill:url(#SVGID_121_);}
  126. .st120{fill:url(#SVGID_122_);}
  127. .st121{fill:url(#SVGID_123_);}
  128. .st122{fill:url(#SVGID_124_);}
  129. .st123{fill:url(#SVGID_125_);}
  130. .st124{fill:url(#SVGID_126_);}
  131. .st125{fill:url(#SVGID_127_);}
  132. .st126{fill:url(#SVGID_128_);}
  133. .st127{fill:url(#SVGID_129_);}
  134. </style>
  135. <title>iot-管道(21)</title>
  136. <g id="图层_16">
  137. <g>
  138. <defs>
  139. <rect id="SVGID_1_" x="-0.9" y="0" width="62.6" height="149.1"/>
  140. </defs>
  141. <clipPath id="SVGID_2_">
  142. <use xlink:href="#SVGID_1_" style="overflow:visible;"/>
  143. </clipPath>
  144. <g class="st0">
  145. <linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="-152.18" y1="508.57" x2="-152.18" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  146. <stop offset="0" style="stop-color:#B7B7B7"/>
  147. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  148. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  149. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  150. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  151. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  152. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  153. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  154. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  155. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  156. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  157. <stop offset="0.95" style="stop-color:#888888"/>
  158. <stop offset="1" style="stop-color:#666666"/>
  159. </linearGradient>
  160. <circle class="st1" cx="30.9" cy="0" r="30.9"/>
  161. <linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="-150.95" y1="508.57" x2="-150.95" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  162. <stop offset="0" style="stop-color:#B7B7B7"/>
  163. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  164. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  165. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  166. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  167. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  168. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  169. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  170. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  171. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  172. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  173. <stop offset="0.95" style="stop-color:#888888"/>
  174. <stop offset="1" style="stop-color:#666666"/>
  175. </linearGradient>
  176. <circle class="st2" cx="30.9" cy="1.2" r="30.9"/>
  177. <linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="-149.72" y1="508.57" x2="-149.72" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  178. <stop offset="0" style="stop-color:#B7B7B7"/>
  179. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  180. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  181. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  182. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  183. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  184. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  185. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  186. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  187. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  188. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  189. <stop offset="0.95" style="stop-color:#888888"/>
  190. <stop offset="1" style="stop-color:#666666"/>
  191. </linearGradient>
  192. <circle class="st3" cx="30.9" cy="2.5" r="30.9"/>
  193. <linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="-148.49" y1="508.57" x2="-148.49" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  194. <stop offset="0" style="stop-color:#B7B7B7"/>
  195. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  196. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  197. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  198. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  199. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  200. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  201. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  202. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  203. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  204. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  205. <stop offset="0.95" style="stop-color:#888888"/>
  206. <stop offset="1" style="stop-color:#666666"/>
  207. </linearGradient>
  208. <circle class="st4" cx="30.9" cy="3.7" r="30.9"/>
  209. <linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="-147.26" y1="508.57" x2="-147.26" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  210. <stop offset="0" style="stop-color:#B7B7B7"/>
  211. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  212. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  213. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  214. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  215. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  216. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  217. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  218. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  219. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  220. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  221. <stop offset="0.95" style="stop-color:#888888"/>
  222. <stop offset="1" style="stop-color:#666666"/>
  223. </linearGradient>
  224. <circle class="st5" cx="30.9" cy="4.9" r="30.9"/>
  225. <linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="-146.03" y1="508.57" x2="-146.03" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  226. <stop offset="0" style="stop-color:#B7B7B7"/>
  227. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  228. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  229. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  230. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  231. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  232. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  233. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  234. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  235. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  236. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  237. <stop offset="0.95" style="stop-color:#888888"/>
  238. <stop offset="1" style="stop-color:#666666"/>
  239. </linearGradient>
  240. <circle class="st6" cx="30.9" cy="6.1" r="30.9"/>
  241. <linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="-144.8" y1="508.57" x2="-144.8" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  242. <stop offset="0" style="stop-color:#B7B7B7"/>
  243. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  244. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  245. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  246. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  247. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  248. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  249. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  250. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  251. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  252. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  253. <stop offset="0.95" style="stop-color:#888888"/>
  254. <stop offset="1" style="stop-color:#666666"/>
  255. </linearGradient>
  256. <circle class="st7" cx="30.9" cy="7.4" r="30.9"/>
  257. <linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="-143.57" y1="508.57" x2="-143.57" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  258. <stop offset="0" style="stop-color:#B7B7B7"/>
  259. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  260. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  261. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  262. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  263. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  264. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  265. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  266. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  267. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  268. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  269. <stop offset="0.95" style="stop-color:#888888"/>
  270. <stop offset="1" style="stop-color:#666666"/>
  271. </linearGradient>
  272. <circle class="st8" cx="30.9" cy="8.6" r="30.9"/>
  273. <linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="-142.34" y1="508.57" x2="-142.34" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  274. <stop offset="0" style="stop-color:#B7B7B7"/>
  275. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  276. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  277. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  278. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  279. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  280. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  281. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  282. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  283. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  284. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  285. <stop offset="0.95" style="stop-color:#888888"/>
  286. <stop offset="1" style="stop-color:#666666"/>
  287. </linearGradient>
  288. <circle class="st9" cx="30.9" cy="9.8" r="30.9"/>
  289. <linearGradient id="SVGID_12_" gradientUnits="userSpaceOnUse" x1="-141.11" y1="508.57" x2="-141.11" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  290. <stop offset="0" style="stop-color:#B7B7B7"/>
  291. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  292. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  293. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  294. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  295. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  296. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  297. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  298. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  299. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  300. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  301. <stop offset="0.95" style="stop-color:#888888"/>
  302. <stop offset="1" style="stop-color:#666666"/>
  303. </linearGradient>
  304. <circle class="st10" cx="30.9" cy="11.1" r="30.9"/>
  305. <linearGradient id="SVGID_13_" gradientUnits="userSpaceOnUse" x1="-139.88" y1="508.57" x2="-139.88" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  306. <stop offset="0" style="stop-color:#B7B7B7"/>
  307. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  308. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  309. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  310. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  311. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  312. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  313. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  314. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  315. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  316. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  317. <stop offset="0.95" style="stop-color:#888888"/>
  318. <stop offset="1" style="stop-color:#666666"/>
  319. </linearGradient>
  320. <circle class="st11" cx="30.9" cy="12.3" r="30.9"/>
  321. <linearGradient id="SVGID_14_" gradientUnits="userSpaceOnUse" x1="-138.65" y1="508.57" x2="-138.65" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  322. <stop offset="0" style="stop-color:#B7B7B7"/>
  323. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  324. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  325. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  326. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  327. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  328. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  329. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  330. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  331. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  332. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  333. <stop offset="0.95" style="stop-color:#888888"/>
  334. <stop offset="1" style="stop-color:#666666"/>
  335. </linearGradient>
  336. <circle class="st12" cx="30.9" cy="13.5" r="30.9"/>
  337. <linearGradient id="SVGID_15_" gradientUnits="userSpaceOnUse" x1="-137.42" y1="508.57" x2="-137.42" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  338. <stop offset="0" style="stop-color:#B7B7B7"/>
  339. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  340. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  341. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  342. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  343. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  344. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  345. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  346. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  347. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  348. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  349. <stop offset="0.95" style="stop-color:#888888"/>
  350. <stop offset="1" style="stop-color:#666666"/>
  351. </linearGradient>
  352. <circle class="st13" cx="30.9" cy="14.8" r="30.9"/>
  353. <linearGradient id="SVGID_16_" gradientUnits="userSpaceOnUse" x1="-136.19" y1="508.57" x2="-136.19" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  354. <stop offset="0" style="stop-color:#B7B7B7"/>
  355. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  356. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  357. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  358. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  359. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  360. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  361. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  362. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  363. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  364. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  365. <stop offset="0.95" style="stop-color:#888888"/>
  366. <stop offset="1" style="stop-color:#666666"/>
  367. </linearGradient>
  368. <circle class="st14" cx="30.9" cy="16" r="30.9"/>
  369. <linearGradient id="SVGID_17_" gradientUnits="userSpaceOnUse" x1="-134.97" y1="508.57" x2="-134.97" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  370. <stop offset="0" style="stop-color:#B7B7B7"/>
  371. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  372. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  373. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  374. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  375. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  376. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  377. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  378. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  379. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  380. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  381. <stop offset="0.95" style="stop-color:#888888"/>
  382. <stop offset="1" style="stop-color:#666666"/>
  383. </linearGradient>
  384. <circle class="st15" cx="30.9" cy="17.2" r="30.9"/>
  385. <linearGradient id="SVGID_18_" gradientUnits="userSpaceOnUse" x1="-133.74" y1="508.57" x2="-133.74" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  386. <stop offset="0" style="stop-color:#B7B7B7"/>
  387. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  388. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  389. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  390. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  391. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  392. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  393. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  394. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  395. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  396. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  397. <stop offset="0.95" style="stop-color:#888888"/>
  398. <stop offset="1" style="stop-color:#666666"/>
  399. </linearGradient>
  400. <circle class="st16" cx="30.9" cy="18.4" r="30.9"/>
  401. <linearGradient id="SVGID_19_" gradientUnits="userSpaceOnUse" x1="-132.51" y1="508.57" x2="-132.51" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  402. <stop offset="0" style="stop-color:#B7B7B7"/>
  403. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  404. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  405. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  406. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  407. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  408. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  409. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  410. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  411. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  412. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  413. <stop offset="0.95" style="stop-color:#888888"/>
  414. <stop offset="1" style="stop-color:#666666"/>
  415. </linearGradient>
  416. <circle class="st17" cx="30.9" cy="19.7" r="30.9"/>
  417. <linearGradient id="SVGID_20_" gradientUnits="userSpaceOnUse" x1="-131.28" y1="508.57" x2="-131.28" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  418. <stop offset="0" style="stop-color:#B7B7B7"/>
  419. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  420. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  421. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  422. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  423. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  424. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  425. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  426. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  427. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  428. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  429. <stop offset="0.95" style="stop-color:#888888"/>
  430. <stop offset="1" style="stop-color:#666666"/>
  431. </linearGradient>
  432. <circle class="st18" cx="30.9" cy="20.9" r="30.9"/>
  433. <linearGradient id="SVGID_21_" gradientUnits="userSpaceOnUse" x1="-130.05" y1="508.57" x2="-130.05" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  434. <stop offset="0" style="stop-color:#B7B7B7"/>
  435. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  436. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  437. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  438. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  439. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  440. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  441. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  442. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  443. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  444. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  445. <stop offset="0.95" style="stop-color:#888888"/>
  446. <stop offset="1" style="stop-color:#666666"/>
  447. </linearGradient>
  448. <circle class="st19" cx="30.9" cy="22.1" r="30.9"/>
  449. <linearGradient id="SVGID_22_" gradientUnits="userSpaceOnUse" x1="-128.82" y1="508.57" x2="-128.82" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  450. <stop offset="0" style="stop-color:#B7B7B7"/>
  451. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  452. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  453. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  454. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  455. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  456. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  457. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  458. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  459. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  460. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  461. <stop offset="0.95" style="stop-color:#888888"/>
  462. <stop offset="1" style="stop-color:#666666"/>
  463. </linearGradient>
  464. <circle class="st20" cx="30.9" cy="23.4" r="30.9"/>
  465. <linearGradient id="SVGID_23_" gradientUnits="userSpaceOnUse" x1="-127.59" y1="508.57" x2="-127.59" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  466. <stop offset="0" style="stop-color:#B7B7B7"/>
  467. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  468. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  469. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  470. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  471. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  472. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  473. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  474. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  475. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  476. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  477. <stop offset="0.95" style="stop-color:#888888"/>
  478. <stop offset="1" style="stop-color:#666666"/>
  479. </linearGradient>
  480. <circle class="st21" cx="30.9" cy="24.6" r="30.9"/>
  481. <linearGradient id="SVGID_24_" gradientUnits="userSpaceOnUse" x1="-126.36" y1="508.57" x2="-126.36" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  482. <stop offset="0" style="stop-color:#B7B7B7"/>
  483. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  484. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  485. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  486. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  487. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  488. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  489. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  490. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  491. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  492. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  493. <stop offset="0.95" style="stop-color:#888888"/>
  494. <stop offset="1" style="stop-color:#666666"/>
  495. </linearGradient>
  496. <circle class="st22" cx="30.9" cy="25.8" r="30.9"/>
  497. <linearGradient id="SVGID_25_" gradientUnits="userSpaceOnUse" x1="-125.13" y1="508.57" x2="-125.13" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  498. <stop offset="0" style="stop-color:#B7B7B7"/>
  499. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  500. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  501. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  502. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  503. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  504. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  505. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  506. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  507. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  508. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  509. <stop offset="0.95" style="stop-color:#888888"/>
  510. <stop offset="1" style="stop-color:#666666"/>
  511. </linearGradient>
  512. <circle class="st23" cx="30.9" cy="27" r="30.9"/>
  513. <linearGradient id="SVGID_26_" gradientUnits="userSpaceOnUse" x1="-123.9" y1="508.57" x2="-123.9" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  514. <stop offset="0" style="stop-color:#B7B7B7"/>
  515. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  516. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  517. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  518. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  519. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  520. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  521. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  522. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  523. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  524. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  525. <stop offset="0.95" style="stop-color:#888888"/>
  526. <stop offset="1" style="stop-color:#666666"/>
  527. </linearGradient>
  528. <circle class="st24" cx="30.9" cy="28.3" r="30.9"/>
  529. <linearGradient id="SVGID_27_" gradientUnits="userSpaceOnUse" x1="-122.67" y1="508.57" x2="-122.67" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  530. <stop offset="0" style="stop-color:#B7B7B7"/>
  531. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  532. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  533. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  534. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  535. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  536. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  537. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  538. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  539. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  540. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  541. <stop offset="0.95" style="stop-color:#888888"/>
  542. <stop offset="1" style="stop-color:#666666"/>
  543. </linearGradient>
  544. <circle class="st25" cx="30.9" cy="29.5" r="30.9"/>
  545. <linearGradient id="SVGID_28_" gradientUnits="userSpaceOnUse" x1="-121.44" y1="508.57" x2="-121.44" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  546. <stop offset="0" style="stop-color:#B7B7B7"/>
  547. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  548. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  549. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  550. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  551. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  552. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  553. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  554. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  555. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  556. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  557. <stop offset="0.95" style="stop-color:#888888"/>
  558. <stop offset="1" style="stop-color:#666666"/>
  559. </linearGradient>
  560. <circle class="st26" cx="30.9" cy="30.7" r="30.9"/>
  561. <linearGradient id="SVGID_29_" gradientUnits="userSpaceOnUse" x1="-120.21" y1="508.57" x2="-120.21" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  562. <stop offset="0" style="stop-color:#B7B7B7"/>
  563. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  564. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  565. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  566. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  567. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  568. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  569. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  570. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  571. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  572. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  573. <stop offset="0.95" style="stop-color:#888888"/>
  574. <stop offset="1" style="stop-color:#666666"/>
  575. </linearGradient>
  576. <circle class="st27" cx="30.9" cy="32" r="30.9"/>
  577. <linearGradient id="SVGID_30_" gradientUnits="userSpaceOnUse" x1="-118.98" y1="508.57" x2="-118.98" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  578. <stop offset="0" style="stop-color:#B7B7B7"/>
  579. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  580. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  581. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  582. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  583. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  584. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  585. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  586. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  587. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  588. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  589. <stop offset="0.95" style="stop-color:#888888"/>
  590. <stop offset="1" style="stop-color:#666666"/>
  591. </linearGradient>
  592. <circle class="st28" cx="30.9" cy="33.2" r="30.9"/>
  593. <linearGradient id="SVGID_31_" gradientUnits="userSpaceOnUse" x1="-117.75" y1="508.57" x2="-117.75" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  594. <stop offset="0" style="stop-color:#B7B7B7"/>
  595. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  596. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  597. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  598. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  599. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  600. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  601. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  602. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  603. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  604. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  605. <stop offset="0.95" style="stop-color:#888888"/>
  606. <stop offset="1" style="stop-color:#666666"/>
  607. </linearGradient>
  608. <circle class="st29" cx="30.9" cy="34.4" r="30.9"/>
  609. <linearGradient id="SVGID_32_" gradientUnits="userSpaceOnUse" x1="-116.52" y1="508.57" x2="-116.52" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  610. <stop offset="0" style="stop-color:#B7B7B7"/>
  611. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  612. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  613. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  614. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  615. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  616. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  617. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  618. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  619. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  620. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  621. <stop offset="0.95" style="stop-color:#888888"/>
  622. <stop offset="1" style="stop-color:#666666"/>
  623. </linearGradient>
  624. <circle class="st30" cx="30.9" cy="35.7" r="30.9"/>
  625. <linearGradient id="SVGID_33_" gradientUnits="userSpaceOnUse" x1="-115.29" y1="508.57" x2="-115.29" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  626. <stop offset="0" style="stop-color:#B7B7B7"/>
  627. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  628. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  629. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  630. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  631. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  632. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  633. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  634. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  635. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  636. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  637. <stop offset="0.95" style="stop-color:#888888"/>
  638. <stop offset="1" style="stop-color:#666666"/>
  639. </linearGradient>
  640. <circle class="st31" cx="30.9" cy="36.9" r="30.9"/>
  641. <linearGradient id="SVGID_34_" gradientUnits="userSpaceOnUse" x1="-114.06" y1="508.57" x2="-114.06" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  642. <stop offset="0" style="stop-color:#B7B7B7"/>
  643. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  644. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  645. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  646. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  647. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  648. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  649. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  650. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  651. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  652. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  653. <stop offset="0.95" style="stop-color:#888888"/>
  654. <stop offset="1" style="stop-color:#666666"/>
  655. </linearGradient>
  656. <circle class="st32" cx="30.9" cy="38.1" r="30.9"/>
  657. <linearGradient id="SVGID_35_" gradientUnits="userSpaceOnUse" x1="-112.83" y1="508.57" x2="-112.83" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  658. <stop offset="0" style="stop-color:#B7B7B7"/>
  659. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  660. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  661. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  662. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  663. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  664. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  665. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  666. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  667. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  668. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  669. <stop offset="0.95" style="stop-color:#888888"/>
  670. <stop offset="1" style="stop-color:#666666"/>
  671. </linearGradient>
  672. <circle class="st33" cx="30.9" cy="39.3" r="30.9"/>
  673. <linearGradient id="SVGID_36_" gradientUnits="userSpaceOnUse" x1="-111.6" y1="508.57" x2="-111.6" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  674. <stop offset="0" style="stop-color:#B7B7B7"/>
  675. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  676. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  677. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  678. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  679. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  680. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  681. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  682. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  683. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  684. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  685. <stop offset="0.95" style="stop-color:#888888"/>
  686. <stop offset="1" style="stop-color:#666666"/>
  687. </linearGradient>
  688. <circle class="st34" cx="30.9" cy="40.6" r="30.9"/>
  689. <linearGradient id="SVGID_37_" gradientUnits="userSpaceOnUse" x1="-110.37" y1="508.57" x2="-110.37" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  690. <stop offset="0" style="stop-color:#B7B7B7"/>
  691. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  692. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  693. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  694. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  695. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  696. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  697. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  698. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  699. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  700. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  701. <stop offset="0.95" style="stop-color:#888888"/>
  702. <stop offset="1" style="stop-color:#666666"/>
  703. </linearGradient>
  704. <circle class="st35" cx="30.9" cy="41.8" r="30.9"/>
  705. <linearGradient id="SVGID_38_" gradientUnits="userSpaceOnUse" x1="-109.14" y1="508.57" x2="-109.14" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  706. <stop offset="0" style="stop-color:#B7B7B7"/>
  707. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  708. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  709. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  710. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  711. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  712. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  713. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  714. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  715. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  716. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  717. <stop offset="0.95" style="stop-color:#888888"/>
  718. <stop offset="1" style="stop-color:#666666"/>
  719. </linearGradient>
  720. <circle class="st36" cx="30.9" cy="43" r="30.9"/>
  721. <linearGradient id="SVGID_39_" gradientUnits="userSpaceOnUse" x1="-107.91" y1="508.57" x2="-107.91" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  722. <stop offset="0" style="stop-color:#B7B7B7"/>
  723. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  724. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  725. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  726. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  727. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  728. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  729. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  730. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  731. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  732. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  733. <stop offset="0.95" style="stop-color:#888888"/>
  734. <stop offset="1" style="stop-color:#666666"/>
  735. </linearGradient>
  736. <circle class="st37" cx="30.9" cy="44.3" r="30.9"/>
  737. <linearGradient id="SVGID_40_" gradientUnits="userSpaceOnUse" x1="-106.68" y1="508.57" x2="-106.68" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  738. <stop offset="0" style="stop-color:#B7B7B7"/>
  739. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  740. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  741. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  742. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  743. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  744. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  745. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  746. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  747. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  748. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  749. <stop offset="0.95" style="stop-color:#888888"/>
  750. <stop offset="1" style="stop-color:#666666"/>
  751. </linearGradient>
  752. <circle class="st38" cx="30.9" cy="45.5" r="30.9"/>
  753. <linearGradient id="SVGID_41_" gradientUnits="userSpaceOnUse" x1="-105.45" y1="508.57" x2="-105.45" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  754. <stop offset="0" style="stop-color:#B7B7B7"/>
  755. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  756. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  757. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  758. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  759. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  760. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  761. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  762. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  763. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  764. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  765. <stop offset="0.95" style="stop-color:#888888"/>
  766. <stop offset="1" style="stop-color:#666666"/>
  767. </linearGradient>
  768. <circle class="st39" cx="30.9" cy="46.7" r="30.9"/>
  769. <linearGradient id="SVGID_42_" gradientUnits="userSpaceOnUse" x1="-104.22" y1="508.57" x2="-104.22" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  770. <stop offset="0" style="stop-color:#B7B7B7"/>
  771. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  772. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  773. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  774. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  775. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  776. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  777. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  778. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  779. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  780. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  781. <stop offset="0.95" style="stop-color:#888888"/>
  782. <stop offset="1" style="stop-color:#666666"/>
  783. </linearGradient>
  784. <circle class="st40" cx="30.9" cy="48" r="30.9"/>
  785. <linearGradient id="SVGID_43_" gradientUnits="userSpaceOnUse" x1="-102.99" y1="508.57" x2="-102.99" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  786. <stop offset="0" style="stop-color:#B7B7B7"/>
  787. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  788. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  789. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  790. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  791. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  792. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  793. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  794. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  795. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  796. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  797. <stop offset="0.95" style="stop-color:#888888"/>
  798. <stop offset="1" style="stop-color:#666666"/>
  799. </linearGradient>
  800. <circle class="st41" cx="30.9" cy="49.2" r="30.9"/>
  801. <linearGradient id="SVGID_44_" gradientUnits="userSpaceOnUse" x1="-101.76" y1="508.57" x2="-101.76" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  802. <stop offset="0" style="stop-color:#B7B7B7"/>
  803. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  804. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  805. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  806. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  807. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  808. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  809. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  810. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  811. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  812. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  813. <stop offset="0.95" style="stop-color:#888888"/>
  814. <stop offset="1" style="stop-color:#666666"/>
  815. </linearGradient>
  816. <circle class="st42" cx="30.9" cy="50.4" r="30.9"/>
  817. <linearGradient id="SVGID_45_" gradientUnits="userSpaceOnUse" x1="-100.54" y1="508.57" x2="-100.54" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  818. <stop offset="0" style="stop-color:#B7B7B7"/>
  819. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  820. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  821. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  822. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  823. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  824. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  825. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  826. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  827. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  828. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  829. <stop offset="0.95" style="stop-color:#888888"/>
  830. <stop offset="1" style="stop-color:#666666"/>
  831. </linearGradient>
  832. <circle class="st43" cx="30.9" cy="51.6" r="30.9"/>
  833. <linearGradient id="SVGID_46_" gradientUnits="userSpaceOnUse" x1="-99.31" y1="508.57" x2="-99.31" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  834. <stop offset="0" style="stop-color:#B7B7B7"/>
  835. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  836. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  837. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  838. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  839. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  840. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  841. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  842. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  843. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  844. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  845. <stop offset="0.95" style="stop-color:#888888"/>
  846. <stop offset="1" style="stop-color:#666666"/>
  847. </linearGradient>
  848. <circle class="st44" cx="30.9" cy="52.9" r="30.9"/>
  849. <linearGradient id="SVGID_47_" gradientUnits="userSpaceOnUse" x1="-98.08" y1="508.57" x2="-98.08" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  850. <stop offset="0" style="stop-color:#B7B7B7"/>
  851. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  852. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  853. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  854. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  855. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  856. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  857. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  858. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  859. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  860. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  861. <stop offset="0.95" style="stop-color:#888888"/>
  862. <stop offset="1" style="stop-color:#666666"/>
  863. </linearGradient>
  864. <circle class="st45" cx="30.9" cy="54.1" r="30.9"/>
  865. <linearGradient id="SVGID_48_" gradientUnits="userSpaceOnUse" x1="-96.85" y1="508.57" x2="-96.85" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  866. <stop offset="0" style="stop-color:#B7B7B7"/>
  867. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  868. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  869. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  870. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  871. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  872. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  873. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  874. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  875. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  876. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  877. <stop offset="0.95" style="stop-color:#888888"/>
  878. <stop offset="1" style="stop-color:#666666"/>
  879. </linearGradient>
  880. <circle class="st46" cx="30.9" cy="55.3" r="30.9"/>
  881. <linearGradient id="SVGID_49_" gradientUnits="userSpaceOnUse" x1="-95.62" y1="508.57" x2="-95.62" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  882. <stop offset="0" style="stop-color:#B7B7B7"/>
  883. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  884. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  885. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  886. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  887. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  888. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  889. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  890. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  891. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  892. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  893. <stop offset="0.95" style="stop-color:#888888"/>
  894. <stop offset="1" style="stop-color:#666666"/>
  895. </linearGradient>
  896. <circle class="st47" cx="30.9" cy="56.6" r="30.9"/>
  897. <linearGradient id="SVGID_50_" gradientUnits="userSpaceOnUse" x1="-94.39" y1="508.57" x2="-94.39" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  898. <stop offset="0" style="stop-color:#B7B7B7"/>
  899. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  900. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  901. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  902. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  903. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  904. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  905. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  906. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  907. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  908. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  909. <stop offset="0.95" style="stop-color:#888888"/>
  910. <stop offset="1" style="stop-color:#666666"/>
  911. </linearGradient>
  912. <circle class="st48" cx="30.9" cy="57.8" r="30.9"/>
  913. <linearGradient id="SVGID_51_" gradientUnits="userSpaceOnUse" x1="-93.16" y1="508.57" x2="-93.16" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  914. <stop offset="0" style="stop-color:#B7B7B7"/>
  915. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  916. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  917. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  918. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  919. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  920. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  921. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  922. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  923. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  924. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  925. <stop offset="0.95" style="stop-color:#888888"/>
  926. <stop offset="1" style="stop-color:#666666"/>
  927. </linearGradient>
  928. <circle class="st49" cx="30.9" cy="59" r="30.9"/>
  929. <linearGradient id="SVGID_52_" gradientUnits="userSpaceOnUse" x1="-91.93" y1="508.57" x2="-91.93" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  930. <stop offset="0" style="stop-color:#B7B7B7"/>
  931. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  932. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  933. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  934. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  935. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  936. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  937. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  938. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  939. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  940. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  941. <stop offset="0.95" style="stop-color:#888888"/>
  942. <stop offset="1" style="stop-color:#666666"/>
  943. </linearGradient>
  944. <circle class="st50" cx="30.9" cy="60.2" r="30.9"/>
  945. <linearGradient id="SVGID_53_" gradientUnits="userSpaceOnUse" x1="-90.7" y1="508.57" x2="-90.7" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  946. <stop offset="0" style="stop-color:#B7B7B7"/>
  947. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  948. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  949. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  950. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  951. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  952. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  953. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  954. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  955. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  956. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  957. <stop offset="0.95" style="stop-color:#888888"/>
  958. <stop offset="1" style="stop-color:#666666"/>
  959. </linearGradient>
  960. <circle class="st51" cx="30.9" cy="61.5" r="30.9"/>
  961. <linearGradient id="SVGID_54_" gradientUnits="userSpaceOnUse" x1="-89.47" y1="508.57" x2="-89.47" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  962. <stop offset="0" style="stop-color:#B7B7B7"/>
  963. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  964. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  965. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  966. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  967. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  968. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  969. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  970. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  971. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  972. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  973. <stop offset="0.95" style="stop-color:#888888"/>
  974. <stop offset="1" style="stop-color:#666666"/>
  975. </linearGradient>
  976. <circle class="st52" cx="30.9" cy="62.7" r="30.9"/>
  977. <linearGradient id="SVGID_55_" gradientUnits="userSpaceOnUse" x1="-88.24" y1="508.57" x2="-88.24" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  978. <stop offset="0" style="stop-color:#B7B7B7"/>
  979. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  980. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  981. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  982. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  983. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  984. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  985. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  986. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  987. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  988. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  989. <stop offset="0.95" style="stop-color:#888888"/>
  990. <stop offset="1" style="stop-color:#666666"/>
  991. </linearGradient>
  992. <circle class="st53" cx="30.9" cy="63.9" r="30.9"/>
  993. <linearGradient id="SVGID_56_" gradientUnits="userSpaceOnUse" x1="-87.01" y1="508.57" x2="-87.01" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  994. <stop offset="0" style="stop-color:#B7B7B7"/>
  995. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  996. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  997. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  998. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  999. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1000. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1001. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1002. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1003. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1004. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1005. <stop offset="0.95" style="stop-color:#888888"/>
  1006. <stop offset="1" style="stop-color:#666666"/>
  1007. </linearGradient>
  1008. <circle class="st54" cx="30.9" cy="65.2" r="30.9"/>
  1009. <linearGradient id="SVGID_57_" gradientUnits="userSpaceOnUse" x1="-85.78" y1="508.57" x2="-85.78" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1010. <stop offset="0" style="stop-color:#B7B7B7"/>
  1011. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1012. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1013. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1014. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1015. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1016. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1017. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1018. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1019. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1020. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1021. <stop offset="0.95" style="stop-color:#888888"/>
  1022. <stop offset="1" style="stop-color:#666666"/>
  1023. </linearGradient>
  1024. <circle class="st55" cx="30.9" cy="66.4" r="30.9"/>
  1025. <linearGradient id="SVGID_58_" gradientUnits="userSpaceOnUse" x1="-84.55" y1="508.57" x2="-84.55" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1026. <stop offset="0" style="stop-color:#B7B7B7"/>
  1027. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1028. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1029. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1030. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1031. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1032. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1033. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1034. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1035. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1036. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1037. <stop offset="0.95" style="stop-color:#888888"/>
  1038. <stop offset="1" style="stop-color:#666666"/>
  1039. </linearGradient>
  1040. <circle class="st56" cx="30.9" cy="67.6" r="30.9"/>
  1041. <linearGradient id="SVGID_59_" gradientUnits="userSpaceOnUse" x1="-83.32" y1="508.57" x2="-83.32" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1042. <stop offset="0" style="stop-color:#B7B7B7"/>
  1043. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1044. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1045. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1046. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1047. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1048. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1049. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1050. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1051. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1052. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1053. <stop offset="0.95" style="stop-color:#888888"/>
  1054. <stop offset="1" style="stop-color:#666666"/>
  1055. </linearGradient>
  1056. <circle class="st57" cx="30.9" cy="68.9" r="30.9"/>
  1057. <linearGradient id="SVGID_60_" gradientUnits="userSpaceOnUse" x1="-82.09" y1="508.57" x2="-82.09" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1058. <stop offset="0" style="stop-color:#B7B7B7"/>
  1059. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1060. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1061. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1062. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1063. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1064. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1065. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1066. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1067. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1068. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1069. <stop offset="0.95" style="stop-color:#888888"/>
  1070. <stop offset="1" style="stop-color:#666666"/>
  1071. </linearGradient>
  1072. <circle class="st58" cx="30.9" cy="70.1" r="30.9"/>
  1073. <linearGradient id="SVGID_61_" gradientUnits="userSpaceOnUse" x1="-80.86" y1="508.57" x2="-80.86" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1074. <stop offset="0" style="stop-color:#B7B7B7"/>
  1075. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1076. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1077. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1078. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1079. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1080. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1081. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1082. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1083. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1084. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1085. <stop offset="0.95" style="stop-color:#888888"/>
  1086. <stop offset="1" style="stop-color:#666666"/>
  1087. </linearGradient>
  1088. <circle class="st59" cx="30.9" cy="71.3" r="30.9"/>
  1089. <linearGradient id="SVGID_62_" gradientUnits="userSpaceOnUse" x1="-79.63" y1="508.57" x2="-79.63" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1090. <stop offset="0" style="stop-color:#B7B7B7"/>
  1091. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1092. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1093. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1094. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1095. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1096. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1097. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1098. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1099. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1100. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1101. <stop offset="0.95" style="stop-color:#888888"/>
  1102. <stop offset="1" style="stop-color:#666666"/>
  1103. </linearGradient>
  1104. <circle class="st60" cx="30.9" cy="72.5" r="30.9"/>
  1105. <linearGradient id="SVGID_63_" gradientUnits="userSpaceOnUse" x1="-78.4" y1="508.57" x2="-78.4" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1106. <stop offset="0" style="stop-color:#B7B7B7"/>
  1107. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1108. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1109. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1110. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1111. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1112. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1113. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1114. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1115. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1116. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1117. <stop offset="0.95" style="stop-color:#888888"/>
  1118. <stop offset="1" style="stop-color:#666666"/>
  1119. </linearGradient>
  1120. <circle class="st61" cx="30.9" cy="73.8" r="30.9"/>
  1121. <linearGradient id="SVGID_64_" gradientUnits="userSpaceOnUse" x1="-77.17" y1="508.57" x2="-77.17" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1122. <stop offset="0" style="stop-color:#B7B7B7"/>
  1123. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1124. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1125. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1126. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1127. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1128. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1129. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1130. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1131. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1132. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1133. <stop offset="0.95" style="stop-color:#888888"/>
  1134. <stop offset="1" style="stop-color:#666666"/>
  1135. </linearGradient>
  1136. <circle class="st62" cx="30.9" cy="75" r="30.9"/>
  1137. <linearGradient id="SVGID_65_" gradientUnits="userSpaceOnUse" x1="-75.94" y1="508.57" x2="-75.94" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1138. <stop offset="0" style="stop-color:#B7B7B7"/>
  1139. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1140. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1141. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1142. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1143. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1144. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1145. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1146. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1147. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1148. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1149. <stop offset="0.95" style="stop-color:#888888"/>
  1150. <stop offset="1" style="stop-color:#666666"/>
  1151. </linearGradient>
  1152. <circle class="st63" cx="30.9" cy="76.2" r="30.9"/>
  1153. <linearGradient id="SVGID_66_" gradientUnits="userSpaceOnUse" x1="-74.71" y1="508.57" x2="-74.71" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1154. <stop offset="0" style="stop-color:#B7B7B7"/>
  1155. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1156. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1157. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1158. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1159. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1160. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1161. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1162. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1163. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1164. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1165. <stop offset="0.95" style="stop-color:#888888"/>
  1166. <stop offset="1" style="stop-color:#666666"/>
  1167. </linearGradient>
  1168. <circle class="st64" cx="30.9" cy="77.5" r="30.9"/>
  1169. <linearGradient id="SVGID_67_" gradientUnits="userSpaceOnUse" x1="-73.48" y1="508.57" x2="-73.48" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1170. <stop offset="0" style="stop-color:#B7B7B7"/>
  1171. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1172. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1173. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1174. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1175. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1176. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1177. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1178. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1179. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1180. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1181. <stop offset="0.95" style="stop-color:#888888"/>
  1182. <stop offset="1" style="stop-color:#666666"/>
  1183. </linearGradient>
  1184. <circle class="st65" cx="30.9" cy="78.7" r="30.9"/>
  1185. <linearGradient id="SVGID_68_" gradientUnits="userSpaceOnUse" x1="-72.25" y1="508.57" x2="-72.25" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1186. <stop offset="0" style="stop-color:#B7B7B7"/>
  1187. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1188. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1189. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1190. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1191. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1192. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1193. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1194. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1195. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1196. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1197. <stop offset="0.95" style="stop-color:#888888"/>
  1198. <stop offset="1" style="stop-color:#666666"/>
  1199. </linearGradient>
  1200. <circle class="st66" cx="30.9" cy="79.9" r="30.9"/>
  1201. <linearGradient id="SVGID_69_" gradientUnits="userSpaceOnUse" x1="-71.02" y1="508.57" x2="-71.02" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1202. <stop offset="0" style="stop-color:#B7B7B7"/>
  1203. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1204. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1205. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1206. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1207. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1208. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1209. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1210. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1211. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1212. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1213. <stop offset="0.95" style="stop-color:#888888"/>
  1214. <stop offset="1" style="stop-color:#666666"/>
  1215. </linearGradient>
  1216. <circle class="st67" cx="30.9" cy="81.2" r="30.9"/>
  1217. <linearGradient id="SVGID_70_" gradientUnits="userSpaceOnUse" x1="-69.79" y1="508.57" x2="-69.79" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1218. <stop offset="0" style="stop-color:#B7B7B7"/>
  1219. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1220. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1221. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1222. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1223. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1224. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1225. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1226. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1227. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1228. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1229. <stop offset="0.95" style="stop-color:#888888"/>
  1230. <stop offset="1" style="stop-color:#666666"/>
  1231. </linearGradient>
  1232. <circle class="st68" cx="30.9" cy="82.4" r="30.9"/>
  1233. <linearGradient id="SVGID_71_" gradientUnits="userSpaceOnUse" x1="-68.56" y1="508.57" x2="-68.56" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1234. <stop offset="0" style="stop-color:#B7B7B7"/>
  1235. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1236. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1237. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1238. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1239. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1240. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1241. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1242. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1243. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1244. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1245. <stop offset="0.95" style="stop-color:#888888"/>
  1246. <stop offset="1" style="stop-color:#666666"/>
  1247. </linearGradient>
  1248. <circle class="st69" cx="30.9" cy="83.6" r="30.9"/>
  1249. <linearGradient id="SVGID_72_" gradientUnits="userSpaceOnUse" x1="-67.33" y1="508.57" x2="-67.33" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1250. <stop offset="0" style="stop-color:#B7B7B7"/>
  1251. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1252. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1253. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1254. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1255. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1256. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1257. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1258. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1259. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1260. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1261. <stop offset="0.95" style="stop-color:#888888"/>
  1262. <stop offset="1" style="stop-color:#666666"/>
  1263. </linearGradient>
  1264. <circle class="st70" cx="30.9" cy="84.8" r="30.9"/>
  1265. <linearGradient id="SVGID_73_" gradientUnits="userSpaceOnUse" x1="-66.11" y1="508.57" x2="-66.11" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1266. <stop offset="0" style="stop-color:#B7B7B7"/>
  1267. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1268. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1269. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1270. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1271. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1272. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1273. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1274. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1275. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1276. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1277. <stop offset="0.95" style="stop-color:#888888"/>
  1278. <stop offset="1" style="stop-color:#666666"/>
  1279. </linearGradient>
  1280. <circle class="st71" cx="30.9" cy="86.1" r="30.9"/>
  1281. <linearGradient id="SVGID_74_" gradientUnits="userSpaceOnUse" x1="-64.88" y1="508.57" x2="-64.88" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1282. <stop offset="0" style="stop-color:#B7B7B7"/>
  1283. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1284. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1285. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1286. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1287. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1288. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1289. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1290. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1291. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1292. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1293. <stop offset="0.95" style="stop-color:#888888"/>
  1294. <stop offset="1" style="stop-color:#666666"/>
  1295. </linearGradient>
  1296. <circle class="st72" cx="30.9" cy="87.3" r="30.9"/>
  1297. <linearGradient id="SVGID_75_" gradientUnits="userSpaceOnUse" x1="-63.65" y1="508.57" x2="-63.65" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1298. <stop offset="0" style="stop-color:#B7B7B7"/>
  1299. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1300. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1301. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1302. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1303. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1304. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1305. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1306. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1307. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1308. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1309. <stop offset="0.95" style="stop-color:#888888"/>
  1310. <stop offset="1" style="stop-color:#666666"/>
  1311. </linearGradient>
  1312. <circle class="st73" cx="30.9" cy="88.5" r="30.9"/>
  1313. <linearGradient id="SVGID_76_" gradientUnits="userSpaceOnUse" x1="-62.42" y1="508.57" x2="-62.42" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1314. <stop offset="0" style="stop-color:#B7B7B7"/>
  1315. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1316. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1317. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1318. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1319. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1320. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1321. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1322. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1323. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1324. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1325. <stop offset="0.95" style="stop-color:#888888"/>
  1326. <stop offset="1" style="stop-color:#666666"/>
  1327. </linearGradient>
  1328. <circle class="st74" cx="30.9" cy="89.8" r="30.9"/>
  1329. <linearGradient id="SVGID_77_" gradientUnits="userSpaceOnUse" x1="-61.19" y1="508.57" x2="-61.19" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1330. <stop offset="0" style="stop-color:#B7B7B7"/>
  1331. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1332. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1333. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1334. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1335. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1336. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1337. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1338. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1339. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1340. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1341. <stop offset="0.95" style="stop-color:#888888"/>
  1342. <stop offset="1" style="stop-color:#666666"/>
  1343. </linearGradient>
  1344. <circle class="st75" cx="30.9" cy="91" r="30.9"/>
  1345. <linearGradient id="SVGID_78_" gradientUnits="userSpaceOnUse" x1="-59.96" y1="508.57" x2="-59.96" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1346. <stop offset="0" style="stop-color:#B7B7B7"/>
  1347. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1348. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1349. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1350. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1351. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1352. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1353. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1354. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1355. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1356. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1357. <stop offset="0.95" style="stop-color:#888888"/>
  1358. <stop offset="1" style="stop-color:#666666"/>
  1359. </linearGradient>
  1360. <circle class="st76" cx="30.9" cy="92.2" r="30.9"/>
  1361. <linearGradient id="SVGID_79_" gradientUnits="userSpaceOnUse" x1="-58.73" y1="508.57" x2="-58.73" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1362. <stop offset="0" style="stop-color:#B7B7B7"/>
  1363. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1364. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1365. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1366. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1367. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1368. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1369. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1370. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1371. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1372. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1373. <stop offset="0.95" style="stop-color:#888888"/>
  1374. <stop offset="1" style="stop-color:#666666"/>
  1375. </linearGradient>
  1376. <circle class="st77" cx="30.9" cy="93.4" r="30.9"/>
  1377. <linearGradient id="SVGID_80_" gradientUnits="userSpaceOnUse" x1="-57.5" y1="508.57" x2="-57.5" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1378. <stop offset="0" style="stop-color:#B7B7B7"/>
  1379. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1380. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1381. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1382. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1383. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1384. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1385. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1386. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1387. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1388. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1389. <stop offset="0.95" style="stop-color:#888888"/>
  1390. <stop offset="1" style="stop-color:#666666"/>
  1391. </linearGradient>
  1392. <circle class="st78" cx="30.9" cy="94.7" r="30.9"/>
  1393. <linearGradient id="SVGID_81_" gradientUnits="userSpaceOnUse" x1="-56.27" y1="508.57" x2="-56.27" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1394. <stop offset="0" style="stop-color:#B7B7B7"/>
  1395. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1396. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1397. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1398. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1399. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1400. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1401. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1402. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1403. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1404. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1405. <stop offset="0.95" style="stop-color:#888888"/>
  1406. <stop offset="1" style="stop-color:#666666"/>
  1407. </linearGradient>
  1408. <circle class="st79" cx="30.9" cy="95.9" r="30.9"/>
  1409. <linearGradient id="SVGID_82_" gradientUnits="userSpaceOnUse" x1="-55.04" y1="508.57" x2="-55.04" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1410. <stop offset="0" style="stop-color:#B7B7B7"/>
  1411. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1412. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1413. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1414. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1415. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1416. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1417. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1418. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1419. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1420. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1421. <stop offset="0.95" style="stop-color:#888888"/>
  1422. <stop offset="1" style="stop-color:#666666"/>
  1423. </linearGradient>
  1424. <circle class="st80" cx="30.9" cy="97.1" r="30.9"/>
  1425. <linearGradient id="SVGID_83_" gradientUnits="userSpaceOnUse" x1="-53.81" y1="508.57" x2="-53.81" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1426. <stop offset="0" style="stop-color:#B7B7B7"/>
  1427. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1428. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1429. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1430. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1431. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1432. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1433. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1434. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1435. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1436. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1437. <stop offset="0.95" style="stop-color:#888888"/>
  1438. <stop offset="1" style="stop-color:#666666"/>
  1439. </linearGradient>
  1440. <circle class="st81" cx="30.9" cy="98.4" r="30.9"/>
  1441. <linearGradient id="SVGID_84_" gradientUnits="userSpaceOnUse" x1="-52.58" y1="508.57" x2="-52.58" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1442. <stop offset="0" style="stop-color:#B7B7B7"/>
  1443. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1444. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1445. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1446. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1447. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1448. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1449. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1450. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1451. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1452. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1453. <stop offset="0.95" style="stop-color:#888888"/>
  1454. <stop offset="1" style="stop-color:#666666"/>
  1455. </linearGradient>
  1456. <circle class="st82" cx="30.9" cy="99.6" r="30.9"/>
  1457. <linearGradient id="SVGID_85_" gradientUnits="userSpaceOnUse" x1="-51.35" y1="508.57" x2="-51.35" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1458. <stop offset="0" style="stop-color:#B7B7B7"/>
  1459. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1460. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1461. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1462. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1463. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1464. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1465. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1466. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1467. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1468. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1469. <stop offset="0.95" style="stop-color:#888888"/>
  1470. <stop offset="1" style="stop-color:#666666"/>
  1471. </linearGradient>
  1472. <circle class="st83" cx="30.9" cy="100.8" r="30.9"/>
  1473. <linearGradient id="SVGID_86_" gradientUnits="userSpaceOnUse" x1="-50.12" y1="508.57" x2="-50.12" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1474. <stop offset="0" style="stop-color:#B7B7B7"/>
  1475. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1476. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1477. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1478. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1479. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1480. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1481. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1482. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1483. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1484. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1485. <stop offset="0.95" style="stop-color:#888888"/>
  1486. <stop offset="1" style="stop-color:#666666"/>
  1487. </linearGradient>
  1488. <circle class="st84" cx="30.9" cy="102.1" r="30.9"/>
  1489. <linearGradient id="SVGID_87_" gradientUnits="userSpaceOnUse" x1="-48.89" y1="508.57" x2="-48.89" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1490. <stop offset="0" style="stop-color:#B7B7B7"/>
  1491. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1492. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1493. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1494. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1495. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1496. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1497. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1498. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1499. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1500. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1501. <stop offset="0.95" style="stop-color:#888888"/>
  1502. <stop offset="1" style="stop-color:#666666"/>
  1503. </linearGradient>
  1504. <circle class="st85" cx="30.9" cy="103.3" r="30.9"/>
  1505. <linearGradient id="SVGID_88_" gradientUnits="userSpaceOnUse" x1="-47.66" y1="508.57" x2="-47.66" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1506. <stop offset="0" style="stop-color:#B7B7B7"/>
  1507. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1508. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1509. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1510. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1511. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1512. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1513. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1514. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1515. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1516. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1517. <stop offset="0.95" style="stop-color:#888888"/>
  1518. <stop offset="1" style="stop-color:#666666"/>
  1519. </linearGradient>
  1520. <circle class="st86" cx="30.9" cy="104.5" r="30.9"/>
  1521. <linearGradient id="SVGID_89_" gradientUnits="userSpaceOnUse" x1="-46.43" y1="508.57" x2="-46.43" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1522. <stop offset="0" style="stop-color:#B7B7B7"/>
  1523. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1524. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1525. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1526. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1527. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1528. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1529. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1530. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1531. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1532. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1533. <stop offset="0.95" style="stop-color:#888888"/>
  1534. <stop offset="1" style="stop-color:#666666"/>
  1535. </linearGradient>
  1536. <circle class="st87" cx="30.9" cy="105.7" r="30.9"/>
  1537. <linearGradient id="SVGID_90_" gradientUnits="userSpaceOnUse" x1="-45.2" y1="508.57" x2="-45.2" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1538. <stop offset="0" style="stop-color:#B7B7B7"/>
  1539. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1540. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1541. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1542. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1543. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1544. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1545. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1546. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1547. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1548. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1549. <stop offset="0.95" style="stop-color:#888888"/>
  1550. <stop offset="1" style="stop-color:#666666"/>
  1551. </linearGradient>
  1552. <circle class="st88" cx="30.9" cy="107" r="30.9"/>
  1553. <linearGradient id="SVGID_91_" gradientUnits="userSpaceOnUse" x1="-43.97" y1="508.57" x2="-43.97" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1554. <stop offset="0" style="stop-color:#B7B7B7"/>
  1555. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1556. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1557. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1558. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1559. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1560. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1561. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1562. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1563. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1564. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1565. <stop offset="0.95" style="stop-color:#888888"/>
  1566. <stop offset="1" style="stop-color:#666666"/>
  1567. </linearGradient>
  1568. <circle class="st89" cx="30.9" cy="108.2" r="30.9"/>
  1569. <linearGradient id="SVGID_92_" gradientUnits="userSpaceOnUse" x1="-42.74" y1="508.57" x2="-42.74" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1570. <stop offset="0" style="stop-color:#B7B7B7"/>
  1571. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1572. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1573. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1574. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1575. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1576. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1577. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1578. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1579. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1580. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1581. <stop offset="0.95" style="stop-color:#888888"/>
  1582. <stop offset="1" style="stop-color:#666666"/>
  1583. </linearGradient>
  1584. <circle class="st90" cx="30.9" cy="109.4" r="30.9"/>
  1585. <linearGradient id="SVGID_93_" gradientUnits="userSpaceOnUse" x1="-41.51" y1="508.57" x2="-41.51" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1586. <stop offset="0" style="stop-color:#B7B7B7"/>
  1587. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1588. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1589. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1590. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1591. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1592. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1593. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1594. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1595. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1596. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1597. <stop offset="0.95" style="stop-color:#888888"/>
  1598. <stop offset="1" style="stop-color:#666666"/>
  1599. </linearGradient>
  1600. <circle class="st91" cx="30.9" cy="110.7" r="30.9"/>
  1601. <linearGradient id="SVGID_94_" gradientUnits="userSpaceOnUse" x1="-40.28" y1="508.57" x2="-40.28" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1602. <stop offset="0" style="stop-color:#B7B7B7"/>
  1603. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1604. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1605. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1606. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1607. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1608. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1609. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1610. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1611. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1612. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1613. <stop offset="0.95" style="stop-color:#888888"/>
  1614. <stop offset="1" style="stop-color:#666666"/>
  1615. </linearGradient>
  1616. <circle class="st92" cx="30.9" cy="111.9" r="30.9"/>
  1617. <linearGradient id="SVGID_95_" gradientUnits="userSpaceOnUse" x1="-39.05" y1="508.57" x2="-39.05" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1618. <stop offset="0" style="stop-color:#B7B7B7"/>
  1619. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1620. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1621. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1622. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1623. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1624. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1625. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1626. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1627. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1628. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1629. <stop offset="0.95" style="stop-color:#888888"/>
  1630. <stop offset="1" style="stop-color:#666666"/>
  1631. </linearGradient>
  1632. <circle class="st93" cx="30.9" cy="113.1" r="30.9"/>
  1633. <linearGradient id="SVGID_96_" gradientUnits="userSpaceOnUse" x1="-37.82" y1="508.57" x2="-37.82" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1634. <stop offset="0" style="stop-color:#B7B7B7"/>
  1635. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1636. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1637. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1638. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1639. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1640. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1641. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1642. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1643. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1644. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1645. <stop offset="0.95" style="stop-color:#888888"/>
  1646. <stop offset="1" style="stop-color:#666666"/>
  1647. </linearGradient>
  1648. <circle class="st94" cx="30.9" cy="114.4" r="30.9"/>
  1649. <linearGradient id="SVGID_97_" gradientUnits="userSpaceOnUse" x1="-36.59" y1="508.57" x2="-36.59" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1650. <stop offset="0" style="stop-color:#B7B7B7"/>
  1651. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1652. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1653. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1654. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1655. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1656. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1657. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1658. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1659. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1660. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1661. <stop offset="0.95" style="stop-color:#888888"/>
  1662. <stop offset="1" style="stop-color:#666666"/>
  1663. </linearGradient>
  1664. <circle class="st95" cx="30.9" cy="115.6" r="30.9"/>
  1665. <linearGradient id="SVGID_98_" gradientUnits="userSpaceOnUse" x1="-35.36" y1="508.57" x2="-35.36" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1666. <stop offset="0" style="stop-color:#B7B7B7"/>
  1667. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1668. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1669. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1670. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1671. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1672. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1673. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1674. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1675. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1676. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1677. <stop offset="0.95" style="stop-color:#888888"/>
  1678. <stop offset="1" style="stop-color:#666666"/>
  1679. </linearGradient>
  1680. <circle class="st96" cx="30.9" cy="116.8" r="30.9"/>
  1681. <linearGradient id="SVGID_99_" gradientUnits="userSpaceOnUse" x1="-34.13" y1="508.57" x2="-34.13" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1682. <stop offset="0" style="stop-color:#B7B7B7"/>
  1683. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1684. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1685. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1686. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1687. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1688. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1689. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1690. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1691. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1692. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1693. <stop offset="0.95" style="stop-color:#888888"/>
  1694. <stop offset="1" style="stop-color:#666666"/>
  1695. </linearGradient>
  1696. <circle class="st97" cx="30.9" cy="118" r="30.9"/>
  1697. <linearGradient id="SVGID_100_" gradientUnits="userSpaceOnUse" x1="-32.9" y1="508.57" x2="-32.9" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1698. <stop offset="0" style="stop-color:#B7B7B7"/>
  1699. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1700. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1701. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1702. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1703. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1704. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1705. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1706. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1707. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1708. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1709. <stop offset="0.95" style="stop-color:#888888"/>
  1710. <stop offset="1" style="stop-color:#666666"/>
  1711. </linearGradient>
  1712. <circle class="st98" cx="30.9" cy="119.3" r="30.9"/>
  1713. <linearGradient id="SVGID_101_" gradientUnits="userSpaceOnUse" x1="-31.68" y1="508.57" x2="-31.68" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1714. <stop offset="0" style="stop-color:#B7B7B7"/>
  1715. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1716. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1717. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1718. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1719. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1720. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1721. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1722. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1723. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1724. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1725. <stop offset="0.95" style="stop-color:#888888"/>
  1726. <stop offset="1" style="stop-color:#666666"/>
  1727. </linearGradient>
  1728. <circle class="st99" cx="30.9" cy="120.5" r="30.9"/>
  1729. <linearGradient id="SVGID_102_" gradientUnits="userSpaceOnUse" x1="-30.45" y1="508.57" x2="-30.45" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1730. <stop offset="0" style="stop-color:#B7B7B7"/>
  1731. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1732. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1733. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1734. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1735. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1736. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1737. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1738. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1739. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1740. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1741. <stop offset="0.95" style="stop-color:#888888"/>
  1742. <stop offset="1" style="stop-color:#666666"/>
  1743. </linearGradient>
  1744. <circle class="st100" cx="30.9" cy="121.7" r="30.9"/>
  1745. <linearGradient id="SVGID_103_" gradientUnits="userSpaceOnUse" x1="-29.22" y1="508.57" x2="-29.22" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1746. <stop offset="0" style="stop-color:#B7B7B7"/>
  1747. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1748. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1749. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1750. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1751. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1752. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1753. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1754. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1755. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1756. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1757. <stop offset="0.95" style="stop-color:#888888"/>
  1758. <stop offset="1" style="stop-color:#666666"/>
  1759. </linearGradient>
  1760. <circle class="st101" cx="30.9" cy="123" r="30.9"/>
  1761. <linearGradient id="SVGID_104_" gradientUnits="userSpaceOnUse" x1="-27.99" y1="508.57" x2="-27.99" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1762. <stop offset="0" style="stop-color:#B7B7B7"/>
  1763. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1764. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1765. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1766. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1767. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1768. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1769. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1770. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1771. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1772. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1773. <stop offset="0.95" style="stop-color:#888888"/>
  1774. <stop offset="1" style="stop-color:#666666"/>
  1775. </linearGradient>
  1776. <circle class="st102" cx="30.9" cy="124.2" r="30.9"/>
  1777. <linearGradient id="SVGID_105_" gradientUnits="userSpaceOnUse" x1="-26.76" y1="508.57" x2="-26.76" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1778. <stop offset="0" style="stop-color:#B7B7B7"/>
  1779. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1780. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1781. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1782. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1783. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1784. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1785. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1786. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1787. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1788. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1789. <stop offset="0.95" style="stop-color:#888888"/>
  1790. <stop offset="1" style="stop-color:#666666"/>
  1791. </linearGradient>
  1792. <circle class="st103" cx="30.9" cy="125.4" r="30.9"/>
  1793. <linearGradient id="SVGID_106_" gradientUnits="userSpaceOnUse" x1="-25.53" y1="508.57" x2="-25.53" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1794. <stop offset="0" style="stop-color:#B7B7B7"/>
  1795. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1796. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1797. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1798. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1799. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1800. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1801. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1802. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1803. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1804. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1805. <stop offset="0.95" style="stop-color:#888888"/>
  1806. <stop offset="1" style="stop-color:#666666"/>
  1807. </linearGradient>
  1808. <circle class="st104" cx="30.9" cy="126.6" r="30.9"/>
  1809. <linearGradient id="SVGID_107_" gradientUnits="userSpaceOnUse" x1="-24.3" y1="508.57" x2="-24.3" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1810. <stop offset="0" style="stop-color:#B7B7B7"/>
  1811. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1812. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1813. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1814. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1815. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1816. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1817. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1818. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1819. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1820. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1821. <stop offset="0.95" style="stop-color:#888888"/>
  1822. <stop offset="1" style="stop-color:#666666"/>
  1823. </linearGradient>
  1824. <circle class="st105" cx="30.9" cy="127.9" r="30.9"/>
  1825. <linearGradient id="SVGID_108_" gradientUnits="userSpaceOnUse" x1="-23.07" y1="508.57" x2="-23.07" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1826. <stop offset="0" style="stop-color:#B7B7B7"/>
  1827. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1828. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1829. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1830. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1831. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1832. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1833. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1834. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1835. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1836. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1837. <stop offset="0.95" style="stop-color:#888888"/>
  1838. <stop offset="1" style="stop-color:#666666"/>
  1839. </linearGradient>
  1840. <circle class="st106" cx="30.9" cy="129.1" r="30.9"/>
  1841. <linearGradient id="SVGID_109_" gradientUnits="userSpaceOnUse" x1="-21.84" y1="508.57" x2="-21.84" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1842. <stop offset="0" style="stop-color:#B7B7B7"/>
  1843. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1844. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1845. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1846. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1847. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1848. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1849. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1850. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1851. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1852. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1853. <stop offset="0.95" style="stop-color:#888888"/>
  1854. <stop offset="1" style="stop-color:#666666"/>
  1855. </linearGradient>
  1856. <circle class="st107" cx="30.9" cy="130.3" r="30.9"/>
  1857. <linearGradient id="SVGID_110_" gradientUnits="userSpaceOnUse" x1="-20.61" y1="508.57" x2="-20.61" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1858. <stop offset="0" style="stop-color:#B7B7B7"/>
  1859. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1860. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1861. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1862. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1863. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1864. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1865. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1866. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1867. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1868. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1869. <stop offset="0.95" style="stop-color:#888888"/>
  1870. <stop offset="1" style="stop-color:#666666"/>
  1871. </linearGradient>
  1872. <circle class="st108" cx="30.9" cy="131.6" r="30.9"/>
  1873. <linearGradient id="SVGID_111_" gradientUnits="userSpaceOnUse" x1="-19.38" y1="508.57" x2="-19.38" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1874. <stop offset="0" style="stop-color:#B7B7B7"/>
  1875. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1876. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1877. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1878. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1879. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1880. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1881. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1882. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1883. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1884. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1885. <stop offset="0.95" style="stop-color:#888888"/>
  1886. <stop offset="1" style="stop-color:#666666"/>
  1887. </linearGradient>
  1888. <circle class="st109" cx="30.9" cy="132.8" r="30.9"/>
  1889. <linearGradient id="SVGID_112_" gradientUnits="userSpaceOnUse" x1="-18.15" y1="508.57" x2="-18.15" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1890. <stop offset="0" style="stop-color:#B7B7B7"/>
  1891. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1892. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1893. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1894. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1895. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1896. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1897. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1898. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1899. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1900. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1901. <stop offset="0.95" style="stop-color:#888888"/>
  1902. <stop offset="1" style="stop-color:#666666"/>
  1903. </linearGradient>
  1904. <circle class="st110" cx="30.9" cy="134" r="30.9"/>
  1905. <linearGradient id="SVGID_113_" gradientUnits="userSpaceOnUse" x1="-16.92" y1="508.57" x2="-16.92" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1906. <stop offset="0" style="stop-color:#B7B7B7"/>
  1907. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1908. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1909. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1910. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1911. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1912. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1913. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1914. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1915. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1916. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1917. <stop offset="0.95" style="stop-color:#888888"/>
  1918. <stop offset="1" style="stop-color:#666666"/>
  1919. </linearGradient>
  1920. <circle class="st111" cx="30.9" cy="135.3" r="30.9"/>
  1921. <linearGradient id="SVGID_114_" gradientUnits="userSpaceOnUse" x1="-15.69" y1="508.57" x2="-15.69" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1922. <stop offset="0" style="stop-color:#B7B7B7"/>
  1923. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1924. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1925. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1926. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1927. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1928. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1929. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1930. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1931. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1932. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1933. <stop offset="0.95" style="stop-color:#888888"/>
  1934. <stop offset="1" style="stop-color:#666666"/>
  1935. </linearGradient>
  1936. <circle class="st112" cx="30.9" cy="136.5" r="30.9"/>
  1937. <linearGradient id="SVGID_115_" gradientUnits="userSpaceOnUse" x1="-14.46" y1="508.57" x2="-14.46" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1938. <stop offset="0" style="stop-color:#B7B7B7"/>
  1939. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1940. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1941. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1942. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1943. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1944. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1945. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1946. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1947. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1948. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1949. <stop offset="0.95" style="stop-color:#888888"/>
  1950. <stop offset="1" style="stop-color:#666666"/>
  1951. </linearGradient>
  1952. <circle class="st113" cx="30.9" cy="137.7" r="30.9"/>
  1953. <linearGradient id="SVGID_116_" gradientUnits="userSpaceOnUse" x1="-13.23" y1="508.57" x2="-13.23" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1954. <stop offset="0" style="stop-color:#B7B7B7"/>
  1955. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1956. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1957. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1958. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1959. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1960. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1961. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1962. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1963. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1964. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1965. <stop offset="0.95" style="stop-color:#888888"/>
  1966. <stop offset="1" style="stop-color:#666666"/>
  1967. </linearGradient>
  1968. <circle class="st114" cx="30.9" cy="138.9" r="30.9"/>
  1969. <linearGradient id="SVGID_117_" gradientUnits="userSpaceOnUse" x1="-12" y1="508.57" x2="-12" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1970. <stop offset="0" style="stop-color:#B7B7B7"/>
  1971. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1972. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1973. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1974. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1975. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1976. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1977. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1978. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1979. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1980. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1981. <stop offset="0.95" style="stop-color:#888888"/>
  1982. <stop offset="1" style="stop-color:#666666"/>
  1983. </linearGradient>
  1984. <circle class="st115" cx="30.9" cy="140.2" r="30.9"/>
  1985. <linearGradient id="SVGID_118_" gradientUnits="userSpaceOnUse" x1="-10.77" y1="508.57" x2="-10.77" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  1986. <stop offset="0" style="stop-color:#B7B7B7"/>
  1987. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1988. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1989. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1990. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1991. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1992. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1993. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1994. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1995. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1996. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1997. <stop offset="0.95" style="stop-color:#888888"/>
  1998. <stop offset="1" style="stop-color:#666666"/>
  1999. </linearGradient>
  2000. <circle class="st116" cx="30.9" cy="141.4" r="30.9"/>
  2001. <linearGradient id="SVGID_119_" gradientUnits="userSpaceOnUse" x1="-9.54" y1="508.57" x2="-9.54" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  2002. <stop offset="0" style="stop-color:#B7B7B7"/>
  2003. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2004. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2005. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2006. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2007. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2008. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2009. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2010. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2011. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2012. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2013. <stop offset="0.95" style="stop-color:#888888"/>
  2014. <stop offset="1" style="stop-color:#666666"/>
  2015. </linearGradient>
  2016. <circle class="st117" cx="30.9" cy="142.6" r="30.9"/>
  2017. <linearGradient id="SVGID_120_" gradientUnits="userSpaceOnUse" x1="-8.31" y1="508.57" x2="-8.31" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  2018. <stop offset="0" style="stop-color:#B7B7B7"/>
  2019. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2020. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2021. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2022. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2023. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2024. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2025. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2026. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2027. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2028. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2029. <stop offset="0.95" style="stop-color:#888888"/>
  2030. <stop offset="1" style="stop-color:#666666"/>
  2031. </linearGradient>
  2032. <circle class="st118" cx="30.9" cy="143.9" r="30.9"/>
  2033. <linearGradient id="SVGID_121_" gradientUnits="userSpaceOnUse" x1="-7.08" y1="508.57" x2="-7.08" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  2034. <stop offset="0" style="stop-color:#B7B7B7"/>
  2035. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2036. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2037. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2038. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2039. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2040. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2041. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2042. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2043. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2044. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2045. <stop offset="0.95" style="stop-color:#888888"/>
  2046. <stop offset="1" style="stop-color:#666666"/>
  2047. </linearGradient>
  2048. <circle class="st119" cx="30.9" cy="145.1" r="30.9"/>
  2049. <linearGradient id="SVGID_122_" gradientUnits="userSpaceOnUse" x1="-5.85" y1="508.57" x2="-5.85" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  2050. <stop offset="0" style="stop-color:#B7B7B7"/>
  2051. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2052. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2053. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2054. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2055. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2056. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2057. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2058. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2059. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2060. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2061. <stop offset="0.95" style="stop-color:#888888"/>
  2062. <stop offset="1" style="stop-color:#666666"/>
  2063. </linearGradient>
  2064. <circle class="st120" cx="30.9" cy="146.3" r="30.9"/>
  2065. <linearGradient id="SVGID_123_" gradientUnits="userSpaceOnUse" x1="-4.62" y1="508.57" x2="-4.62" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  2066. <stop offset="0" style="stop-color:#B7B7B7"/>
  2067. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2068. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2069. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2070. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2071. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2072. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2073. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2074. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2075. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2076. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2077. <stop offset="0.95" style="stop-color:#888888"/>
  2078. <stop offset="1" style="stop-color:#666666"/>
  2079. </linearGradient>
  2080. <circle class="st121" cx="30.9" cy="147.6" r="30.9"/>
  2081. <linearGradient id="SVGID_124_" gradientUnits="userSpaceOnUse" x1="-3.39" y1="508.57" x2="-3.39" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  2082. <stop offset="0" style="stop-color:#B7B7B7"/>
  2083. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2084. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2085. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2086. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2087. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2088. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2089. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2090. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2091. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2092. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2093. <stop offset="0.95" style="stop-color:#888888"/>
  2094. <stop offset="1" style="stop-color:#666666"/>
  2095. </linearGradient>
  2096. <circle class="st122" cx="30.9" cy="148.8" r="30.9"/>
  2097. <linearGradient id="SVGID_125_" gradientUnits="userSpaceOnUse" x1="-2.16" y1="508.57" x2="-2.16" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  2098. <stop offset="0" style="stop-color:#B7B7B7"/>
  2099. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2100. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2101. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2102. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2103. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2104. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2105. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2106. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2107. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2108. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2109. <stop offset="0.95" style="stop-color:#888888"/>
  2110. <stop offset="1" style="stop-color:#666666"/>
  2111. </linearGradient>
  2112. <circle class="st123" cx="30.9" cy="150" r="30.9"/>
  2113. <linearGradient id="SVGID_126_" gradientUnits="userSpaceOnUse" x1="-0.93" y1="508.57" x2="-0.93" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  2114. <stop offset="0" style="stop-color:#B7B7B7"/>
  2115. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2116. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2117. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2118. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2119. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2120. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2121. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2122. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2123. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2124. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2125. <stop offset="0.95" style="stop-color:#888888"/>
  2126. <stop offset="1" style="stop-color:#666666"/>
  2127. </linearGradient>
  2128. <circle class="st124" cx="30.9" cy="151.2" r="30.9"/>
  2129. <linearGradient id="SVGID_127_" gradientUnits="userSpaceOnUse" x1="0.3" y1="508.57" x2="0.3" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  2130. <stop offset="0" style="stop-color:#B7B7B7"/>
  2131. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2132. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2133. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2134. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2135. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2136. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2137. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2138. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2139. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2140. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2141. <stop offset="0.95" style="stop-color:#888888"/>
  2142. <stop offset="1" style="stop-color:#666666"/>
  2143. </linearGradient>
  2144. <circle class="st125" cx="30.9" cy="152.5" r="30.9"/>
  2145. <linearGradient id="SVGID_128_" gradientUnits="userSpaceOnUse" x1="1.53" y1="508.57" x2="1.53" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  2146. <stop offset="0" style="stop-color:#B7B7B7"/>
  2147. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2148. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2149. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2150. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2151. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2152. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2153. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2154. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2155. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2156. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2157. <stop offset="0.95" style="stop-color:#888888"/>
  2158. <stop offset="1" style="stop-color:#666666"/>
  2159. </linearGradient>
  2160. <circle class="st126" cx="30.9" cy="153.7" r="30.9"/>
  2161. <linearGradient id="SVGID_129_" gradientUnits="userSpaceOnUse" x1="2.75" y1="508.57" x2="2.75" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
  2162. <stop offset="0" style="stop-color:#B7B7B7"/>
  2163. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2164. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2165. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2166. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2167. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2168. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2169. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2170. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2171. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2172. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2173. <stop offset="0.95" style="stop-color:#888888"/>
  2174. <stop offset="1" style="stop-color:#666666"/>
  2175. </linearGradient>
  2176. <circle class="st127" cx="30.9" cy="154.9" r="30.9"/>
  2177. </g>
  2178. </g>
  2179. </g>
  2180. </svg>